@kungfu-tech/buildchain 3.0.1 → 3.0.2-alpha.0

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 (58) hide show
  1. package/README.md +5 -3
  2. package/actions/promote-buildchain-ref/README.md +7 -0
  3. package/bin/buildchain.mjs +173 -513
  4. package/bin/internal/cli-options.mjs +79 -0
  5. package/bin/internal/trust-release-cli.mjs +469 -0
  6. package/dist/site/agent-index.json +2 -0
  7. package/dist/site/artifact-schemas.json +5 -0
  8. package/dist/site/badge-endpoint-registry.json +18 -18
  9. package/dist/site/badges/v1/kfd-12/aligned.json +1 -1
  10. package/dist/site/badges/v1/kfd-12/declared.json +1 -1
  11. package/dist/site/badges/v1/kfd-12/downgraded.json +1 -1
  12. package/dist/site/badges/v1/kfd-12/draft.json +1 -1
  13. package/dist/site/badges/v1/kfd-12/failed.json +1 -1
  14. package/dist/site/badges/v1/kfd-12/missing.json +1 -1
  15. package/dist/site/badges/v1/kfd-12/passed.json +1 -1
  16. package/dist/site/badges/v1/kfd-12/planned.json +1 -1
  17. package/dist/site/badges/v1/kfd-13/aligned.json +1 -1
  18. package/dist/site/badges/v1/kfd-13/declared.json +1 -1
  19. package/dist/site/badges/v1/kfd-13/downgraded.json +1 -1
  20. package/dist/site/badges/v1/kfd-13/draft.json +1 -1
  21. package/dist/site/badges/v1/kfd-13/failed.json +1 -1
  22. package/dist/site/badges/v1/kfd-13/missing.json +1 -1
  23. package/dist/site/badges/v1/kfd-13/passed.json +1 -1
  24. package/dist/site/badges/v1/kfd-13/planned.json +1 -1
  25. package/dist/site/buildchain-contract.json +32 -22
  26. package/dist/site/buildchain-site.json +28 -18
  27. package/dist/site/capability-registry.json +2 -2
  28. package/dist/site/cli-registry.json +108 -0
  29. package/dist/site/controller-registry.json +10 -2
  30. package/dist/site/kfd-claims.json +136 -10
  31. package/dist/site/kfd-upstream-aggregate.json +20 -11
  32. package/dist/site/manual-registry.json +3 -3
  33. package/dist/site/node-api-registry.json +21 -8
  34. package/dist/site/page-registry.json +20 -10
  35. package/dist/site/public-surface-audit.json +114 -8
  36. package/dist/site/publication-registry.json +4 -4
  37. package/dist/site/release-passport-check-manifest.json +11 -0
  38. package/dist/site/release-provenance.json +3 -0
  39. package/dist/site/schemas/kfd-product-gate-input-v1.schema.json +164 -0
  40. package/dist/site/schemas/kfd-support-projection-v1.schema.json +106 -0
  41. package/dist/site/schemas/release-passport-v1.schema.json +3 -0
  42. package/dist/site/site-manifest.json +7 -7
  43. package/dist/site/workflow-registry.json +9 -3
  44. package/docs/cli.md +9 -2
  45. package/docs/kfd-support.md +43 -7
  46. package/docs/release-passport.md +15 -0
  47. package/package.json +6 -3
  48. package/packages/core/index.js +17 -0
  49. package/packages/core/kfd-product-gates.js +865 -0
  50. package/packages/core/kfd.js +16 -7
  51. package/packages/core/kfd3-surface-register.js +105 -1
  52. package/packages/core/public-surface-audit.js +6 -1
  53. package/packages/core/release-passport-contract.js +13 -0
  54. package/packages/core/release-passport.js +87 -3
  55. package/scripts/check-internal-architecture.mjs +171 -0
  56. package/scripts/check-inventory.mjs +4 -0
  57. package/scripts/generate-site-bundle.mjs +23 -0
  58. package/scripts/promotion-routing-evidence.mjs +73 -0
