release-skill 0.6.3 → 0.7.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 +36 -0
- package/INSTALL.md +2 -2
- package/INSTALL.zh-CN.md +2 -2
- package/README.md +17 -23
- package/README.zh-CN.md +8 -20
- 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/license-texts/Apache-2.0.txt +201 -0
- package/adapters/claude/bin/license-texts/MIT.txt +21 -0
- package/adapters/claude/bin/registry.json +64 -1
- package/adapters/claude/bin/release-skill.bundle.mjs +34866 -31254
- package/adapters/claude/bin/rules.json +1 -1
- package/adapters/claude/schemas/.render-manifest.json +6 -6
- package/adapters/claude/schemas/release-plan.schema.json +136 -4
- package/adapters/claude/schemas/release-project.schema.json +13 -4
- 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/license-texts/Apache-2.0.txt +201 -0
- package/adapters/codex/bin/license-texts/MIT.txt +21 -0
- package/adapters/codex/bin/registry.json +64 -1
- package/adapters/codex/bin/release-skill.bundle.mjs +34866 -31254
- package/adapters/codex/bin/rules.json +1 -1
- package/adapters/codex/schemas/.render-manifest.json +6 -6
- package/adapters/codex/schemas/release-plan.schema.json +136 -4
- package/adapters/codex/schemas/release-project.schema.json +13 -4
- 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/license-texts/Apache-2.0.txt +201 -0
- package/adapters/kimi/bin/license-texts/MIT.txt +21 -0
- package/adapters/kimi/bin/registry.json +64 -1
- package/adapters/kimi/bin/release-skill.bundle.mjs +34866 -31254
- package/adapters/kimi/bin/rules.json +1 -1
- package/adapters/kimi/schemas/.render-manifest.json +6 -6
- package/adapters/kimi/schemas/release-plan.schema.json +136 -4
- package/adapters/kimi/schemas/release-project.schema.json +13 -4
- 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/license-texts/Apache-2.0.txt +201 -0
- package/adapters/workbuddy/bin/license-texts/MIT.txt +21 -0
- package/adapters/workbuddy/bin/registry.json +64 -1
- package/adapters/workbuddy/bin/release-skill.bundle.mjs +34866 -31254
- package/adapters/workbuddy/bin/rules.json +1 -1
- package/adapters/workbuddy/schemas/.render-manifest.json +6 -6
- package/adapters/workbuddy/schemas/release-plan.schema.json +136 -4
- package/adapters/workbuddy/schemas/release-project.schema.json +13 -4
- package/bin/error-codes.json +1 -1
- package/bin/kernel-protocol.json +1 -1
- package/bin/license-texts/Apache-2.0.txt +201 -0
- package/bin/license-texts/MIT.txt +21 -0
- package/bin/registry.json +64 -1
- package/bin/release-skill-cli.mjs +6 -6
- package/bin/release-skill.bundle.mjs +34866 -31254
- package/bin/rules.json +1 -1
- package/package.json +5 -4
- package/platform-manifest.json +2 -2
- package/references/02-project-config.md +1 -1
- package/references/06-adapter-contract.md +6 -3
- package/schemas/.render-manifest.json +6 -6
- package/schemas/release-plan.schema.json +136 -4
- package/schemas/release-project.schema.json +13 -4
- package/src/adapters/distribute-git.mjs +17 -11
- package/src/commands/approve.mjs +6 -10
- package/src/commands/distribute.mjs +251 -69
- package/src/commands/postverify.mjs +81 -7
- package/src/commands/prepare.mjs +176 -3
- package/src/core/docs-refresh-preset.mjs +8 -4
- package/src/core/evidence.mjs +8 -1
- package/src/core/git-url-policy.mjs +214 -0
- package/src/core/marketplace-registry-entry.mjs +4 -3
- package/src/core/postpublish-approval.mjs +132 -1
- package/src/core/postpublish-bundle.mjs +342 -0
- package/src/core/postpublish-projection.mjs +210 -0
- package/src/core/postpublish.mjs +26 -19
- package/src/core/preset-executor.mjs +25 -6
- package/src/core/preset-gitwrite.mjs +37 -16
- package/src/core/presets.mjs +67 -19
- package/src/core/proposal-inbox.mjs +36 -20
- package/src/core/redact.mjs +16 -3
- package/src/producers/build-adapters.mjs +28 -14
- package/src/snapshot/scan.mjs +6 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"kind": "skill-family.contracts.registry",
|
|
4
|
-
"contractsVersion": "1.
|
|
4
|
+
"contractsVersion": "1.7.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
|
{
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"status": "stable",
|
|
28
28
|
"file": "src/schemas/profile-descriptor.schema.json"
|
|
29
29
|
},
|
|
30
|
+
{
|
|
31
|
+
"$id": "https://contracts.skill-family.example/v1/project-profile.json",
|
|
32
|
+
"object": "project-profile",
|
|
33
|
+
"dialect": "2020-12",
|
|
34
|
+
"status": "stable",
|
|
35
|
+
"file": "src/schemas/project-profile.schema.json"
|
|
36
|
+
},
|
|
30
37
|
{
|
|
31
38
|
"$id": "https://contracts.skill-family.example/v1/managed-file-lock.json",
|
|
32
39
|
"object": "managed-file-lock",
|
|
@@ -166,6 +173,62 @@
|
|
|
166
173
|
"dialect": "2020-12",
|
|
167
174
|
"status": "stable",
|
|
168
175
|
"file": "src/schemas/structured-scan-policy.schema.json"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"$id": "https://contracts.skill-family.example/v1/timeout-policy.json",
|
|
179
|
+
"object": "timeout-policy",
|
|
180
|
+
"dialect": "2020-12",
|
|
181
|
+
"status": "stable",
|
|
182
|
+
"file": "src/schemas/timeout-policy.schema.json"
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"$id": "https://contracts.skill-family.example/v1/watchdog-termination-envelope.json",
|
|
186
|
+
"object": "watchdog-termination-envelope",
|
|
187
|
+
"dialect": "2020-12",
|
|
188
|
+
"status": "stable",
|
|
189
|
+
"file": "src/schemas/watchdog-termination-envelope.schema.json"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"$id": "https://contracts.skill-family.example/v1/public-boundary-declaration.json",
|
|
193
|
+
"object": "public-boundary-declaration",
|
|
194
|
+
"dialect": "2020-12",
|
|
195
|
+
"status": "stable",
|
|
196
|
+
"file": "src/schemas/public-boundary-declaration.schema.json"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"$id": "https://contracts.skill-family.example/v1/platform-difference-registry.json",
|
|
200
|
+
"object": "platform-difference-registry",
|
|
201
|
+
"dialect": "2020-12",
|
|
202
|
+
"status": "stable",
|
|
203
|
+
"file": "src/schemas/platform-difference-registry.schema.json"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"$id": "https://contracts.skill-family.example/v1/observation-scope.json",
|
|
207
|
+
"object": "observation-scope",
|
|
208
|
+
"dialect": "2020-12",
|
|
209
|
+
"status": "stable",
|
|
210
|
+
"file": "src/schemas/observation-scope.schema.json"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"$id": "https://contracts.skill-family.example/v1/profile-adoption-declaration.json",
|
|
214
|
+
"object": "profile-adoption-declaration",
|
|
215
|
+
"dialect": "2020-12",
|
|
216
|
+
"status": "stable",
|
|
217
|
+
"file": "src/schemas/profile-adoption-declaration.schema.json"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"$id": "https://contracts.skill-family.example/v1/audit-baseline-pin.json",
|
|
221
|
+
"object": "audit-baseline-pin",
|
|
222
|
+
"dialect": "2020-12",
|
|
223
|
+
"status": "stable",
|
|
224
|
+
"file": "src/schemas/audit-baseline-pin.schema.json"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"$id": "https://contracts.skill-family.example/v1/token-estimate-record.json",
|
|
228
|
+
"object": "token-estimate-record",
|
|
229
|
+
"dialect": "2020-12",
|
|
230
|
+
"status": "stable",
|
|
231
|
+
"file": "src/schemas/token-estimate-record.schema.json"
|
|
169
232
|
}
|
|
170
233
|
],
|
|
171
234
|
"dialects": {
|