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

ClawControl v1.3.1 adds media support, voice dictation, and Linux packaging
ClawControl v1.3.1 is a cross-platform OpenClaw client that now supports image sharing, wake-word voice dictation, usage charts, and Linux AppImage/.deb packages. The release includes security updates requiring OpenClaw 2.19+ users to update Control UI Allowed Origins.

Claude Skills to Emulate a Design Studio Environment
A designer shares two Claude skills: one simulates a studio with teammates and design methods, the other adds 'rigorous play' for creativity.

Pepper MCP Server for iOS Simulator Interaction and Debugging
Pepper is an MCP server that injects a dylib into iOS simulator apps via DYLD_INSERT_LIBRARIES, enabling real-time interaction, screen reading, button tapping, variable inspection, and network traffic monitoring through a WebSocket bridge.

Leanstral: Open-Source Code Agent for Lean 4 and Formal Proof Engineering
Mistral AI released Leanstral, the first open-source code agent designed for Lean 4, with 6B active parameters and Apache 2.0 licensing. Benchmarks show it outperforms larger open-source models and offers competitive performance to Claude at significantly lower cost.