laravel:bootstrap-check
SkillDev toolsDetect Sail/non‑Sail and print the right command pairs for your environment; verify dependencies and key services are reachable
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the laravel:bootstrap-check skill
What this skill tells your AI
The instructions your AI receives, as published by jpcaparas/superpowers-laravel in skills/bootstrap-check/SKILL.md and read by ahel’s review.
Quickly determine if the project should run with Sail or host tools, then list the correct commands for this session.
Detect Runner
Run this snippet in your project root:
if [ -f sail ] || [ -x vendor/bin/sail ]; then
echo "Sail detected. Use: sail artisan|composer|pnpm ...";
else
echo "Sail not found. Use host tools: php artisan, composer, pnpm ...";
fi
Optional portable alias:
alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'
Command Pairs
sail artisan about|php artisan aboutsail artisan test|php artisan testsail artisan migrate|php artisan migratesail composer install|composer installsail pnpm install|pnpm installsail pnpm run dev|pnpm run dev
Service Smoke Checks
- DB:
sail mysql -e 'select 1'ormysql -e 'select 1' - Cache:
sail redis pingorredis-cli ping
Signals
- GitHub stars
- 153
- Forks
- 2
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
laravel-bootstrap-check- Source
- github.com/jpcaparas/superpowers-laravel