release-skill 0.2.0 → 0.2.2
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/.codebuddy-plugin/plugin.json +10 -0
- package/.codex-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +1 -1
- package/CHANGELOG.md +35 -0
- package/INSTALL.md +186 -4
- package/INSTALL.zh-CN.md +166 -4
- package/README.md +116 -13
- package/README.zh-CN.md +73 -13
- package/adapters/claude/.claude-plugin/marketplace.json +1 -1
- package/adapters/claude/.claude-plugin/plugin.json +1 -1
- package/adapters/claude/bin/release-skill.bundle.mjs +1718 -600
- package/adapters/claude/schemas/release-plan.schema.json +44 -2
- package/adapters/claude/schemas/release-project.schema.json +46 -4
- package/adapters/claude/schemas/release-run.schema.json +1 -0
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/bin/release-skill.bundle.mjs +1718 -600
- package/adapters/codex/schemas/release-plan.schema.json +44 -2
- package/adapters/codex/schemas/release-project.schema.json +46 -4
- package/adapters/codex/schemas/release-run.schema.json +1 -0
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +1718 -600
- package/adapters/kimi/schemas/release-plan.schema.json +44 -2
- package/adapters/kimi/schemas/release-project.schema.json +46 -4
- package/adapters/kimi/schemas/release-run.schema.json +1 -0
- package/adapters/workbuddy/.codebuddy-plugin/plugin.json +12 -0
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +86481 -0
- package/adapters/workbuddy/bin/release-skill.mjs +54 -0
- package/adapters/workbuddy/native/safe-write/binding.gyp +41 -0
- package/adapters/workbuddy/native/safe-write/prebuilds/darwin-arm64/safe_write.node +0 -0
- package/adapters/workbuddy/native/safe-write/prebuilds.json +24 -0
- package/adapters/workbuddy/native/safe-write/src/safe_write.cc +2032 -0
- package/adapters/workbuddy/schemas/.render-manifest.json +37 -0
- package/adapters/workbuddy/schemas/approval-record.schema.json +115 -0
- package/adapters/workbuddy/schemas/artifact-lock.schema.json +111 -0
- package/adapters/workbuddy/schemas/artifact-plan.schema.json +52 -0
- package/adapters/workbuddy/schemas/artifact-policy.schema.json +76 -0
- package/adapters/workbuddy/schemas/evidence-event.schema.json +89 -0
- package/adapters/workbuddy/schemas/release-plan.schema.json +924 -0
- package/adapters/workbuddy/schemas/release-project.schema.json +951 -0
- package/adapters/workbuddy/schemas/release-run.schema.json +344 -0
- package/adapters/workbuddy/skills/release-assess/SKILL.md +51 -0
- package/adapters/workbuddy/skills/release-help/SKILL.md +77 -0
- package/adapters/workbuddy/skills/release-prepare/SKILL.md +92 -0
- package/adapters/workbuddy/skills/release-publish/SKILL.md +57 -0
- package/adapters/workbuddy/skills/release-reconcile/SKILL.md +73 -0
- package/adapters/workbuddy/skills/release-setup/SKILL.md +95 -0
- package/adapters/workbuddy/skills/release-verify/SKILL.md +70 -0
- package/bin/release-skill-cli.mjs +46 -4
- package/bin/release-skill.bundle.mjs +1718 -600
- package/package.json +2 -1
- package/references/02-project-config.md +7 -0
- package/references/06-adapter-contract.md +21 -2
- package/schemas/release-plan.schema.json +44 -2
- package/schemas/release-project.schema.json +46 -4
- package/schemas/release-run.schema.json +1 -0
- package/scripts/sync-public-files.mjs +27 -4
- package/src/adapters/contract.mjs +1 -0
- package/src/adapters/plugin-marketplace.mjs +536 -23
- package/src/commands/assess.mjs +50 -1
- package/src/commands/prepare.mjs +273 -9
- package/src/commands/publish.mjs +1 -0
- package/src/commands/reconcile.mjs +1 -0
- package/src/commands/setup.mjs +7 -3
- package/src/commands/verify.mjs +2 -0
- package/src/core/checkpoints.mjs +7 -2
- package/src/core/plan.mjs +97 -4
- package/src/core/verification-gates.mjs +1 -1
- package/src/platforms/codebuddy.mjs +618 -0
- package/src/platforms/registry.mjs +100 -5
- package/src/producers/build-adapters.mjs +48 -6
|
@@ -353,7 +353,8 @@
|
|
|
353
353
|
"npm",
|
|
354
354
|
"claude-plugin",
|
|
355
355
|
"codex-plugin",
|
|
356
|
-
"kimi-plugin"
|
|
356
|
+
"kimi-plugin",
|
|
357
|
+
"codebuddy-plugin"
|
|
357
358
|
]
|
|
358
359
|
},
|
|
359
360
|
"package": {
|
|
@@ -397,6 +398,11 @@
|
|
|
397
398
|
"minLength": 1,
|
|
398
399
|
"pattern": "^[a-z0-9][a-z0-9._-]*$"
|
|
399
400
|
},
|
|
401
|
+
"marketplaceRepo": {
|
|
402
|
+
"type": "string",
|
|
403
|
+
"pattern": "^[a-z0-9][a-z0-9._-]*/[a-z0-9][a-z0-9._-]*$",
|
|
404
|
+
"description": "外部独立市场仓库 owner/name;存在即启用外部市场形态"
|
|
405
|
+
},
|
|
400
406
|
"entrySkill": {
|
|
401
407
|
"type": "string",
|
|
402
408
|
"minLength": 1,
|
|
@@ -467,6 +473,40 @@
|
|
|
467
473
|
]
|
|
468
474
|
}
|
|
469
475
|
},
|
|
476
|
+
{
|
|
477
|
+
"if": {
|
|
478
|
+
"properties": {
|
|
479
|
+
"type": {
|
|
480
|
+
"const": "codebuddy-plugin"
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"then": {
|
|
485
|
+
"required": [
|
|
486
|
+
"plugin",
|
|
487
|
+
"entrySkill"
|
|
488
|
+
]
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
{
|
|
492
|
+
"if": {
|
|
493
|
+
"properties": {
|
|
494
|
+
"type": {
|
|
495
|
+
"enum": [
|
|
496
|
+
"kimi-plugin",
|
|
497
|
+
"codebuddy-plugin"
|
|
498
|
+
]
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
"then": {
|
|
503
|
+
"not": {
|
|
504
|
+
"required": [
|
|
505
|
+
"marketplaceRepo"
|
|
506
|
+
]
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
},
|
|
470
510
|
{
|
|
471
511
|
"if": {
|
|
472
512
|
"required": [
|
|
@@ -671,6 +711,7 @@
|
|
|
671
711
|
"claude-marketplace-install",
|
|
672
712
|
"codex-marketplace-install",
|
|
673
713
|
"kimi-marketplace-install",
|
|
714
|
+
"codebuddy-marketplace-install",
|
|
674
715
|
"set-default-branch"
|
|
675
716
|
]
|
|
676
717
|
},
|
|
@@ -797,7 +838,8 @@
|
|
|
797
838
|
"npm",
|
|
798
839
|
"claude-plugin",
|
|
799
840
|
"codex-plugin",
|
|
800
|
-
"kimi-plugin"
|
|
841
|
+
"kimi-plugin",
|
|
842
|
+
"codebuddy-plugin"
|
|
801
843
|
]
|
|
802
844
|
}
|
|
803
845
|
}
|
|
@@ -139,7 +139,8 @@
|
|
|
139
139
|
"npm",
|
|
140
140
|
"claude-plugin",
|
|
141
141
|
"codex-plugin",
|
|
142
|
-
"kimi-plugin"
|
|
142
|
+
"kimi-plugin",
|
|
143
|
+
"codebuddy-plugin"
|
|
143
144
|
]
|
|
144
145
|
},
|
|
145
146
|
"package": {
|
|
@@ -184,6 +185,11 @@
|
|
|
184
185
|
"minLength": 1,
|
|
185
186
|
"pattern": "^[a-z0-9][a-z0-9._-]*$"
|
|
186
187
|
},
|
|
188
|
+
"marketplaceRepo": {
|
|
189
|
+
"type": "string",
|
|
190
|
+
"pattern": "^[a-z0-9][a-z0-9._-]*/[a-z0-9][a-z0-9._-]*$",
|
|
191
|
+
"description": "外部独立市场仓库 owner/name;存在即启用外部市场形态"
|
|
192
|
+
},
|
|
187
193
|
"entrySkill": {
|
|
188
194
|
"type": "string",
|
|
189
195
|
"minLength": 1,
|
|
@@ -206,7 +212,7 @@
|
|
|
206
212
|
"type": "integer",
|
|
207
213
|
"minimum": 30000,
|
|
208
214
|
"maximum": 900000,
|
|
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
|
|
215
|
+
"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. CodeBuddy/WorkBuddy has no scriptable install command that can pin a frozen ref, so for codebuddy-plugin this likewise bounds the read-only observation/verification only. Only valid for claude-plugin, codex-plugin, kimi-plugin, and codebuddy-plugin distributions."
|
|
210
216
|
}
|
|
211
217
|
},
|
|
212
218
|
"allOf": [
|
|
@@ -238,7 +244,8 @@
|
|
|
238
244
|
"enum": [
|
|
239
245
|
"claude-plugin",
|
|
240
246
|
"codex-plugin",
|
|
241
|
-
"kimi-plugin"
|
|
247
|
+
"kimi-plugin",
|
|
248
|
+
"codebuddy-plugin"
|
|
242
249
|
]
|
|
243
250
|
}
|
|
244
251
|
}
|
|
@@ -278,6 +285,40 @@
|
|
|
278
285
|
]
|
|
279
286
|
}
|
|
280
287
|
},
|
|
288
|
+
{
|
|
289
|
+
"if": {
|
|
290
|
+
"properties": {
|
|
291
|
+
"type": {
|
|
292
|
+
"const": "codebuddy-plugin"
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
"then": {
|
|
297
|
+
"required": [
|
|
298
|
+
"plugin",
|
|
299
|
+
"entrySkill"
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"if": {
|
|
305
|
+
"properties": {
|
|
306
|
+
"type": {
|
|
307
|
+
"enum": [
|
|
308
|
+
"kimi-plugin",
|
|
309
|
+
"codebuddy-plugin"
|
|
310
|
+
]
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"then": {
|
|
315
|
+
"not": {
|
|
316
|
+
"required": [
|
|
317
|
+
"marketplaceRepo"
|
|
318
|
+
]
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
},
|
|
281
322
|
{
|
|
282
323
|
"if": {
|
|
283
324
|
"required": [
|
|
@@ -824,7 +865,8 @@
|
|
|
824
865
|
"npm",
|
|
825
866
|
"claude-plugin",
|
|
826
867
|
"codex-plugin",
|
|
827
|
-
"kimi-plugin"
|
|
868
|
+
"kimi-plugin",
|
|
869
|
+
"codebuddy-plugin"
|
|
828
870
|
]
|
|
829
871
|
}
|
|
830
872
|
}
|