What problem does it solve? Code reviews often rubber-stamp working implementations that quietly degrade a codebase through file sprawl, ad-hoc conditionals, and leaky abstractions. This Skill enforces a strict, structure-focused review that pushes for dramatic simplification rather than accepting code that merely works. ## Core Features & Use Cases - Strict Maintainability Audit: Applies explicit non-negotiable rules covering file size limits (1000-line threshold), spaghetti branching, thin abstractions, and type-boundary cleanliness. - Structural Simplification Focus: Actively searches for "code judo" moves—restructurings that delete complexity entirely instead of rearranging it. - Prioritized Findings: Orders review output from structural regressions down to legibility concerns, with a clear approval bar and presumptive blockers. - Use Case: Before merging a large pull request, run this review to catch a file crossing 1000 lines, feature logic leaking into shared modules, or a missed opportunity to reframe the change so entire conditional branches disappear. ## Quick Start Run a strict code quality review of the current branch's changes and flag any structural regressions or missed simplification opportunities.