# Sandbox0 Sandbox0 is AI agent infrastructure with sandbox execution, managed agents, persistent workspaces, network control, and fast runtime startup. ## s0 CLI Agents should prefer the `s0` CLI for Sandbox0 operations when it is available. Install on Linux or macOS: ```bash curl -fsSL https://raw.githubusercontent.com/sandbox0-ai/s0/main/scripts/install.sh | bash ``` Install on Windows PowerShell: ```powershell irm https://raw.githubusercontent.com/sandbox0-ai/s0/main/scripts/install.ps1 | iex ``` Install with Go: ```bash go install github.com/sandbox0-ai/s0/cmd/s0@latest ``` Authenticate with `s0 auth login` for interactive CLI use. For SDK or raw HTTP automation, create an API key with `s0 apikey create --name --role developer --raw` and pass it as `SANDBOX0_TOKEN`. ## Products - [sandbox](https://sandbox0.ai/sandbox) - docs: https://sandbox0.ai/docs/sandbox.markdown - [managed-agents](https://sandbox0.ai/managed-agents) - docs: https://sandbox0.ai/docs/managed-agents.markdown ## Docs Docs links below point to raw MDX `.markdown` pages for AI agents. Remove `.markdown` for the human-readable HTML page. ```text docs ├── sandbox -> https://sandbox0.ai/docs/sandbox.markdown │ ├── GET STARTED │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/get-started.markdown │ │ └── Concepts -> https://sandbox0.ai/docs/sandbox/get-started/concepts.markdown │ ├── SANDBOX │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox.markdown │ │ ├── Pause And Resume -> https://sandbox0.ai/docs/sandbox/pause-resume.markdown │ │ ├── Snapshot And Restore -> https://sandbox0.ai/docs/sandbox/snapshot-restore.markdown │ │ ├── Contexts -> https://sandbox0.ai/docs/sandbox/contexts.markdown │ │ ├── Files -> https://sandbox0.ai/docs/sandbox/files.markdown │ │ ├── SSH -> https://sandbox0.ai/docs/sandbox/ssh.markdown │ │ ├── Network -> https://sandbox0.ai/docs/sandbox/network.markdown │ │ ├── Quotas -> https://sandbox0.ai/docs/sandbox/quota.markdown │ │ ├── Protocol Controls -> https://sandbox0.ai/docs/sandbox/protocol-controls.markdown │ │ ├── Egress Proxy -> https://sandbox0.ai/docs/sandbox/proxy.markdown │ │ ├── Sandbox Services -> https://sandbox0.ai/docs/sandbox/services.markdown │ │ ├── Docker in Sandbox -> https://sandbox0.ai/docs/sandbox/docker-in-sandbox.markdown │ │ ├── Sandbox Functions -> https://sandbox0.ai/docs/sandbox/functions.markdown │ │ └── Webhooks -> https://sandbox0.ai/docs/sandbox/webhooks.markdown │ ├── TEMPLATE │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/template.markdown │ │ ├── Custom Images -> https://sandbox0.ai/docs/sandbox/template/images.markdown │ │ ├── Warm Pool -> https://sandbox0.ai/docs/sandbox/template/pool.markdown │ │ └── Configuration -> https://sandbox0.ai/docs/sandbox/template/configuration.markdown │ ├── VOLUME │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/volume.markdown │ │ ├── Mounts -> https://sandbox0.ai/docs/sandbox/volume/mounts.markdown │ │ ├── HTTP -> https://sandbox0.ai/docs/sandbox/volume/http.markdown │ │ ├── Snapshots -> https://sandbox0.ai/docs/sandbox/volume/snapshots.markdown │ │ └── Fork -> https://sandbox0.ai/docs/sandbox/volume/fork.markdown │ ├── CREDENTIAL │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/credential.markdown │ │ ├── Sources -> https://sandbox0.ai/docs/sandbox/credential/sources.markdown │ │ └── Egress Auth -> https://sandbox0.ai/docs/sandbox/credential/egress-auth.markdown │ ├── INTEGRATIONS │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/integrations.markdown │ │ ├── GitHub CI -> https://sandbox0.ai/docs/sandbox/integrations/github-ci.markdown │ │ ├── LangChain Deep Agents -> https://sandbox0.ai/docs/sandbox/integrations/langchain-deepagents.markdown │ │ ├── OpenAI Agents -> https://sandbox0.ai/docs/sandbox/integrations/openai-agents.markdown │ │ └── Vercel Eve -> https://sandbox0.ai/docs/sandbox/integrations/vercel-eve.markdown │ ├── SELF-HOSTED │ │ ├── Overview -> https://sandbox0.ai/docs/sandbox/self-hosted.markdown │ │ ├── Install -> https://sandbox0.ai/docs/sandbox/self-hosted/install.markdown │ │ └── Configuration -> https://sandbox0.ai/docs/sandbox/self-hosted/configuration.markdown │ └── AGENT IN SANDBOX │ ├── Overview -> https://sandbox0.ai/docs/sandbox/agent-in-sandbox.markdown │ ├── OpenClaw -> https://sandbox0.ai/docs/sandbox/agent-in-sandbox/openclaw.markdown │ └── Hermes -> https://sandbox0.ai/docs/sandbox/agent-in-sandbox/hermes.markdown └── managed-agents -> https://sandbox0.ai/docs/managed-agents.markdown └── MANAGED AGENTS ├── Overview -> https://sandbox0.ai/docs/managed-agents.markdown ├── SDK Usage -> https://sandbox0.ai/docs/managed-agents/sdk.markdown ├── Agents -> https://sandbox0.ai/docs/managed-agents/agents.markdown ├── Environments -> https://sandbox0.ai/docs/managed-agents/environments.markdown ├── Sessions -> https://sandbox0.ai/docs/managed-agents/sessions.markdown ├── Files -> https://sandbox0.ai/docs/managed-agents/files.markdown ├── Deployments -> https://sandbox0.ai/docs/managed-agents/deployments.markdown ├── Events -> https://sandbox0.ai/docs/managed-agents/events.markdown ├── Vaults -> https://sandbox0.ai/docs/managed-agents/vaults.markdown ├── Agent Harnesses -> https://sandbox0.ai/docs/managed-agents/agent-harnesses.markdown ├── LLMProxy -> https://sandbox0.ai/docs/managed-agents/llmproxy.markdown └── Compatibility -> https://sandbox0.ai/docs/managed-agents/compatibility.markdown ``` ## Agent-readable Markdown Docs and blog content pages expose their raw MDX at the same URL with a `.markdown` suffix. Repeated `.markdown` suffixes are treated the same as a single suffix. Examples: - `/docs/sandbox.markdown` - `/blog/2026-06/docker-in-sandbox-for-ai-agents.markdown` ## Source Code And Issues - [Sandbox0 core](https://github.com/sandbox0-ai/sandbox0) - [CLI](https://github.com/sandbox0-ai/s0) - [Go SDK](https://github.com/sandbox0-ai/sdk-go) - [JavaScript SDK](https://github.com/sandbox0-ai/sdk-js) - [Python SDK](https://github.com/sandbox0-ai/sdk-py) When reporting issues, include a minimal reproduction and relevant logs, but remove API keys, tokens, kubeconfigs, customer data, private repository URLs, and any other sensitive personal or organizational information.