Globally search and resume Claude Code conversations.
- Search through all your Claude Code conversations
- Preview conversation context with search term highlighting
- See message counts and hit counts per conversation
- Resume conversations directly from the search interface
- Delete conversations with confirmation prompt
- Pass flags through to
claude(e.g.,--plan) - Mouse wheel scrolling support
brew install agentic-utils/tap/ccsRequires Go 1.21+.
go install github.com/agentic-utils/ccs@latestDownload the binary from releases and add to your PATH.
- Claude Code - must be installed and used at least once
# Search recent conversations (last 60 days, files <1GB)
ccs
# Search with initial query
ccs buyer
# Search last 7 days only
ccs --max-age=7
# Search everything (all time, all files)
ccs --all
# Resume with plan mode
ccs -- --plan
# Combined: search "buyer", resume with plan mode
ccs buyer -- --plan| Flag | Default | Description |
|---|---|---|
--max-age=N |
60 | Only search files modified in the last N days (0 = no limit) |
--max-size=N |
1024 | Max file size in MB to include (0 = no limit) |
--all |
- | Include everything (same as --max-age=0 --max-size=0) |
↑/↓orCtrl+P/N- Navigate listEnter- Resume selected conversationCtrl+D- Delete selected conversation (with confirmation)Ctrl+J/K- Scroll previewMouse wheel- Scroll list or preview (context-aware)Ctrl+U- Clear searchEsc/Ctrl+C- Quit
ccs reads conversation history from ~/.claude/projects/ and presents them in an interactive TUI. When you select a conversation, it changes to the original project directory and runs claude --resume <session-id>.
MIT
