Clean code skill
Skill cskwork/clean-code-skill
Agent skill for behavior-preserving clean-code refactoring of any codebase, based on Fowler's catalog (refactoring.guru): detect smell -> choose technique -> apply in safe small steps.
npx -y skills add cskwork/clean-code-skillAssembled 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
Refactor any codebase using Fowler's catalog (refactoring.guru) — detect the smell, pick the technique, apply in safe behavior-preserving steps. Use when asked to refactor, clean up, simplify, improve readability/maintainability, or reduce code smells.
SKILL.md
5.4 KB, as published. Nobody here has run it
Clean Code
Turn messy code into clean code without changing its observable behavior. Method and catalog are from Martin Fowler's Refactoring, organized the way refactoring.guru presents it.
The core idea: clean code is not a style preference, it is what makes a codebase cheap to change. Every technique below trades a small, mechanical edit for lower future cost.
What "clean" means (the target you refactor toward)
Code is clean when it is:
- Obvious to another programmer — intention-revealing names, no magic numbers, small methods and classes. If a reader needs you to explain it, it isn't clean.
- Free of duplication — one change should require editing exactly one place. Duplication multiplies cognitive load and bugs.
- Minimal — the fewest classes and moving parts that solve the problem. Code is a liability, not an asset; keep it short and simple.
- Tested and passing — reliability is part of clean. "95% of tests pass" means the code is dirty.
- Cheap to maintain and extend — the actual payoff of the four above.
The opposite of clean is technical debt: messy code charges interest (slower delivery) until you pay it down by refactoring.
The refactoring loop
For every cleanup, run this loop. Never skip step 4 or 5.
- Detect — name the specific smell, don't just say "this is ugly." See references/code-smells.md.
- Choose — map the smell to a concrete technique. See references/refactoring-techniques.md.
- Step small — make one tiny, behavior-preserving change.
- Re-run tests — after every step. All must stay green. A long red period means your step was too big — shrink it.
- Verify it's actually cleaner — read the result. If it isn't more readable than before, revert it. Mechanical rule-compliance that hurts readability is a net loss.
Rules of engagement (non-negotiable)
- Behavior-preserving only. Refactoring never changes what the program does. The moment you change behavior, it's a feature or bugfix — separate commit, separate review.
- Tests are the safety net. No tests around the target? Write characterization tests that pin current behavior first, then refactor. If a test breaks during refactoring: either you introduced a bug (fix the code) or the test was too low-level / coupled to internals (fix the test, prefer behavioral/BDD-style tests).
- Small steps, always green. Commit-sized changes, each independently correct.
- One concern per commit. Don't bundle five refactorings into one diff — you and the reviewer will lose the thread. Keep refactoring commits separate from feature commits.
- Match the surrounding code. Adopt the codebase's existing naming, idioms, and structure. Do not reformat, rename, or "improve" unrelated code.
- Stay surgical. Touch only what the task requires.
- Cohesion over line-count rules. "Functions ≤ 50 lines" is a smell detector, not a law. Split by responsibility, not to hit a number. Don't create one-line pass-through wrappers unless they name a real concept.
When to refactor (and when not to)
- Rule of Three — first time, just write it. Second time you duplicate, wince but proceed. Third time, refactor.
- Before adding a feature — clean the area you're about to extend; changes are far easier in clean code.
- While fixing a bug — bugs hide in the messiest code. Cleaning often makes the defect reveal itself.
- During code review — the last cheap chance to fix before it ships; do it together with the author.
- Not under deadline pressure as a big-bang rewrite. Prefer many small in-place improvements over one risky overhaul. Only rewrite a section when it's beyond repair — and only after you have tests and time.
Workflow for a whole-codebase cleanup
When asked to "clean up the codebase" broadly:
- Establish a safety net first. Confirm a working build and test suite. If absent, set one up before touching code — refactoring without tests is just editing and hoping.
- Triage by leverage. Fix the highest-impact smells first: Long Method, Duplicate Code, Large Class, Long Parameter List, tangled conditionals. Ignore cosmetic nits until structure is sound.
- Work in cohesive units. Module by module (or file by file). Commit each cohesive cleanup on its own.
- Gate every unit. Run full tests + lint + type-check + build between modules. Report exactly what was verified.
- Explain the why. The what lives in the diff; the why lives in the commit message. State what you changed and the reasoning.
References (load on demand)
- references/clean-code-principles.md — naming, small functions, guard clauses, magic numbers, DRY, comments, consistent abstraction level — each with before → after.
- references/code-smells.md — all 23 smells in 5 families; each maps to the techniques that fix it. Use this to diagnose.
- references/refactoring-techniques.md — 60+ techniques in 6 families with clean, readable before → after patterns. Use this to fix.
Gives 3 of the 12 instructions most refactoring skills give
Counted across 521 of the 525 authors here whose files we hold, read 2026-08-06
- run tests after each changehere, and in 59 of 521, across 56 files
- write tests before refactoringhere, and in 27 of 521, across 24 files
- preserve external behaviorhere, and in 26 of 521, across 22 files
- remove dead codein 25 of 521, across 24 files
- make small incremental changesin 20 of 521, across 17 files
- break the implementation into tiny commitsin 18 of 521, across 5 files
- ask the user about alternative optionsin 17 of 521, across 4 files
- create a GitHub issue with the planin 17 of 521, across 4 files
- explore the repository to verify assertionsin 17 of 521, across 4 files
- interview the user about the refactorin 16 of 521, across 3 files
- check the codebase for test coveragein 16 of 521, across 3 files
- refactor one thing at a timein 16 of 521, across 12 files
Said here and by no other author read
- map the smell to a concrete technique
- verify the result is cleaner
- explain the why in commit messages
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once.