@kungfu-tech/buildchain 4.0.1-alpha.2 → 4.0.1-alpha.3

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 (75) hide show
  1. package/architecture/decisions/0003-two-phase-delivery-warrant.md +152 -0
  2. package/architecture/internal-capabilities.json +94 -0
  3. package/architecture/maintainability-policy.json +75 -8
  4. package/architecture/v3-core-mechanism-inventory.json +2 -0
  5. package/architecture/v4-delivery-authority-parity.json +250 -0
  6. package/architecture/v4-delivery-warrant-shadow-fixtures.json +29 -6
  7. package/bin/buildchain.mjs +9 -1
  8. package/contracts/dev-delivery-authority-v2.schema.json +662 -0
  9. package/dist/site/agent-index.json +1 -0
  10. package/dist/site/artifact-schemas.json +2 -0
  11. package/dist/site/buildchain-contract.json +89 -6
  12. package/dist/site/buildchain-site.json +169 -18
  13. package/dist/site/capability-registry.json +2 -2
  14. package/dist/site/cli-registry.json +46 -2
  15. package/dist/site/kfd-claims.json +43 -9
  16. package/dist/site/kfd-upstream-aggregate.json +1 -1
  17. package/dist/site/manual-registry.json +3 -3
  18. package/dist/site/node-api-registry.json +1694 -165
  19. package/dist/site/page-registry.json +162 -11
  20. package/dist/site/public-surface-audit.json +367 -7
  21. package/dist/site/publication-registry.json +4 -4
  22. package/dist/site/release-provenance.json +2 -0
  23. package/dist/site/schemas/dev-delivery-authority-v2.schema.json +662 -0
  24. package/dist/site/site-manifest.json +7 -7
  25. package/dist/site/workflow-registry.json +22 -6
  26. package/docs/MAP.md +1 -0
  27. package/docs/cli-reference.md +211 -13
  28. package/docs/dev-delivery-qualification-landing-adr.md +251 -0
  29. package/docs/dev-delivery-warrant.md +326 -38
  30. package/docs/node-api-reference.md +113 -53
  31. package/package.json +5 -1
  32. package/packages/core/buildchain-contract.js +3 -2
  33. package/packages/core/dev-delivery-authority-candidate.js +270 -0
  34. package/packages/core/dev-delivery-authority-evidence.js +146 -0
  35. package/packages/core/dev-delivery-authority-landing.js +461 -0
  36. package/packages/core/dev-delivery-authority-observation.js +48 -0
  37. package/packages/core/dev-delivery-authority-qualification.js +591 -0
  38. package/packages/core/dev-delivery-authority-settlement.js +213 -0
  39. package/packages/core/dev-delivery-authority-state.js +583 -0
  40. package/packages/core/dev-delivery-candidate-identity.js +13 -0
  41. package/packages/core/dev-delivery-contract-surface.js +76 -0
  42. package/packages/core/dev-delivery-execution-failure.js +133 -0
  43. package/packages/core/dev-delivery-execution-transfer.js +572 -0
  44. package/packages/core/dev-delivery-landing-admission-core.js +119 -0
  45. package/packages/core/dev-delivery-landing-readback.js +598 -0
  46. package/packages/core/dev-delivery-landing-terminal-evidence.js +271 -0
  47. package/packages/core/dev-delivery-landing-testing-port.js +6 -0
  48. package/packages/core/dev-delivery-native-execution.js +110 -0
  49. package/packages/core/dev-delivery-native-proof.js +546 -0
  50. package/packages/core/dev-delivery-process-boundary.js +551 -0
  51. package/packages/core/dev-delivery-provider-attempt.js +127 -0
  52. package/packages/core/dev-delivery-provider-heartbeat.js +370 -0
  53. package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
  54. package/packages/core/dev-delivery-warrant-qualification.js +145 -0
  55. package/packages/core/dev-delivery-warrant-settlement.js +237 -36
  56. package/packages/core/dev-delivery-warrant-state.js +565 -0
  57. package/packages/core/dev-delivery-warrant.js +320 -368
  58. package/scripts/buildchain-cli-help.mjs +11 -2
  59. package/scripts/dev-delivery-authority-command-adapters.mjs +206 -0
  60. package/scripts/dev-delivery-authority-provider.mjs +28 -0
  61. package/scripts/dev-delivery-authority.mjs +490 -0
  62. package/scripts/dev-delivery-native-run.mjs +177 -0
  63. package/scripts/dev-delivery-process-boundary.mjs +260 -0
  64. package/scripts/dev-delivery-proof.mjs +67 -2
  65. package/scripts/dev-delivery-provider-heartbeat.mjs +215 -0
  66. package/scripts/dev-delivery-two-phase-resume.mjs +345 -0
  67. package/scripts/dev-delivery-two-phase.mjs +573 -0
  68. package/scripts/dev-delivery-warrant-options.mjs +266 -0
  69. package/scripts/dev-delivery-warrant-store.mjs +227 -0
  70. package/scripts/dev-delivery-warrant.mjs +227 -193
  71. package/scripts/dev-pr-delivery-warrant.mjs +10 -0
  72. package/scripts/generate-site-bundle.mjs +26 -4
  73. package/scripts/npm-publish-transaction.mjs +2 -2
  74. package/scripts/site-capability-metadata.mjs +12 -0
  75. package/templates/native-dev-delivery.yml +141 -0
