What problem does it solve? Code changes merged without structured review accumulate correctness bugs, security vulnerabilities, and architectural debt. This Skill provides a repeatable five-axis review process for .NET/C# changes so every pull request is evaluated consistently before merge. ## Core Features & Use Cases - Five-Axis Review: Evaluates correctness, readability, architecture, security, and performance with .NET-specific checks like async correctness, EF Core N+1 patterns, FromSqlRaw risks, and DI lifetimes. - Structured Review Process: Walks through context gathering, test review, implementation review, severity-labeled findings (Critical, Nit, Optional, FYI), and verification of the author's test evidence. - Change Sizing and Descriptions: Enforces reviewable change sizes (~100-300 lines), splitting strategies, and standalone commit descriptions. - Use Case: Before merging a pull request that adds an EF Core query endpoint, run the review checklist to catch an N+1 query pattern, missing pagination, and a missing regression test, then label each finding by severity. ## Quick Start Review the current uncommitted changes in this .NET solution using the five-axis checklist and report findings with severity labels.