s-hiraoku/codex-harnesses · Archived

deslop

Remove common AI-generated boilerplate and readability noise from changed code without changing behavior.

First seen Jun 13, 2026

Installation

$ npx skills add s-hiraoku/codex-harnesses --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 s-hiraoku/codex-harnesses · top by installs.

npx skills add s-hiraoku/codex-harnesses

Browse all from s-hiraoku/codex-harnesses

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 Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License LICENSE
Default branch main
Open issues 2
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents codex

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,242 B
  • docs SUMMARY.md 119 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Deslop

Use this workflow when code on the current branch contains visibly generated boilerplate that makes maintenance harder but does not represent real behavior.

Workflow

  1. List changed files and read the diff before editing.
  2. Look for common slop signatures:

- comments that restate the next line - broad except Exception wrappers that add no handling - private docstrings longer than the code they describe - "helper" functions used exactly once - defensive checks for states the type system or caller contract rules out - conversation-bound comments such as "added for this issue" - verbose variable names that obscure simple logic

  1. Preserve genuine boundary handling for HTTP, subprocesses, file IO, parsing, and user input.
  2. Remove only noise whose behavior impact is clearly zero.
  3. Run targeted tests or checks for the touched files.
  4. If a removal might change observability or error behavior, leave it as a proposal.

Final Report

Include:

  • files cleaned
  • slop categories removed
  • tests or checks run
  • proposals not applied
  • residual risks