From devops-skills
Applies consistent Laravel 11/12 workflows: stack detection, Inertia/React/Livewire/Vue/Blade conventions, Docker Sail commands, and Laravel Boost tooling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/devops-skills:laravel-11-12-app-guidelinesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Apply a consistent workflow for Laravel 11/12 apps with optional frontend stacks, Dockerized commands, and Laravel Boost tooling.
Apply a consistent workflow for Laravel 11/12 apps with optional frontend stacks, Dockerized commands, and Laravel Boost tooling.
AGENTS.md. If docs/ exists, read docs/README.md and relevant module docs before decisions.search-docs for Laravel ecosystem guidance; use Context7 only if Boost docs are unavailable.composer.json, package.json, docker-compose.*, and config/* to confirm:
bootstrap/app.php; service providers in bootstrap/providers.php; console configuration in routes/console.php.DB:: unless truly necessary.route() for URL generation.routes/api.php; avoid Inertia and frontend assumptions.Inertia::render() for server-side routing; place pages under resources/js/Pages unless the repo says otherwise.<Form> or useForm for Inertia forms; add skeleton/empty states for deferred props.<Link> or router.visit() for navigation.@import "tailwindcss"; and @theme for tokens.shrink-*, grow-*, text-ellipsis).gap-* for spacing between items; follow existing dark mode conventions if present.php artisan make:test --phpunit and prefer feature tests.php artisan test <file> or --filter=).vendor/bin/pint --dirty before finalizing code changes.search-docs before changing behavior or using framework features.list-artisan-commands to confirm Artisan options.list-routes to inspect routing changes.tinker for PHP debugging and database-query for read-only DB checks.browser-logs to inspect frontend errors.get-absolute-url for sharing project URLs.references/boost-tools.md for query patterns and tool usage tips.npx claudepluginhub thienanblog/awesome-ai-agent-skills --plugin office-web-ui-skillsGuides runner selection in Laravel (Sail vs non-Sail), core workflows like TDD with Pest, migrations, queues, and applying superpowers skills platform-agnostically.
Provides production-grade, idiomatic Laravel solutions with clean architecture, security best practices, performance optimizations, and modern standards for Laravel 10/11+. Use for features, refactoring, APIs, auth, services, DB interactions, and code reviews.
Provides Laravel patterns for PHP apps including Eloquent ORM, migrations, routing, controllers, queues, jobs, authentication, middleware, and testing. Use for Laravel projects.