@@ -3,11 +3,11 @@
3
3
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
4
4
  "status": "passed",
5
5
  "summary": {
6
- "cliCommandCount": 87,
6
+ "cliCommandCount": 96,
7
7
  "workflowCount": 53,
8
8
  "actionCount": 5,
9
9
  "sitePageCount": 56,
10
- "docCommandRefCount": 275,
10
+ "docCommandRefCount": 286,
11
11
  "failureCount": 0
12
12
  },
13
13
  "enumerated": {
@@ -237,11 +237,51 @@
237
237
  "source": "bin/buildchain.mjs",
238
238
  "usage": "buildchain kfd 3 witness [--cwd <dir>] [--registry <path>] [--kind prebuild|artifact]"
239
239
  },
240
+ {
241
+ "id": "kfd-4-gate",
242
+ "source": "bin/buildchain.mjs",
243
+ "usage": "buildchain kfd 4 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
244
+ },
240
245
  {
241
246
  "id": "kfd-4-schema",
242
247
  "source": "bin/buildchain.mjs",
243
248
  "usage": "buildchain kfd 4 schema [--schema <name>] [--json]"
244
249
  },
250
+ {
251
+ "id": "kfd-4-verify",
252
+ "source": "bin/buildchain.mjs",
253
+ "usage": "buildchain kfd 4 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
254
+ },
255
+ {
256
+ "id": "kfd-5-gate",
257
+ "source": "bin/buildchain.mjs",
258
+ "usage": "buildchain kfd 5 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
259
+ },
260
+ {
261
+ "id": "kfd-5-schema",
262
+ "source": "bin/buildchain.mjs",
263
+ "usage": "buildchain kfd 5 schema [--schema <name>] [--json]"
264
+ },
265
+ {
266
+ "id": "kfd-5-verify",
267
+ "source": "bin/buildchain.mjs",
268
+ "usage": "buildchain kfd 5 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
269
+ },
270
+ {
271
+ "id": "kfd-7-gate",
272
+ "source": "bin/buildchain.mjs",
273
+ "usage": "buildchain kfd 7 gate --input-json <file-or-json> [--cwd <dir>] [--output <file>] [--json]"
274
+ },
275
+ {
276
+ "id": "kfd-7-schema",
277
+ "source": "bin/buildchain.mjs",
278
+ "usage": "buildchain kfd 7 schema [--schema <name>] [--json]"
279
+ },
280
+ {
281
+ "id": "kfd-7-verify",
282
+ "source": "bin/buildchain.mjs",
283
+ "usage": "buildchain kfd 7 verify --gate-json <file-or-json> [--expected-source-sha <sha>] [--json]"
284
+ },
245
285
  {
246
286
  "id": "kfd-aggregate",
247
287
  "source": "bin/buildchain.mjs",
@@ -272,6 +312,11 @@
272
312
  "source": "bin/buildchain.mjs",
273
313
  "usage": "buildchain kfd status [--cwd <dir>] [--json]"
274
314
  },
315
+ {
316
+ "id": "kfd-support",
317
+ "source": "bin/buildchain.mjs",
318
+ "usage": "buildchain kfd support project --matrix-json <file-or-json> --gate-json <file-or-json>..."
319
+ },
275
320
  {
276
321
  "id": "kfd-upstream-check",
277
322
  "source": "bin/buildchain.mjs",
@@ -840,6 +885,8 @@
840
885
  "release-passport-kfd-3-artifact-verify-command",
841
886
  "release-passport-kfd-3-artifact-witness-jsons",
842
887
  "release-passport-kfd-3-prebuild-witness-jsons",
888
+ "release-passport-kfd-product-gate-jsons",
889
+ "release-passport-kfd-support-matrix-json",
843
890
  "release-passport-output-dir",
844
891
  "release-passport-platform-manifest-paths",
845
892
  "release-passport-product-name",
@@ -851,7 +898,7 @@
851
898
  "target-sha",
852
899
  "trusted-publishing"
853
900
  ],
