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

OpenClaw Context Meter Plugin Shows Telegram Token Usage Percentage
A new OpenClaw plugin displays token usage percentage after every Telegram bot response, showing values like '45k / 200k (22%)' and detecting compaction events. The plugin avoids OOM issues by hardcoding context windows instead of using execSync.

Log Reducer MCP Server Cuts Token Usage When Claude Code Reads Logs
Log Reducer is an MCP server that processes log files server-side before sending reduced output to Claude Code, avoiding raw logs in the context window. It applies 19 deterministic transforms that compress logs by 50-90%, with a 2000-line log representing 20,000+ tokens removed from sessions.

OpenClaw Claude Extension Updated to Use Agent SDK After Anthropic Billing Changes
An OpenClaw extension developer rewrote their Claude CLI integration to use the official claude-agent-sdk after Anthropic started detecting and reclassifying CLI usage as third-party app usage, which bills against a separate credit pool instead of Max plan limits. The SDK approach authenticates through existing Claude Code login and bills as regular Max plan usage.

OpenClaw Guild: Multi-user AI agent server for teams
OpenClaw Guild extends single-user OpenClaw into a multi-user AI server with role-based access control, isolated data per agent, and a 4-tier memory system. It includes a web admin dashboard and Docker-compose deployment for 15-minute setup.