@kungfu-tech/kfd 1.0.0-alpha.2 → 1.0.0-alpha.20
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/.buildchain/kfd-1/contract-world.witness.json +753 -0
- package/.buildchain/kfd-2/kfd-foundation.trust-assessment.json +238 -0
- package/.buildchain/kfd-2/kfd-foundation.trust-claims.json +225 -0
- package/.buildchain/kfd-2/public-release-trust.claim.json +131 -0
- package/.buildchain/kfd-3/collaboration-interface.artifact.json +774 -0
- package/.buildchain/kfd-3/collaboration-interface.json +421 -0
- package/.buildchain/kfd-3/collaboration-interface.prebuild.json +1141 -0
- package/README.md +149 -29
- package/TRADEMARKS.md +60 -0
- package/buildchain.contract-lock.json +86 -0
- package/buildchain.release-propagation.json +32 -0
- package/decisions/{kfd-1.md → KFD-1.md} +77 -35
- package/decisions/{kfd-2.md → KFD-2.md} +63 -11
- package/decisions/{kfd-3.md → KFD-3.md} +54 -16
- package/decisions/KFD-4.md +182 -0
- package/docs/KFD-1-usage.md +37 -0
- package/docs/KFD-2-usage.md +123 -0
- package/docs/KFD-3-usage.md +98 -0
- package/docs/KFD-4-usage.md +31 -0
- package/docs/MAP.md +20 -3
- package/docs/release-governance.md +28 -0
- package/kfd.release.json +13 -0
- package/package.json +28 -2
- package/registry.json +15 -5
- package/release-impact.json +113 -0
- package/schemas/kfd-1/contract-world.schema.json +67 -4
- package/schemas/kfd-1/witness.schema.json +113 -0
- package/schemas/kfd-2/release-claims.schema.json +331 -0
- package/schemas/kfd-2/release-trust-passport.schema.json +276 -0
- package/schemas/kfd-2/trust-assessment.schema.json +313 -0
- package/schemas/kfd-2/trust-claims.schema.json +334 -0
- package/schemas/kfd-2/trust-taxonomy.schema.json +219 -0
- package/schemas/kfd-3/collaboration-interface.schema.json +542 -0
- package/schemas/kfd-3/witness.schema.json +167 -0
- package/schemas/kfd-4/observer-perspective.schema.json +272 -0
- package/schemas/kfd-standards.schema.json +163 -0
- package/scripts/check.mjs +930 -0
- package/scripts/npm-publish-transaction.mjs +220 -0
- package/scripts/update-kfd-1-witness.mjs +35 -0
- package/scripts/update-kfd-2-claim.mjs +304 -0
- package/scripts/update-kfd-3-witness.mjs +261 -0
- package/scripts/update-site-bundle.mjs +353 -0
- package/site/kfd-site.json +251 -12
- package/standards.json +775 -15
package/standards.json
CHANGED
|
@@ -17,14 +17,15 @@
|
|
|
17
17
|
"id": "KFD-1",
|
|
18
18
|
"number": 1,
|
|
19
19
|
"label": "KFD-1",
|
|
20
|
-
"title": "
|
|
20
|
+
"title": "Facts must not drift: contract worlds need one fact source",
|
|
21
21
|
"kind": "procedure",
|
|
22
22
|
"status": "active",
|
|
23
23
|
"revision": 1,
|
|
24
24
|
"metadataSchemaVersion": "1",
|
|
25
25
|
"document": {
|
|
26
|
-
"path": "decisions/
|
|
27
|
-
"url": "https://kfd.libkungfu.dev/1"
|
|
26
|
+
"path": "decisions/KFD-1.md",
|
|
27
|
+
"url": "https://kfd.libkungfu.dev/1",
|
|
28
|
+
"sha256": "0b7b1ec54d661b271f91f02cefa97b11e1d1ef9c637efd2d1878d5f9c9185d80"
|
|
28
29
|
},
|
|
29
30
|
"compatibility": {
|
|
30
31
|
"packageLine": "v1.0",
|
|
@@ -42,11 +43,623 @@
|
|
|
42
43
|
"contractWorld": "schemas/kfd-1/contract-world.schema.json",
|
|
43
44
|
"witness": "schemas/kfd-1/witness.schema.json"
|
|
44
45
|
},
|
|
46
|
+
"interfaces": {
|
|
47
|
+
"contractWorld": {
|
|
48
|
+
"contract": "kfd-1-contract-world",
|
|
49
|
+
"schemaVersion": 1,
|
|
50
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-1/contract-world.schema.json",
|
|
51
|
+
"schemaPath": "schemas/kfd-1/contract-world.schema.json",
|
|
52
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
53
|
+
},
|
|
54
|
+
"witness": {
|
|
55
|
+
"contract": "kfd-1-witness",
|
|
56
|
+
"schemaVersion": 1,
|
|
57
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-1/witness.schema.json",
|
|
58
|
+
"schemaPath": "schemas/kfd-1/witness.schema.json",
|
|
59
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
60
|
+
}
|
|
61
|
+
},
|
|
45
62
|
"concepts": {
|
|
46
63
|
"factSource": "fact source",
|
|
47
64
|
"contractWorld": "contract world",
|
|
48
65
|
"weldedSurfaceRegister": "welded-surface register",
|
|
49
|
-
"witness": "contract witness"
|
|
66
|
+
"witness": "contract witness",
|
|
67
|
+
"surfaceClass": "surface class",
|
|
68
|
+
"compatibilityImpact": "compatibility impact",
|
|
69
|
+
"impactProjection": "domain-specific impact projection"
|
|
70
|
+
},
|
|
71
|
+
"surfaceRegister": {
|
|
72
|
+
"factSource": "standards.json#/standards/kfd-1/surfaceRegister",
|
|
73
|
+
"surfaceClasses": [
|
|
74
|
+
"integration-time",
|
|
75
|
+
"cross-time"
|
|
76
|
+
],
|
|
77
|
+
"compatibilityImpactClasses": [
|
|
78
|
+
"breaking",
|
|
79
|
+
"additive",
|
|
80
|
+
"none",
|
|
81
|
+
"unclassifiable"
|
|
82
|
+
],
|
|
83
|
+
"surfaces": [
|
|
84
|
+
{
|
|
85
|
+
"id": "readme",
|
|
86
|
+
"class": "cross-time",
|
|
87
|
+
"classes": [
|
|
88
|
+
"cross-time"
|
|
89
|
+
],
|
|
90
|
+
"description": "Published KFD package surface at README.md.",
|
|
91
|
+
"sourcePath": "README.md",
|
|
92
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
93
|
+
"impactProjection": {
|
|
94
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
95
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
96
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
97
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"id": "kfd-1-document",
|
|
102
|
+
"class": "cross-time",
|
|
103
|
+
"classes": [
|
|
104
|
+
"cross-time"
|
|
105
|
+
],
|
|
106
|
+
"description": "Published KFD decision text at decisions/KFD-1.md.",
|
|
107
|
+
"sourcePath": "decisions/KFD-1.md",
|
|
108
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
109
|
+
"impactProjection": {
|
|
110
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
111
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
112
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
113
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"id": "kfd-2-document",
|
|
118
|
+
"class": "cross-time",
|
|
119
|
+
"classes": [
|
|
120
|
+
"cross-time"
|
|
121
|
+
],
|
|
122
|
+
"description": "Published KFD decision text at decisions/KFD-2.md.",
|
|
123
|
+
"sourcePath": "decisions/KFD-2.md",
|
|
124
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
125
|
+
"impactProjection": {
|
|
126
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
127
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
128
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
129
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "kfd-3-document",
|
|
134
|
+
"class": "cross-time",
|
|
135
|
+
"classes": [
|
|
136
|
+
"cross-time"
|
|
137
|
+
],
|
|
138
|
+
"description": "Published KFD decision text at decisions/KFD-3.md.",
|
|
139
|
+
"sourcePath": "decisions/KFD-3.md",
|
|
140
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
141
|
+
"impactProjection": {
|
|
142
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
143
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
144
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
145
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "kfd-4-document",
|
|
150
|
+
"class": "cross-time",
|
|
151
|
+
"classes": [
|
|
152
|
+
"cross-time"
|
|
153
|
+
],
|
|
154
|
+
"description": "Published KFD decision text at decisions/KFD-4.md.",
|
|
155
|
+
"sourcePath": "decisions/KFD-4.md",
|
|
156
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
157
|
+
"impactProjection": {
|
|
158
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
159
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
160
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
161
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "kfd-registry",
|
|
166
|
+
"class": "integration-time",
|
|
167
|
+
"classes": [
|
|
168
|
+
"integration-time"
|
|
169
|
+
],
|
|
170
|
+
"description": "Published KFD package surface at registry.json.",
|
|
171
|
+
"sourcePath": "registry.json",
|
|
172
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
173
|
+
"impactProjection": {
|
|
174
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
175
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
176
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
177
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"id": "kfd-standards",
|
|
182
|
+
"class": "integration-time",
|
|
183
|
+
"classes": [
|
|
184
|
+
"integration-time"
|
|
185
|
+
],
|
|
186
|
+
"description": "Published KFD package surface at standards.json.",
|
|
187
|
+
"sourcePath": "standards.json",
|
|
188
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
189
|
+
"impactProjection": {
|
|
190
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
191
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
192
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
193
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"id": "kfd-standards-schema",
|
|
198
|
+
"class": "integration-time",
|
|
199
|
+
"classes": [
|
|
200
|
+
"integration-time"
|
|
201
|
+
],
|
|
202
|
+
"description": "Published JSON schema surface at schemas/kfd-standards.schema.json.",
|
|
203
|
+
"sourcePath": "schemas/kfd-standards.schema.json",
|
|
204
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
205
|
+
"impactProjection": {
|
|
206
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
207
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
208
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
209
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"id": "kfd-1-contract-world-schema",
|
|
214
|
+
"class": "integration-time",
|
|
215
|
+
"classes": [
|
|
216
|
+
"integration-time"
|
|
217
|
+
],
|
|
218
|
+
"description": "Published JSON schema surface at schemas/kfd-1/contract-world.schema.json.",
|
|
219
|
+
"sourcePath": "schemas/kfd-1/contract-world.schema.json",
|
|
220
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
221
|
+
"impactProjection": {
|
|
222
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
223
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
224
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
225
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"id": "kfd-1-witness-schema",
|
|
230
|
+
"class": "integration-time",
|
|
231
|
+
"classes": [
|
|
232
|
+
"integration-time"
|
|
233
|
+
],
|
|
234
|
+
"description": "Published JSON schema surface at schemas/kfd-1/witness.schema.json.",
|
|
235
|
+
"sourcePath": "schemas/kfd-1/witness.schema.json",
|
|
236
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
237
|
+
"impactProjection": {
|
|
238
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
239
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
240
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
241
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"id": "kfd-2-trust-taxonomy-schema",
|
|
246
|
+
"class": "integration-time",
|
|
247
|
+
"classes": [
|
|
248
|
+
"integration-time"
|
|
249
|
+
],
|
|
250
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-taxonomy.schema.json.",
|
|
251
|
+
"sourcePath": "schemas/kfd-2/trust-taxonomy.schema.json",
|
|
252
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
253
|
+
"impactProjection": {
|
|
254
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
255
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
256
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
257
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"id": "kfd-2-release-claims-schema",
|
|
262
|
+
"class": "integration-time",
|
|
263
|
+
"classes": [
|
|
264
|
+
"integration-time"
|
|
265
|
+
],
|
|
266
|
+
"description": "Published JSON schema surface at schemas/kfd-2/release-claims.schema.json.",
|
|
267
|
+
"sourcePath": "schemas/kfd-2/release-claims.schema.json",
|
|
268
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
269
|
+
"impactProjection": {
|
|
270
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
271
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
272
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
273
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"id": "kfd-2-release-trust-passport-schema",
|
|
278
|
+
"class": "integration-time",
|
|
279
|
+
"classes": [
|
|
280
|
+
"integration-time"
|
|
281
|
+
],
|
|
282
|
+
"description": "Published JSON schema surface at schemas/kfd-2/release-trust-passport.schema.json.",
|
|
283
|
+
"sourcePath": "schemas/kfd-2/release-trust-passport.schema.json",
|
|
284
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
285
|
+
"impactProjection": {
|
|
286
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
287
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
288
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
289
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"id": "kfd-3-collaboration-interface-schema",
|
|
294
|
+
"class": "integration-time",
|
|
295
|
+
"classes": [
|
|
296
|
+
"integration-time"
|
|
297
|
+
],
|
|
298
|
+
"description": "Published JSON schema surface at schemas/kfd-3/collaboration-interface.schema.json.",
|
|
299
|
+
"sourcePath": "schemas/kfd-3/collaboration-interface.schema.json",
|
|
300
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
301
|
+
"impactProjection": {
|
|
302
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
303
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
304
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
305
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"id": "kfd-3-witness-schema",
|
|
310
|
+
"class": "integration-time",
|
|
311
|
+
"classes": [
|
|
312
|
+
"integration-time"
|
|
313
|
+
],
|
|
314
|
+
"description": "Published JSON schema surface at schemas/kfd-3/witness.schema.json.",
|
|
315
|
+
"sourcePath": "schemas/kfd-3/witness.schema.json",
|
|
316
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
317
|
+
"impactProjection": {
|
|
318
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
319
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
320
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
321
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"id": "kfd-4-observer-perspective-schema",
|
|
326
|
+
"class": "integration-time",
|
|
327
|
+
"classes": [
|
|
328
|
+
"integration-time"
|
|
329
|
+
],
|
|
330
|
+
"description": "Published JSON schema surface at schemas/kfd-4/observer-perspective.schema.json.",
|
|
331
|
+
"sourcePath": "schemas/kfd-4/observer-perspective.schema.json",
|
|
332
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
333
|
+
"impactProjection": {
|
|
334
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
335
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
336
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
337
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "kfd-site-bundle",
|
|
342
|
+
"class": "cross-time",
|
|
343
|
+
"classes": [
|
|
344
|
+
"cross-time"
|
|
345
|
+
],
|
|
346
|
+
"description": "Published KFD package surface at site/kfd-site.json.",
|
|
347
|
+
"sourcePath": "site/kfd-site.json",
|
|
348
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
349
|
+
"impactProjection": {
|
|
350
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
351
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
352
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
353
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"id": "kfd-doc-map",
|
|
358
|
+
"class": "cross-time",
|
|
359
|
+
"classes": [
|
|
360
|
+
"cross-time"
|
|
361
|
+
],
|
|
362
|
+
"description": "Published documentation surface at docs/MAP.md.",
|
|
363
|
+
"sourcePath": "docs/MAP.md",
|
|
364
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
365
|
+
"impactProjection": {
|
|
366
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
367
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
368
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
369
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"id": "release-impact-ledger",
|
|
374
|
+
"class": "cross-time",
|
|
375
|
+
"classes": [
|
|
376
|
+
"cross-time"
|
|
377
|
+
],
|
|
378
|
+
"description": "Published KFD package surface at release-impact.json.",
|
|
379
|
+
"sourcePath": "release-impact.json",
|
|
380
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
381
|
+
"impactProjection": {
|
|
382
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
383
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
384
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
385
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"id": "kfd-check-gate",
|
|
390
|
+
"class": "integration-time",
|
|
391
|
+
"classes": [
|
|
392
|
+
"integration-time"
|
|
393
|
+
],
|
|
394
|
+
"description": "Repository verification or projection script at scripts/check.mjs.",
|
|
395
|
+
"sourcePath": "scripts/check.mjs",
|
|
396
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
397
|
+
"impactProjection": {
|
|
398
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
399
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
400
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
401
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"id": "release-propagation-graph",
|
|
406
|
+
"class": "integration-time",
|
|
407
|
+
"classes": [
|
|
408
|
+
"integration-time",
|
|
409
|
+
"cross-time"
|
|
410
|
+
],
|
|
411
|
+
"description": "Published KFD package surface at buildchain.release-propagation.json.",
|
|
412
|
+
"sourcePath": "buildchain.release-propagation.json",
|
|
413
|
+
"weldRationale": "Consumers can integrate with this surface and later audit or replay it as a released fact.",
|
|
414
|
+
"impactProjection": {
|
|
415
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
416
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
417
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
418
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"id": "buildchain-build-workflow",
|
|
423
|
+
"class": "integration-time",
|
|
424
|
+
"classes": [
|
|
425
|
+
"integration-time"
|
|
426
|
+
],
|
|
427
|
+
"description": "Release governance workflow surface at .github/workflows/build.yml.",
|
|
428
|
+
"sourcePath": ".github/workflows/build.yml",
|
|
429
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
430
|
+
"impactProjection": {
|
|
431
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
432
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
433
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
434
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"id": "buildchain-ref-promotion-workflow",
|
|
439
|
+
"class": "integration-time",
|
|
440
|
+
"classes": [
|
|
441
|
+
"integration-time"
|
|
442
|
+
],
|
|
443
|
+
"description": "Release governance workflow surface at .github/workflows/buildchain-ref-promotion.yml.",
|
|
444
|
+
"sourcePath": ".github/workflows/buildchain-ref-promotion.yml",
|
|
445
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
446
|
+
"impactProjection": {
|
|
447
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
448
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
449
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
450
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
451
|
+
}
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"id": "release-propagation-workflow",
|
|
455
|
+
"class": "integration-time",
|
|
456
|
+
"classes": [
|
|
457
|
+
"integration-time"
|
|
458
|
+
],
|
|
459
|
+
"description": "Release governance workflow surface at .github/workflows/release-propagation.yml.",
|
|
460
|
+
"sourcePath": ".github/workflows/release-propagation.yml",
|
|
461
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
462
|
+
"impactProjection": {
|
|
463
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
464
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
465
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
466
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"id": "verify-workflow",
|
|
471
|
+
"class": "integration-time",
|
|
472
|
+
"classes": [
|
|
473
|
+
"integration-time"
|
|
474
|
+
],
|
|
475
|
+
"description": "Release governance workflow surface at .github/workflows/verify.yml.",
|
|
476
|
+
"sourcePath": ".github/workflows/verify.yml",
|
|
477
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
478
|
+
"impactProjection": {
|
|
479
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
480
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
481
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
482
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
"id": "kfd-package-manifest",
|
|
487
|
+
"class": "integration-time",
|
|
488
|
+
"classes": [
|
|
489
|
+
"integration-time"
|
|
490
|
+
],
|
|
491
|
+
"description": "Published KFD package surface at package.json.",
|
|
492
|
+
"sourcePath": "package.json",
|
|
493
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
494
|
+
"impactProjection": {
|
|
495
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
496
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
497
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
498
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"id": "kfd-release-anchor",
|
|
503
|
+
"class": "integration-time",
|
|
504
|
+
"classes": [
|
|
505
|
+
"integration-time",
|
|
506
|
+
"cross-time"
|
|
507
|
+
],
|
|
508
|
+
"description": "Published KFD package surface at kfd.release.json.",
|
|
509
|
+
"sourcePath": "kfd.release.json",
|
|
510
|
+
"weldRationale": "Consumers can integrate with this surface and later audit or replay it as a released fact.",
|
|
511
|
+
"impactProjection": {
|
|
512
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
513
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
514
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
515
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"id": "kfd-2-public-release-trust-claim",
|
|
520
|
+
"class": "integration-time",
|
|
521
|
+
"classes": [
|
|
522
|
+
"integration-time"
|
|
523
|
+
],
|
|
524
|
+
"description": "Buildchain release-passport evidence surface at .buildchain/kfd-2/public-release-trust.claim.json.",
|
|
525
|
+
"sourcePath": ".buildchain/kfd-2/public-release-trust.claim.json",
|
|
526
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
527
|
+
"impactProjection": {
|
|
528
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
529
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
530
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
531
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"id": "kfd-2-trust-claims-schema",
|
|
536
|
+
"class": "integration-time",
|
|
537
|
+
"classes": [
|
|
538
|
+
"integration-time"
|
|
539
|
+
],
|
|
540
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-claims.schema.json.",
|
|
541
|
+
"sourcePath": "schemas/kfd-2/trust-claims.schema.json",
|
|
542
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
543
|
+
"impactProjection": {
|
|
544
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
545
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
546
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
547
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
"id": "kfd-2-trust-assessment-schema",
|
|
552
|
+
"class": "integration-time",
|
|
553
|
+
"classes": [
|
|
554
|
+
"integration-time"
|
|
555
|
+
],
|
|
556
|
+
"description": "Published JSON schema surface at schemas/kfd-2/trust-assessment.schema.json.",
|
|
557
|
+
"sourcePath": "schemas/kfd-2/trust-assessment.schema.json",
|
|
558
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
559
|
+
"impactProjection": {
|
|
560
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
561
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
562
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
563
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"id": "kfd-2-foundation-trust-claims",
|
|
568
|
+
"class": "integration-time",
|
|
569
|
+
"classes": [
|
|
570
|
+
"integration-time"
|
|
571
|
+
],
|
|
572
|
+
"description": "Buildchain evidence surface at .buildchain/kfd-2/kfd-foundation.trust-claims.json.",
|
|
573
|
+
"sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
|
|
574
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
575
|
+
"impactProjection": {
|
|
576
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
577
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
578
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
579
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
580
|
+
}
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"id": "kfd-2-foundation-trust-assessment",
|
|
584
|
+
"class": "integration-time",
|
|
585
|
+
"classes": [
|
|
586
|
+
"integration-time"
|
|
587
|
+
],
|
|
588
|
+
"description": "Buildchain evidence surface at .buildchain/kfd-2/kfd-foundation.trust-assessment.json.",
|
|
589
|
+
"sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
|
|
590
|
+
"weldRationale": "Consumers can bind to this surface as an integration contract.",
|
|
591
|
+
"impactProjection": {
|
|
592
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
593
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
594
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
595
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
596
|
+
}
|
|
597
|
+
},
|
|
598
|
+
{
|
|
599
|
+
"id": "kfd-1-usage-doc",
|
|
600
|
+
"class": "cross-time",
|
|
601
|
+
"classes": [
|
|
602
|
+
"cross-time"
|
|
603
|
+
],
|
|
604
|
+
"description": "Published KFD usage documentation surface at docs/KFD-1-usage.md.",
|
|
605
|
+
"sourcePath": "docs/KFD-1-usage.md",
|
|
606
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
607
|
+
"impactProjection": {
|
|
608
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
609
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
610
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
611
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"id": "kfd-2-usage-doc",
|
|
616
|
+
"class": "cross-time",
|
|
617
|
+
"classes": [
|
|
618
|
+
"cross-time"
|
|
619
|
+
],
|
|
620
|
+
"description": "Published KFD usage documentation surface at docs/KFD-2-usage.md.",
|
|
621
|
+
"sourcePath": "docs/KFD-2-usage.md",
|
|
622
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
623
|
+
"impactProjection": {
|
|
624
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
625
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
626
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
627
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"id": "kfd-3-usage-doc",
|
|
632
|
+
"class": "cross-time",
|
|
633
|
+
"classes": [
|
|
634
|
+
"cross-time"
|
|
635
|
+
],
|
|
636
|
+
"description": "Published KFD usage documentation surface at docs/KFD-3-usage.md.",
|
|
637
|
+
"sourcePath": "docs/KFD-3-usage.md",
|
|
638
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
639
|
+
"impactProjection": {
|
|
640
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
641
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
642
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
643
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"id": "kfd-4-usage-doc",
|
|
648
|
+
"class": "cross-time",
|
|
649
|
+
"classes": [
|
|
650
|
+
"cross-time"
|
|
651
|
+
],
|
|
652
|
+
"description": "Published KFD usage documentation surface at docs/KFD-4-usage.md.",
|
|
653
|
+
"sourcePath": "docs/KFD-4-usage.md",
|
|
654
|
+
"weldRationale": "Consumers can audit, replay, or cite this surface after release.",
|
|
655
|
+
"impactProjection": {
|
|
656
|
+
"breaking": "Incompatible changes to this registered surface require an explicit compatibility action before the dependent gate may pass.",
|
|
657
|
+
"additive": "Backward-compatible additions to this registered surface must be declared and may proceed through the domain projection as additive impact.",
|
|
658
|
+
"none": "Changes that do not touch this registered surface do not create KFD-1 compatibility impact for this surface.",
|
|
659
|
+
"unclassifiable": "If impact cannot be classified, the surface register is deficient and must be fixed before the dependent gate may pass."
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
]
|
|
50
663
|
}
|
|
51
664
|
},
|
|
52
665
|
"kfd-2": {
|
|
@@ -60,8 +673,9 @@
|
|
|
60
673
|
"revision": 1,
|
|
61
674
|
"metadataSchemaVersion": "1",
|
|
62
675
|
"document": {
|
|
63
|
-
"path": "decisions/
|
|
64
|
-
"url": "https://kfd.libkungfu.dev/2"
|
|
676
|
+
"path": "decisions/KFD-2.md",
|
|
677
|
+
"url": "https://kfd.libkungfu.dev/2",
|
|
678
|
+
"sha256": "6bc01776e478afc802c57c4e21a40bcfebf170f90ae039345d883c292053b622"
|
|
65
679
|
},
|
|
66
680
|
"compatibility": {
|
|
67
681
|
"packageLine": "v1.0",
|
|
@@ -70,15 +684,79 @@
|
|
|
70
684
|
"rule": "Substantive semantic changes mint a new KFD; compatible metadata additions keep schemaVersion 1."
|
|
71
685
|
},
|
|
72
686
|
"schemaIds": {
|
|
73
|
-
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json"
|
|
687
|
+
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json",
|
|
688
|
+
"trustTaxonomy": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-taxonomy.schema.json",
|
|
689
|
+
"releaseClaims": "https://kfd.libkungfu.dev/schemas/kfd-2/release-claims.schema.json",
|
|
690
|
+
"releaseTrustPassport": "https://kfd.libkungfu.dev/schemas/kfd-2/release-trust-passport.schema.json",
|
|
691
|
+
"trustClaims": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-claims.schema.json",
|
|
692
|
+
"trustAssessment": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-assessment.schema.json"
|
|
74
693
|
},
|
|
75
694
|
"schemaPaths": {
|
|
76
|
-
"metadata": "schemas/kfd-standards.schema.json"
|
|
695
|
+
"metadata": "schemas/kfd-standards.schema.json",
|
|
696
|
+
"trustTaxonomy": "schemas/kfd-2/trust-taxonomy.schema.json",
|
|
697
|
+
"releaseClaims": "schemas/kfd-2/release-claims.schema.json",
|
|
698
|
+
"releaseTrustPassport": "schemas/kfd-2/release-trust-passport.schema.json",
|
|
699
|
+
"trustClaims": "schemas/kfd-2/trust-claims.schema.json",
|
|
700
|
+
"trustAssessment": "schemas/kfd-2/trust-assessment.schema.json"
|
|
701
|
+
},
|
|
702
|
+
"interfaces": {
|
|
703
|
+
"trustTaxonomy": {
|
|
704
|
+
"contract": "kfd-2-trust-taxonomy",
|
|
705
|
+
"schemaVersion": 1,
|
|
706
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-taxonomy.schema.json",
|
|
707
|
+
"schemaPath": "schemas/kfd-2/trust-taxonomy.schema.json",
|
|
708
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; unknown taxonomy values fail validation until KFD records them in this schema."
|
|
709
|
+
},
|
|
710
|
+
"releaseClaims": {
|
|
711
|
+
"contract": "kfd-2-release-claims",
|
|
712
|
+
"schemaVersion": 1,
|
|
713
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-2/release-claims.schema.json",
|
|
714
|
+
"schemaPath": "schemas/kfd-2/release-claims.schema.json",
|
|
715
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
716
|
+
},
|
|
717
|
+
"releaseTrustPassport": {
|
|
718
|
+
"contract": "kfd-2-release-trust-passport",
|
|
719
|
+
"schemaVersion": 1,
|
|
720
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-2/release-trust-passport.schema.json",
|
|
721
|
+
"schemaPath": "schemas/kfd-2/release-trust-passport.schema.json",
|
|
722
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
723
|
+
},
|
|
724
|
+
"trustClaims": {
|
|
725
|
+
"contract": "kfd-2-trust-claims",
|
|
726
|
+
"schemaVersion": 1,
|
|
727
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-claims.schema.json",
|
|
728
|
+
"schemaPath": "schemas/kfd-2/trust-claims.schema.json",
|
|
729
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic, required-field, verification-meaning, or responsibility-boundary changes require a new interface version or contract."
|
|
730
|
+
},
|
|
731
|
+
"trustAssessment": {
|
|
732
|
+
"contract": "kfd-2-trust-assessment",
|
|
733
|
+
"schemaVersion": 1,
|
|
734
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-assessment.schema.json",
|
|
735
|
+
"schemaPath": "schemas/kfd-2/trust-assessment.schema.json",
|
|
736
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic, required-field, verification-meaning, or responsibility-boundary changes require a new interface version or contract."
|
|
737
|
+
}
|
|
77
738
|
},
|
|
78
739
|
"concepts": {
|
|
79
740
|
"facts": "inspectable facts",
|
|
741
|
+
"releaseClaim": "release claim",
|
|
742
|
+
"releaseClaims": "release claims",
|
|
743
|
+
"evidenceBinding": "evidence binding",
|
|
744
|
+
"auditBoundary": "audit boundary",
|
|
745
|
+
"residualRisk": "residual risk",
|
|
746
|
+
"riskType": "residual risk type",
|
|
747
|
+
"trustImpact": "trust impact",
|
|
748
|
+
"machineProvability": "machine provability",
|
|
749
|
+
"agentAction": "agent action",
|
|
750
|
+
"extensionRequest": "extension request",
|
|
751
|
+
"releaseTrustPassport": "release trust passport",
|
|
80
752
|
"responsibilityState": "responsibility state",
|
|
81
|
-
"trust": "trust from facts"
|
|
753
|
+
"trust": "trust from facts",
|
|
754
|
+
"trustClaim": "generic trust claim",
|
|
755
|
+
"trustClaims": "generic trust claims",
|
|
756
|
+
"trustAssessment": "generic trust assessment",
|
|
757
|
+
"claimSubject": "claim subject",
|
|
758
|
+
"claimSubjectKind": "claim subject kind",
|
|
759
|
+
"projection": "domain-specific trust projection"
|
|
82
760
|
}
|
|
83
761
|
},
|
|
84
762
|
"kfd-3": {
|
|
@@ -86,14 +764,15 @@
|
|
|
86
764
|
"id": "KFD-3",
|
|
87
765
|
"number": 3,
|
|
88
766
|
"label": "KFD-3",
|
|
89
|
-
"title": "Cooperation must start from
|
|
767
|
+
"title": "Cooperation must start from trusted value: compliance must not be coerced",
|
|
90
768
|
"kind": "principle",
|
|
91
769
|
"status": "active",
|
|
92
770
|
"revision": 1,
|
|
93
771
|
"metadataSchemaVersion": "1",
|
|
94
772
|
"document": {
|
|
95
|
-
"path": "decisions/
|
|
96
|
-
"url": "https://kfd.libkungfu.dev/3"
|
|
773
|
+
"path": "decisions/KFD-3.md",
|
|
774
|
+
"url": "https://kfd.libkungfu.dev/3",
|
|
775
|
+
"sha256": "049a7694f50e48774f3f1f74edccb46f0397a61211c027ab0eaa77e12d4e3f14"
|
|
97
776
|
},
|
|
98
777
|
"compatibility": {
|
|
99
778
|
"packageLine": "v1.0",
|
|
@@ -102,16 +781,97 @@
|
|
|
102
781
|
"rule": "Substantive semantic changes mint a new KFD; compatible metadata additions keep schemaVersion 1."
|
|
103
782
|
},
|
|
104
783
|
"schemaIds": {
|
|
105
|
-
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json"
|
|
784
|
+
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json",
|
|
785
|
+
"collaborationInterface": "https://kfd.libkungfu.dev/schemas/kfd-3/collaboration-interface.schema.json",
|
|
786
|
+
"witness": "https://kfd.libkungfu.dev/schemas/kfd-3/witness.schema.json"
|
|
106
787
|
},
|
|
107
788
|
"schemaPaths": {
|
|
108
|
-
"metadata": "schemas/kfd-standards.schema.json"
|
|
789
|
+
"metadata": "schemas/kfd-standards.schema.json",
|
|
790
|
+
"collaborationInterface": "schemas/kfd-3/collaboration-interface.schema.json",
|
|
791
|
+
"witness": "schemas/kfd-3/witness.schema.json"
|
|
792
|
+
},
|
|
793
|
+
"interfaces": {
|
|
794
|
+
"collaborationInterface": {
|
|
795
|
+
"contract": "kfd-3-collaboration-interface",
|
|
796
|
+
"schemaVersion": 1,
|
|
797
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-3/collaboration-interface.schema.json",
|
|
798
|
+
"schemaPath": "schemas/kfd-3/collaboration-interface.schema.json",
|
|
799
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
800
|
+
},
|
|
801
|
+
"witness": {
|
|
802
|
+
"contract": "kfd-3-witness",
|
|
803
|
+
"schemaVersion": 1,
|
|
804
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-3/witness.schema.json",
|
|
805
|
+
"schemaPath": "schemas/kfd-3/witness.schema.json",
|
|
806
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
807
|
+
}
|
|
109
808
|
},
|
|
110
809
|
"concepts": {
|
|
810
|
+
"trustedValueClaim": "trusted value claim",
|
|
811
|
+
"valueEvidence": "value evidence",
|
|
812
|
+
"trustAssessmentLink": "trust assessment link",
|
|
813
|
+
"trustedValue": "trusted value",
|
|
111
814
|
"transparentValue": "transparent value",
|
|
112
815
|
"stableChoice": "stable choice",
|
|
113
816
|
"explainableConstraints": "explainable constraints",
|
|
114
|
-
"nonCoercion": "non-coercive cooperation"
|
|
817
|
+
"nonCoercion": "non-coercive cooperation",
|
|
818
|
+
"participant": "participant",
|
|
819
|
+
"collaborationInterface": "collaboration interface",
|
|
820
|
+
"minimalEntrypoint": "minimal entrypoint",
|
|
821
|
+
"discoverability": "discoverability",
|
|
822
|
+
"closure": "closed-world interface classification",
|
|
823
|
+
"choicePath": "choice path",
|
|
824
|
+
"extensionRequest": "extension request",
|
|
825
|
+
"extensionPath": "extension path"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"kfd-4": {
|
|
829
|
+
"key": "kfd-4",
|
|
830
|
+
"id": "KFD-4",
|
|
831
|
+
"number": 4,
|
|
832
|
+
"label": "KFD-4",
|
|
833
|
+
"title": "Timelines must declare their observer: useful views need a stated perspective",
|
|
834
|
+
"kind": "procedure",
|
|
835
|
+
"status": "active",
|
|
836
|
+
"revision": 1,
|
|
837
|
+
"metadataSchemaVersion": "1",
|
|
838
|
+
"document": {
|
|
839
|
+
"path": "decisions/KFD-4.md",
|
|
840
|
+
"url": "https://kfd.libkungfu.dev/4",
|
|
841
|
+
"sha256": "7077a6446c8baa60d85426780cb7b2bee488133196b6f53d74f0eb151f6e26e4"
|
|
842
|
+
},
|
|
843
|
+
"compatibility": {
|
|
844
|
+
"packageLine": "v1.0",
|
|
845
|
+
"registrySchemaVersion": 1,
|
|
846
|
+
"metadataSchemaVersion": "1",
|
|
847
|
+
"rule": "Substantive semantic changes mint a new KFD; compatible metadata additions keep schemaVersion 1."
|
|
848
|
+
},
|
|
849
|
+
"schemaIds": {
|
|
850
|
+
"metadata": "https://kfd.libkungfu.dev/schemas/kfd-standards.schema.json",
|
|
851
|
+
"observerPerspective": "https://kfd.libkungfu.dev/schemas/kfd-4/observer-perspective.schema.json"
|
|
852
|
+
},
|
|
853
|
+
"schemaPaths": {
|
|
854
|
+
"metadata": "schemas/kfd-standards.schema.json",
|
|
855
|
+
"observerPerspective": "schemas/kfd-4/observer-perspective.schema.json"
|
|
856
|
+
},
|
|
857
|
+
"interfaces": {
|
|
858
|
+
"observerPerspective": {
|
|
859
|
+
"contract": "kfd-4-observer-perspective",
|
|
860
|
+
"schemaVersion": 1,
|
|
861
|
+
"schemaId": "https://kfd.libkungfu.dev/schemas/kfd-4/observer-perspective.schema.json",
|
|
862
|
+
"schemaPath": "schemas/kfd-4/observer-perspective.schema.json",
|
|
863
|
+
"compatibilityRule": "Compatible additions may keep schemaVersion 1; semantic or required-field changes require a new interface version or contract."
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
"concepts": {
|
|
867
|
+
"observer": "observer",
|
|
868
|
+
"declaredPerspective": "declared perspective",
|
|
869
|
+
"observerPerspective": "observer perspective",
|
|
870
|
+
"acceptedFacts": "accepted facts",
|
|
871
|
+
"projectionPolicy": "projection policy",
|
|
872
|
+
"causalDominance": "causal dominance",
|
|
873
|
+
"degradedEvidence": "degraded evidence",
|
|
874
|
+
"timeline": "perspective-bearing timeline"
|
|
115
875
|
}
|
|
116
876
|
}
|
|
117
877
|
}
|