clean-names

Installation
SKILL.md

Clean Names

N1: Choose Descriptive Names

Names should reveal intent. If a name requires a comment, it doesn't reveal its intent.

# Bad - what is d?
d = 86400

# Good - obvious meaning
SECONDS_PER_DAY = 86400

# Bad - what does this function do?
def proc(lst):
    return [x for x in lst if x > 0]
Installs
95
GitHub Stars
173
First Seen
Feb 18, 2026
clean-names — ertugrul-dmr/clean-code-skills