Conversation
Implements the "Open In" feature as a submenu within the branch card's more menu, allowing users to open worktrees in their installed applications (editors, terminals, Finder). Backend (Rust/Tauri): - Add get_available_openers command to detect installed apps via mdfind - Add open_in_app command to launch apps using macOS 'open -b' - Support 20+ popular apps: VS Code, Cursor, Warp, iTerm, Finder, etc. - Platform-specific implementation (macOS only, empty list elsewhere) Frontend (TypeScript/Svelte): - Create branch service layer with caching for available openers - Add OpenerApp interface and service functions - Integrate clipboard manager for path copying UI (BranchCard): - Add "Open In" submenu with hover behavior matching Actions submenu - Display detected apps with human-readable names - Include "Copy Path" option within submenu - Only show menu when worktree exists and apps are available - Update click outside handler to close submenu properly Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
Run prettier to ensure consistent code formatting across the codebase. Affects markdown docs, TypeScript/JSON configs, and source files. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
Add #[cfg(target_os = "macos")] attributes to KNOWN_OPENERS constant and prettify_app_name function, and #[allow(unused_variables)] to open_in_app function to suppress false-positive warnings for code that is only used on macOS. This resolves compilation errors in CI/CD environments running on non-macOS platforms. Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
wesbillman
approved these changes
Feb 11, 2026
loganj
added a commit
that referenced
this pull request
Feb 26, 2026
## Summary - Add integration tests for all `/api/*` JSON endpoints across 3 files: - `api_projects_test.go` — projects, project info, agents, raw file, in-review - `api_threads_test.go` — thread CRUD, reviews - `api_manage_test.go` — workspaces, sources, open, delete **Stack**: Stacked on PR 1 (test helpers). ## Test plan - [x] `go test ./internal/server/ -run TestAPI -v` — all 25 tests pass - [x] Tests complete in < 1 second
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Backend (Rust/Tauri):
get_available_openerscommand to detect installed apps via mdfindopen_in_appcommand to launch apps using macOS 'open -b'Frontend (TypeScript/Svelte):
UI (BranchCard):
Test plan
🤖 Generated with Claude Code