release-skill 0.6.1 → 0.6.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 +1 -1
- package/.codex-plugin/plugin.json +2 -2
- package/.kimi-plugin/plugin.json +1 -1
- package/CHANGELOG.md +17 -0
- package/INSTALL.md +2 -2
- package/INSTALL.zh-CN.md +2 -2
- package/README.md +12 -9
- package/README.zh-CN.md +12 -9
- 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 +326 -70
- package/adapters/claude/schemas/release-plan.schema.json +9 -0
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/bin/release-skill.bundle.mjs +326 -70
- package/adapters/codex/schemas/release-plan.schema.json +9 -0
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +326 -70
- package/adapters/kimi/schemas/release-plan.schema.json +9 -0
- package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +326 -70
- package/adapters/workbuddy/schemas/release-plan.schema.json +9 -0
- package/bin/release-skill.bundle.mjs +326 -70
- package/package.json +1 -1
- package/schemas/release-plan.schema.json +9 -0
- package/src/commands/lineage.mjs +101 -32
- package/src/commands/prepare.mjs +59 -1
- package/src/commands/publish.mjs +10 -1
- package/src/core/skill-resource-closure.mjs +240 -10
- package/src/platforms/registry.mjs +12 -0
|
@@ -863,6 +863,13 @@
|
|
|
863
863
|
"findingCount": {
|
|
864
864
|
"const": 0
|
|
865
865
|
},
|
|
866
|
+
"preparedAt": {
|
|
867
|
+
"type": ["string", "null"],
|
|
868
|
+
"description": "Deterministic freeze timestamp of the prepare run that produced this receipt (production: the baseline HEAD commit committer date in canonical UTC form; non-production: null). Never a wall-clock sample, so identical sources freeze byte-identical receipts."
|
|
869
|
+
},
|
|
870
|
+
"exitCode": {
|
|
871
|
+
"const": 0
|
|
872
|
+
},
|
|
866
873
|
"receiptDigest": {
|
|
867
874
|
"type": "string",
|
|
868
875
|
"pattern": "^[a-f0-9]{64}$"
|
|
@@ -877,6 +884,8 @@
|
|
|
877
884
|
"referenceCount",
|
|
878
885
|
"sourceOnlyCount",
|
|
879
886
|
"findingCount",
|
|
887
|
+
"preparedAt",
|
|
888
|
+
"exitCode",
|
|
880
889
|
"receiptDigest"
|
|
881
890
|
]
|
|
882
891
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-skill",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Safe preparation and frozen GitHub/npm production publishing with full happy end verification",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "广州市风荷科技有限公司"
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"defaultPrompt": [
|
|
21
21
|
"Assess this project for release readiness.",
|
|
22
|
-
"Prepare a release plan for version 0.6.
|
|
22
|
+
"Prepare a release plan for version 0.6.2.",
|
|
23
23
|
"Help me understand the release workflow."
|
|
24
24
|
]
|
|
25
25
|
}
|