@kungfu-tech/buildchain 2.12.4 → 2.12.5-alpha.2

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 (33) hide show
  1. package/bin/buildchain.mjs +3 -0
  2. package/dist/site/agent-index.json +1 -0
  3. package/dist/site/artifact-schemas.json +1 -0
  4. package/dist/site/buildchain-contract.json +2008 -12
  5. package/dist/site/buildchain-site.json +74 -11
  6. package/dist/site/capability-registry.json +4 -3
  7. package/dist/site/controller-registry.json +1626 -0
  8. package/dist/site/kfd-claims.json +88 -74
  9. package/dist/site/kfd-upstream-aggregate.json +1 -1
  10. package/dist/site/manual-registry.json +18 -2
  11. package/dist/site/node-api-registry.json +20 -7
  12. package/dist/site/page-registry.json +58 -5
  13. package/dist/site/public-surface-audit.json +572 -102
  14. package/dist/site/publication-registry.json +4 -4
  15. package/dist/site/release-provenance.json +2 -0
  16. package/dist/site/site-manifest.json +15 -6
  17. package/dist/site/workflow-registry.json +534 -68
  18. package/docs/MAP.md +2 -1
  19. package/docs/controller-evidence.md +113 -0
  20. package/docs/release-passport.md +6 -0
  21. package/package.json +3 -1
  22. package/packages/core/buildchain-contract.js +62 -1
  23. package/packages/core/buildchain-kfd-claims.js +3 -0
  24. package/packages/core/controller-evidence.js +505 -0
  25. package/packages/core/index.js +17 -0
  26. package/packages/core/public-surface-audit.js +40 -3
  27. package/packages/core/release-candidate.js +26 -0
  28. package/packages/core/release-passport.js +19 -0
  29. package/scripts/check-inventory.mjs +4 -1
  30. package/scripts/controller-evidence.mjs +170 -0
  31. package/scripts/generate-channel-build-workflow.mjs +141 -2
  32. package/scripts/generate-release-candidate-passport.mjs +4 -0
  33. package/scripts/generate-site-bundle.mjs +11 -1
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-publication-release-registry",
4
- "generatedAt": "2026-07-13T14:57:09.623Z",
5
- "publishedAt": "2026-07-13T14:57:09.623Z",
4
+ "generatedAt": "2026-07-14T02:08:07.124Z",
5
+ "publishedAt": "2026-07-14T02:08:07.124Z",
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": "687f57693cd6ca239325819661f896f00f33f50e",
22
+ "sourceRevision": "0cb2a220385a2ef7bc6eafb76d1e99eaf4b31501",
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": "2.12.4",
35
+ "version": "2.12.5-alpha.2",
36
36
  "versionSource": "package.json#version"
37
37
  },
38
38
  "sourceKind": "package-site-bundle",
@@ -14,6 +14,7 @@
14
14
  "./core": "./packages/core/index.js",
15
15
  "./artifact-passport": "./packages/core/artifact-passport.js",
16
16
  "./buildchain-contract": "./packages/core/buildchain-contract.js",
17
+ "./controller-evidence": "./packages/core/controller-evidence.js",
17
18
  "./diagnostics": "./packages/core/diagnostics.js",
18
19
  "./homebrew": "./packages/core/homebrew.js",
19
20
  "./issue-reporting": "./packages/core/issue-reporting.js",
@@ -42,6 +43,7 @@
42
43
  "./site/node-api-registry.json": "./dist/site/node-api-registry.json",
43
44
  "./site/kfd-claims.json": "./dist/site/kfd-claims.json",
44
45
  "./site/workflow-registry.json": "./dist/site/workflow-registry.json",
46
+ "./site/controller-registry.json": "./dist/site/controller-registry.json",
45
47
  "./site/public-surface-audit.json": "./dist/site/public-surface-audit.json",
46
48
  "./site/kfd-upstream-aggregate.json": "./dist/site/kfd-upstream-aggregate.json",
47
49
  "./site/release-model.json": "./dist/site/release-model.json",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-site-manifest",
4
- "generatedAt": "2026-07-13T14:57:09.623Z",
5
- "publishedAt": "2026-07-13T14:57:09.623Z",
4
+ "generatedAt": "2026-07-14T02:08:07.124Z",
5
+ "publishedAt": "2026-07-14T02:08:07.124Z",
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": "687f57693cd6ca239325819661f896f00f33f50e",
22
+ "sourceRevision": "0cb2a220385a2ef7bc6eafb76d1e99eaf4b31501",
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": "2.12.4",
40
+ "version": "2.12.5-alpha.2",
41
41
  "versionSource": "package.json#version"
42
42
  },
43
43
  "entrypoint": "buildchain-site.json",
@@ -53,7 +53,7 @@
53
53
  "path": "docs/MAP.md",
54
54
  "plane": "use",
55
55
  "exists": true,
56
- "digest": "sha256:5df6d6110d7c33da4625a2e1ebb6b778eef9c4420379cff342229bc0b02962e1"
56
+ "digest": "sha256:223c7e2d20680d4a10c84f6a7c7875602538607217e9dfe291a356bbd21ac4f1"
57
57
  },
58
58
  {
59
59
  "id": "install",
@@ -69,7 +69,15 @@
69
69
  "path": "docs/release-passport.md",
70
70
  "plane": "verify",
71
71
  "exists": true,
72
- "digest": "sha256:b339c4de0a19a58507bb0aa3efb57c63e4bb4e8002891b9fcc1d73223a8e2c7f"
72
+ "digest": "sha256:2421e3e9f2dd892971bea5deb605492dfec38f3a83e539229442b55380bebe25"
73
+ },
74
+ {
75
+ "id": "controller-evidence",
76
+ "title": "Controller evidence contract",
77
+ "path": "docs/controller-evidence.md",
78
+ "plane": "verify",
79
+ "exists": true,
80
+ "digest": "sha256:442e1b72e3977af56a8ae5e081ffd89c2f3ebcd9cfd50f07af730344bdf9fb0e"
73
81
  },
74
82
  {
75
83
  "id": "release-candidate",
@@ -263,6 +271,7 @@
263
271
  "manual-registry.json",
264
272
  "node-api-registry.json",
265
273
  "workflow-registry.json",
274
+ "controller-registry.json",
266
275
  "public-surface-audit.json",
267
276
  "release-model.json",
268
277
  "artifact-schemas.json",