What problem does it solve? Recent code changes often accumulate duplication, redundant state, and structural complexity during rapid iteration. This Skill reviews the current diff and applies focused, behavior-preserving cleanup so recent changes stay maintainable without subjective churn. ## Core Features & Use Cases - Reuse Review: Detects duplicated new logic and identifies existing helpers, utilities, and primitives that should be reused instead. - Quality Review: Flags redundant state, parameter sprawl, copy-paste variants, leaky abstractions, stringly typed code, deep nesting, and comments that narrate obvious behavior. - Efficiency Review: Catches repeated work or I/O, missed safe concurrency, hot-path bloat, no-op updates, unbounded structures, and overly broad reads. - Use Case: After finishing a feature branch, ask for a simplification pass on the diff to remove duplicated helper logic and redundant state before opening a pull request. ## Quick Start Ask the assistant to simplify the current diff, optionally naming a specific path to restrict the review scope.