Fleet 2.6.0 is out.See what's new →
FleetFleet
For developers

You write the ticket.
Your agents ship it.

Fleet is a single Go binary that executes the saved workflows you design — so a code step opens a PR, a review step checks it, and a governed merge step ships it without hidden handoffs.

$ curl -fsSL https://fleetctl.ai/install | sh
terminal
$ fleet up
✓ worker ready · 3 agent types synced
$ # run the saved Ship a feature workflow…
Refine → done
Develop → PR #42 opened
Review → pass
Approve → awaiting approval
Merge → merged ✓

Configure the worker locally, build the workflow visually

YAML declares repositories, agents, and types. The dashboard declares steps, dependencies, retries, and approval gates.

# .fleet/config.yaml
types:
  - name: developer
    model: claude-sonnet
  - name: reviewer
    model: claude-opus       # judgment-heavy → stronger model
  - name: release-manager
    model: claude-sonnet

agents:
  - name: backend-dev
    role: developer
  - name: code-reviewer
    role: reviewer
  - name: release-manager
    role: release-manager

Use efficient models for routine types and a stronger model where judgment matters. Then bind those types to steps in a saved workflow. See the full walkthrough in the step-by-step guide.

What you'd build by hand vs. what Fleet handles

You can wire this together yourself with tmux and worktrees. Here's what you'd be signing up to maintain.

The DIY approach

  • Open a terminal per agent and a worktree per branch
  • Notice when one agent finishes and manually tell the next to start
  • Relay context between agents by reading output and re-prompting
  • Cap how long each agent runs by babysitting sessions yourself
  • Hope nobody's agent deletes tests to make them pass
  • Reconstruct what happened from git history when something breaks

With Fleet

  • Each agent gets its own tmux session and worktree automatically
  • A code step opens a PR; the next review step receives the real diff
  • Context moves across explicit dependency edges and persisted run state
  • Per-agent run-time budgets with hard ceilings
  • A separate risk model auto-quarantines a drifting agent before it ships
  • Every decision written to an audit trail you can query with fleet log

Need to convince your lead?

The business case — cost, governance, and audit trails — laid out for engineering leaders.

The case for Fleet

A note on access

The binary is free to install and inspect; starting agents requires a license. Sign up free and you'll get a registration code for your dashboard.

Start free