| name | docs-writer |
| description | Write clear, developer-friendly documentation — READMEs, API references, code comments, and changelog entries — tailored to the audience and the project's voice. Use when the user says "write docs", "document this API", "update the README", "add code comments", "changelog entry", or "explain this for contributors". Covers structure, examples, and jargon choices. Pairs with deploy-npm, audit-i18n. Do NOT use for in-product UX copy (enhance-web-ux) or marketing copy.
|
| license | MIT |
Documentation Writer Skill
Create clear, useful documentation for developers.
Core principle — write for the reader's mental model first
Documentation rarely fails because it's incomplete. It fails because the reader can't build a mental model fast enough to care. So before any reference detail, answer the questions the reader is silently asking — in their words, in this order:
| The reader is silently asking… | Answer it with… |
|---|
| What is this? | One plain-English sentence — what it does, not how it's built |
| Why should I care? | The problem it solves / the pain it removes |
| Who is it for? | The audience + stack, so a wrong-fit reader can leave early |
| How do I start? | The shortest path to a first win: install → one command → result |
| When / where do I use it? | The situations it fits — and its boundaries (what it's not) |
Rules that follow from this:
- Lead with the goal, not the implementation. "Turn a CSV into a chart" beats "A streaming transform pipeline built on X."
- Progressive disclosure. Newcomer on-ramp first (plain language + one example), reference depth below. A pro scrolls past the primer in two seconds; a newcomer can't skip to it if it was never written.
- Beat the curse of knowledge. You know the jargon; the reader may not. Define a term on first use, or add a plain-language glossary when the project leans on 3+ domain terms (pattern below).
- Show, don't just tell. Every abstract capability gets a concrete, copy-pasteable example.
- Write the sentence you'd say out loud to a smart colleague who's never seen the project. If it reads like a brochure or a spec dump, rewrite it until it sounds human.
Everything else in this skill (templates, API docs, comments) serves this principle — structure and polish never substitute for orienting the reader first.
MANDATORY: Pre-Documentation Checks
BEFORE writing any documentation, you MUST:
1. Read Existing Documentation
README.md (project root)
docs/ (existing docs)
src/[domain]/@_[domain]-README.md (feature-specific READMEs)
2. Check Documentation Patterns
Use Glob to find existing README files:
Glob: "**/*README.md" to find all READMEs
Glob: "**/*.md" in docs/ to find documentation patterns
3. Verify Code Matches Documentation
Read the actual code being documented to ensure accuracy:
- Check function signatures match documentation
- Verify example code actually works
- Confirm database schema matches any data documentation
4. Verification Statement (REQUIRED)
Before writing docs, state:
"Pre-documentation check:
- Existing docs read: [list]
- Documentation pattern identified: [pattern from existing READMEs]
- Code verified: [files read to ensure accuracy]"
README Template
# Project Name
> One plain-English sentence: what it does and who it's for — no jargon.
**Why it exists** — the problem it solves, in one line.
**Who it's for** — the audience + stack, so a wrong-fit reader leaves early.
<!--
Newcomer on-ramp: if the project is novel or uses 3+ domain-specific terms,
add a plain-language glossary here (see "Newcomer on-ramp" pattern below) so the
features and options that follow aren't cryptic. Omit it when the domain is common.
-->
## Features
- Feature 1
- Feature 2
- Feature 3
## Quick Start
\`\`\`bash
# Install
npm install
# Run
npm start
\`\`\`
## Installation
### Prerequisites
- Node.js >= 18
- npm or pnpm
### Setup
\`\`\`bash
# Clone repository
git clone https://github.com/user/project.git
cd project
# Install dependencies
npm install
# Set up environment
cp .env.example .env
# Edit .env with your values
# Run development server
npm run dev
\`\`\`
## Usage
### Basic Example
\`\`\`typescript
import { Widget } from 'project';
const widget = new Widget({ option: 'value' });
widget.render();
\`\`\`
### Advanced Configuration
See [Configuration Guide](./docs/configuration.md)
## API Reference
See [API Documentation](./docs/api.md)
## Contributing
See [Contributing Guide](./CONTRIBUTING.md)
## License
MIT
Newcomer on-ramp (novel or jargon-heavy projects)
When a project introduces its own concepts, the reader can't parse the feature list until they know the vocabulary. Add a compact building-blocks glossary high in the README — plain meaning + how the reader actually uses each thing. This is the single highest-leverage block for making docs land with non-experts:
**The building blocks** — what the terms below actually mean:
| Building block | In plain English | You use it by… |
|:--|:--|:--|
| **Widget** | A self-contained unit that does one job | dropping it into a page |
| **Pipeline** | The path your data takes from input to output | pointing it at a source |
| **Adapter** | A connector to an outside service | adding its key to config |
Guidelines:
- Three columns beat prose. Term → plain meaning → how you trigger/use it. Use concrete verbs ("drop in", "point at", "add a key"), not dictionary definitions.
- Put it above the counts, options, or API — it's the decoder ring for everything below it.
- Drop it when the domain is already familiar. Don't gloss
useState for a React audience; do gloss a term you invented.
Documentation Types
1. API Documentation
## createUser
Create a new user account.
### Signature
\`\`\`typescript
function createUser(params: CreateUserParams): Promise<User>
\`\`\`
### Parameters
| Name | Type | Required | Description |
|------|------|----------|-------------|
| name | string | Yes | User's display name |
| email | string | Yes | Valid email address |
| role | 'admin' \| 'user' | No | User role (default: 'user') |
### Returns
`Promise<User>` - The created user object
### Example
\`\`\`typescript
const user = await createUser({
name: 'John Doe',
email: 'john@example.com',
role: 'admin'
});
\`\`\`
### Errors
| Error | Cause |
|-------|-------|
| `ValidationError` | Invalid email format |
| `ConflictError` | Email already exists |
2. Code Comments
function calculateTotal(
items: CartItem[],
taxRate: number,
discount?: string
): number {
const subtotal = items.reduce((sum, item) => sum + item.price, 0);
const discountAmount = discount ? getDiscountAmount(discount, subtotal) : 0;
const taxableAmount = subtotal - discountAmount;
const tax = Math.round(taxableAmount * taxRate);
return taxableAmount + tax;
}
3. Architecture Documentation
# Architecture Overview
## System Components
\`\`\`
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Client │────▶│ API │────▶│ Database │
│ (React) │ │ (Node) │ │ (Postgres) │
└─────────────┘ └─────────────┘ └─────────────┘
│
▼
┌─────────────┐
│ Cache │
│ (Redis) │
└─────────────┘
\`\`\`
## Data Flow
1. Client sends request to API
2. API checks cache for data
3. If cache miss, query database
4. Store result in cache
5. Return response to client
## Key Decisions
### Why PostgreSQL?
- ACID compliance for financial data
- JSON support for flexible schemas
- Strong ecosystem
### Why Redis?
- Fast read performance
- Session storage
- Pub/sub for real-time features
Writing Guidelines
Be Concise
# ❌ Too verbose
This function is responsible for taking an array of user objects
and filtering them based on the active status property, returning
only those users who have an active status of true.
# ✅ Concise
Filter users by active status.
Use Examples
# ❌ Abstract description
The function accepts configuration options.
# ✅ With example
Configure the logger:
\`\`\`typescript
const logger = createLogger({
level: 'info',
format: 'json',
output: 'stdout'
});
\`\`\`
Structure Information
# ❌ Wall of text
To install the package you need to run npm install, then create
a .env file with your configuration, then run the migrations...
# ✅ Structured steps
## Setup
1. Install dependencies
\`\`\`bash
npm install
\`\`\`
2. Configure environment
\`\`\`bash
cp .env.example .env
\`\`\`
3. Run migrations
\`\`\`bash
npm run migrate
\`\`\`
Kill the Jargon (beat the curse of knowledge)
# ❌ Assumes the reader shares your context
Configure the RLS policy on the tenant-scoped RPC before hydrating the store.
# ✅ Plain first, precise second
Set who's allowed to read each row (a "policy") before the app loads its data.
(Supabase calls row rules "RLS"; loading data into the app is "hydrating the store.")
Lead with the plain-language version; put the precise term in parentheses or right after it. Never make a newcomer look up three words just to parse one sentence.
Documentation Checklist
README
API Docs
Code Comments
Architecture
Helpful Diagrams
Mermaid Flowchart
\`\`\`mermaid
flowchart LR
A[User] --> B[Frontend]
B --> C[API]
C --> D[Database]
C --> E[Cache]
\`\`\`
Sequence Diagram
\`\`\`mermaid
sequenceDiagram
User->>+API: POST /login
API->>+DB: Verify credentials
DB-->>-API: User data
API-->>-User: JWT token
\`\`\`
Keep Docs Updated
# In PR template:
## Documentation
- [ ] README updated (if needed)
- [ ] API docs updated (if endpoints changed)
- [ ] Code comments added (for complex logic)