@kungfu-tech/buildchain 4.1.3-alpha.0 → 4.1.3-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 (217) hide show
  1. package/architecture/action-taxonomy.json +16 -0
  2. package/architecture/agent-change-map.md +245 -4
  3. package/architecture/ci-lane-change-budget.json +289 -0
  4. package/architecture/decisions/0005-minimal-consumer-contract.md +122 -0
  5. package/architecture/decisions/0006-business-attempt-journal.md +89 -0
  6. package/architecture/decisions/0007-hosted-pipeline-controller.md +106 -0
  7. package/architecture/decisions/0008-pipeline-product-publication.md +99 -0
  8. package/architecture/internal-capabilities.json +340 -4
  9. package/architecture/maintainability-debt.json +3 -1
  10. package/architecture/maintainability-policy.json +8 -8
  11. package/architecture/minimal-consumer-migration.json +7558 -0
  12. package/architecture/release-topology.json +248 -11
  13. package/architecture/universal-workflow-bootstrap.json +10 -0
  14. package/architecture/universal-workflow-capability-policy.json +6 -6
  15. package/architecture/workflow-taxonomy.json +55 -0
  16. package/contracts/release-discussion-v1.schema.json +3 -0
  17. package/dist/readers/business-attempt.cjs +805 -0
  18. package/dist/readers/release-discussion.cjs +4 -0
  19. package/dist/site/buildchain-contract.json +7 -5
  20. package/dist/site/buildchain-site.json +25 -15
  21. package/dist/site/capability-registry.json +3 -3
  22. package/dist/site/kfd-claims.json +311 -10
  23. package/dist/site/kfd-upstream-aggregate.json +1 -1
  24. package/dist/site/manual-registry.json +1 -1
  25. package/dist/site/node-api-registry.json +9 -9
  26. package/dist/site/page-registry.json +20 -10
  27. package/dist/site/public-surface-audit.json +201 -7
  28. package/dist/site/publication-authority-registry.json +121 -1
  29. package/dist/site/publication-registry.json +4 -4
  30. package/dist/site/site-manifest.json +5 -5
  31. package/dist/site/workflow-registry.json +416 -7
  32. package/docs/node-api-reference.md +12 -12
  33. package/docs/release-discussions.md +44 -5
  34. package/docs/runtime-entry.md +45 -5
  35. package/docs/workflow-catalog.md +5 -0
  36. package/package.json +4 -3
  37. package/packages/core/consumer/contract/entries.js +85 -0
  38. package/packages/core/consumer/contract/examples.js +96 -0
  39. package/packages/core/consumer/contract/identity.js +65 -0
  40. package/packages/core/consumer/contract/inspection.js +45 -0
  41. package/packages/core/consumer/contract/plan.js +99 -0
  42. package/packages/core/consumer/contract/products.js +101 -0
  43. package/packages/core/consumer/contract/shape.js +46 -0
  44. package/packages/core/dev-delivery/candidate/admission.js +9 -5
  45. package/packages/core/dev-delivery/candidate/reservation.js +11 -0
  46. package/packages/core/dev-delivery/candidate/source-paths.js +12 -4
  47. package/packages/core/dev-delivery/native/actions.js +7 -1
  48. package/packages/core/dev-delivery/native/heartbeat-action.js +16 -0
  49. package/packages/core/dev-delivery/native/heartbeat.js +6 -4
  50. package/packages/core/dev-delivery/queue/landing-action.js +5 -0
  51. package/packages/core/governance/buildchain-publication-authority.js +5 -0
  52. package/packages/core/paper/operations/bootstrap.js +2 -0
  53. package/packages/core/paper/paper-npm-bootstrap.js +2 -2
  54. package/packages/core/providers/github/attempt-index.js +60 -0
  55. package/packages/core/providers/github/attempt-journal.js +154 -0
  56. package/packages/core/providers/github/discussions/materials.js +23 -7
  57. package/packages/core/providers/github/discussions/transport.js +16 -5
  58. package/packages/core/providers/github/pipeline-checkout.js +49 -0
  59. package/packages/core/providers/github/pipeline-events.js +52 -0
  60. package/packages/core/providers/github/pipeline-integration.js +95 -0
  61. package/packages/core/providers/github/pipeline-policy.js +213 -0
  62. package/packages/core/providers/github/pipeline-product-payload.js +50 -0
  63. package/packages/core/providers/github/pipeline-product-release.js +191 -0
  64. package/packages/core/providers/github/pipeline-publication-artifacts.js +153 -0
  65. package/packages/core/providers/github/pipeline-run-entry.js +86 -0
  66. package/packages/core/providers/github/pipeline-runs.js +132 -0
  67. package/packages/core/providers/github/pipeline-source.js +178 -0
  68. package/packages/core/providers/github/pipeline-version.js +201 -0
  69. package/packages/core/providers/github/pipeline-worker.js +108 -0
  70. package/packages/core/publication/candidate/registry-hydration.js +2 -2
  71. package/packages/core/publication/npm/pack-preview.js +2 -2
  72. package/packages/core/publication/npm/pack-result.js +31 -0
  73. package/packages/core/publication/npm/package.js +3 -6
  74. package/packages/core/publication/npm/pipeline-channel.js +87 -0
  75. package/packages/core/publication/npm/pipeline-provider.js +109 -0
  76. package/packages/core/publication/npm/registry.js +12 -9
  77. package/packages/core/publication/pipeline/actions.js +100 -0
  78. package/packages/core/publication/pipeline/apply.js +182 -0
  79. package/packages/core/publication/pipeline/build-segments.js +107 -0
  80. package/packages/core/publication/pipeline/capsules.js +89 -0
  81. package/packages/core/publication/pipeline/context.js +39 -0
  82. package/packages/core/publication/pipeline/development-anchor.js +91 -0
  83. package/packages/core/publication/pipeline/development-current.js +63 -0
  84. package/packages/core/publication/pipeline/development-pr.js +85 -0
  85. package/packages/core/publication/pipeline/development-proof.js +76 -0
  86. package/packages/core/publication/pipeline/development-transition.js +112 -0
  87. package/packages/core/publication/pipeline/distribution.js +124 -0
  88. package/packages/core/publication/pipeline/documents.js +156 -0
  89. package/packages/core/publication/pipeline/effects.js +162 -0
  90. package/packages/core/publication/pipeline/files.js +66 -0
  91. package/packages/core/publication/pipeline/imported-materials.js +32 -0
  92. package/packages/core/publication/pipeline/journal.js +110 -0
  93. package/packages/core/publication/pipeline/next-development.js +116 -0
  94. package/packages/core/publication/pipeline/pack.js +151 -0
  95. package/packages/core/publication/pipeline/package-policy.js +22 -0
  96. package/packages/core/publication/pipeline/plan.js +114 -0
  97. package/packages/core/publication/pipeline/prepare.js +151 -0
  98. package/packages/core/publication/pipeline/qualification.js +170 -0
  99. package/packages/core/publication/pipeline/qualify.js +104 -0
  100. package/packages/core/publication/pipeline/recovery-admission.js +122 -0
  101. package/packages/core/publication/pipeline/recovery-build-download.js +80 -0
  102. package/packages/core/publication/pipeline/recovery-build-plan.js +122 -0
  103. package/packages/core/publication/pipeline/recovery-build-readback.js +68 -0
  104. package/packages/core/publication/pipeline/recovery-capsules.js +54 -0
  105. package/packages/core/publication/pipeline/recovery-import.js +80 -0
  106. package/packages/core/publication/pipeline/recovery-inspection.js +218 -0
  107. package/packages/core/publication/pipeline/recovery-materials.js +104 -0
  108. package/packages/core/publication/pipeline/recovery-plan.js +46 -0
  109. package/packages/core/publication/pipeline/recovery-prepare.js +73 -0
  110. package/packages/core/publication/pipeline/recovery-qualification.js +128 -0
  111. package/packages/core/publication/pipeline/recovery-readback.js +56 -0
  112. package/packages/core/publication/pipeline/recovery-signing.js +58 -0
  113. package/packages/core/publication/pipeline/sealed-products.js +79 -0
  114. package/packages/core/publication/pipeline/settle.js +43 -0
  115. package/packages/core/publication/pipeline/signing.js +140 -0
  116. package/packages/core/publication/pipeline/source-plan.js +83 -0
  117. package/packages/core/publication/pipeline/version.js +81 -0
  118. package/packages/core/publication/publication-reproducibility.js +2 -2
  119. package/packages/core/release/discussion/binary.js +11 -0
  120. package/packages/core/release/discussion/checkpoints.js +45 -4
  121. package/packages/core/release/discussion/envelope.js +1 -0
  122. package/packages/core/release/discussion/evidence.js +51 -0
  123. package/packages/core/release/discussion/presentation.js +92 -0
  124. package/packages/core/release/discussion/publication.js +3 -1
  125. package/packages/core/release/discussion/qualification.js +1 -0
  126. package/packages/core/release/discussion/reader.js +9 -0
  127. package/packages/core/release/discussion/session.js +2 -0
  128. package/packages/core/release/discussion/store.js +28 -31
  129. package/packages/core/release/discussion/threads.js +83 -0
  130. package/packages/core/release/promote-candidate/product-provider-adapters.js +4 -3
  131. package/packages/core/release/promote-ref/internal/npm-existing-evidence.js +2 -1
  132. package/packages/core/release/promote-ref/internal/publish-command.js +16 -5
  133. package/packages/core/runtime/buildchain-domain.wasm +0 -0
  134. package/packages/core/runtime/domain-wasm-artifact.js +2 -2
  135. package/packages/core/runtime/entry/actions.js +27 -25
  136. package/packages/core/runtime/entry/attempt.js +25 -0
  137. package/packages/core/runtime/entry/selection.js +14 -0
  138. package/packages/core/runtime/entry/source.js +62 -0
  139. package/packages/core/workflow/attempt/identity.js +165 -0
  140. package/packages/core/workflow/attempt/journal.js +87 -0
  141. package/packages/core/workflow/attempt/materials.js +72 -0
  142. package/packages/core/workflow/attempt/reader-entry.js +12 -0
  143. package/packages/core/workflow/attempt/reader.js +149 -0
  144. package/packages/core/workflow/attempt/records.js +153 -0
  145. package/packages/core/workflow/attempt/store.js +75 -0
  146. package/packages/core/workflow/commands/pipeline-build.mjs +23 -0
  147. package/packages/core/workflow/pipeline/action-output.js +11 -0
  148. package/packages/core/workflow/pipeline/actions.js +62 -0
  149. package/packages/core/workflow/pipeline/build-control.js +140 -0
  150. package/packages/core/workflow/pipeline/build-evidence.js +92 -0
  151. package/packages/core/workflow/pipeline/build-qualification.js +145 -0
  152. package/packages/core/workflow/pipeline/build-result.js +69 -0
  153. package/packages/core/workflow/pipeline/build.js +95 -0
  154. package/packages/core/workflow/pipeline/cancellation.js +169 -0
  155. package/packages/core/workflow/pipeline/channel-control.js +127 -0
  156. package/packages/core/workflow/pipeline/controller.js +133 -0
  157. package/packages/core/workflow/pipeline/delivery-control.js +204 -0
  158. package/packages/core/workflow/pipeline/delivery-observation.js +118 -0
  159. package/packages/core/workflow/pipeline/delivery-request.js +198 -0
  160. package/packages/core/workflow/pipeline/events.js +84 -0
  161. package/packages/core/workflow/pipeline/fence.js +42 -0
  162. package/packages/core/workflow/pipeline/group-control.js +56 -0
  163. package/packages/core/workflow/pipeline/guard-build.js +37 -0
  164. package/packages/core/workflow/pipeline/guard.js +156 -0
  165. package/packages/core/workflow/pipeline/host.js +114 -0
  166. package/packages/core/workflow/pipeline/materials.js +58 -0
  167. package/packages/core/workflow/pipeline/notifications.js +36 -0
  168. package/packages/core/workflow/pipeline/parent-notification.js +27 -0
  169. package/packages/core/workflow/pipeline/platforms.js +21 -0
  170. package/packages/core/workflow/pipeline/progress.js +108 -0
  171. package/packages/core/workflow/pipeline/projection.js +20 -0
  172. package/packages/core/workflow/pipeline/reconcile.js +194 -0
  173. package/packages/core/workflow/pipeline/recovery-action.js +30 -0
  174. package/packages/core/workflow/pipeline/recovery-admission.js +122 -0
  175. package/packages/core/workflow/pipeline/recovery-build-control.js +95 -0
  176. package/packages/core/workflow/pipeline/recovery-build-evidence.js +71 -0
  177. package/packages/core/workflow/pipeline/recovery-build.js +121 -0
  178. package/packages/core/workflow/pipeline/recovery-controller.js +91 -0
  179. package/packages/core/workflow/pipeline/recovery-integration.js +66 -0
  180. package/packages/core/workflow/pipeline/recovery-merge-proof.js +90 -0
  181. package/packages/core/workflow/pipeline/recovery-ownership-settlement.js +150 -0
  182. package/packages/core/workflow/pipeline/recovery-ownership.js +91 -0
  183. package/packages/core/workflow/pipeline/recovery-plan.js +126 -0
  184. package/packages/core/workflow/pipeline/recovery-runtime.js +68 -0
  185. package/packages/core/workflow/pipeline/recovery-session.js +129 -0
  186. package/packages/core/workflow/pipeline/recovery-transition.js +135 -0
  187. package/packages/core/workflow/pipeline/recovery-unrecorded-build.js +74 -0
  188. package/packages/core/workflow/pipeline/runtime-source.js +111 -0
  189. package/packages/core/workflow/pipeline/selection.js +106 -0
  190. package/packages/core/workflow/pipeline/session.js +72 -0
  191. package/packages/core/workflow/pipeline/settlement.js +137 -0
  192. package/packages/core/workflow/pipeline/wake.js +38 -0
  193. package/packages/core/workflow/pipeline/web-status.js +108 -0
  194. package/scripts/build-release-discussion-reader.mjs +11 -7
  195. package/scripts/check-pipeline-publication-topology.mjs +36 -0
  196. package/scripts/check-release-topology.mjs +6 -1
  197. package/scripts/generate-minimal-consumer-contract.mjs +155 -0
  198. package/scripts/verify-golden-path.mjs +5 -1
  199. package/templates/minimal-consumer/binary/.buildchain/buildchain.toml +45 -0
  200. package/templates/minimal-consumer/binary/.github/workflows/buildchain-recover.yml +30 -0
  201. package/templates/minimal-consumer/binary/.github/workflows/buildchain.yml +28 -0
  202. package/templates/minimal-consumer/binary/package.json +6 -0
  203. package/templates/minimal-consumer/binary/src/build.mjs +5 -0
  204. package/templates/minimal-consumer/binary/src/hello.c +2 -0
  205. package/templates/minimal-consumer/binary/src/verify.mjs +3 -0
  206. package/templates/minimal-consumer/npm/.buildchain/buildchain.toml +46 -0
  207. package/templates/minimal-consumer/npm/.github/workflows/buildchain-recover.yml +30 -0
  208. package/templates/minimal-consumer/npm/.github/workflows/buildchain.yml +28 -0
  209. package/templates/minimal-consumer/npm/package.json +6 -0
  210. package/templates/minimal-consumer/npm/src/build.mjs +5 -0
  211. package/templates/minimal-consumer/npm/src/verify.mjs +3 -0
  212. package/templates/minimal-consumer/paper/.buildchain/buildchain.toml +45 -0
  213. package/templates/minimal-consumer/paper/.github/workflows/buildchain-recover.yml +30 -0
  214. package/templates/minimal-consumer/paper/.github/workflows/buildchain.yml +28 -0
  215. package/templates/minimal-consumer/paper/package.json +6 -0
  216. package/templates/minimal-consumer/paper/src/build.mjs +12 -0
  217. package/templates/minimal-consumer/paper/src/verify.mjs +3 -0
