write-discoverable-code

Coding rules for making source code easy to find through plain-text search by both developers and coding agents. They cover names, definition locations, and documentation for functions, types, constants, files, and errors.

In plain words
What is it for?
Use it when writing or renaming code to choose searchable names, avoid duplicate definitions, place shared logic correctly, and make symbols easier to locate.
Why use it?
It reduces the time spent searching for code when tools cannot rely on features such as jump-to-definition or persistent memory.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/modem-dev/skills/write-discoverable-code
Any agent
npx skills add modem-dev/skills --skill write-discoverable-code
Clone the repo
git clone --depth 1 https://github.com/modem-dev/skills

Made for: Claude Code, Codex.

Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,590 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00086 $0.01590
Opus 5 $0.00043 $0.00795
Sonnet 5 $0.00017 $0.00318
Haiku 4.5 $0.00009 $0.00159

Measured 2d ago against content hash c873629b4996, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

write-discoverable-code scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

write-discoverable-code/SKILL.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Write discoverable code

Coding agents discover code by searching for strings and reading small windows around the hits. They have no hover text, no jump-to-definition, and no memory between sessions. These rules make code resolvable in one search instead of five.

1. Names are search queries

  • Exported symbols get 2–4 word names, at least one of them a domain word. diffUserObjects, not diff. queueEventForDispatch, not queue. Measured on a ~700k-line monorepo: 1-word exported names are globally unique 61% of the time; 3-word names 96%; 4+ words 98%. Three words is the knee of the curve. Use the shortest name that greps uniquely; put the rest in the doc comment.
  • Give generic verbs their object. sanitizeEmailHtml, not sanitize; validateSmtpConfig, not validateConfig. Qualify only as far as uniqueness requires, then stop.
  • One definition site per symbol. Never copy a function between files; move it and delete the original in the same change. Shared helpers get one concept-named home and are imported everywhere else.
  • Do not rely on the module path to disambiguate a generic name. The import that disambiguates users/diff.ts from orders/diff.ts sits at the top of the file; the search hit is at line 300. Put the context in the symbol (formatDurationMs), not the folder. Exception: rigid, absolute conventions where the path carries the meaning (e.g. every contract file exporting Input/Output).
  • One concept, one spelling. Pick organizationId or orgId and use it everywhere; every synonym splits every future search in half. Reuse existing vocabulary in the codebase you are editing rather than introducing near-synonyms.
  • When behavior or audience changes, rename in the same commit. A stale name is misinformation with a 100% open rate — that includes visibility markers: a _private helper that other modules now import needs a public name.
  • Filenames are names too — never use bare-role filenames. config.ts, types.ts, utils.ts, helpers.ts, handlers.ts say nothing in a search result and collide with every other module's config/types/utils in the repo. Prefix the domain: billing-plan-config.ts, not config.ts. (index.ts is acceptable only as a thin re-export entry point.)

Read the full file on GitHub · 108 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 108 lines · 86 tokens per session scan A c873629b4996

Subscribe to this mod's changes

write-discoverable-code is a skill published in the GitHub repository modem-dev/skills (53 stars, last pushed 13d ago), licensed MIT. It adds 86 tokens to every session and 1,590 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

babysit-pr

Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…

openai/codex · 114 tokens

imagegen

Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…

openai/codex · 113 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens