feat(launch): show session id prefix in resume picker#16
Merged
Conversation
The resume picker listed sessions by first message + timestamp only, with no way to tell which session id each row maps to. Prepend the 8-char session id prefix to each row label so sessions are identifiable at a glance.
Tanq16
approved these changes
Jul 18, 2026
Tanq16
approved these changes
Jul 19, 2026
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.
What
The
launch --resumepicker lists a project's sessions by first message + timestamp (+ account path when multiple accounts exist), but never shows the session id. Since--session <id>needs that id and each row otherwise looks similar, there was no way to tell which session a row maps to.This prepends the 8-char session-id prefix to each row label:
Details
default:branch inrunLaunch). The--session <id>,--resume, and single-session fast paths are untouched.sess.sessionID; the prefix is display-only.shortSessionIDhelper (safe byte-slice — session ids are ASCII UUIDs).Testing
gofmt/go vet/go build ./...clean,go test ./...passes.~/.claude,~/.claude2) — the id prefix renders correctly and selection resumes the right session.🤖 Generated with Claude Code