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 commandtesting
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases.
development
TypeScript project conventions. Auto-load when editing *.ts or *.tsx files.
development
Use when writing or fixing PHP code, implementing classes, traits, or interfaces, applying PSR standards, or working with PHP 8.3+ patterns like readonly properties, enums, named arguments, match expressions, and union types.
tools
Next.js 15 App Router project conventions. Auto-load when working in app/, src/app/, components/, server actions, or route handlers.