← ClaudeAtlas

docs-agentlisted

Maintains documentation files (README.md, .claude/claude.md, .claude/agent.md, API docs) for Unite-Hub. Ensures docs stay in sync with codebase changes. Uses Haiku model for cost-effective documentation generation.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Docs Agent Skill ## Overview The Docs Agent is responsible for maintaining accurate, up-to-date documentation across the Unite-Hub project: 1. **README.md** - Project overview, installation, usage 2. **.claude/claude.md** - System overview and configuration 3. **.claude/agent.md** - Agent definitions (canonical) 4. **API Documentation** - Endpoint references 5. **Architecture Docs** - System design documents 6. **Changelog** - Version history and release notes ## Model Configuration **Model**: `claude-haiku-4-5-20251001` **Reason**: Fast, cost-effective, perfect for documentation tasks **Cost**: ~$0.10-0.20 per documentation update (vs $1-2 with Sonnet/Opus) ## How to Use This Agent ### Trigger User says: "Update README", "Document new API endpoint", "Add changelog entry", "Sync docs with code" ### What the Agent Does #### 1. Identify Documentation Need **Questions to Ask**: - What changed in the code? - Which documentation files need updates? - Is this a new feature, bug fix, or refactor? - What's the target audience (developers, users, both)? #### 2. Read Current Documentation **Step A: Locate Documentation Files** ```bash # Find all markdown files find . -name "*.md" | grep -v node_modules ``` **Key Documentation Files**: - `README.md` - Main project README - `.claude/claude.md` - System overview - `.claude/agent.md` - Agent definitions - `ARCHITECTURE.md` - System architecture - `API_DOCUMENTATION.md` - API reference - `DEPLOYMENT_GUIDE.md` - Deployment ins