code-simplifier
Installation
SKILL.md
Review the code just written and simplify it without changing behavior.
Steps:
- Read all files that were modified in this session
- For each file, identify:
- Unnecessary abstractions (helpers used once, over-engineered patterns)
- Redundant comments or dead code
- Variables that could be inlined
- Functions that could be collapsed
- Any code that was added "just in case" but isn't used
- Simplify ruthlessly: the goal is minimum lines for correct behavior
- Do NOT change public interfaces, exported types, or behavior
- Do NOT add new features, docstrings, or error handling that wasn't there
- After simplifying, re-read the result and confirm it still makes sense
Guiding principle: if you can delete it without breaking anything, delete it.