Recover deleted Claude Desktop conversations from Chromium cache

Someone deleted a critical conversation in Claude Desktop. Do not panic — the app is essentially Temu Chromium, and it aggressively caches everything from the server. Here's how to pull your data out of that cache.
Immediate steps
- Fully exit Claude Desktop (File → Exit / Menu → Quit). Use task manager to confirm no process remains.
- Copy the entire cache directory before doing anything else.
Cache location
Windows: %APPDATA%\Claude\Cache\Cache_Data\
macOS: ~/Library/Application Support/Claude/Cache/Cache_Data/
Linux: ~/.config/Claude/Cache/Cache_Data/
You'll see files named index, data_0 through data_3, and f_*. Filter the f_* files by today's date to reduce noise.
Extraction with Claude Code CLI
In a backup of the cache, set up a Python virtual environment and launch Claude Code CLI. Install dependencies:
pip install brotli zstd gzip deflate zip
pip install ccl_chromium_reader # or git clone and install from source
Use this prompt with Claude Code (replace <search phrases here> with your conversation UUID or keywords):
Claude, I have made a boo-boo and deleted very important stuff from my Claude Desktop install, I need you to help recover it!
We are trying to recover conversations and files from a Chromium blockfile cache. The cache files (index, data 0..data_3, f *) are in this directory.
Use the ccl_chromium_reader package to walk every cache entry, decompress the HTTP body, and write each response to its own file in a new "extracted" subdirectory.
Flag any entry whose decoded bodies contains <search phrases here>.
The extracted folder will contain JSON, HTML, and binary files. Your conversation is in whichever response body has a URL containing /chat_conversations/<uuid>. Generated artifacts (docx/pdf) come out as separate files.
Notes
- This is a cache, so everything is not guaranteed to be there — run the recovery as soon as you notice the deletion.
- The same approach works for the claude.ai website: close Chrome, locate its
Cache_Datadirectory, and follow the same extraction steps. - Kudos to cclgroupltd for the
ccl_chromium_readerpackage.
📖 Read the full source: r/ClaudeAI
👀 See Also

vLLM Setup and Testing on 10x NVIDIA V100 Server with 320GB VRAM
A lawyer building a local AI server for legal work shares vLLM testing results on 10x Tesla V100 SXM2 32GB GPUs, detailing what works (FP16 unquantized, bitsandbytes 4-bit) and what doesn't (GPTQ, AWQ, FlashAttention2) on Volta architecture.

Accessing USB Webcams in WSL2 for Local Motion Detection
A developer shares how to use usbipd-win to pass USB webcams from Windows to WSL2, enabling local motion detection with OpenCV without cloud dependencies.

iOS Shortcut Workaround for Sending iPhone Photos to Cowork via iCloud Sync
A developer created an iOS Shortcut called "PhoPo" that converts iPhone photos to JPEG, resizes them, and saves them to an iCloud-synced folder that Cowork can access, enabling Claude to analyze screenshots and photos from mobile devices.

Canary Instance Setup for Safe OpenClaw Upgrades
A Reddit user shares a detailed canary methodology for testing OpenClaw upgrades before production: isolated config root, separate port, smoke test matrix, and a structured upgrade report format.