{"id":50628848,"url":"https://github.com/rick-does/claude-code-chat-browser","last_synced_at":"2026-06-06T19:01:41.345Z","repository":{"id":352458498,"uuid":"1214581752","full_name":"rick-does/claude-code-chat-browser","owner":"rick-does","description":"A lightweight desktop app for browsing, searching, and copying text from your Claude Code chat history. No cloud, no tracking—everything stays local.","archived":false,"fork":false,"pushed_at":"2026-04-19T17:00:25.000Z","size":15583,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-19T18:35:46.424Z","etag":null,"topics":["browser","chat","claude","history","history-management"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rick-does.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-18T19:14:55.000Z","updated_at":"2026-04-19T17:00:29.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rick-does/claude-code-chat-browser","commit_stats":null,"previous_names":["rick-does/claude-code-chat-browser"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/rick-does/claude-code-chat-browser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rick-does%2Fclaude-code-chat-browser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rick-does%2Fclaude-code-chat-browser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rick-does%2Fclaude-code-chat-browser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rick-does%2Fclaude-code-chat-browser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rick-does","download_url":"https://codeload.github.com/rick-does/claude-code-chat-browser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rick-does%2Fclaude-code-chat-browser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33995625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser","chat","claude","history","history-management"],"created_at":"2026-06-06T19:01:38.890Z","updated_at":"2026-06-06T19:01:41.336Z","avatar_url":"https://github.com/rick-does.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Claude Code Chat Browser (CCCB)\n\n[![Build Executable](https://github.com/rick-does/claude-code-chat-browser/actions/workflows/build.yml/badge.svg)](https://github.com/rick-does/claude-code-chat-browser/actions/workflows/build.yml)\n\nA lightweight desktop app for browsing, searching, and copying text from your Claude Code chat history. No cloud, no tracking—everything stays local.\n\n## Features\n\n- **Browse chats** — Organized by project with expandable groups\n- **Full-text search** — Find conversations by name or content, with navigation wrapping\n- **View transcripts** — Syntax-highlighted code blocks, expandable thinking sections, tool visualizations, message numbering\n- **Copy to clipboard** — Extract text, code, or entire conversations\n- **Light/Dark mode** — Toggle theme with persistent preference\n- **Metadata** — See message count, token usage, and timestamps\n- **Persistent state** — Remembers your last opened chat and theme preference\n\n## Install\n\n**Windows (Recommended):**\n1. Download `CCCB.exe` from [Releases](https://github.com/rick-does/claude-code-chat-browser/releases)\n2. Run it — no installation needed\n\n**From Source:**\n```bash\ngit clone git@github.com:rick-does/claude-code-chat-browser.git\ncd claude-code-chat-browser\npip install -r requirements.txt\npython main.py\n```\n\n## Usage\n\n- **Search** — Type in the sidebar to filter chats\n- **Project filter** — Select a project to narrow the list\n- **Transcript search** — Use the search box in the main pane to find text within a chat; navigate with arrow buttons (wraps around at edges)\n- **Message numbering** — Each user/assistant message is numbered for easy reference when copying sections\n- **Light/Dark mode** — Click the theme toggle button (◑/◯) next to the refresh button to switch themes\n- **Copy** — Right-click to copy selected text or entire sections\n- **GitHub** — Click the footer link to report issues or request features\n\n## Linux / WSL\n\nOn Linux and WSL, CCCB runs as a local web server instead of a desktop app. Open your browser to the URL printed on startup.\n\n**WSL:** CCCB automatically opens your Windows browser.\n\n**Remote Linux server (SSH):** Use an SSH tunnel so you can access the UI from your local browser — no firewall changes needed:\n\n```bash\nssh -L 5000:localhost:5000 user@your-server\n```\n\nThen open `http://localhost:5000` in your local browser while the tunnel is active.\n\n## Building\n\nTo create a standalone executable:\n\n```bash\npip install -r requirements.txt\npython build.py\n```\n\nOutput: `dist/CCCB.exe` (Windows), `dist/CCCB` (macOS/Linux)\n\n## Development\n\n```bash\npython main.py          # Run normally\npython main.py --dev    # Run with auto-reload on file changes\npython main.py --serve  # Force browser mode (test headless on any platform)\npython setup_vendor.py  # Download vendor libraries\n```\n\n## Architecture\n\n- **Backend:** Python with in-memory indexing\n- **Frontend:** Alpine.js + vanilla HTML/CSS\n- **Framework:** pywebview (Windows/Mac), Flask (Linux/WSL)\n- **Data source:** `~/.claude` (Claude Code chat history)\n\n## Data \u0026 Privacy\n\nCCCB reads from your local `~/.claude` directory only—no data is sent anywhere. The app runs entirely offline.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frick-does%2Fclaude-code-chat-browser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frick-does%2Fclaude-code-chat-browser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frick-does%2Fclaude-code-chat-browser/lists"}