@@ -224,6 +224,76 @@
224
224
  "sunsetCondition": "explicit-contract-change-review",
225
225
  "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
226
226
  },
227
+ {
228
+ "id": ".ops-pipeline-delivery",
229
+ "path": ".github/workflows/.ops-pipeline-delivery.yml",
230
+ "reusable": true,
231
+ "inputs": [
232
+ "request",
233
+ "runtime-selection"
234
+ ],
235
+ "inputCount": 2,
236
+ "secrets": [],
237
+ "secretCount": 0,
238
+ "outputs": [],
239
+ "outputCount": 0,
240
+ "taxonomy": {
241
+ "id": ".pipeline-delivery",
242
+ "role": "component",
243
+ "category": "ops",
244
+ "purpose": "pipeline-delivery",
245
+ "status": "active",
246
+ "canonicalPath": ".github/workflows/.ops-pipeline-delivery.yml",
247
+ "compatibilityAlias": false
248
+ },
249
+ "surface": "reusable-workflow",
250
+ "capabilityGroup": "api-cli-reference",
251
+ "status": "active",
252
+ "owner": "buildchain-workflows",
253
+ "maturity": "active",
254
+ "introducedVersion": "4.1.0-alpha.0",
255
+ "compatibilityPromise": "current-contract-only",
256
+ "deprecationReplacement": "",
257
+ "sunsetCondition": "explicit-contract-change-review",
258
+ "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
259
+ },
260
+ {
261
+ "id": ".ops-pipeline-execute",
262
+ "path": ".github/workflows/.ops-pipeline-execute.yml",
263
+ "reusable": true,
264
+ "inputs": [
265
+ "attempt",
266
+ "context",
267
+ "matrix",
268
+ "operation",
269
+ "request",
270
+ "runtime-selection"
271
+ ],
272
+ "inputCount": 6,
273
+ "secrets": [],
274
+ "secretCount": 0,
275
+ "outputs": [],
276
+ "outputCount": 0,
277
+ "taxonomy": {
278
+ "id": ".pipeline-execute",
279
+ "role": "component",
280
+ "category": "ops",
281
+ "purpose": "pipeline-execute",
282
+ "status": "active",
283
+ "canonicalPath": ".github/workflows/.ops-pipeline-execute.yml",
284
+ "compatibilityAlias": false
285
+ },
286
+ "surface": "reusable-workflow",
287
+ "capabilityGroup": "api-cli-reference",
288
+ "status": "active",
289
+ "owner": "buildchain-workflows",
290
+ "maturity": "active",
291
+ "introducedVersion": "4.1.0-alpha.0",
292
+ "compatibilityPromise": "current-contract-only",
293
+ "deprecationReplacement": "",
294
+ "sunsetCondition": "explicit-contract-change-review",
295
+ "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
296
+ },
227
297
  {
228
298
  "id": ".release-authority",
229
299
  "path": ".github/workflows/.release-authority.yml",
@@ -349,6 +419,43 @@
349
419
  "sunsetCondition": "explicit-contract-change-review",
350
420
  "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
351
421
  },