@@ -6,8 +6,8 @@
6
6
  "cliCommandCount": 114,
7
7
  "workflowCount": 71,
8
8
  "actionCount": 7,
9
- "sitePageCount": 76,
10
- "docCommandRefCount": 919,
9
+ "sitePageCount": 77,
10
+ "docCommandRefCount": 987,
11
11
  "failureCount": 0
12
12
  },
13
13
  "enumerated": {
@@ -2042,27 +2042,37 @@
2042
2042
  "dependency-root",
2043
2043
  "diagnostic-context",
2044
2044
  "dry-run",
2045
+ "environment-root",
2045
2046
  "expected-head-sha",
2046
2047
  "expected-pr-number",
2048
+ "handoff-workflow-id",
2047
2049
  "initiative-root",
2048
2050
  "landing-mode",
2051
+ "legacy-active-owner-binding-json",
2049
2052
  "max-merges",
2050
2053
  "merge-method",
2054
+ "native-command",
2055
+ "native-command-root",
2056
+ "native-heartbeat-seconds",
2057
+ "native-proof-json",
2051
2058
  "plan-root",
2052
2059
  "project-cut-proof-json",
2053
2060
  "queue-admission-context",
2054
2061
  "ready-label",
2062
+ "release-blocker-priority-json",
2055
2063
  "require-approval",
2056
2064
  "required-status-checks",
2057
2065
  "same-repository-only",
2058
2066
  "shard-evidence-roots-json",
2059
2067
  "source-identity-root",
2060
2068
  "source-patch-root",
2069
+ "source-workflow-id",
2070
+ "source-workflow-run-id",
2061
2071
  "target-branch",
2062
2072
  "toolchain-root",
2063
2073
  "warrant-lease-seconds"
2064
2074
  ],
2065
- "inputCount": 33,
2075
+ "inputCount": 43,
2066
2076
  "secrets": [
2067
2077
  "github-token"
2068
2078
  ],
@@ -2075,14 +2085,20 @@
2075
2085
  "evaluated-count",
2076
2086
  "final-base-sha",
2077
2087
  "merged-count",
2088
+ "native-execution-transfer-root",
2089
+ "native-proof-root",
2090
+ "native-reuse-decision-root",
2078
2091
  "project-cut-proof-root",
2092
+ "provider-finalizer-boundary-root",
2093
+ "provider-heartbeat-receipt-root",
2094
+ "qualified-warrant-receipt-root",
2079
2095
  "skipped-count",
2080
2096
  "source-proof-root",
2081
2097
  "warrant-receipt-root",
2082
2098
  "warrant-state-commit",
2083
2099
  "warrant-state-root"
