A TUI tool for managing local Claude Code chat history.
Claude Code stores all conversations in ~/.claude/projects/, but provides no built-in way to browse or clean them up. This tool fills that gap.
- Browse all projects and their chats
- View chat messages with syntax highlighting
- Delete unwanted chats with confirmation
- Search/filter projects and chats
- Sort chats by date
go install github.com/tm4a/claude-manager/cmd/claude-manager@latestOr build from source:
git clone https://github.com/tm4a/claude-manager
cd claude-manager
go build -o claude-manager ./cmd/claude-managerclaude-manager| Key | Action |
|---|---|
Enter |
Open project/chat |
q / Esc |
Go back / Quit |
d |
Delete chat |
↑ / ↓ |
Navigate |
/ |
Search |
Claude Code stores chats as JSONL files in ~/.claude/projects/<project-path>/. Each project directory corresponds to a working directory where Claude Code was used. This tool parses these files and provides a convenient interface to manage them.
MIT