422
+ {
423
+ "id": ".release-pipeline-products",
424
+ "path": ".github/workflows/.release-pipeline-products.yml",
425
+ "reusable": true,
426
+ "inputs": [
427
+ "attempt",
428
+ "runtime-selection"
429
+ ],
430
+ "inputCount": 2,
431
+ "secrets": [
432
+ "BUILDCHAIN_APP_PRIVATE_KEY",
433
+ "BUILDCHAIN_AUTOMATION_TOKEN",
434
+ "BUILDCHAIN_NPM_TOKEN"
435
+ ],
436
+ "secretCount": 3,
437
+ "outputs": [],
438
+ "outputCount": 0,
439
+ "taxonomy": {
440
+ "id": ".pipeline-products",
441
+ "role": "component",
442
+ "category": "release",
443
+ "purpose": "pipeline-products",
444
+ "status": "active",
445
+ "canonicalPath": ".github/workflows/.release-pipeline-products.yml",
446
+ "compatibilityAlias": false
447
+ },
448
+ "surface": "reusable-workflow",
449
+ "capabilityGroup": "api-cli-reference",
450
+ "status": "active",
451
+ "owner": "buildchain-workflows",
452
+ "maturity": "active",
453
+ "introducedVersion": "4.1.0-alpha.0",
454
+ "compatibilityPromise": "current-contract-only",
455
+ "deprecationReplacement": "",
456
+ "sunsetCondition": "explicit-contract-change-review",
457
+ "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
458
+ },
352
459
  {
353
460
  "id": ".release-promote",
354
461
  "path": ".github/workflows/.release-promote.yml",
@@ -873,7 +980,9 @@
873
980
  "native-command",
874
981
  "native-command-root",
875
982
  "native-heartbeat-seconds",
983
+ "native-platform",
876
984
  "native-proof-json",
985
+ "pipeline-attempt",
877
986
  "plan-root",
878
987
  "project-cut-proof-json",
879
988
  "queue-admission-context",
@@ -893,7 +1002,7 @@
893
1002
  "toolchain-root",
894
1003
  "warrant-lease-seconds"
895
1004
  ],