2084
2100
  ],
2085
- "outputCount": 13
2101
+ "outputCount": 19
2086
2102
  },
2087
2103
  {
2088
2104
  "id": "dev-qualification-patrol",
@@ -3269,6 +3285,10 @@
3269
3285
  "id": "manual:dev-alpha-candidate-patrol",
3270
3286
  "category": "manual"
3271
3287
  },
3288
+ {
3289
+ "id": "manual:dev-delivery-qualification-landing-adr",
3290
+ "category": "manual"
3291
+ },
3272
3292
  {
3273
3293
  "id": "manual:dev-delivery-warrant",
3274
3294
  "category": "manual"
@@ -4060,6 +4080,61 @@
4060
4080
  "path": "docs/cli-reference.md",
4061
4081
  "command": "buildchain dev"
4062
4082
  },
4083
+ {
4084
+ "id": "dev",
4085
+ "path": "docs/cli-reference.md",
4086
+ "command": "buildchain dev authority"
4087
+ },
4088
+ {
4089
+ "id": "dev",
4090
+ "path": "docs/cli-reference.md",
4091
+ "command": "buildchain dev authority"
4092
+ },
4093
+ {
4094
+ "id": "dev",
4095
+ "path": "docs/cli-reference.md",
4096
+ "command": "buildchain dev authority"
4097
+ },
4098
+ {
4099
+ "id": "dev",
4100
+ "path": "docs/cli-reference.md",
4101
+ "command": "buildchain dev authority"
4102
+ },
4103
+ {
4104
+ "id": "dev",
4105
+ "path": "docs/cli-reference.md",
4106
+ "command": "buildchain dev authority"
4107
+ },
4108
+ {
4109
+ "id": "dev",
4110
+ "path": "docs/cli-reference.md",
4111
+ "command": "buildchain dev authority"
4112
+ },
4113
+ {
4114
+ "id": "dev",
4115
+ "path": "docs/cli-reference.md",
4116
+ "command": "buildchain dev authority"
4117
+ },
4118
+ {
4119
+ "id": "dev",
4120
+ "path": "docs/cli-reference.md",
4121
+ "command": "buildchain dev authority"
4122
+ },
4123
+ {
4124
+ "id": "dev",
4125
+ "path": "docs/cli-reference.md",
4126
+ "command": "buildchain dev authority"
4127
+ },
4128
+ {
4129
+ "id": "dev",
4130
+ "path": "docs/cli-reference.md",
4131
+ "command": "buildchain dev authority"
4132
+ },
4133
+ {
4134
+ "id": "dev",
4135
+ "path": "docs/cli-reference.md",
4136
+ "command": "buildchain dev authority"
4137
+ },
4063
4138
  {
4064
4139
  "id": "dev",
4065
4140
  "path": "docs/cli-reference.md",
@@ -4100,6 +4175,41 @@
4100
4175
  "path": "docs/cli-reference.md",
4101
4176
  "command": "buildchain dev proof"
4102
4177
  },
4178
+ {
4179
+ "id": "dev",
4180
+ "path": "docs/cli-reference.md",
4181
+ "command": "buildchain dev proof"
4182
+ },
4183
+ {
4184
+ "id": "dev",
4185
+ "path": "docs/cli-reference.md",
4186
+ "command": "buildchain dev proof"
4187
+ },
4188
+ {
4189
+ "id": "dev",
4190
+ "path": "docs/cli-reference.md",
4191
+ "command": "buildchain dev proof"
4192
+ },
4193
+ {
4194
+ "id": "dev",
4195
+ "path": "docs/cli-reference.md",
4196
+ "command": "buildchain dev proof"
4197
+ },
4198
+ {
4199
+ "id": "dev",
4200
+ "path": "docs/cli-reference.md",
4201
+ "command": "buildchain dev two-phase --repository"
4202
+ },
4203
+ {
4204
+ "id": "dev",
4205
+ "path": "docs/cli-reference.md",
4206
+ "command": "buildchain dev warrant"
4207
+ },
4208
+ {
4209
+ "id": "dev",
4210
+ "path": "docs/cli-reference.md",
4211
+ "command": "buildchain dev warrant"
4212
+ },
4103
4213
  {
4104
4214
  "id": "dev",
4105
4215
  "path": "docs/cli-reference.md",
@@ -4145,6 +4255,116 @@
4145
4255
  "path": "docs/cli-reference.md",
4146
4256
  "command": "buildchain dev --help"
4147
4257
  },
