What problem does it solve? Code reviews often conflate different concerns—style, correctness against the spec, and contract compliance—so one axis can mask failures in another. This Skill separates a change into independent review axes and runs them in parallel sub-agents so findings stay distinct and nothing gets lost. ## Core Features & Use Cases - Standards Axis: Checks the diff against documented repo standards plus a built-in baseline of Fowler code smells (Duplicated Code, Feature Envy, Shotgun Surgery, and more). - Spec Axis: Compares the diff against the originating issue or spec to find missing requirements, scope creep, and incorrect implementations. - Code Contracts Axis: When the repo defines @cc or CONTRACTS obligations, verifies the change complies with them. - Use Case: Before merging a feature branch, ask for a review since main. The Skill pins the fixed point, locates the spec and standards files, spawns parallel review sub-agents, and reports findings side by side under separate headings. ## Quick Start Use the code-review skill to review all changes on this branch since main against our coding standards and the originating spec.