@mutmutco/codex-plugin 4.3.4 → 4.3.5
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/.codex-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/release/SKILL.md +10 -2
package/package.json
CHANGED
package/skills/release/SKILL.md
CHANGED
|
@@ -812,7 +812,10 @@ node scripts/release-distribution.mjs verify "X.Y.0"
|
|
|
812
812
|
Removing that proof tree afterwards: `npm ci` writes `node_modules`, which `git status --porcelain`
|
|
813
813
|
never shows and which makes `git worktree remove` refuse with `Directory not empty`. Delete
|
|
814
814
|
`node_modules` first, then remove the worktree. On Windows a global install made from a worktree leaves
|
|
815
|
-
a junction there, so delete the directory rather than following it.
|
|
815
|
+
a junction there, so delete the directory rather than following it. In a guarded agent shell pass the
|
|
816
|
+
**literal absolute** proof path to `git worktree remove` — the checkout guard refuses a variable-held
|
|
817
|
+
target (`Blocked git worktree remove with an unanalyzable variable-held target`, #2492 / #6060); only an
|
|
818
|
+
interactive shell may pass `"$PROOF"`.
|
|
816
819
|
Release-blocking for Hub tooling changes: every public artifact must match the registry version and BOM
|
|
817
820
|
identity. Manual fallback if CI can't publish: `node scripts/release-distribution.mjs publish "X.Y.0"`
|
|
818
821
|
from a machine with npm auth.
|
|
@@ -851,7 +854,12 @@ cross-environment shape for surfaces with no publish-time staged payload, not a
|
|
|
851
854
|
Off the publish environment, either:
|
|
852
855
|
- fall back to an **unpacked-content** proof — download the registry tarball (`npm pack <pkg>@X.Y.Z`
|
|
853
856
|
from the registry, or `npm view … dist.tarball`), `npm pack` from the tag checkout, unpack both, and
|
|
854
|
-
compare the trees (do not alarm on SSRI alone).
|
|
857
|
+
compare the trees (do not alarm on SSRI alone). On Windows unpack with the native
|
|
858
|
+
`%SystemRoot%\System32\tar.exe` named explicitly — a bare `tar.exe` can resolve to Git's GNU tar
|
|
859
|
+
through PATH, which reads a drive-letter path as a remote host (`Cannot connect to C: resolve
|
|
860
|
+
failed`, #6059) — and run `npm pack` from the package directory (`cd` there; no positional path
|
|
861
|
+
and no `--pack-destination` under a path with spaces), since routing npm through `cmd.exe /c`
|
|
862
|
+
reparses quoted paths (#6058). Hub host-plugin npm surfaces stage the canonical
|
|
855
863
|
`skills/` tree and declared hook-policy `scripts/` into the package at publish time via
|
|
856
864
|
`assembleDeclaredPayloads` (#5471); those paths are gitignored and absent from a plain tag checkout,
|
|
857
865
|
so a local `npm pack` without staging cannot reproduce them and an empty `diff -r` is an unreachable
|