Release Notes
Improved
wt listJSON output includesrepo_url: Each item now carriesrepo_url, the repository's web URL derived from the primary remote (absent when there's no parseable forge remote). It's the local checkout's repo — distinct fromci.repo_url, which is the repo a PR/MR targets. (#2941, thanks @bendrucker)
Fixed
-
Bare-repo prompts: Two UX fixes.
wt config create --projectrun in a bare repo with no linked worktrees now explains the next step (wt switch <branch>first, then create from inside the worktree) instead of failing with a generic "no worktree found". And the bare-repo worktree-path prompt no longer fires for symbolic identifiers (-,@,^,pr:/mr:), where the example paths would be misleading — it waits for the next switch to a concrete branch name. (#2951, thanks @ammachado) -
Context gauge spacing in the Claude Code statusline: The context-gauge moon emoji rendered flush against the percent (
🌕42%). Most terminals draw the emoji double-width and bleed it into the next cell, so the moon collided with the digits; it now carries a trailing space (🌕 42%). (#2944) -
Console storm on Windows: Detached background hook processes were created with
DETACHED_PROCESS, which could flash a burst of console windows. They now useCREATE_NO_WINDOWand spawn fully hidden. (#2959, thanks @nathanbabcock)
Documentation
- Codex commit-generation model bumped to
gpt-5.4-mini: The recommended[commit.generation]command for Codex — shown bywt config createand in the LLM-commits docs — now usesgpt-5.4-mini(wasgpt-5.1-codex-mini). (#2949)
Internal
- Config-deprecation layer refactor: The deprecation detector now returns a
Vec<DeprecationKind>instead of a struct of per-field flags, and the per-section config-table walks collapse into two combinators. Behavior-neutral — warning text and migration output are byte-for-byte unchanged. (#2946)
Install worktrunk 0.56.0
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/max-sixty/worktrunk/releases/download/v0.56.0/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.56.0/worktrunk-installer.ps1 | iex"; git-wt config shell installInstall prebuilt binaries via Homebrew
brew install worktrunk && wt config shell installDownload worktrunk 0.56.0
| 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