Files
claudekit/skills/documentation/references/project-docs.md
T
2026-04-19 14:10:38 +07:00

1.0 KiB

Project Documentation Patterns

README Structure

## Installation

```bash
npm install my-package

Quick Start

import { Client } from 'my-package';
const client = new Client({ apiKey: 'your-key' });
const result = await client.fetch();

Configuration

Option Type Default Description
apiKey string required Your API key
timeout number 5000 Request timeout in ms

## Key Sections

1. **Title + one-liner** — what this project does
2. **Installation** — copy-pasteable setup commands
3. **Quick Start** — working example in < 10 lines
4. **Configuration** — table of options with types and defaults
5. **API Reference** — link to detailed docs
6. **Contributing** — how to contribute
7. **License** — MIT, Apache, etc.

## Documentation Coverage Report

After documenting, summarize:
- Functions documented: X/Y (Z%)
- Endpoints documented: X/Y (Z%)
- Missing: [list of undocumented items]