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

Introducing Swarmhook: Free and Open Source Webhooks for Your Bot
Swarmhook.com offers free and open source webhooks to effectively manage events for your bots, streamlining automation and response capabilities.

TradingAgents-GUI: Local Web Interface for Multi-Agent Stock Analysis, Now with Ollama Support
A forked GUI for the TradingAgents multi-agent LLM stock analysis framework. Runs locally with Ollama, OpenAI, Anthropic, and more. Features live pipeline visualization, report reader, and token-saving concise mode.

8 Advanced Claude Code Tips: Cost Saving, Context Management, Custom Commands
Practical tips from heavy daily use of Claude Code, covering git workflow automation, multimodal image input, API usage tracking, context compaction, session resumption, rule management, thinking triggers, and custom commands.

Squeez tool compresses bash output 90%+ to extend Claude Code context window
Squeez is a hook that automatically compresses raw bash output like ps aux, docker logs, and git log before it reaches Claude Code. It reduces token usage by 92.8% on average across 19 common commands, helping sessions last longer.