896
- "inputCount": 42,
1005
+ "inputCount": 44,
897
1006
  "secrets": [
898
1007
  "github-token"
899
1008
  ],
@@ -1046,7 +1155,7 @@
1046
1155
  "status": "preview",
1047
1156
  "owner": "buildchain-workflows",
1048
1157
  "maturity": "preview",
1049
- "introducedVersion": "4.1.3-alpha.0",
1158
+ "introducedVersion": "4.1.3-alpha.2",
1050
1159
  "compatibilityPromise": "current-contract-only",
1051
1160
  "deprecationReplacement": "",
1052
1161
  "sunsetCondition": "explicit-contract-change-review",
@@ -1296,6 +1405,71 @@
1296
1405
  "sunsetCondition": "explicit-contract-change-review",
1297
1406
  "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
1298
1407
  },
1408
+ {
1409
+ "id": "public-ops-pipeline",
1410
+ "path": ".github/workflows/public-ops-pipeline.yml",
1411
+ "reusable": true,
1412
+ "inputs": [
1413
+ "config-path"
1414
+ ],
1415
+ "inputCount": 1,
1416
+ "secrets": [],
1417
+ "secretCount": 0,
1418
+ "outputs": [],
1419
+ "outputCount": 0,
1420
+ "taxonomy": {
1421
+ "id": "pipeline",
1422
+ "role": "public",
1423
+ "category": "ops",
1424
+ "purpose": "pipeline",
1425
+ "status": "active",
1426
+ "canonicalPath": ".github/workflows/public-ops-pipeline.yml",
1427
+ "compatibilityAlias": false
1428
+ },
1429
+ "surface": "repository-workflow",
1430
+ "capabilityGroup": "api-cli-reference",
1431
+ "status": "active",
1432
+ "owner": "buildchain-workflows",
1433
+ "maturity": "active",
1434
+ "introducedVersion": "4.1.0-alpha.0",
1435
+ "compatibilityPromise": "current-contract-only",
1436
+ "deprecationReplacement": "",
1437
+ "sunsetCondition": "explicit-contract-change-review",
1438
+ "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
1439
+ },
1440
+ {
1441
+ "id": "public-ops-recover",
1442
+ "path": ".github/workflows/public-ops-recover.yml",
1443
+ "reusable": true,
1444
+ "inputs": [
1445
+ "attempt",
1446
+ "runtime-ref"
1447
+ ],
1448
+ "inputCount": 2,
1449
+ "secrets": [],
1450
+ "secretCount": 0,
1451
+ "outputs": [],
1452
+ "outputCount": 0,
1453
+ "taxonomy": {
1454
+ "id": "recover",
1455
+ "role": "public",
1456
+ "category": "ops",
1457
+ "purpose": "recover",
1458
+ "status": "active",
1459
+ "canonicalPath": ".github/workflows/public-ops-recover.yml",
1460
+ "compatibilityAlias": false
1461
+ },
1462
+ "surface": "repository-workflow",
1463
+ "capabilityGroup": "api-cli-reference",
1464
+ "status": "active",
1465
+ "owner": "buildchain-workflows",
1466
+ "maturity": "active",
1467
+ "introducedVersion": "4.1.0-alpha.0",
1468
+ "compatibilityPromise": "current-contract-only",
1469
+ "deprecationReplacement": "",
1470
+ "sunsetCondition": "explicit-contract-change-review",
1471
+ "nonDuplicationRationale": "Canonical workflow owns one declared API or orchestration responsibility."
1472
+ },
1299
1473
  {
1300
1474
  "id": "public-ops-release-governance",
1301
1475
  "path": ".github/workflows/public-ops-release-governance.yml",
@@ -2479,7 +2653,7 @@
2479
2653
  "status": "preview",
2480
2654
  "owner": "buildchain-workflows",
2481
2655
  "maturity": "preview",
2482
- "introducedVersion": "4.1.3-alpha.0",
2656
+ "introducedVersion": "4.1.3-alpha.2",
2483
2657
  "compatibilityPromise": "current-contract-only",
2484
2658
  "deprecationReplacement": "",
2485
2659
  "sunsetCondition": "explicit-contract-change-review",
@@ -2509,7 +2683,7 @@
2509
2683
  "status": "preview",
2510
2684
  "owner": "buildchain-workflows",
2511
2685
  "maturity": "preview",
2512
- "introducedVersion": "4.1.3-alpha.0",
2686
+ "introducedVersion": "4.1.3-alpha.2",
2513
2687
  "compatibilityPromise": "current-contract-only",
2514
2688
  "deprecationReplacement": "",
2515
2689
  "sunsetCondition": "explicit-contract-change-review",
@@ -2539,7 +2713,7 @@
2539
2713
  "status": "preview",
2540
2714
  "owner": "buildchain-workflows",
2541
2715
  "maturity": "preview",
2542
- "introducedVersion": "4.1.3-alpha.0",
2716
+ "introducedVersion": "4.1.3-alpha.2",
2543
2717
  "compatibilityPromise": "current-contract-only",
2544
2718
  "deprecationReplacement": "",
2545
2719
  "sunsetCondition": "explicit-contract-change-review",
@@ -4920,10 +5094,11 @@
4920
5094
  "branch",
4921
5095
  "heartbeat-seconds",
4922
5096
  "lease-seconds",
5097
+ "pipeline-attempt",
4923
5098
  "runtime-sha",
4924
5099
  "token"
4925
5100
  ],
