install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/noartem/skills/laravel-quality-checks" ~/.claude/skills/comeonoliver-skillshub-laravel-quality-checks && rm -rf "$T"
manifest:
skills/noartem/skills/laravel-quality-checks/SKILL.mdsource content
Quality Checks (Laravel)
Run automated checks before handoff or completion. Keep output clean.
PHP Style & Lint
# Check vendor/bin/pint --test # Fix vendor/bin/pint
Static Analysis (choose your tool)
# PHPStan example vendor/bin/phpstan analyse --memory-limit=1G # Psalm example vendor/bin/psalm
Insights (optional, if installed)
php artisan insights --no-interaction --format=json --flush-cache
Tests
php artisan test --parallel