release-skill 0.1.7 → 0.1.8

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 (63) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.codex-plugin/plugin.json +2 -2
  4. package/.kimi-plugin/plugin.json +27 -0
  5. package/CHANGELOG.md +22 -0
  6. package/INSTALL.md +73 -2
  7. package/INSTALL.zh-CN.md +94 -99
  8. package/README.md +49 -35
  9. package/README.zh-CN.md +82 -321
  10. package/adapters/claude/.claude-plugin/marketplace.json +1 -1
  11. package/adapters/claude/.claude-plugin/plugin.json +1 -1
  12. package/adapters/claude/bin/release-skill.bundle.mjs +1061 -182
  13. package/adapters/claude/schemas/.render-manifest.json +4 -4
  14. package/adapters/claude/schemas/release-plan.schema.json +20 -2
  15. package/adapters/claude/schemas/release-project.schema.json +22 -4
  16. package/adapters/claude/schemas/release-run.schema.json +1 -0
  17. package/adapters/codex/.codex-plugin/plugin.json +2 -2
  18. package/adapters/codex/bin/release-skill.bundle.mjs +1061 -182
  19. package/adapters/codex/schemas/.render-manifest.json +4 -4
  20. package/adapters/codex/schemas/release-plan.schema.json +20 -2
  21. package/adapters/codex/schemas/release-project.schema.json +22 -4
  22. package/adapters/codex/schemas/release-run.schema.json +1 -0
  23. package/adapters/kimi/.kimi-plugin/plugin.json +27 -0
  24. package/adapters/kimi/bin/release-skill.bundle.mjs +84415 -0
  25. package/adapters/kimi/bin/release-skill.mjs +54 -0
  26. package/adapters/kimi/native/safe-write/binding.gyp +41 -0
  27. package/adapters/kimi/native/safe-write/prebuilds/darwin-arm64/safe_write.node +0 -0
  28. package/adapters/kimi/native/safe-write/prebuilds.json +24 -0
  29. package/adapters/kimi/native/safe-write/src/safe_write.cc +2032 -0
  30. package/adapters/kimi/schemas/.render-manifest.json +37 -0
  31. package/adapters/kimi/schemas/approval-record.schema.json +115 -0
  32. package/adapters/kimi/schemas/artifact-lock.schema.json +111 -0
  33. package/adapters/kimi/schemas/artifact-plan.schema.json +52 -0
  34. package/adapters/kimi/schemas/artifact-policy.schema.json +76 -0
  35. package/adapters/kimi/schemas/evidence-event.schema.json +89 -0
  36. package/adapters/kimi/schemas/release-plan.schema.json +878 -0
  37. package/adapters/kimi/schemas/release-project.schema.json +895 -0
  38. package/adapters/kimi/schemas/release-run.schema.json +343 -0
  39. package/adapters/kimi/skills/release-assess/SKILL.md +58 -0
  40. package/adapters/kimi/skills/release-help/SKILL.md +84 -0
  41. package/adapters/kimi/skills/release-prepare/SKILL.md +99 -0
  42. package/adapters/kimi/skills/release-publish/SKILL.md +64 -0
  43. package/adapters/kimi/skills/release-reconcile/SKILL.md +80 -0
  44. package/adapters/kimi/skills/release-setup/SKILL.md +102 -0
  45. package/adapters/kimi/skills/release-verify/SKILL.md +77 -0
  46. package/bin/release-skill-cli.mjs +16 -4
  47. package/bin/release-skill.bundle.mjs +1061 -182
  48. package/package.json +4 -2
  49. package/schemas/.render-manifest.json +4 -4
  50. package/schemas/release-plan.schema.json +20 -2
  51. package/schemas/release-project.schema.json +22 -4
  52. package/schemas/release-run.schema.json +1 -0
  53. package/src/adapters/contract.mjs +1 -0
  54. package/src/adapters/plugin-marketplace.mjs +990 -30
  55. package/src/commands/assess.mjs +50 -1
  56. package/src/commands/prepare.mjs +65 -0
  57. package/src/commands/publish.mjs +3 -0
  58. package/src/commands/reconcile.mjs +3 -0
  59. package/src/commands/setup.mjs +10 -5
  60. package/src/commands/verify.mjs +16 -6
  61. package/src/core/plan.mjs +118 -0
  62. package/src/core/verification-gates.mjs +1 -1
  63. package/src/producers/build-adapters.mjs +38 -8
@@ -22,12 +22,12 @@
22
22
  "bytes": 2390
23
23
  },
24
24
  "release-plan.schema.json": {
25
- "digest": "13baa16d9a762cc04c7f28fc9d31ed81d381008c71eb044f4e97de252b4cc324",
26
- "bytes": 22942
25
+ "digest": "69feff34b2fee517fd9ae89f576840c0abf331df9e9537f2798f62fab9a6720f",
26
+ "bytes": 23091
27
27
  },
28
28
  "release-project.schema.json": {
29
- "digest": "4e46d6b1956a14d01471e7cf1cde3c0a6971c4f8844603fedd2a52f3535a43b6",
30
- "bytes": 24167
29
+ "digest": "e9e3d090ee9c7a963e7346250328e30bf91a16a0962e5bc85deeab7c756c9e95",
30
+ "bytes": 24329
31
31
  },
