Minimal paths to a working agentfleet on your machine.
npm install -g @buyan14/agentfleet@latestVerify:
which agentfleet
agentfleet --help
python3 --version # ≥ 3.11- JS shim on
PATH(bin/agentfleet.js): invokes Python withPYTHONPATHset to the package root soagent_fleetloads from that install—not from arbitrary site-packages.
You still need a working python3 (or python) on PATH. Override if needed:
export AGENTFLEET_PYTHON=/opt/homebrew/bin/python3.11git clone https://github.com/buyan-kh/agentfleet.git && cd agentfleet
PYTHONPATH=. python -m agent_fleet.cli --helpOptional editable install:
pip install -e .
agentfleet --helpnpm install -g @buyan14/agentfleet@latest
# or
agentfleet upgradenpm uninstall -g @buyan14/agentfleetRun agentfleet doctor inside your project repo after install. Typical fixes: install missing CLIs (claude, codex), fix Python version, grant terminal app permissions (Ghostty splits on macOS).
See README for full usage.