What problem does it solve? After making code changes, it is easy to introduce duplicated logic, hacky patterns, and performance regressions that slip past a quick self-review. This Skill automates a structured post-change review so issues are caught and fixed before they accumulate. ## Core Features & Use Cases - Three Parallel Review Agents: Launches concurrent agents covering code reuse (duplicate utilities), code quality (redundant state, parameter sprawl, stringly-typed code), and efficiency (N+1 patterns, missed concurrency, memory leaks). - Git-Diff Driven Scope: Uses git diff to identify exactly what changed, falling back to recently modified files when no git changes exist. - Automatic Fixing: Aggregates all findings and fixes each issue directly, skipping false positives without debate. - Use Case: After implementing a new feature across several files, run this Skill to have three reviewers inspect the diff in parallel and clean up duplicated helpers, unnecessary re-renders, and sequential async calls before committing. ## Quick Start Review my current uncommitted changes for reuse, quality, and efficiency problems and fix whatever you find.