feat: Navbar Open-in-App Button#442
Merged
Merged
Conversation
sahil-noon
marked this pull request as ready for review
July 22, 2026 12:13
Adds a navbar Open button to jump from a pane/worktree to that folder in an editor: server-side exec via wt open when local, client-side ssh-remote deeplinks (VS Code/Cursor/Windsurf) when remote.
sahil87
force-pushed
the
260722-6d0f-navbar-open-in-app
branch
from
July 22, 2026 13:57
c73153e to
8e455d7
Compare
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.
Meta
6d0fexcludes
fab/,docs/· generated by fab-kit v2.16.5Pipeline: intake ✓ → apply ✓ → review ✓ → hydrate ✓ → ship → review-pr
Summary
run-kit surfaces sessions, panes, and worktrees, but jumping from a pane to that folder in an editor today means leaving the dashboard, finding a terminal, and running
wt openby hand — worse when the browser is remote, where there is no path at all from "looking at a pane" to "that folder open in my local editor." This adds a navbar Open button: server-side exec viawt openwhen local, client-sidessh-remotedeeplinks (VS Code/Cursor/Windsurf) when remote.Changes
GET /api/open-apps— new read endpoint wrappingwt open --list --jsonfor the host-detected app registry; fail-silent (wtabsent/old/erroring →200 []).POST /api/open— new mutating endpoint (POST per constitution IX) launching an app on the host viawt open <path> -a <app>; validatespathagainst a derived pane cwd/worktree path andappagainst the current registry before exec.RK_SSH_HOST— new optional env var (the SSH host alias remote clients use to reach this host); unset hides the deeplink section entirely.