What problem does it solve? Enforcing consistent coding standards across a multi-module ERP codebase is hard to do manually, and critical violations like inline SQL, exposed connection strings, or missing tenant filters often slip through reviews. ## Core Features & Use Cases - Blocker Detection: Instantly flags hard rejections such as inline SQL in C#, committed connection strings, EF Core usage, cross-module references, and NEWID() on primary keys. - Layered Checklists: Provides structured review checklists for SQL objects and naming, multi-tenancy rules, C# architecture (VSA, Result<T>, repositories), and TypeScript/React patterns (TanStack Query, Zod, strict typing). - Use Case: When a developer opens a pull request adding a new invoice feature, run this review to verify the stored procedures use CREATE OR ALTER, every query filters by tenant_id, handlers return Result<T>, and the frontend avoids barrel files and any types. ## Quick Start Review this pull request and check whether the code follows the project's SQL, C#, and frontend conventions.