What problem does it solve? Laravel offers multiple valid ways to solve the same problem, which leads to inconsistent codebases, hidden N+1 query bugs, security gaps, and performance regressions. This Skill provides an indexed rulebook of Laravel best practices so AI-assisted code generation and review follows proven conventions instead of ad-hoc patterns. ## Core Features & Use Cases - Indexed Rule Library: Twenty topic-specific rule files covering Eloquent, migrations, validation, routing, queues, caching, security, testing, Blade, HTTP client, scheduling, and architecture, each with incorrect/correct code examples. - Consistency-First Guidance: Instructs checking existing codebase patterns before applying any rule, so refactors match the project's established conventions rather than introducing a second approach. - Code Review & Refactoring Support: Maps concerns like N+1 queries, missing authorization, or unqueued notifications to the exact rule file to read before editing. - Use Case: While adding a new endpoint that lists orders with their items, the Skill directs you to eager-load relationships, use a Form Request for validation, authorize via a policy, and keep the controller thin by delegating to an action class. ## Quick Start Ask the AI to review or write Laravel code, for example: review this OrderController for N+1 queries, missing authorization, and validation issues using the Laravel best practices skill.