4926
- "inputCount": 5,
5101
+ "inputCount": 6,
4927
5102
  "capabilityGroup": "release-passport-trust",
4928
5103
  "status": "active",
4929
5104
  "owner": "buildchain-actions",
@@ -6636,6 +6811,142 @@
6636
6811
  "sunsetCondition": "explicit-contract-change-review",
6637
6812
  "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6638
6813
  },
6814
+ {
6815
+ "apiRole": "implementation",
6816
+ "id": "publication/pipeline/apply",
6817
+ "path": "actions/publication/pipeline/apply/action.yml",
6818
+ "inputs": [
6819
+ "context",
6820
+ "token"
6821
+ ],
6822
+ "inputCount": 2,
6823
+ "capabilityGroup": "release-passport-trust",
6824
+ "status": "active",
6825
+ "owner": "buildchain-actions",
6826
+ "maturity": "stable",
6827
+ "introducedVersion": "4.1.0-alpha.0",
6828
+ "compatibilityPromise": "current-contract-only",
6829
+ "deprecationReplacement": "",
6830
+ "sunsetCondition": "explicit-contract-change-review",
6831
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6832
+ },
6833
+ {
6834
+ "apiRole": "implementation",
6835
+ "id": "publication/pipeline/build",
6836
+ "path": "actions/publication/pipeline/build/action.yml",
6837
+ "inputs": [
6838
+ "context",
6839
+ "platform"
6840
+ ],
6841
+ "inputCount": 2,
6842
+ "capabilityGroup": "release-passport-trust",
6843
+ "status": "active",
6844
+ "owner": "buildchain-actions",
6845
+ "maturity": "stable",
6846
+ "introducedVersion": "4.1.0-alpha.0",
6847
+ "compatibilityPromise": "current-contract-only",
6848
+ "deprecationReplacement": "",
6849
+ "sunsetCondition": "explicit-contract-change-review",
6850
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6851
+ },
6852
+ {
6853
+ "apiRole": "implementation",
6854
+ "id": "publication/pipeline/prepare",
6855
+ "path": "actions/publication/pipeline/prepare/action.yml",
6856
+ "inputs": [
6857
+ "attempt",
6858
+ "definition-sha",
6859
+ "token"
6860
+ ],
6861
+ "inputCount": 3,
6862
+ "capabilityGroup": "release-passport-trust",
6863
+ "status": "active",
6864
+ "owner": "buildchain-actions",
6865
+ "maturity": "stable",
6866
+ "introducedVersion": "4.1.0-alpha.0",
6867
+ "compatibilityPromise": "current-contract-only",
6868
+ "deprecationReplacement": "",
6869
+ "sunsetCondition": "explicit-contract-change-review",
6870
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6871
+ },
6872
+ {
6873
+ "apiRole": "implementation",
6874
+ "id": "publication/pipeline/prepare-qualification",
6875
+ "path": "actions/publication/pipeline/prepare-qualification/action.yml",
6876
+ "inputs": [
6877
+ "context",
6878
+ "token"
6879
+ ],
6880
+ "inputCount": 2,
6881
+ "capabilityGroup": "release-passport-trust",
6882
+ "status": "active",
6883
+ "owner": "buildchain-actions",
6884
+ "maturity": "stable",
6885
+ "introducedVersion": "4.1.0-alpha.0",
6886
+ "compatibilityPromise": "current-contract-only",
6887
+ "deprecationReplacement": "",
6888
+ "sunsetCondition": "explicit-contract-change-review",
6889
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6890
+ },
6891
+ {
6892
+ "apiRole": "implementation",
6893
+ "id": "publication/pipeline/qualify",
6894
+ "path": "actions/publication/pipeline/qualify/action.yml",
6895
+ "inputs": [
6896
+ "context",
6897
+ "token"
6898
+ ],
6899
+ "inputCount": 2,
6900
+ "capabilityGroup": "release-passport-trust",
6901
+ "status": "active",
6902
+ "owner": "buildchain-actions",
6903
+ "maturity": "stable",
6904
+ "introducedVersion": "4.1.0-alpha.0",
6905
+ "compatibilityPromise": "current-contract-only",
6906
+ "deprecationReplacement": "",
6907
+ "sunsetCondition": "explicit-contract-change-review",
6908
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6909
+ },
6910
+ {
6911
+ "apiRole": "implementation",
6912
+ "id": "publication/pipeline/seal-qualification",
6913
+ "path": "actions/publication/pipeline/seal-qualification/action.yml",
6914
+ "inputs": [
6915
+ "bundle-path",
6916
+ "context",
6917
+ "token"
6918
+ ],
6919
+ "inputCount": 3,
6920
+ "capabilityGroup": "release-passport-trust",
6921
+ "status": "active",
6922
+ "owner": "buildchain-actions",
6923
+ "maturity": "stable",
6924
+ "introducedVersion": "4.1.0-alpha.0",
6925
+ "compatibilityPromise": "current-contract-only",
6926
+ "deprecationReplacement": "",
6927
+ "sunsetCondition": "explicit-contract-change-review",
6928
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6929
+ },
6930
+ {
6931
+ "apiRole": "implementation",
6932
+ "id": "publication/pipeline/settle",
6933
+ "path": "actions/publication/pipeline/settle/action.yml",
6934
+ "inputs": [
6935
+ "context",
6936
+ "pr-token",
6937
+ "token"
6938
+ ],
6939
+ "inputCount": 3,
6940
+ "capabilityGroup": "release-passport-trust",
6941
+ "status": "active",
6942
+ "owner": "buildchain-actions",
6943
+ "maturity": "stable",
6944
+ "introducedVersion": "4.1.0-alpha.0",
6945
+ "compatibilityPromise": "current-contract-only",
6946
+ "deprecationReplacement": "",
6947
+ "sunsetCondition": "explicit-contract-change-review",
6948
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
6949
+ },
6639
6950
  {
6640
6951
  "apiRole": "implementation",
6641
6952
  "id": "publication/settlement/retain",
@@ -7870,6 +8181,8 @@
7870
8181
  "path": "actions/runtime/selection/resolve/action.yml",
7871
8182
  "inputs": [
7872
8183
  "contract-lock",
8184
+ "pipeline-attempt",
8185
+ "recovery-attempt",
7873
8186
  "resume-run-id",
7874
8187
  "runtime-ref",
7875
8188
  "selection",
@@ -7879,7 +8192,7 @@
7879
8192
  "workflow-ref",
7880
8193
  "workflow-sha"
7881
8194
  ],
7882
- "inputCount": 9,
8195
+ "inputCount": 11,
7883
8196
  "capabilityGroup": "api-cli-reference",
7884
8197
  "status": "active",
7885
8198
  "owner": "buildchain-actions",
@@ -8649,6 +8962,102 @@
8649
8962
  "sunsetCondition": "explicit-contract-change-review",
8650
8963
  "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
8651
8964
  },
