@mutmutco/codex-plugin 4.3.39 → 4.3.41

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,6 +1,6 @@
1
1
  {
2
2
  "name": "mmi",
3
- "version": "4.3.39",
3
+ "version": "4.3.41",
4
4
  "mmiCompat": "4.x",
5
5
  "description": "MMI workflow skills and org gates delivery.",
6
6
  "author": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mutmutco/codex-plugin",
3
- "version": "4.3.39",
3
+ "version": "4.3.41",
4
4
  "description": "MMI workflow skills and org gates delivery.",
5
5
  "author": {
6
6
  "name": "MMI Future",
@@ -17,8 +17,8 @@ Read-only until the dev says go. Rendering a board is not permission to take it.
17
17
  mmi-cli oracle board read --json --out .jerv/tmp/board.json
18
18
  ```
19
19
 
20
- Use `--out`, never a shell redirect. PowerShell's `>` writes UTF-16LE with a BOM and the next
21
- `JSON.parse` dies at position 1 (#5802); `--out` writes UTF-8 itself.
20
+ Prefer `--out` for a shell-independent UTF-8 receipt. Windows PowerShell 5.1's `>` writes
21
+ UTF-16LE with a BOM (#5802); Bash redirects preserve the CLI's UTF-8 output.
22
22
 
23
23
  One call. Its JSON carries `viewer`, `repo` and the project title — do not spend extra calls on
24
24
  `gh api user` or `gh repo view`. Use `primary` for this repo and `secondary` for other repos on the same
@@ -72,6 +72,9 @@ collision-safe port until META.portRange exists.
72
72
  A stage is **per worktree**. The CLI force-stops only the previous stage **in this worktree**, runs
73
73
  `stage.build`, starts `stage.up`, records `tmp/stage/state.json`, picks a free port from the registry
74
74
  range (skipping ports reserved by sibling worktrees), and polls `stage.healthUrl` when configured.
75
+ Recipes run in Bash, including Git Bash on Windows. Use Bash syntax for build, up and teardown;
76
+ legacy cmd `set VAR=value` and PowerShell `$env:VAR` recipes must be converted to Bash or Node scripts.
77
+ Windows requires Git Bash or an absolute `SHELL` path to its `bash.exe`; there is no cmd fallback.
75
78
  Use `--port` to pin a port when needed:
76
79
 
77
80
  ```bash