Metadata-Version: 2.4
Name: claude-log
Version: 0.1.2
Summary: Browse, search, and analyze your Claude Code conversation history
License: MIT
Project-URL: Homepage, https://github.com/Zu-Tech/cclog
Project-URL: Repository, https://github.com/Zu-Tech/cclog
Project-URL: Issues, https://github.com/Zu-Tech/cclog/issues
Keywords: claude,claude-code,cli,history,search,analytics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.110
Requires-Dist: uvicorn[standard]>=0.29
Requires-Dist: jinja2>=3.1
Requires-Dist: python-multipart>=0.0.9
Requires-Dist: whoosh>=2.7
Requires-Dist: markdown>=3.5
Requires-Dist: click>=8.0
Dynamic: license-file

# cclog

[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)

Browse, search, and analyze your [Claude Code](https://docs.anthropic.com/en/docs/claude-code) conversation history.

<p align="center">
  <img src="https://raw.githubusercontent.com/Zu-Tech/cclog/main/header.png" alt="cclog" width="100%">
</p>

## Install

```bash
pip install claude-log
```

## Usage

```bash
cclog                          # opens browser at localhost:9117
cclog --port 3000              # custom port
cclog --no-open                # don't auto-open browser
cclog --host 0.0.0.0           # bind to all interfaces
cclog --claude-home /path/to   # custom claude directory
```

## Features

- **Search** — full-text search across all conversations via [Whoosh](https://whoosh.readthedocs.io/)
- **Browse** — conversations grouped by project with auto-summaries
- **Analytics** — token usage, estimated cost, model breakdown, activity heatmap
- **Tag & organize** — name, tag, and favorite conversations
- **Export / Import** — export per project or per chat, import on any machine
- **Resume** — copy `claude --resume <id>` command from any conversation
- **Read-only** — never modifies `~/.claude/`, metadata stored separately in `~/.local/share/cclog/`
- **API** — full REST API with Swagger docs at `/docs`

## How it works

cclog reads your Claude Code history from `~/.claude/` in **read-only mode** and serves a web UI.

```
~/.claude/                      <- read-only (never modified)
├── history.jsonl
├── projects/
│   └── -Users-you-project/
│       ├── session-id.jsonl    <- full conversation
│       └── sessions-index.json
└── sessions/

~/.local/share/cclog/           <- cclog's data
├── metadata.json               <- tags, renames, favorites
└── index/                      <- search index
```

## API

| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | `/api/v1/projects` | List projects with stats |
| GET | `/api/v1/sessions/:id` | Full conversation |
| PATCH | `/api/v1/sessions/:id/meta` | Update name, tags, favorite |
| POST | `/api/v1/sessions/:id/delete` | Soft-delete |
| GET | `/api/v1/search?q=query` | Full-text search |
| GET | `/api/v1/analytics/overview` | Dashboard analytics |
| GET | `/api/v1/export/session/:id` | Export single conversation |
| GET | `/api/v1/export/project/:id` | Export project conversations |
| POST | `/api/v1/import` | Import from zip |

Interactive docs at `/docs` (Swagger UI).

## Tech

Python, [FastAPI](https://fastapi.tiangolo.com/), [Whoosh](https://whoosh.readthedocs.io/), [Jinja2](https://jinja.palletsprojects.com/)

## License

MIT
