claude-history
[!IMPORTANT] Despite the name,
claude-historynow also supports Pi and Oh My Pi.
"This is the best thing ever thanks for this project." — @andrewle8
claude-history is a history browser for Claude Code, the Pi coding
agent, and Oh My Pi (OMP). It searches
conversations recorded in their local project histories with a built-in terminal
UI, then opens the selected transcript directly in the terminal with scrolling,
search, and export capabilities.
Run it from a project directory and it discovers matching Claude, Pi, and OMP sessions automatically.
Install · Features · Usage · Configuration · Changelog
[!TIP] I'm building aven, a local-first task manager for power users and agents.
Features
- Claude Code, Pi, and OMP support across list, lexical and semantic search, agent protocol commands, viewing, export, resume, fork, rename, and delete
- 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
Install
Quick install
|
Homebrew (macOS/Linux)
Cargo
Updating
Homebrew users should use brew upgrade claude-history instead.
Usage
Run the tool from inside the project directory you're interested in:
This 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.
Pi coding-agent sessions
Pi sessions work alongside other sources in every history surface. When multiple
sources have conversations, list rows include fixed-width CC, Pi, or OMP
labels. A single-source list stays uncluttered.
The default Pi root is ~/.pi/agent/sessions. Its child directories correspond
to projects. Storage configuration follows Pi's precedence:
PI_CODING_AGENT_SESSION_DIRsessionDirin.pi/settings.jsonfor the current workspacesessionDirin the globalsettings.json- the
sessionsdirectory under the Pi agent directory
PI_CODING_AGENT_DIR selects the Pi agent directory and its global
settings.json. Workspace settings override global settings. An explicit
session directory or sessionDir is treated as a flat directory of JSONL
files. The default root uses Pi's project subdirectories.
Tilde paths, relative paths, and symlinked project directories are resolved in
the same way as Pi.
The browser follows the active branch from the persisted leaf to the root and excludes abandoned branches. Pi session versions 1 through 3 are supported in memory. Pi control records, including compaction and branch summaries, model and thinking changes, labels, and extension state, stay out of the dialogue and search index. Custom messages marked for display remain visible, and image data is represented by placeholders rather than indexed base64.
Pi actions use Pi's native session interface:
- resume runs
pi --session <path>in the session working directory - fork runs
pi --fork <path>in the current working directory - rename appends a native
session_inforecord - delete removes only the selected Pi JSONL file
OMP sessions
OMP sessions use the same append-only conversation tree as Pi, with OMP's fixed-width title record and additional control records. The browser follows the active branch, excludes abandoned branches, and indexes visible dialogue in the same lexical and semantic search corpus as Claude and Pi. Title, mode, service tier, credential, reset, and extension control records stay out of dialogue and search.
The default OMP root is ~/.omp/agent/sessions. OMP storage discovery supports:
PI_CODING_AGENT_SESSION_DIRfor a flat custom session directoryOMP_PROFILE, withPI_PROFILEas its compatibility fallbackPI_CODING_AGENT_DIRfor the default profile's agent directoryPI_CONFIG_DIRfor the OMP configuration root- an initialized
XDG_DATA_HOME/ompdata root
Named profiles use ~/.omp/profiles/<profile>/agent/sessions, or the
corresponding initialized XDG profile root. Default roots contain project
subdirectories. OMP sessions created with a one-off omp --session-dir become
discoverable when that directory is also supplied through
PI_CODING_AGENT_SESSION_DIR.
OMP actions use OMP's native session interface:
- resume runs
omp --resume <path>in the session working directory - fork runs
omp --fork <path>in the current working directory - rename updates OMP's title slot and appends a
title_changeaudit record - delete removes the selected JSONL file and its sibling artifact directory
Claude resume default arguments apply only to Claude sessions.
Delete empty transcripts
Use delete-empty to find transcript files that have no Claude messages, such as
sessions that only contain slash commands like /status or /plugin.
The command prints a dry run by default. Add --yes to delete the matching
JSONL files and their matching session artifact directories.
Keyboard navigation (List mode)
| 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 |
Keyboard navigation (Viewer mode)
| 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 |
Message navigation
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.
Remote clipboard
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.
Search
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.
Time filtering
--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:
A 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. Claude conversation times use transcript modification time. Pi and OMP conversation times use the latest user or assistant activity, then the session header timestamp, then modification time. This timestamp drives the recency column and ranking bonus.
Semantic search
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. Exact lexical matches appear while
semantic ranking is in progress, then the completed semantic results replace them.
Agent hybrid search semantically ranks one compact routing passage per
conversation, then fuses that conversation-level ranking with lexical evidence from
bounded dialogue, thinking, tool calls, tool results, and subagent content. A route contains the title, summary, high-signal
terms, and sparse excerpts from the already-bounded searchable text. It does not
embed every tool chunk, and routes are never shown as evidence. Global agent search
does not embed missing passages interactively, so a corpus query cannot trigger an
embedding job. Within-conversation search can top up at most 32 passages per run.
Run --generate-semantic-cache to prepare visible dialogue and compact routes
explicitly. The on-disk embedding cache is limited to 50,000 entries; generated core
passages are protected while adaptive within-search entries use the remaining space.
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:
[]
= "semantic"
The older [tui] semantic_search = true setting is still accepted for existing
configs.
Direct file input
You can open a JSONL conversation file directly, bypassing the conversation selection UI:
All display options work in this mode:
Press q or Esc to quit when viewing a file directly.
Conversation viewer
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.
CLI reference
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
Preview modes
claude-historyshows the last messages in the preview (default)claude-history --firstflips the preview to the first messages
Showing tool calls
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.
Showing thinking blocks and subagent messages
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.
Resuming conversations
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
[]
= ["--dangerously-skip-permissions"]
With this configuration, when you resume a conversation, it will run:
This 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 renders on stderr, and
only the selected session ID is written to stdout, so command substitution is
safe:
In the viewer, press I to copy the session ID to clipboard.
Markdown rendering
Claude's responses are rendered with markdown formatting for better terminal
readability. Use --plain to disable rendering and get raw text output.
Plain output mode
Use --plain to output conversations without ledger formatting:
This 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...
Pager output
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).
Scope: all conversations vs current workspace
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.
Integration with other scripts
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 [; then
conversation_history=
if [; then
conversation_context="
=== START CONVERSATION CONTEXT ===
=== END CONVERSATION CONTEXT ===
"
fi
fi
# Pass to Claude CLI with the conversation context
prompt="Write a commit message for these changes.
Staged changes:
"
Let Claude search its own history
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.
Configuration
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:
Available options
Display options
no_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)
Resume options
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"]
Key bindings
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")
Search options
mode(string): Search mode for the conversation list. Supported values arelexicalandsemantic(default:lexical).
TUI options
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.
Overriding config
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.
Custom Claude config directory
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.
Filtering details
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
Development
The repository includes just recipes:
This 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.
For isolated ARM64 Linux TUI verification, the repository can build, deploy,
seed, and launch the current working tree in a CuaBot sandbox. See
CUA_SANDBOX.md.
Related projects
- 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