@mutmutco/cli 4.3.58 → 4.3.60

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.
Files changed (2) hide show
  1. package/dist/main.cjs +25 -10
  2. package/package.json +1 -1
package/dist/main.cjs CHANGED
@@ -11219,6 +11219,22 @@ async function collectBoardItems(cfg, options, deps) {
11219
11219
  after = void 0;
11220
11220
  }
11221
11221
  } while (after);
11222
+ if (options.activeOnly && nodes.length === 0) {
11223
+ try {
11224
+ const verify = await fetchProjectPage(client, cfg, void 0, void 0);
11225
+ const survivors = (verify.organization?.projectV2?.items.nodes ?? []).filter((node) => !shouldSkipInactiveBoardNode(node, cfg));
11226
+ if (survivors.length) {
11227
+ warnings.push(
11228
+ `partial board read: the active items filter (${ACTIVE_BOARD_ITEMS_FILTER}) returned no rows while ${survivors.length} active item(s) remain on the board \u2014 served by an unfiltered verification scan; GitHub's filtered items query may lag`
11229
+ );
11230
+ partial = true;
11231
+ nodes.push(...survivors);
11232
+ }
11233
+ } catch (e) {
11234
+ warnings.push(`partial board read: the active items filter returned no rows and the unfiltered verification read failed (${e.message}) \u2014 the empty board answer is unverified`);
11235
+ partial = true;
11236
+ }
11237
+ }
11222
11238
  const read = nodesToItems(nodes, warnings, cfg);
11223
11239
  if (read.failures.length) {
11224
11240
  const message2 = `partial board read: ${read.failures.length} item(s) came back truncated and were not read \u2014 ${read.failures.join(" | ")}`;
@@ -15772,10 +15788,10 @@ var rollout_plan_default = {
15772
15788
  note: "The v4.0.0 stamp happens at cut time (D6e #4463); until then the candidate is the origin/development head artifacts (built cli/dist + npm pack), identity proven by dist content hash (D6a)."
15773
15789
  },
15774
15790
  baseline: {
15775
- version: "4.3.58",
15776
- tag: "v4.3.58",
15777
- commit: "aa4958ac3926",
15778
- npm: "@mutmutco/cli@4.3.58"
15791
+ version: "4.3.60",
15792
+ tag: "v4.3.60",
15793
+ commit: "7602c0b24dc9",
15794
+ npm: "@mutmutco/cli@4.3.60"
15779
15795
  },
15780
15796
  exitCriterion: "fleet-n-of-n",
15781
15797
  hubOnlyShortcut: "forbidden",
@@ -15792,14 +15808,14 @@ var rollout_plan_default = {
15792
15808
  repo: "mutmutco/mmi-hub",
15793
15809
  role: "canary",
15794
15810
  schedule: "train",
15795
- v3Target: "v4.3.58"
15811
+ v3Target: "v4.3.60"
15796
15812
  }
15797
15813
  ],
15798
15814
  rollbackTrigger: "Any red inside the post-contract soak window: `devops train gate` FAIL attributable to the v4 doors, Hub endpoint health probe failure, a pre-v4 client admitted instead of receiving actionable HTTP 426, or npm consumer install/doctor failure on the v4-only dist.",
15799
15815
  rollback: {
15800
15816
  independent: true,
15801
- mechanism: "npm dist-tag latest -> 4.3.58 and redeploy the Hub Lambda from tag v4.3.58 (aa4958ac3926); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15802
- v3Target: "v4.3.58 (@mutmutco/cli@4.3.58, tag commit aa4958ac3926 \u2014 last known-good release carrying the repo-index v4-only contract)"
15817
+ mechanism: "npm dist-tag latest -> 4.3.60 and redeploy the Hub Lambda from tag v4.3.60 (7602c0b24dc9); installed clients repair via `mmi-cli doctor`. No other cohort is touched.",
15818
+ v3Target: "v4.3.60 (@mutmutco/cli@4.3.60, tag commit 7602c0b24dc9 \u2014 last known-good release carrying the repo-index v4-only contract)"
15803
15819
  }
15804
15820
  },
15805
15821
  {
@@ -31770,10 +31786,9 @@ var surfaces_default = {
31770
31786
  certification: "Hermes Agent v0.20.1 release v2026.8.13, upstream f80f453ae0679347e38abc917c7f94f717bf96c5 (#5053)"
31771
31787
  },
31772
31788
  enforcementCeilings: [
31773
- "Hermes pre_tool_call blocks only mapped shell and edit/write/patch tool families; disabled plugins enforce nothing.",
31789
+ "MMI ships no Hermes hooks (#5908): the plugin contributes skills and the /mmi command only; enforcement is host-side.",
31774
31790
  "Hermes user plugins are opt-in through plugins.enabled; operator consent and host process isolation remain Hermes-owned.",
31775
- "npm is MMI transport only: MMI-Hub extracts @mutmutco/hermes-plugin into $HERMES_HOME/plugins/mmi and provisions the canonical skills into $HERMES_HOME/skills/mmi/; a fresh Hermes Agent process is required for discovery.",
31776
- "Final assistant output is outside Hermes pre_tool_call hook control."
31791
+ "npm is MMI transport only: MMI-Hub extracts @mutmutco/hermes-plugin into $HERMES_HOME/plugins/mmi and provisions the canonical skills into $HERMES_HOME/skills/mmi/; a fresh Hermes Agent process is required for discovery."
31777
31792
  ]
31778
31793
  }
31779
31794
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/cli",
3
- "version": "4.3.58",
3
+ "version": "4.3.60",
4
4
  "description": "MMI Future CLI — the org dev toolbox and shared cross-IDE engine for every registry-declared MMI coding surface.",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",