CampeloLabs
← All articles

Blog

AI agent orchestration: run a fleet, not one

Cicero Campelo

Cicero Campelo, CISSP
June 25, 2026 · 8 min read

Part of our guide to AI for startups.

A single builder at a console directing a fleet of AI coding agents working in parallel, each on its own isolated copy of the code
Table of contents

Running one AI coding agent feels like magic the first time. Then you realize you can start another, and another, each on its own copy of your code, all working at once. That shift is what AI agent orchestration means, and it is quickly becoming the skill that separates the best builders. In a Y Combinator interview, Charlie Holtz and Jackson de Campos, co-founders of Conductor and fresh off a $22 million Series A co-led by Spark Capital and Matrix, talked with YC's Aaron Epstein about what changes when you stop editing files and start directing a fleet of agents. The punchline: the model is not the bottleneck anymore. You are.

What AI agent orchestration actually is

AI agent orchestration is coordinating many agents at once instead of working with one, each in its own isolated copy of the code, with you assigning the work and reviewing what comes back. Conductor, the app the founders built, makes that concrete: a Mac app that runs a group of coding agents at the same time. In one click you spin up an isolated copy of your codebase, send Claude Code or Codex off to do a task, and then review and merge what it produces. Run several at once and you are no longer editing files, you are directing work. That is the orchestration layer: the coordination around many agents, not the act of using one. Their newer cloud version even keeps these running as background agents after you close your laptop.

The primitive underneath it is humble. The founders started by keeping five separate clones of their repo with an agent running in each, then realized git worktrees were the cleaner way to give every agent an isolated workspace, and built up from there. This is the part that makes orchestration different from running a single coding agent as a teammate: the value is in coordinating a fleet, keeping each one walled off so they cannot step on each other, and pulling their work back together.

The bottleneck moves from the model to you

Once you can run many agents, the limit is not the AI, it is your own head. One of the founders is blunt about it: he can only really hold three to five agents in his head at once, and pushing past that is an interface problem that will need a higher level of abstraction to solve. The models are already good enough to run productively in parallel. The constraint is human attention.

That reframes what you are optimizing. With one agent, you want a smarter model. With a fleet, you want a better way to hold the state of five jobs in your mind and switch between them without losing the thread. Orchestration is a working-memory problem as much as a tooling one, and the founders are candid that the interface to manage more than a handful of agents well does not really exist yet.

Review is the new bottleneck

When producing code gets cheap, checking it becomes the expensive part. The founders say everyone is bottlenecked on reviews: you still have to pay close attention to each line an agent adds, and the tooling is stuck in the 2010 GitHub pull-request era. Orchestrating a fleet does not remove work, it moves it from writing to reading.

As a CISSP, this is the part I would not rush. Review is your control gate, and untested agent output going to production is how incidents happen. Two habits make the speed safe. First, isolation: every agent works on its own copy or worktree, so a bad run cannot corrupt another agent's work or your main branch, which keeps the blast radius small. Second, keep certain parts of the codebase as zones where the human stays the architect and the agent is not allowed to run wild, especially anything touching security, payments, or data. This is the same verification mindset behind agentic engineering: the check is what makes the speed safe.

You become the CEO of your agents

The founders describe where this is heading as an interface that makes you feel like the CEO of a large company with thousands of AI employees. Most of the time you sit at a high level, reading what amounts to reports from your agents, and once in a while you drill into the details, the way a pull-request review feels today. The job is AI agent management, not typing.

What does that job reward? The founders watched some of the best engineers in the world use Conductor, and what stood out was not exotic setups. The strongest engineers had surprisingly simple, vanilla configurations, but they put real thought into their skills files, the markdown documents of standards and conventions that agents read on every run. They also understood what each agent was doing at every level, optimized the bottlenecks the agents kept hitting, and thought ahead about which constraints to hand an agent rather than just reacting to whatever it returned. As one of them put it, the best people building with AI are the best people building with other humans. The skills of giving direction, setting constraints, and reviewing work transfer straight across, which is also why this connects to the solo founder who now runs like a whole team.

What to do this week

  • Start with two parallel agents before you try ten. Pick two independent tasks, a bug fix and a small feature, give each its own isolated copy of the code, and practice switching between them.
  • Make isolation the default. Every agent works on its own branch or git worktree, never the same files, so one bad run cannot corrupt another or your main branch.
  • Treat review as the real work. Budget more time for reading agent output than for prompting it, and read every line that touches anything that matters.
  • Write your skills files. Put your stack's best practices and your codebase's conventions into markdown the agents read, so you are not re-explaining them every run.
  • Mark the no-fly zones. Decide which parts of the codebase an agent can touch freely and which require you as the architect, and keep the sensitive parts human-owned.
  • Manage like a manager. Give clear constraints up front, check in at the right altitude, and drill into the details only where it counts, the way you would with a team of people.

The lesson from Conductor, one of a wave of YC companies building AI coding agents, is not that you should run fifty agents tomorrow. It is that the job is shifting from writing the work to directing it, and the people who win are the ones who can orchestrate, review, and set direction at once. Making that the way your company operates, with one person running like a department, is what the AI Operating System for Startups is about.

Sources

Frequently asked questions

What is AI agent orchestration?

AI agent orchestration is running and coordinating multiple AI agents at the same time, instead of working with one. In coding, that means giving several agents their own isolated copy of the codebase, sending each off on a task in parallel, then reviewing and merging their work. Your job shifts from doing the work yourself to assigning it, watching it, and deciding what to keep. Conductor's founders describe the goal as feeling less like an engineer editing files and more like the head of a team directing workers.

How many AI agents can you run at once?

In practice you are limited by your own attention and review capacity, not by the models or compute. One of Conductor's founders says he can only hold about three to five agents in his head at once, and that going beyond that is an interface problem that needs a higher level of abstraction. The takeaway: the bottleneck has moved from the model's capability to the human's working memory, so orchestration is as much about managing your own attention as it is about the tools.

What is the hardest part of running multiple coding agents?

Review. When producing code becomes cheap, checking it becomes the constraint. The founders put it plainly: everyone is bottlenecked on reviews, you still have to pay close attention to each line an agent adds, and the tooling is still stuck in the 2010 GitHub pull-request era. Orchestrating a fleet of agents does not remove the work, it moves the work from writing code to reading and approving it, which is why review discipline matters more, not less.

Do you need a tool for AI agent orchestration?

You can start without one: run a couple of agents in separate git worktrees so they never touch the same files. But it gets hard fast past one or two agents, which is exactly the friction that led the Conductor founders to build their app (isolated copies plus review and merge in one interface) after first doing it manually with five clones of their repo. The discipline of isolation and review matters more than any specific tool, but a tool is what makes running many agents practical.

How is AI agent orchestration different from just using a coding agent?

Using one coding agent makes you faster at the work you already do. Orchestration changes the work itself: you stop being the person writing each change and become the person assigning tasks, reviewing output, and merging it, more like a manager than an individual contributor. As the Conductor founders put it, the best people building with AI turn out to be the best people building with other humans, because the skills of giving direction, setting constraints, and reviewing work transfer directly.

Build your AI Operating System

A practical course to grow with AI, build internal tools, and operate safely. v1.0 launches July 31, join the waitlist.