de-slop

Installation
SKILL.md

De-Slop

Remove AI-generated artifacts and code sloppiness while maintaining project structure.

What Gets Cleaned

  1. Console statements — Replace with logger service
  2. any types — Replace with proper types/interfaces
  3. Unused imports — Remove completely
  4. Commented-out code — Remove dead code blocks
  5. Temporary/debug code — Remove TODO/FIXME debug statements
  6. Obvious AI comments — Remove redundant comments
  7. Unused variables — Remove if truly unused
  8. Unnecessary defensive checks — Remove try-catch and null guards on trusted internal paths that cannot actually fail; keep guards on real external boundaries
  9. Over-nesting — Collapse deep if/else pyramids into early returns, matching the surrounding file's existing style

Workflow

Installs
38
GitHub Stars
30
First Seen
Apr 7, 2026
de-slop — shipshitdev/library