4258
+ {
4259
+ "id": "dev",
4260
+ "path": "docs/cli-reference.md",
4261
+ "command": "buildchain dev authority admit-merge-group"
4262
+ },
4263
+ {
4264
+ "id": "dev",
4265
+ "path": "docs/cli-reference.md",
4266
+ "command": "buildchain dev authority admit-merge-group"
4267
+ },
4268
+ {
4269
+ "id": "dev",
4270
+ "path": "docs/cli-reference.md",
4271
+ "command": "buildchain dev authority complete-qualification"
4272
+ },
4273
+ {
4274
+ "id": "dev",
4275
+ "path": "docs/cli-reference.md",
4276
+ "command": "buildchain dev authority complete-qualification"
4277
+ },
4278
+ {
4279
+ "id": "dev",
4280
+ "path": "docs/cli-reference.md",
4281
+ "command": "buildchain dev authority heartbeat-landing"
4282
+ },
4283
+ {
4284
+ "id": "dev",
4285
+ "path": "docs/cli-reference.md",
4286
+ "command": "buildchain dev authority heartbeat-landing"
4287
+ },
4288
+ {
4289
+ "id": "dev",
4290
+ "path": "docs/cli-reference.md",
4291
+ "command": "buildchain dev authority heartbeat-qualification"
4292
+ },
4293
+ {
4294
+ "id": "dev",
4295
+ "path": "docs/cli-reference.md",
4296
+ "command": "buildchain dev authority heartbeat-qualification"
4297
+ },
4298
+ {
4299
+ "id": "dev",
4300
+ "path": "docs/cli-reference.md",
4301
+ "command": "buildchain dev authority lease-landing"
4302
+ },
4303
+ {
4304
+ "id": "dev",
4305
+ "path": "docs/cli-reference.md",
4306
+ "command": "buildchain dev authority lease-landing"
4307
+ },
4308
+ {
4309
+ "id": "dev",
4310
+ "path": "docs/cli-reference.md",
4311
+ "command": "buildchain dev authority lease-qualification"
4312
+ },
4313
+ {
4314
+ "id": "dev",
4315
+ "path": "docs/cli-reference.md",
4316
+ "command": "buildchain dev authority lease-qualification"
4317
+ },
4318
+ {
4319
+ "id": "dev",
4320
+ "path": "docs/cli-reference.md",
4321
+ "command": "buildchain dev authority migrate"
4322
+ },
4323
+ {
4324
+ "id": "dev",
4325
+ "path": "docs/cli-reference.md",
4326
+ "command": "buildchain dev authority migrate"
4327
+ },
4328
+ {
4329
+ "id": "dev",
4330
+ "path": "docs/cli-reference.md",
4331
+ "command": "buildchain dev authority observe"
4332
+ },
4333
+ {
4334
+ "id": "dev",
4335
+ "path": "docs/cli-reference.md",
4336
+ "command": "buildchain dev authority observe"
4337
+ },
4338
+ {
4339
+ "id": "dev",
4340
+ "path": "docs/cli-reference.md",
4341
+ "command": "buildchain dev authority recover"
4342
+ },
4343
+ {
4344
+ "id": "dev",
4345
+ "path": "docs/cli-reference.md",
4346
+ "command": "buildchain dev authority recover"
4347
+ },
4348
+ {
4349
+ "id": "dev",
4350
+ "path": "docs/cli-reference.md",
4351
+ "command": "buildchain dev authority settle"
4352
+ },
4353
+ {
4354
+ "id": "dev",
4355
+ "path": "docs/cli-reference.md",
4356
+ "command": "buildchain dev authority settle"
4357
+ },
4358
+ {
4359
+ "id": "dev",
4360
+ "path": "docs/cli-reference.md",
4361
+ "command": "buildchain dev authority submit"
4362
+ },
4363
+ {
4364
+ "id": "dev",
4365
+ "path": "docs/cli-reference.md",
4366
+ "command": "buildchain dev authority submit"
4367
+ },
4148
4368
  {
4149
4369
  "id": "dev",
4150
4370
  "path": "docs/cli-reference.md",
@@ -4175,6 +4395,16 @@
4175
4395
  "path": "docs/cli-reference.md",
4176
4396
  "command": "buildchain dev proof classify"
4177
4397
  },
