What problem does it solve? Repositories quietly accumulate dead code, leftover debug logs, unused imports, and stale feature flags across sessions, and manual cleanup is tedious and error-prone. This Skill scans the repo across nine cruft categories, filters out false positives, and applies fixes category by category only after user confirmation. ## Core Features & Use Cases - Nine-category scan: Detects unused imports, commented-out code, debug artifacts, dead exports, stale suppression directives, empty files, unused packages, stale feature flags, and unreferenced routes. - False-positive filtering: Verifies every candidate against framework config, test files, git hooks, and package.json scripts before reporting, so the report stays trustworthy. - Scoped or full scans: Use --branch to scan only files changed versus the base branch, or --full to scan the whole working tree. - Use Case: Before merging a feature branch, run the cleanup scan to remove leftover console.log statements and unused imports, with each fix category confirmed individually. ## Quick Start Ask the agent to run cleanup on the current branch to find and fix dead code and debug artifacts.