Runs in your cloud
Every event, tool call, file, memory, and credential stays inside your workspace. Nothing is exfiltrated to a vendor.
Agent Engine is a managed runtime for production agents. It runs in your own cloud, keeps every event, tool call, file, and credential inside your workspace, and mirrors the Anthropic Managed Agents API — point an Anthropic-compatible client's base URL at Orca and your existing agent code runs unchanged.
A registry and harness server run your agent; a sandbox isolates its code; the AI Gateway governs every model and tool call. Every transcript and audit log streams out to your own data backbone.

Every event, tool call, file, memory, and credential stays inside your workspace. Nothing is exfiltrated to a vendor.
Mirrors the managed-agents API surface. Point an Anthropic-compatible client's base URL at your Orca workspace — no rewrite.
Sessions and threads, resource mounts (files, memory stores, Git repos), versioned memory, skills, environments, and vaults — a full control plane, not a wrapper.
Sessions resume by replaying their event log. Every step is recoverable and auditable.
// Point any Anthropic-SDK-compatible client at your Orca workspace.// Every event, tool call, and credential stays inside your cloud.const ORCA = "https://acme.orca.cloud";const headers = { "x-api-key": process.env.ORCA_API_KEY!, // orca_... "content-type": "application/json",};// Harness and model are configuration, not a rewrite.const agent = await fetch(`${ORCA}/v1/agents`, { method: "POST", headers, body: JSON.stringify({ name: "support-triage", model: { provider: "anthropic", id: "claude-opus-4-8" }, metadata: { harness: "claude_agent_sdk" }, }),}).then((r) => r.json());// Run it. The full transcript streams back as a governed, replayable log.const session = await fetch(`${ORCA}/v1/sessions`, { method: "POST", headers, body: JSON.stringify({ environment_id: env.id, agent_id: agent.id }),}).then((r) => r.json());Point an Anthropic-compatible client at your Orca workspace. Harness and model are configuration — not a rewrite.
Everything below carries a status — available now, in preview, or on the roadmap. No roadmap item is dressed up as shipped.
Bring the harness you already use. Swapping it is configuration, not a rewrite — the runtime primitives are harness-agnostic.
Pluggable isolated execution for tool calls and code. OpenSandbox is Alibaba's open-source engine — Orca ships the adapter.
Start a session however work arrives — cron needs no streaming at all.
One managed runtime across harnesses.
Vaulted credentials, budgets, and audit on every call.
Transcripts, live tailing, replay, and version lineage.