Runtime-level supervision
An advisor model the executor cannot bypass. CONTINUE / REDIRECT / HALT enforced before any reply ships.
An open-source agentic runtime that pairs an executor with an advisor — at the runtime layer, not as a slash command the agent can ignore. Three runtimes, one binary, one storage layer.
An advisor model the executor cannot bypass. CONTINUE / REDIRECT / HALT enforced before any reply ships.
Interactive TUI, one-shot send, multi-tenant HTTP+SSE server. Same agents, same memory, no service mesh.
Tiered retrieval with reranking — a higher-accuracy path and a low-latency path. Pick the tier per call.
Slash commands inline in replies, parsed off the stream. Model-agnostic, debuggable, smaller surface.
$ arbiterPersistent panes for chat, memory, fleet, and tool tail — visible at the same time, not behind subcommands. Background loops stream into a tail pane while you keep typing in the foreground.
$ arbiter --send "…"Send a single turn from a shell, get the answer on stdout, exit. Drops cleanly into Make targets, git hooks, CI steps — anywhere you already shell out.
$ arbiter --apiMulti-tenant orchestration server on :8080. Bearer-token auth, per-tenant isolation, full CRUD over agents / conversations / memory / artifacts, streaming SSE for every turn.
/v1/.ARBITER_BILLING_URL./v1/requests/:id/cancel.The runtime ships the hard parts of agentic software as first-class primitives — durable execution, a memory graph, sub-agent delegation, versioned outputs — not glue code you maintain yourself.
Every turn is journaled. Drop the connection mid-stream, reconnect with a sequence cursor, and pick up exactly where you left off — nothing re-run, nothing re-billed.
Learn moreA queryable graph of memory entries and relations — not a flat vector dump. Agents read, write, and rank across it as the workflow runs.
Learn moreAgents spin up sub-agents and fan work out in parallel. The whole tree streams back as one ordered event sequence.
Learn moreDurable, addressable outputs. Every file or document an agent produces is versioned and diffable — not lost when the turn ends.
Learn moreConnect Model Context Protocol servers once and the runtime exposes their tools to every agent — no per-agent wiring.
Learn moreCron-style scheduling built in. Kick off agent workflows on an interval, with no terminal attached.
Learn moreThe runtime is open source — clone, build, run. Or grab a pre-built native binary. Either way, the cloud workspace and the local CLI talk to the exact same HTTP API.
Read the docs