Does AI Chat Archive work with Claude Projects?

Yes — and there's a dedicated Project Export mode that bundles the entire project (instructions, knowledge docs, all conversations, attachments) into one ZIP. Open any claude.ai/project/<id> page and you'll see the project-export button in the popup and a floating button on the page.

Project Export shipped in v0.3.0 and is gated by the paid license, same as batch export.

Two ways to export Project content

Pick the one that matches your goal:

Goal Use Where
"I want everything from this one project" Project Export (paid) On a claude.ai/project/<id> page
"I want every conversation in my account — projects or not" Batch Export (paid) On a claude.ai/chat/<id> page
"I just want this one chat" Single-chat export (free) On any conversation page

Both ZIPs follow the same per-conversation folder pattern, so anything you import from a batch ZIP will import the same way from a project ZIP.

What Project Export bundles

A single ZIP, named after the project, containing:

Example ZIP layout

<Project Name>/
  README.md
  metadata.json
  instructions.md
  files/
    _INDEX.md
    design-notes.md
    architecture.pdf
    logo.png
    _SKIPPED.md         # only if some files failed
  conversations/
    2026-05-12_API-design-review/
      API-design-review.md
      attachments/      # only when 'Include attachments' is on
    2026-05-13_Auth-refactor/
      Auth-refactor.md
  _INDEX.md
  _INCOMPLETE.md        # only if /docs or /files listing failed

What's not in the export

Format support

Project Export supports four of the five formats: Markdown, HTML, JSON, TXT.

PDF is not supported for Project Export. PDF generation uses the browser's print pipeline, which can only run on one foregrounded chat at a time — the same constraint that excludes PDF from batch ZIP mode. If you need PDFs of project chats, open each one individually and use single-chat export.

Related