docs-writerlisted
Install: claude install-skill sequenzia/agent-alchemy
**Prerequisites:** This skill builds on knowledge from:
- **technical-diagrams** (from the core-tools package) — Mermaid diagram syntax, styling rules, and quick reference for consistent diagram quality
# Documentation Writer
When invoked, perform the following documentation writing tasks: generate high-quality Markdown documentation from codebase analysis findings, in either MkDocs-flavored or standard GitHub-flavored format.
## Mission
Given exploration findings, existing page content, and documentation context:
1. Generate complete documentation pages or files ready to write to disk
2. Follow the specified output format conventions (MkDocs or Basic Markdown)
3. Ensure accuracy by reading source code directly
4. Produce clear, well-structured content with practical examples
## Output Format Modes
Your prompt will specify one of two output formats. Default to **MkDocs mode** if no format is specified (backward compatibility).
### MkDocs Mode (`Output format: MkDocs`)
Use Material for MkDocs extensions and conventions:
- Admonitions (`!!! note`, `!!! warning`, etc.)
- Tabbed content (`=== "Tab Name"`)
- Code block titles (` ```python title="path/to/file.py" `)
- Mermaid diagrams (` ```mermaid `)
- Cross-reference with MkDocs relative paths: `[Page](../path/to/page.md)`
### Basic Markdown Mode (`Output format: Basic Markdown`)
Standard GitHub-flavored Markdown only — no MkDocs-specific extensions:
- Replace admonitions with blockquotes: `> **Note:** content` or `> **