@kungfu-tech/kfd 1.0.0-alpha.2 → 1.0.0-alpha.21

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 (44) hide show
  1. package/.buildchain/kfd-1/contract-world.witness.json +753 -0
  2. package/.buildchain/kfd-2/kfd-foundation.trust-assessment.json +238 -0
  3. package/.buildchain/kfd-2/kfd-foundation.trust-claims.json +225 -0
  4. package/.buildchain/kfd-2/public-release-trust.claim.json +131 -0
  5. package/.buildchain/kfd-3/collaboration-interface.artifact.json +774 -0
  6. package/.buildchain/kfd-3/collaboration-interface.json +421 -0
  7. package/.buildchain/kfd-3/collaboration-interface.prebuild.json +1141 -0
  8. package/README.md +153 -29
  9. package/TRADEMARKS.md +60 -0
  10. package/buildchain.contract-lock.json +86 -0
  11. package/buildchain.release-propagation.json +32 -0
  12. package/decisions/{kfd-1.md → KFD-1.md} +77 -35
  13. package/decisions/{kfd-2.md → KFD-2.md} +63 -11
  14. package/decisions/{kfd-3.md → KFD-3.md} +54 -16
  15. package/decisions/KFD-4.md +209 -0
  16. package/docs/KFD-1-usage.md +37 -0
  17. package/docs/KFD-2-usage.md +123 -0
  18. package/docs/KFD-3-usage.md +98 -0
  19. package/docs/KFD-4-usage.md +45 -0
  20. package/docs/MAP.md +20 -3
  21. package/docs/release-governance.md +28 -0
  22. package/kfd.release.json +13 -0
  23. package/package.json +28 -2
  24. package/registry.json +15 -5
  25. package/release-impact.json +113 -0
  26. package/schemas/kfd-1/contract-world.schema.json +67 -4
  27. package/schemas/kfd-1/witness.schema.json +113 -0
  28. package/schemas/kfd-2/release-claims.schema.json +331 -0
  29. package/schemas/kfd-2/release-trust-passport.schema.json +276 -0
  30. package/schemas/kfd-2/trust-assessment.schema.json +313 -0
  31. package/schemas/kfd-2/trust-claims.schema.json +334 -0
  32. package/schemas/kfd-2/trust-taxonomy.schema.json +219 -0
  33. package/schemas/kfd-3/collaboration-interface.schema.json +542 -0
  34. package/schemas/kfd-3/witness.schema.json +167 -0
  35. package/schemas/kfd-4/observer-perspective.schema.json +300 -0
  36. package/schemas/kfd-standards.schema.json +163 -0
  37. package/scripts/check.mjs +930 -0
  38. package/scripts/npm-publish-transaction.mjs +220 -0
  39. package/scripts/update-kfd-1-witness.mjs +35 -0
  40. package/scripts/update-kfd-2-claim.mjs +304 -0
  41. package/scripts/update-kfd-3-witness.mjs +261 -0
  42. package/scripts/update-site-bundle.mjs +353 -0
  43. package/site/kfd-site.json +251 -12
  44. package/standards.json +776 -15
