2.5 KiB
Architecture
Source:
docs/architecture.mdxCanonical URL: https://sandboxagent.dev/docs/architecture Description: How the Sandbox Agent server, SDK, and agent processes fit together.
Sandbox Agent is a lightweight HTTP server that runs inside a sandbox. It:
- Agent management: Installs, spawns, and stops coding agent processes
- Sessions: Routes prompts to agents and streams events back in real time
- Sandbox APIs: Filesystem, process, and terminal access for the sandbox environment
Components
flowchart LR
CLIENT["Your App"]
subgraph SANDBOX["Sandbox"]
direction TB
SERVER["Sandbox Agent Server"]
AGENT["Agent Process<br/>(Claude, Codex, etc.)"]
SERVER --> AGENT
end
CLIENT -->|"SDK (HTTP)"| SERVER
- Your app: Uses the
sandbox-agentTypeScript SDK to talk to the server over HTTP. - Sandbox: An isolated runtime (local process, Docker, E2B, Daytona, Vercel, Cloudflare).
- Sandbox Agent server: A single binary inside the sandbox that manages agent lifecycles, routes prompts, streams events, and exposes filesystem/process/terminal APIs.
- Agent process: A coding agent (Claude Code, Codex, etc.) spawned by the server. Each session maps to one agent process.
What SandboxAgent.start() does
- Provision: The provider creates a sandbox (starts a container, creates a VM, etc.)
- Install: The Sandbox Agent binary is installed inside the sandbox
- Boot: The server starts listening on an HTTP port
- Health check: The SDK waits for
/v1/healthto respond - Ready: The SDK returns a connected client
For the local provider, provisioning is a no-op and the server runs as a local subprocess.
Server recovery
If the server process stops, the SDK automatically calls the provider's ensureServer() after 3 consecutive health-check failures. Most built-in providers implement this. Custom providers can add ensureServer(sandboxId) to their SandboxProvider object.
Server HTTP API
See the HTTP API reference for the full list of server endpoints.
Agent installation
Agents are installed lazily on first use. To avoid the cold-start delay, pre-install them:
sandbox-agent install-agent --all
The rivetdev/sandbox-agent:0.4.2-full Docker image ships with all agents pre-installed.
Production-ready agent orchestration
For production deployments, see Orchestration Architecture for recommended topology, backend requirements, and session persistence patterns.