openclaw - 💡(How to fix) Fix Feature Request: Semantic session titles in WebChat session list

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
RAW_BUFFERClick to expand / collapse

Problem

The WebChat (Control UI) session list displays raw internal session keys like agent:main:dashboard:236... as the session identifier. These are gateway routing IDs with no semantic meaning, making it hard to identify which conversation is which when browsing recent sessions.

In contrast, services like DeepSeek Chat automatically generate a descriptive title for each conversation (e.g., "Java code structure", "Bug investigation") based on the first few messages, and allow users to rename sessions.

Expected Behavior

  1. Auto-derived titles: WebChat should display a lightweight, derived title for dashboard sessions, based on the first few messages or key topics.
  2. User-renameable: Users should be able to rename a session from the session list panel.
  3. Fallback: If no title can be derived, fall back to the current session key or a timestamp-based label.

Technical Notes

  • sessions_list tool already has an includeDerivedTitles parameter, but it reads transcripts synchronously and can block the event loop (see issue #33463). A lighter approach could read only the first N characters of the first user+assistant turn.
  • The Control UI already has a sessions.js panel rendering component where displayName is referenced but not populated for dashboard sessions.
  • Performance concern: avoid full transcript reads for the session list endpoint.

Suggested Approach

  1. Add a server-side endpoint or augment sessions.list GWS message to return a lightweight derived title per session (e.g., extract first 80 chars of the first user message).
  2. The Control UI renders this derived title when available, falling back to the session key.
  3. Optionally add a rename action that persists a custom label in the session store.

References

  • DeepSeek Chat: auto-naming conversations by content
  • OpenClaw issue #33463: includeDerivedTitles event loop blocking
  • Session management docs: /concepts/session

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix Feature Request: Semantic session titles in WebChat session list