npx claudepluginhub jpcaparas/superpowers-laravel --plugin superpowers-laravelThis skill uses the workspace's default tool permissions.
Use Sail when present for environment consistency. Fall back to host tools when Sail is unavailable. Detect once, then stick to the choice for the session.
Detects Laravel Sail or non-Sail environments, prints correct command pairs for artisan/composer/pnpm, and verifies mysql/Redis service reachability. Useful for quick project bootstrapping.
Provides reference for docker-local Laravel dev environment including service credentials/ports, CLI commands (status/up/down/logs), file paths, project structure, and .env requirements. Use for setup, health checks, and troubleshooting.
Deploys and manages Laravel apps on Laravel Cloud via cloud CLI. Manages environments, databases, caches, domains, instances, deployments, and infrastructure.
Share bugs, ideas, or general feedback.
Use Sail when present for environment consistency. Fall back to host tools when Sail is unavailable. Detect once, then stick to the choice for the session.
# Best-effort alias; safe in any repo
alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'
# Is Sail usable?
[ -f ./sail ] || [ -x ./vendor/bin/sail ] && echo "Sail available" || echo "Sail not found"
If Sail is unavailable, use host php, composer, and your local Node (pnpm/npm/yarn). Keep versions aligned with your project.
Use the left command if Sail is available; otherwise use the right.
sail artisan about | php artisan aboutsail artisan test | php artisan testsail artisan migrate | php artisan migratesail composer install| composer installsail composer require vendor/package | composer require vendor/packagesail pnpm install | pnpm installsail pnpm run dev | pnpm run devsail mysql | mysql (with matching DSN/env)sail redis | redis-climigrate:fresh, down -v) with care.