Parallel Worktrees¶
rp1 uses git worktrees to enable parallel task execution. Each task runs in its own isolated directory with a dedicated branch, so you can work on multiple features simultaneously without branch switching or stashing.
Ready to use it?
For practical usage instructions, see the Parallel Development Guide.
The Problem with Sequential Work¶
Traditional AI coding workflows are sequential:
- Start a feature on a branch
- Wait for completion
- Review and merge
- Start the next feature
This creates bottlenecks. While waiting for one task, your main working directory is occupied. You can't easily start another task without stashing changes or creating merge conflicts.
How Worktrees Solve This¶
Git worktrees create additional working directories linked to the same repository. Each worktree has its own:
- Working directory with full file tree
- Checked-out branch
- Index (staging area)
But they share the same .git history, so commits in any worktree are immediately available everywhere.
flowchart TD
Git[(Shared .git history)]
subgraph "Main Repository"
Main[Your working directory]
end
subgraph "Worktree 1"
WT1[$RP1_ROOT/work/worktrees/fix-auth]
end
subgraph "Worktree 2"
WT2[$RP1_ROOT/work/worktrees/add-dark-mode]
end
Main --> Git
WT1 --> Git
WT2 --> Git
style Main fill:#1565c0,color:#fff
style WT1 fill:#2e7d32,color:#fff
style WT2 fill:#2e7d32,color:#fff
style Git fill:#7b1fa2,color:#fff
Worktree Isolation Benefits¶
Protected Uncommitted Work¶
Your main directory's uncommitted changes are never touched. Agents work on the last committed state (HEAD), so your in-progress work remains safe.
Disabled Git Hooks¶
Worktrees have git hooks disabled (core.hooksPath=/dev/null). This prevents:
- Pre-commit hooks from blocking agent commits
- Slow linters from running on every commit
- Unexpected hook behavior in isolated environments
Clean Experimentation¶
If a task goes wrong, the worktree can be deleted without affecting anything else. The branch is preserved for debugging if needed.
Related¶
- Parallel Development Guide - Practical usage instructions
- Map-Reduce Workflows - Another parallelization pattern in rp1
/build-fast- Primary command using worktrees