# Meaningful Names

> Use intention-revealing names that explain what a variable holds or what a function does Use when enforcing code quality standards. Quality category skill.

- Skill: `majiayu000/meaningful-names` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/meaningful-names`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/meaningful-names/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/meaningful-names

---


# Meaningful Names

Use intention-revealing names that explain what a variable holds or what a function does. Avoid single-letter variables (except loop counters), abbreviations, and cryptic names. Function names should be verbs or verb phrases (getUserById, calculateTax). Class names should be nouns. The name length should be proportional to its scope—broader scope requires more descriptive names.
