@mutmutco/kilo-plugin 3.100.0 → 3.101.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/kilo-plugin",
3
- "version": "3.100.0",
3
+ "version": "3.101.0",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -94,9 +94,14 @@ jobs:
94
94
  # that nobody regenerated it. Worse, a copied `../../x.md` can escape the repo root, which used
95
95
  # to crash the ref-gate outright rather than report (fixed in 3.44.0). Checking staleness first
96
96
  # names the actual cause and the one-command fix.
97
+ # MMI-Hub#4264: `@mutmutco/cli` is published to public npm, but a repo's own .npmrc may scope
98
+ # the ENTIRE @mutmutco/* namespace to GitHub Packages (e.g. mmi-pulse, for its private
99
+ # @mutmutco/fofu-ds dependency) — that scope mapping shadows this install with a 404. Pin the
100
+ # scoped registry back to public npm for just this command; a repo with no such override sees
101
+ # no behavior change since that already resolves to the public registry by default.
97
102
  - name: Doc index freshness
98
- run: npx -y @mutmutco/cli@latest docs index --check
103
+ run: npx -y --@mutmutco:registry=https://registry.npmjs.org @mutmutco/cli@latest docs index --check
99
104
  working-directory: '.'
100
105
  - name: Doc ref-gate
101
- run: npx -y @mutmutco/cli@latest docs refs
106
+ run: npx -y --@mutmutco:registry=https://registry.npmjs.org @mutmutco/cli@latest docs refs
102
107
  working-directory: '.'