@mutmutco/claude-plugin 3.139.2 → 3.139.3

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mmi",
3
3
  "displayName": "MMI",
4
- "version": "3.139.2",
4
+ "version": "3.139.3",
5
5
  "mmiCompat": "3.x",
6
6
  "description": "MMI workflow skills and org gates delivery.",
7
7
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/claude-plugin",
3
- "version": "3.139.2",
3
+ "version": "3.139.3",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -74,6 +74,12 @@ mmi-cli oracle issue create --type task --batch tmp/epic-children.json --surface
74
74
  placeholder. It prints per-row `{number,url}` results and fails loud on any misfire. Add
75
75
  `--idempotency-key <key>` when a retried loop must not duplicate.
76
76
 
77
+ When creating through `mmi-cli vault secrets use GH_TOKEN -- …`, the `GH_TOKEN` environment override can
78
+ disrupt Hub session discovery and print `board attach skipped — no Hub session token` for batch rows. That
79
+ warning can appear when placement is correct, but it is not harmless or proof of placement: final verification
80
+ must prove every intended child is linked and on the board as Todo with `mmi-cli oracle issue children
81
+ <owner/repo#N> --json`.
82
+
77
83
  The idempotency lookup is find-before-create, not an atomic reservation. Run one batch writer at a time:
78
84
  never submit concurrent creates with the same key. Size the calling command's wall-clock budget for the
79
85
  whole sequential batch. If the command times out, its outcome is unknown — confirm the process has ended,
@@ -82,10 +88,11 @@ wait for writes to quiesce, inspect the children, then retry the missing rows wi
82
88
  ## Step 3 — confirm the tree
83
89
 
84
90
  ```bash
85
- mmi-cli oracle issue children <owner/repo#N> # each child: number/title/state/repo/boardStatus/linkedPrs
91
+ mmi-cli oracle issue children <owner/repo#N> --json # each child: number/title/state/repo/assignee/boardStatus/linkedPrs
86
92
  ```
87
93
 
88
- Verify every intended child is linked and on the board as Todo. To link a child that already existed (not
94
+ This JSON is the final placement authority: verify every intended child is linked and on the board as Todo.
95
+ If it does not prove that placement, investigate and correct the misfire. To link a child that already existed (not
89
96
  part of the batch), use the inverse-friendly single link:
90
97
 
91
98
  ```bash