documenting

documenting is a skill for Claude Code, Codex from lstudlo/curated-skills. It costs 101 tokens per session (921 once invoked), scanned A, original, MIT.

A writing guide for turning rough product or engineering ideas into short, reviewable documents. It covers feature specifications and technical design documents.

In plain words
What is it for?
Use it to write or refine feature specs, product requirements, implementation notes, technical designs, and explanations of how a system should be understood.
Why use it?
It removes guesswork about what to include, how much detail to use, and where to save the document. It also keeps requirements, scope, decisions, and open questions clear.

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/lstudlo/curated-skills/documenting
Any agent
npx skills add lstudlo/curated-skills --skill documenting
Clone the repo
git clone --depth 1 https://github.com/lstudlo/curated-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for documenting

README.md
[![agentmods](https://agentmods.dev/badge/skills/lstudlo/curated-skills/documenting.svg)](https://agentmods.dev/skills/lstudlo/curated-skills/documenting)
Your own site
<a href="https://agentmods.dev/skills/lstudlo/curated-skills/documenting"><img src="https://agentmods.dev/badge/skills/lstudlo/curated-skills/documenting.svg" alt="Measured on agentmods" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 921 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.00101 $0.00921
Opus 5 $0.00051 $0.00461
Sonnet 5 $0.00020 $0.00184
Haiku 4.5 $0.00010 $0.00092

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

Security

Grade A, and why

documenting 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 5d 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.

src/skills/documenting/SKILL.md · 140 lines

How it starts

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

Documenting

This skill writes reviewable docs with minimal fluff. Default to fewer words. If a sentence does not change scope, decisions, implementation, or review, cut it.

Modes

feature-spec

Use for:

  • problem and user need
  • scope and non-goals
  • requirements
  • success criteria
  • user or team mental model

Write to:

/docs/features/[feature_name]/YYMMDD_[feature].md

Rules:

  • feature_name and [feature] must be kebab-case
  • prefix the file with the creation date in YYMMDD_ format
  • default [feature] to the same slug as the folder
  • preferred pattern:
/docs/features/unified-search/260314_unified-search.md
  • if the feature folder already exists, update the latest relevant doc instead of creating a duplicate

Writing rules:

  • summary: 2 to 4 sentences
  • goals: 3 bullets max
  • requirements: 3 to 7 bullets, one sentence each
  • mental model: 3 bullets max unless complexity requires more
  • open questions: 5 max
  • prefer bullets over paragraphs
  • do not use filler such as seamless, robust, user-friendly, intuitive, or scalable unless you define what they mean

technical-design

Use for:

  • architecture and boundaries
  • interfaces and data flow
  • implementation approach
  • tradeoffs
  • rollout, migration, testing, or observability

Write to:

/docs/technical/[technical_design_name]/YYMMDD_[technical_design_name].md

Rules:

  • technical_design_name must be kebab-case
  • prefix the file with the creation date in YYMMDD_ format
  • default the file slug to the same slug as the folder
  • preferred pattern:
/docs/technical/session-rotation/260314_session-rotation.md
  • if the design folder already exists, update the latest relevant doc instead of creating a duplicate

Writing rules:

  • summary: 1 short paragraph
  • major decisions: 3 to 5 if possible
  • alternatives: only include real contenders
  • open questions: unresolved design decisions only
  • remove product background that does not affect the design

Read the full file on GitHub · 140 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 140 lines · 101 tokens per session scan A a5f3651b5c80

Subscribe to this mod's changes

documenting is a skill published in the GitHub repository lstudlo/curated-skills (2 stars, last pushed 5mo ago), licensed MIT. It adds 101 tokens to every session and 921 once invoked, about $0.0005 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-31.

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

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 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

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 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

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens