Conversation
These are download/build caches that accumulate silently and regenerate on
demand, so they fit the existing `dev` catalog model:
- Puppeteer ~/.cache/puppeteer (downloaded Chrome builds,
often several hundred MB)
- Playwright ~/Library/Caches/ms-playwright,
~/.cache/ms-playwright (downloaded browser builds)
- node-gyp ~/Library/Caches/node-gyp,
~/.cache/node-gyp (cached Node headers)
- Electron ~/Library/Caches/electron,
~/Library/Caches/electron-builder (@electron/get download cache)
Also adds ~/.npm/_logs to the existing npm entry (debug logs, alongside
_cacache).
Only precise cache directories are targeted; no config roots. README updated.
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 / a full Xcode toolchain.
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
Adds four download/build caches to the
devcatalog (puremac clean dev):~/.cache/puppeteer~/Library/Caches/ms-playwright,~/.cache/ms-playwright~/Library/Caches/node-gyp,~/.cache/node-gyp~/Library/Caches/electron,~/Library/Caches/electron-builder@electron/getdownload cacheAlso appends
~/.npm/_logsto the existing npm entry (debug logs, next to_cacache).Why
These accumulate silently, hold multiple stale versions, and regenerate on demand —
the same profile as the caches already in
dev. None of them are config roots;only the precise cache directories are listed.
Testing
swiftc -parseon the changed file is clean. I could not run a fullswift buildlocally — this machine has Command Line Tools only, and thePackageDescriptionmanifest currently fails to link against the macOS 26 SDK(unrelated to this change). Please confirm via CI or a full Xcode toolchain.
Change is data-only additions to
Catalog.dev, mirroring ~30 existing entries.Scope
One focused change. Docs updated (
cli/README.md— "Whatclean devcovers").