agentsclimarketplace

Deslop

Skill spences10/skills/deslop

Clean AI-generated code noise. Use when reviewing diffs, removing unnecessary comments, tightening verbose code, or desloping recent changes.From its SKILL.md

Install
npx -y skills add spences10/skills --skill deslop

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 15 stars15 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.

SKILL.md

1.7 KB, 316 tokens by cl100k_base, as published. Nobody here has run it

Deslop

Remove AI-generated verbosity and low-value code noise from recent changes.

Scope

Default to the smallest relevant diff:

git diff --cached --name-only
git diff HEAD~1 --name-only

If scope is unclear, ask whether to review staged changes, the last commit, or specific files. Skip markdown/docs unless the user asks.

Fast Workflow

  1. Scan the diff for patterns from slop-patterns.md.
  2. Auto-remove obvious noise when it is mechanically safe: redundant comments, filler summaries, dead wrappers, duplicate branches.
  3. Ask before risky edits: behavior changes, public API changes, validation removal, or unclear comments.
  4. Verify with a targeted test/typecheck/lint when code changed.
  5. Report briefly: files touched, noise removed, risky items left alone.

What to Remove

  • Comments that restate code
  • Filler docstrings and section banners
  • Over-explained temporary variables
  • Defensive branches that cannot occur
  • Boilerplate summaries added by generated code

What to Keep

  • Comments explaining non-obvious business logic
  • Legal/license comments
  • Public API documentation
  • Compatibility notes
  • Safety checks with real failure modes

References

What ships with it: 2 files

10.9 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.