deslop
Installation
SKILL.md
Deslop
Take code that was just written and make it feel tighter, simpler, and more deliberate.
Read style.md first. That file is the source of truth for the style rules.
Process
- Identify the target files.
- Start with files modified in this session.
- Use
git diffif available, otherwise use recent edits or the user's explicit file list. - Do not touch unrelated files.
- Read each target file before editing it.
- Use parallel subagents for the cleanup pass.
- If there are multiple files, split them across subagents.
- If there is one large file, it is still fine to use one subagent for an isolated second pass.
- Give each subagent the exact file list it owns.
- If the scope is only one to three small files, a single pass is fine. Do not add subagent overhead just to satisfy the rule mechanically.
- Tell each subagent to:
Related skills