# Cursor Multi-Agents
Multi-Agents in [[Cursor.com|Cursor]] run several agents in parallel on the same task or repo. It launched with Cursor 2.0 in October 2025, supporting up to 8 agents at once, each in its own git worktree so their changes never collide. Cursor 3 made this the centerpiece of the product.
## Git worktrees
The trick that makes parallelism safe is the git worktree. Each agent gets a separate working copy of the repo on its own branch. Agents edit freely without stepping on each other, and you compare or merge the results afterward.
## In Cursor 3: the Agents Window
Cursor 3 (April 2026) built a whole interface around this. The Agents Window shows every agent running locally, in worktrees, in the cloud, or over SSH in one sidebar. Two commands carry it:
- `/worktree` creates an isolated worktree for a task
- `/best-of-n` runs the same task across multiple models in parallel, each in its own worktree, then compares the outcomes
## Notes
- Best-of-n is the interesting one. It turns model choice into an experiment you run rather than a guess you make.
- Parallel agents trade compute for wall-clock time. The win is real when a task genuinely splits, or when you want competing attempts at the same problem.
## References
- Cursor 3 announcement: https://cursor.com/blog/cursor-3
- Changelog: https://cursor.com/changelog
## Related
- [[Cursor.com]]
- [[Cursor Agent Mode]]
- [[Cursor Subagents]]
- [[Cursor Cloud Agents]]
- [[AI Agents]]