Does AI Chat Archive work with Claude Projects?

Short answer: Yes, with full fidelity. Project conversations export exactly like regular conversations, with an added note about which project they belong to and their attached project files referenced.

Claude Projects are workspaces that bundle a conversation with project-level instructions, uploaded knowledge files, and shared context. AI Chat Archive treats project conversations as first-class citizens.

What's exported from a Project conversation

What bulk export does with Projects

When you run Bulk export (paid tier), every conversation is exported — whether or not it belongs to a Project. The ZIP's folder naming doesn't distinguish Project chats from standalone chats; both live at the top level:

ai-chat-archive-2026-04-24.zip
├── 2026-03-12_Designing-a-REST-API/          ← standalone
├── 2026-03-14_Refactoring-the-auth-layer/    ← Project chat
└── …

The transcript itself names the Project in its metadata block, so you can still group them in post-processing.

Are Project files bundled?

Yes, when Include attachments in the ZIP is checked:

The per-conversation transcript retains inline references (> 📎 File: {name}) so you can trace from any chat back to the project files it used.

What's not exported

Example: a Project chat in Markdown

# API design review

> Created: 2026-04-20 10:15 | Updated: 2026-04-20 11:47
> Project: REST API refactor
> Project instructions: You are helping design a v3 REST API. Prefer REST conventions
> over GraphQL. Use explicit error codes.

---

## Human (2026-04-20 10:15):

> 📎 File: api-spec-v2.openapi.yaml
> 📎 File: auth-flow-diagram.png

Can you review the attached spec and suggest improvements for v3?

---

## Claude (2026-04-20 10:16):

Here are my notes on the v2 spec...

Related