<!-- markdownlint-disable MD033 -->
<h1><img src="docs/static/logo.png" alt="Worktrunk logo" width="50" align="absmiddle"> Worktrunk</h1>
[](https://worktrunk.dev)
[](https://crates.io/crates/worktrunk)
[](https://opensource.org/licenses/MIT)
[](https://github.com/max-sixty/worktrunk/actions?query=branch%3Amain+workflow%3Aci)
[](https://codecov.io/gh/max-sixty/worktrunk)
<!-- Dev badges (uncomment when repo is public and has traction) -->
<!-- [](https://crates.io/crates/worktrunk) -->
<!-- [](https://github.com/max-sixty/worktrunk/stargazers) -->
> **December 2025**: I've been using Worktrunk as my daily driver, and am releasing it as Open Source this week; I think folks will find it really helpful. It's built with love (there's no slop!). If social proof is helpful: I also created [PRQL](https://github.com/PRQL/prql) (10k stars) and am a maintainer of [Xarray](https://github.com/pydata/xarray) (4k stars), [Insta](https://github.com/mitsuhiko/insta), & [Numbagg](https://github.com/numbagg/numbagg).
Worktrunk is a CLI for git worktree management, designed for parallel AI agent workflows. Git worktrees give each agent an isolated branch and directory; Worktrunk wraps them in a clean interface and extension points. Scaling agents becomes as simple as scaling git branches.
Here's a quick demo:

> ## ๐ Full documentation at [worktrunk.dev](https://worktrunk.dev) ๐
<!-- โ ๏ธ AUTO-GENERATED from docs/content/worktrunk.md#context-git-worktrees..worktrunk-makes-git-worktrees-easy โ edit source to update -->
## Context: git worktrees
AI agents like Claude Code and Codex can handle longer tasks without supervision,
and running several in parallel is practical. Git worktrees give each agent its
own working directory โ no stepping on each other's changes.
But the git worktree UX is clunky. Even starting a new worktree means typing the
branch name three times: `git worktree add -b feature ../repo.feature`, then
`cd ../repo.feature`.
## Worktrunk makes git worktrees easy
Start with the core commands; add workflow automation as needed.
**Core commands:**
<table class="cmd-compare">
<thead>
<tr>
<th>Task</th>
<th>Worktrunk</th>
<th>Plain git</th>
</tr>
</thead>
<tbody>
<tr>
<td>Switch worktrees</td>
<td><code>wt switch feature</code></td>
<td><pre>cd ../repo.feature</pre></td>
</tr>
<tr>
<td>Create + start Claude</td>
<td><code>wt switch -c -x claude feature</code></td>
<td><pre>git worktree add -b feature ../repo.feature && \
cd ../repo.feature && \
claude</pre></td>
</tr>
<tr>
<td>Clean up</td>
<td><code>wt remove</code></td>
<td><pre>cd ../repo && \
git worktree remove ../repo.feature && \
git branch -d feature</pre></td>
</tr>
<tr>
<td>List with status</td>
<td><code>wt list</code></td>
<td><pre>git worktree list</pre> (paths only)</td>
</tr>
</tbody>
</table>
**Workflow automation:**
- **[Lifecycle hooks](https://worktrunk.dev/hook/)** โ run commands on create, pre-merge, post-merge
- **[LLM commit messages](https://worktrunk.dev/llm-commits/)** โ generate commit messages from diffs via [llm](https://llm.datasette.io/)
- **[Merge workflow](https://worktrunk.dev/merge/)** โ squash, rebase, merge, clean up in one command
- ...and [lots more](#next-steps)
<!-- END AUTO-GENERATED -->
<!-- โ ๏ธ AUTO-GENERATED from docs/content/worktrunk.md#install..further-reading โ edit source to update -->
## Install
**Homebrew (macOS & Linux):**
```bash
$ brew install max-sixty/worktrunk/wt
$ wt config shell install # allows commands to change directories
```
**Cargo:**
```bash
$ cargo install worktrunk
$ wt config shell install
```
## Next steps
- Learn the core commands: [wt switch](https://worktrunk.dev/switch/), [wt list](https://worktrunk.dev/list/), [wt merge](https://worktrunk.dev/merge/), [wt remove](https://worktrunk.dev/remove/)
- Set up [project hooks](https://worktrunk.dev/hook/) for automated setup
- Explore [LLM commit messages](https://worktrunk.dev/llm-commits/), [fzf-like picker](https://worktrunk.dev/select/), [Claude Code integration](https://worktrunk.dev/claude-code/), [CI status & PR links](https://worktrunk.dev/list/#ci-status)
- Run `wt --help` or `wt <command> --help` for quick CLI reference
## Further reading
- [Claude Code: Best practices for agentic coding](https://www.anthropic.com/engineering/claude-code-best-practices) โ Anthropic's official guide, including the worktree pattern
- [Shipping faster with Claude Code and Git Worktrees](https://incident.io/blog/shipping-faster-with-claude-code-and-git-worktrees) โ incident.io's workflow for parallel agents
- [Git worktree pattern discussion](https://github.com/anthropics/claude-code/issues/1052) โ Community discussion in the Claude Code repo
- [git-worktree documentation](https://git-scm.com/docs/git-worktree) โ Official git reference
<!-- END AUTO-GENERATED -->
## Contributing
- โญ [Star the repo](https://github.com/max-sixty/worktrunk/stargazers)
- [Open an issue](https://github.com/max-sixty/worktrunk/issues/new?title=&body=%23%23%20Description%0A%0A%3C!--%20Describe%20the%20bug%20or%20feature%20request%20--%3E%0A%0A%23%23%20Context%0A%0A%3C!--%20Any%20relevant%20context%3A%20your%20workflow%2C%20what%20you%20were%20trying%20to%20do%2C%20etc.%20--%3E) โ feedback, feature requests, or [a worktree friction we don't yet solve](https://github.com/max-sixty/worktrunk/issues/new?title=Worktree%20friction%3A%20&body=%23%23%20The%20friction%0A%0A%3C!--%20What%20worktree-related%20task%20is%20still%20painful%3F%20--%3E%0A%0A%23%23%20Current%20workaround%0A%0A%3C!--%20How%20do%20you%20handle%20this%20today%3F%20--%3E%0A%0A%23%23%20Ideal%20solution%0A%0A%3C!--%20What%20would%20make%20this%20easier%3F%20--%3E)
- Share: [X](https://twitter.com/intent/tweet?text=Worktrunk%20%E2%80%94%20CLI%20for%20git%20worktree%20management&url=https%3A%2F%2Fworktrunk.dev) ยท [Reddit](https://www.reddit.com/submit?url=https%3A%2F%2Fworktrunk.dev&title=Worktrunk%20%E2%80%94%20CLI%20for%20git%20worktree%20management) ยท [LinkedIn](https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fworktrunk.dev)
> ## ๐ Full documentation at [worktrunk.dev](https://worktrunk.dev) ๐