feat: show prompts for opencode and codex sessions#25
Open
erickgnclvs wants to merge 1 commit into
Open
Conversation
Add agent-aware prompt extraction so cowsay shows the first user message for opencode (via opencode.db) and codex (via threads.first_user_message in state SQLite files, covering both OpenAI CLI and JetBrains layouts). Also fix a caching bug in refreshPrompts where sessions with an empty prompt were permanently skipped — now only sessions with an already-found prompt are cached, so the prompt appears as soon as the agent processes the first message. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
ForAgent()dispatcher in the prompt package that routes to the right data source based on agent type (opencode→ OpenCode SQLite DB,codex→ Codex threads table,claude→ existing JSONL reader)FirstOpenCode(): queries~/.local/share/opencode/opencode.dbjoiningpart + message + sessionto find the first user text prompt for a given directoryFirstCodex(): readsfirst_user_messagefrom thethreadstable in Codex state SQLite files — handles both OpenAI CLI (~/.codex/state_*.sqlite) and JetBrains plugin (~/Library/Caches/JetBrains/*/aia/codex/state_*.sqliteon macOS)refreshPrompts(): empty prompt results were permanently cached (presence in map = skip), so a session never got its prompt updated after the first miss. Now only non-empty prompts are cached.Test plan
🤖 Generated with Claude Code