← Docs hub

ChatGPT adapter

Ingests your ChatGPT conversation export (conversations.json) so every chat you ever had becomes part of the wiki alongside Claude Code / Codex / Cursor sessions.

Opt-in — the adapter is marked is_ai_session = True but default: no because the source file lives in a user-chosen path.

What it reads

A single conversations.json exported via Settings → Data Controls → Export Data in the ChatGPT web app. The file carries every conversation in your account. The adapter:

  1. Parses the parent→children mapping tree for each conversation.
  2. Linearises the active chain (the one that made it to the final response) — no dead branches.
  3. Extracts role + text per node, skipping tool / system nodes.
  4. Emits frontmatter-tagged markdown under raw/sessions/chatgpt/.

Enable it

Copy the export somewhere stable (e.g. ~/Documents/chatgpt-export/) and point the adapter at conversations.json:

// sessions_config.json
{
  "chatgpt": {
    "enabled": true,
    "conversations_json": "~/Documents/chatgpt-export/conversations.json"
  }
}

Then:

llmwiki sync --adapter chatgpt

If enabled is omitted the adapter stays silent (AI-session-opt-in rule from #326 doesn't apply because the default conversations_json path is unknown — we need explicit opt-in).

Output layout

raw/sessions/chatgpt/<YYYY-MM-DDTHH-MM>-chatgpt-<slug>.md

Where <slug> comes from the conversation title (sanitised to filesystem-safe chars via the usual slug normaliser).

Gotchas

Code

See also

Keyboard shortcuts

⌘K / Ctrl+KOpen command palette
/Focus search
g hGo to home
g pGo to projects
g sGo to sessions
j / kNext / prev row (tables)
?Show this help
EscClose dialogs

Structured queries

Mix key:value filters with free text in the palette:

type:sessionOnly session pages
project:llm-wikiFilter by project name (substring)
model:claudeFilter by model name (substring)
date:>2026-03-01Sessions after a date
date:<2026-04-01Sessions before a date
tags:rustPages mentioning a tag/topic
sort:dateSort results by date (newest first)

Example: type:session project:llm-wiki date:>2026-04 sort:date