4398
+ {
4399
+ "id": "dev",
4400
+ "path": "docs/cli-reference.md",
4401
+ "command": "buildchain dev proof classify-native"
4402
+ },
4403
+ {
4404
+ "id": "dev",
4405
+ "path": "docs/cli-reference.md",
4406
+ "command": "buildchain dev proof classify-native"
4407
+ },
4178
4408
  {
4179
4409
  "id": "dev",
4180
4410
  "path": "docs/cli-reference.md",
@@ -4185,6 +4415,16 @@
4185
4415
  "path": "docs/cli-reference.md",
4186
4416
  "command": "buildchain dev proof integration"
4187
4417
  },
4418
+ {
4419
+ "id": "dev",
4420
+ "path": "docs/cli-reference.md",
4421
+ "command": "buildchain dev proof native"
4422
+ },
4423
+ {
4424
+ "id": "dev",
4425
+ "path": "docs/cli-reference.md",
4426
+ "command": "buildchain dev proof native"
4427
+ },
4188
4428
  {
4189
4429
  "id": "dev",
4190
4430
  "path": "docs/cli-reference.md",
@@ -4215,6 +4455,26 @@
4215
4455
  "path": "docs/cli-reference.md",
4216
4456
  "command": "buildchain dev proof verify-integration"
4217
4457
  },
4458
+ {
4459
+ "id": "dev",
4460
+ "path": "docs/cli-reference.md",
4461
+ "command": "buildchain dev proof verify-native"
4462
+ },
4463
+ {
4464
+ "id": "dev",
4465
+ "path": "docs/cli-reference.md",
4466
+ "command": "buildchain dev proof verify-native"
4467
+ },
4468
+ {
4469
+ "id": "dev",
4470
+ "path": "docs/cli-reference.md",
4471
+ "command": "buildchain dev proof verify-native-reuse"
4472
+ },
4473
+ {
4474
+ "id": "dev",
4475
+ "path": "docs/cli-reference.md",
4476
+ "command": "buildchain dev proof verify-native-reuse"
4477
+ },
4218
4478
  {
4219
4479
  "id": "dev",
4220
4480
  "path": "docs/cli-reference.md",
@@ -4225,6 +4485,16 @@
4225
4485
  "path": "docs/cli-reference.md",
4226
4486
  "command": "buildchain dev proof verify-source"
4227
4487
  },
4488
+ {
4489
+ "id": "dev",
4490
+ "path": "docs/cli-reference.md",
4491
+ "command": "buildchain dev two-phase"
4492
+ },
4493
+ {
4494
+ "id": "dev",
4495
+ "path": "docs/cli-reference.md",
4496
+ "command": "buildchain dev two-phase --help"
4497
+ },
4228
4498
  {
4229
4499
  "id": "dev",
4230
4500
  "path": "docs/cli-reference.md",
@@ -4265,6 +4535,16 @@
4265
4535
  "path": "docs/cli-reference.md",
4266
4536
  "command": "buildchain dev warrant observe"
4267
4537
  },
