235872741b
The publish job reinstalled all 4608 projects' dependencies (~41s) to run two things: `pnpm tsx` and `pnpm pack`. A root-only install is NOT sufficient — verified locally that pnpm pack then dies with ERR_PNPM_CANNOT_RESOLVE_WORKSPACE_PROTOCOL, because pack resolves each package's `workspace:` deps into real version ranges and needs its workspace siblings installed to do it. That resolution is what makes cross-scope canary deps pin the same-run version, so it is load-bearing. The true minimum is root + packages/**: measured 17s vs 46s locally, and the packed tarball still carries resolved ranges (^0.4.0, ^1.64.1) with no leftover workspace: refs. Everything trimmed is examples/ and showcase/ app dependencies that no publish step touches. Safe because no publishable package declares prepack or prepare, so pnpm pack runs no lifecycle scripts; voice's prepublishOnly fires for neither pnpm pack nor `npm publish <tarball>`. Stable keeps the full install — its dependency surface is wider (lib/notion.js, the umbrella verifier's root script) and it is the highest-stakes path. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>