Quick start
/docs/quick-start/
Choreographr requires a Rust toolchain — the minimum supported Rust version (MSRV) is 1.91.
1. Build
rustup install stable
cargo build --release2. Start the daemon
cargo run --release -p choreo-daemon # default log level: info
cargo run --release -p choreo-daemon -- -v # debug
cargo run --release -p choreo-daemon -- -vv # trace
cargo run --release -p choreo-daemon -- -q # warnings only
RUST_LOG takes precedence over the CLI flags:
RUST_LOG=debug cargo run --release -p choreo-daemon3. Attach a client
cargo run --release -p choreo-tui # terminal UI
cargo run --release -p choreo-gui # desktop app
cargo run --release -p choreo-im # IM bridge
cargo run --release -p choreo-acp # ACP bridge for editorsYour first conversation
- Configure an account in
~/.config/choreographr/accounts.toml(see Accounts & providers) and add an API key with/add-key <service> <api_key>. - Select the account with
/account <name>. - Start prompting!
┌──────────────┐ Unix socket / ┌──────────────┐ HTTP/SSE ┌────────────────────┐
│ choreo-tui │◄───────────────────►│ │◄──────────────►│ OpenAI-compatible │
│ (terminal) │ │ │ ├────────────────────┤
├──────────────┤ │ │◄──────────────►│ Anthropic Messages│
│ choreo-gui │◄───────────────────►│ choreographr │ ├────────────────────┤
│ (desktop) │ Noise-IK TCP │ (daemon) │◄──────────────►│ Google Gemini │
├──────────────┤ │ │ └────────────────────┘
│ choreo-im │◄───────────────────►│ │
│ (IM bridge) │ │ │
├──────────────┤ │ │
│ choreo-acp │◄───────────────────►│ │ MCP subprocess servers
│ (ACP bridge)│ └──────────────┘ RISC-V VM sandbox
└──────────────┘ redb database
That's it — you're chatting with your agent.