naming-cheatsheet
Installation
SKILL.md
Naming Cheatsheet
Use names that are short, intuitive, and descriptive.
Goal
Make code read naturally. Reduce ambiguity. Keep names consistent.
Rules
- Use English.
- Follow project convention.
- Avoid contractions and made-up words.
- Avoid duplicated context.
- Match singular/plural to value shape.
- Name booleans by expected truth.
- Reserve React
useprefix for hooks.