What problem does it solve? Code changes often accumulate duplication, redundant logic, and inefficiencies that slow down comprehension and maintenance. This Skill reviews your diff with three parallel review passes and fixes the findings directly, keeping the codebase clean without altering behavior. ## Core Features & Use Cases - Three Parallel Review Agents: Runs concurrent reuse, quality, and efficiency reviews over the full git diff, covering duplication, redundant state, N+1 patterns, and leaks. - Chesterton's Fence Guardrails: Studies project conventions and git blame before touching code, and refuses to simplify load-bearing indirection, error handling, or misunderstood code. - Incremental Fix and Verify Loop: Applies fixes directly, then verifies tests pass unmodified, linters stay clean, and no dead code remains. - Use Case: After finishing a feature branch, ask for a simplification pass; the Skill reviews the diff, finds a duplicated utility and an unnecessary repeated database call, fixes both, and confirms the test suite still passes. ## Quick Start Ask the AI to simplify the code you just changed and review the current git diff for duplication, quality, and efficiency issues.