@mutmutco/kimi-plugin 4.1.13 → 4.1.15
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/.kimi-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/skills/release/SKILL.md +23 -0
package/.kimi-plugin/plugin.json
CHANGED
package/package.json
CHANGED
package/skills/release/SKILL.md
CHANGED
|
@@ -699,6 +699,29 @@ Off the publish environment, either:
|
|
|
699
699
|
- skip the registry identity read with
|
|
700
700
|
`node scripts/release-distribution.mjs verify "X.Y.0" --skip-npm-view` and verify published content
|
|
701
701
|
by hand the same way (including the staged-payload split above when applicable).
|
|
702
|
+
|
|
703
|
+
**Unpacked proof scratch must not pollute the checkout (#5702).** npm unpack copies full package trees
|
|
704
|
+
including staged `skills/` into whatever directory you choose. Those copies are **not** registered skill
|
|
705
|
+
payloads — if they remain anywhere scannable under the repo root when the next release fold runs
|
|
706
|
+
`check-skill-payload`, the gate fails with `unregistered authored or copied skills`. Prefer unpacking
|
|
707
|
+
**outside** the repository:
|
|
708
|
+
```bash
|
|
709
|
+
PROOF=$(mktemp -d "${TMPDIR:-/tmp}/mmi-release-proof.XXXXXX")
|
|
710
|
+
# unpack both tarballs under $PROOF, diff -r, then:
|
|
711
|
+
rm -rf "$PROOF"
|
|
712
|
+
```
|
|
713
|
+
If you must unpack inside the checkout, use the org-managed gitignored scratch at repo-root `tmp/`
|
|
714
|
+
(`mktemp -d tmp/mmi-release-proof.XXXXXX`) — **not** `.jerv/tmp/` (agent session scratch still lives on
|
|
715
|
+
disk and must not carry npm proof trees between releases). Remove the proof tree **immediately** after the
|
|
716
|
+
diff succeeds; do not leave it for the next `--apply`.
|
|
717
|
+
|
|
718
|
+
Before the next `release --apply`, confirm no leftover proof copies remain outside org scratch:
|
|
719
|
+
```bash
|
|
720
|
+
node scripts/check-skill-payload.mjs --contract
|
|
721
|
+
```
|
|
722
|
+
A failure naming `unregistered authored or copied skills` means a proof tree (or other rogue copy) is
|
|
723
|
+
still on disk — delete it and rerun the contract check before retrying the train.
|
|
724
|
+
|
|
702
725
|
Do not treat an off-runner SSRI mismatch as a broken release, and do not change how the runner publishes
|
|
703
726
|
to paper over a local packer difference.
|
|
704
727
|
|