Release Notes
Improved
-
OpenCode integration: Activity tracking plugin shows agent status (
🤖working,💬waiting) inwt list, withwt config plugins opencode install/uninstallfor management. Also adds OpenCode as an LLM commit generation backend. (#1807, thanks @noirbizarre) -
Lower priority for copy-ignored:
wt step copy-ignorednow runs at the lowest OS scheduling priority (renice -n 19), yielding CPU to interactive foreground tasks on large trees. (#1916) -
Diff stats performance: Switched from
--numstat(one line per file) to--shortstat(single summary line), reducing diff output from O(files) to O(1) per worktree. (#1917)
Fixed
-
Remote detection with
includeIfconfig:primary_remote()failed when non-remote git config keys (likeincludeIf.hasconfig:remote.*.url) matched the remote regex. (#1908, thanks @nirvdrum) -
Background hook execution: Fixed three issues — list-form configs lost serial/concurrent semantics in post-merge/post-remove hooks, pipeline
hook_namecontext leaked across steps, and lazy template expansion was broken for name-filtered hooks (e.g.,wt hook post-start db). (#1910) -
Copy-ignored parallelism: The outer loop in
wt step copy-ignoredran on the global rayon pool instead of the dedicated copy pool, effectively serializing top-level entries. Now runs entirely on the 4-thread copy pool. (#1913) -
Windows stack overflow in copy-ignored: Copy pool worker threads used platform default stack size (~2 MiB on Windows), causing overflow with 200+ directories. Now uses explicit 8 MiB stack size across all platforms. (#1911)
-
Nix flake build: Fixed
flake.nixfiltering out thedev/directory, which broke builds after OpenCode integration addedinclude_str!("../../../dev/opencode-plugin.ts"). (#1924, thanks @mariuskimmina)
Internal
- Unified background hook execution into a single pipeline-based path, removing ~260 lines of dual-path branching. (#1912)
- Replaced deprecated
codecov/test-results-actionwithcodecov/codecov-action. (#1918) - Bumped AUR deploy action to v4.1.2 (fixes argument order with Arch Linux's updated
runuser). (#1909)
Install worktrunk 0.34.2
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/max-sixty/worktrunk/releases/download/v0.34.2/worktrunk-installer.sh | sh && wt config shell installInstall prebuilt binaries via powershell script
powershell -ExecutionPolicy Bypass -c "irm https://github.com/max-sixty/worktrunk/releases/download/v0.34.2/worktrunk-installer.ps1 | iex"; git-wt config shell installInstall prebuilt binaries via Homebrew
brew install worktrunk && wt config shell installDownload worktrunk 0.34.2
| File | Platform | Checksum |
|---|---|---|
| worktrunk-aarch64-apple-darwin.tar.xz | Apple Silicon macOS | checksum |
| worktrunk-x86_64-apple-darwin.tar.xz | Intel macOS | checksum |
| worktrunk-x86_64-pc-windows-msvc.zip | x64 Windows | checksum |
| worktrunk-aarch64-unknown-linux-musl.tar.xz | ARM64 MUSL Linux | checksum |
| worktrunk-x86_64-unknown-linux-musl.tar.xz | x64 MUSL Linux | checksum |
Install via Cargo
cargo install worktrunk && wt config shell installInstall via Winget (Windows)
winget install max-sixty.worktrunk && git-wt config shell installInstall via AUR (Arch Linux)
paru worktrunk-bin && wt config shell install