feat(desktop): wire directory-backed team UI — install, sync, reveal#912
Merged
wpfleger96 merged 1 commit intoJun 8, 2026
Merged
Conversation
Connects the new backend team directory commands to the frontend: - Add sourceDir, isSymlink, symlinkTarget, version to AgentTeam type and tauriTeams.ts RawTeam mapping - Add pickTeamDirectory, installTeamFromDirectory, syncTeamDirectory API wrappers in tauriTeams.ts - TeamsSection: "Install from directory" button, symlink link icon with tooltip, version badge, "Sync from directory" and "Reveal in Finder" menu items for directory-backed teams - useTeamActions: handleInstallFromDirectory (pick + install + symlink), handleSyncTeam (sync + summary notification), handleRevealInFinder - AgentsView: pass new callbacks to TeamsSection
dda2d4b
into
wpfleger/wire-pack-management
13 of 15 checks passed
wpfleger96
added a commit
that referenced
this pull request
Jun 8, 2026
…912) Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1fgdl5qqnh3k3f2xkqrvt7cujalhm623x4s7fdjdj5yrtp5fzjl9qrjpucw <4a1bfa0013bc6d14a8d600d8bf6392efefbd2a26ac3c96c9b2a106b0d12297ca@sprout-oss.stage.blox.sqprod.co>
wpfleger96
added a commit
that referenced
this pull request
Jun 9, 2026
…912) Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1fgdl5qqnh3k3f2xkqrvt7cujalhm623x4s7fdjdj5yrtp5fzjl9qrjpucw <4a1bfa0013bc6d14a8d600d8bf6392efefbd2a26ac3c96c9b2a106b0d12297ca@sprout-oss.stage.blox.sqprod.co>
wpfleger96
added a commit
that referenced
this pull request
Jun 9, 2026
…912) Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1fgdl5qqnh3k3f2xkqrvt7cujalhm623x4s7fdjdj5yrtp5fzjl9qrjpucw <4a1bfa0013bc6d14a8d600d8bf6392efefbd2a26ac3c96c9b2a106b0d12297ca@sprout-oss.stage.blox.sqprod.co>
wpfleger96
added a commit
that referenced
this pull request
Jun 9, 2026
…912) Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1fgdl5qqnh3k3f2xkqrvt7cujalhm623x4s7fdjdj5yrtp5fzjl9qrjpucw <4a1bfa0013bc6d14a8d600d8bf6392efefbd2a26ac3c96c9b2a106b0d12297ca@sprout-oss.stage.blox.sqprod.co>
wpfleger96
added a commit
that referenced
this pull request
Jun 9, 2026
…912) Co-authored-by: npub1mn7jgtj4w2pd0g0zeuhxsa6jy6p0rewxz4kujt98my82ahfmp72sxjexk7 <dcfd242e557282d7a1e2cf2e6877522682f1e5c6156dc92ca7d90eaedd3b0f95@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1fgdl5qqnh3k3f2xkqrvt7cujalhm623x4s7fdjdj5yrtp5fzjl9qrjpucw <4a1bfa0013bc6d14a8d600d8bf6392efefbd2a26ac3c96c9b2a106b0d12297ca@sprout-oss.stage.blox.sqprod.co>
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.
Adds the frontend UI for directory-backed team management, building on the backend plumbing from PR #852.
Changes
tauriTeams.ts— New Tauri command bindings:installTeamFromDirectory(path)— install a team from a local directorysyncTeamDirectory(teamId)— re-sync a directory-backed team with its sourcepickTeamDirectory()— open native directory pickertypes.ts— ExtendedAgentTeamwith directory-backed fields:sourceDir,isSymlink,symlinkTarget,versionTeamsSection.tsx— Enhanced team cards for directory-backed teams:isSymlinkis trueversionis set@tauri-apps/plugin-opener)useTeamActions.ts— New hook composing install/sync mutations with the directory picker flow.AgentsView.tsx— Wires the install-from-directory action into the teams section.Stack: #852 → this PR