release-skill 0.9.16 → 0.9.17

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 (164) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/.codebuddy-plugin/plugin.json +1 -1
  3. package/.codex-plugin/plugin.json +2 -2
  4. package/.kimi-plugin/plugin.json +1 -1
  5. package/.qoder-plugin/plugin.json +10 -0
  6. package/CHANGELOG.md +30 -0
  7. package/INSTALL.md +57 -9
  8. package/INSTALL.zh-CN.md +44 -7
  9. package/README.md +75 -31
  10. package/README.zh-CN.md +60 -29
  11. package/adapters/claude/.claude-plugin/plugin.json +1 -1
  12. package/adapters/claude/bin/release-skill.bundle.mjs +1443 -672
  13. package/adapters/claude/schemas/release-plan.schema.json +1 -1
  14. package/adapters/claude/schemas/release-project.schema.json +1 -1
  15. package/adapters/claude/skills/release-finish/SKILL.md +14 -13
  16. package/adapters/claude/skills/release-help/SKILL.md +3 -3
  17. package/adapters/claude/skills/release-verify/SKILL.md +2 -2
  18. package/adapters/codex/.codex-plugin/plugin.json +2 -2
  19. package/adapters/codex/bin/release-skill.bundle.mjs +1443 -672
  20. package/adapters/codex/schemas/release-plan.schema.json +1 -1
  21. package/adapters/codex/schemas/release-project.schema.json +1 -1
  22. package/adapters/codex/skills/release-finish/SKILL.md +14 -13
  23. package/adapters/codex/skills/release-help/SKILL.md +3 -3
  24. package/adapters/codex/skills/release-verify/SKILL.md +2 -2
  25. package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
  26. package/adapters/kimi/bin/release-skill.bundle.mjs +1443 -672
  27. package/adapters/kimi/schemas/release-plan.schema.json +1 -1
  28. package/adapters/kimi/schemas/release-project.schema.json +1 -1
  29. package/adapters/kimi/skills/release-finish/SKILL.md +14 -13
  30. package/adapters/kimi/skills/release-help/SKILL.md +3 -3
  31. package/adapters/kimi/skills/release-verify/SKILL.md +2 -2
  32. package/adapters/qoder/.qoder-plugin/plugin.json +10 -0
  33. package/adapters/qoder/bin/consumer-contract-vectors.json +110 -0
  34. package/adapters/qoder/bin/error-codes.json +161 -0
  35. package/adapters/qoder/bin/foundation-legal/skill-family-contracts/LICENSE +202 -0
  36. package/adapters/qoder/bin/foundation-legal/skill-family-contracts/NOTICE +10 -0
  37. package/adapters/qoder/bin/foundation-legal/skill-family-engineering-kit/LICENSE +202 -0
  38. package/adapters/qoder/bin/foundation-legal/skill-family-engineering-kit/NOTICE +10 -0
  39. package/adapters/qoder/bin/foundation-legal/skill-family-engineering-kit/THIRD_PARTY_NOTICES +142 -0
  40. package/adapters/qoder/bin/foundation-legal/skill-family-harness-node/LICENSE +202 -0
  41. package/adapters/qoder/bin/foundation-legal/skill-family-harness-node/NOTICE +10 -0
  42. package/adapters/qoder/bin/foundation-legal/skill-family-harness-node/native-NOTICE +2 -0
  43. package/adapters/qoder/bin/foundation-resource-binding.json +1 -0
  44. package/adapters/qoder/bin/kernel-protocol.json +60 -0
  45. package/adapters/qoder/bin/license-texts/Apache-2.0.txt +201 -0
  46. package/adapters/qoder/bin/license-texts/MIT.txt +21 -0
  47. package/adapters/qoder/bin/prebuild-manifest.json +79 -0
  48. package/adapters/qoder/bin/prebuilds/darwin-arm64/bound_read.darwin-arm64.node +0 -0
  49. package/adapters/qoder/bin/prebuilds/darwin-x64/bound_read.darwin-x64.node +0 -0
  50. package/adapters/qoder/bin/prebuilds/linux-arm64-gnu/bound_read.linux-arm64-gnu.node +0 -0
  51. package/adapters/qoder/bin/prebuilds/linux-x64-gnu/bound_read.linux-x64-gnu.node +0 -0
  52. package/adapters/qoder/bin/registry.json +347 -0
  53. package/adapters/qoder/bin/release-skill-local-finish.mjs +4 -0
  54. package/adapters/qoder/bin/release-skill.bundle.mjs +149446 -0
  55. package/adapters/qoder/bin/release-skill.mjs +54 -0
  56. package/adapters/qoder/bin/rules.json +104 -0
  57. package/adapters/qoder/bin/schemas/consumer-contract-vector.schema.json +149 -0
  58. package/adapters/qoder/data/hosts/claude/host-descriptor.json +45 -0
  59. package/adapters/qoder/data/hosts/codebuddy/host-descriptor.json +26 -0
  60. package/adapters/qoder/data/hosts/codex/host-descriptor.json +45 -0
  61. package/adapters/qoder/data/hosts/deepseek-harness/host-descriptor.json +23 -0
  62. package/adapters/qoder/data/hosts/kimi-code/host-descriptor.json +36 -0
  63. package/adapters/qoder/data/hosts/qoder/host-descriptor.json +26 -0
  64. package/adapters/qoder/data/hosts/registry.json +13 -0
  65. package/adapters/qoder/data/hosts/workbuddy/host-descriptor.json +34 -0
  66. package/adapters/qoder/data/licensing/registry.json +211 -0
  67. package/adapters/qoder/data/licensing/schema.json +207 -0
  68. package/adapters/qoder/native/safe-write/binding.gyp +41 -0
  69. package/adapters/qoder/native/safe-write/prebuilds/darwin-arm64/safe_write.node +0 -0
  70. package/adapters/qoder/native/safe-write/prebuilds.json +24 -0
  71. package/adapters/qoder/native/safe-write/src/safe_write.cc +2032 -0
  72. package/adapters/qoder/schemas/.render-manifest.json +41 -0
  73. package/adapters/qoder/schemas/approval-record.schema.json +115 -0
  74. package/adapters/qoder/schemas/artifact-lock.schema.json +111 -0
  75. package/adapters/qoder/schemas/artifact-plan.schema.json +52 -0
  76. package/adapters/qoder/schemas/artifact-policy.schema.json +76 -0
  77. package/adapters/qoder/schemas/evidence-event-v2.schema.json +164 -0
  78. package/adapters/qoder/schemas/evidence-event.schema.json +89 -0
  79. package/adapters/qoder/schemas/postpublish-approval-record.schema.json +47 -0
  80. package/adapters/qoder/schemas/release-plan.schema.json +1996 -0
  81. package/adapters/qoder/schemas/release-project.schema.json +1613 -0
  82. package/adapters/qoder/schemas/release-run.schema.json +777 -0
  83. package/adapters/qoder/skills/release-assess/SKILL.md +60 -0
  84. package/adapters/qoder/skills/release-config/SKILL.md +150 -0
  85. package/adapters/qoder/skills/release-docs/SKILL.md +119 -0
  86. package/adapters/qoder/skills/release-finish/SKILL.md +141 -0
  87. package/adapters/qoder/skills/release-help/SKILL.md +153 -0
  88. package/adapters/qoder/skills/release-marketplace/SKILL.md +156 -0
  89. package/adapters/qoder/skills/release-prepare/SKILL.md +135 -0
  90. package/adapters/qoder/skills/release-publish/SKILL.md +91 -0
  91. package/adapters/qoder/skills/release-reconcile/SKILL.md +80 -0
  92. package/adapters/qoder/skills/release-setup/SKILL.md +131 -0
  93. package/adapters/qoder/skills/release-verify/SKILL.md +109 -0
  94. package/adapters/qoder/src/schemas/adapter-build-manifest.schema.json +41 -0
  95. package/adapters/qoder/src/schemas/adapter-peer-verification-request.schema.json +54 -0
  96. package/adapters/qoder/src/schemas/adapter-peer-verification-result.schema.json +54 -0
  97. package/adapters/qoder/src/schemas/adapter-source.schema.json +47 -0
  98. package/adapters/qoder/src/schemas/audit-baseline-pin.schema.json +163 -0
  99. package/adapters/qoder/src/schemas/declared-read-surface-result.schema.json +61 -0
  100. package/adapters/qoder/src/schemas/engineering-baseline.schema.json +77 -0
  101. package/adapters/qoder/src/schemas/executable-identity-observation.schema.json +162 -0
  102. package/adapters/qoder/src/schemas/filesystem-root-binding.schema.json +14 -0
  103. package/adapters/qoder/src/schemas/filesystem-tree-observation.schema.json +71 -0
  104. package/adapters/qoder/src/schemas/fixed-set-publication-manifest.schema.json +108 -0
  105. package/adapters/qoder/src/schemas/fixed-set-publication-receipt.schema.json +148 -0
  106. package/adapters/qoder/src/schemas/host-capability-fact.schema.json +31 -0
  107. package/adapters/qoder/src/schemas/host-descriptor.schema.json +137 -0
  108. package/adapters/qoder/src/schemas/host-operation-plan.schema.json +57 -0
  109. package/adapters/qoder/src/schemas/host-operation-receipt.schema.json +81 -0
  110. package/adapters/qoder/src/schemas/host-probe-result.schema.json +30 -0
  111. package/adapters/qoder/src/schemas/host-registry.schema.json +18 -0
  112. package/adapters/qoder/src/schemas/host-verification-request.schema.json +67 -0
  113. package/adapters/qoder/src/schemas/host-verification-result.schema.json +149 -0
  114. package/adapters/qoder/src/schemas/managed-file-lock.schema.json +77 -0
  115. package/adapters/qoder/src/schemas/migration-manifest.schema.json +412 -0
  116. package/adapters/qoder/src/schemas/observation-scope.schema.json +91 -0
  117. package/adapters/qoder/src/schemas/operation-request.schema.json +58 -0
  118. package/adapters/qoder/src/schemas/operation-result.schema.json +130 -0
  119. package/adapters/qoder/src/schemas/platform-difference-registry.schema.json +110 -0
  120. package/adapters/qoder/src/schemas/plugin-verification-request.schema.json +499 -0
  121. package/adapters/qoder/src/schemas/plugin-verification-result.schema.json +1217 -0
  122. package/adapters/qoder/src/schemas/profile-adoption-declaration.schema.json +111 -0
  123. package/adapters/qoder/src/schemas/profile-descriptor.schema.json +99 -0
  124. package/adapters/qoder/src/schemas/project-manifest.schema.json +67 -0
  125. package/adapters/qoder/src/schemas/project-profile.schema.json +25 -0
  126. package/adapters/qoder/src/schemas/public-boundary-declaration.schema.json +73 -0
  127. package/adapters/qoder/src/schemas/report-binding.schema.json +42 -0
  128. package/adapters/qoder/src/schemas/report-model.schema.json +308 -0
  129. package/adapters/qoder/src/schemas/skill-family-directory-verification-request.schema.json +100 -0
  130. package/adapters/qoder/src/schemas/skill-family-directory-verification-result.schema.json +193 -0
  131. package/adapters/qoder/src/schemas/source-authority-receipt.schema.json +31 -0
  132. package/adapters/qoder/src/schemas/state-event-envelope.schema.json +38 -0
  133. package/adapters/qoder/src/schemas/state-snapshot-metadata.schema.json +25 -0
  134. package/adapters/qoder/src/schemas/structured-scan-policy.schema.json +97 -0
  135. package/adapters/qoder/src/schemas/surface-scan-policy.schema.json +42 -0
  136. package/adapters/qoder/src/schemas/timeout-policy.schema.json +24 -0
  137. package/adapters/qoder/src/schemas/token-estimate-record.schema.json +75 -0
  138. package/adapters/qoder/src/schemas/token-estimate-result.schema.json +43 -0
  139. package/adapters/qoder/src/schemas/watchdog-termination-envelope.schema.json +156 -0
  140. package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
  141. package/adapters/workbuddy/bin/release-skill.bundle.mjs +1443 -672
  142. package/adapters/workbuddy/schemas/release-plan.schema.json +1 -1
  143. package/adapters/workbuddy/schemas/release-project.schema.json +1 -1
  144. package/adapters/workbuddy/skills/release-finish/SKILL.md +14 -13
  145. package/adapters/workbuddy/skills/release-help/SKILL.md +3 -3
  146. package/adapters/workbuddy/skills/release-verify/SKILL.md +2 -2
  147. package/bin/release-skill-cli.mjs +124 -6
  148. package/bin/release-skill.bundle.mjs +1443 -672
  149. package/package.json +4 -2
  150. package/platform-manifest.json +70 -4
  151. package/references/02-project-config.md +9 -2
  152. package/schemas/release-plan.schema.json +1 -1
  153. package/schemas/release-project.schema.json +1 -1
  154. package/skills/release-finish/SKILL.md +14 -13
  155. package/skills/release-help/SKILL.md +3 -3
  156. package/skills/release-verify/SKILL.md +2 -2
  157. package/skills-src/release-finish/SKILL.md +14 -13
  158. package/skills-src/release-help/SKILL.md +3 -3
  159. package/skills-src/release-verify/SKILL.md +2 -2
  160. package/src/commands/post-release-local.mjs +360 -51
  161. package/src/commands/verify-records.mjs +467 -0
  162. package/src/core/postpublish.mjs +1 -1
  163. package/src/core/run.mjs +1 -1
  164. package/src/producers/build-adapters.mjs +36 -13
