From superpowers-laravel
Runs quality gates for Laravel projects: Pint lint/fix, PHPStan/Psalm static analysis, tests, optional Insights, JS lint/types. Sail/non-Sail commands.
npx claudepluginhub jpcaparas/superpowers-laravel --plugin superpowers-laravelThis skill uses the workspace's default tool permissions.
Run automated checks before handoff or completion. Keep output clean.
Runs Laravel verification pipeline: env/Composer checks, linting (Pint), static analysis (PHPStan), tests with coverage, security audits, migrations, deploy readiness.
Runs daily Laravel checklist: starts Sail services, migrations, queues, Pint quality gates, parallel tests, pnpm lint/types. Use at session start or handoff.
Provides Laravel expertise including Eloquent ORM optimization, service container patterns, queues, events, Sanctum/Passport auth, and Pest testing. Activates on /godmode:laravel or Laravel/eloquent/artisan/blade mentions.
Share bugs, ideas, or general feedback.
Run automated checks before handoff or completion. Keep output clean.
# Check
sail pint --test # or: vendor/bin/pint --test
# Fix
sail pint # or: vendor/bin/pint
# PHPStan example
sail vendor/bin/phpstan analyse --memory-limit=1G # or: vendor/bin/phpstan analyse --memory-limit=1G
# Psalm example
sail vendor/bin/psalm # or: vendor/bin/psalm
sail artisan insights --no-interaction --format=json --flush-cache # or: php artisan insights --no-interaction --format=json --flush-cache
sail artisan test --parallel # or: php artisan test --parallel
sail pnpm run lint # or: pnpm run lint
sail pnpm run types # or: pnpm run types