I had 1,063 Claude Code conversations and couldn't find anything — so I built claude-grep A developer built claude-grep, a full-text search tool for Claude Code conversation history, after accumulating 1,063 transcripts totaling 256 MB that were impossible to search through. The tool uses fzf and ripgrep to provide live streaming search results across all JSONL transcript files, and automatically resolves sub-agent sessions to their parent conversations for seamless resumption. The open-source Python script is available on GitHub under an MIT license. I use Claude Code a lot . Enough that when I finally counted, I had 1,063 conversations sitting in ~/.claude/projects/ — around 256 MB of JSONL transcripts. And I could never find the one I needed. You know the feeling: "I definitely solved this exact bug a few weeks ago… in some conversation… somewhere." But Claude Code's built-in --resume picker only matches on a session's title its first prompt . It has no idea what was actually said inside. So the conversation where I'd figured out the gnarly thing was, in practice, gone. So I built claude-grep : live full-text search across your entire Claude Code history, with one keypress to jump back into any conversation. You type, and results stream in as you go. Each row shows the matched snippet with your phrase highlighted, the conversation's working directory, and when it happened. Hit Enter and it cd s into that project and runs claude --resume on the right session — you're back exactly where you left off. Under the hood it's deliberately boring and fast: --disabled + change:reload trick — fzf re-runs the search on every keystroke instead of fuzzy-filtering what's already on screen.No index to build, nothing running in the background. It just reads the files Claude Code already writes. When I first wired up "press Enter to resume," a bunch of conversations simply wouldn't open. It turns out 940 of my 1,063 transcript files were sub-agent sessions — the side conversations Claude Code spawns to handle sub-tasks. They live here: ~/.claude/projects/