Deslop
npx -y skills add rerelurelu/skillbox --skill deslopAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Removes AI-generated slop (unnecessary comments, excessive defensive checks, style inconsistencies) from uncommitted changes or a specified scope. Use after AI-assisted edits, before committing, or when the user asks to deslop, clean up AI code, or remove generated noise.
The file declares its own license as GPL-3.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.2 KB, as published. Nobody here has run it
Remove AI code slop
Remove all AI-generated slop introduced in the target scope. Launch a sub-agent to carry out this process.
Target scope:
- If
$ARGUMENTSis specified, use that as the scope. - Otherwise, target uncommitted changes in the working tree: the diff shown by
git diff HEADplus any untracked files listed bygit status --porcelain. - If there are no uncommitted changes and no
$ARGUMENTS, report that and stop.
AI-generated slop includes:
- Extra comments that a human wouldn't add or is inconsistent with the rest of the file
- Extra defensive checks or try/catch blocks that are abnormal for that area of the codebase (especially if called by trusted / validated codepaths)
- Any other style that is inconsistent with the file
Report at the end with only a 1-3 sentence summary of what you changed.