agentsclimarketplace

Naming obviousness

Skill codybrom/clairvoyance/skills/naming-obviousness

ESP for AI Coding — Agent skills on the philosophy on software design, grounded in decades of engineering experience.

Install
npx -y skills add codybrom/clairvoyance --skill naming-obviousness

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 9 stars9 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Reviews naming quality and code obviousness via the isolation test, scope-length principle, and consistency audit. Use when names feel vague, something is hard to name (a design signal, not a vocabulary problem), or behavior isn't obvious on first read. Not for comment quality or documentation (use comments-docs).

SKILL.md

6.0 KB, as published. Nobody here has run it

Naming & Obviousness Review Lens

When invoked with $ARGUMENTS, focus the analysis on the specified file or module. Read the target code first, then apply the checks below.

Names are arguably the most important form of abstraction because a name claims what matters most about an entity. Because names appear at extreme frequency, mediocre names produce systemic complexity that no single example would suggest.

When to Apply

  • Reviewing any code for readability and clarity
  • When a variable, method, or class name feels wrong
  • When code requires reading the implementation to understand the interface

Core Principles

The Isolation Test

Read a name without surrounding context. Does it convey what the entity is?

  • Pass: byteCount, retryDelayMs, userAuthToken
  • Fail: data, x, process, handle, item
  • Context-dependent: result is acceptable for a method's return value but problematic at wider scope

Precision: The Most Common Failure

Generic names create false mental models because the reader's first assumption goes wrong and the name protects that wrong assumption from being questioned.

BadBetterWhy
x / y (pixel coordinates)columnIndex / rowIndexName what they index, not their axis
connectStatus (boolean)isConnectedBooleans should be predicates
NULL_ACCOUNT_IDACCOUNT_NOT_CREATEDSay what it means, not what it is

Too specific is also wrong. A parameter named filename on a method that accepts any path encodes a false constraint.

Too similar is also wrong. Related entities with near-identical names (config vs configuration, authKey vs authToken) force readers to memorize which is which. Names for related things should clarify the relationship, not obscure it.

Avoid Extra Words

Every word in a name should provide useful information.

PatternBadBetterWhy
Redundant nounhttpResponseresponseContext is already HTTP
Type-in-namestrNamenameIDEs make Hungarian notation unnecessary
Class echoUser.userNameUser.nameDon't repeat the class name in its members

Hard-to-Name Diagnostic

When you struggle to find a precise name, the problem is design, not vocabulary.

SymptomFix
The entity is doing two thingsSplit it
The abstraction isn't worked outClarify before naming
Two concepts have been conflatedSeparate them

Scope-Length Principle

Name length should scale with scope distance. i in a 3-line loop is clear. data at module scope is a defect.

A short name can be precise and still fail at long range because it carries no information when stripped of context. Verbosity doesn't compensate for vagueness. A name needs to be precise enough to create an accurate mental image that survives traveling to the use site.

Consistency Audit: Three Requirements

  1. Always use the common name for the given purpose
  2. Never use the common name for anything else
  3. Make the purpose narrow enough that all variables with the name have the same behavior

The third requirement is critical. One name, two behaviors: the name looks consistent while concealing a semantic split. Short names are especially prone to this: pk for a primary key, a public key, or a private key, e for error, event, or element. Ambiguous short names across a codebase compound into real confusion.

Obviousness Check

"Software should be designed for ease of reading, not ease of writing." — John Ousterhout, A Philosophy of Software Design

Code is obvious when a first-time reader's guesses about behavior are correct.

The writer is the worst judge. When a reviewer says something isn't obvious, that's data.

Four recurring patterns that break obviousness:

  1. Event-driven programming: control flow looks sequential but handlers are invoked indirectly
  2. Generic containers: Record<string, unknown> forces callers to cast and guess what keys exist. A named type would be self-documenting
  3. Mismatched declaration and allocation types: Readable hiding a Transform stream with different backpressure behavior
  4. Violated reader expectations: a connect() method that silently starts a background health-check thread

Three Strategies (in order)

Reduce information needed (deep modules, information hiding), leverage what readers already know (conventions, expectations), present information explicitly (good names, comments).

Review Process

  1. Scan names: Read each in isolation. Precise enough?
  2. Check scope-length fit: Wide-scope names precise? Narrow-scope names brief?
  3. Run consistency audit: Same concept = same name? Same name = same concept?
  4. Apply hard-to-name diagnostic: Hard to choose? Investigate the design.
  5. Assess obviousness: Can a first-time reader understand each function without reading its implementation?
  6. Recommend: Specific renames tied to the isolation test

Red flag signals for naming and obviousness are cataloged in red-flags (Vague Name, Hard to Pick Name, Non-obvious Code).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.