laravel:runner-selection
20
总安装量
11
周安装量
#18080
全站排名
安装命令
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:runner-selection
Agent 安装分布
claude-code
9
antigravity
5
windsurf
5
opencode
4
cursor
4
Skill 文档
Runner Selection for Laravel Commands
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.
Detecting Sail
# 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.
Command Pairs
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-cli
Safety Notes
- Never mix hosts: donât install PHP deps with Composer on host and then run them inside Sail (or vice versa). Pick one runtime per session.
- Prefer non-interactive commands in automations/agents; provide flags instead of prompts.
- Treat DB-destructive commands (
migrate:fresh,down -v) with care.