What's New
Team-First Orchestration
- Team is now the canonical orchestration surface with staged pipeline:
team-plan→team-prd→team-exec→team-verify→team-fix(loop)
- Native Claude Code team tools (TeamCreate, SendMessage, TaskCreate)
- Real-time inter-agent messaging and task coordination
Legacy Keyword Migration
swarmandultrapilotnow route to Team as compatibility facades- Preserved:
swarm N agentsagent count extraction - Added warning when team invoked but
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMSnot set
New Team Pipeline
- Session-scoped staged state (
.omc/state/sessions/{id}/team-state.json) - Guarded transitions with bounded fix-loop failure handling
- Bridge resume/continuation for all Team stages
- Terminal state awareness for cleanup flows
Documentation
- Updated team.md, swarm.md, ultrapilot.md with staged pipeline semantics
- Compatibility wrapper documentation for legacy commands
Tests
- 3179 tests passing
- Added Team migration test coverage
Migration Guide
| Old Command | New Behavior |
|---|---|
swarm 5 agents
| Routes to Team with 5 agents |
ultrapilot
| Routes to Team |
team
| Native Team orchestration (recommended) |
Enable teams in ~/.claude/settings.json:
{
"env": {
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
}
}