clean-code
Installation
SKILL.md
Clean Code
Pragmatic refactoring patterns and coding standards. Not dogma — practical improvements.
Code Smells to Fix
Long functions (>30 lines)
Extract into named functions. The name documents intent better than a comment.
Deep nesting (>3 levels)
Use early returns, guard clauses, or extract helper functions.