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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/superpowers-laravel:daily-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run through this checklist at the start of a session or before handoff.
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
npx claudepluginhub jpcaparas/superpowers-laravel --plugin superpowers-laravelGuides runner selection in Laravel (Sail vs non-Sail), core workflows like TDD with Pest, migrations, queues, and applying superpowers skills platform-agnostically.
Runs a full verification pipeline for Laravel projects: environment checks, code style, static analysis, tests with coverage, security audit, and deployment readiness.
Runs a multi-phase verification pipeline for Laravel projects: environment checks, Composer validation, linting (Pint), static analysis (PHPStan/Psalm), tests with coverage, security audit (Composer audit), migration review, build readiness (config/route/view cache), and queue/scheduler checks.