Document current coding-workflow stack state
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.
This commit is contained in:
57
gitea-opencode-agent-project/agents/README.md
Normal file
57
gitea-opencode-agent-project/agents/README.md
Normal file
@@ -0,0 +1,57 @@
|
||||
# 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
|
||||
26
gitea-opencode-agent-project/agents/deployment-agent.sh
Normal file
26
gitea-opencode-agent-project/agents/deployment-agent.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
# Deployment Agent
|
||||
|
||||
## Overview
|
||||
This agent specializes in managing deployments and configurations using the qwen3-coder model (30b) for the homelab infrastructure project.
|
||||
|
||||
## Capabilities
|
||||
- Analyzes deployment strategies
|
||||
- Optimizes container configurations
|
||||
- Manages multi-service deployments
|
||||
- Provides intelligent deployment recommendations
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
# Optimize deployment with qwen3-coder
|
||||
qwen3-coder --optimize-deployment \
|
||||
--model "qwen3-coder:30b" \
|
||||
--config "docker-compose.yml" \
|
||||
--target "homelab-system"
|
||||
```
|
||||
|
||||
## Integration
|
||||
This agent integrates with:
|
||||
- Docker Compose configurations
|
||||
- CI/CD pipelines
|
||||
- Network documentation
|
||||
- Security configurations
|
||||
26
gitea-opencode-agent-project/agents/documentation-agent.sh
Normal file
26
gitea-opencode-agent-project/agents/documentation-agent.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
# Documentation Agent
|
||||
|
||||
## Overview
|
||||
This agent specializes in generating and maintaining documentation using the qwen3-coder model (30b) for the homelab infrastructure project.
|
||||
|
||||
## Capabilities
|
||||
- Generates documentation from code analysis
|
||||
- Creates standardized documentation templates
|
||||
- Updates documentation based on infrastructure changes
|
||||
- Analyzes documentation gaps and suggests improvements
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
# Generate documentation with qwen3-coder
|
||||
qwen3-coder --generate-docs \
|
||||
--model "qwen3-coder:30b" \
|
||||
--project "homelab-infrastructure" \
|
||||
--output "docs/homelab.md"
|
||||
```
|
||||
|
||||
## Integration
|
||||
This agent integrates with:
|
||||
- Code repositories
|
||||
- Network diagrams
|
||||
- Configuration files
|
||||
- Deployment scripts
|
||||
26
gitea-opencode-agent-project/agents/monitoring-agent.sh
Normal file
26
gitea-opencode-agent-project/agents/monitoring-agent.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
# Monitoring Agent
|
||||
|
||||
## Overview
|
||||
This agent specializes in monitoring system health and performance using the qwen3-coder model (30b) for the homelab infrastructure project.
|
||||
|
||||
## Capabilities
|
||||
- Monitors system performance
|
||||
- Analyzes infrastructure health
|
||||
- Detects potential issues
|
||||
- Provides optimization suggestions
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
# Monitor system with qwen3-coder
|
||||
qwen3-coder --monitor-system \
|
||||
--model "qwen3-coder:30b" \
|
||||
--target "homelab-network" \
|
||||
--output "reports/health.md"
|
||||
```
|
||||
|
||||
## Integration
|
||||
This agent integrates with:
|
||||
- System logs
|
||||
- Performance metrics
|
||||
- Configuration files
|
||||
- Documentation updates
|
||||
26
gitea-opencode-agent-project/agents/scripting-agent.sh
Normal file
26
gitea-opencode-agent-project/agents/scripting-agent.sh
Normal file
@@ -0,0 +1,26 @@
|
||||
# Scripting Agent
|
||||
|
||||
## Overview
|
||||
This agent specializes in generating automation scripts and configurations using the qwen3-coder model (30b) for the homelab infrastructure project.
|
||||
|
||||
## Capabilities
|
||||
- Creates Docker Compose configurations
|
||||
- Generates setup scripts
|
||||
- Writes automation routines
|
||||
- Creates deployment manifests
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
# Generate automation script with qwen3-coder
|
||||
qwen3-coder --generate-script \
|
||||
--model "qwen3-coder:30b" \
|
||||
--task "docker-compose generation" \
|
||||
--output "docker-compose.yml"
|
||||
```
|
||||
|
||||
## Integration
|
||||
This agent integrates with:
|
||||
- Docker Compose templates
|
||||
- Configuration files
|
||||
- Deployment workflows
|
||||
- Network documentation
|
||||
Reference in New Issue
Block a user