@kungfu-tech/buildchain 3.0.6 → 3.0.7-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 (64) hide show
  1. package/README.md +4 -2
  2. package/actions/release-tail/README.md +17 -0
  3. package/bin/buildchain.mjs +11 -0
  4. package/bin/internal/command-registry.mjs +2 -0
  5. package/contracts/fixtures/release-tail-capabilities-v1/kungfu-alpha.json +273 -0
  6. package/contracts/publication-rehearsal-capsule-v1.schema.json +173 -0
  7. package/contracts/release-tail-capabilities-v1.schema.json +199 -0
  8. package/contracts/release-tail-provider-bindings-v1.schema.json +56 -0
  9. package/dist/site/agent-index.json +3 -0
  10. package/dist/site/artifact-schemas.json +6 -0
  11. package/dist/site/buildchain-contract.json +35 -20
  12. package/dist/site/buildchain-site.json +307 -17
  13. package/dist/site/capability-registry.json +12 -9
  14. package/dist/site/cli-registry.json +102 -0
  15. package/dist/site/controller-registry.json +14 -2
  16. package/dist/site/kfd-claims.json +247 -16
  17. package/dist/site/kfd-upstream-aggregate.json +1 -1
  18. package/dist/site/manual-registry.json +48 -3
  19. package/dist/site/node-api-registry.json +3108 -1409
  20. package/dist/site/page-registry.json +275 -9
  21. package/dist/site/public-surface-audit.json +304 -15
  22. package/dist/site/publication-authority-registry.json +26 -1
  23. package/dist/site/publication-registry.json +4 -4
  24. package/dist/site/release-provenance.json +5 -0
  25. package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +269 -0
  26. package/dist/site/schemas/release-tail-capabilities-v1.schema.json +353 -0
  27. package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +94 -0
  28. package/dist/site/site-manifest.json +31 -7
  29. package/dist/site/workflow-registry.json +86 -9
  30. package/docs/MAP.md +5 -2
  31. package/docs/cli-reference.md +136 -0
  32. package/docs/node-api-reference.md +233 -84
  33. package/docs/publication-rehearsal.md +94 -0
  34. package/docs/release-tail-contract.md +160 -0
  35. package/docs/release-tail-provider-plane.md +120 -0
  36. package/package.json +8 -3
  37. package/packages/core/buildchain-agent-manuals.js +3 -0
  38. package/packages/core/buildchain-kfd-claims.js +1 -1
  39. package/packages/core/buildchain-publication-authority.js +1 -0
  40. package/packages/core/index.js +39 -0
  41. package/packages/core/paper-agent-entry.js +11 -5
  42. package/packages/core/paper-repository.js +1 -0
  43. package/packages/core/paper-scaffold-content.js +21 -0
  44. package/packages/core/paper.js +28 -2
  45. package/packages/core/publication-rehearsal-projection.js +173 -0
  46. package/packages/core/publication-rehearsal-runtime.js +909 -0
  47. package/packages/core/release-tail-compatibility.js +60 -0
  48. package/packages/core/release-tail-provider-adapters.js +461 -0
  49. package/packages/core/release-tail-provider-plane.js +1228 -0
  50. package/scripts/assemble-publication-artifact-admission.mjs +1 -1
  51. package/scripts/assemble-self-publication-admission.mjs +1 -1
  52. package/scripts/buildchain-cli-help.mjs +13 -0
  53. package/scripts/check-core-mechanism-inventory.mjs +347 -0
  54. package/scripts/check-inventory.mjs +8 -8
  55. package/scripts/check-maintainability.mjs +9 -2
  56. package/scripts/check-release-tail-contract.mjs +435 -0
  57. package/scripts/generate-channel-promotion-workflow.mjs +10 -8
  58. package/scripts/generate-site-bundle.mjs +24 -0
  59. package/scripts/init-repo.mjs +26 -2
  60. package/scripts/materialize-self-release-candidate-version.mjs +131 -0
  61. package/scripts/release-tail.mjs +159 -0
  62. package/scripts/site-capability-metadata.mjs +11 -0
  63. package/scripts/v4-architecture.mjs +600 -0
  64. package/scripts/workflow-call-contract.mjs +184 -5
@@ -3,15 +3,20 @@
3
3
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
4
4
  "status": "passed",