854
- "inputCount": 83,
901
+ "inputCount": 85,
855
902
  "secrets": [
856
903
  "BUILDCHAIN_ISSUE_APP_ID",
857
904
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -1958,6 +2005,8 @@
1958
2005
  "release-passport-kfd-3-artifact-verify-command",
1959
2006
  "release-passport-kfd-3-artifact-witness-jsons",
1960
2007
  "release-passport-kfd-3-prebuild-witness-jsons",
2008
+ "release-passport-kfd-product-gate-jsons",
2009
+ "release-passport-kfd-support-matrix-json",
1961
2010
  "release-passport-output-dir",
1962
2011
  "release-passport-platform-manifest-paths",
1963
2012
  "release-passport-product-name",
@@ -1969,7 +2018,7 @@
1969
2018
  "target-sha",
1970
2019
  "trusted-publishing"
1971
2020
  ],
1972
- "inputCount": 75,
2021
+ "inputCount": 77,
1973
2022
  "secrets": [
1974
2023
  "BUILDCHAIN_ISSUE_APP_ID",
1975
2024
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -2256,6 +2305,8 @@
2256
2305
  "release-passport-kfd-3-artifact-verify-command",
2257
2306
  "release-passport-kfd-3-artifact-witness-jsons",
2258
2307
  "release-passport-kfd-3-prebuild-witness-jsons",
2308
+ "release-passport-kfd-product-gate-jsons",
2309
+ "release-passport-kfd-support-matrix-json",
2259
2310
  "release-passport-output-dir",
2260
2311
  "release-passport-platform-manifest-paths",
2261
2312
  "release-passport-product-name",
@@ -2272,7 +2323,7 @@
2272
2323
  "transaction-state-path",
2273
2324
  "verification-command"
2274
2325
  ],
2275
- "inputCount": 64
2326
+ "inputCount": 66
2276
2327
  },
2277
2328
  {
2278
2329
  "id": "report-buildchain-issue",
@@ -3330,6 +3381,16 @@
3330
3381
  "path": "docs/kfd-support.md",
3331
3382
  "command": "buildchain kfd 3 witness"
3332
3383
  },
3384
+ {
3385
+ "id": "kfd-4-gate",
3386
+ "path": "docs/cli.md",
3387
+ "command": "buildchain kfd 4 gate"
3388
+ },
3389
+ {
3390
+ "id": "kfd-4-gate",
3391
+ "path": "docs/kfd-support.md",
3392
+ "command": "buildchain kfd 4 gate"
3393
+ },
3333
3394
  {
3334
3395
  "id": "kfd-4-schema",
3335
3396
  "path": "docs/cli.md",
@@ -3345,6 +3406,36 @@
3345
3406
  "path": "docs/kfd-support.md",
3346
3407
  "command": "buildchain kfd 4 schema"
3347
3408
  },
3409
+ {
3410
+ "id": "kfd-5-gate",
3411
+ "path": "docs/cli.md",
3412
+ "command": "buildchain kfd 5 gate"
3413
+ },
3414
+ {
3415
+ "id": "kfd-5-gate",
3416
+ "path": "docs/kfd-support.md",
3417
+ "command": "buildchain kfd 5 gate"
3418
+ },
3419
+ {
3420
+ "id": "kfd-5-schema",
3421
+ "path": "docs/kfd-support.md",
3422
+ "command": "buildchain kfd 5 schema"
3423
+ },
3424
+ {
3425
+ "id": "kfd-7-gate",
3426
+ "path": "docs/cli.md",
3427
+ "command": "buildchain kfd 7 gate"
3428
+ },
3429
+ {
3430
+ "id": "kfd-7-gate",
3431
+ "path": "docs/kfd-support.md",
3432
+ "command": "buildchain kfd 7 gate"
3433
+ },
3434
+ {
3435
+ "id": "kfd-7-schema",
3436
+ "path": "docs/kfd-support.md",
3437
+ "command": "buildchain kfd 7 schema"
3438
+ },
3348
3439
  {
3349
3440
  "id": "kfd-aggregate",
3350
3441
  "path": "docs/kfd-support.md",
@@ -3425,6 +3516,21 @@
3425
3516
  "path": "docs/kfd-support.md",
3426
3517
  "command": "buildchain kfd status --json"
3427
3518
  },
