What problem does it solve? Codebases accumulate unnecessary complexity: reinvented standard library functions, speculative abstractions, unused dependencies, and dead flexibility. This Skill performs a focused review pass that finds only what can be cut, keeping diffs lean. ## Core Features & Use Cases - Over-Engineering Detection: Flags hand-rolled utilities the standard library already provides, dependencies duplicating native platform features, and abstractions with a single implementation. - One-Line Findings: Each finding is a single line with location, a tag (delete, stdlib, native, yagni, shrink), what to cut, and what replaces it. - Net-Line Scoring: Ends every review with the total lines that could be removed, or confirms the code is already lean. - Use Case: Before merging a pull request, run this review to catch a 27-line email validator that could be one line, or a moment.js import replaceable by Intl.DateTimeFormat. ## Quick Start Ask the AI to review this diff for over-engineering and tell me what can be deleted.