Conversation
Extends the `ai` catalog alongside the existing Ollama / LM Studio / Cursor
entries:
- Claude Desktop ~/Library/Application Support/Claude/{Cache,Code Cache,
GPUCache,DawnGraphiteCache,DawnWebGPUCache} (Electron caches;
Code Cache + Cache alone are commonly 200 MB+)
- ChatGPT Desktop ~/Library/Application Support/com.openai.chat/{Cache,
Code Cache,GPUCache}
- Hugging Face ~/.cache/huggingface (model/dataset
cache; selectedByDefault: false, mirrors the Maven / NuGet
"may hold local installs" convention)
Chromium/Electron cache dirs only; no chat history, no config, no model roots
like ~/.ollama or ~/.lmstudio (already denylisted in Safety).
Note: local `swift build` is blocked here by a Command Line Tools-only toolchain
issue (PackageDescription manifest fails to link against the macOS 26 SDK);
`swiftc -parse` on the changed file is clean. Please confirm via CI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Extends the
aicatalog (puremac clean ai) alongside the existing Ollama /LM Studio / Cursor entries:
~/Library/Application Support/Claude/{Cache,Code Cache,GPUCache,DawnGraphiteCache,DawnWebGPUCache}Cache+Code Cachealone are commonly 200 MB+~/Library/Application Support/com.openai.chat/{Cache,Code Cache,GPUCache}~/.cache/huggingfaceselectedByDefault: false, mirroring the existing Maven / NuGet "may hold local installs" conventionWhy
Electron-based AI desktop apps are now as common as the editors already covered,
and their Chromium cache dirs grow the same way. Only cache directories are
targeted — no chat history, no config, and no model roots (
~/.ollama,~/.lmstudioare already denylisted inSafety).Testing
swiftc -parseon the changed file is clean. Fullswift buildcould not runlocally (Command Line Tools only;
PackageDescriptionmanifest fails to linkagainst the macOS 26 SDK, unrelated to this change). Please confirm via CI.
Data-only additions to
Catalog.ai.Scope
One focused change to
Catalog.swift.