| name | deslop |
| description | Scan recent changes for AI-generated code slop and remove it. Use when the user says "deslop", "remove slop", "clean up AI code", or asks to remove AI-generated artifacts from the codebase. |
| disable-model-invocation | true |
Remove AI Code Slop
Scan the diff against master and remove AI-generated slop introduced in this branch.
Workflow
-
Get the diff
git diff master...HEAD
If there are also uncommitted changes, include them:
git diff master
-
Scan each changed file for the slop categories below
-
Fix each instance — remove or rewrite to match the surrounding code style
-
Verify the build still passes:
yarn build && yarn lint && yarn type-check
-
Report a 1-3 sentence summary of what you changed
Slop Categories
Unnecessary comments
AI loves adding comments that restate the code. Remove comments that a human wouldn't write. Keep comments that explain why — domain reasoning, constraints, trade-offs, or non-obvious intent.
const [count, setCount] = useState(0);
const user = useComment({ commentCid });
const isLoading = comment === undefined;
Excessive defensive checks
AI adds try/catch blocks and null guards everywhere, even on trusted codepaths. Remove guards that the surrounding code doesn't need.
try {
const { feed } = useFeed({ communities });
} catch (error) {
console.error('Failed to fetch feed:', error);
}
const { feed } = useFeed({ communities });
as any casts
AI casts to any to bypass type errors instead of fixing the actual types. Remove the cast and fix the underlying type issue.
Inconsistent style
Any pattern that doesn't match the rest of the file: different naming conventions, different import ordering, unnecessary abstractions, or overly verbose code where the file is concise.
Over-engineering
AI tends to add unnecessary abstractions, utility functions, or wrapper components that obscure simple logic. If a one-liner was wrapped in a helper, unwrap it.
Judgment Call: When to Keep Comments
Comments are necessary when code expresses:
- Non-obvious intent or domain-specific reasoning
- Constraints that aren't apparent from the implementation
- Trade-offs or "why not X" decisions
- Workarounds with context on when they can be removed
When in doubt, check if similar code nearby has comments. Match the file's existing comment density.