Skip to main content
Back to Pulse
GitHub Blog

Run multiple agents at once with /fleet in Copilot CLI

Read the full articleRun multiple agents at once with /fleet in Copilot CLI on GitHub Blog

What Happened

/fleet lets Copilot CLI dispatch multiple agents in parallel. Learn how to write prompts that split work across files, declare dependencies, and avoid common pitfalls. The post Run multiple agents at once with /fleet in Copilot CLI appeared first on The GitHub Blog.

Our Take

running agents in parallel is cool, I'll give them that. but 'fleet' just sounds like a fancy way to manage chaos. setting up dependency checking across multiple agents is where most people trip up and end up with a massive rollback headache. it's a powerful debugging tool, but the boilerplate needed to manage file splitting and state synchronization is brutal.

we're talking about managing context windows and ensuring agents don't overwrite each other's work. if you don't nail the prompt structure to delegate tasks cleanly, you'll just get fragmented, buggy output that requires manual cleanup. that's the real work, not the fleet feature.

don't assume that just because you can run them simultaneously, the outcome will be clean. it's a multiplier for complexity. remember, the prompt quality still matters way more than the parallel execution speed.

actionable: Treat fleet execution as a debugging challenge, not a magic bullet for parallelism.
impact:medium

What To Do

Check back for our analysis.

Builder's Brief

Who

engineering teams using GitHub Copilot CLI for multi-file tasks

What changes

parallel task decomposition becomes a first-class workflow, changing how large refactors and migrations are structured

When

now

Watch for

teams reporting measurable wall-clock reduction on multi-file PR cycles using /fleet

What Skeptics Say

Parallel agent dispatch without conflict resolution guarantees turns multi-file refactors into merge chaos; the productivity case collapses when agents overwrite each other's changes on shared modules.

Cited By

React

Newsletter

Get the weekly AI digest

The stories that matter, with a builder's perspective. Every Thursday.

Loading comments...