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.
Agent Orchestration Hooks
This directory contains dmux hooks that define how agents work in the OpenCode environment.
Available Hooks
worktree_created- Triggered when a new worktree is createdrun_test- For running testsrun_dev- For development taskspost_merge- After merging changes
Hook Usage
Each hook should be executable and contain logic for the specific agent role:
#!/bin/bash
# Example hook for documentation agent
# .dmux-hooks/worktree_created
# Set environment for qwen3-coder
export DMUX_AGENT="opencode"
export QWEN_MODEL="qwen3-coder:30b"
export AGENT_CONTEXT="homelab-documentation"
# Run qwen3-coder documentation tasks
echo "Initializing homelab documentation agent..."
qwen3-coder --generate-docs \
--model "qwen3-coder:30b" \
--output "$DMUX_WORKTREE_PATH/docs/homelab.md"
Agent Roles
documentation-agent.sh- Generates documentation using qwen3-coderscripting-agent.sh- Creates automation scriptsdeployment-agent.sh- Manages deploymentsmonitoring-agent.sh- Tracks system performance