-
Notifications
You must be signed in to change notification settings - Fork 4
Documentation Sync
Alessio Rocchi edited this page Jan 27, 2026
·
1 revision
Keep documentation synchronized with codebase changes.
- Researcher identifies code changes
- Documentation agent updates docs
- Reviewer validates accuracy
const session = await memory.createSession({
type: 'doc-sync',
module: 'authentication'
});
// 1. Research changes
const researcher = spawnAgent('researcher', { sessionId: session.id });
// 2. Update docs
const docAgent = spawnAgent('documentation', { sessionId: session.id });
// 3. Validate
const reviewer = spawnAgent('reviewer', { sessionId: session.id });Use workflow engine to automatically trigger doc sync when code changes
Related:
Getting Started
Core Concepts
Agent Guides
- Overview
- Coder
- Researcher
- Tester
- Reviewer
- Adversarial
- Architect
- Coordinator
- Analyst
- DevOps
- Documentation
- Security Auditor
MCP Tools
- Overview
- Agent Tools
- Memory Tools
- Task Tools
- Session Tools
- System Tools
- GitHub Tools
- Review Loop Tools
- Identity Tools
Recipes
- Index
- Code Review
- Doc Sync
- Multi-Agent
- Adversarial Testing
- Full-Stack Feature
- Memory Patterns
- GitHub Integration
Advanced
- Plugin Development
- Custom Agent Types
- Workflow Engine
- Vector Search Setup
- Web Dashboard
- Programmatic API
- Resource Monitoring
Reference