What problem does it solve? Codebases accumulate leftover debug logs, dead commented-out code, and unused imports during development, cluttering files and reducing readability. This Skill cleans up that noise in a controlled, surgical way without touching code you did not ask to modify. ## Core Features & Use Cases - Scoped Deletion: Cleans only the files explicitly passed as arguments, never spreading changes to unspecified files. - Conservative Safety Rules: Keeps intentional logging (error handling, observability), exported or dynamically referenced symbols, and test-only helpers, reporting them instead of deleting. - Verification & Reporting: Lists everything removed and everything kept with reasons, then runs type checks or builds to confirm nothing broke. - Use Case: After a debugging session, run the cleanup on your modified source files to strip temporary console.log statements and unused imports before committing. ## Quick Start Ask the AI to run cleanup on the files you just edited, for example: clean up src/api/handler.ts and remove any leftover debug logs and unused imports.