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 across 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 exactly what must be addressed before merge. - Change Sizing and Dependency Discipline: Provides thresholds for splitting large changes, guidance for writing standalone change descriptions, and a workflow for reviewing dependency upgrades one package at a time with changelog and lockfile review. - Use Case: Before merging a pull request that adds a new API endpoint, run the review checklist to verify tests cover edge cases, inputs are validated at the boundary, no N+1 queries exist, and the change description stands alone in version control history. ## Quick Start Review the current uncommitted changes using the five-axis code review checklist and report findings with severity labels.