This directory contains Conductor configuration for parallel Claude Code agent development.
Conductor is a macOS application that orchestrates multiple Claude Code agents in parallel. Each agent gets its own isolated git worktree, enabling concurrent development on different features without branch conflicts.
.conductor/
├── conductor.json # Main configuration (used for new workspaces)
├── README.md # This file
├── scripts/
│ ├── setup.sh # Runs on workspace creation
│ └── run.sh # Runs when starting work
└── <workspace>/ # Individual workspace directories (git worktrees, gitignored)
The root conductor.json defines:
-
scripts.setup: Runs when creating a new workspace- Enables corepack for pnpm
- Validates Node.js version (18+)
- Installs dependencies with
pnpm install - Builds all packages with
pnpm build
-
scripts.run: Runs when starting work in a workspace- Starts watch mode (
pnpm --filter=next dev) for fast iteration
- Starts watch mode (
-
environment: Environment variables for all workspaces- Disables telemetry for cleaner development
-
worktree: Git worktree configuration- Default branch to create worktrees from
In the Conductor app:
- Add this repository
- Create a new workspace with a descriptive name
- The setup script will automatically install dependencies and build
If setting up worktrees manually (without Conductor app):
# Create a new worktree from canary
git worktree add ../next.js-worktrees/my-feature -b my-feature-branch canary
# Navigate to the worktree
cd ../next.js-worktrees/my-feature
# Run the setup script (same script Conductor uses)
./.conductor/scripts/setup.sh
# Or manually:
# pnpm install --prefer-offline
# pnpm buildView all worktrees:
git worktree list- Each worktree uses ~500MB-1GB after build
- Run
pnpm sweepperiodically to clean Rust build artifacts - Remove unused worktrees with
git worktree remove <path>
- Never run
pnpm buildwhilepnpm devis active (causes build corruption) - Use
pnpm test-dev-turbofor fastest test iteration - Use
NEXT_SKIP_ISOLATE=1for faster test runs during development
- Limit to 3-4 concurrent agents to avoid:
- GitHub API rate limits
- Disk space exhaustion
- System resource contention
If builds become corrupted:
# Kill any running dev processes
pkill -f "pnpm dev"
# Clean and rebuild
pnpm clean
pnpm install
pnpm build# List worktrees with status
git worktree list
# Prune stale worktree references
git worktree prune
# Remove a worktree
git worktree remove <path>