feat(dashboard): add conversations browser and API - #12631
Closed
hanzckernel wants to merge 2 commits into
Closed
Conversation
1 task
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
Adds a focused dashboard Conversations browser for cleaned local history.
This PR includes:
GET /api/conversationsGET /api/conversations/{conversation_id}/messagesDELETE /api/conversations/{conversation_id}Why
Earlier conversations-browser work lived in a broader prototype stack. This PR restacks the useful part onto
mainas a smaller dashboard-focused change, without pulling in unrelated chat transport or shell changes.Related prototype context: #9903
Implementation notes
The backend implementation lives in
hermes_cli/dashboard_conversations.py, with thin FastAPI wrappers inhermes_cli/web_server.py.The display model reconstructs clean conversations from existing session data. It hides internal/system/probe artifacts, handles compression continuations, and keeps visible branches separately addressable.
Important limitations and guardrails:
Validation
Backend:
Frontend:
cd web npm run build npx eslint src/pages/ConversationsPage.tsx src/lib/api.ts src/i18n/types.ts src/i18n/en.ts src/i18n/zh.tsManual dashboard smoke:
Then open the dashboard and verify:
Authenticated API smoke against disposable local data:
Notes:
Risk
Main risks:
Conversation lineage is heuristic.
Delete is destructive.
Performance is bounded for local use, but the current list implementation reconstructs and filters conversations before final pagination.
No intended changes to chat transport or existing chat UI.
Compatibility
Screenshots
Pending before ready-for-review: