@kungfu-tech/buildchain 3.0.5-alpha.8 → 3.0.6-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.
- package/contracts/auditable-demo-scenario-v1.schema.json +11 -0
- package/dist/site/buildchain-contract.json +42 -22
- package/dist/site/buildchain-site.json +73 -27
- package/dist/site/capability-registry.json +2 -2
- package/dist/site/cli-registry.json +5 -3
- package/dist/site/controller-registry.json +19 -3
- package/dist/site/kfd-claims.json +58 -14
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +7 -6
- package/dist/site/node-api-registry.json +335 -8
- package/dist/site/page-registry.json +63 -17
- package/dist/site/public-surface-audit.json +94 -11
- package/dist/site/publication-authority-registry.json +21 -1
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/site-manifest.json +10 -10
- package/dist/site/workflow-registry.json +53 -4
- package/docs/MAP.md +4 -1
- package/docs/auditable-demo.md +19 -3
- package/docs/cli-reference.md +15 -4
- package/docs/dev-alpha-candidate-patrol.md +14 -5
- package/docs/dev-qualification-patrol.md +108 -0
- package/docs/node-api-reference.md +42 -9
- package/docs/release-propagation.md +93 -0
- package/docs/reusable-build-surface.md +44 -12
- package/docs/stable-candidate-patrol.md +5 -2
- package/package.json +1 -1
- package/packages/core/buildchain-publication-authority.js +1 -0
- package/packages/core/release-propagation-agent-entry.js +185 -0
- package/packages/core/release-propagation-push.js +293 -0
- package/packages/core/release-propagation-stage-evidence.js +36 -0
- package/packages/core/release-propagation-work.js +1 -1
- package/packages/core/release-propagation.js +15 -0
- package/scripts/artifact-signing-controller-core.mjs +525 -0
- package/scripts/artifact-signing-controller.mjs +302 -0
- package/scripts/artifact-signing-delegation.mjs +51 -3
- package/scripts/auditable-demo-platform.mjs +59 -1
- package/scripts/auditable-demo-transport-smoke.mjs +176 -0
- package/scripts/build-standalone-binary.mjs +3 -1
- package/scripts/buildchain-cli-help.mjs +1 -1
- package/scripts/check-inventory.mjs +1 -0
- package/scripts/compiler-cache-evidence.mjs +90 -7
- package/scripts/dev-alpha-candidate-patrol.mjs +80 -5
- package/scripts/dev-pr-auto-merge.mjs +4 -4
- package/scripts/dev-qualification-patrol.mjs +594 -0
- package/scripts/dispatch-artifact-signing-authority.mjs +312 -61
- package/scripts/generate-site-bundle.mjs +3 -0
- package/scripts/inspect-artifact-signing-requests.mjs +12 -0
- package/scripts/release-propagation.mjs +73 -0
- package/scripts/run-lifecycle-core.mjs +25 -0
- package/scripts/site-capability-metadata.mjs +1 -1
- package/scripts/stable-candidate-patrol.mjs +30 -4
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"maturity": "stable",
|
|
16
16
|
"counts": {
|
|
17
17
|
"manualCount": 4,
|
|
18
|
-
"pageCount":
|
|
18
|
+
"pageCount": 14,
|
|
19
19
|
"cliCommandCount": 9,
|
|
20
20
|
"nodeApiCount": 0,
|
|
21
21
|
"workflowCount": 0,
|
|
@@ -254,7 +254,7 @@
|
|
|
254
254
|
"pageCount": 8,
|
|
255
255
|
"cliCommandCount": 11,
|
|
256
256
|
"nodeApiCount": 5,
|
|
257
|
-
"workflowCount":
|
|
257
|
+
"workflowCount": 13,
|
|
258
258
|
"actionCount": 0
|
|
259
259
|
},
|
|
260
260
|
"manuals": [
|
|
@@ -3315,9 +3315,10 @@
|
|
|
3315
3315
|
{
|
|
3316
3316
|
"id": "release-propagation",
|
|
3317
3317
|
"source": "bin/buildchain.mjs",
|
|
3318
|
-
"usage": "buildchain release-propagation <plan|write-lock|work|pickup> ...",
|
|
3318
|
+
"usage": "buildchain release-propagation <plan|write-lock|work|entry|pickup> ...",
|
|
3319
3319
|
"paths": [
|
|
3320
3320
|
"release-propagation",
|
|
3321
|
+
"release-propagation entry",
|
|
3321
3322
|
"release-propagation pickup",
|
|
3322
3323
|
"release-propagation plan",
|
|
3323
3324
|
"release-propagation work",
|
|
@@ -3325,18 +3326,19 @@
|
|
|
3325
3326
|
],
|
|
3326
3327
|
"syntaxes": [
|
|
3327
3328
|
"buildchain release-propagation",
|
|
3328
|
-
"buildchain release-propagation <plan|write-lock|work|pickup> ..."
|
|
3329
|
+
"buildchain release-propagation <plan|write-lock|work|entry|pickup> ..."
|
|
3329
3330
|
],
|
|
3330
3331
|
"options": [],
|
|
3331
3332
|
"aliases": [],
|
|
3332
3333
|
"helpCommands": [
|
|
3333
3334
|
"buildchain release-propagation --help",
|
|
3335
|
+
"buildchain release-propagation entry --help",
|
|
3334
3336
|
"buildchain release-propagation pickup --help",
|
|
3335
3337
|
"buildchain release-propagation plan --help",
|
|
3336
3338
|
"buildchain release-propagation work --help",
|
|
3337
3339
|
"buildchain release-propagation write-lock --help"
|
|
3338
3340
|
],
|
|
3339
|
-
"purpose": "
|
|
3341
|
+
"purpose": "Route exact Paper, KFD, Buildchain, or Core Site updates through one resumable propagation Work.",
|
|
3340
3342
|
"capabilityGroup": "site-and-propagation",
|
|
3341
3343
|
"audience": [
|
|
3342
3344
|
"agent",
|
|
@@ -346,6 +346,14 @@
|
|
|
346
346
|
"classification": "digest-only",
|
|
347
347
|
"source": "workflow-call-input"
|
|
348
348
|
},
|
|
349
|
+
"pre-upload-transport-smoke-artifact-root": {
|
|
350
|
+
"classification": "included",
|
|
351
|
+
"source": "workflow-call-input"
|
|
352
|
+
},
|
|
353
|
+
"pre-upload-transport-smoke-scenario-path": {
|
|
354
|
+
"classification": "digest-only",
|
|
355
|
+
"source": "workflow-call-input"
|
|
356
|
+
},
|
|
349
357
|
"process-sample-interval-ms": {
|
|
350
358
|
"classification": "included",
|
|
351
359
|
"source": "workflow-call-input"
|
|
@@ -504,7 +512,7 @@
|
|
|
504
512
|
"controller-receipt"
|
|
505
513
|
]
|
|
506
514
|
},
|
|
507
|
-
"digest": "sha256:
|
|
515
|
+
"digest": "sha256:ba530907e57984abd47974cf3a9bab124f04629563676a4e37cfa302549789d6"
|
|
508
516
|
},
|
|
509
517
|
{
|
|
510
518
|
"schemaVersion": 1,
|
|
@@ -788,6 +796,14 @@
|
|
|
788
796
|
"classification": "digest-only",
|
|
789
797
|
"source": "workflow-call-input"
|
|
790
798
|
},
|
|
799
|
+
"pre-upload-transport-smoke-artifact-root": {
|
|
800
|
+
"classification": "included",
|
|
801
|
+
"source": "workflow-call-input"
|
|
802
|
+
},
|
|
803
|
+
"pre-upload-transport-smoke-scenario-path": {
|
|
804
|
+
"classification": "digest-only",
|
|
805
|
+
"source": "workflow-call-input"
|
|
806
|
+
},
|
|
791
807
|
"process-sample-interval-ms": {
|
|
792
808
|
"classification": "included",
|
|
793
809
|
"source": "workflow-call-input"
|
|
@@ -922,7 +938,7 @@
|
|
|
922
938
|
"controller-receipt"
|
|
923
939
|
]
|
|
924
940
|
},
|
|
925
|
-
"digest": "sha256:
|
|
941
|
+
"digest": "sha256:0e0888527d7319a7603620520cdd76eb3e4434f80dbc92fffa0eb0d90f88b3e4"
|
|
926
942
|
},
|
|
927
943
|
{
|
|
928
944
|
"schemaVersion": 1,
|
|
@@ -2314,5 +2330,5 @@
|
|
|
2314
2330
|
"digest": "sha256:b6f53563c0adc859bc586c05fce560a5094d7d9666438d63c5fd3e1fc4774555"
|
|
2315
2331
|
}
|
|
2316
2332
|
],
|
|
2317
|
-
"digest": "sha256:
|
|
2333
|
+
"digest": "sha256:bbe99942ee5b4f333470525bf9ae7c4c9c66875ab384ba6a05700dac139bf5b1"
|
|
2318
2334
|
}
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
22
22
|
"path": "dist/site/public-surface-audit.json",
|
|
23
23
|
"status": "passed",
|
|
24
|
-
"sha256": "
|
|
24
|
+
"sha256": "e2e22e22f833384400b9e5920f6570dddace1f80ff5bd3a360a4807bf2caa1d9",
|
|
25
25
|
"summary": {
|
|
26
26
|
"cliCommandCount": 112,
|
|
27
|
-
"workflowCount":
|
|
27
|
+
"workflowCount": 60,
|
|
28
28
|
"actionCount": 6,
|
|
29
|
-
"sitePageCount":
|
|
30
|
-
"docCommandRefCount":
|
|
29
|
+
"sitePageCount": 64,
|
|
30
|
+
"docCommandRefCount": 830,
|
|
31
31
|
"failureCount": 0
|
|
32
32
|
},
|
|
33
33
|
"auditBoundary": {
|
|
@@ -246,13 +246,13 @@
|
|
|
246
246
|
"contract": "kungfu-buildchain-public-surface-reverse-audit",
|
|
247
247
|
"path": "dist/site/public-surface-audit.json",
|
|
248
248
|
"status": "passed",
|
|
249
|
-
"sha256": "
|
|
249
|
+
"sha256": "e2e22e22f833384400b9e5920f6570dddace1f80ff5bd3a360a4807bf2caa1d9",
|
|
250
250
|
"summary": {
|
|
251
251
|
"cliCommandCount": 112,
|
|
252
|
-
"workflowCount":
|
|
252
|
+
"workflowCount": 60,
|
|
253
253
|
"actionCount": 6,
|
|
254
|
-
"sitePageCount":
|
|
255
|
-
"docCommandRefCount":
|
|
254
|
+
"sitePageCount": 64,
|
|
255
|
+
"docCommandRefCount": 830,
|
|
256
256
|
"failureCount": 0
|
|
257
257
|
},
|
|
258
258
|
"auditBoundary": {
|
|
@@ -3066,7 +3066,7 @@
|
|
|
3066
3066
|
},
|
|
3067
3067
|
{
|
|
3068
3068
|
"id": "cli:release-propagation",
|
|
3069
|
-
"name": "buildchain release-propagation <plan|write-lock|work|pickup> ...",
|
|
3069
|
+
"name": "buildchain release-propagation <plan|write-lock|work|entry|pickup> ...",
|
|
3070
3070
|
"kind": "cli-command",
|
|
3071
3071
|
"sourcePath": "bin/buildchain.mjs",
|
|
3072
3072
|
"evidencePath": "bin/buildchain.mjs",
|
|
@@ -3334,7 +3334,7 @@
|
|
|
3334
3334
|
"visibility": "public",
|
|
3335
3335
|
"participantFacing": true,
|
|
3336
3336
|
"public": true,
|
|
3337
|
-
"inputCount":
|
|
3337
|
+
"inputCount": 85,
|
|
3338
3338
|
"inputs": [
|
|
3339
3339
|
"artifact-compression-level",
|
|
3340
3340
|
"artifact-name",
|
|
@@ -3392,6 +3392,8 @@
|
|
|
3392
3392
|
"linux-container-preset",
|
|
3393
3393
|
"node-version",
|
|
3394
3394
|
"platforms-json",
|
|
3395
|
+
"pre-upload-transport-smoke-artifact-root",
|
|
3396
|
+
"pre-upload-transport-smoke-scenario-path",
|
|
3395
3397
|
"process-sample-interval-ms",
|
|
3396
3398
|
"process-summary-path",
|
|
3397
3399
|
"publish-anchor-request-json",
|
|
@@ -4070,7 +4072,7 @@
|
|
|
4070
4072
|
"visibility": "public",
|
|
4071
4073
|
"participantFacing": true,
|
|
4072
4074
|
"public": true,
|
|
4073
|
-
"inputCount":
|
|
4075
|
+
"inputCount": 88,
|
|
4074
4076
|
"inputs": [
|
|
4075
4077
|
"artifact-compression-level",
|
|
4076
4078
|
"artifact-name",
|
|
@@ -4131,6 +4133,8 @@
|
|
|
4131
4133
|
"linux-container-preset",
|
|
4132
4134
|
"node-version",
|
|
4133
4135
|
"platforms-json",
|
|
4136
|
+
"pre-upload-transport-smoke-artifact-root",
|
|
4137
|
+
"pre-upload-transport-smoke-scenario-path",
|
|
4134
4138
|
"process-sample-interval-ms",
|
|
4135
4139
|
"process-summary-path",
|
|
4136
4140
|
"publish-anchor-request-json",
|
|
@@ -4336,15 +4340,17 @@
|
|
|
4336
4340
|
"visibility": "public",
|
|
4337
4341
|
"participantFacing": true,
|
|
4338
4342
|
"public": true,
|
|
4339
|
-
"inputCount":
|
|
4343
|
+
"inputCount": 15,
|
|
4340
4344
|
"inputs": [
|
|
4341
4345
|
"alpha-workflow-path",
|
|
4346
|
+
"auto-merge",
|
|
4342
4347
|
"buildchain-ref",
|
|
4343
4348
|
"buildchain-repository",
|
|
4344
4349
|
"create-pull-request",
|
|
4345
4350
|
"dev-workflow-path",
|
|
4346
4351
|
"dry-run",
|
|
4347
4352
|
"max-age-seconds",
|
|
4353
|
+
"merge-method",
|
|
4348
4354
|
"pull-request-body-prefix",
|
|
4349
4355
|
"pull-request-body-prefix-renderer",
|
|
4350
4356
|
"reactivation-authorized",
|
|
@@ -4396,6 +4402,31 @@
|
|
|
4396
4402
|
],
|
|
4397
4403
|
"reverseAuditSource": ".github/workflows"
|
|
4398
4404
|
},
|
|
4405
|
+
{
|
|
4406
|
+
"id": "workflow:dev-qualification-patrol",
|
|
4407
|
+
"name": "workflow:dev-qualification-patrol",
|
|
4408
|
+
"kind": "workflow",
|
|
4409
|
+
"sourcePath": ".github/workflows/dev-qualification-patrol.yml",
|
|
4410
|
+
"evidencePath": ".github/workflows/dev-qualification-patrol.yml",
|
|
4411
|
+
"availability": "shipped",
|
|
4412
|
+
"visibility": "public",
|
|
4413
|
+
"participantFacing": true,
|
|
4414
|
+
"public": true,
|
|
4415
|
+
"inputCount": 10,
|
|
4416
|
+
"inputs": [
|
|
4417
|
+
"buildchain-ref",
|
|
4418
|
+
"buildchain-repository",
|
|
4419
|
+
"dev-workflow-path",
|
|
4420
|
+
"dispatch-inputs-json",
|
|
4421
|
+
"dry-run",
|
|
4422
|
+
"max-attempts",
|
|
4423
|
+
"mutation-authorized",
|
|
4424
|
+
"preflight-workflow-path",
|
|
4425
|
+
"priority-workflows-json",
|
|
4426
|
+
"source-branch"
|
|
4427
|
+
],
|
|
4428
|
+
"reverseAuditSource": ".github/workflows"
|
|
4429
|
+
},
|
|
4399
4430
|
{
|
|
4400
4431
|
"id": "workflow:github-artifact-attestation",
|
|
4401
4432
|
"name": "workflow:github-artifact-attestation",
|
|
@@ -4910,7 +4941,7 @@
|
|
|
4910
4941
|
"visibility": "public",
|
|
4911
4942
|
"participantFacing": true,
|
|
4912
4943
|
"public": true,
|
|
4913
|
-
"inputCount":
|
|
4944
|
+
"inputCount": 16,
|
|
4914
4945
|
"inputs": [
|
|
4915
4946
|
"auto-approve",
|
|
4916
4947
|
"auto-merge",
|
|
@@ -4921,6 +4952,7 @@
|
|
|
4921
4952
|
"hold",
|
|
4922
4953
|
"hold-reason",
|
|
4923
4954
|
"ledger-ref",
|
|
4955
|
+
"merge-method",
|
|
4924
4956
|
"minimum-soak-seconds",
|
|
4925
4957
|
"release-now",
|
|
4926
4958
|
"required-checks",
|
|
@@ -5559,6 +5591,18 @@
|
|
|
5559
5591
|
"public": true,
|
|
5560
5592
|
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5561
5593
|
},
|
|
5594
|
+
{
|
|
5595
|
+
"id": "site-page:manual:dev-qualification-patrol",
|
|
5596
|
+
"name": "site-page:manual:dev-qualification-patrol",
|
|
5597
|
+
"kind": "site-page",
|
|
5598
|
+
"sourcePath": "dist/site/page-registry.json",
|
|
5599
|
+
"evidencePath": "dist/site/page-registry.json",
|
|
5600
|
+
"availability": "shipped",
|
|
5601
|
+
"visibility": "public",
|
|
5602
|
+
"participantFacing": true,
|
|
5603
|
+
"public": true,
|
|
5604
|
+
"reverseAuditSource": "dist/site/page-registry.json"
|
|
5605
|
+
},
|
|
5562
5606
|
{
|
|
5563
5607
|
"id": "site-page:manual:getting-started",
|
|
5564
5608
|
"name": "site-page:manual:getting-started",
|
|
@@ -6138,6 +6182,6 @@
|
|
|
6138
6182
|
}
|
|
6139
6183
|
}
|
|
6140
6184
|
],
|
|
6141
|
-
"publicSurfaceCount":
|
|
6185
|
+
"publicSurfaceCount": 394
|
|
6142
6186
|
}
|
|
6143
6187
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Buildchain documentation map",
|
|
10
10
|
"path": "docs/MAP.md",
|
|
11
11
|
"plane": "use",
|
|
12
|
-
"digest": "sha256:
|
|
12
|
+
"digest": "sha256:216e69758e78866e5a22fae1c4d017aaccf1b759937fcd953934407263344c03",
|
|
13
13
|
"capabilityGroup": "getting-started",
|
|
14
14
|
"audience": [
|
|
15
15
|
"agent",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"title": "Auditable demo artifact pipeline",
|
|
38
38
|
"path": "docs/auditable-demo.md",
|
|
39
39
|
"plane": "verify",
|
|
40
|
-
"digest": "sha256:
|
|
40
|
+
"digest": "sha256:7e1426d8200bd4e7a7e6684c872f47075cd37d0bddbb262ea3263eaad846b540",
|
|
41
41
|
"capabilityGroup": "reusable-build",
|
|
42
42
|
"audience": [
|
|
43
43
|
"consumer",
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
"title": "Release propagation",
|
|
151
151
|
"path": "docs/release-propagation.md",
|
|
152
152
|
"plane": "use",
|
|
153
|
-
"digest": "sha256:
|
|
153
|
+
"digest": "sha256:6e8417ff70db290ee6197f064ed9b7a7da3770738509fac06161dad05b3fca7f",
|
|
154
154
|
"capabilityGroup": "site-and-propagation",
|
|
155
155
|
"audience": [
|
|
156
156
|
"release-operator",
|
|
@@ -317,7 +317,7 @@
|
|
|
317
317
|
"title": "Generated CLI reference",
|
|
318
318
|
"path": "docs/cli-reference.md",
|
|
319
319
|
"plane": "use",
|
|
320
|
-
"digest": "sha256:
|
|
320
|
+
"digest": "sha256:73d34a3b46ecfb772b806f0d79754772446fcc13d7f349b508a0c0212e97fcec",
|
|
321
321
|
"capabilityGroup": "api-cli-reference",
|
|
322
322
|
"audience": [
|
|
323
323
|
"agent",
|
|
@@ -332,7 +332,7 @@
|
|
|
332
332
|
"title": "Generated Node API reference",
|
|
333
333
|
"path": "docs/node-api-reference.md",
|
|
334
334
|
"plane": "use",
|
|
335
|
-
"digest": "sha256:
|
|
335
|
+
"digest": "sha256:ae49a589091d1ab91d29f2d6ac52cf2551a9d0b1f78350965b408f40fd219e29",
|
|
336
336
|
"capabilityGroup": "api-cli-reference",
|
|
337
337
|
"audience": [
|
|
338
338
|
"agent",
|
|
@@ -403,7 +403,7 @@
|
|
|
403
403
|
"title": "Reusable build surface",
|
|
404
404
|
"path": "docs/reusable-build-surface.md",
|
|
405
405
|
"plane": "use",
|
|
406
|
-
"digest": "sha256:
|
|
406
|
+
"digest": "sha256:fe06637d604101269b013163be558c1ecc842276e27f2b5abfb6eea39e98feb0",
|
|
407
407
|
"capabilityGroup": "reusable-build",
|
|
408
408
|
"audience": [
|
|
409
409
|
"consumer",
|
|
@@ -504,6 +504,7 @@
|
|
|
504
504
|
"docs/reusable-build-surface.md",
|
|
505
505
|
"docs/release-candidate.md",
|
|
506
506
|
"docs/stable-candidate-patrol.md",
|
|
507
|
+
"docs/dev-qualification-patrol.md",
|
|
507
508
|
"docs/dev-alpha-candidate-patrol.md",
|
|
508
509
|
"docs/observed-evidence-patrol.md",
|
|
509
510
|
"docs/release-governance.md",
|