AgentFleet

A provider-agnostic fleet of Claude Code subagents. One command to install. Works with your Claude subscription, an Anthropic API key, or any Anthropic-compatible gateway.

Install

curl -fsSL https://agentfleet.wecansync.com/install.sh | sh

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

First-run wizard

On first install you choose a provider:

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

fleet-plan

Design and approach before code exists

fleet-plan-alt

Second planning opinion from a different model

fleet-implement

Build features, fix bugs, refactor

fleet-implement-alt

Implementation on an independent model

fleet-implement-fast

Quick, low-latency changes

fleet-implement-deep

Hard, multi-file changes that need deep reasoning

fleet-implement-cheap

Bulk or low-stakes work on budget/free models

fleet-review

Defect review of diffs, branches, plans

fleet-review-alt

Independent second reviewer

fleet-review-deep

Very hard reviews: security, migrations, concurrency, data-loss risk

fleet-tests

Write, fix, investigate tests

fleet-ui

User-facing interface code

fleet-docs

READMEs, guides, changelogs

fleet-security-review

Auth, secrets, injection, trust boundaries

fleet-diagnose-static

Root-cause failures from source

fleet-explore-narrow

Find a symbol, file, or call site

fleet-triage-static

Ownership, scope, next action

fleet-research-codebase

Sweep the repo to explain a system

fleet-research-web

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