Tip
I'm building aven, a local-first task manager for power users and agents.
"This is the best thing ever thanks for this project." — @andrewle8
claude-history is a companion CLI for Claude Code. It lets you search recent
conversations recorded in Claude's local project history with a built-in
terminal UI, then view the selected transcript directly in the terminal with
scrolling, search, and export capabilities.
Run it from the project directory you work on with Claude Code and it will discover the matching transcript folder automatically.
Tip
Experimental semantic search is available. See Semantic search for details.
Install · Features · Usage · Configuration · Changelog
- Fuzzy search across all conversations with field-aware relevance scoring, prefix matching, word boundary awareness, and tool output indexing
- Conversation viewer with vim-style scrolling, in-viewer search, message navigation, and markdown rendering
- Resume and fork conversations directly from the TUI with configurable keybindings
- Cross-project fork — fork a conversation from any project into your current working directory, useful when working across git worktrees
- Worktree-aware project filtering for workmux users
- Export and copy conversations or individual messages to clipboard
- Configurable display options, keybindings, and default resume arguments
- Searchable history for Claude through a companion Claude Code skill that lets Claude find and read its own past conversations
curl -fsSL https://raw.githubusercontent.com/raine/claude-history/main/scripts/install.sh | bashbrew install raine/claude-history/claude-historycargo install claude-historyclaude-history updateHomebrew users should use brew upgrade claude-history instead.
Run the tool from inside the project directory you're interested in:
$ claude-historyThis opens a terminal UI listing all conversations, sorted by recency. Type to search across all transcripts. Each item shows a preview of the conversation. Quoted exact matches also show hidden context when the match is not visible in the preview.
Use delete-empty to find transcript files that have no Claude messages, such as
sessions that only contain slash commands like /status or /plugin.
claude-history delete-empty
claude-history delete-empty --local
claude-history delete-empty --yesThe command prints a dry run by default. Add --yes to delete the matching
JSONL files and their matching session artifact directories.
| Key | Action |
|---|---|
↑ / ↓ |
Move selection |
← / → |
Move cursor in search |
Ctrl+P / Ctrl+N |
Move selection (vi-style) |
Ctrl+D / Ctrl+U |
Half page down/up (vim-style) |
Page Up / Page Down |
Jump by page |
Home / End |
Jump to first/last |
Enter |
Open conversation viewer |
| Mouse wheel | Scroll the result list |
| Mouse click | Open conversation under cursor |
Ctrl+O |
Select and exit (for scripting) |
Ctrl+W |
Delete word before cursor |
Ctrl+R |
Resume conversation |
Ctrl+F |
Fork and resume conversation |
F2 |
Rename selected session |
Ctrl+X |
Delete conversation |
Tab |
Toggle all / workspace scope |
Ctrl+T |
Toggle lexical / semantic search |
? |
Show keyboard shortcuts |
Esc |
Clear search input, or quit |
Ctrl+C |
Quit |
| Key | Action |
|---|---|
j / ↓ |
Scroll down |
k / ↑ |
Scroll up |
| Mouse wheel | Scroll the conversation |
J / ] |
Jump to next message |
K / [ |
Jump to previous message |
d / Ctrl+D |
Half page down |
u / Ctrl+U |
Half page up |
Page Down |
Full page down |
Page Up |
Full page up |
g / Home |
Jump to top |
G / End |
Jump to bottom |
/ |
Start search |
n |
Next search match |
N |
Previous search match |
t |
Cycle tools: summary/truncated/full |
T |
Toggle thinking |
e |
Export conversation to file |
y |
Copy to clipboard (message if selected, else menu) |
p |
Show file path |
Y |
Copy file path to clipboard |
I |
Copy session ID to clipboard |
Ctrl+R |
Resume conversation |
Ctrl+F |
Fork and resume conversation |
Ctrl+X |
Delete conversation |
? |
Show keyboard shortcuts |
q / Esc |
Return to list (or quit in direct file input mode) |
Ctrl+C |
Quit |
Press J/K or [/] to enter message navigation mode. A teal ▌ marker
appears in the gutter showing which message is focused. While in this mode:
J/]— jump to next messageK/[— jump to previous messagey— copy the focused message to clipboard (raw markdown)Esc— exit message navigation mode
Searching with / also activates message navigation, focusing the message
containing each match as you move through results with n/N. The status bar
shows the current match number and total matches while search is active.
Clipboard actions use OSC 52 in SSH and mosh sessions so copied text reaches the
terminal client's clipboard. Local sessions use the operating system clipboard.
The terminal emulator must allow OSC 52 clipboard writes. tmux also requires
set-clipboard to be on or external.
Set CLAUDE_HISTORY_CLIPBOARD to override transport detection:
autouses OSC 52 for SSH and mosh, and the system clipboard locallyosc52always sends clipboard text through the terminalsystemalways uses the clipboard of the machine running claude-history
The osc52 override is useful when a persistent tmux server does not retain SSH
environment variables. Terminal clipboard size limits apply to conversation
copies.
Unquoted search matches words flexibly:
configmatchesCONFIGapi keymatchesAPI_KEYauthmatchesauthenticationandauthorizeredwon't match insidefired- multiple words must all match
Identifier-style terms with underscores keep the underscore, so api_key matches
api_key but not api key.
Use quotes when you need exact text. For example, "DEPLOYMENT_TOKEN" matches
DEPLOYMENT_TOKEN but not deployment token. Lowercase quoted text ignores
case, while quoted text with uppercase letters is case-sensitive.
You can mix both styles: metrics "DEPLOYMENT_TOKEN" searches for metrics as
usual, but only returns conversations that also contain DEPLOYMENT_TOKEN.
Search also includes tool results, not just user and assistant messages. Paste a full session UUID to jump directly to that session. Quote the UUID to search for it as transcript text instead.
Results are ranked by relevance using field-aware scoring: matches in the title, project name, and summary are weighted higher than body text. Within equally relevant results, recent conversations rank first.
--since narrows to recent conversations, --before to older ones, and the two
combine into a range. --after is an alias for --since, so the two cannot be
used together. Both the conversation list and agent search accept them:
claude-history --since 2d
claude-history agent search "cache invalidation" --since 1w
claude-history agent search "cache invalidation" --after 2026-07-01 --before 2026-07-20A value is either a duration back from now or an absolute local time:
| Form | Meaning |
|---|---|
45s 30m 3h 2d 1w |
seconds, minutes, hours, days, weeks |
6mo 1y |
calendar months and years |
1d6h 1mo2w |
components combine |
2026-07-20 |
midnight local time |
2026-07-20T14:30 |
a time of day, space instead of T also accepted |
Long spellings (30minutes, 2days, 6months) work too, and units are
case-insensitive. Note that m is minutes and mo is months, months and years
follow the calendar rather than 30- or 365-day approximations, and bounds are
inclusive to the end of the unit written — so --before 2026-07-20 includes all
of the 20th.
Filtering happens before ranking, so all four search modes honour it.
Conversation times come from the transcript file's modification time — the same
value behind the 3 days ago column and the recency ranking bonus — so a
resumed conversation counts as recent.
Semantic search ranks conversations by meaning instead of exact word matches. It embeds recent conversation chunks locally, combines semantic similarity with lexical signals, and shows the best matching evidence preview for each result. The first semantic search may download the local model and generate embeddings, which can take a while for large histories.
Quoted text works in semantic mode too. For example,
deployment "DEPLOYMENT_TOKEN" finds conversations where the matching visible
semantic evidence also contains the exact identifier. A quoted-only semantic
search, such as "DEPLOYMENT_TOKEN", returns exact matches newest-first.
Press Ctrl+T in the conversation list to switch between lexical and semantic
search. To start in semantic mode by default, set:
[search]
mode = "semantic"The older [tui] semantic_search = true setting is still accepted for existing
configs.
You can open a JSONL conversation file directly, bypassing the conversation selection UI:
$ claude-history /path/to/conversation.jsonlAll display options work in this mode:
$ claude-history --show-tools --show-thinking /path/to/conversation.jsonlPress q or Esc to quit when viewing a file directly.
Press Enter on a conversation to open the built-in viewer. The viewer displays
conversations in a ledger-style format with scrolling support.
Features:
- Scrolling: Navigate with vim-style keys (
j/k), arrow keys, or the mouse wheel - Search: Press
/to search within the conversation, thenn/Nto navigate matches - Cycle tools: Press
tto cycle tool display (summary → truncated → full) - Toggle thinking: Press
Tto show/hide thinking blocks - Show path: Press
pto display the conversation file path - Light/dark theme: Automatically detects terminal background color and applies an appropriate color theme
Press q or Esc to return to the conversation list.
View Claude conversation history
Usage: claude-history [OPTIONS] [FILE]
claude-history [COMMAND]
Commands:
agent Run agent-oriented search and transcript commands
delete-empty Delete transcript files with no Claude messages
update Update claude-history to the latest version
Arguments:
[FILE] JSONL conversation file to view directly
Options:
-t, --show-tools Show tool calls in the conversation output
--no-tools Hide tool calls from the conversation output
-d, --show-dir Print the conversation directory path and exit
-l, --last Show the last messages in the TUI preview (default)
--first Show the first messages in the TUI preview
--show-thinking Show thinking blocks and subagent internals in the conversation output
--hide-thinking Hide thinking blocks and subagent internals from the conversation output
-c, --resume Resume the selected conversation in Claude Code
--fork-session Fork the session when resuming
-p, --show-path Print the selected conversation file path
-i, --show-id Print the selected conversation session ID
--plain Output plain text without ledger formatting
--delete <SESSION_ID> Delete a session by its UUID and exit
--debug-search <QUERY> Debug search result scoring for a query
--debug [<LEVEL>] Print debug information (optionally filter by level: debug, info, warn, error)
-L, --local Show only conversations from the current workspace directory
--since <WHEN> Only conversations this recent (duration or date)
--after <WHEN> Alias for --since
--before <WHEN> Only conversations older than this duration or date
--pager Display output through a pager (less)
--no-pager Disable pager output
--render <FILE> Render a JSONL file in ledger format and exit
--no-color Disable colored output
-h, --help Print help
-V, --version Print version
claude-historyshows the last messages in the preview (default)claude-history --firstflips the preview to the first messages
In the TUI viewer, tool calls default to summary mode — showing condensed
activity like "Searched for 2 patterns, read 1 file" without tool inputs or
outputs. Press t to cycle through modes: summary → truncated → full. Truncated
mode shows the tool header plus the first few body lines with a "(N more
lines...)" indicator. Click a truncated tool call/result to expand that specific
output, and click it again to collapse it. Use --show-tools (or -t) to start
in full mode, or --no-tools to start in summary mode.
Extended thinking models (like Claude Sonnet 4.5) include reasoning steps in
their output. When Claude uses the Task tool to spawn subagents, the internal
tool calls and messages within those subagents are also hidden by default. Use
--show-thinking (or press T in the TUI) to display both thinking blocks and
subagent internals. Subagent messages appear dimmed with a ↳ prefix to
distinguish them from top-level conversation entries.
If you want to continue a conversation, launch claude-history with --resume
and it will hand off to claude --resume <conversation-id>.
To fork a conversation (creating a new session branching from the original), use
--resume --fork-session or press Ctrl+F in the TUI.
Within the same project, this passes --fork-session to claude, which creates
a new session ID branching from the original. When forking a conversation from a
different project, the session files are copied to your CWD's project directory
and resumed there — the copy continues independently without affecting the
original.
You can configure default arguments to pass to the claude command every time
you resume a conversation. This is useful if you typically run Claude with
specific flags (like --dangerously-skip-permissions) and want them applied
automatically when resuming:
# ~/.config/claude-history/config.toml
[resume]
default_args = ["--dangerously-skip-permissions"]With this configuration, when you resume a conversation, it will run:
claude --resume <conversation-id> --dangerously-skip-permissionsThis provides a cleaner alternative to shell aliases, as the arguments are
applied specifically when resuming through claude-history, without affecting
how you normally invoke Claude.
For regular resumes, use claude-history --resume or press Ctrl+R in the TUI.
Configure [resume].default_args for arguments that should apply every time
claude-history resumes a session.
If another tool needs the selected session ID, use --show-id and press
Ctrl+O to select the highlighted conversation. The TUI writes the session ID to
stdout.
In the viewer, press I to copy the session ID to clipboard.
Claude's responses are rendered with markdown formatting for better terminal
readability. Use --plain to disable rendering and get raw text output.
Use --plain to output conversations without ledger formatting:
$ claude-history --plainThis produces simple Role: content output without colors, text wrapping, or
markdown rendering, suitable for piping to other tools or LLMs:
You: How do I fix this bug?
Claude: Looking at the code, the issue is...
By default, conversation output is piped through a pager (less -R) when stdout
is a terminal. This enables scrolling through long conversations. Use
--no-pager to disable this behavior and print directly to stdout.
The pager respects the $PAGER environment variable. If not set, it defaults to
less -R (which preserves ANSI colors).
By default, claude-history shows all conversations from every project, sorted
by modification time (newest first). Each conversation shows its project path so
you can identify which project it belongs to.
Press Tab to toggle between all conversations and the current workspace only.
Use -L/--local to start with the workspace filter active.
For workmux users, worktree paths are
displayed in a compact format: [project/worktree] instead of just the worktree
folder name. The project filter (toggled with Tab) is worktree-aware: it
includes conversations from the main repo and all its worktrees, regardless of
which one you're currently in.
The --resume flag works across projects. It will automatically run Claude in
the correct project directory for the selected conversation.
You can integrate claude-history into other tools to pass conversation context
to new Claude Code sessions. This is useful when you want Claude to understand
what you were working on previously.
For example, a commit message generator script could use the conversation history to write more contextual commit messages:
# Get conversation history if --context flag is set
conversation_context=""
if [ "$include_history" = true ]; then
echo "Loading conversation history..."
conversation_history=$(claude-history --plain 2>/dev/null)
if [ -n "$conversation_history" ]; then
conversation_context="
=== START CONVERSATION CONTEXT ===
$conversation_history
=== END CONVERSATION CONTEXT ===
"
fi
fi
# Pass to Claude CLI with the conversation context
prompt="Write a commit message for these changes.
${conversation_context}
Staged changes:
$staged_diff"
claude -p "$prompt"The companion Claude Code skill lets Claude search and read its own conversation history. Claude can recover prior decisions, debugging context, and implementation details without loading whole transcripts into its context window.
See the skill for setup and usage.
You can set default preferences for display options in
~/.config/claude-history/config.toml. Command-line flags will override these
settings.
Create the config file:
mkdir -p ~/.config/claude-history
cat > ~/.config/claude-history/config.toml << 'EOF'
[display]
# Tool display: true = summary, false = full (default: unset = summary)
# no_tools = false
# Show last messages in TUI preview (default: true)
# last = true
# Show thinking blocks (default: false)
show_thinking = false
# Use plain output without ledger formatting (default: false)
plain = false
# Use pager for output (default: true when stdout is a terminal)
pager = true
[resume]
# Default arguments to pass to claude command when resuming
# Example: default_args = ["--dangerously-skip-permissions"]
[keys]
# Customize keybindings (default: ctrl+r, ctrl+f, f2, ctrl+x)
# Supports ctrl+<key>, alt+<key>, single-character keys, and f1-f12
# rename = "alt+r"
# fork = "alt+f"
[search]
# Search mode used by the conversation list
mode = "lexical"
[tui]
# Hide exact project names from TUI browse/search lists
# exclude_projects = ["project-name", "repo/worktree"]
# Deprecated: use [search].mode instead
semantic_search = false
EOFno_tools(boolean): Whentrueor unset (default), shows tool summaries; whenfalse, shows full tool detailslast(boolean): Show last messages instead of first in TUI preview (default: true)show_thinking(boolean): Show thinking blocks and subagent internals in conversation output (default: false)plain(boolean): Output plain text without ledger formatting (default: false)pager(boolean): Pipe output through a pager for scrolling (default: true when stdout is a terminal)
default_args(array of strings): Arguments to pass to theclaudecommand when resuming conversations. Useful for flags like--dangerously-skip-permissionsthat you want applied every time you resume. Example:default_args = ["--dangerously-skip-permissions", "--verbose"]
Customize the keybindings for resume, fork, rename, and delete actions. Values
are key combinations like "ctrl+r", "alt+f", or "f2".
resume(string): Resume conversation (default:"ctrl+r")fork(string): Fork and resume conversation (default:"ctrl+f")rename(string): Rename selected session (default:"f2")delete(string): Delete conversation (default:"ctrl+x")
mode(string): Search mode for the conversation list. Supported values arelexicalandsemantic(default:lexical).
exclude_projects(array of strings): Case-sensitive project names to hide from TUI browse/search lists. Match against the project name shown in the leftmost column; a parent entry like"repo"also hides displayed worktree rows like"repo/feature". Excluded conversations remain on disk and can still be opened by pasting their full UUID or by passing the JSONL file path directly.semantic_search(boolean): Deprecated compatibility alias. When[search].modeis unset,truestarts list search in semantic mode andfalsestarts lexical mode. PressCtrl+Tin the TUI to switch modes.
Each display option has opposing flags for explicit override:
--no-tools/--show-tools--last/--first--hide-thinking/--show-thinking--plain(no opposite flag)--no-pager/--pager
For example, if your config has no_tools = false (showing full tool details),
you can temporarily switch to summaries with --no-tools.
If you use the CLAUDE_CONFIG_DIR environment variable to store Claude's
configuration in a non-default location, claude-history will respect it
automatically — no extra flags needed.
The tool filters out some noisy artifacts before showing conversations, so you only see transcripts that are likely to matter for your recent work.
- Skips the "Warmup / I'm Claude Code…" exchanges that are sometimes injected without user interaction
- Skips conversations that only contain the
/clearterminal command
The repository includes just recipes:
$ just checkThis runs cargo fmt, cargo clippy --fix, cargo test, and cargo build.
GitHub Actions also verifies the Nix build on pull requests, main, and release
tags.
- workmux — Git worktrees + tmux windows for parallel AI agent workflows
- git-surgeon — Non-interactive hunk-level git staging for AI agents
- consult-llm — Consult other AI models from your agent workflow
- tmux-file-picker — Pop up fzf in tmux to quickly insert file paths, perfect for AI coding assistants
- tmux-agent-usage — Display AI agent rate limit usage in your tmux status bar

