Install
curl -fsSL https://agentfleet.wecansync.com/install.sh | sh
irm https://agentfleet.wecansync.com/install.ps1 | iex
The installer downloads a pinned release, verifies its SHA-256 checksum, and installs only under your home directory; it never needs root or admin rights. Read it first: install.sh · install.ps1.
Requirements
- Claude Code
- Python 3.10+
- Node.js 18+
First-run wizard
On first install you choose a provider:
- Claude subscription — uses Claude Code's own login; lanes map to opus / sonnet / haiku.
- Anthropic API key
- Custom gateway — any Anthropic-compatible endpoint; you give the URL and the name of the environment variable that holds the token. Models are discovered from the gateway's
/v1/modelsand each lane gets the best match plus fallbacks.
Non-interactive install
macOS / Linux, subscription
curl -fsSL https://agentfleet.wecansync.com/install.sh | sh -s -- --provider native
macOS / Linux, gateway
export MY_GATEWAY_TOKEN='…'
curl -fsSL https://agentfleet.wecansync.com/install.sh | sh -s -- --provider gateway --gateway-url https://gateway.example.com --gateway-token-env MY_GATEWAY_TOKEN
Windows, gateway
$env:MY_GATEWAY_TOKEN='…'; & ([scriptblock]::Create((irm https://agentfleet.wecansync.com/install.ps1))) --provider gateway --gateway-url https://gateway.example.com --gateway-token-env MY_GATEWAY_TOKEN
Pin a version
curl -fsSL https://agentfleet.wecansync.com/install.sh | AGENTFLEET_VERSION=2.0.0 sh
Switch providers any time
agentfleet profiles # list profiles
agentfleet use native # switch to your Claude subscription
agentfleet use <gateway> # switch to a gateway
Agents keep their names; only the models behind them change. Restart Claude Code after switching. Gateway tokens are kept in a private file readable only by you.
The fleet — 19 lanes
Design and approach before code exists
Second planning opinion from a different model
Build features, fix bugs, refactor
Implementation on an independent model
Quick, low-latency changes
Hard, multi-file changes that need deep reasoning
Bulk or low-stakes work on budget/free models
Defect review of diffs, branches, plans
Independent second reviewer
Very hard reviews: security, migrations, concurrency, data-loss risk
Write, fix, investigate tests
User-facing interface code
READMEs, guides, changelogs
Auth, secrets, injection, trust boundaries
Root-cause failures from source
Find a symbol, file, or call site
Ownership, scope, next action
Sweep the repo to explain a system
Evaluate external tools and current docs
Everyday commands
/fleet-setup # inside Claude Code: audit models, settings, hooks, agents, skills and tune the fleet
agentfleet status # show current profile and lane health
agentfleet doctor # diagnose configuration problems
agentfleet sync # pull latest lane definitions
agentfleet update # update AgentFleet itself
agentfleet uninstall # remove AgentFleet cleanly