riffingonsoftware/agent-skills · Archived

deslop

Remove AI-generated code slop and clean up code style

Installation

$ npx skills add riffingonsoftware/agent-skills --skill deslop

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from riffingonsoftware/agent-skills.

npx skills add riffingonsoftware/agent-skills

Browse all from riffingonsoftware/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch trunk
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 699 B
  • docs SUMMARY.md 67 B

History

  1. First recorded snapshot · 1 installs

SKILL.md

Remove AI code slop

Check the diff against the base branch and remove AI-generated slop introduced in the branch.

Focus Areas

  • Extra comments that are unnecessary
  • Defensive checks or try/catch blocks or similar guardrails that are abnormal for trusted code paths
  • Casts to any (or similar language-specific overly broad type) used only to bypass type issues
  • Deeply nested code that should be simplified with early returns

Guardrails

  • Keep behavior unchanged unless fixing a clear bug.
  • Prefer minimal, focused edits over broad rewrites.
  • Keep the final summary concise (1-3 sentences).