AO

Introduction

Learn what Agent Orchestrator does, when to use it, and where to start.

Agent Orchestrator (AO) runs AI coding agents in isolated git worktrees and keeps track of the work until it becomes a pull request.

Use it when you have several well-scoped issues and want agents to work on them at the same time without sharing a checkout, terminal, or branch. AO starts each session, watches the agent, tracks the PR, and shows the state of every session in one dashboard.

Fastest path

If you are new to AO, install it first, then run the quickstart against one small issue. Start with Installation, then Quickstart.

What AO Is For

AO is useful when you want to:

  • Run more than one coding agent at the same time.
  • Keep every agent in its own worktree, branch, and session.
  • Watch agent terminals and PR state from one dashboard.
  • Let AO wake an agent when CI fails or a review requests changes.
  • Use different agent CLIs across projects or roles, such as Claude Code, Codex, Cursor, Aider, and OpenCode.

AO works best for issues that have a clear outcome: failing tests, small features, focused refactors, migrations, documentation updates, and review follow-ups.

What AO Does Not Do

AO does not replace review. It helps agents keep working, but you still decide what gets merged.

AO handlesYou still handle
Creating isolated workspacesChoosing good issues
Launching and monitoring agentsReviewing code and behavior
Tracking PR, CI, and review statusDeciding when to merge
Cleaning up merged sessionsSetting repo-specific rules and expectations

How A Session Moves

issue -> ao spawn -> worktree + agent -> pull request -> CI/review loop -> merge -> cleanup

The dashboard shows this lifecycle as session cards. Open a card to see the live terminal, current activity state, issue link, PR link, and worktree path.

How AO Fits Together

AO is built from plugins. The default setup works out of the box for common GitHub workflows, and you can swap pieces when your setup is different.

Plugin slotWhat it controlsExamples
AgentWhich coding tool writes changesClaude Code, Codex, Cursor, Aider, OpenCode
RuntimeHow the agent process runstmux, child process
WorkspaceWhere code is checked outgit worktree, full clone
TrackerWhere issues come fromGitHub, GitLab, Linear
SCMHow PRs, reviews, and CI are readGitHub, GitLab
NotifierWhere AO sends updatesdesktop, Slack, Discord, webhook

Most users start with the defaults and only edit agent-orchestrator.yaml when they need a different agent, runtime, tracker, or notification target.

Platform Support

macOSSupported
LinuxSupported
WindowsIn progress

Windows support is actively improving. Use the process runtime instead of tmux by setting defaults.runtime: process in agent-orchestrator.yaml. See Platforms for details.

Where To Go Next