What problem does it solve? Code merged without structured review accumulates defects, security vulnerabilities, and architectural debt. This Skill enforces a consistent multi-axis review process so every change is evaluated against the same quality bar before entering the main branch. ## Core Features & Use Cases - Five-Axis Review: Evaluates every change for correctness, readability, architecture, security, and performance with concrete checklists per axis. - Severity-Labeled Feedback: Categorizes findings as Critical, Required, Nit, Optional, or FYI so authors know what blocks merge versus what is optional. - Change Sizing and Splitting Guidance: Defines reviewable change sizes (~100 lines good, ~1000 too large) and provides stacking, horizontal, and vertical splitting strategies. - Dependency and Dead Code Discipline: Covers changelog-based dependency upgrades, lockfile review, and post-refactor dead code identification. - Use Case: Before merging a pull request, run the review checklist to verify tests cover the change, flag an N+1 query as Critical, suggest splitting an oversized diff, and approve only when the change improves overall code health. ## Quick Start Review this pull request across correctness, readability, architecture, security, and performance, and label each finding by severity.