parallel claude code development

Multiple Claude instances work on features simultaneously — each in its own git worktree and tmux window — coordinated and integrated by a supervisor agent.

[multiclaude] 0:supervisor* 1:auth 2:api 3:ui4 agents · my-app
┌─ supervisor ─ window 0
┌─ feature/auth ─ window 1
┌─ feature/api ─ window 2
┌─ feature/ui ─ window 3

usage

$ multiclaude new my-app # scaffold a project with a coordinated agent team

$ multiclaude add auth # add a feature lane to any existing git repo

how it works

[1/3]

spawn a lane

new or add spawns a feature lane. No config files, no yaml. One command, one lane.

[2/3]

isolate the work

Each lane = one tmux window + one git worktree + one Claude agent. Agents can't step on each other's files.

[3/3]

supervise & merge

A supervisor agent delegates tasks, watches progress, and integrates finished branches back into main.

install

curl -fsSL https://raw.githubusercontent.com/pankajgarkoti/multiclaude/main/remote-install.sh | bash

requires: git · tmux · claude CLI

Unix philosophy: no daemon, no cloud, no lock-in. Just processes and git.