laravel-sail/SKILL.md
Use when working with Laravel Sail, including docker-compose configuration, service management, and running commands inside containers.
npx skillsauth add paulund/skills laravel-sailInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
./vendor/bin/sail instead of raw docker commands| Task | Command |
|------|---------|
| Start | ./vendor/bin/sail up -d |
| Stop | ./vendor/bin/sail down |
| Artisan | ./vendor/bin/sail artisan migrate |
| Composer | ./vendor/bin/sail composer install |
| NPM | ./vendor/bin/sail npm run dev |
| Tests | ./vendor/bin/sail composer run test |
| Tinker | ./vendor/bin/sail artisan tinker |
| Shell | ./vendor/bin/sail shell |
./vendor/bin/sail when they need to run inside the containersail up -d (detached) to avoid blocking the terminalphp artisan directly on the host — use sail artisancomposer directly on the host — use sail composerdocker-compose.yml directly — use sail:publish and edit the published filesdocker exec when Sail provides a wrapper commanddevelopment
Use when implementing any logic, fixing any bug, or changing any behaviour. Use when you need to prove code works, when a bug report arrives, or when modifying existing functionality. Do NOT use for config changes, data migrations, or dependency updates.
development
Use when starting a new feature, when requirements are unclear, when asked to write code without a clear spec, or before any non-trivial implementation. Do NOT use for trivial bug fixes or one-line changes.
development
Use when you want authoritative, source-cited code free from outdated patterns. Use when building with any framework or library where correctness matters. Detects the stack from dependency files, fetches official documentation, implements following documented patterns, and cites sources for every framework-specific decision.
development
Use when preparing to ship a feature, release, or deployment. Use before merging to main, creating a release, or deploying to production. Do NOT use for CI-only changes or internal refactors that don't reach production.