From superpowers-laravel
Runs daily Laravel checklist: starts Sail services, migrations, queues, Pint quality gates, parallel tests, pnpm lint/types. Use at session start or handoff.
npx claudepluginhub jpcaparas/superpowers-laravel --plugin superpowers-laravelThis skill uses the workspace's default tool permissions.
Run through this checklist at the start of a session or before handoff.
Guides runner selection in Laravel (Sail vs non-Sail), core workflows like TDD with Pest, migrations, queues, and applying superpowers skills platform-agnostically.
Runs Laravel verification pipeline: env/Composer checks, linting (Pint), static analysis (PHPStan), tests with coverage, security audits, migrations, deploy readiness.
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 through this checklist at the start of a session or before handoff.
# Start services
sail up -d && sail ps # Sail
# or (non‑Sail): ensure PHP/DB are running locally
# Schema as needed
sail artisan migrate # or: php artisan migrate
# Queue worker if required
sail artisan queue:work --tries=3 # or: php artisan queue:work --tries=3
# Quality gates
sail pint --test && sail pint # or: vendor/bin/pint --test && vendor/bin/pint
sail artisan test --parallel # or: php artisan test --parallel
# Frontend (if present)
sail pnpm run lint && sail pnpm run types # or: pnpm run lint && pnpm run types