3519
+ {
3520
+ "id": "kfd-support",
3521
+ "path": "docs/cli.md",
3522
+ "command": "buildchain kfd support project"
3523
+ },
3524
+ {
3525
+ "id": "kfd-support",
3526
+ "path": "docs/kfd-support.md",
3527
+ "command": "buildchain kfd support project"
3528
+ },
3529
+ {
3530
+ "id": "kfd-support",
3531
+ "path": "docs/kfd-support.md",
3532
+ "command": "buildchain kfd support project"
3533
+ },
3428
3534
  {
3429
3535
  "id": "kfd-upstream-check",
3430
3536
  "path": "docs/kfd-support.md",
@@ -3971,9 +4077,9 @@
3971
4077
  "cliRegistryPath": "dist/site/cli-registry.json",
3972
4078
  "workflowRegistryPath": "dist/site/workflow-registry.json",
3973
4079
  "pageRegistryPath": "dist/site/page-registry.json",
3974
- "cliRegistryDigest": "5ba7fd93a13993b05767b6f02d0626a7347f25c3d7cd4589ed4f70028c1f1bd1",
3975
- "workflowRegistryDigest": "1554826457054dabf1b877aa2bd2ae2b764f90b0bab5552230ea38278ca707df",
3976
- "pageRegistryDigest": "91dcb302decbe07ebb402c3571f59b5d624feb28e4ac90ef11678050a2c73c67"
4080
+ "cliRegistryDigest": "a1c10dd6977d85a7bc793054baa549108b46d6d18098de109733e01b9151a024",
4081
+ "workflowRegistryDigest": "97e21bf5f4332b830cbaffecc3c1891d9fa1036984c7093e77daac78dc8e3221",
4082
+ "pageRegistryDigest": "d11a4b7ed807d075b52fedb80c85bfa8f13431f5aa86dae38fc00d3f428f0c6e"
3977
4083
  },