5
5
  "summary": {
6
- "cliCommandCount": 112,
7
- "workflowCount": 64,
8
- "actionCount": 6,
9
- "sitePageCount": 65,
10
- "docCommandRefCount": 881,
6
+ "cliCommandCount": 114,
7
+ "workflowCount": 65,
8
+ "actionCount": 7,
9
+ "sitePageCount": 69,
10
+ "docCommandRefCount": 922,
11
11
  "failureCount": 0
12
12
  },
13
13
  "enumerated": {
14
14
  "cliCommands": [
15
+ {
16
+ "id": "architecture",
17
+ "source": "bin/buildchain.mjs",
18
+ "usage": "buildchain architecture validate [--cwd <dir>] [--json]"
19
+ },
15
20
  {
16
21
  "id": "audit",
17
22
  "source": "bin/buildchain.mjs",
@@ -492,6 +497,11 @@
492
497
  "source": "bin/buildchain.mjs",
493
498
  "usage": "buildchain release-propagation <plan|write-lock|work|entry|pickup> ..."
494
499
  },
500
+ {
501
+ "id": "release-tail",
502
+ "source": "bin/buildchain.mjs",
503
+ "usage": "buildchain release-tail plan --declaration <json-or-path> [--output <path>]"
504
+ },
495
505
  {
496
506
  "id": "release-transaction",
497
507
  "source": "bin/buildchain.mjs",
@@ -968,6 +978,7 @@
968
978
  "buildchain-ref",
969
979
  "buildchain-repository",
970
980
  "channel",
981
+ "declarative-release-tail",
971
982
  "dry-run",
972
983
  "github-artifact-attestation-environment",
973
984
  "github-artifact-attestation-policy-json",
@@ -990,12 +1001,14 @@
990
1001
  "promotion-shell-sha",
991
1002
  "promotion-target-ref",
992
1003
  "publication-admission-json",
1004
+ "publication-authority-workflow-path",
993
1005
  "publication-auto-admission",
994
1006
  "publication-auto-no-gate",
995
1007
  "publication-commit-command",
996
1008
  "publication-commit-evidence-path",
997
1009
  "publication-consumer-predicate-id",
998
1010
  "publication-consumer-qualification-command",
1011
+ "publication-consumer-qualification-controller-sha",
999
1012
  "publication-control-plane-audit-json",
1000
1013
  "publication-expected-json",
1001
1014
  "publication-gate-aggregate-json",
@@ -1064,7 +1077,7 @@
1064
1077
  "target-sha",
1065
1078
  "trusted-publishing"
1066
1079
  ],
1067
- "inputCount": 107,
1080
+ "inputCount": 110,
1068
1081
  "secrets": [
1069
1082
  "BUILDCHAIN_ISSUE_APP_ID",
1070
1083
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -1101,9 +1114,14 @@
1101
1114
  "release-candidate-artifact",
1102
1115
  "release-candidate-recovery-receipt-artifact",
1103
1116
  "release-candidate-recovery-root",
1104
- "release-propagation-work-artifact"
1117
+ "release-propagation-work-artifact",
1118
+ "release-tail-declaration-root",
1119
+ "release-tail-receipt-roots-json",
1120
+ "release-tail-state-root",
1121
+ "release-tail-transaction-root",
1122
+ "release-tail-transaction-state"
1105
1123
  ],
1106
- "outputCount": 23
1124
+ "outputCount": 28
1107
1125
  },
1108
1126
  {
1109
1127
  "id": ".release-docker",
@@ -2402,6 +2420,7 @@
2402
2420
  "buildchain-repository",
2403
2421
  "buildchain-stable-contract-lock-path",
2404
2422
  "channel",
2423
+ "declarative-release-tail",
2405
2424
  "dry-run",
2406
2425
  "github-artifact-attestation-environment",
2407
2426
  "github-artifact-attestation-policy-json",
@@ -2419,6 +2438,7 @@
2419
2438
  "publication-commit-evidence-path",
2420
2439
  "publication-consumer-predicate-id",
2421
2440
  "publication-consumer-qualification-command",
2441
+ "publication-consumer-qualification-controller-sha",
2422
2442
  "publication-control-plane-audit-json",
2423
2443
  "publication-expected-json",
2424
2444
  "publication-gate-aggregate-json",
@@ -2487,7 +2507,7 @@
2487
2507
  "target-sha",
2488
2508
  "trusted-publishing"
2489
2509
  ],
2490
- "inputCount": 99,
2510
+ "inputCount": 101,
2491
2511
  "secrets": [
2492
2512
  "BUILDCHAIN_ISSUE_APP_ID",
2493
2513
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -2536,9 +2556,14 @@
2536
2556
  "release-candidate-artifact",
2537
2557
  "release-candidate-recovery-receipt-artifact",
2538
2558
  "release-candidate-recovery-root",
2539
- "release-propagation-work-artifact"
2559
+ "release-propagation-work-artifact",
2560
+ "release-tail-declaration-root",
2561
+ "release-tail-receipt-roots-json",
2562
+ "release-tail-state-root",
2563
+ "release-tail-transaction-root",
2564
+ "release-tail-transaction-state"
2540
2565
  ],
2541
- "outputCount": 35
2566
+ "outputCount": 40
2542
2567
  },
