Show HN: ccrider - Search and Resume Your Claude Code Sessions – TUI / MCP / CLI

https://news.ycombinator.com/rss Hits: 1
Summary

ccrider Search, browse, and resume your Claude Code sessions. Fast. Why ccrider? You've got months of Claude Code sessions sitting in ~/.claude/projects/ . Finding that conversation where you fixed the authentication bug? Good luck grepping through nested JSON files. ccrider solves this with a TUI browser, CLI search, and an MCP server so Claude can search your past sessions too. # Import your sessions once ccrider sync # Launch the TUI - browse, search, resume ccrider tui # Or search from command line ccrider search " authentication bug " Stay in your terminal. Find any conversation. Resume where you left off. Installation: # Homebrew (recommended) brew install neilberkman/tap/ccrider # Or from source git clone https://github.com/neilberkman/ccrider.git cd ccrider go build -o ccrider cmd/ccrider/main.go sudo mv ccrider /usr/local/bin/ # Install MCP server for all your projects (optional) claude mcp add --scope user ccrider $( which ccrider ) serve-mcp "Vibe code like a king The King!" ccrider.mp4 Core Features 1. Interactive TUI Browser ccrider tui Browse your sessions with a polished terminal UI: Arrow keys to navigate to navigate Enter to view full conversation to view full conversation o to open session in new terminal tab (auto-detects Ghostty, iTerm, Terminal.app) to open session in new terminal tab (auto-detects Ghostty, iTerm, Terminal.app) / to search across all messages to search across all messages p to toggle project filter (show only current directory) to toggle project filter (show only current directory) ? for help Sessions matching your current directory are highlighted in light green - instantly see which sessions are relevant to your current work. 2. Full-Text Search ccrider search " postgres migration " ccrider search " error handling " --project ~ /code/myapp ccrider search " authentication " --after 2024-01-01 Powered by SQLite FTS5 - search message content, filter by project or date, get results instantly. 3. Resume Sessions Press r in the TUI ...

First seen: 2026-01-06 20:38

Last seen: 2026-01-06 20:38