release-skill 0.5.0 → 0.5.1
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 +18 -0
- package/INSTALL.md +2 -2
- package/INSTALL.zh-CN.md +2 -2
- package/README.md +10 -18
- package/README.zh-CN.md +10 -18
- package/adapters/claude/.claude-plugin/marketplace.json +1 -1
- package/adapters/claude/.claude-plugin/plugin.json +1 -1
- package/adapters/claude/bin/error-codes.json +1 -1
- package/adapters/claude/bin/kernel-protocol.json +1 -1
- package/adapters/claude/bin/registry.json +15 -1
- package/adapters/claude/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/claude/bin/rules.json +1 -1
- package/adapters/codex/.codex-plugin/plugin.json +2 -2
- package/adapters/codex/bin/error-codes.json +1 -1
- package/adapters/codex/bin/kernel-protocol.json +1 -1
- package/adapters/codex/bin/registry.json +15 -1
- package/adapters/codex/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/codex/bin/rules.json +1 -1
- package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
- package/adapters/kimi/bin/error-codes.json +1 -1
- package/adapters/kimi/bin/kernel-protocol.json +1 -1
- package/adapters/kimi/bin/registry.json +15 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/kimi/bin/rules.json +1 -1
- package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
- package/adapters/workbuddy/bin/error-codes.json +1 -1
- package/adapters/workbuddy/bin/kernel-protocol.json +1 -1
- package/adapters/workbuddy/bin/registry.json +15 -1
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +35052 -22850
- package/adapters/workbuddy/bin/rules.json +1 -1
- package/bin/error-codes.json +1 -1
- package/bin/kernel-protocol.json +1 -1
- package/bin/registry.json +15 -1
- package/bin/release-skill.bundle.mjs +35052 -22850
- package/bin/rules.json +1 -1
- package/package.json +3 -3
- package/src/adapters/plugin-marketplace.mjs +48 -4
- package/src/adapters/push-snapshot.mjs +12 -4
- package/src/commands/assess.mjs +171 -0
- package/src/commands/hooks.mjs +6 -1
- package/src/commands/prepare.mjs +83 -1
- package/src/core/baseline.mjs +11 -1
- package/src/core/foundation-inflight.mjs +7 -0
- package/src/core/plan.mjs +12 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "release-skill",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
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.5.
|
|
22
|
+
"Prepare a release plan for version 0.5.1.",
|
|
23
23
|
"Help me understand the release workflow."
|
|
24
24
|
]
|
|
25
25
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "skill-family.kernel.operation",
|
|
5
5
|
"version": 1,
|
|
6
6
|
"status": "stable",
|
|
7
|
-
"contractsVersion": "1.
|
|
7
|
+
"contractsVersion": "1.5.0",
|
|
8
8
|
"description": "Frozen v1 kernel protocol: request/result envelope, operation lifecycle states, and the operation vocabulary. Extensible only by a new protocol version; v1 content is frozen.",
|
|
9
9
|
"states": ["accepted", "running", "succeeded", "failed", "rejected"],
|
|
10
10
|
"initialStates": ["accepted", "rejected"],
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"kind": "skill-family.contracts.registry",
|
|
4
|
-
"contractsVersion": "1.
|
|
4
|
+
"contractsVersion": "1.5.0",
|
|
5
5
|
"note": "Protocol-name and schema-$id registry. Registration mechanically rejects duplicate protocol name/version (SFC1004) and duplicate $id (SFC1003). This file is the single registration surface; adding an entry is a contracts change.",
|
|
6
6
|
"protocols": [
|
|
7
7
|
{
|
|
@@ -152,6 +152,20 @@
|
|
|
152
152
|
"dialect": "2020-12",
|
|
153
153
|
"status": "stable",
|
|
154
154
|
"file": "src/schemas/surface-scan-policy.schema.json"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"$id": "https://contracts.skill-family.example/v1/declared-read-surface-result.json",
|
|
158
|
+
"object": "declared-read-surface-result",
|
|
159
|
+
"dialect": "2020-12",
|
|
160
|
+
"status": "stable",
|
|
161
|
+
"file": "src/schemas/declared-read-surface-result.schema.json"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"$id": "https://contracts.skill-family.example/v1/structured-scan-policy.json",
|
|
165
|
+
"object": "structured-scan-policy",
|
|
166
|
+
"dialect": "2020-12",
|
|
167
|
+
"status": "stable",
|
|
168
|
+
"file": "src/schemas/structured-scan-policy.schema.json"
|
|
155
169
|
}
|
|
156
170
|
],
|
|
157
171
|
"dialects": {
|