clean-code
Installation
SKILL.md
What I do
- Write readable and maintainable code
- Apply SOLID principles
- Use meaningful names for variables, functions, and classes
- Keep functions small and focused
- Write proper comments and documentation
- Handle errors gracefully
- Remove dead code and duplication
- Follow DRY (Don't Repeat Yourself)
When to use me
When writing or refactoring code for better quality and readability.
Meaningful Names
# BAD - unclear what these represent
d = 12
x = get_data()
tmp = calculate()