Code Simplification
SkillAI & modelsSimplify working code while preserving behavior—remove dead paths, flatten nesting, clarify names, reduce duplication. Use after features work but code feels over-engineered.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Code Simplification skill
What this skill tells your AI
The instructions your AI receives, as published by charlieviettq/awesome-agent-skill in .claude/skills/code-simplification/SKILL.md and read by ahel’s review.
Behavior-preserving simplification pass on code that already works. Distinct from design-smell-review (structural critique before change) and refactor-legacy-python-pr (scoped legacy cleanup PRs).
When to use
- Feature is done and tested; complexity exceeds need
- Review feedback says "over-engineered"
- Preparing a focused hygiene PR
When not to use
- Bug is still open (fix behavior first)
- Large architectural rewrite (use
incremental-implementation) - No tests and behavior is unclear (add tests or spike first)
Workflow
- Baseline — confirm tests pass or define minimal manual checks
- Inventory — list simplification targets (unused code, deep nesting, duplicate logic, premature abstraction)
- One change at a time — small commits; run tests after each
- Stop — when readability improves without expanding scope
Safe simplifications
- Remove dead code and unused imports
- Inline one-use helpers when they obscure flow
- Replace cleverness with explicit steps
- Consolidate duplicate validation or mapping
- Narrow public API surface if callers allow
Avoid
- Drive-by renames across unrelated files
- Changing behavior "while you're here"
- Removing abstractions that enable testing or extension without evidence
Verification
- Same inputs → same outputs
- No new linter/type errors
- Diff stays reviewable (< ~300 lines unless agreed)
Signals
- GitHub stars
- 26
- Forks
- 9
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
code-simplification-charlieviettq- Source
- github.com/charlieviettq/awesome-agent-skill