What problem does it solve? Recent code changes often accumulate duplication, needless complexity, wasted work, and shallow band-aid fixes that a single broad review misses. This Skill runs four focused reviewers in parallel over your git diff, aggregates their findings, and applies the safe fixes so cleanup happens in one pass instead of four sequential reviews. ## Core Features & Use Cases - Parallel 4-Agent Review: Fans out reuse, quality, efficiency, and altitude reviewers concurrently via delegate_task batch mode, each searching the full codebase for evidence with git blame and grep. - Risk-Tiered Application: Auto-applies SAFE fixes (unused imports, dead code), verifies CAREFUL refactors with tests, and flags RISKY changes (public API renames, N+1 restructuring) for human decision. - Flexible Scoping: Supports focus modifiers (reuse, quality, efficiency, altitude), dry-run report-only mode, and diff scoping to staged changes, last commit, branch, or specific files. - Use Case: After finishing a feature branch, say "simplify my changes" to get duplication removed, nested conditionals flattened, and band-aid fixes flagged with deeper root-cause alternatives before opening the PR. ## Quick Start Ask the agent to simplify my recent changes and it will review the current git diff with four parallel reviewers and apply the safe cleanup fixes.