laravel:bootstrap-check

SkillDev tools

Detect 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.

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 about
  • sail artisan test | php artisan test
  • sail artisan migrate | php artisan migrate
  • sail composer install | composer install
  • sail pnpm install | pnpm install
  • sail pnpm run dev | pnpm run dev

Service Smoke Checks

  • DB: sail mysql -e 'select 1' or mysql -e 'select 1'
  • Cache: sail redis ping or redis-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