feat(canvas): split-panel conversation canvas with cross-chat sibling awareness#69
Open
Legacynnn wants to merge 1 commit into
Open
feat(canvas): split-panel conversation canvas with cross-chat sibling awareness#69Legacynnn wants to merge 1 commit into
Legacynnn wants to merge 1 commit into
Conversation
… awareness Split the workspace center column into a recursive pane tree: drag a conversation onto another's edge to split into side-by-side or stacked panes (up to 4), resize, rearrange, and close panes. Layout persists per workspace and survives navigating away and back; ⌘W closes the focused pane. Agents sent from a split now receive a 'sibling panes' addendum in the Helmor system prompt listing the other open sessions plus the helmor CLI commands to inspect, read, or hand them work. Single-pane sends are byte-for-byte unchanged.
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
Splits the workspace center column into a recursive split-canvas of conversation panes, and makes agents aware of the other panes they share a canvas with.
row) or stacked (col) panes, up to 4. Resize the splits, rearrange panes by drag, and close them. The pane tree is a pure, fully unit-tested model (src/shell/canvas/tree-model.ts);useCanvasStatelayers persistence + reducers on top.localStorageand survives navigating to other (non-split) sessions and back. It only dissolves when closed down to a single pane. Single sessions still render through the normal conversation path.canvas-pane-closeable-changed/close-focused-canvas-pane) and global shortcut handlers.helmorCLI commands to inspect, read, or hand them work (session list,session get-messages,send). Thesendcommand's blocking contract is made explicit so the agent doesn't poll. Single-pane sends are byte-for-byte unchanged (empty siblings ⇒ no addendum).Test Plan
useCanvasStatehook (src/shell/canvas/*.test.*) — pass.src/features/panel/index.test.tsx) — pass.🤖 Generated with Claude Code