Agent teams
Build a team with real roles. Agents work in parallel, talk to each other, and hand off across teams.
One agent in a chat window is a bottleneck. You end up being the router — copying context between sessions and remembering who was doing what.
A team is a set of agents with named roles, a shared task list, and a shared repo. Give the team an objective and the lead breaks it into tasks, assigns them, and keeps the board moving. Every agent works in its own process, so five agents mean five things happening at once, not five things queued.
- Named roles: lead, builder, reviewer, tester, docs
- Agents run in parallel processes, not one queue
- Delegation and hand-off between teams
- Per-teammate workspace so agents never fight over files
- Mixed runtimes in one team — Claude Code next to Codex
Workflows that lean on agent teams
- For teams drowning in small stuff
Clear a backlog of small tasks overnight
Point a team at thirty low-risk tickets and wake up to thirty diffs waiting for review.
- For anyone who inherited the code
Refactor a legacy codebase without breaking it
Split the refactor across agents, block risky work behind tests, and review every diff before it lands.
- For the person who has to fix the number
Raise test coverage on a project nobody tested
One agent per module, tests written in parallel, every suite run in the built-in terminal before review.
- AnswerHow does it actually work?Install the app, open a project, and create a team with a few roles. Give the team an objective. The lead breaks it into tasks and assigns them, builders work in parallel, and the reviewer checks the diffs. You watch the board and step in when a card reaches review.
- ComparisonAgentTeams vs CursorAn AI-first code editor with background agents.
- AnswerWhat is AgentTeams?A desktop app for running teams of AI coding agents. It brings its own local coordination layer, so agents can hold roles, claim tasks, message each other and review each other's diffs. You supervise all of it from one kanban board instead of several terminal windows.
Stop being the message bus.
Install it, open a repo, and give three agents an objective. Free, no account, no API key.