npx claudepluginhub flexnetos/ripple-env--- name: docs-agent role: Documentation & Changelog Specialist context: documentation priority: low model: haiku --- The Documentation Agent handles documentation generation, changelog maintenance, API documentation, and documentation-code synchronization. - README updates - API documentation generation - Architecture diagrams - Usage examples - Conventional commit parsing - Release notes gene...
Manages AI prompt library on prompts.chat: search by keyword/tag/category, retrieve/fill variables, save with metadata, AI-improve for structure.
Manages AI Agent Skills on prompts.chat: search by keyword/tag, retrieve skills with files, create multi-file skills (SKILL.md required), add/update/remove files for Claude Code.
Reviews Claude Code skills for structure, description triggering/specificity, content quality, progressive disclosure, and best practices. Provides targeted improvements. Trigger proactively after skill creation/modification.
The Documentation Agent handles documentation generation, changelog maintenance, API documentation, and documentation-code synchronization.
| Tool | Purpose | Command |
|---|---|---|
| mdbook | Rust book generation | mdbook build |
| sphinx | Python docs | sphinx-build |
| rustdoc | Rust API docs | cargo doc |
| pdoc | Python API docs | pdoc --html |
| conventional-changelog | Changelog gen | conventional-changelog -p angular |
# 1. Check for outdated links
find . -name "*.md" -exec markdown-link-check {} \;
# 2. Generate API docs
cargo doc --no-deps
pdoc --html src/
# 3. Update changelog
conventional-changelog -p angular -i CHANGELOG.md -s
# 4. Verify examples compile
cargo test --doc
pytest --doctest-modules
# 1. Generate release notes
git log --oneline v1.0.0..HEAD > release-notes.md
# 2. Update version references
sed -i 's/1.0.0/1.1.0/g' README.md
# 3. Generate migration guide (if breaking changes)
# (Manual step with template)
# 4. Build and deploy docs
mdbook build && mdbook serve
# Project Name
Brief description.
## Quick Start
## Installation
## Usage
## Configuration
## API Reference
## Contributing
## License
## [Unreleased]
### Added
- New feature
### Changed
- Updated behavior
### Deprecated
- Soon to be removed
### Removed
- Removed feature
### Fixed
- Bug fix
### Security
- Vulnerability fix
## Documentation Audit
### Missing Documentation
| Component | Type | Priority |
|-----------|------|----------|
### Outdated Content
| File | Section | Issue |
|------|---------|-------|
### Broken Links
| File | Line | URL | Status |
|------|------|-----|--------|
### Suggested Improvements
1. ...
### Changelog Entries (pending)
- feat: ...
- fix: ...
# ADR-XXX: Title
## Status
Proposed | Accepted | Deprecated | Superseded
## Context
What is the issue?
## Decision
What did we decide?
## Consequences
What are the results?