Prerequisites
Rust 1.75 or newer, and Ollama running locally with at least one model pulled. Ollama is what lets Anvaya run without an API key.
rustc --versionollama pull devstral:latestGet Started · FIVE STEPS, ALL LOCAL
The repos are private until the public beta in Q4 2026. The steps below are exactly what will unlock then — everything runs locally, no account, no API key, no credit card.
Anvaya CLI and Anvaya Mind are private repositories until the public beta. Join the early-access list and we’ll send you the clone-and-build instructions the moment they’re public.
Rust 1.75 or newer, and Ollama running locally with at least one model pulled. Ollama is what lets Anvaya run without an API key.
rustc --versionollama pull devstral:latestAnvaya is not on crates.io or Homebrew yet — you build it from source. The release profile produces a single ~12.1MB binary with no runtime dependencies.
git clone https://github.com/NaMan6122/Anvaya-CLI.gitcd Anvaya-CLIcargo build --releasePut anv on your PATH, then initialize the project you want it to work in. anv init creates the .anvaya/ directory that holds config, sessions, and backups.
cargo install --path crates/anvcd ~/code/your-projectanv initLaunch the TUI, or skip it entirely and run headless. Keys 1–7 switch panels; --plan-only is a read-only mode that never writes or executes.
anvanv --no-tui --plan-only "what would change to add Redis caching?"anv --continueMind is a separate daemon. It creates .anvaya/mind/ inside your project, holds an exclusive lock, and runs six background workers that keep the graph consolidated.
git clone https://github.com/NaMan6122/anvaya-mind-rs.gitcd anvaya-mind-rs && cargo build --releasemind-daemon --project ~/code/your-projectAlready Using Claude Code?
Mind ships an MCP server, so it attaches to any MCP-capable client without replacing it. Drop this in your project root and Mind becomes available as a set of tools inside the editor or agent you already use.
That exposes eight tools — mind_query, mind_search, mind_record_change, mind_get_node, mind_stats, mind_start_session, mind_end_session, mind_get_threads. mind_query returns a packed context under a token budget you set, defaulting to 4,096.