Website · Documentation · GitHub
BranchBox is an open-source engine for isolated, fully provisioned development environments designed for engineers working with AI coding agents, or anyone juggling multiple features at once.
Every feature becomes its own self-contained workspace with:
- A dedicated Git worktree
- Its own devcontainer
- Its own Docker network
- Its own database
- Its own ports
- Its own environment variables
- Optional Cloudflare or SSH tunnels
- Shared tool credentials mounted safely
You get real dev environments, not lightweight sandboxes.
Your agents get safe rooms to operate.
Your main workspace stays clean.
If you’ve ever run multiple features or agents in parallel and felt things colliding, leaking, or breaking — BranchBox solves that. It makes parallel development a first-class workflow.
Modern engineering is shifting toward agentic, parallel development:
- Humans work on one feature
- AI agents explore another
- LLMs run migrations, refactors, codegen, and experiments
- Several ideas progress at once
The problem: none of our tools were built for this.
- Git branches collide
- Docker networks & ports collide
- Devcontainers drift
- Databases clash
- Shared credentials leak across contexts
- And it’s too easy for one environment to break another
BranchBox adds the missing layer:
A safe, predictable compute system where every feature has its own fully isolated, fully functional dev environment.
Start one feature or ten.
Work alone or with multiple agents.
Nothing touches anything else unless you want it to.
Every feature gets its own:
- Compose project
- Docker network
- Ports
.envfile- Database
- Devcontainer
Zero collisions. Zero shared state unless explicitly mounted.
Not an agent-only sandbox — a full stack environment:
- Rails, Node, Python, or generic
- Containers, Docker Compose, databases
- Shared credentials mounts
- VS Code + Cursor devcontainers
- Built-in adapter system for detecting stacks
If it runs locally, BranchBox can isolate it cleanly.
Start five features at once.
Run five containers.
Open five devcontainers.
Agents run jobs while you code in another branch.
The mental overhead stays low, and the environments stay clean.
An always-on BranchBox Agent tracks:
- Feature events
- Heartbeats
- Stack metadata
- Control-plane connectivity
- macOS app integration over gRPC
Agents can safely:
- Start new worktrees
- Run minimal-mode spikes
- Apply prompt seeds
- Tear environments down
- Reuse shared credentials
Everything stays observable and isolated.
BranchBox exists because of daily engineering pain:
- Running multiple projects in parallel
- Hitting laptop limits
- Letting agents work independently
- Needing guaranteed isolation
- Avoiding devcontainer drift
- Avoiding "I broke main" moments
It’s built to support how modern development actually works — especially when humans and LLM agents collaborate.
BranchBox is available via Homebrew (recommended) or direct installation.
brew install branchbox/tap/branchboxcurl -fsSL https://raw.githubusercontent.com/branchbox/branchbox/main/install.sh | bashThen open a new terminal or run:
hash -r# Initialize once (creates registry, checks environment)
branchbox init
# Start a fully isolated feature workspace
branchbox feature start "Add OAuth Integration"
# Work inside the new isolated environment
cd ../oauth-integration/Your feature now has:
- Its own DB
- Its own Docker network
- Its own ports
- Its own devcontainer
- Its own environment variables
Prefer a disposable sample project?
./scripts/setup-sample-workspaces.sh
branchbox init
branchbox feature start "Demo Feature"BranchBox features work seamlessly with VS Code/Cursor devcontainers, giving each feature its own isolated Docker environment while sharing tool credentials.
BranchBox provides official pre-built devcontainer images for all supported stacks, published to GitHub Container Registry:
| Stack | Image |
|---|---|
| Rust | ghcr.io/branchbox/branchbox/devcontainer-rust:latest |
| Rails | ghcr.io/branchbox/branchbox/devcontainer-rails:latest |
| Node.js | ghcr.io/branchbox/branchbox/devcontainer-nodejs:latest |
| Generic | ghcr.io/branchbox/branchbox/devcontainer-generic:latest |
When you run branchbox init, the generated compose.yaml references these pre-built images by default. Containers start in seconds instead of minutes—no local build required.
How it works:
- First run: Docker pulls the pre-built image from GHCR
- Subsequent runs: Uses cached image instantly
- Fallback: If pull fails, automatically builds from local Dockerfile
Override options (in .env or environment):
# Use a custom image
DEVCONTAINER_IMAGE=my-registry.io/my-image:tag
# Control pull behavior
DEVCONTAINER_PULL_POLICY=missing # (default) Pull if not cached
DEVCONTAINER_PULL_POLICY=always # Always pull latest
DEVCONTAINER_PULL_POLICY=build # Always build locallyWhen you start a new feature, BranchBox automatically copies the .devcontainer/ configuration from your main repository:
# In main repo
branchbox feature start "Add OAuth"
# Navigate to new worktree
cd ../myapp-oauth/
# Open in VS Code/Cursor
code .VS Code/Cursor will prompt: "Reopen in Container?"
Click "Reopen in Container" and your feature will run in an isolated Docker environment with:
- ✅ Separate Docker network (no port conflicts)
- ✅ Isolated database (for Rails/Node.js projects)
- ✅ Same development environment as main repo
- ✅ Shared tool credentials (see below)
All feature worktrees share authentication for common development tools, so you only need to log in once:
Supported tools:
- GitHub CLI (
gh) - Credentials stored in~/.config/gh/ - Claude Code (
claude) - Session stored in~/.claude/ - Codex (
codex) - Config stored in~/.codex/ - Cloudflared (
cloudflared) - Credentials in~/.cloudflared/
How it works:
-
First time - Authenticate in your main worktree:
cd ~/projects/myapp # main worktree code . # Reopen in Container gh auth login # Authenticate once claude login # Authenticate once
-
All features inherit - Open any feature worktree:
branchbox feature start "new feature" cd ../myapp-new-feature code . # Reopen in Container gh repo view # Already authenticated! claude chat # Already authenticated!
-
Credentials persist - Stored in parent directory (
~/projects/), mounted read-write to all containers viaSHARED_CONFIG_DIRenvironment variable.
Directory structure:
~/projects/
├── .gh/ # Shared GitHub CLI credentials
├── .claude/ # Shared Claude session
├── .codex/ # Shared Codex config
├── .cloudflared/ # Shared Cloudflare tunnel credentials
├── myapp/ # Main worktree (mounts shared dirs)
├── myapp-feature1/ # Feature 1 (mounts same dirs)
└── myapp-feature2/ # Feature 2 (mounts same dirs)
Problem: "Reopen in Container" option not available
Solution: Check that .devcontainer/ exists in feature worktree:
ls .devcontainer/
# Should show: devcontainer.json compose.yaml DockerfileIf missing, sync from main:
branchbox devcontainer syncProblem: Container takes too long to start
Solution: Pre-built images should start in seconds. If building locally:
# Check if using pre-built image
grep "ghcr.io/branchbox" .devcontainer/compose.yaml
# Force pull latest pre-built image
DEVCONTAINER_PULL_POLICY=always code .Problem: Tools require re-authentication in each container
Solution: Verify shared config mounts are active:
# Inside container
mount | grep -E '(gh|claude|codex)'Check SHARED_CONFIG_DIR in .env:
grep SHARED_CONFIG_DIR .envProblem: Container fails to start
Solution: Rebuild without cache:
# In VS Code: Cmd/Ctrl+Shift+P
# → "Dev Containers: Rebuild Container Without Cache"Problem: Need to force local Dockerfile builds (skip pre-built image)
Solution: Use one of these approaches:
# Option 1: Set environment variable
DEVCONTAINER_PULL_POLICY=build code .
# Option 2: Use compose override file (for BranchBox development)
COMPOSE_FILE=compose.yaml:compose.local-build.yaml docker compose up
# Option 3: Add to your .env file for persistent local builds
echo "DEVCONTAINER_PULL_POLICY=build" >> .envProjects initialized before the pre-built images feature need manual updates to benefit from faster startup times.
Quick upgrade - update your .devcontainer/compose.yaml:
services:
your-service:
# Add these lines to use pre-built image with fallback
image: ${DEVCONTAINER_IMAGE:-ghcr.io/branchbox/branchbox/devcontainer-<stack>:latest}
pull_policy: ${DEVCONTAINER_PULL_POLICY:-missing}
# Keep your existing build: section as fallback
build:
context: ..
dockerfile: .devcontainer/DockerfileReplace <stack> with: rust, rails, nodejs, or generic.
Rails/Node.js users: The new templates use mise for runtime version management. If you want to adopt the new approach, re-run branchbox init to regenerate your .devcontainer/ files. The templates use:
FROM mcr.microsoft.com/devcontainers/base:debian
# mise reads .ruby-version, .nvmrc, .node-version, .tool-versionsAfter updating, your next docker compose up or "Reopen in Container" will pull the pre-built image instead of building locally.