[Feature]: Add a shortcut to jump to the latest unread completed thread #8576
kyrregjerstad
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Problem statement
When several agent turns run in parallel, completed work can sit unread in another project or environment. T3 shows completion state in the sidebar, but there is no single keyboard action to open the newest unread result. Users must scan projects and thread rows manually.
cmux solves this with Jump to Latest Unread, bound to
Cmd+Shift+U. It selects the newest unread notification across windows and workspaces, navigates to the exact target, and marks it read only after navigation succeeds. Repeated presses walk through unread work from newest to oldest.Solution
Add a configurable Jump to Latest Unread command to the command palette and keybinding registry. Bind it to
Cmd+Shift+Uby default on macOS.For the first version, an unread item is a thread whose latest completed turn is newer than its effective viewed timestamp. The command searches all available, non-archived threads across connected environments and projects, selects the candidate with the newest completion timestamp, and navigates to it.
After navigation succeeds and the thread becomes visible, normal thread-view behavior marks the completion read. Pressing the shortcut again therefore opens the next-newest unread completion. If no unread completion exists, the command does nothing.
User stories
Further notes
cmux is the reference behavior:
Related T3 work:
The core idea is an inbox navigation command, not a dependency on desktop notifications.
All reactions