What problem does it solve?
It solves the problem of coordinating multiple Claude Code agents so they can share communication context and work from a single, consistent task list instead of acting like isolated workers.
Core Features & Use Cases
- Shared team channel + task list: Uses TeamCreate to establish a common workspace at ~/.claude/tasks/{team-name}/ for coordinated execution.
- Task-driven parallel collaboration: Creates one shared task per work unit (TaskCreate) and advances ownership/status as agents progress (TaskUpdate).
- Real-time coordination via messaging: Spawns agents into the same team (Agent with team_name and name) and coordinates progress and handoffs using SendMessage (including shutdown requests and cleanup via TeamDelete).
Use case examples: run parallel research and synthesis, coordinate cross-functional implementation work, or manage multi-agent workflows that require shared state outside a full sprint:run context.
Quick Start
Instruct the AI to set up an agent team and coordinate parallel agents for your multi-step project workflow using shared tasks and SendMessage.