What problem does it solve? Code reviews often rubber-stamp working implementations that quietly degrade maintainability: files balloon past 1000 lines, ad-hoc conditionals tangle existing flows, and thin wrappers add indirection without clarity. This Skill enforces an unusually strict, structure-focused review that pushes for dramatic simplification rather than cosmetic cleanup. ## Core Features & Use Cases - Structural regression detection: Flags files crossing the 1000-line threshold, scattered special-case branching, feature logic leaking into shared paths, and unnecessary casts, optionality, or wrapper abstractions. - Code-judo restructuring suggestions: Actively searches for reframings that delete whole layers of complexity instead of merely rearranging them, with a prioritized list of preferred remedies. - Adversarial findings challenge: Runs a self-critique pass (via subagent when available) that keeps, downgrades, or drops each draft finding so only high-conviction issues survive. - Use Case: Before merging a large feature branch, run this review to catch a diff that pushes a module past 1k lines and bolts new conditionals onto an unrelated flow, then get concrete restructuring proposals that keep behavior identical. ## Quick Start Ask the agent to run a thermo-nuclear code quality review on the current branch's changes before merging.