Sandbox0: Open-Source Kubernetes-Native Sandbox Infrastructure for AI Agents

Sandbox0 is an open-source sandbox infrastructure designed specifically for AI agents, currently under active development with a SaaS cloud service planned. The project addresses several pain points developers encounter with existing sandbox solutions.
Key Features
The source highlights these specific capabilities:
- Cloud-native scaling: Built on Kubernetes with auto-scaling. Concurrency scales with your cluster capacity rather than artificial limits. You can spin up 1000+ concurrent sandboxes if your cluster supports it.
- Persistent storage: Uses JuiceFS-based volumes with snapshot/restore/fork workflows. This allows coding agents to checkpoint work, resume from any state, or branch off to explore different approaches. State persists across pod restarts.
- Self-hosting friendly: Kubernetes-native architecture that works on EKS, GKE, AKS, or on-prem. Installation is via
helm installwithout requiring Nomad or Terraform orchestration. - Network control: Built-in netd for L4/L7 policy enforcement, allowing restriction of which APIs your agent can access.
Technical Stack
The source specifies these technical components:
- Hot sandbox pools for 100-200 ms startup
- procd as PID=1 for process management
- JuiceFS for persistent volumes
- Kubernetes-native architecture
Problem Statement
The source identifies these issues with existing solutions:
- Concurrency limits: E2B's $150/month plan caps at 100 concurrent sandboxes
- Ephemeral execution: Sandboxes reset between sessions, causing loss of state, files, and progress
- Self-hosting complexity: Requires Terraform + Nomad + significant ops expertise
Current Status
Sandbox0 is open-source and under active development. The creator is looking for early adopters and feedback, and is curious about what features would make developers try a new sandbox solution.
Source Information
The project is available at github.com/sandbox0-ai/sandbox0 and was shared on r/LocalLLaMA by /u/Artistic-Cap-1076.
📖 Read the full source: r/LocalLLaMA
👀 See Also

YourMemory: AI memory with biological decay hits 59% recall on LoCoMo-10
YourMemory gives AI agents persistent memory using Ebbinghaus forgetting curve and graph-enhanced retrieval. Benchmarked at 59% Recall@5 on LoCoMo-10, 2× better than Zep Cloud.

DocMason: Local Agent Knowledge Base for Complex Office Files
DocMason is a repo-native agent app that builds local knowledge bases from complex office documents like PPTX, DOCX, Excel, and PDFs. It runs entirely within Codex or Claude Code, maintaining document structure and providing traceable answers with provenance.

Open-Source Claude IDE Bridge Connects Dispatch, Desktop App, and Claude Code
The claude-ide-bridge is an MIT-licensed open-source tool that connects Claude Code to your IDE, providing access to LSP, debugger, terminals, git, and GitHub through 124 tools. It enables a workflow where tasks sent via Dispatch from a phone are handled by the Claude desktop app, which uses Claude Code to write code and run tests while interacting with the IDE.

Caliber: Local CLI tool generates AI coding assistant configs from your repo
Caliber is a local-first CLI tool that scans repositories in languages like TypeScript, Python, Go, and Rust, then generates prompt and configuration files for AI coding assistants including Claude Code, Cursor, and Codex. It runs entirely on your machine with your own keys, has 13k npm installs, and is open source under MIT license.