Review recently changed code for unnecessary complexity and edit it in place to simplify — removes over-engineering, dead code, and premature abstractions while preserving behavior. Unlike review (which only reports), this applies the changes. Use after building a feature, or when the user says "simplify this", "this feels over-engineered", "clean this up", or "de-engineer".
Scanned 9/22/2026
Install to Claude Code
npx -y skills add jckeen/dotfiles --skill simplify --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Simplify?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jckeen-simplify-dotfiles)More formats (shields.io, HTML) on the badges page.
---
name: simplify
description: Review recently changed code for unnecessary complexity and edit it in place to simplify — removes over-engineering, dead code, and premature abstractions while preserving behavior. Unlike review (which only reports), this applies the changes. Use after building a feature, or when the user says "simplify this", "this feels over-engineered", "clean this up", or "de-engineer".
---
When the user runs /simplify, do the following:
1. Run `git diff HEAD~3..HEAD` to see recent changes (or use the scope the user specifies)
2. Delegate to the `code-simplifier` subagent to review the changes
3. Present the findings grouped by confidence level:
- **High confidence** — safe to apply immediately
- **Medium confidence** — worth discussing
- **Low confidence** — optional improvements
4. Apply the high-confidence simplifications automatically
5. Ask about medium-confidence ones before applying
6. Preserve behavior and public interfaces unless the user explicitly requests a change.
7. Run the smallest useful formatter, typecheck, lint, or test command after edits; report checks that could not run.
8. Commit the simplifications as `refactor: simplify [area]`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!