3978
4084
  "comparison": {
3979
4085
  "missingCliRegistry": [],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-publication-release-registry",
4
- "generatedAt": "2026-07-26T13:54:34.126Z",
5
- "publishedAt": "2026-07-26T13:54:34.126Z",
4
+ "generatedAt": "2026-07-26T15:42:26.745Z",
5
+ "publishedAt": "2026-07-26T15:42:26.745Z",
6
6
  "reproducible": true,
7
7
  "timestampPolicy": "ci-injected",
8
8
  "deterministicInputs": [
@@ -19,7 +19,7 @@
19
19
  "declared Buildchain surface manifest contract"
20
20
  ],
21
21
  "sourceDateEpoch": "0",
22
- "sourceRevision": "3988275b9a08a1619041a6a041aceb0ecb00fd58",
22
+ "sourceRevision": "ed47430f8cadfc327c52004aae9e5ef62aaa6e37",
23
23
  "timestampPolicyDetails": {
24
24
  "contract": "kungfu-buildchain-surface-timestamp-policy",
25
25
  "timestampFields": [
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "package": {
34
34
  "name": "@kungfu-tech/buildchain",
35
- "version": "3.0.1",
35
+ "version": "3.0.2-alpha.0",
36
36
  "versionSource": "package.json#version"
37
37
  },
38
38
  "sourceKind": "package-site-bundle",
@@ -14,6 +14,12 @@
14
14
  "command": "buildchain verify release-passport <buildchain.release.json>",
15
15
  "nodeApi": "@kungfu-tech/buildchain/release-passport#verifyReleasePassport",
16
16
  "result": "check-report.json"
17
+ },
18
+ "kfdSupportProjection": {
19
+ "inputSchema": "schemas/kfd-product-gate-input-v1.schema.json",
20
+ "projectionSchema": "schemas/kfd-support-projection-v1.schema.json",
21
+ "evidence": "kfd-support.json",
22
+ "rule": "The passport mirrors one product-owned support matrix and validated product-gate results without widening any claim state."
17
23
  }
18
24
  },
19
25
  "ownership": {
@@ -36,6 +42,7 @@
36
42
  "platformArtifactManifests",
37
43
  "distTagPromotion",
38
44
  "controllerReceipts",
45
+ "kfdSupport",
39
46
  "artifacts",
40
47
  "evidence",
41
48
  "recovery"
@@ -181,6 +188,10 @@
181
188
  {
182
189
  "when": "evidence.transactionState is present",
183
190
  "pointer": "evidence.transactionState"
191
+ },
192
+ {
193
+ "when": "kfdSupport is present",
194
+ "pointer": "evidence.kfdSupport"
184
195
  }
185
196
  ],
186
197
  "rule": "The normative checker resolves every declared sibling relative to the passport and fails closed on missing required evidence, digest drift, or semantic mismatch."
@@ -22,6 +22,7 @@
22
22
  "./homebrew": "./packages/core/homebrew.js",
23
23
  "./issue-reporting": "./packages/core/issue-reporting.js",
24
24
  "./kfd": "./packages/core/kfd.js",
25
+ "./kfd-product-gates": "./packages/core/kfd-product-gates.js",
25
26
  "./kfd-agent-hub": "./packages/core/kfd-agent-hub.js",
26
27
  "./buildchain-layout": "./packages/core/buildchain-layout.js",
27
28
  "./release-line-bootstrap": "./packages/core/release-line-bootstrap.js",
@@ -63,6 +64,8 @@
63
64
  "./site/release-passport-check-manifest.json": "./dist/site/release-passport-check-manifest.json",
64
65
  "./site/schemas/release-passport-v1.schema.json": "./dist/site/schemas/release-passport-v1.schema.json",
65
66
  "./site/schemas/kfd-agent-hub-adoption.schema.json": "./dist/site/schemas/kfd-agent-hub-adoption.schema.json",
67
+ "./site/schemas/kfd-product-gate-input-v1.schema.json": "./dist/site/schemas/kfd-product-gate-input-v1.schema.json",
68
+ "./site/schemas/kfd-support-projection-v1.schema.json": "./dist/site/schemas/kfd-support-projection-v1.schema.json",
66
69
  "./site/buildchain-contract.json": "./dist/site/buildchain-contract.json",
67
70
  "./site/product-mechanism.json": "./dist/site/product-mechanism.json",
68
71
  "./site/release-provenance.json": "./dist/site/release-provenance.json",
@@ -0,0 +1,164 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://buildchain.libkungfu.dev/schemas/kfd-product-gate-input-v1.schema.json",
4
+ "title": "Buildchain KFD product gate input v1",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "required": [
8
+ "schemaVersion",
9
+ "contract",
10
+ "standard",
11
+ "standardRevision",
12
+ "source",
13
+ "evidenceCut",
14
+ "records",
15
+ "evidence",
16
+ "responsibility",
17
+ "nonClaims"
18
+ ],
19
+ "properties": {
20
+ "schemaVersion": {
21
+ "const": 1
22
+ },
23
+ "contract": {
24
+ "const": "kungfu-buildchain-kfd-product-gate-input"
25
+ },
26
+ "standard": {
27
+ "enum": [
28
+ "kfd-4",
29
+ "kfd-5",
30
+ "kfd-7"
31
+ ]
32
+ },
33
+ "standardRevision": {
34
+ "type": "integer",
35
+ "minimum": 1
36
+ },
37
+ "source": {
38
+ "type": "object",
39
+ "additionalProperties": false,
40
+ "required": [
41
+ "repository",
42
+ "sha"
43
+ ],
44
+ "properties": {
45
+ "repository": {
46
+ "type": "string",
47
+ "minLength": 1
48
+ },
49
+ "sha": {
50
+ "type": "string",
51
+ "pattern": "^[0-9a-f]{40}(?:[0-9a-f]{24})?$"
52
+ }
53
+ }
54
+ },
55
+ "evidenceCut": {
56
+ "type": "object",
57
+ "additionalProperties": false,
58
+ "required": [
59
+ "generatedAt",
60
+ "expiresAt"
61
+ ],
62
+ "properties": {
63
+ "generatedAt": {
64
+ "type": "string",
65
+ "format": "date-time"
66
+ },
67
+ "expiresAt": {
68
+ "type": "string",
69
+ "format": "date-time"
70
+ }
71
+ }
72
+ },
73
+ "records": {
74
+ "type": "array",
75
+ "minItems": 1,
76
+ "items": {
77
+ "type": "object",
78
+ "additionalProperties": false,
79
+ "required": [
80
+ "role",
81
+ "path",
82
+ "sha256"
83
+ ],
84
+ "properties": {
85
+ "role": {
86
+ "type": "string",
87
+ "minLength": 1
88
+ },
89
+ "path": {
90
+ "type": "string",
91
+ "minLength": 1
92
+ },
93
+ "sha256": {
94
+ "type": "string",
95
+ "pattern": "^sha256:[0-9a-f]{64}$"
96
+ }
97
+ }
98
+ }
99
+ },
100
+ "evidence": {
101
+ "type": "array",
102
+ "minItems": 1,
103
+ "items": {
104
+ "type": "object",
105
+ "additionalProperties": false,
106
+ "required": [
107
+ "id",
108
+ "kind",
109
+ "path",
110
+ "sha256"
111
+ ],
112
+ "properties": {
113
+ "id": {
114
+ "type": "string",
115
+ "minLength": 1
116
+ },
117
+ "kind": {
118
+ "type": "string",
119
+ "minLength": 1
120
+ },
121
+ "path": {
122
+ "type": "string",
123
+ "minLength": 1
124
+ },
125
+ "sha256": {
126
+ "type": "string",
127
+ "pattern": "^sha256:[0-9a-f]{64}$"
128
+ }
129
+ }
130
+ }
131
+ },
132
+ "responsibility": {
133
+ "type": "object",
134
+ "additionalProperties": false,
135
+ "required": [
136
+ "owner",
137
+ "evidenceOwner",
138
+ "proofOwner"
139
+ ],
140
+ "properties": {
141
+ "owner": {
142
+ "type": "string",
143
+ "minLength": 1
144
+ },
145
+ "evidenceOwner": {
146
+ "type": "string",
147
+ "minLength": 1
148
+ },
149
+ "proofOwner": {
150
+ "type": "string",
151
+ "minLength": 1
152
+ }
153
+ }
154
+ },
155
+ "nonClaims": {
156
+ "type": "array",
157
+ "minItems": 1,
158
+ "items": {
159
+ "type": "string",
160
+ "minLength": 1
161
+ }
162
+ }
163
+ }
164
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://buildchain.libkungfu.dev/schemas/kfd-support-projection-v1.schema.json",
4
+ "title": "Buildchain KFD support projection v1",
5
+ "description": "A release-bound, non-authoritative projection of one product-owned KFD support matrix.",
6
+ "type": "object",
7
+ "additionalProperties": false,
8
+ "required": [
9
+ "schemaVersion",
10
+ "contract",
11
+ "matrix",
12
+ "standardPackage",
13
+ "gateResults",
14
+ "rows",
15
+ "status",
16
+ "projectionRoot",
17
+ "nonClaims"
18
+ ],
19
+ "properties": {
20
+ "schemaVersion": {
21
+ "const": 1
22
+ },
23
+ "contract": {
24
+ "const": "kungfu-buildchain-kfd-support-projection"
25
+ },
26
+ "matrix": {
27
+ "type": "object",
28
+ "additionalProperties": false,
29
+ "required": [
30
+ "contract",
31
+ "root",
32
+ "authorityPath"
33
+ ],
34
+ "properties": {
35
+ "contract": {
36
+ "type": "string",
37
+ "minLength": 1
38
+ },
39
+ "root": {
40
+ "type": "string",
41
+ "pattern": "^sha256:[0-9a-f]{64}$"
42
+ },
43
+ "authorityPath": {
44
+ "type": "string",
45
+ "minLength": 1
46
+ }
47
+ }
48
+ },
49
+ "standardPackage": {
50
+ "type": "object",
51
+ "additionalProperties": false,
52
+ "required": [
53
+ "name",
54
+ "version",
55
+ "standardsSha256"
56
+ ],
57
+ "properties": {
58
+ "name": {
59
+ "type": "string",
60
+ "minLength": 1
61
+ },
62
+ "version": {
63
+ "type": "string",
64
+ "minLength": 1
65
+ },
66
+ "standardsSha256": {
67
+ "type": "string",
68
+ "pattern": "^sha256:[0-9a-f]{64}$"
69
+ }
70
+ }
71
+ },
72
+ "gateResults": {
73
+ "type": "array",
74
+ "minItems": 3,
75
+ "items": {
76
+ "type": "object"
77
+ }
78
+ },
79
+ "rows": {
80
+ "type": "array",
81
+ "minItems": 13,
82
+ "maxItems": 13,
83
+ "items": {
84
+ "type": "object"
85
+ }
86
+ },
87
+ "status": {
88
+ "enum": [
89
+ "passed",
90
+ "failed"
91
+ ]
92
+ },
93
+ "projectionRoot": {
94
+ "type": "string",
95
+ "pattern": "^sha256:[0-9a-f]{64}$"
96
+ },
97
+ "nonClaims": {
98
+ "type": "array",
99
+ "minItems": 1,
100
+ "items": {
101
+ "type": "string",
102
+ "minLength": 1
103
+ }
104
+ }
105
+ }
106
+ }
@@ -195,6 +195,9 @@
195
195
  },
