← Platform overview
B — WORKTREE ISOLATION
One repo. Many agents. Zero collisions.
Git worktrees give every agent its own branch to work in. Nexus orchestrates them so nothing steps on anything else.
Isolate your agents →
nexus-prime start --worktree ∞
parallel agent sessions
0
file conflicts between sessions
1
command to spin up a worktree
30s
average worktree setup time
When you run three agents in parallel on the same repo, something breaks. File conflicts. Dirty working trees. Race conditions on shared state. The standard advice is "run one agent at a time" — which defeats the point.
Nexus Prime wraps Git worktrees so each agent session gets a clean, isolated branch automatically. Agents work in parallel. Nexus tracks which worktree belongs to which session. You merge when you're ready — not because an agent forced the issue.
Automatic worktree creation
nexus-prime start spins up a git worktree for the session. You never touch git worktree add manually.
Session-scoped isolation
Each agent session writes to its own worktree. Merging is explicit — never automatic.
Audit trail
Every worktree action is logged: created, modified files, merged, deleted. Full audit trail in the dashboard.
Works with any Git repo
Mono repos, multi-package repos, bare repos. If Git can worktree it, Nexus can isolate it.