OpenSandbox (Alibaba) — Summary
OpenSandbox is an Alibaba-originated, CNCF-listed general-purpose sandbox platform for AI applications — providing multi-language SDKs (Python, Java/Kotlin, JavaScript/TypeScript, C#/.NET, Go), a unified REST protocol (Sandbox Protocol) for lifecycle and execution APIs, and pluggable runtimes supporting Docker and Kubernetes with optional secure container runtimes (gVisor, Kata Containers, Firecracker microVM). Its key architectural choice is separation between the sandbox protocol (the API contract), the sandbox server (FastAPI control plane), and the sandbox runtime (the actual container or VM) — allowing operators to plug in different isolation backends without changing client code. The osb CLI and opensandbox-mcp MCP server expose sandbox operations to both human operators and MCP-capable clients (Claude Code, Cursor). OpenSandbox is in the CNCF Landscape under "Scheduling & Orchestration," positioning it as cloud-native infrastructure rather than a developer tool.
Differs from seeds: OpenSandbox is categorically distinct from all 11 seeds — every seed operates at the LLM agent-loop layer while OpenSandbox is a sandbox control plane. The closest parallel within the batch is AgentTier (K8s-native sandbox lifecycle) and CubeSandbox (microVM sandbox), but OpenSandbox has the widest multi-language SDK surface (5 languages) and the most explicit "protocol specification" philosophy (defining sandbox lifecycle APIs as a standard others can implement). The opensandbox-mcp server parallels ccmemory's (seed) MCP pattern but exposes sandbox operations rather than memory operations.