A command-line tool to download and convert AI chat conversations to markdown format. It allows you to save and share conversations from popular AI platforms in a readable, portable format.
| Feature | ChatGPT | Claude | Gemini | Grok |
|---|---|---|---|---|
| Code Blocks | ✅ | ✅ | ✅ | ✅ |
| Web Citations | ✅ (content refs) | ❌ | ❌ | ✅ (tweets, web) |
| Artifacts | ❌ | ✅ | ❌ | ❌ |
| REPL | ❌ | ✅ | ❌ | ❌ |
| Reasoning | ❌ | ❌ | ❌ | ✅ (thinking trace) |
| Enterprise | ✅ | ❌ | ❌ | ❌ |
Gemini accepts both the share.gemini.google short link and the
gemini.google.com/share/<id> link it redirects to.
No installation is required, you can run the CLI directly using npx:
# Output to stdout (default)
npx chat-dl <url>
# Save to file
npx chat-dl --output chat.md <url>The CLI supports four main commands:
url2md: Convert a chat URL or local chat file directly to markdown (default)url2json: Download chat data from a URL or parse a local chat file as JSONjson2md: Convert JSON to markdowndir2md: Recursively convert supported local chat files in a directory to markdownopencode2md: Convert sessions from OpenCode's local SQLite database to markdown
# Basic usage - outputs to console
npx chat-dl https://chatgpt.com/share/feacac46-4201-48c5-9fb6-e3109475c8c8
# Gemini shared conversation
npx chat-dl https://share.gemini.google/3klxEXHcOBOl
# Two-step process with intermediate JSON
npx chat-dl url2json --output chat.json https://x.com/i/grok/share/ntS9ACoPKa2XcPwFnFYT2uUiL
cat chat.json | npx chat-dl json2md --output chat.md
# Convert local Claude Code JSONL transcripts
npx chat-dl dir2md ~/.claude/projects --output ./claude-transcripts
# Convert local Kiro IDE session transcripts
npx chat-dl dir2md ~/.kiro/sessions --output ./kiro-transcripts
# Export every OpenCode session (grouped as <sanitized-full-path>/<YYYY-MM-DD>/<session-id>.md)
npx chat-dl opencode2md --all --output ./opencode-transcripts
# Export one OpenCode session
npx chat-dl opencode2md ses_... --output chat.mdSome shared links are not publicly accessible and require authentication in your browser. Public links use the default Puppeteer browser path. For protected links, use your existing Chrome credentials by enabling Chrome's remote debugging UI and running the tool while Chrome is still open.
For the Chrome DevTools MCP-style auto-connect flow in Chrome 144+:
- Open
chrome://inspect/#remote-debugging - Allow incoming debugging connections
- Run the tool with
--existing-chrome:
npx chat-dl --existing-chrome <protected-share-url>npm install
npm start -- <url>To smoke-test the Claude Code parser and renderer against recent local transcripts:
npm run verify:claude-jsonlThe script checks the latest 100 .jsonl files under ~/.claude/projects by default.
You can override the source and count with CLAUDE_PROJECTS_DIR and
CLAUDE_JSONL_LIMIT.
To check the URL providers against a list of known shared conversations:
npm run verify:urlsEach fixture records the heading count its conversation should render, so a
provider that starts dropping turns fails instead of quietly returning less.
The run bypasses the download cache, forces headless Chrome, and exits non-zero
on any divergence. Pass provider names to narrow it (npm run verify:urls -- gemini),
--cached to reuse downloads, and --blocked to also attempt fixtures that
bot protection rejects in headless Chrome.
Fixtures recorded as broken or blocked document providers that are already
failing: they do not fail the run, but they are reported as FIXED? if they
start working, so the list stays honest.