What problem does it solve? Laravel developers often write inconsistent database code across projects, leading to N+1 query performance issues, incorrect driver-specific behavior, and missing transaction handling. This Skill loads a shared set of database conventions so the AI applies the same rules every time. ## Core Features & Use Cases - Database Convention Loading: Reads the shared db-context conventions from ~/dotfiles/ai/skills/db-context/SKILL.md and applies them to the current session. - Laravel Best Practices: Covers driver detection, N+1 query prevention, and proper transaction usage in Laravel code. - OpenCart Boundary Handling: Explicitly excludes OpenCart projects from these conventions except where the source document contrasts behavior. - Use Case: When asking the AI to write or review Laravel Eloquent queries, activate this Skill so it automatically checks for N+1 risks and wraps multi-write operations in transactions. ## Quick Start Apply the shared database conventions to review my Laravel repository's Eloquent queries for N+1 problems and missing transactions.