8965
+ {
8966
+ "apiRole": "implementation",
8967
+ "id": "workflow/pipeline/build",
8968
+ "path": "actions/workflow/pipeline/build/action.yml",
8969
+ "inputs": [
8970
+ "context",
8971
+ "platform"
8972
+ ],
8973
+ "inputCount": 2,
8974
+ "capabilityGroup": "api-cli-reference",
8975
+ "status": "active",
8976
+ "owner": "buildchain-actions",
8977
+ "maturity": "stable",
8978
+ "introducedVersion": "4.1.0-alpha.0",
8979
+ "compatibilityPromise": "current-contract-only",
8980
+ "deprecationReplacement": "",
8981
+ "sunsetCondition": "explicit-contract-change-review",
8982
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
8983
+ },
8984
+ {
8985
+ "apiRole": "implementation",
8986
+ "id": "workflow/pipeline/control",
8987
+ "path": "actions/workflow/pipeline/control/action.yml",
8988
+ "inputs": [
8989
+ "config-path",
8990
+ "token"
8991
+ ],
8992
+ "inputCount": 2,
8993
+ "capabilityGroup": "api-cli-reference",
8994
+ "status": "active",
8995
+ "owner": "buildchain-actions",
8996
+ "maturity": "stable",
8997
+ "introducedVersion": "4.1.0-alpha.0",
8998
+ "compatibilityPromise": "current-contract-only",
8999
+ "deprecationReplacement": "",
9000
+ "sunsetCondition": "explicit-contract-change-review",
9001
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
9002
+ },
9003
+ {
9004
+ "apiRole": "implementation",
9005
+ "id": "workflow/pipeline/record-build",
9006
+ "path": "actions/workflow/pipeline/record-build/action.yml",
9007
+ "inputs": [
9008
+ "context",
9009
+ "token"
9010
+ ],
9011
+ "inputCount": 2,
9012
+ "capabilityGroup": "api-cli-reference",
9013
+ "status": "active",
9014
+ "owner": "buildchain-actions",
9015
+ "maturity": "stable",
9016
+ "introducedVersion": "4.1.0-alpha.0",
9017
+ "compatibilityPromise": "current-contract-only",
9018
+ "deprecationReplacement": "",
9019
+ "sunsetCondition": "explicit-contract-change-review",
9020
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
9021
+ },
9022
+ {
9023
+ "apiRole": "implementation",
9024
+ "id": "workflow/pipeline/recover",
9025
+ "path": "actions/workflow/pipeline/recover/action.yml",
9026
+ "inputs": [
9027
+ "attempt",
9028
+ "definition-sha",
9029
+ "token"
9030
+ ],
9031
+ "inputCount": 3,
9032
+ "capabilityGroup": "api-cli-reference",
9033
+ "status": "active",
9034
+ "owner": "buildchain-actions",
9035
+ "maturity": "stable",
9036
+ "introducedVersion": "4.1.0-alpha.0",
9037
+ "compatibilityPromise": "current-contract-only",
9038
+ "deprecationReplacement": "",
9039
+ "sunsetCondition": "explicit-contract-change-review",
9040
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
9041
+ },
9042
+ {
9043
+ "apiRole": "implementation",
9044
+ "id": "workflow/pipeline/wake",
9045
+ "path": "actions/workflow/pipeline/wake/action.yml",
9046
+ "inputs": [
9047
+ "attempt",
9048
+ "token"
9049
+ ],
9050
+ "inputCount": 2,
9051
+ "capabilityGroup": "api-cli-reference",
9052
+ "status": "active",
9053
+ "owner": "buildchain-actions",
9054
+ "maturity": "stable",
9055
+ "introducedVersion": "4.1.0-alpha.0",
9056
+ "compatibilityPromise": "current-contract-only",
9057
+ "deprecationReplacement": "",
9058
+ "sunsetCondition": "explicit-contract-change-review",
9059
+ "nonDuplicationRationale": "One capability node owns the composite or JavaScript adapter boundary."
9060
+ },
8652
9061
  {
8653
9062
  "apiRole": "implementation",
8654
9063
  "id": "workflow/settlement/seal",