What problem does it solve? Laravel codebases drift into inconsistent patterns when multiple contributors write controllers, models, and services without a shared style contract, making reviews slow and error-prone. This Skill encodes a project's Laravel conventions as enforceable rules so generated or refactored PHP matches existing patterns on the first pass. ## Core Features & Use Cases - Fifteen core coding rules: Covers guard clauses, collection pipelines, Eloquent idioms, FormRequest validation, exception handling, routing, naming, and enum usage with concrete good/bad PHP examples. - Long-tail review checklist: A references/checklist.md file holds detailed rules for formatting, PHPDoc typing, migrations, policies, API resources, queues, and config that the mandatory review gate enforces before presenting changes. - Tooling migration map: references/tooling-candidates.md tracks which mechanical rules should move into Pint, PHPStan, or Rector so the checklist shrinks as automation grows. - Use Case: When asked to add a new API endpoint, the Skill writes the FormRequest, single-action controller, route registration, and Eloquent query following project conventions, then self-reviews the diff against the checklist before presenting it. ## Quick Start Ask the AI to implement or refactor a Laravel controller, model, action, or service following the project's coding conventions and run the mandatory review gate on the diff.