code-simplification
Installation
SKILL.md
Code Simplification Skill
Simplifies code to improve clarity and maintainability. Prioritizes readability over cleverness.
Overview
This skill helps you refactor complex code into simpler, more understandable versions. It's about making code easier to read, reason about, and maintain—not about writing the shortest possible code. The goal is to remove unnecessary complexity while preserving functionality.
When to Use
- When code has overly complex logic that's hard to understand
- When there are unnecessary abstractions or layers
- When refactoring for readability during code review
- When removing dead code or unused functionality
- When debugging and the code is too convoluted to follow
- When onboarding new developers and code is confusing