Three surfaces, one primitive:
- CLI —
praisonai run --worktree(Isolated Runs) for one-off human-driven runs. - Kanban tasks —
workspace_kind="worktree"(Per-Task Worktree Isolation) for dispatched workers. - Library API —
GitWorktreeAdapter(this page) for programmatic isolation.
This page covers the general-purpose
GitWorktreeAdapter in praisonaiagents.workspace (used programmatically) and the praisonai run --worktree CLI wrapper that provisions one per run. Kanban tasks have their own built-in worktree isolation — set workspace_kind="worktree" on the task instead. See Kanban → Per-Task Worktree Isolation.Using it from the CLI
You don’t need to touch the adapter API — thepraisonai run command has a built-in --worktree flag that wires the adapter into your normal run.
Isolated Runs (CLI)
praisonai run --worktree / --keep — per-run isolation from the terminal.From the CLI
Run any agent on a fresh, disposable branch — no code required.praisonai/<task>-<hash> worktree; on teardown its changes are auto-committed to that branch for review, or the worktree is kept in place with --keep. See praisonai run --worktree for the full behaviour.
Quick Start
1
Isolate a run from the CLI
Add Keep the worktree in place for in-place review with No-op outside a git repo, so it’s always safe to pass. See
--worktree to any run invocation — the agent works on a fresh branch instead of your working tree.--keep:praisonai run --worktree.2
Concurrent Agents With Isolation (Python)
Give each agent its own git worktree — edits stay independent.
3
Default, Reset, or Remove
Opt out of isolation with
NoIsolationAdapter, or reset and tear down worktrees when a run ends.4
Reset or Remove
Restore a worktree to a clean state, or tear it down when the run ends.
How It Works
GitWorktreeAdapter runs real git worktree commands to provision a fresh branch and directory per run.
When the directory is not a git repository, every method degrades gracefully —
create and path return the original directory, and reset and remove do nothing.
CLI Usage
praisonai run --worktree wraps the adapter so a single command runs the agent on a fresh branch — no Python glue required.
git status --porcelain, so brand-new (untracked) files are never lost.
--worktree works with a direct prompt or a YAML file. It cannot be combined with --attach, --agent, --command, --profile, or --profile-deep, and --keep requires --worktree. See the run CLI reference for the full options table and compatibility matrix.Choosing an Adapter
Both adapters share the same interface, so you can swap them without changing your code.GitWorktreeAdapter is always safe — if the directory is not a git repo it falls back to NoIsolationAdapter behaviour automatically.
Configuration Options
GitWorktreeAdapter accepts three options.
available attribute is True only when root is inside a git repository and git is on the PATH.
NoIsolationAdapter accepts a single root option (str | Path | None, default Path.cwd()) that it returns from create and path.
Common Patterns
Give parallel sub-agents their own worktrees.create is idempotent.
CLI usage
The same isolation primitive is available directly on the CLI — pass--worktree to praisonai run and every invocation gets its own branch. Pass --keep to retain the worktree checkout after the run for review. See Per-run worktree isolation for the full flag reference and behaviour matrix.
Best Practices
Reach for --worktree before the Python API
Reach for --worktree before the Python API
For a one-off isolated agent run there is nothing to install and no Python glue — just append
--worktree. The programmatic GitWorktreeAdapter is only needed when you’re orchestrating multiple agents from your own code.Use --keep when you want to inspect in place
Use --keep when you want to inspect in place
Without
--keep, the worktree checkout is pruned after each run (the branch is preserved). With --keep, both the checkout and the branch stay so you can cd into the isolated directory and inspect changes in place.Merge or squash the auto-commit
Merge or squash the auto-commit
The isolated run auto-commits everything (tracked + untracked) with the message
praisonai run: <target>, so merge or cherry-pick with a plain git merge praisonai/<name>-<uid>. To collapse into a single commit, use git merge --squash.Use GitWorktreeAdapter unconditionally
Use GitWorktreeAdapter unconditionally
It degrades gracefully outside git repos, so you can always reach for it. No need to detect git yourself —
available reports the state and non-git directories simply fall back to shared behaviour.Name worktrees by agent or run, not by task
Name worktrees by agent or run, not by task
Names are hashed into collision-resistant slugs, so
"agent one" and "agent-one" never share a worktree. Stable names keep create idempotent across retries.Clean up with remove() when the run ends
Clean up with remove() when the run ends
Each worktree lives under
.praisonai/worktrees/. Call remove() on completion to stop that directory from growing over long-running sessions.Requires git ≥ 2.5
Requires git ≥ 2.5
git worktree was introduced in git 2.5. On older git or non-git directories, isolation is unavailable and the adapter falls back to the shared directory.Also available on the CLI
Run a singlepraisonai run invocation on a fresh worktree/branch with the --worktree flag — no Python needed. It commits the run’s output to the branch on exit (or keep it in place with --keep).
Related
Run CLI
praisonai run --worktree / --keep — the CLI wrapper and its full options table.Multi-Agent Context Safety
Isolate per-agent runtime and resolver state — the context half of concurrency.
Code & Workspace Access
Contain file operations to a workspace with read/write access controls.
Kanban Worktree Isolation
Per-task git worktrees for kanban workers — set
workspace_kind="worktree".praisonai run --worktree
Run any agent on an isolated branch from the CLI — no code required.
Run --worktree
The
praisonai run --worktree one-liner that wraps this adapter from the CLI.
