Deslop OpenClaw Plugin & Skill | ClawHub
Looking to integrate Deslop into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate git & github tasks instantly, without having to write custom tools from scratch.
What this skill does
Remove AI-style code slop from a branch by reviewing diffs, deleting inconsistent defensive noise, and preserving behavior and local style.
Install
openclaw skills install @brennerspear/deslopnpx clawhub@latest install deslopFull SKILL.md
Open original| name | description |
|---|---|
| deslop | Remove AI-style code slop from a branch by reviewing diffs, deleting inconsistent defensive noise, and preserving behavior and local style. |
SKILL.md content below is scrollable.
When to use this skill
Use when asked to:
- "remove AI slop"
- "clean up generated code style"
- "review branch diff for weird comments/defensive checks/casts"
Workflow
- Set comparison base (default
main) and inspectgit diff <base>...HEAD. - Build a candidate list using
rgover added lines (comments, catches, casts, lint ignores, placeholders, debug leftovers). - Review each candidate in full file context and compare with nearby local patterns.
- Remove only inconsistent slop; keep behavior and domain-valid guards.
- Re-run project checks (
bun check,bun typecheck) and fix regressions. - Report exact files changed and what slop was removed vs intentionally kept.
Slop checklist
Read and apply: references/slop-heuristics.md
Guardrails
- Do not remove protections at trust boundaries (user input, auth, network, db, file I/O).
- Do not replace real typing with weaker typing.
- Prefer minimal edits over broad rewrites.
- Keep project conventions (hooks/query style, component patterns, naming).