v0.3.5
What's New
Customizable Launch Command
You can now configure which tool to launch when pressing Enter on a worktree. Instead of always using opencode, you can use any CLI tool like:
cursorclaudecode(VS Code)zed- Or any other CLI tool
Configure via the config editor (press c) or in .opencode-worktree.json:
{
"launchCommand": "cursor"
}Improved Update Notifications
- Update check now works correctly across different node/nvm versions
- Background fetch from npm registry (non-blocking startup)
Bug Fixes
- Fix confirmation dialogs using wrong color theme (reverted to original blue)
- Fix main worktree showing in delete selection mode
Full Configuration Example
{
"postCreateHook": "npm install",
"openCommand": "code",
"launchCommand": "cursor"
}