2543
2568
  {
2544
2569
  "id": "release-governance-reconcile",
@@ -2628,6 +2653,32 @@
2628
2653
  ],
2629
2654
  "outputCount": 13
2630
2655
  },
2656
+ {
2657
+ "id": "release-tail",
2658
+ "path": ".github/workflows/release-tail.yml",
2659
+ "reusable": true,
2660
+ "inputs": [
2661
+ "buildchain-ref",
2662
+ "capsule-contract",
2663
+ "capsule-path",
2664
+ "capsule-root",
2665
+ "evidence-path",
2666
+ "state-path"
2667
+ ],
2668
+ "inputCount": 6,
2669
+ "secrets": [
2670
+ "http-token"
2671
+ ],
2672
+ "secretCount": 1,
2673
+ "outputs": [
2674
+ "binding-root",
2675
+ "evidence-root",
2676
+ "state-root",
2677
+ "transaction-root",
2678
+ "transaction-state"
2679
+ ],
2680
+ "outputCount": 5
2681
+ },
2631
2682
  {
2632
2683
  "id": "release-verify",
2633
2684
  "path": ".github/workflows/release-verify.yml",
@@ -2768,6 +2819,7 @@
2768
2819
  "branch-protection-bypass-apps",
2769
2820
  "branch-protection-bypass-teams",
2770
2821
  "branch-protection-bypass-users",
2822
+ "declarative-release-tail",
2771
2823
  "dry-run",
2772
2824
  "expected-publication-version",
2773
2825
  "generated-pull-request-token",
@@ -2777,6 +2829,7 @@
2777
2829
  "github-release-artifact-paths",
2778
2830
  "github-release-notes",
2779
2831
  "github-release-title",
2832
+ "plan-before-target-advance",
2780
2833
  "promote-only-release-candidate",
2781
2834
  "publication-capability-json",
2782
2835
  "publication-gate-aggregate-json",
@@ -2829,6 +2882,7 @@
2829
2882
  "release-passport-platform-manifest-paths",
2830
2883
  "release-passport-product-name",
2831
2884
  "release-passport-promotion-routing-json",
2885
+ "release-tail-state-path",
2832
2886
  "require-governance",
2833
2887
  "require-publication-qualification",
2834
2888
  "require-publish-source-lock",
@@ -2841,7 +2895,21 @@
2841
2895
  "transaction-state-path",
2842
2896
  "verification-command"
2843
2897
  ],
2844
- "inputCount": 76
2898
+ "inputCount": 79
2899
+ },
2900
+ {
2901
+ "id": "release-tail",
2902
+ "path": "actions/release-tail/action.yml",
2903
+ "inputs": [
2904
+ "capsule",
2905
+ "capsule-contract",
2906
+ "capsule-root",
2907
+ "evidence-path",
2908
+ "github-token",
2909
+ "http-token",
2910
+ "state-path"
2911
+ ],
2912
+ "inputCount": 7
2845
2913
  },
2846
2914
  {
2847
2915
  "id": "report-buildchain-issue",
@@ -2946,6 +3014,10 @@
2946
3014
  "id": "action:promote-buildchain-ref",
2947
3015
  "category": "action"
2948
3016
  },
3017
+ {
3018
+ "id": "action:release-tail",
3019
+ "category": "action"
3020
+ },
2949
3021
  {
2950
3022
  "id": "action:report-buildchain-issue",
2951
3023
  "category": "action"
@@ -3126,6 +3198,10 @@
3126
3198
  "id": "manual:publication-authority",
3127
3199
  "category": "manual"
3128
3200
  },
3201
+ {
3202
+ "id": "manual:publication-rehearsal",
3203
+ "category": "manual"
3204
+ },
3129
3205
  {
3130
3206
  "id": "manual:publish-transaction",
3131
3207
  "category": "manual"
@@ -3158,6 +3234,14 @@
3158
3234
  "id": "manual:release-propagation",
3159
3235
  "category": "manual"
3160
3236
  },
