de-slop
Installation
SKILL.md
De-Slop
Remove AI-generated artifacts and code sloppiness while maintaining project structure.
What Gets Cleaned
- Console statements — Replace with logger service
anytypes — Replace with proper types/interfaces- Unused imports — Remove completely
- Commented-out code — Remove dead code blocks
- Temporary/debug code — Remove TODO/FIXME debug statements
- Obvious AI comments — Remove redundant comments
- Unused variables — Remove if truly unused
- Unnecessary defensive checks — Remove try-catch and null guards on trusted internal paths that cannot actually fail; keep guards on real external boundaries
- Over-nesting — Collapse deep
if/elsepyramids into early returns, matching the surrounding file's existing style