Snapshot of where opencode + Qwen3-Coder + MCPs + Kimi-Linear + voice + Phoenix tracing land today, plus in-flight (oc-tree, kimi-linear context ramp) and next (ComfyUI) items with pointers to per-project NEXT_STEPS.md guides.
57 lines
1.5 KiB
Markdown
57 lines
1.5 KiB
Markdown
# Agent Orchestration
|
|
|
|
This project uses OpenCode's Task Master system for agent orchestration instead of dmux.
|
|
|
|
## Available Agents
|
|
|
|
- `documentation-agent.sh` - Generates documentation using qwen3-coder
|
|
- `scripting-agent.sh` - Creates automation scripts and configurations
|
|
- `deployment-agent.sh` - Manages deployments and optimizations
|
|
- `monitoring-agent.sh` - Tracks system health and performance
|
|
|
|
## Usage with OpenCode
|
|
|
|
Agents can be invoked using OpenCode's Task Master system:
|
|
|
|
```bash
|
|
# Initialize the project
|
|
/init
|
|
|
|
# Run specific agents
|
|
/opencode agent documentation-agent
|
|
/opencode agent scripting-agent
|
|
/opencode agent deployment-agent
|
|
|
|
# Run all agents
|
|
/opencode agents all
|
|
```
|
|
|
|
## Integration with qwen3-coder (30b)
|
|
|
|
Each agent leverages the qwen3-coder model's advanced reasoning capabilities:
|
|
- Complex problem identification in infrastructure documentation
|
|
- Multi-step configuration automation
|
|
- Intelligent deployment strategy recommendations
|
|
- Analysis of complex dependency chains in network diagrams
|
|
|
|
## Agent Responsibilities
|
|
|
|
### Documentation Agent
|
|
- Generates documentation from code analysis
|
|
- Creates standardized documentation templates
|
|
- Updates documentation based on infrastructure changes
|
|
|
|
### Scripting Agent
|
|
- Creates Docker Compose configurations
|
|
- Generates setup scripts
|
|
- Writes automation routines
|
|
|
|
### Deployment Agent
|
|
- Analyzes deployment strategies
|
|
- Optimizes container configurations
|
|
- Manages multi-service deployments
|
|
|
|
### Monitoring Agent
|
|
- Monitors system performance
|
|
- Analyzes infrastructure health
|
|
- Detects potential issues |