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 functionality would live, and searches the codebase for existing equivalents. - Sub-Agent Delegation: Delegates deep codebase searches to codebase_investigator and generalist sub-agents using structural, naming, and documentation-based search vectors. - Best Practices 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, the skill finds the existing formatDate utility in the project and drafts a review comment showing how to import and reuse it. ## Quick Start Review this pull request for duplicated functionality and check whether the new code reuses existing shared utilities and project patterns.