deslop
Installation
SKILL.md
Remove AI Slop & Simplify
When to use this skill
Activate when the user types /deslop, asks to remove AI slop, clean AI
artifacts, strip over-engineered patterns, simplify code, review staged or
unstaged changes for bloat, or make changes clearer without changing behavior.
Flag detection
| Flag | Effect |
|---|---|
--staged |
Diff staged changes (git diff --cached). Default if no diff flag is provided. |
--unstaged |
Diff unstaged changes (git diff). |
--base <branch> |
Diff changes since merge base with <branch>: git diff <branch>...HEAD. |
Defaults: If no diff flag is provided, behave as if --staged was passed.
Mutual exclusivity: --staged, --unstaged, and --base are mutually exclusive. Use the first one detected.