feat(sessions): add persistent display names - #72
Open
alx-xo wants to merge 1 commit into
Open
Conversation
alx-xo
force-pushed
the
alexm/66-custom-session-names
branch
4 times, most recently
from
September 1, 2026 16:24
b289993 to
6b5ceb6
Compare
Store custom names in atomic workspace-scoped sidecars so renaming active sessions does not rewrite or lock transcripts. Refs speakeasy-api#66
alx-xo
force-pushed
the
alexm/66-custom-session-names
branch
from
September 1, 2026 21:11
6b5ceb6 to
f3dbc98
Compare
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.
Goal
Kit generates session titles from the earliest useful user message, which is not always memorable once a workspace has many durable sessions. This adds an optional persistent display name while preserving the generated title as the fallback.
What changed
CLI
kit sessionsshows the custom name when set, otherwise the generated title.kit sessions rename <session-id> "OAuth token bug"sets or replaces a name.kit sessions rename <session-id> --clearrestores the generated title.--rootworks on both listing and rename commands.TUI
/sessionskeeps the existing selection and resume flow.Ropens an inline rename field; submitting an empty value asks before clearing.Persistence and compatibility
Verification
--rootpositions.cargo +1.94.0 fmt --all -- --checkcargo +1.94.0 clippy --all-targets --all-features -- -D warningscargo +1.94.0 test --all-targets --all-featuresCloses #66