3237
+ {
3238
+ "id": "manual:release-tail-contract",
3239
+ "category": "manual"
3240
+ },
3241
+ {
3242
+ "id": "manual:release-tail-provider-plane",
3243
+ "category": "manual"
3244
+ },
3161
3245
  {
3162
3246
  "id": "manual:reusable-build-surface",
3163
3247
  "category": "manual"
@@ -3196,6 +3280,81 @@
3196
3280
  }
3197
3281
  ],
3198
3282
  "docCommandRefs": [
3283
+ {
3284
+ "id": "architecture",
3285
+ "path": "docs/cli-reference.md",
3286
+ "command": "buildchain architecture"
3287
+ },
3288
+ {
3289
+ "id": "architecture",
3290
+ "path": "docs/cli-reference.md",
3291
+ "command": "buildchain architecture list"
3292
+ },
3293
+ {
3294
+ "id": "architecture",
3295
+ "path": "docs/cli-reference.md",
3296
+ "command": "buildchain architecture qualify --authority-revision"
3297
+ },
3298
+ {
3299
+ "id": "architecture",
3300
+ "path": "docs/cli-reference.md",
3301
+ "command": "buildchain architecture show"
3302
+ },
3303
+ {
3304
+ "id": "architecture",
3305
+ "path": "docs/cli-reference.md",
3306
+ "command": "buildchain architecture validate"
3307
+ },
3308
+ {
3309
+ "id": "architecture",
3310
+ "path": "docs/cli-reference.md",
3311
+ "command": "buildchain architecture"
3312
+ },
3313
+ {
3314
+ "id": "architecture",
3315
+ "path": "docs/cli-reference.md",
3316
+ "command": "buildchain architecture --help"
3317
+ },
3318
+ {
3319
+ "id": "architecture",
3320
+ "path": "docs/cli-reference.md",
3321
+ "command": "buildchain architecture list"
3322
+ },
3323
+ {
3324
+ "id": "architecture",
3325
+ "path": "docs/cli-reference.md",
3326
+ "command": "buildchain architecture list --help"
3327
+ },
3328
+ {
3329
+ "id": "architecture",
3330
+ "path": "docs/cli-reference.md",
3331
+ "command": "buildchain architecture qualify"
3332
+ },
3333
+ {
3334
+ "id": "architecture",
3335
+ "path": "docs/cli-reference.md",
3336
+ "command": "buildchain architecture qualify --help"
3337
+ },
3338
+ {
3339
+ "id": "architecture",
3340
+ "path": "docs/cli-reference.md",
3341
+ "command": "buildchain architecture show"
3342
+ },
3343
+ {
3344
+ "id": "architecture",
3345
+ "path": "docs/cli-reference.md",
3346
+ "command": "buildchain architecture show --help"
3347
+ },
3348
+ {
3349
+ "id": "architecture",
3350
+ "path": "docs/cli-reference.md",
3351
+ "command": "buildchain architecture validate"
3352
+ },
3353
+ {
3354
+ "id": "architecture",
3355
+ "path": "docs/cli-reference.md",
3356
+ "command": "buildchain architecture validate --help"
3357
+ },
3199
3358
  {
3200
3359
  "id": "audit",
3201
3360
  "path": "docs/cli-reference.md",
@@ -6966,6 +7125,136 @@
6966
7125
  "path": "docs/release-propagation.md",
6967
7126
  "command": "buildchain release-propagation work push-branch"
6968
7127
  },
7128
+ {
7129
+ "id": "release-tail",
7130
+ "path": "docs/cli-reference.md",
7131
+ "command": "buildchain release-tail"
7132
+ },
7133
+ {
7134
+ "id": "release-tail",
7135
+ "path": "docs/cli-reference.md",
7136
+ "command": "buildchain release-tail compat --hooks-json"
7137
+ },
7138
+ {
7139
+ "id": "release-tail",
7140
+ "path": "docs/cli-reference.md",
7141
+ "command": "buildchain release-tail init --declaration"
7142
+ },
7143
+ {
7144
+ "id": "release-tail",
7145
+ "path": "docs/cli-reference.md",
7146
+ "command": "buildchain release-tail plan --declaration"
7147
+ },
7148
+ {
7149
+ "id": "release-tail",
7150
+ "path": "docs/cli-reference.md",
7151
+ "command": "buildchain release-tail rehearse --capsule"
7152
+ },
7153
+ {
7154
+ "id": "release-tail",
7155
+ "path": "docs/cli-reference.md",
7156
+ "command": "buildchain release-tail"
7157
+ },
7158
+ {
7159
+ "id": "release-tail",
7160
+ "path": "docs/cli-reference.md",
7161
+ "command": "buildchain release-tail"
7162
+ },
7163
+ {
7164
+ "id": "release-tail",
7165
+ "path": "docs/cli-reference.md",
7166
+ "command": "buildchain release-tail"
7167
+ },
7168
+ {
7169
+ "id": "release-tail",
7170
+ "path": "docs/cli-reference.md",
7171
+ "command": "buildchain release-tail --help"
7172
+ },
7173
+ {
7174
+ "id": "release-tail",
7175
+ "path": "docs/cli-reference.md",
7176
+ "command": "buildchain release-tail compat"
7177
+ },
7178
+ {
7179
+ "id": "release-tail",
7180
+ "path": "docs/cli-reference.md",
7181
+ "command": "buildchain release-tail compat --help"
7182
+ },
7183
+ {
7184
+ "id": "release-tail",
7185
+ "path": "docs/cli-reference.md",
7186
+ "command": "buildchain release-tail init"
7187
+ },
7188
+ {
7189
+ "id": "release-tail",
7190
+ "path": "docs/cli-reference.md",
7191
+ "command": "buildchain release-tail init --help"
7192
+ },
7193
+ {
7194
+ "id": "release-tail",
7195
+ "path": "docs/cli-reference.md",
7196
+ "command": "buildchain release-tail plan"
7197
+ },
7198
+ {
7199
+ "id": "release-tail",
7200
+ "path": "docs/cli-reference.md",
7201
+ "command": "buildchain release-tail plan --help"
7202
+ },
7203
+ {
7204
+ "id": "release-tail",
7205
+ "path": "docs/cli-reference.md",
7206
+ "command": "buildchain release-tail rehearse"
7207
+ },
7208
+ {
7209
+ "id": "release-tail",
7210
+ "path": "docs/cli-reference.md",
7211
+ "command": "buildchain release-tail rehearse --help"
7212
+ },
7213
+ {
7214
+ "id": "release-tail",
7215
+ "path": "docs/cli-reference.md",
7216
+ "command": "buildchain release-tail status"
7217
+ },
7218
+ {
7219
+ "id": "release-tail",
7220
+ "path": "docs/cli-reference.md",
7221
+ "command": "buildchain release-tail status --help"
7222
+ },
7223
+ {
7224
+ "id": "release-tail",
7225
+ "path": "docs/cli-reference.md",
7226
+ "command": "buildchain release-tail verify"
7227
+ },
7228
+ {
7229
+ "id": "release-tail",
7230
+ "path": "docs/cli-reference.md",
7231
+ "command": "buildchain release-tail verify --help"
7232
+ },
7233
+ {
7234
+ "id": "release-tail",
7235
+ "path": "docs/publication-rehearsal.md",
7236
+ "command": "buildchain release-tail rehearse"
7237
+ },
7238
+ {
7239
+ "id": "release-tail",
7240
+ "path": "docs/release-tail-provider-plane.md",
7241
+ "command": "buildchain release-tail plan --declaration"
7242
+ },
7243
+ {
7244
+ "id": "release-tail",
7245
+ "path": "docs/release-tail-provider-plane.md",
7246
+ "command": "buildchain release-tail init --declaration"
7247
+ },
7248
+ {
7249
+ "id": "release-tail",
7250
+ "path": "docs/release-tail-provider-plane.md",
7251
+ "command": "buildchain release-tail verify --state"
7252
+ },
7253
+ {
7254
+ "id": "release-tail",
7255
+ "path": "docs/release-tail-provider-plane.md",
7256
+ "command": "buildchain release-tail plan"
7257
+ },
6969
7258
  {
6970
7259
  "id": "release-transaction",
6971
7260
  "path": "docs/cli-reference.md",
@@ -7607,9 +7896,9 @@
7607
7896
  "cliRegistryPath": "dist/site/cli-registry.json",
7608
7897
  "workflowRegistryPath": "dist/site/workflow-registry.json",
7609
7898
  "pageRegistryPath": "dist/site/page-registry.json",
7610
- "cliRegistryDigest": "2e7804e1fa8ef08bbe59fcf58908e47daef4dc145675fc9a989862671e40f993",
7611
- "workflowRegistryDigest": "20c6b31e754f9f0ffb15362bd1b646376e9cf2698951d5f502a5bafcdfd523e7",
7612
- "pageRegistryDigest": "50489f303fc5343c6c13ed307f0f7d008fa8deee7f32dd8ff701d47775b210df"
7899
+ "cliRegistryDigest": "e7b90e95dabcffb3fecb8e84cec48d7a99261c5e90732aff0ebc174b01c4e35c",
7900
+ "workflowRegistryDigest": "47cfb7dbfcdc13f9830c3bc10457cb4c794c4953a584afcf6996b94ed0a6adba",
7901
+ "pageRegistryDigest": "f9d958e6261b25997c2c65c24f3cea8e846ef55091dfa1dbf39a69c6786a30c7"
7613
7902
  },
7614
7903
  "comparison": {
7615
7904
  "missingCliRegistry": [],
@@ -623,6 +623,24 @@
623
623
  "runnerPolicy": "unqualified",
624
624
  "notes": ""
625
625
  },
626
+ {
627
+ "workflowPath": ".github/workflows/release-tail.yml",
628
+ "authorityClass": "product-publication",
629
+ "publicationCapable": true,
630
+ "capabilityIds": [
631
+ "artifact.publish",
632
+ "release.activate",
633
+ "released-evidence.synthesize",
634
+ "signed-channel.commit"
635
+ ],
636
+ "credentialMode": "caller-secrets",
637
+ "publisherWorkflowMode": "fixed",
638
+ "publisherWorkflowPath": ".github/workflows/release-tail.yml",
639
+ "environment": "caller-bound",
640
+ "environmentMode": "caller-bound",
641
+ "runnerPolicy": "qualified-measured",
642
+ "notes": ""
643
+ },
626
644
  {
627
645
  "workflowPath": ".github/workflows/release-verify.yml",
628
646
  "authorityClass": "governance-write",
@@ -1054,6 +1072,13 @@
1054
1072
  ],
1055
1073
  "classified": true
1056
1074
  },
