E2B-compatible sandbox control plane. Use the standard E2B SDK with local Docker containers, Shuru microVMs, or Tart macOS VMs — swap to real E2B in production by changing one URL.
| Docker | Shuru | Tart | |
|---|---|---|---|
| Technology | Linux containers | macOS microVMs (Apple Virt) | macOS VMs (Apple Virt) |
| Platform | All | macOS only | macOS only |
| Guest OS | Linux | Alpine Linux | macOS |
| Isolation | Namespace/cgroup | Hardware VM | Hardware VM |
| Pause/resume | Yes | No (ephemeral) | Yes (suspend/resume) |
| Status | Default | Supported | Supported |
See docs/container-runtimes.md for detailed backend comparison.
# Build the base image
docker build -t sandbox-base:latest docker/sandbox
# Install
brew install circlesac/tap/sandbox
# or: npx @circlesac/sandbox
# Start (auto-generates API key on first run)
sandbox serve
brew install shuru
shuru checkpoint create sandbox-base --allow-net -- sh -c '...'
# Set backend
# ~/.sandbox/config.json → { "backend": "shuru" }
sandbox serve
# Install Tart and pull macOS base image (~24GB, one-time)
brew install cirruslabs/cli/tart
tart clone ghcr.io/cirruslabs/macos-sequoia-base:latest sandbox-base
# Build and install envd-lite into base image (one-time)
cd envd-lite
go generate ./...
go build -o envd-lite .
# See CONTRIBUTING.md for base image setup with envd-lite pre-installed
# Start with macOS support alongside Docker
SANDBOX_MACOS_BACKEND=tart sandbox serve
envd-lite is pre-installed in the base image with a LaunchAgent, so each sandbox only needs to clone the VM and boot it. VM creation takes ~30-60s depending on host CPU.
The E2B SDK works the same across all backends. Use metadata.platform to select the platform:
import Sandbox from "e2b";
const opts = {
apiUrl: "http://localhost:49982",
apiKey: "sk-...",
};
// Linux sandbox (default)
const linux = await Sandbox.create("base", opts);
const result = await linux.commands.run("uname");
// → "Linux"
// macOS sandbox
const macos = await Sandbox.create("base", {
...opts,
metadata: { platform: "macos" },
});
const result2 = await macos.commands.run("sw_vers -productName");
// → "macOS"
graph LR
SDK[E2B SDK] --> CP[Control Plane :49982]
CP --> |POST /sandboxes<br>DELETE /sandboxes/:id| Backend[Backend<br>Docker / Shuru / Tart]
Backend --> |container/VM lifecycle| Sandbox[Sandbox]
SDK --> |connectrpc| Proxy[Envd Proxy]
Proxy --> |Process.Start<br>Filesystem.ListDir<br>/files, /health| Envd[envd<br>in sandbox]
See CONTRIBUTING.md for development setup and project structure.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub circlesac/sandbox --plugin sandboxInteract with Slack as yourself — send messages, read threads, search, and create canvases via holla CLI
Set up and use cgrok for Cloudflare-based secure tunneling to local development servers
Notion CLI reference for Claude Code — search, create, and manage Notion pages, databases, blocks, and more
Slack app lifecycle CLI — create, install, and manage Slack apps from the terminal
Query Flex HR — list employees, search by name/department, view org structure via flex CLI
Docker and containerization expert for Dockerfile optimization, multi-stage builds, docker-compose orchestration, container debugging, image size reduction, security scanning, networking, and volume management. Use when working with Docker containers, writing Dockerfiles, or troubleshooting containerization issues.
ix sandbox platform docs, packaged as a Claude Code skill.
Manage test environments with Docker Compose, Testcontainers, and environment isolation
Cloudflare Sandboxes SDK for secure code execution in Linux containers at edge. Use for untrusted code, Python/Node.js scripts, AI code interpreters, git operations.
Tensorlake SDK for agent sandboxes and sandbox-native orchestration. Use when building AI agents that need sandboxed execution environments, isolated tool calls, or durable workflow orchestration.
Bootstrap - Developer onboarding accelerator. Analyzes project requirements, detects missing dependencies, generates Docker/docker-compose configs, creates .env templates, sets up pre-commit hooks, configures IDE settings (VSCode/Cursor), and troubleshoots 'it works on my machine' issues. Gets developers productive in minutes, not hours.