feat(inspector): replace Agents tab with Workspaces panel - #56
Merged
Conversation
The middle inspector tab now hosts the workspace manager (save/load/ delete named terminal layouts) instead of the Agent Teams orchestration view. New WorkspacesPanel is a vertical, panel-sized take on the WorkspaceModal using the same IPC commands; OrchestrationPanel is removed. Store state renamed orchestrationOpen/toggleOrchestration -> workspacesOpen/toggleWorkspaces, F4 and the keymap entry follow.
Contributor
|
ECC bundle files are already tracked in this repository. Skipping generation of another bundle PR. |
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.
Replaces the Inspector's middle "Agents" tab (Agent Teams orchestration view) with the workspace manager.
Changes
WorkspacesPanel: vertical, inspector-sized take on the oldWorkspaceModal- save the current terminal layout as a named workspace, load or delete saved ones. Same IPC commands (get_workspaces/save_workspace/load_workspace/delete_workspace), toasts, and error reporting.Inspectormiddle tab:agents->workspaces(folder icon).orchestrationOpen/toggleOrchestration->workspacesOpen/toggleWorkspaces(incl. persist allow-list and mutual-exclusion resets); consumers updated (App,TitleBar, F4 shortcut, keymap label "Agent Teams" -> "Workspaces").OrchestrationPanel.Verification
npx tsc --noEmitclean.npx vitest run- all suites pass except the pre-existing local-envlocalStoragefailures (appStore/previewStore), which fail identically on a clean tree under Node 25.npm run tauri dev: tab renders, save/load/delete round-trips work.