4538
+ {
4539
+ "id": "dev",
4540
+ "path": "docs/cli-reference.md",
4541
+ "command": "buildchain dev warrant qualify"
4542
+ },
4543
+ {
4544
+ "id": "dev",
4545
+ "path": "docs/cli-reference.md",
4546
+ "command": "buildchain dev warrant qualify"
4547
+ },
4268
4548
  {
4269
4549
  "id": "dev",
4270
4550
  "path": "docs/cli-reference.md",
@@ -4285,6 +4565,16 @@
4285
4565
  "path": "docs/cli-reference.md",
4286
4566
  "command": "buildchain dev warrant select"
4287
4567
  },
4568
+ {
4569
+ "id": "dev",
4570
+ "path": "docs/cli-reference.md",
4571
+ "command": "buildchain dev warrant settle"
4572
+ },
4573
+ {
4574
+ "id": "dev",
4575
+ "path": "docs/cli-reference.md",
4576
+ "command": "buildchain dev warrant settle"
4577
+ },
4288
4578
  {
4289
4579
  "id": "dev",
4290
4580
  "path": "docs/cli-reference.md",
@@ -4310,6 +4600,11 @@
4310
4600
  "path": "docs/cli.md",
4311
4601
  "command": "buildchain dev merge-queue --from-config"
4312
4602
  },
4603
+ {
4604
+ "id": "dev",
4605
+ "path": "docs/dev-delivery-qualification-landing-adr.md",
4606
+ "command": "buildchain dev warrant"
4607
+ },
4313
4608
  {
4314
4609
  "id": "dev",
4315
4610
  "path": "docs/dev-delivery-warrant.md",
@@ -4320,6 +4615,21 @@
4320
4615
  "path": "docs/dev-delivery-warrant.md",
4321
4616
  "command": "buildchain dev warrant select"
4322
4617
  },
4618
+ {
4619
+ "id": "dev",
4620
+ "path": "docs/dev-delivery-warrant.md",
4621
+ "command": "buildchain dev proof native"
4622
+ },
4623
+ {
4624
+ "id": "dev",
4625
+ "path": "docs/dev-delivery-warrant.md",
4626
+ "command": "buildchain dev proof classify-native"
4627
+ },
4628
+ {
4629
+ "id": "dev",
4630
+ "path": "docs/dev-delivery-warrant.md",
4631
+ "command": "buildchain dev warrant qualify"
4632
+ },
4323
4633
  {
4324
4634
  "id": "dev",
4325
4635
  "path": "docs/dev-delivery-warrant.md",
@@ -4350,6 +4660,56 @@
4350
4660
  "path": "docs/dev-delivery-warrant.md",
4351
4661
  "command": "buildchain dev proof integration"
4352
4662
  },
