What problem does it solve? Recent code changes often accumulate duplication, needless complexity, wasted work, and shallow band-aid fixes. Manually reviewing a diff for all of these quality dimensions at once is slow and easy to do superficially. ## Core Features & Use Cases - Parallel Four-Reviewer Fan-Out: Launches four focused reviewers (code reuse, code quality, efficiency, altitude) concurrently via delegate_task batch mode, each searching the full codebase for evidence. - Risk-Tiered Fix Application: Classifies findings as SAFE (auto-apply), CAREFUL (apply with test verification), or RISKY (flag for human review), then applies them in order with targeted test runs. - Flexible Scoping and Dry Run: Supports focus filters (reuse, quality, efficiency, altitude), dry-run report-only mode, and diff scoping by commit, staged changes, branch, or file. - Use Case: After finishing a feature branch, ask for a cleanup pass; the skill reviews the diff, deduplicates findings across reviewers, applies safe fixes like removing unused imports and flattening nested conditionals, and flags deeper architectural issues for your decision. ## Quick Start Ask the agent to simplify my recent changes and apply the safe fixes it finds.