196
196
  "kfd-3": {
197
197
  "type": "object"
198
+ },
199
+ "kfdSupport": {
200
+ "type": "object"
198
201
  }
199
202
  },
200
203
  "additionalProperties": true
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-site-manifest",
4
- "generatedAt": "2026-07-26T13:54:34.126Z",
5
- "publishedAt": "2026-07-26T13:54:34.126Z",
4
+ "generatedAt": "2026-07-26T15:42:26.745Z",
5
+ "publishedAt": "2026-07-26T15:42:26.745Z",
6
6
  "reproducible": true,
7
7
  "timestampPolicy": "ci-injected",
8
8
  "deterministicInputs": [
@@ -19,7 +19,7 @@
19
19
  "declared Buildchain surface manifest contract"
20
20
  ],
21
21
  "sourceDateEpoch": "0",
22
- "sourceRevision": "3988275b9a08a1619041a6a041aceb0ecb00fd58",
22
+ "sourceRevision": "ed47430f8cadfc327c52004aae9e5ef62aaa6e37",
23
23
  "timestampPolicyDetails": {
24
24
  "contract": "kungfu-buildchain-surface-timestamp-policy",
25
25
  "timestampFields": [
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "package": {
39
39
  "name": "@kungfu-tech/buildchain",
40
- "version": "3.0.1",
40
+ "version": "3.0.2-alpha.0",
41
41
  "versionSource": "package.json#version"
42
42
  },
43
43
  "entrypoint": "buildchain-site.json",
@@ -77,7 +77,7 @@
77
77
  "path": "docs/release-passport.md",
78
78
  "plane": "verify",
79
79
  "exists": true,
80
- "digest": "sha256:c7f096af40224efb53b2e0e8b7e1ceedc3aafeb341c476a7cce7e5974004a775"
80
+ "digest": "sha256:ed29d25882cbf4ec062abc21e7d069a6377eaf7e3171c24642dfe08da2e4c05b"
81
81
  },
82
82
  {
83
83
  "id": "controller-evidence",
@@ -205,7 +205,7 @@
205
205
  "path": "docs/cli.md",
206
206
  "plane": "use",
207
207
  "exists": true,
208
- "digest": "sha256:f4518193026571d1e84bc245725a9f83e842b2e4b4dfaa072c8207021fa89cd1"
208
+ "digest": "sha256:47be88f5e5fd14124d03510b807722215034d34eefcebdfe2599a310350b7697"
209
209
  },
210
210
  {
211
211
  "id": "build-facts",
@@ -221,7 +221,7 @@
221
221
  "path": "docs/kfd-support.md",
222
222
  "plane": "verify",
223
223
  "exists": true,
224
- "digest": "sha256:58a60b3e54bc47d4bc9b6e08a432ba4ff75ed2275ef056d04c44cc2bc25046da"
224
+ "digest": "sha256:3a6143e450ab7976a50788fee48ec4d7313706774ff5cf8f71075a7b9e196e01"
225
225
  },
226
226
  {
227
227
  "id": "kfd-agent-hub",
@@ -412,6 +412,8 @@
412
412
  "release-passport-kfd-3-artifact-verify-command",
413
413
  "release-passport-kfd-3-artifact-witness-jsons",
414
414
  "release-passport-kfd-3-prebuild-witness-jsons",
415
+ "release-passport-kfd-product-gate-jsons",
416
+ "release-passport-kfd-support-matrix-json",
415
417
  "release-passport-output-dir",
416
418
  "release-passport-platform-manifest-paths",
417
419
  "release-passport-product-name",
@@ -423,7 +425,7 @@
423
425
  "target-sha",
424
426
  "trusted-publishing"
425
427
  ],
426
- "inputCount": 83,
428
+ "inputCount": 85,
427
429
  "secrets": [
428
430
  "BUILDCHAIN_ISSUE_APP_ID",
429
431
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -1641,6 +1643,8 @@
1641
1643
  "release-passport-kfd-3-artifact-verify-command",
1642
1644
  "release-passport-kfd-3-artifact-witness-jsons",
1643
1645
  "release-passport-kfd-3-prebuild-witness-jsons",
1646
+ "release-passport-kfd-product-gate-jsons",
1647
+ "release-passport-kfd-support-matrix-json",
1644
1648
  "release-passport-output-dir",
1645
1649
  "release-passport-platform-manifest-paths",
1646
1650
  "release-passport-product-name",
@@ -1652,7 +1656,7 @@
1652
1656
  "target-sha",
1653
1657
  "trusted-publishing"
1654
1658
  ],
1655
- "inputCount": 75,
1659
+ "inputCount": 77,
1656
1660
  "secrets": [
1657
1661
  "BUILDCHAIN_ISSUE_APP_ID",
1658
1662
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -1972,6 +1976,8 @@
1972
1976
  "release-passport-kfd-3-artifact-verify-command",
1973
1977
  "release-passport-kfd-3-artifact-witness-jsons",
1974
1978
  "release-passport-kfd-3-prebuild-witness-jsons",
1979
+ "release-passport-kfd-product-gate-jsons",
1980
+ "release-passport-kfd-support-matrix-json",
1975
1981
  "release-passport-output-dir",
1976
1982
  "release-passport-platform-manifest-paths",
1977
1983
  "release-passport-product-name",
@@ -1988,7 +1994,7 @@
1988
1994
  "transaction-state-path",
1989
1995
  "verification-command"
1990
1996
  ],
1991
- "inputCount": 64,
1997
+ "inputCount": 66,
1992
1998
  "capabilityGroup": "release-passport-trust",
1993
1999
  "status": "active"
1994
2000
  },