clogue
v0.0.1
Published
Browser-based tool for exploring Claude conversation history
Downloads
25
Maintainers
Readme
Clogue
Browser-based tool for exploring Claude conversation history stored in ~/.claude/projects.
Vibe-coded with Claude, obviously.
Features
- Browse all your Claude projects
- View conversations within each project
- Search projects and conversations
- Read complete conversation history with:
- User messages
- Assistant responses
- Tool usage
- Thinking blocks
- Tool results
- Clean, modern interface with syntax highlighting
Installation
Install globally via npm:
npm install -g clogueUsage
Start the server:
clogueOr for local development:
npm startThen open your browser to http://localhost:3000 and browse your conversations:
- Select a project from the left panel
- Choose a conversation from the middle panel
- View the full conversation in the right panel
Project Structure
clogue/
├── server.js # Express server with API endpoints
├── public/
│ ├── index.html # Main HTML interface
│ └── app.js # Client-side JavaScript
├── package.json # Node.js dependencies
└── README.md # This fileAPI Endpoints
GET /api/projects- List all projectsGET /api/projects/:projectName/conversations- List conversations in a projectGET /api/projects/:projectName/conversations/:conversationId- Get conversation messages
Requirements
- Node.js (version 14 or higher)
- Access to
~/.claude/projectsdirectory