4663
+ {
4664
+ "id": "dev",
4665
+ "path": "docs/dev-delivery-warrant.md",
4666
+ "command": "buildchain dev authority migrate"
4667
+ },
4668
+ {
4669
+ "id": "dev",
4670
+ "path": "docs/dev-delivery-warrant.md",
4671
+ "command": "buildchain dev authority submit"
4672
+ },
4673
+ {
4674
+ "id": "dev",
4675
+ "path": "docs/dev-delivery-warrant.md",
4676
+ "command": "buildchain dev authority lease-qualification"
4677
+ },
4678
+ {
4679
+ "id": "dev",
4680
+ "path": "docs/dev-delivery-warrant.md",
4681
+ "command": "buildchain dev authority heartbeat-qualification"
4682
+ },
4683
+ {
4684
+ "id": "dev",
4685
+ "path": "docs/dev-delivery-warrant.md",
4686
+ "command": "buildchain dev authority complete-qualification"
4687
+ },
4688
+ {
4689
+ "id": "dev",
4690
+ "path": "docs/dev-delivery-warrant.md",
4691
+ "command": "buildchain dev authority lease-landing"
4692
+ },
4693
+ {
4694
+ "id": "dev",
4695
+ "path": "docs/dev-delivery-warrant.md",
4696
+ "command": "buildchain dev authority heartbeat-landing"
4697
+ },
4698
+ {
4699
+ "id": "dev",
4700
+ "path": "docs/dev-delivery-warrant.md",
4701
+ "command": "buildchain dev authority recover"
4702
+ },
4703
+ {
4704
+ "id": "dev",
4705
+ "path": "docs/dev-delivery-warrant.md",
4706
+ "command": "buildchain dev authority admit-merge-group"
4707
+ },
4708
+ {
4709
+ "id": "dev",
4710
+ "path": "docs/dev-delivery-warrant.md",
4711
+ "command": "buildchain dev warrant"
4712
+ },
4353
4713
  {
4354
4714
  "id": "dev",
4355
4715
  "path": "docs/release-governance.md",
@@ -8056,9 +8416,9 @@
8056
8416
  "cliRegistryPath": "dist/site/cli-registry.json",
8057
8417
  "workflowRegistryPath": "dist/site/workflow-registry.json",
8058
8418
  "pageRegistryPath": "dist/site/page-registry.json",
8059
- "cliRegistryDigest": "031027fdd7688220deb52bfae928be562fa5509bf4a4f5e692ab2a949971d15a",
8060
- "workflowRegistryDigest": "b56e58e414eb2eebeb9a7331e8a1ea1ed890b778b6dacea1d71a77fbf7e014e1",
8061
- "pageRegistryDigest": "d56b274a2aae61918cb1afbc6d59569a4022801a9f0169c4393128b18e74b9a1"
8419
+ "cliRegistryDigest": "3632f0332f9c0e270a522a4af358482833974757d77ac40a2d7e2efe6a56cb28",
8420
+ "workflowRegistryDigest": "f2c315d3df35fc3067cb98f626dfae8b5f4f400a6ce1d39a62e724072f52ae18",
8421
+ "pageRegistryDigest": "d25d802e1298cc2867ea8c3b3fc4b483fc41cfe76084022c762c121f58a6b978"
8062
8422
  },
8063
8423
  "comparison": {
8064
8424
  "missingCliRegistry": [],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-publication-release-registry",
4
- "generatedAt": "2026-08-15T11:38:16.137Z",
5
- "publishedAt": "2026-08-15T11:38:16.137Z",
4
+ "generatedAt": "2026-08-15T19:57:44.433Z",
5
+ "publishedAt": "2026-08-15T19:57:44.433Z",
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": "8c8a952f024c32f8961c05dd59238a29ed361e72",
22
+ "sourceRevision": "cfc0256de1826e0e0ec4a4e55644c869f3286f91",
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": "4.0.1-alpha.2",
35
+ "version": "4.0.1-alpha.3",
36
36
  "versionSource": "package.json#version"
37
37
  },
38
38
  "sourceKind": "package-site-bundle",
@@ -25,6 +25,7 @@
25
25
  "./cache-evidence": "./packages/core/cache-evidence.js",
26
26
  "./controller-evidence": "./packages/core/controller-evidence.js",
27
27
  "./diagnostics": "./packages/core/diagnostics.js",
28
+ "./dev-delivery-authority": "./packages/core/dev-delivery-authority-landing.js",
28
29
  "./dev-delivery-warrant": "./packages/core/dev-delivery-warrant.js",
29
30
  "./homebrew": "./packages/core/homebrew.js",
30
31
  "./issue-reporting": "./packages/core/issue-reporting.js",
@@ -87,6 +88,7 @@
87
88
  "./site/schemas/kfd-agent-hub-adoption.schema.json": "./dist/site/schemas/kfd-agent-hub-adoption.schema.json",
88
89
  "./site/schemas/kfd-product-gate-input-v1.schema.json": "./dist/site/schemas/kfd-product-gate-input-v1.schema.json",
89
90
  "./site/schemas/kfd-support-projection-v1.schema.json": "./dist/site/schemas/kfd-support-projection-v1.schema.json",
91
+ "./site/schemas/dev-delivery-authority-v2.schema.json": "./dist/site/schemas/dev-delivery-authority-v2.schema.json",
90
92
  "./site/buildchain-contract.json": "./dist/site/buildchain-contract.json",
91
93
  "./site/product-mechanism.json": "./dist/site/product-mechanism.json",
92
94
  "./site/release-provenance.json": "./dist/site/release-provenance.json",