Archon offers two installation paths depending on how much you want to configure upfront. The Quick Install gives you a standalone binary in 30 seconds — ideal if you already have Claude Code set up. The Full Setup clones the repo, runs the guided wizard, installs credentials, and gives you the web dashboard — recommended for most users.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/coleam00/Archon/llms.txt
Use this file to discover all available pages before exploring further.
- Quick Install (30s)
- Full Setup (5min)
The quick install delivers a pre-compiled
archon binary. Claude Code is not bundled — you need it separately.Install and authenticate Claude Code
Compiled Archon binaries require Claude Code to be installed separately, then pointed at via To make Then authenticate Claude Code:
CLAUDE_BIN_PATH.- macOS / Linux / WSL
- Windows (PowerShell)
CLAUDE_BIN_PATH permanent, add it to your shell profile, or set it in ~/.archon/config.yaml:~/.archon/config.yaml
Run your first workflow
With Archon installed, navigate to any git repository and run a workflow.See what workflows are available
.archon/workflows/.Ask a question about the codebase
The
archon-assist workflow is the lowest-friction starting point — no isolation required:Fix an issue on an isolated branch
fix/issue-42, then runs the full pipeline: classify → investigate → implement → validate → PR → review → self-fix. Progress streams to your terminal in real time.Verification checklist
Common first-run issues
'CLAUDE_BIN_PATH not set' error on quick install
'CLAUDE_BIN_PATH not set' error on quick install
Compiled binaries can’t auto-discover Claude Code. Set the path explicitly:Or add it to
~/.archon/config.yaml under assistants.claude.claudeBinaryPath. See AI Assistants for all install-layout paths.'Not in a git repository' error
'Not in a git repository' error
Archon requires a To skip isolation for one run:
.git folder to create worktrees. Navigate to your project root, or initialize git:archon workflow run <name> --no-worktree "message".'command not found: archon' after quick install
'command not found: archon' after quick install
The binary installs to
~/.local/bin/ which may not be on your PATH:'command not found: bun' during full setup
'command not found: bun' during full setup
Install Bun and open a new terminal:
What’s next
Core concepts
Learn about workflows, DAG nodes, isolation, providers, and adapters.
AI assistants
Configure Claude Code, Codex, or Pi as your AI backend.
Authoring workflows
Write custom YAML workflows tailored to your project’s needs.
CLI reference
Full reference for all
archon commands and flags.