sandboxd: Open-Source Tool to Run Multiple Claude Code Agents in Isolated Containers

A Reddit user found that running Claude Code across multiple projects quickly became chaotic — port collisions, overlapping hot reloads, and juggling git worktrees. They built sandboxd, an open-source (MIT, self-hosted) tool that wraps each project in its own isolated container.
Key Details
- One project = one container with its own workspace, Claude Code session, and preview URL. No port 3000 collisions.
- Parallel agents run without interfering because each container is fully isolated.
- Docker containers (not VMs) with dropped capabilities, read-only root filesystem, and resource limits. Optional gVisor support for stronger isolation.
- Preview URLs via Traefik:
project-id.preview.yourhostroutes to the correct container, so you never need to remember ports. - Auto-sleep: idle containers stop automatically and wake on next request. The workspace lives on the host so state persists across sleeps.
- API key security: your key never goes into the container. A local proxy injects the key into requests, keeping credentials out of autonomous agents' reach.
- Stack: Go, SQLite, Docker, Traefik — no Kubernetes or external database.
- One-line install:
curl -fsSL https://sandboxd.io/install | bash
Who It's For
Developers running Claude Code (or other AI coding agents) across multiple projects who need workspace isolation, port management, and resource efficiency.
📖 Read the full source: r/ClaudeAI
👀 See Also

Google Workspace CLI includes OpenClaw setup guide in documentation
Google's new gws (Google Workspace CLI) documentation explicitly mentions OpenClaw setup by name in a dedicated section for AI agent skills. This follows recent discussions about Google reviewing account suspensions for AI agents.

Flotilla v0.5.0 Overhauls Background Execution to Beat Claude SDK Credit Caps
Flotilla v0.5.0 replaces sequential agent execution with non-blocking parallel loops, 30-minute per-agent timeouts, and local delegation to cut SDK credit usage.

Open Source Book Genesis: 20 Claude Code Skills for Autonomous Book Writing
Book Genesis is an open-source system of 20 specialized Claude Code skills that takes a book idea and produces a complete, publish-ready manuscript through a 14-phase autonomous pipeline. It includes a 'Chaos Engine' to break AI predictability patterns and has generated a 68,000-word memoir scoring 9.0/10 on its Genesis Score.

Persistent Memory for Claude: Local Stack with MCP, 39ms Retrieval, 82% Token Reduction
A developer built a persistent memory layer for Claude using local vector search (Qdrant + Qwen3) and MCP integration, achieving 82% token reduction, 39ms hot-path retrieval, and session crystallization via L4 nodes.