1075
+ {
1076
+ "path": ".github/workflows/release-tail.yml",
1077
+ "signals": [
1078
+ "write-permission"
1079
+ ],
1080
+ "classified": true
1081
+ },
1057
1082
  {
1058
1083
  "path": ".github/workflows/release-verify.yml",
1059
1084
  "signals": [
@@ -1084,5 +1109,5 @@
1084
1109
  "classified": false
1085
1110
  }
1086
1111
  ],
1087
- "registryDigest": "fd4b5def78f58e64badfd6d9d4cce801cab3c15ae81aa89357ef02d15f7ad99d"
1112
+ "registryDigest": "1600e39eb978298c3204b3250c479f8451dfe62f552405c7db2ad2142cd93f63"
1088
1113
  }
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
3
  "contract": "kungfu-buildchain-publication-release-registry",
4
- "generatedAt": "2026-08-07T01:27:51.160Z",
5
- "publishedAt": "2026-08-07T01:27:51.160Z",
4
+ "generatedAt": "2026-08-07T20:20:23.000Z",
5
+ "publishedAt": "2026-08-07T20:20:23.000Z",
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": "4d3415855debb03bac01c4f5d11417f0d1ea42d8",
22
+ "sourceRevision": "f1f1ef71bc3aa1488876dbb98533fa98cecc4d9a",
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.6",
35
+ "version": "3.0.7-alpha.0",
36
36
  "versionSource": "package.json#version"
37
37
  },
38
38
  "sourceKind": "package-site-bundle",
@@ -54,6 +54,11 @@
54
54
  "./release-passport-contract": "./packages/core/release-passport-contract.js",
55
55
  "./release-propagation": "./packages/core/release-propagation.js",
56
56
  "./release-activation-transaction": "./packages/core/release-activation-transaction.js",
57
+ "./release-tail-provider-plane": "./packages/core/release-tail-provider-plane.js",
58
+ "./release-tail-provider-adapters": "./packages/core/release-tail-provider-adapters.js",
59
+ "./release-tail-compatibility": "./packages/core/release-tail-compatibility.js",
60
+ "./publication-rehearsal-runtime": "./packages/core/publication-rehearsal-runtime.js",
61
+ "./publication-rehearsal-projection": "./packages/core/publication-rehearsal-projection.js",
57
62
  "./surface-manifest": "./packages/core/surface-manifest.js",
58
63
  "./buildchain-kfd-claims": "./packages/core/buildchain-kfd-claims.js",
59
64
  "./site/buildchain-site.json": "./dist/site/buildchain-site.json",