Documentation Style Guide
Overview
This skill provides standards and conventions for writing project documentation. Apply these guidelines to ensure consistent, professional, and maintainable documentation across the project.
When to Use This Skill
Activate this skill when:
- Writing new documentation (README, guides, architecture docs, etc.)
- Reviewing existing documentation for style consistency
- Improving documentation structure or readability
- Ensuring documentation follows project standards
- Users request "write documentation following style guide" or similar
Core Guidelines
Document Structure Principles
Follow these structural standards:
- Start with clear H1 title and one-line description
- Use H2 (
##) for main sections, H3 (###) for subsections
- Separate major sections with horizontal rules (
---)
- Keep section titles concise and action-oriented
Writing Style Standards
Apply these writing conventions:
- Use clear, direct language in present tense
- Prefer active voice over passive voice
- Keep content concise and focused
- Start bullet points with action verbs
- Use parallel structure in lists
Technical Formatting
Apply consistent formatting:
- Use backticks for code elements:
variable, function(), file.txt
- Use bold for important concepts
- Use italics sparingly for subtle emphasis
- Include language identifiers in fenced code blocks
- Keep examples short and focused
Content Organization
Structure content effectively:
- One main idea per section
- Limit lists to 5-7 items for readability
- Provide concrete examples over abstract concepts
- Link to other documents instead of repeating content
- Keep documents under 200 lines when possible
Usage Workflow
Creating New Documentation
When writing new documentation:
- Structure: Start with title, description, and main sections with horizontal rules
- Content: Write in present tense, active voice, with clear bullet points
- Formatting: Apply backticks for code, bold for emphasis, proper code blocks
- Examples: Include concrete, realistic examples with proper formatting
- Review: Check against style guide before finalizing
Reviewing Existing Documentation
When reviewing documentation:
- Load Reference: Read
references/DOCUMENTATION_STYLE.md for complete guidelines
- Structure Check: Verify proper heading hierarchy and section separation
- Style Check: Ensure consistent tone, voice, and formatting
- Content Check: Verify clarity, conciseness, and proper organization
- Provide Feedback: List specific improvements with examples
Common Review Patterns
Search for these common issues:
- Passive voice: "should be used" → "use"
- Inconsistent formatting: missing backticks on code elements
- Overly long sections: break into subsections
- Missing examples: add concrete illustrations
- Redundant content: consolidate or link to other docs
Resources
references/DOCUMENTATION_STYLE.md
Complete style guide documentation with detailed sections:
- Document structure templates and examples
- Writing style guidelines and tone standards
- Code formatting conventions
- List organization best practices
- Special sections (benefits, summaries)
- Formatting conventions (emphasis, links, code)
- Content guidelines (specificity, focus, updates)
- Document type patterns (reference, guide, overview)
When to read: Load this reference when reviewing documentation, answering detailed style questions, or when more comprehensive guidance is needed beyond the core guidelines in this skill.
Search patterns: Use grep to find specific guidance:
- "tone and voice" for writing style
- "code examples" for code formatting
- "list structure" for organizing lists
- "benefits sections" for special formatting
Examples
Example 1: Creating New Documentation
User: "Write a new architecture document for the CLI sync component"
Response:
- Apply document structure with H1 title, description, and
--- separator
- Organize with H2 main sections (Overview, Architecture, Components)
- Use backticks for technical terms:
CLISyncer, sync_config()
- Include concrete code examples with language identifiers
- Keep sections focused and under 200 lines total
Example 2: Reviewing Documentation
User: "Review this README for style compliance"
Response:
- Check structure: proper heading hierarchy, section separators
- Check style: present tense, active voice, clear bullets
- Check formatting: code elements in backticks, proper emphasis
- Provide specific feedback with before/after examples
- List improvements prioritized by impact
Example 3: Improving Documentation
User: "Improve the documentation style in this guide"
Response:
- Load
references/DOCUMENTATION_STYLE.md for comprehensive guidelines
- Identify style issues: passive voice, inconsistent formatting, structure
- Apply corrections following the complete style guide
- Maintain original meaning while improving clarity
- Explain changes made and rationale
Notes
- The complete style guide in
references/ contains comprehensive details
- For quick checks, use the core guidelines in this skill
- For thorough reviews or detailed questions, load the full reference
- Maintain consistency across all project documentation
- Update style guide when new patterns emerge
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: documentation-style-23description: Apply consistent documentation standards and style guidelines when creating, reviewing, or improving project documentation (README, architecture docs, guides, references). This skill should be used when writing new documentation, reviewing existing docs for style consistency, or when users request documentation improvements or style guide compliance checks. Use when this capability is needed.4---56# Documentation Style Guide78## Overview910This skill provides standards and conventions for writing project documentation. Apply these guidelines to ensure consistent, professional, and maintainable documentation across the project.1112## When to Use This Skill1314Activate this skill when:15- Writing new documentation (README, guides, architecture docs, etc.)16- Reviewing existing documentation for style consistency17- Improving documentation structure or readability18- Ensuring documentation follows project standards19- Users request "write documentation following style guide" or similar2021## Core Guidelines2223### Document Structure Principles2425Follow these structural standards:26- Start with clear H1 title and one-line description27- Use H2 (`##`) for main sections, H3 (`###`) for subsections28- Separate major sections with horizontal rules (`---`)29- Keep section titles concise and action-oriented3031### Writing Style Standards3233Apply these writing conventions:34- Use clear, direct language in present tense35- Prefer active voice over passive voice36- Keep content concise and focused37- Start bullet points with action verbs38- Use parallel structure in lists3940### Technical Formatting4142Apply consistent formatting:43- Use backticks for code elements: `variable`, `function()`, `file.txt`44- Use **bold** for important concepts45- Use *italics* sparingly for subtle emphasis46- Include language identifiers in fenced code blocks47- Keep examples short and focused4849### Content Organization5051Structure content effectively:52- One main idea per section53- Limit lists to 5-7 items for readability54- Provide concrete examples over abstract concepts55- Link to other documents instead of repeating content56- Keep documents under 200 lines when possible5758## Usage Workflow5960### Creating New Documentation6162When writing new documentation:63641. **Structure**: Start with title, description, and main sections with horizontal rules652. **Content**: Write in present tense, active voice, with clear bullet points663. **Formatting**: Apply backticks for code, bold for emphasis, proper code blocks674. **Examples**: Include concrete, realistic examples with proper formatting685. **Review**: Check against style guide before finalizing6970### Reviewing Existing Documentation7172When reviewing documentation:73741. **Load Reference**: Read `references/DOCUMENTATION_STYLE.md` for complete guidelines752. **Structure Check**: Verify proper heading hierarchy and section separation763. **Style Check**: Ensure consistent tone, voice, and formatting774. **Content Check**: Verify clarity, conciseness, and proper organization785. **Provide Feedback**: List specific improvements with examples7980### Common Review Patterns8182Search for these common issues:83- Passive voice: "should be used" → "use"84- Inconsistent formatting: missing backticks on code elements85- Overly long sections: break into subsections86- Missing examples: add concrete illustrations87- Redundant content: consolidate or link to other docs8889## Resources9091### references/DOCUMENTATION_STYLE.md9293Complete style guide documentation with detailed sections:94- Document structure templates and examples95- Writing style guidelines and tone standards96- Code formatting conventions97- List organization best practices98- Special sections (benefits, summaries)99- Formatting conventions (emphasis, links, code)100- Content guidelines (specificity, focus, updates)101- Document type patterns (reference, guide, overview)102103**When to read**: Load this reference when reviewing documentation, answering detailed style questions, or when more comprehensive guidance is needed beyond the core guidelines in this skill.104105**Search patterns**: Use grep to find specific guidance:106- "tone and voice" for writing style107- "code examples" for code formatting108- "list structure" for organizing lists109- "benefits sections" for special formatting110111## Examples112113### Example 1: Creating New Documentation114115User: "Write a new architecture document for the CLI sync component"116117Response:1181. Apply document structure with H1 title, description, and `---` separator1192. Organize with H2 main sections (Overview, Architecture, Components)1203. Use backticks for technical terms: `CLISyncer`, `sync_config()`1214. Include concrete code examples with language identifiers1225. Keep sections focused and under 200 lines total123124### Example 2: Reviewing Documentation125126User: "Review this README for style compliance"127128Response:1291. Check structure: proper heading hierarchy, section separators1302. Check style: present tense, active voice, clear bullets1313. Check formatting: code elements in backticks, proper emphasis1324. Provide specific feedback with before/after examples1335. List improvements prioritized by impact134135### Example 3: Improving Documentation136137User: "Improve the documentation style in this guide"138139Response:1401. Load `references/DOCUMENTATION_STYLE.md` for comprehensive guidelines1412. Identify style issues: passive voice, inconsistent formatting, structure1423. Apply corrections following the complete style guide1434. Maintain original meaning while improving clarity1445. Explain changes made and rationale145146## Notes147148- The complete style guide in `references/` contains comprehensive details149- For quick checks, use the core guidelines in this skill150- For thorough reviews or detailed questions, load the full reference151- Maintain consistency across all project documentation152- Update style guide when new patterns emerge153154---155> Converted and distributed by [TomeVault](https://tomevault.io/claim/inchan) — claim your Tome and manage your conversions.156<!-- tomevault:4.0:skill_md:2026-04-13 -->