Read Codex Desktop thread names from session_index.jsonl - #469
Open
Adam-Dalloul wants to merge 2 commits into
Open
Read Codex Desktop thread names from session_index.jsonl#469Adam-Dalloul wants to merge 2 commits into
Adam-Dalloul wants to merge 2 commits into
Conversation
List/import already preferred the last session_index.jsonl thread_name. Opening the same conversation used the rollout parser only, so the first prompt replaced the Desktop title. Apply the same overlay on detail.
Adam-Dalloul
force-pushed
the
codex-import-session-titles
branch
from
August 16, 2026 17:05
444ea08 to
79e161c
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.
Fixes #457.
Codex Desktop often stores the current thread name in
session_index.jsonland never writesthread_name_updatedinto the rollout. Import then titled the sidebar from the first user prompt.This overlays the latest non-empty
thread_namefromsession_index.jsonl(last write wins) after the rollout parse, on both the list path and the open/detail path. Manual Codeg titles withtitle_lockedare unchanged because that field is applied after import.Includes a test that a later index rename wins over the first prompt for list and detail.