What problem does it solve? Codebases accumulate dead code, redundant abstractions, and hand-rolled utilities that duplicate standard library features. This Skill scans the whole repository and produces a ranked list of what to cut, so you can reduce bloat without manually hunting through every file. ## Core Features & Use Cases - Whole-Repo Over-Engineering Scan: Reviews the entire codebase instead of a single diff, tagging findings as delete, stdlib, native, yagni, or shrink. - Ranked Findings Report: Outputs one line per finding ordered by biggest cut first, ending with an estimate of removable lines and dependencies. - Read-Only Audit: Lists findings without applying any fixes, keeping you in control of what actually gets removed. - Use Case: Before a major refactor, run the audit to discover that a custom retry wrapper duplicates a stdlib function, three single-implementation interfaces can be inlined, and an unused config flag can be deleted. ## Quick Start Ask the AI to audit this codebase for over-engineering and list what can be deleted or replaced with standard library equivalents.