What problem does it solve? Code reviews often miss duplicated functionality, reinvented utilities, and ignored shared patterns, leading to bloated codebases and inconsistent implementations that are harder to maintain. ## Core Features & Use Cases - Duplication Investigation Workflow: Extracts core logic from new code, hypothesizes where similar code would live, and traces third-party dependency usage across the project. - Sub-Agent Delegation: Delegates deep codebase searches to codebase_investigator and generalist sub-agents using structural similarity, naming conventions, and architectural fit as search vectors. - Best Practice Evaluation: Checks error handling, state management, and styling against established project conventions. - Use Case: When reviewing a PR that adds a custom date formatting function, this skill finds the existing formatDate utility in the project and generates a review comment showing exactly how to import and reuse it. ## Quick Start Review this pull request for duplicated functionality and check whether the new code reuses existing project utilities and patterns.