What problem does it solve? Code reviews often rubber-stamp working implementations that quietly degrade a codebase through file sprawl, scattered conditionals, and leaky abstractions. This Skill enforces a strict, structure-first review standard that catches maintainability regressions before they merge. ## Core Features & Use Cases - Structural Quality Audit: Evaluates diffs for abstraction quality, modularity, type-boundary cleanliness, and architectural layering rather than surface-level style. - Spaghetti-Growth Detection: Flags ad-hoc conditionals, special-case branches, and feature logic leaking into shared paths as design problems. - File-Size Guardrails: Treats pushing a file past 1000 lines as a presumptive blocker requiring decomposition or explicit justification. - Use Case: Before merging a large feature branch, run this review to get high-conviction feedback on missed simplification opportunities, wrong-layer logic, and unnecessary wrappers, with concrete restructuring suggestions. ## Quick Start Ask the AI to run a strict code quality review of the current branch's changes using the code-review skill.