deslop
Installation
SKILL.md
Deslop
Use this workflow when changes on the current branch contain visibly LLM-generated patterns that hurt readability or maintainability.
Common slop signatures
- Comments that restate the next line verbatim.
try/except Exceptionthat re-raises with a wrapper message and no other handling.- Input validation for cases the type system already rules out.
- "Helper" functions used exactly once.
- Multi-paragraph docstrings on private functions.
- "Added for issue #N" / "Used by foo" comments that bind code to the conversation.
- Unreachable defensive branches (
if config is not Noneafter a non-Optional construction).