32
32
  "release-run.schema.json": {
33
33
  "digest": "74f087f8815f00997c6ad3bac033660b9b69de226a6f5c48a96194dba0fa872c",
@@ -348,7 +348,8 @@
348
348
  "enum": [
349
349
  "npm",
350
350
  "claude-plugin",
351
- "codex-plugin"
351
+ "codex-plugin",
352
+ "kimi-plugin"
352
353
  ]
353
354
  },
354
355
  "package": {
@@ -447,6 +448,21 @@
447
448
  ]
448
449
  }
449
450
  },
451
+ {
452
+ "if": {
453
+ "properties": {
454
+ "type": {
455
+ "const": "kimi-plugin"
456
+ }
457
+ }
458
+ },
459
+ "then": {
460
+ "required": [
461
+ "plugin",
462
+ "entrySkill"
463
+ ]
464
+ }
465
+ },
450
466
  {
451
467
  "if": {
452
468
  "required": [
@@ -650,6 +666,7 @@
650
666
  "github-release",
651
667
  "claude-marketplace-install",
652
668
  "codex-marketplace-install",
669
+ "kimi-marketplace-install",
653
670
  "set-default-branch"
654
671
  ]
655
672
  },
@@ -775,7 +792,8 @@
775
792
  "enum": [
776
793
  "npm",
777
794
  "claude-plugin",
778
- "codex-plugin"
795
+ "codex-plugin",
796
+ "kimi-plugin"
779
797
  ]
780
798
  }
781
799
  }
@@ -138,7 +138,8 @@
138
138
  "enum": [
139
139
  "npm",
140
140
  "claude-plugin",
141
- "codex-plugin"
141
+ "codex-plugin",
142
+ "kimi-plugin"
142
143
  ]
143
144
  },
144
145
  "package": {
@@ -205,7 +206,7 @@
205
206
  "type": "integer",
206
207
  "minimum": 30000,
207
208
  "maximum": 900000,
208
- "description": "Timeout in milliseconds for plugin marketplace install commands. Only valid for claude-plugin and codex-plugin distributions."
209
+ "description": "Timeout in milliseconds for plugin marketplace install commands (claude-plugin, codex-plugin). Kimi Code has no scriptable install command, so for kimi-plugin this bounds the read-only observation/verification only, not an install command. Only valid for claude-plugin, codex-plugin, and kimi-plugin distributions."
209
210
  }
210
211
  },
211
212
  "allOf": [
@@ -236,7 +237,8 @@
236
237
  "type": {
237
238
  "enum": [
238
239
  "claude-plugin",
239
- "codex-plugin"
240
+ "codex-plugin",
241
+ "kimi-plugin"
240
242
  ]
241
243
  }
242
244
  }
@@ -261,6 +263,21 @@
261
263
  ]
262
264
  }
263
265
  },
266
+ {
267
+ "if": {
268
+ "properties": {
269
+ "type": {
270
+ "const": "kimi-plugin"
271
+ }
272
+ }
273
+ },
274
+ "then": {
275
+ "required": [
276
+ "plugin",
277
+ "entrySkill"
278
+ ]
279
+ }
280
+ },
264
281
  {
265
282
  "if": {
266
283
  "required": [
@@ -792,7 +809,8 @@
792
809
  "enum": [
793
810
  "npm",
794
811
  "claude-plugin",
795
- "codex-plugin"
812
+ "codex-plugin",
813
+ "kimi-plugin"
796
814
  ]
797
815
  }
798
816
  }
@@ -126,6 +126,7 @@
126
126
  "github-release",
127
127
  "claude-marketplace-install",
128
128
  "codex-marketplace-install",
129
+ "kimi-marketplace-install",
129
130
  "set-default-branch"
130
131
  ],
131
132
  "description": "Type of external action"
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "release-skill",
3
+ "version": "0.1.8",
4
+ "description": "Safe preparation and frozen GitHub/npm production publishing with full happy end verification",
5
+ "author": {
6
+ "name": "广州市风荷科技有限公司"
7
+ },
8
+ "license": "MIT",
9
+ "homepage": "https://github.com/ifoohoo/release-skill#readme",
10
+ "keywords": [
11
+ "release",
12
+ "publish",
13
+ "governance",
14
+ "skill",
15
+ "claude-code",
16
+ "codex",
17
+ "kimi-code"
18
+ ],
19
+ "skills": "./skills/",
20
+ "interface": {
21
+ "displayName": "Release Skill",
22
+ "shortDescription": "Safe preparation and frozen GitHub/npm publishing",
23
+ "longDescription": "Prepares byte-faithful public snapshots without rewriting project source files and publishes approved frozen GitHub/npm artifacts. Full happy end verification confirms consumer installation from frozen Git ref.",
24
+ "developerName": "ifoohoo",
25
+ "websiteURL": "https://github.com/ifoohoo/release-skill"
26
+ }
27
+ }