Skip to content

v0.3.5

Choose a tag to compare

@arturosdg arturosdg released this 03 Feb 12:32
· 9 commits to main since this release

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:

  • cursor
  • claude
  • code (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"
}