fbarrento-laravel-rules
Installation
SKILL.md
FBarrento Laravel Rules
Higher priority than .agents/skills/laravel-best-practices when both apply. Use Laravel and Pest documentation for API syntax; use these files for project code shape.
Quick Reference
1. Naming -> rules/naming.md
- Actions are verb-first and do not use the
Actionsuffix. - Queries use the
Querysuffix and describe the read operation. - Services use the
Servicesuffix. - Models and enums do not use
Model/Enumsuffixes. - Tests use the
Testsuffix.