feat: Session browser — view all agent sessions on a canvas#4957
Open
bender-rodriguez-unit1 wants to merge 6 commits into
Open
feat: Session browser — view all agent sessions on a canvas#4957bender-rodriguez-unit1 wants to merge 6 commits into
bender-rodriguez-unit1 wants to merge 6 commits into
Conversation
Backend: - New RPC: ListCanvasSessions — returns all sessions for a canvas with user name, status, and last activity time - Joins agent_sessions with accounts for user info Frontend: - 'All sessions' button at top of agent chat - Session list view with avatar, name, status, time ago - Read-only view of other users' sessions (composer hidden) - Back navigation between views Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
|
👋 Commands for maintainers:
|
added 5 commits
May 22, 2026 09:01
Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
…rowser Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
… injected in preamble - Remove read-only mode: any org member can send messages to any session - Inject current_user_id and current_user_name in every preamble - Agent knows who is talking at each turn Signed-off-by: Bender Rodriguez <bender@superplanehq.com>
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 ability to browse all agent sessions on a canvas, including sessions from other users.
Backend:
GET /api/v1/agents/canvases/{canvas_id}/sessionsFrontend:
Any org member can view any session on a canvas they have access to. Only the session owner can send messages.