Naming conventions for variables, functions, classes, files, and more.
Scanned 9/12/2026
Install to Claude Code
npx -y skills add skeletorflet/opencode-supreme-setup --skill naming --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Naming?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/skeletorflet-naming)More formats (shields.io, HTML) on the badges page.
---
name: naming
description: Naming conventions for variables, functions, classes, files, and more.
---
## naming
Choose clear and consistent names.
### Conventions
- Variables: camelCase, descriptive nouns
- Functions: camelCase, verb+noun
- Classes: PascalCase, nouns
- Constants: UPPER_SNAKE_CASE
- Files: kebab-case
- Booleans: is, has, should prefixes
### Principles
- Reveal intent (not implementation)
- Avoid abbreviations
- Pronounceable names
- Consistent with codebase
- Longer > cryptic
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!