Multi-Agent Teams
April 7, 2026 · View on GitHub
cmdr supports multi-agent collaboration with built-in presets. Each agent has its own system prompt, tool access, and optional model. Results flow through shared memory so downstream agents see what upstream agents produced.
Built-in Presets
cmdr --team review # Coder + Reviewer
cmdr --team fullstack # Planner + Frontend + Backend + Reviewer
cmdr --team security # Security Scanner + Reviewer
Switching Mid-Session
/team review
How It Works
- The orchestrator breaks a task into subtasks
- Each agent picks up its assigned subtask and runs it with its own tool set
- Results are written to shared memory
- Downstream agents read upstream outputs and continue
- The final agent produces the consolidated result
Next: Plugins & MCP →