Skill

docs-specialist

Install
1
Install the plugin
$
npx claudepluginhub mwguerra/claude-code-plugins --plugin code

Want just this skill?

Add to a custom plugin, then install with one command.

Description

Specialized documentation writer and reviewer with code-to-docs generation and drift detection

Tool Access

This skill uses the workspace's default tool permissions.

Supporting Assets
View in Repository
references/documentation-patterns.md
Skill Content

Documentation Specialist Skill

Overview

This skill provides specialized expertise in technical documentation: generating docs from code, detecting drift between docs and implementation, validating quality, and applying consistent templates.

Documentation Reference

CRITICAL: Before working on documentation tasks, consult:

  • docs-specialist/skills/docs-specialist/references/documentation-patterns.md

Expertise Areas

1. Code-to-Docs Generation

Analyze source code and generate documentation automatically:

Process:

  1. Scan code files (routes, models, components, services)
  2. Extract structure (classes, functions, signatures)
  3. Parse existing comments (JSDoc, docstrings)
  4. Apply appropriate template
  5. Generate formatted documentation

2. Docs-to-Code Sync Detection

Compare documentation against code to find discrepancies:

StatusSymbolMeaning
Implementedโœ…Code matches documentation exactly
Partialโš ๏ธCode exists but differs from docs
Not ImplementedโŒDocumented but missing in code
Undocumented๐Ÿ“In code but not documented

3. Documentation Validation

Check quality, accuracy, and completeness:

  • Link integrity (internal and external)
  • Code example accuracy
  • Structure and formatting
  • Completeness by doc type
  • Technical accuracy against code

4. Template System

Apply consistent templates for different documentation types:

TemplateUse For
readmeProject README
api-endpointREST API endpoint
componentUI component
modelDatabase model
serviceService class
guideHow-to guide
architectureArchitecture decision record
changelogRelease changelog

Commands

CommandPurpose
/docs-specialist:docsValidate, generate, update, and check status
/docs-specialist:syncDetect and fix drift between docs and code
/docs-specialist:templateList, view, and apply documentation templates
/docs-specialist:initCreate documentation folder structure
/docs-specialist:doctorDiagnose and fix documentation issues

See each command's file for full syntax and options.

Working Principles

Accuracy First

  • Always verify against source code
  • Test code examples before documenting
  • Flag assumptions or uncertainties
  • Update immediately when code changes

Code Analysis Approach

When analyzing code for documentation:

  1. Parse file structure (AST when possible)
  2. Extract public interfaces first
  3. Include type information
  4. Find usage examples in tests
  5. Respect existing documentation comments

Sync Detection Approach

When comparing docs to code:

  1. Build inventory of documented items
  2. Build inventory of code items
  3. Match by name/path/signature
  4. Categorize matches (exact, partial, missing)
  5. Detail differences for partial matches

Documentation Standards

File Organization

docs/
โ”œโ”€โ”€ README.md               # Documentation hub
โ”œโ”€โ”€ api/                    # API reference
โ”œโ”€โ”€ guides/                 # User guides
โ”œโ”€โ”€ architecture/           # System design
โ””โ”€โ”€ development/            # Developer docs

Markdown Conventions

  • ATX-style headers (#)
  • Code blocks with language specification
  • Relative links for internal references
  • One sentence per line (for diffs)

Code Examples

  • Complete, runnable examples
  • Include imports/setup
  • Show expected output
  • Highlight key lines

Tool-Specific Files

Keep these in their original locations (DO NOT move to /docs):

  • CLAUDE.md - Root directory
  • .claude/commands/*.md - Command definitions
  • .claude/agents/*.md - Agent definitions
  • .cursorrules - Cursor AI configuration

Version Control

  • Use conventional commits: docs: description
  • Link doc commits to code commits when related
  • Group related documentation updates

Quality Checklist

Before considering documentation complete:

  • All code examples tested and working
  • Technical accuracy confirmed against code
  • Links valid and correct
  • Formatting consistent
  • Procedures complete and actionable
  • Sync check passes
  • Validation score above threshold

Common Workflows

"I wrote new code, need docs"

/docs-specialist:docs generate <path>

"I changed code, update docs"

/docs-specialist:sync check
/docs-specialist:sync fix

"Audit documentation quality"

/docs-specialist:docs validate
/docs-specialist:sync check

"Set up docs for new project"

/docs-specialist:init
/docs-specialist:docs generate all

"Pre-release check"

/docs-specialist:doctor --check
/docs-specialist:sync check
/docs-specialist:docs validate

Success Metrics

Excellent documentation is:

  • Accurate - Reflects current code reality
  • Complete - Covers all necessary topics
  • In Sync - No drift from implementation
  • Clear - Easy to understand
  • Maintainable - Easy to update
  • Actionable - Readers can accomplish goals
Stats
Stars18
Forks5
Last CommitFeb 15, 2026
Actions

Similar Skills