What problem does it solve? Code merged without structured review accumulates correctness bugs, security vulnerabilities, architectural drift, and unreadable logic. This Skill enforces a consistent multi-axis review process so every change is evaluated against the same quality gates before entering the main branch. ## Core Features & Use Cases - Five-Axis Review: Evaluates every change for correctness, readability, architecture, security, and performance, with severity-labeled findings (Critical, Required, Nit, Optional, FYI). - Change Sizing and Splitting Guidance: Defines reviewable change sizes (~100 lines good, ~1000 too large) and provides stacking, horizontal, and vertical splitting strategies for oversized PRs. - Dependency and Dead Code Discipline: Covers changelog-based dependency upgrade review, lockfile diff inspection, and explicit dead-code identification after refactors. - Use Case: Before merging a pull request, run the review checklist to verify tests cover the change, no N+1 queries or injection risks exist, and the description stands alone in version control history. ## Quick Start Review this pull request across correctness, readability, architecture, security, and performance, and label each finding by severity.