@@ -0,0 +1,347 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "kind": "skill-family.contracts.registry",
4
+ "contractsVersion": "1.16.0",
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
+ "protocols": [
7
+ {
8
+ "name": "skill-family.kernel.operation",
9
+ "version": 1,
10
+ "status": "stable",
11
+ "definition": "src/kernel-protocol.json",
12
+ "description": "Kernel request/result envelope protocol for mechanism operations."
13
+ }
14
+ ],
15
+ "schemas": [
16
+ {
17
+ "$id": "https://contracts.skill-family.example/v1/project-manifest.json",
18
+ "object": "project-manifest",
19
+ "dialect": "2020-12",
20
+ "status": "stable",
21
+ "file": "src/schemas/project-manifest.schema.json"
22
+ },
23
+ {
24
+ "$id": "https://contracts.skill-family.example/v1/profile-descriptor.json",
25
+ "object": "profile-descriptor",
26
+ "dialect": "2020-12",
27
+ "status": "stable",
28
+ "file": "src/schemas/profile-descriptor.schema.json"
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
+ },
37
+ {
38
+ "$id": "https://contracts.skill-family.example/v1/managed-file-lock.json",
39
+ "object": "managed-file-lock",
40
+ "dialect": "2020-12",
41
+ "status": "stable",
42
+ "file": "src/schemas/managed-file-lock.schema.json"
43
+ },
44
+ {
45
+ "$id": "https://contracts.skill-family.example/v1/operation-request.json",
46
+ "object": "operation-request",
47
+ "dialect": "2020-12",
48
+ "status": "stable",
49
+ "file": "src/schemas/operation-request.schema.json"
50
+ },
51
+ {
52
+ "$id": "https://contracts.skill-family.example/v1/operation-result.json",
53
+ "object": "operation-result",
54
+ "dialect": "2020-12",
55
+ "status": "stable",
56
+ "file": "src/schemas/operation-result.schema.json"
57
+ },
58
+ {
59
+ "$id": "https://contracts.skill-family.example/v1/migration-manifest.json",
60
+ "object": "migration-manifest",
61
+ "dialect": "2020-12",
62
+ "status": "stable",
63
+ "file": "src/schemas/migration-manifest.schema.json"
64
+ },
65
+ {
66
+ "$id": "https://contracts.skill-family.example/v1/report-model.json",
67
+ "object": "report-model",
68
+ "dialect": "2020-12",
69
+ "status": "stable",
70
+ "file": "src/schemas/report-model.schema.json"
71
+ },
72
+ {
73
+ "$id": "https://contracts.skill-family.example/v1/report-binding.json",
74
+ "object": "report-binding",
75
+ "dialect": "2020-12",
76
+ "status": "stable",
77
+ "file": "src/schemas/report-binding.schema.json"
78
+ },
79
+ {
80
+ "$id": "https://contracts.skill-family.example/v1/host-descriptor.json",
81
+ "object": "host-descriptor",
82
+ "dialect": "2020-12",
83
+ "status": "stable",
84
+ "file": "src/schemas/host-descriptor.schema.json"
85
+ },
86
+ {
87
+ "$id": "https://contracts.skill-family.example/v1/host-registry.json",
88
+ "object": "host-registry",
89
+ "dialect": "2020-12",
90
+ "status": "stable",
91
+ "file": "src/schemas/host-registry.schema.json"
92
+ },
93
+ {
94
+ "$id": "https://contracts.skill-family.example/v1/adapter-source.json",
95
+ "object": "adapter-source",
96
+ "dialect": "2020-12",
97
+ "status": "stable",
98
+ "file": "src/schemas/adapter-source.schema.json"
99
+ },
100
+ {
101
+ "$id": "https://contracts.skill-family.example/v1/host-capability-fact.json",
102
+ "object": "host-capability-fact",
103
+ "dialect": "2020-12",
104
+ "status": "stable",
105
+ "file": "src/schemas/host-capability-fact.schema.json"
106
+ },
107
+ {
108
+ "$id": "https://contracts.skill-family.example/v1/host-probe-result.json",
109
+ "object": "host-probe-result",
110
+ "dialect": "2020-12",
111
+ "status": "stable",
112
+ "file": "src/schemas/host-probe-result.schema.json"
113
+ },
114
+ {
115
+ "$id": "https://contracts.skill-family.example/v1/adapter-build-manifest.json",
116
+ "object": "adapter-build-manifest",
117
+ "dialect": "2020-12",
118
+ "status": "stable",
119
+ "file": "src/schemas/adapter-build-manifest.schema.json"
120
+ },
121
+ {
122
+ "$id": "https://contracts.skill-family.example/v1/host-operation-plan.json",
123
+ "object": "host-operation-plan",
124
+ "dialect": "2020-12",
125
+ "status": "stable",
126
+ "file": "src/schemas/host-operation-plan.schema.json"
127
+ },
128
+ {
129
+ "$id": "https://contracts.skill-family.example/v1/host-operation-receipt.json",
130
+ "object": "host-operation-receipt",
131
+ "dialect": "2020-12",
132
+ "status": "stable",
133
+ "file": "src/schemas/host-operation-receipt.schema.json"
134
+ },
135
+ {
136
+ "$id": "https://contracts.skill-family.example/v1/state-event-envelope.json",
137
+ "object": "state-event-envelope",
138
+ "dialect": "2020-12",
139
+ "status": "stable",
140
+ "file": "src/schemas/state-event-envelope.schema.json"
141
+ },
142
+ {
143
+ "$id": "https://contracts.skill-family.example/v1/state-snapshot-metadata.json",
144
+ "object": "state-snapshot-metadata",
145
+ "dialect": "2020-12",
146
+ "status": "stable",
147
+ "file": "src/schemas/state-snapshot-metadata.schema.json"
148
+ },
149
+ {
150
+ "$id": "https://contracts.skill-family.example/v1/token-estimate-result.json",
151
+ "object": "token-estimate-result",
152
+ "dialect": "2020-12",
153
+ "status": "stable",
154
+ "file": "src/schemas/token-estimate-result.schema.json"
155
+ },
156
+ {
157
+ "$id": "https://contracts.skill-family.example/v1/surface-scan-policy.json",
158
+ "object": "surface-scan-policy",
159
+ "dialect": "2020-12",
160
+ "status": "stable",
161
+ "file": "src/schemas/surface-scan-policy.schema.json"
162
+ },
163
+ {
164
+ "$id": "https://contracts.skill-family.example/v1/declared-read-surface-result.json",
165
+ "object": "declared-read-surface-result",
166
+ "dialect": "2020-12",
167
+ "status": "stable",
168
+ "file": "src/schemas/declared-read-surface-result.schema.json"
169
+ },
170
+ {
171
+ "$id": "https://contracts.skill-family.example/v1/structured-scan-policy.json",
172
+ "object": "structured-scan-policy",
173
+ "dialect": "2020-12",
174
+ "status": "stable",
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"
232
+ },
233
+ {
234
+ "$id": "https://contracts.skill-family.example/v1/source-authority-receipt.json",
235
+ "object": "source-authority-receipt",
236
+ "dialect": "2020-12",
237
+ "status": "stable",
238
+ "file": "src/schemas/source-authority-receipt.schema.json"
239
+ },
240
+ {
241
+ "$id": "https://contracts.skill-family.example/v1/filesystem-root-binding.json",
242
+ "object": "filesystem-root-binding",
243
+ "dialect": "2020-12",
244
+ "status": "stable",
245
+ "file": "src/schemas/filesystem-root-binding.schema.json"
246
+ },
247
+ {
248
+ "$id": "https://contracts.skill-family.example/v1/fixed-set-publication-manifest.json",
249
+ "object": "fixed-set-publication-manifest",
250
+ "dialect": "2020-12",
251
+ "status": "stable",
252
+ "file": "src/schemas/fixed-set-publication-manifest.schema.json"
253
+ },
254
+ {
255
+ "$id": "https://contracts.skill-family.example/v1/fixed-set-publication-receipt.json",
256
+ "object": "fixed-set-publication-receipt",
257
+ "dialect": "2020-12",
258
+ "status": "stable",
259
+ "file": "src/schemas/fixed-set-publication-receipt.schema.json"
260
+ },
261
+ {
262
+ "$id": "https://contracts.skill-family.example/v1/adapter-peer-verification-request.json",
263
+ "object": "adapter-peer-verification-request",
264
+ "dialect": "2020-12",
265
+ "status": "stable",
266
+ "file": "src/schemas/adapter-peer-verification-request.schema.json"
267
+ },
268
+ {
269
+ "$id": "https://contracts.skill-family.example/v1/adapter-peer-verification-result.json",
270
+ "object": "adapter-peer-verification-result",
271
+ "dialect": "2020-12",
272
+ "status": "stable",
273
+ "file": "src/schemas/adapter-peer-verification-result.schema.json"
274
+ },
275
+ {
276
+ "$id": "https://contracts.skill-family.example/v1/host-verification-request.json",
277
+ "object": "host-verification-request",
278
+ "dialect": "2020-12",
279
+ "status": "candidate",
280
+ "file": "src/schemas/host-verification-request.schema.json"
281
+ },
282
+ {
283
+ "$id": "https://contracts.skill-family.example/v1/host-verification-result.json",
284
+ "object": "host-verification-result",
285
+ "dialect": "2020-12",
286
+ "status": "candidate",
287
+ "file": "src/schemas/host-verification-result.schema.json"
288
+ },
289
+ {
290
+ "$id": "https://contracts.skill-family.example/v1/plugin-verification-request.json",
291
+ "object": "plugin-verification-request",
292
+ "dialect": "2020-12",
293
+ "status": "candidate",
294
+ "file": "src/schemas/plugin-verification-request.schema.json"
295
+ },
296
+ {
297
+ "$id": "https://contracts.skill-family.example/v1/plugin-verification-result.json",
298
+ "object": "plugin-verification-result",
299
+ "dialect": "2020-12",
300
+ "status": "candidate",
301
+ "file": "src/schemas/plugin-verification-result.schema.json"
302
+ },
303
+ {
304
+ "$id": "https://contracts.skill-family.example/v1/filesystem-tree-observation.json",
305
+ "object": "filesystem-tree-observation",
306
+ "dialect": "2020-12",
307
+ "status": "candidate",
308
+ "file": "src/schemas/filesystem-tree-observation.schema.json"
309
+ },
310
+ {
311
+ "$id": "https://contracts.skill-family.example/v1/executable-identity-observation.json",
312
+ "object": "executable-identity-observation",
313
+ "dialect": "2020-12",
314
+ "status": "candidate",
315
+ "file": "src/schemas/executable-identity-observation.schema.json"
316
+ },
317
+ {
318
+ "$id": "https://contracts.skill-family.example/v1/skill-family-directory-verification-request.json",
319
+ "object": "skill-family-directory-verification-request",
320
+ "dialect": "2020-12",
321
+ "status": "candidate",
322
+ "file": "src/schemas/skill-family-directory-verification-request.schema.json"
323
+ },
324
+ {
325
+ "$id": "https://contracts.skill-family.example/v1/skill-family-directory-verification-result.json",
326
+ "object": "skill-family-directory-verification-result",
327
+ "dialect": "2020-12",
328
+ "status": "candidate",
329
+ "file": "src/schemas/skill-family-directory-verification-result.schema.json"
330
+ },
331
+ {
332
+ "$id": "https://contracts.skill-family.example/v1/engineering-baseline.json",
333
+ "object": "engineering-baseline",
334
+ "dialect": "2020-12",
335
+ "status": "candidate",
336
+ "file": "src/schemas/engineering-baseline.schema.json"
337
+ }
338
+ ],
339
+ "dialects": {
340
+ "supported": ["draft-07", "2020-12"],
341
+ "metaSchemaUris": {
342
+ "draft-07": "http://json-schema.org/draft-07/schema#",
343
+ "2020-12": "https://json-schema.org/draft/2020-12/schema"
344
+ },
345
+ "note": "Draft detection maps a schema $schema URI to a dialect name via metaSchemaUris; validation is routed to the matching Ajv class."
346
+ }
347
+ }
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ if (process.argv[2] !== 'post-release') process.argv.splice(2, 0, 'post-release');
4
+ await import('./release-skill.mjs');