4adc994e10
* feat: add debug and orchestrator built-in agents
Add two new primary agents that legacy Kilo Code users expect:
- debug: systematic debugging methodology (reflect on causes, narrow
down, add logs, confirm before fixing). Same permissions as code agent.
- orchestrator: coordinates complex tasks by delegating to explore and
general subagents in parallel. Read-only + task delegation permissions.
Both are enabled by default and can be disabled via opencode.json:
{ "agent": { "debug": { "disable": true } } }
* docs: document debug and orchestrator agents in agents.mdx
* refine orchestrator prompt: add planning phase, wave-based execution, and file conflict avoidance