feat(cli): /history shows recent user prompts in this session#209
Merged
emal-avala merged 1 commit intomainfrom Apr 23, 2026
Merged
feat(cli): /history shows recent user prompts in this session#209emal-avala merged 1 commit intomainfrom
emal-avala merged 1 commit intomainfrom
Conversation
Adds a /history command (alias /hist) that lists your recent user-authored prompts in chronological order: /history last 10 /history 25 last 25 /history all everything Skips tool_result messages, compact-summary boundaries, and the assistant's responses, so the numbered list only shows what you actually typed — useful for jogging your memory mid-session or spotting the turn where things went sideways.
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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
Adds `/history` (alias `/hist`) — a numbered list of what you've typed in the current session, chronologically oldest→newest so the latest prompt sits near the cursor.
Filters out tool_result blocks, compact-summary boundaries, and assistant responses, so the list only contains actual user-authored prompts. Each entry is clipped to ~100 chars on a single line (whitespace collapsed, ellipsis appended for longer ones).
Why
Useful for:
Test plan