@tank/clean-code
Installation
SKILL.md
Clean Code
Write reusable, modular code with performance and readability in mind.
Core Philosophy
- Code is read 10x more than written. Optimize for the reader.
- Complexity is the apex predator. Fight it at every level — function, module, system.
- Make the change easy, then make the easy change. Small steps beat big rewrites.
- Don't build what you don't need. Defer abstraction until the 3rd occurrence.
- Profile before optimizing, but design without obvious perf disasters.
Working Mode
- Identify the smallest unit of change.
- Confirm tests exist or add a characterization test.
- Apply one refactoring at a time.
- Re-run tests and reassess complexity.