[BUG] I archived my Claude Cowork chats and they are nowhere to be found.
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
I archived (did NOT delete) my Claude Cowork chats, and I am unable to see them anywhere.
There is no Archive section anywhere.
They are not listed under Chats.
They are not listed in any Projects.
What Should Happen?
According to Claude Code,
"To unarchive Cowork chats, do it directly in the Claude.ai web interface:
- Go to https://claude.ai
- In the left sidebar, look for an Archived section or a filter/toggle for archived conversations
- Select the archived Cowork chats you want to restore
- Use the unarchive/restore option
If you don't see an archived section, check for a menu or settings icon in the sidebar that lets you show
archived chats.
If you're still stuck, you can report the issue or ask for support at:
- https://github.com/anthropics/claude-code/issues (for Claude Code issues)
- Or reach out via the help options within claude.ai itself for account-related questions. "
According to Claude.ai
"In the Claude desktop app and Claude.ai, you can find your archived chats by:
Click on the sidebar (the conversation list on the left)
Look for the "Archived" section or filter at the bottom of the sidebar, or use the search/filter options to show archived conversations
If you're having trouble finding it, the exact location can vary slightly depending on whether you're using the desktop app, web interface, or which version you have. You can also use the search function to find specific conversations by keyword, which will search across both active and archived chats."
Error Messages/Logs
N/A
Steps to Reproduce
Archive Claude chats.
Then try to find them anywhere.
Claude Model
Opus
Is this a regression?
No, this never worked
Last Working Version
_No response_
Claude Code Version
Claude Code v2.1.30
Platform
Anthropic API
Operating System
macOS
Terminal/Shell
Cursor
Additional Information
_No response_
31 Comments
any resolution to this? I had the same problem
any resolution to this? I had the same problem :(
I had the same problem too
any resolution to this? I had the same problem too
no
________________________________
From: Tian @.*>
Sent: Thursday, February 26, 2026 3:11 PM
To: anthropics/claude-code @.*>
Cc: SRMillerick @.>; Comment @.>
Subject: Re: [anthropics/claude-code] [BUG] I archived my Claude Cowork chats and they are nowhere to be found. (Issue #22931)
[https://avatars.githubusercontent.com/u/13551379?s=20&v=4]caturseptian left a comment (anthropics/claude-code#22931)<https://github.com/anthropics/claude-code/issues/22931#issuecomment-3969778950>
any resolution to this? I had the same problem too
—
Reply to this email directly, view it on GitHub<https://github.com/anthropics/claude-code/issues/22931#issuecomment-3969778950>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/A7ZSZGF23CJ2R3LV4WTLQML4N54STAVCNFSM6AAAAACT4FODPCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTSNRZG43TQOJVGA>.
You are receiving this because you commented.Message ID: @.***>
Just went through this on a Mac - have not tested on windows, but you can find the CoWork files and unarchive them!
This command will list all JSON files for cowork that are archived, atleast on a mac, and you can go change isArchived from true to false in the file, restart Claude, and it comes back! :-)
Surely there'll be a similar thing for Windows as well.
Yeah, this appears to be an oversight in the UI/UX. Hopefully it gets fixed!
Same here. Hope it gets fixed soon, Cowork changed something on my Mac and I only found out that that change made another application unusable after I archived the chat. Now I have to figure out what Cowork exactly changed..
Additional finding: sessions invisible even when NOT archived
Forensic investigation on macOS reveals this is broader than the archive UI. Cowork sessions stored in
local-agent-mode-sessions/can become invisible even withisArchived: false.Root cause: Two separate session managers coexist in the desktop app:
LocalAgentModeSessions— manages Cowork sessions → writes tolocal-agent-mode-sessions/LocalSessions— manages Code tab sessions → writes toclaude-code-sessions/The Code tab sidebar only reads from
claude-code-sessions/. If the Cowork tab doesn't surface a session (for any reason — scroll position, UI state, update), it effectively disappears. There's no unified session list across the two directories.Key evidence:
local-agent-mode-sessions/withisArchived: false, invisible in the UImain.logconfirms all 171 events for the affected session routed throughLocalAgentModeSessions, with only 2LocalSessionsreferences (from a manual file copy to restore visibility)Workaround (extends @nicko170's approach for the non-archived case):
Copying the session JSON metadata from the old directory to the new one makes them appear in the Code tab:
VM/Cowork sessions will show "Folder no longer exists" in the Code tab (since their
cwdis a VM path like/sessions/...), but conversation history still loads from the server. Related: #29373.Suggested fix: The app should either read from both directories, or run a migration on startup. The current state silently orphans user data.
Workaround for macOS — restore archived Cowork sessions via manual JSON edit
The archived session files are stored locally on your Mac. The UI bug prevents them from showing up, but the data is still there. Here's how to restore them:
Step 1: Find the session file
Each Cowork session has a
local_{session-id}.jsonfile in:If you don't know the session ID, search by a keyword from the session title:
Step 2: Set
isArchivedtofalseReplace the path with the one found in step 1:
Step 3: Restart Claude Desktop
The session should now appear in the Cowork sidebar again.
---
Tested on macOS with Claude Desktop. The
isArchivedflag is correctly written to the JSON file when archiving, but the Cowork UI does not expose any way to view or restore archived sessions — hence this workaround.I'm facing the same problem with the web interface and ios app. Once a project is archived there's no way to retrieve it afterwards.
Confirmed workaround: programmatic unarchive via Cowork session
Built a reusable workflow for this. The session JSON files live at:
~/Library/Application Support/Claude/local-agent-mode-sessions/{account-id}/{user-id}/local_{session-id}.json
To find the right file by keyword (e.g., session title):
To unarchive:
Then Cmd+Q and relaunch Claude Desktop. Session reappears in sidebar.
Tested on macOS, Claude Desktop (Cowork mode). The
isArchivedflag is the only gate — no other state needs to change for the session to render again.Well, I wish there was an option to delete as well, just archiving is not always suitable.
confirmed @ChrisLehnen workardound today (Claude 1.1.7714 (3bd6f6) 2026-03-19T14:50:53.000Z). location of json file was slightly different than described above, but it's essentially there.
this is nuts.
I built a GUI tool that lets you view, restore, and delete archived Cowork sessions from your browser.
It reads the session JSON files directly and provides a simple web UI to manage them — no manual JSON editing required.
Restore archived sessions (sets isArchived to false)
Permanently delete sessions you no longer need
Works on macOS, Windows, and Linux
No external dependencies (Python 3.8+ only)
Bilingual UI (English / Japanese)
https://github.com/SugaCrypto/cowork-archive-manager
Hope this helps until the bug is fixed!
Thank you! It worked on my MacOS!!
Another victim of this unbelievably bad bug.
Just wanted to add another voice - 2X full months after it was first reported.,
Much work lost. Little faith remaining.
I can't believe this has gone on so long un-fixed.
It would make more sense to just re-label the "Archive" button to "Delete", so we don't have the illusion that these can be recovered.
@Genkilabs I wish it deleted the session, but it also keeps the underlying files.
Well, big thanks to SugaCrypto for his tool. It lets you either restore or fully delete. Bulk action too.
<img width="1024" height="925" alt="Image" src="https://github.com/user-attachments/assets/0d9fe2a8-602b-41a7-8411-3ad302151602" />
Incredibly backwards feature! No idea why this is approved in the first place. are yall trying to force new usage through this behavior? regardless, this needs to fixed
+1 on this bug. Same issue on Windows.
"Archive" by definition means storing for later retrieval — not permanently hiding with no recovery path. This is a fundamental UX failure: the action is named "Archive" but behaves like a soft delete without any interface to access the archived content.
What I expected: archived conversations to be accessible under an "Archived" section or filter, just like any email client (Gmail, Outlook) or note-taking app treats archives.
What actually happens: conversations disappear from the UI entirely with no way to view, restore, or even confirm they still exist.
This is especially problematic for Cowork sessions where ongoing work context is stored. Losing access to an archived session means losing track of prior decisions, file references, and task progress.
Minimum viable fix: expose a list of archived conversations (read-only access would already be a significant improvement). Full fix: add an unarchive/restore option.
To view archived chats in Cowork :
Open Cowork
Hover your mouse over "Recents" (left panel)
You will see "View All >" that will appear. Click on it.
From there you can view your "Archived" conversations
Problem: I wasn't able to un-archive a conversation that I archived by mistake.
Yep, I came here to say this. Just stumbled on it myself. This works.
Bug Report: "Archive" function in Cowork deletes projects instead of archiving them — no recovery possible
Related issues: #22931, #24534, #25304
---
Summary
When a project is archived in Claude Cowork (Windows), it disappears from the interface with no way to recover it. After a thorough investigation of the local file system, I confirmed that the archived status is not stored locally — suggesting that either the data is silently deleted or stored server-side with no accessible recovery interface. The result for the user is the same: archived projects are permanently lost.
---
Environment
%LOCALAPPDATA%\Packages\Claude_pzs8sxrjxfjjc\---
Steps to reproduce
---
Investigation: local file system analysis
The session data is stored at:
A full recursive scan of all JSON files in this directory was performed using PowerShell (via
substto work around the 260-character path limit on Windows).Findings:
"isArchived": false"isArchived": truereturned zero results across all 177 JSON files"archived"(case-insensitive) returned only the two active sessions, both withfalsespaces.jsonfile contains workspace configuration but no archive-related fieldscowork-gb-cache.jsonfile contains only feature flags downloaded from Anthropic's servers — no project stateConclusion from the investigation:
The archived status is not persisted locally in any form. Projects that were previously active and then archived do not appear anywhere in the local file system. This means either:
In either case, the practical outcome is permanent, silent data loss presented to the user as a reversible "archive" action.
---
Expected behavior
Actual behavior
---
Additional notes
"isArchived": falsein local JSON files, but based on this investigation, that field only exists for active sessions — archived sessions have no corresponding local file at all, making that tool ineffective for true recovery---
Request
Please clarify:
Given that this is a paid product, users expect "archive" to mean reversible storage — not silent deletion.
+1 to this, please fix
@melaboudi - the workaround was helpful, thanks
Just why? Why does Anthropic even allow to archive to nowhere? Of course, it's terrible bug.
I have the same problem
+1, confirming on Windows 11, Cowork mode.
A use case that might help prioritize this: the Cowork sidebar accumulates many task threads and becomes a real cognitive load. "Move to Archive" is exactly the declutter tool I'd reach for — but I can't trust it, because there is no supported unarchive path.
@melaboudi's tip (Recents → View All → Archived) does let me see archived chats, which helps — but there is still no way to restore them from the UI.
It's worse on Windows: per @razielpanic's forensic analysis above, archived sessions don't appear to persist
isArchivedlocally on Windows at all, so the macOS JSON-edit workaround doesn't reliably apply here. That makes "Archive" behave like a silent delete.Request: an "Archived" view with a working unarchive/restore, plus a guarantee that archiving never means permanent deletion.
any resolution to this? I had the same problem too in Desktop.