From director-mode-lite
Provides templates and standards for README, API reference, changelog (Keep a Changelog), and code comments. Use when creating or updating documentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/director-mode-lite:doc-writerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
> **Director Mode Lite** - Documentation Specialist
Director Mode Lite - Documentation Specialist
Essential sections:
# Project Name
Brief description (1-2 sentences)
## Quick Start
\`\`\`bash
npm install # Installation
npm start # Run
\`\`\`
## Features
- Feature 1
## Documentation
- [Getting Started](docs/getting-started.md)
- [API Reference](docs/api.md)
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md)
## License
MIT
For each endpoint/function:
## `functionName(param1, param2)`
Brief description.
**Parameters:**
- `param1` (string): Description
- `param2` (number, optional): Description. Default: `10`
**Returns:**
- `ResultType`: Description
**Example:**
\`\`\`javascript
const result = functionName('hello', 5);
// => { success: true }
\`\`\`
**Throws:**
- `ValidationError`: When param1 is empty
For REST endpoints, document the method and path, request headers/body, success and error responses, and a runnable curl example.
Comment complex algorithms, non-obvious business logic, workarounds (and why), and TODOs with context. Do NOT comment self-explanatory code or restate what the code already says.
// Calculate compound interest using continuous compounding formula
// This matches the bank's calculation method (see SPEC-123)
const interest = principal * Math.exp(rate * time);
Follow Keep a Changelog format:
# Changelog
## [1.2.0] - 2025-01-15
### Added
- New feature X
### Changed
- Improved performance of Y
### Fixed
- Bug in Z
### Removed
- Deprecated API endpoint
Cover the system overview, component relationships, data flow, and design decisions with their rationale.
## Documentation Update
### Files Created/Updated
- `README.md` - Added Quick Start section
### Summary
[What documentation was added/changed and why]
npx claudepluginhub claude-world/director-mode-lite --plugin director-mode-liteGenerates professional documentation including READMEs, API references, architecture docs, changelogs, and developer guides from codebase analysis.
Provides templates and guidelines for README, API docs, code comments, changelogs, ADRs, and AI-friendly documentation (llms.txt, MCP-ready).
Generates or updates documentation for code, APIs, or systems including READMEs, API references, inline comments, technical guides, and ADRs.