@@ -0,0 +1,774 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "contract": "kfd-3-witness",
4
+ "id": "kfd-repository",
5
+ "standard": "kfd-3",
6
+ "collaborationInterface": {
7
+ "schemaId": "https://kfd.libkungfu.dev/schemas/kfd-3/collaboration-interface.schema.json",
8
+ "digest": "sha256:fa41128be4ee57a4a40b76d4d7a063c01d7c2e5c53aec2b9c6db819c7a27b22b"
9
+ },
10
+ "sourceRegistry": {
11
+ "id": "kfd-collaboration-interface",
12
+ "path": ".buildchain/kfd-3/collaboration-interface.json",
13
+ "sha256": "fa41128be4ee57a4a40b76d4d7a063c01d7c2e5c53aec2b9c6db819c7a27b22b"
14
+ },
15
+ "artifact": {
16
+ "name": "@kungfu-tech/kfd",
17
+ "path": "npm:@kungfu-tech/kfd",
18
+ "digest": "sha256:fa41128be4ee57a4a40b76d4d7a063c01d7c2e5c53aec2b9c6db819c7a27b22b"
19
+ },
20
+ "surfaces": [
21
+ {
22
+ "id": "readme",
23
+ "name": "readme",
24
+ "kind": "markdown-doc",
25
+ "participantProfile": "human-reader,agent-reader",
26
+ "availability": "stable",
27
+ "visibility": "public",
28
+ "participantFacing": true,
29
+ "public": true,
30
+ "sourcePath": "README.md"
31
+ },
32
+ {
33
+ "id": "docs-map",
34
+ "name": "docs-map",
35
+ "kind": "markdown-doc",
36
+ "participantProfile": "human-reader,agent-reader,maintainer",
37
+ "availability": "stable",
38
+ "visibility": "public",
39
+ "participantFacing": true,
40
+ "public": true,
41
+ "sourcePath": "docs/MAP.md"
42
+ },
43
+ {
44
+ "id": "official-status-and-trademarks",
45
+ "name": "official-status-and-trademarks",
46
+ "kind": "markdown-doc",
47
+ "participantProfile": "human-reader,agent-reader,package-consumer",
48
+ "availability": "stable",
49
+ "visibility": "public",
50
+ "participantFacing": true,
51
+ "public": true,
52
+ "sourcePath": "TRADEMARKS.md"
53
+ },
54
+ {
55
+ "id": "decision-texts",
56
+ "name": "decision-texts",
57
+ "kind": "markdown-doc",
58
+ "participantProfile": "human-reader,agent-reader,maintainer",
59
+ "availability": "stable",
60
+ "visibility": "public",
61
+ "participantFacing": true,
62
+ "public": true,
63
+ "sourcePath": "decisions/*.md"
64
+ },
65
+ {
66
+ "id": "registry-json",
67
+ "name": "registry-json",
68
+ "kind": "json-api",
69
+ "participantProfile": "agent-reader,package-consumer,site-consumer",
70
+ "availability": "stable",
71
+ "visibility": "public",
72
+ "participantFacing": true,
73
+ "public": true,
74
+ "sourcePath": "registry.json"
75
+ },
76
+ {
77
+ "id": "standards-json",
78
+ "name": "standards-json",
79
+ "kind": "json-api",
80
+ "participantProfile": "agent-reader,package-consumer,release-system",
81
+ "availability": "stable",
82
+ "visibility": "public",
83
+ "participantFacing": true,
84
+ "public": true,
85
+ "sourcePath": "standards.json"
86
+ },
87
+ {
88
+ "id": "schemas",
89
+ "name": "schemas",
90
+ "kind": "json-api",
91
+ "participantProfile": "agent-reader,package-consumer,release-system",
92
+ "availability": "stable",
93
+ "visibility": "public",
94
+ "participantFacing": true,
95
+ "public": true,
96
+ "sourcePath": "schemas/**/*.json"
97
+ },
98
+ {
99
+ "id": "package-exports",
100
+ "name": "package-exports",
101
+ "kind": "package",
102
+ "participantProfile": "package-consumer,agent-reader",
103
+ "availability": "stable",
104
+ "visibility": "public",
105
+ "participantFacing": true,
106
+ "public": true,
107
+ "sourcePath": "package.json#exports"
108
+ },
109
+ {
110
+ "id": "site-bundle-json",
111
+ "name": "site-bundle-json",
112
+ "kind": "json-api",
113
+ "participantProfile": "site-consumer,agent-reader",
114
+ "availability": "stable",
115
+ "visibility": "public",
116
+ "participantFacing": true,
117
+ "public": true,
118
+ "sourcePath": "site/kfd-site.json"
119
+ },
120
+ {
121
+ "id": "release-impact-json",
122
+ "name": "release-impact-json",
123
+ "kind": "json-api",
124
+ "participantProfile": "release-system,maintainer,agent-reader",
125
+ "availability": "stable",
126
+ "visibility": "public",
127
+ "participantFacing": true,
128
+ "public": true,
129
+ "sourcePath": "release-impact.json"
130
+ },
131
+ {
132
+ "id": "release-anchor-json",
133
+ "name": "release-anchor-json",
134
+ "kind": "json-api",
135
+ "participantProfile": "release-system,agent-reader,maintainer",
136
+ "availability": "stable",
137
+ "visibility": "public",
138
+ "participantFacing": true,
139
+ "public": true,
140
+ "sourcePath": "kfd.release.json"
141
+ },
142
+ {
143
+ "id": "release-propagation-json",
144
+ "name": "release-propagation-json",
145
+ "kind": "json-api",
146
+ "participantProfile": "release-system,site-consumer",
147
+ "availability": "stable",
148
+ "visibility": "public",
149
+ "participantFacing": true,
150
+ "public": true,
151
+ "sourcePath": "buildchain.release-propagation.json"
152
+ },
153
+ {
154
+ "id": "kfd-1-witness",
155
+ "name": "kfd-1-witness",
156
+ "kind": "json-api",
157
+ "participantProfile": "release-system,maintainer,agent-reader",
158
+ "availability": "stable",
159
+ "visibility": "public",
160
+ "participantFacing": true,
161
+ "public": true,
162
+ "sourcePath": ".buildchain/kfd-1/contract-world.witness.json"
163
+ },
164
+ {
165
+ "id": "kfd-2-public-release-trust-claim",
166
+ "name": "kfd-2-public-release-trust-claim",
167
+ "kind": "json-api",
168
+ "participantProfile": "release-system,maintainer,agent-reader,package-consumer",
169
+ "availability": "stable",
170
+ "visibility": "public",
171
+ "participantFacing": true,
172
+ "public": true,
173
+ "sourcePath": ".buildchain/kfd-2/public-release-trust.claim.json"
174
+ },
175
+ {
176
+ "id": "kfd-2-foundation-trust-claims",
177
+ "name": "kfd-2-foundation-trust-claims",
178
+ "kind": "json-api",
179
+ "participantProfile": "release-system,maintainer,agent-reader,package-consumer",
180
+ "availability": "stable",
181
+ "visibility": "public",
182
+ "participantFacing": true,
183
+ "public": true,
184
+ "sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-claims.json"
185
+ },
186
+ {
187
+ "id": "kfd-2-foundation-trust-assessment",
188
+ "name": "kfd-2-foundation-trust-assessment",
189
+ "kind": "json-api",
190
+ "participantProfile": "release-system,maintainer,agent-reader,package-consumer",
191
+ "availability": "stable",
192
+ "visibility": "public",
193
+ "participantFacing": true,
194
+ "public": true,
195
+ "sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json"
196
+ },
197
+ {
198
+ "id": "kfd-3-self-witnesses",
199
+ "name": "kfd-3-self-witnesses",
200
+ "kind": "json-api",
201
+ "participantProfile": "release-system,maintainer,agent-reader",
202
+ "availability": "stable",
203
+ "visibility": "public",
204
+ "participantFacing": true,
205
+ "public": true,
206
+ "sourcePath": ".buildchain/kfd-3/*.json"
207
+ },
208
+ {
209
+ "id": "release-workflows",
210
+ "name": "release-workflows",
211
+ "kind": "config",
212
+ "participantProfile": "release-system,maintainer",
213
+ "availability": "stable",
214
+ "visibility": "public",
215
+ "participantFacing": true,
216
+ "public": true,
217
+ "sourcePath": ".github/workflows/*.yml"
218
+ },
219
+ {
220
+ "id": "registry",
221
+ "name": "registry",
222
+ "kind": "entrypoint",
223
+ "participantProfile": "agent-reader,package-consumer,site-consumer",
224
+ "availability": "shipped",
225
+ "visibility": "public",
226
+ "participantFacing": true,
227
+ "public": true,
228
+ "sourcePath": "registry.json"
229
+ },
230
+ {
231
+ "id": "standards",
232
+ "name": "standards",
233
+ "kind": "entrypoint",
234
+ "participantProfile": "agent-reader,package-consumer,release-system",
235
+ "availability": "shipped",
236
+ "visibility": "public",
237
+ "participantFacing": true,
238
+ "public": true,
239
+ "sourcePath": "standards.json"
240
+ },
241
+ {
242
+ "id": "release-anchor",
243
+ "name": "release-anchor",
244
+ "kind": "entrypoint",
245
+ "participantProfile": "release-system,agent-reader",
246
+ "availability": "shipped",
247
+ "visibility": "public",
248
+ "participantFacing": true,
249
+ "public": true,
250
+ "sourcePath": "kfd.release.json"
251
+ },
252
+ {
253
+ "id": "site-bundle",
254
+ "name": "site-bundle",
255
+ "kind": "entrypoint",
256
+ "participantProfile": "site-consumer,agent-reader",
257
+ "availability": "shipped",
258
+ "visibility": "public",
259
+ "participantFacing": true,
260
+ "public": true,
261
+ "sourcePath": "site/kfd-site.json"
262
+ }
263
+ ],
264
+ "docs": [
265
+ {
266
+ "id": "doc:readme",
267
+ "sourcePath": "README.md",
268
+ "sha256": "c5a320a2d9e31972ae91b15310c003a9b6cc8c747ae72494514403abe925638d"
269
+ },
270
+ {
271
+ "id": "doc:trademarks",
272
+ "sourcePath": "TRADEMARKS.md",
273
+ "sha256": "c59e3e936c2a0f2e3598fc7f8977c734dfc1c23df506c8c8360eb39e8e2ee3e1"
274
+ },
275
+ {
276
+ "id": "doc:docs-map",
277
+ "sourcePath": "docs/MAP.md",
278
+ "sha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf"
279
+ },
280
+ {
281
+ "id": "doc:kfd-1-usage",
282
+ "sourcePath": "docs/KFD-1-usage.md",
283
+ "sha256": "3b9691cdd9c0a28c1e428e1cb421939cb17deab37d99c39caff13c058c63846a"
284
+ },
285
+ {
286
+ "id": "doc:kfd-2-usage",
287
+ "sourcePath": "docs/KFD-2-usage.md",
288
+ "sha256": "ff800c6b46d1909c2f0414d9e0c8ae2219edc83a59a066cafda5c970cac3471d"
289
+ },
290
+ {
291
+ "id": "doc:kfd-3-usage",
292
+ "sourcePath": "docs/KFD-3-usage.md",
293
+ "sha256": "21ffa3193fa9c74a53ac890c48591ab768fa0871cb4e9cb265e5eae199ec63f7"
294
+ },
295
+ {
296
+ "id": "doc:kfd-4-usage",
297
+ "sourcePath": "docs/KFD-4-usage.md",
298
+ "sha256": "d94680fa69309b2e26d139d2c134e4c1f5246c02b039191bc0fe078e3cb52042"
299
+ },
300
+ {
301
+ "id": "decision:kfd-1",
302
+ "sourcePath": "decisions/KFD-1.md",
303
+ "sha256": "0b7b1ec54d661b271f91f02cefa97b11e1d1ef9c637efd2d1878d5f9c9185d80"
304
+ },
305
+ {
306
+ "id": "decision:kfd-2",
307
+ "sourcePath": "decisions/KFD-2.md",
308
+ "sha256": "6bc01776e478afc802c57c4e21a40bcfebf170f90ae039345d883c292053b622"
309
+ },
310
+ {
311
+ "id": "decision:kfd-3",
312
+ "sourcePath": "decisions/KFD-3.md",
313
+ "sha256": "049a7694f50e48774f3f1f74edccb46f0397a61211c027ab0eaa77e12d4e3f14"
314
+ },
315
+ {
316
+ "id": "decision:kfd-4",
317
+ "sourcePath": "decisions/KFD-4.md",
318
+ "sha256": "b7ae42a6f1ddb1e838b93fb33c9da5bfae28fad39d31bfca83668550e8c6335c"
319
+ }
320
+ ],
321
+ "schemas": [
322
+ {
323
+ "id": "schema:kfd-standards",
324
+ "sourcePath": "schemas/kfd-standards.schema.json",
325
+ "sha256": "1ad05c1e3dd76571e359841f12ffc3620db8ede626eda8ff6393407ffad710c1"
326
+ },
327
+ {
328
+ "id": "schema:kfd-1:contract-world",
329
+ "sourcePath": "schemas/kfd-1/contract-world.schema.json",
330
+ "sha256": "412d22385cd81a72798cc649c5ddfa961b6ae91ec2727d4300261a55fa5036f3"
331
+ },
332
+ {
333
+ "id": "schema:kfd-1:witness",
334
+ "sourcePath": "schemas/kfd-1/witness.schema.json",
335
+ "sha256": "354e6d0691be8a4c6dfd296fa9a175bb2a3998fdefa70842f2fa2fa441f52cb1"
336
+ },
337
+ {
338
+ "id": "schema:kfd-2:trust-taxonomy",
339
+ "sourcePath": "schemas/kfd-2/trust-taxonomy.schema.json",
340
+ "sha256": "a663d301a663cadb8567e3010361f5a630b76b6518ed7603dfd58cbd4e64a658"
341
+ },
342
+ {
343
+ "id": "schema:kfd-2:trust-claims",
344
+ "sourcePath": "schemas/kfd-2/trust-claims.schema.json",
345
+ "sha256": "5f452a5973502273f0249116b3a4171549a84515d8ba5286a09f173db4f0e03a"
346
+ },
347
+ {
348
+ "id": "schema:kfd-2:trust-assessment",
349
+ "sourcePath": "schemas/kfd-2/trust-assessment.schema.json",
350
+ "sha256": "cdb56fb16d0d2e91e4a9ebaff9cefc212a70fd22701e1185ca75d66af6172a51"
351
+ },
352
+ {
353
+ "id": "schema:kfd-2:release-claims",
354
+ "sourcePath": "schemas/kfd-2/release-claims.schema.json",
355
+ "sha256": "0f52c4a9949f62163a0fbe14fefc2f2f93f548ae18b6b5c07eb87aedca4c0be0"
356
+ },
357
+ {
358
+ "id": "schema:kfd-2:release-trust-passport",
359
+ "sourcePath": "schemas/kfd-2/release-trust-passport.schema.json",
360
+ "sha256": "df7f828605f680f3ff52fe3468cbf8f5e20151fac0d5c31cd9a0de9765efecc1"
361
+ },
362
+ {
363
+ "id": "schema:kfd-3:collaboration-interface",
364
+ "sourcePath": "schemas/kfd-3/collaboration-interface.schema.json",
365
+ "sha256": "6526be8e59d2f0f645e7f67a8f63a93f017a2dac62701147d49c5f391c5483a3"
366
+ },
367
+ {
368
+ "id": "schema:kfd-3:witness",
369
+ "sourcePath": "schemas/kfd-3/witness.schema.json",
370
+ "sha256": "86567c1d5d32ac2ce621a596c08d2702c0facea0d0cfcb836ac31a170dc19779"
371
+ },
372
+ {
373
+ "id": "schema:kfd-4:observer-perspective",
374
+ "sourcePath": "schemas/kfd-4/observer-perspective.schema.json",
375
+ "sha256": "806bdc4e06e58ddb0833f69044c9321ea0a8e3e11fd8c662be19d1752e3b070c"
376
+ }
377
+ ],
378
+ "standardsMetadata": [
379
+ {
380
+ "id": "metadata:registry",
381
+ "sourcePath": "registry.json",
382
+ "sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5"
383
+ },
384
+ {
385
+ "id": "metadata:standards",
386
+ "sourcePath": "standards.json",
387
+ "sha256": "4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f"
388
+ },
389
+ {
390
+ "id": "metadata:release-impact",
391
+ "sourcePath": "release-impact.json",
392
+ "sha256": "685f65d10491593d28321431eee315bb5fbbedd2d1ccec0747f4a37547b3124a"
393
+ },
394
+ {
395
+ "id": "metadata:release-anchor",
396
+ "sourcePath": "kfd.release.json",
397
+ "sha256": "bfb302c839b6cb45204d541b5af5b1c211568efb16fb3eebbb04dc65f7de83d2"
398
+ },
399
+ {
400
+ "id": "metadata:buildchain-contract-lock",
401
+ "sourcePath": "buildchain.contract-lock.json",
402
+ "sha256": "b01c166a59bec6d73e882a69d9d91fbb98f1132558a417f4654c19889af6f0b9"
403
+ },
404
+ {
405
+ "id": "metadata:kfd-2-public-release-trust-claim",
406
+ "sourcePath": ".buildchain/kfd-2/public-release-trust.claim.json",
407
+ "sha256": "3780b47472762b5ce9575250da73ee800af71dd194a9b0a3f61a063569311237"
408
+ },
409
+ {
410
+ "id": "metadata:kfd-2-foundation-trust-claims",
411
+ "sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
412
+ "sha256": "87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b"
413
+ },
414
+ {
415
+ "id": "metadata:kfd-2-foundation-trust-assessment",
416
+ "sourcePath": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
417
+ "sha256": "c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f"
418
+ }
419
+ ],
420
+ "packageExports": [
421
+ {
422
+ "id": "export:package-json",
423
+ "sourcePath": "package.json#exports",
424
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534"
425
+ },
426
+ {
427
+ "id": "export:npm-files",
428
+ "sourcePath": "package.json#files",
429
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534"
430
+ }
431
+ ],
432
+ "siteConsumptionContracts": [
433
+ {
434
+ "id": "site:kfd-site-bundle",
435
+ "sourcePath": "site/kfd-site.json",
436
+ "sha256": "bb0c8f27239d8716eda2fcb730b7933a9df580da0be0c415d6f42262d34d1709"
437
+ },
438
+ {
439
+ "id": "site:release-propagation",
440
+ "sourcePath": "buildchain.release-propagation.json",
441
+ "sha256": "71f9b54b9e76111178635804615fb0b4600f3131a7871b7c7817395b708c6fb3"
442
+ }
443
+ ],
444
+ "evidence": {
445
+ "minimalEntrypoints": [
446
+ {
447
+ "path": "README.md",
448
+ "sha256": "c5a320a2d9e31972ae91b15310c003a9b6cc8c747ae72494514403abe925638d",
449
+ "description": "Start from the KFD worldview and current decision set."
450
+ },
451
+ {
452
+ "path": "docs/MAP.md",
453
+ "sha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf",
454
+ "description": "Route readers and agents to the right KFD document or machine surface."
455
+ },
456
+ {
457
+ "path": "TRADEMARKS.md",
458
+ "sha256": "c59e3e936c2a0f2e3598fc7f8977c734dfc1c23df506c8c8360eb39e8e2ee3e1",
459
+ "description": "Understand what Apache-2.0 covers and what remains official, trademark-bound, or endorsement-bound."
460
+ },
461
+ {
462
+ "path": "registry.json",
463
+ "sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
464
+ "description": "Consume the authoritative decision index."
465
+ },
466
+ {
467
+ "path": "standards.json",
468
+ "sha256": "4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f",
469
+ "description": "Discover KFD schema IDs, schema paths, concepts, and interface contracts."
470
+ },
471
+ {
472
+ "path": "package.json#exports",
473
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534",
474
+ "description": "Consume the shipped npm package surfaces."
475
+ },
476
+ {
477
+ "path": "kfd.release.json",
478
+ "sha256": "bfb302c839b6cb45204d541b5af5b1c211568efb16fb3eebbb04dc65f7de83d2",
479
+ "description": "Inspect the explicit KFD package version anchor for the current Buildchain release line."
480
+ },
481
+ {
482
+ "path": ".buildchain/kfd-2/public-release-trust.claim.json",
483
+ "sha256": "3780b47472762b5ce9575250da73ee800af71dd194a9b0a3f61a063569311237",
484
+ "description": "Inspect the explicit public KFD-2 claim passed into Buildchain release passport generation."
485
+ },
486
+ {
487
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
488
+ "sha256": "87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b",
489
+ "description": "Inspect generic KFD-2 claims for the KFD package self-dogfood assessment."
490
+ },
491
+ {
492
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
493
+ "sha256": "c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f",
494
+ "description": "Inspect KFD-2's generic assessment of KFD-1, KFD-3, and KFD-4 claims."
495
+ },
496
+ {
497
+ "path": "site/kfd-site.json",
498
+ "sha256": "bb0c8f27239d8716eda2fcb730b7933a9df580da0be0c415d6f42262d34d1709",
499
+ "description": "Render KFD-owned site text and decision pages without duplicating extraction logic."
500
+ }
501
+ ],
502
+ "discoverability": [
503
+ {
504
+ "path": "README.md",
505
+ "sha256": "c5a320a2d9e31972ae91b15310c003a9b6cc8c747ae72494514403abe925638d",
506
+ "description": "Human and agent entrypoint"
507
+ },
508
+ {
509
+ "path": "TRADEMARKS.md",
510
+ "sha256": "c59e3e936c2a0f2e3598fc7f8977c734dfc1c23df506c8c8360eb39e8e2ee3e1",
511
+ "description": "Official status, trademark, and authority boundary"
512
+ },
513
+ {
514
+ "path": "docs/MAP.md",
515
+ "sha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf",
516
+ "description": "Documentation routing entrypoint"
517
+ },
518
+ {
519
+ "path": "registry.json",
520
+ "sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
521
+ "description": "Machine-readable decision index"
522
+ },
523
+ {
524
+ "path": "standards.json",
525
+ "sha256": "4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f",
526
+ "description": "Machine-readable standards metadata"
527
+ },
528
+ {
529
+ "path": ".buildchain/kfd-2/public-release-trust.claim.json",
530
+ "sha256": "3780b47472762b5ce9575250da73ee800af71dd194a9b0a3f61a063569311237",
531
+ "description": "KFD-2 public release trust claim"
532
+ },
533
+ {
534
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
535
+ "sha256": "87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b",
536
+ "description": "KFD-2 generic trust claims for KFD self-dogfood"
537
+ },
538
+ {
539
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
540
+ "sha256": "c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f",
541
+ "description": "KFD-2 generic trust assessment for KFD self-dogfood"
542
+ },
543
+ {
544
+ "path": "package.json",
545
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534",
546
+ "description": "Package export map"
547
+ },
548
+ {
549
+ "path": "site/kfd-site.json",
550
+ "sha256": "bb0c8f27239d8716eda2fcb730b7933a9df580da0be0c415d6f42262d34d1709",
551
+ "description": "Site content projection"
552
+ }
553
+ ],
554
+ "valueEvidence": [
555
+ {
556
+ "path": "README.md",
557
+ "sha256": "c5a320a2d9e31972ae91b15310c003a9b6cc8c747ae72494514403abe925638d",
558
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
559
+ },
560
+ {
561
+ "path": "decisions/KFD-1.md",
562
+ "sha256": "0b7b1ec54d661b271f91f02cefa97b11e1d1ef9c637efd2d1878d5f9c9185d80",
563
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
564
+ },
565
+ {
566
+ "path": "decisions/KFD-2.md",
567
+ "sha256": "6bc01776e478afc802c57c4e21a40bcfebf170f90ae039345d883c292053b622",
568
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
569
+ },
570
+ {
571
+ "path": "decisions/KFD-3.md",
572
+ "sha256": "049a7694f50e48774f3f1f74edccb46f0397a61211c027ab0eaa77e12d4e3f14",
573
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
574
+ },
575
+ {
576
+ "path": "registry.json",
577
+ "sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
578
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
579
+ },
580
+ {
581
+ "path": "standards.json",
582
+ "sha256": "4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f",
583
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
584
+ },
585
+ {
586
+ "path": "site/kfd-site.json",
587
+ "sha256": "bb0c8f27239d8716eda2fcb730b7933a9df580da0be0c415d6f42262d34d1709",
588
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
589
+ },
590
+ {
591
+ "path": "scripts/check.mjs",
592
+ "sha256": "531fec64c2d570c8214bc2009569ccff4436bbabbff9a54cf5220d2c323fc974",
593
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
594
+ },
595
+ {
596
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
597
+ "sha256": "c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f",
598
+ "description": "KFD-3 value evidence for kfd-foundation-model: KFD helps humans and agents understand the foundation model before adopting or extending kungfu-systems decisions."
599
+ },
600
+ {
601
+ "path": "schemas/kfd-3/collaboration-interface.schema.json",
602
+ "sha256": "6526be8e59d2f0f645e7f67a8f63a93f017a2dac62701147d49c5f391c5483a3",
603
+ "description": "KFD-3 value evidence for kfd-machine-consumption: KFD gives agents and release systems machine-readable standards, schemas, package exports, and witnesses so they can consume KFD without relying on private context."
604
+ },
605
+ {
606
+ "path": "schemas/kfd-3/witness.schema.json",
607
+ "sha256": "86567c1d5d32ac2ce621a596c08d2702c0facea0d0cfcb836ac31a170dc19779",
608
+ "description": "KFD-3 value evidence for kfd-machine-consumption: KFD gives agents and release systems machine-readable standards, schemas, package exports, and witnesses so they can consume KFD without relying on private context."
609
+ },
610
+ {
611
+ "path": "package.json#exports",
612
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534",
613
+ "description": "KFD-3 value evidence for kfd-machine-consumption: KFD gives agents and release systems machine-readable standards, schemas, package exports, and witnesses so they can consume KFD without relying on private context."
614
+ },
615
+ {
616
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
617
+ "sha256": "87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b",
618
+ "description": "KFD-3 value evidence for kfd-machine-consumption: KFD gives agents and release systems machine-readable standards, schemas, package exports, and witnesses so they can consume KFD without relying on private context."
619
+ },
620
+ {
621
+ "path": "docs/KFD-3-usage.md",
622
+ "sha256": "21ffa3193fa9c74a53ac890c48591ab768fa0871cb4e9cb265e5eae199ec63f7",
623
+ "description": "KFD-3 value evidence for kfd-extension-path: KFD gives humans and agents a visible extension path when the declared interface or taxonomy is insufficient."
624
+ },
625
+ {
626
+ "path": ".buildchain/kfd-3/collaboration-interface.json",
627
+ "sha256": "fa41128be4ee57a4a40b76d4d7a063c01d7c2e5c53aec2b9c6db819c7a27b22b",
628
+ "description": "KFD-3 value evidence for kfd-extension-path: KFD gives humans and agents a visible extension path when the declared interface or taxonomy is insufficient."
629
+ },
630
+ {
631
+ "path": "schemas/kfd-2/trust-taxonomy.schema.json",
632
+ "sha256": "a663d301a663cadb8567e3010361f5a630b76b6518ed7603dfd58cbd4e64a658",
633
+ "description": "KFD-3 value evidence for kfd-extension-path: KFD gives humans and agents a visible extension path when the declared interface or taxonomy is insufficient."
634
+ },
635
+ {
636
+ "path": "docs/KFD-2-usage.md",
637
+ "sha256": "ff800c6b46d1909c2f0414d9e0c8ae2219edc83a59a066cafda5c970cac3471d",
638
+ "description": "KFD-3 value evidence for kfd-extension-path: KFD gives humans and agents a visible extension path when the declared interface or taxonomy is insufficient."
639
+ }
640
+ ],
641
+ "transparentConstraints": [
642
+ {
643
+ "path": "CONTRIBUTING.md",
644
+ "sha256": "188f752e89f3af4855e92b8c3dc379e41f1e326611ccaf8851977ee04c639606",
645
+ "description": "Append-only decision and contribution constraints"
646
+ },
647
+ {
648
+ "path": "TRADEMARKS.md",
649
+ "sha256": "c59e3e936c2a0f2e3598fc7f8977c734dfc1c23df506c8c8360eb39e8e2ee3e1",
650
+ "description": "Trademark and official-status constraints"
651
+ },
652
+ {
653
+ "path": "scripts/check.mjs",
654
+ "sha256": "531fec64c2d570c8214bc2009569ccff4436bbabbff9a54cf5220d2c323fc974",
655
+ "description": "Repository self-verification gate"
656
+ },
657
+ {
658
+ "path": "site/kfd-site.json",
659
+ "sha256": "bb0c8f27239d8716eda2fcb730b7933a9df580da0be0c415d6f42262d34d1709",
660
+ "description": "Site rendering boundary"
661
+ }
662
+ ],
663
+ "choicePaths": [
664
+ {
665
+ "path": "README.md",
666
+ "sha256": "c5a320a2d9e31972ae91b15310c003a9b6cc8c747ae72494514403abe925638d",
667
+ "description": "Human reading path"
668
+ },
669
+ {
670
+ "path": "registry.json",
671
+ "sha256": "003842480fb9b3b8847735db729bc94bace4f60a25e730df839f4cb74c9f1ab5",
672
+ "description": "Agent registry path"
673
+ },
674
+ {
675
+ "path": "standards.json",
676
+ "sha256": "4ee9e5fc732eef1b43c75a146125496e0dbd859ef5a11d0c637c41e9091c677f",
677
+ "description": "Agent standards metadata path"
678
+ },
679
+ {
680
+ "path": ".buildchain/kfd-2/public-release-trust.claim.json",
681
+ "sha256": "3780b47472762b5ce9575250da73ee800af71dd194a9b0a3f61a063569311237",
682
+ "description": "Agent release trust claim path"
683
+ },
684
+ {
685
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-claims.json",
686
+ "sha256": "87757bd26c8f64465472aaafda05fe56497939a3ce66274563c142594d9d769b",
687
+ "description": "Agent generic trust claims path"
688
+ },
689
+ {
690
+ "path": ".buildchain/kfd-2/kfd-foundation.trust-assessment.json",
691
+ "sha256": "c3749585bb4a295bb2f0f510a4b6030f0398d9a09dc50dab0ace31248bf95b0f",
692
+ "description": "Agent generic trust assessment path"
693
+ },
694
+ {
695
+ "path": "package.json",
696
+ "sha256": "7773f62e7789220a9e21abe9626e7206028a2dc5de59e836595bd07be9459534",
697
+ "description": "Package consumption path"
698
+ }
699
+ ],
700
+ "manuals": [
701
+ {
702
+ "path": "docs/MAP.md",
703
+ "sha256": "249e0d188993906aca3e0538c236e3b74fe90474dac34234d6ae83659f0627cf"
704
+ },
705
+ {
706
+ "path": "TRADEMARKS.md",
707
+ "sha256": "c59e3e936c2a0f2e3598fc7f8977c734dfc1c23df506c8c8360eb39e8e2ee3e1"
708
+ },
709
+ {
710
+ "path": "docs/KFD-1-usage.md",
711
+ "sha256": "3b9691cdd9c0a28c1e428e1cb421939cb17deab37d99c39caff13c058c63846a"
712
+ },
713
+ {
714
+ "path": "docs/KFD-2-usage.md",
715
+ "sha256": "ff800c6b46d1909c2f0414d9e0c8ae2219edc83a59a066cafda5c970cac3471d"
716
+ },
717
+ {
718
+ "path": "docs/KFD-3-usage.md",
719
+ "sha256": "21ffa3193fa9c74a53ac890c48591ab768fa0871cb4e9cb265e5eae199ec63f7"
720
+ },
721
+ {
722
+ "path": "docs/KFD-4-usage.md",
723
+ "sha256": "d94680fa69309b2e26d139d2c134e4c1f5246c02b039191bc0fe078e3cb52042"
724
+ }
725
+ ]
726
+ },
727
+ "closure": {
728
+ "classificationMode": "closed-world",
729
+ "reachableEntrypoints": [
730
+ "readme",
731
+ "docs-map",
732
+ "official-status-and-trademarks",
733
+ "registry",
734
+ "standards",
735
+ "package-exports",
736
+ "release-anchor",
737
+ "kfd-2-public-release-trust-claim",
738
+ "kfd-2-foundation-trust-claims",
739
+ "kfd-2-foundation-trust-assessment",
740
+ "site-bundle"
741
+ ],
742
+ "classifiedEntrypoints": [
743
+ "readme",
744
+ "docs-map",
745
+ "official-status-and-trademarks",
746
+ "registry",
747
+ "standards",
748
+ "package-exports",
749
+ "release-anchor",
750
+ "kfd-2-public-release-trust-claim",
751
+ "kfd-2-foundation-trust-claims",
752
+ "kfd-2-foundation-trust-assessment",
753
+ "site-bundle"
754
+ ],
755
+ "unclassifiedEntrypoints": []
756
+ },
757
+ "verifier": {
758
+ "name": "kfd self-verification",
759
+ "command": "node scripts/check.mjs"
760
+ },
761
+ "residualRisk": [
762
+ {
763
+ "id": "human-language-interpretation",
764
+ "definedBy": "https://kfd.libkungfu.dev/schemas/kfd-2/trust-taxonomy.schema.json#/$defs/residualRisk",
765
+ "riskType": "natural-language-semantic-risk",
766
+ "trustImpact": "downgrade-warning",
767
+ "machineProvability": "not-exhaustively-enumerable",
768
+ "agentAction": "semantic-review-required",
769
+ "reason": "Natural-language standard interpretation is inspectable and reviewable but not exhaustively enumerable from package bytes.",
770
+ "owner": "KFD maintainers"
771
+ }
772
+ ],
773
+ "result": "pass"
774
+ }