inline-documentation
Use when writing code - ensure complete JSDoc, docstrings, and inline comments assuming documentation will be generated from code
What this skill does
# Inline Documentation
## Overview
Document code assuming docs will be generated from it.
**Core principle:** Future developers (including you) will read this code. Help them.
**Announce at use:** "I'm adding complete inline documentation for this code."
## What to Document
### Always Document
| Element | Documentation Required |
|---------|----------------------|
| Public functions/methods | Full JSDoc/docstring |
| Public classes | Class-level documentation |
| Public interfaces/types | Description of purpose |
| Exported constants | What they control |
| Complex logic | Why, not what |
| Non-obvious decisions | Explain reasoning |
### Skip Documentation For
| Element | Why |
|---------|-----|
| Private trivial helpers | Self-evident |
| Single-line getters | Obvious from name |
| Standard patterns | Well-known idioms |
| Test files | Tests are documentation |
## TypeScript/JavaScript (JSDoc)
### Function Documentation
```typescript
/**
* Calculates the total price including tax and discounts.
*
* @description Applies discounts before tax calculation.
* Discounts are applied in order of magnitude (largest first).
*
* @param items - Line items to calculate
* @param taxRate - Tax rate as decimal (e.g., 0.08 for 8%)
* @param discounts - Optional discount codes to apply
* @returns Total price after discounts and tax
*
* @throws {ValidationError} If taxRate is negative
* @throws {InvalidDiscountError} If discount code is invalid
*
* @example
* ```typescript
* const total = calculateTotal(
* [{ price: 100 }, { price: 50 }],
* 0.08,
* ['SAVE10']
* );
* // Returns: 145.80 (150 - 10% discount = 135, + 8% tax)
* ```
*/
function calculateTotal(
items: LineItem[],
taxRate: number,
discounts?: string[]
): number {
// Implementation
}
```
### Class Documentation
```typescript
/**
* Manages user authentication and session lifecycle.
*
* @description Handles login, logout, session refresh, and
* multi-device session management. Uses JWT for stateless
* authentication with Redis for session invalidation tracking.
*
* @example
* ```typescript
* const auth = new AuthService(config);
* const session = await auth.login(credentials);
* await auth.logout(session.id);
* ```
*/
class AuthService {
/**
* Creates an AuthService instance.
*
* @param config - Authentication configuration
* @param config.jwtSecret - Secret for signing JWTs
* @param config.sessionTtl - Session time-to-live in seconds
*/
constructor(private config: AuthConfig) { }
/**
* Authenticates a user and creates a session.
*
* @param credentials - User credentials
* @returns Session object with tokens
* @throws {InvalidCredentialsError} If authentication fails
*/
async login(credentials: Credentials): Promise<Session> { }
}
```
### Interface Documentation
```typescript
/**
* Configuration for the caching layer.
*
* @description Controls cache behavior including TTL,
* invalidation strategy, and storage backend selection.
*/
interface CacheConfig {
/** Time-to-live in seconds. Default: 3600 */
ttl: number;
/** Maximum items to cache. Default: 1000 */
maxSize: number;
/**
* Storage backend to use.
* - 'memory': In-process LRU cache
* - 'redis': Distributed Redis cache
*/
backend: 'memory' | 'redis';
/** Redis connection string (required if backend is 'redis') */
redisUrl?: string;
}
```
## Python (Docstrings)
### Function Documentation
```python
def calculate_total(
items: list[LineItem],
tax_rate: float,
discounts: list[str] | None = None
) -> float:
"""Calculate the total price including tax and discounts.
Applies discounts before tax calculation. Discounts are applied
in order of magnitude (largest first).
Args:
items: Line items to calculate.
tax_rate: Tax rate as decimal (e.g., 0.08 for 8%).
discounts: Optional discount codes to apply.
Returns:
Total price after discounts and tax.
Raises:
ValidationError: If tax_rate is negative.
InvalidDiscountError: If discount code is invalid.
Example:
>>> total = calculate_total(
... [LineItem(price=100), LineItem(price=50)],
... 0.08,
... ['SAVE10']
... )
>>> total
145.80 # 150 - 10% = 135, + 8% tax
"""
pass
```
### Class Documentation
```python
class AuthService:
"""Manages user authentication and session lifecycle.
Handles login, logout, session refresh, and multi-device
session management. Uses JWT for stateless authentication
with Redis for session invalidation tracking.
Attributes:
config: Authentication configuration.
redis: Redis client for session tracking.
Example:
>>> auth = AuthService(config)
>>> session = await auth.login(credentials)
>>> await auth.logout(session.id)
"""
def __init__(self, config: AuthConfig) -> None:
"""Create an AuthService instance.
Args:
config: Authentication configuration including
JWT secret and session TTL.
"""
pass
```
## Inline Comments
### When to Use
```typescript
// Complex algorithms
function dijkstra(graph: Graph, start: Node): Map<Node, number> {
// Use priority queue for O(E log V) complexity
// instead of linear search O(V²)
const queue = new PriorityQueue<Node>();
// Initialize all distances to infinity except start
const distances = new Map<Node, number>();
// ... implementation with strategic comments
}
```
### Explain Why, Not What
```typescript
// BAD: Explains what (obvious from code)
// Increment counter by 1
counter++;
// GOOD: Explains why (not obvious)
// Retry count starts at 1 because initial attempt doesn't count
counter++;
```
### Link to Context
```typescript
// Per RFC 7519, JWT expiry is in seconds since epoch
const exp = Math.floor(Date.now() / 1000) + ttlSeconds;
// See issue #234 for why we can't use the simpler approach
const result = complexWorkaround();
```
### Mark Non-Obvious Behavior
```typescript
// IMPORTANT: Order matters here - auth must run before rate limit
app.use(authMiddleware);
app.use(rateLimitMiddleware);
// WARNING: This modifies the input array in place
items.sort((a, b) => a.priority - b.priority);
```
## Documentation Checklist
For each public element:
### Functions/Methods
- [ ] Brief description (first line)
- [ ] Detailed description (if complex)
- [ ] All parameters documented
- [ ] Return value documented
- [ ] Exceptions documented
- [ ] Example provided (if non-obvious usage)
### Classes
- [ ] Class purpose described
- [ ] Usage example provided
- [ ] All public methods documented
- [ ] Public properties documented
### Interfaces/Types
- [ ] Purpose described
- [ ] Each property documented
- [ ] Valid values noted (for enums/unions)
## Anti-Patterns
| Anti-Pattern | Correct Approach |
|--------------|------------------|
| No documentation | Document all public APIs |
| Stale documentation | Update docs with code changes |
| Obvious comments | Only document non-obvious |
| Missing examples | Add examples for complex APIs |
| Copy-paste docs | Write specific documentation |
## Generating Documentation
### TypeScript
```bash
# Using TypeDoc
npx typedoc src/index.ts --out docs
# Using TSDoc
npx @microsoft/api-extractor run
```
### Python
```bash
# Using Sphinx
sphinx-apidoc -o docs/source src/
sphinx-build docs/source docs/build
# Using pdoc
pdoc --html src/ -o docs/
```
## Integration
This skill is applied by:
- `issue-driven-development` - Step 7
- `comprehensive-review` - Documentation criterion
This skill ensures:
- Maintainable code
- Onboarding ease
- Generated documentation quality
- API discoverability
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing — use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.