@kungfu-tech/buildchain 3.0.6 → 3.0.7-alpha.1

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 (103) hide show
  1. package/README.md +4 -2
  2. package/actions/promote-buildchain-ref/README.md +10 -0
  3. package/actions/release-tail/README.md +17 -0
  4. package/bin/buildchain.mjs +11 -0
  5. package/bin/internal/command-registry.mjs +2 -0
  6. package/contracts/auditable-demo-scenario-v1.schema.json +1 -1
  7. package/contracts/engineering-housekeeper-v1.schema.json +143 -0
  8. package/contracts/fixtures/engineering-housekeeper-v1/cases.json +68 -0
  9. package/contracts/fixtures/release-tail-capabilities-v1/kungfu-alpha.json +273 -0
  10. package/contracts/publication-rehearsal-capsule-v1.schema.json +173 -0
  11. package/contracts/release-tail-capabilities-v1.schema.json +199 -0
  12. package/contracts/release-tail-provider-bindings-v1.schema.json +56 -0
  13. package/dist/site/agent-index.json +3 -0
  14. package/dist/site/artifact-schemas.json +6 -0
  15. package/dist/site/buildchain-contract.json +42 -27
  16. package/dist/site/buildchain-site.json +384 -33
  17. package/dist/site/capability-registry.json +15 -12
  18. package/dist/site/cli-registry.json +102 -0
  19. package/dist/site/controller-registry.json +19 -3
  20. package/dist/site/kfd-claims.json +359 -17
  21. package/dist/site/kfd-upstream-aggregate.json +1 -1
  22. package/dist/site/manual-registry.json +53 -7
  23. package/dist/site/node-api-registry.json +5882 -3605
  24. package/dist/site/page-registry.json +348 -21
  25. package/dist/site/public-surface-audit.json +396 -16
  26. package/dist/site/publication-authority-registry.json +106 -1
  27. package/dist/site/publication-registry.json +4 -4
  28. package/dist/site/release-provenance.json +7 -0
  29. package/dist/site/schemas/publication-rehearsal-capsule-v1.schema.json +269 -0
  30. package/dist/site/schemas/release-tail-capabilities-v1.schema.json +353 -0
  31. package/dist/site/schemas/release-tail-provider-bindings-v1.schema.json +94 -0
  32. package/dist/site/site-manifest.json +35 -11
  33. package/dist/site/workflow-registry.json +204 -10
  34. package/docs/MAP.md +6 -2
  35. package/docs/auditable-demo.md +2 -2
  36. package/docs/cli-reference.md +136 -0
  37. package/docs/dev-delivery-warrant.md +49 -4
  38. package/docs/engineering-housekeeper.md +138 -0
  39. package/docs/lifecycle-protocol.md +4 -2
  40. package/docs/node-api-reference.md +495 -281
  41. package/docs/publication-rehearsal.md +94 -0
  42. package/docs/release-governance.md +17 -2
  43. package/docs/release-tail-contract.md +160 -0
  44. package/docs/release-tail-provider-plane.md +120 -0
  45. package/docs/reusable-build-surface.md +11 -0
  46. package/package.json +11 -3
  47. package/packages/core/artifact-signing.js +61 -0
  48. package/packages/core/buildchain-agent-manuals.js +3 -0
  49. package/packages/core/buildchain-config.js +66 -6
  50. package/packages/core/buildchain-kfd-claims.js +1 -1
  51. package/packages/core/buildchain-publication-authority.js +5 -0
  52. package/packages/core/controller-evidence.js +2 -1
  53. package/packages/core/dev-delivery-warrant-cancellation.js +1 -0
  54. package/packages/core/dev-delivery-warrant-shadow.js +502 -0
  55. package/packages/core/dev-delivery-warrant.js +15 -6
  56. package/packages/core/diagnostics.js +8 -3
  57. package/packages/core/engineering-housekeeper-github-client.js +222 -0
  58. package/packages/core/engineering-housekeeper-github.js +501 -0
  59. package/packages/core/engineering-housekeeper.js +259 -0
  60. package/packages/core/index.js +42 -0
  61. package/packages/core/kfd-gate.js +45 -15
  62. package/packages/core/paper-agent-entry.js +11 -5
  63. package/packages/core/paper-repository.js +1 -0
  64. package/packages/core/paper-scaffold-content.js +21 -0
  65. package/packages/core/paper.js +28 -2
  66. package/packages/core/publication-rehearsal-projection.js +173 -0
  67. package/packages/core/publication-rehearsal-runtime.js +921 -0
  68. package/packages/core/release-passport.js +130 -20
  69. package/packages/core/release-tail-compatibility.js +60 -0
  70. package/packages/core/release-tail-provider-adapters.js +461 -0
  71. package/packages/core/release-tail-provider-plane.js +1228 -0
  72. package/scripts/assemble-publication-artifact-admission.mjs +1 -1
  73. package/scripts/assemble-self-publication-admission.mjs +2 -2
  74. package/scripts/audit-publication-control-plane.mjs +1 -1
  75. package/scripts/auditable-demo-bundle-verification.mjs +2 -3
  76. package/scripts/auditable-demo-platform.mjs +2 -2
  77. package/scripts/auditable-demo-renditions.mjs +1 -1
  78. package/scripts/auditable-demo.mjs +2 -2
  79. package/scripts/build-contract-core.mjs +8 -3
  80. package/scripts/build-standalone-binary.mjs +14 -3
  81. package/scripts/buildchain-cli-help.mjs +13 -0
  82. package/scripts/check-core-mechanism-inventory.mjs +347 -0
  83. package/scripts/check-inventory.mjs +10 -8
  84. package/scripts/check-maintainability.mjs +9 -2
  85. package/scripts/check-release-tail-contract.mjs +435 -0
  86. package/scripts/dev-delivery-warrant.mjs +31 -4
  87. package/scripts/dev-pr-auto-merge.mjs +30 -4
  88. package/scripts/dev-pr-delivery-warrant.mjs +50 -0
  89. package/scripts/engineering-housekeeper-workflow.mjs +394 -0
  90. package/scripts/generate-channel-promotion-workflow.mjs +10 -8
  91. package/scripts/generate-site-bundle.mjs +47 -4
  92. package/scripts/init-repo.mjs +26 -2
  93. package/scripts/inspect-artifact-signing-requests.mjs +6 -0
  94. package/scripts/materialize-self-release-candidate-version.mjs +137 -0
  95. package/scripts/publication-commit-evidence.mjs +69 -23
  96. package/scripts/release-candidate-resolver.mjs +16 -10
  97. package/scripts/release-tail.mjs +159 -0
  98. package/scripts/resume-from-candidate-run.mjs +123 -9
  99. package/scripts/seal-artifact-signing-requests.mjs +6 -0
  100. package/scripts/site-capability-metadata.mjs +13 -0
  101. package/scripts/v4-architecture.mjs +600 -0
  102. package/scripts/web-surface-core.mjs +8 -2
  103. 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": 69,
8
+ "actionCount": 7,
9
+ "sitePageCount": 70,
10
+ "docCommandRefCount": 924,
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",
@@ -1970,6 +1988,7 @@
1970
1988
  "path": ".github/workflows/dev-pr-auto-merge.yml",
1971
1989
  "reusable": true,
1972
1990
  "inputs": [
1991
+ "active-lease-context",
1973
1992
  "affected-paths-json",
1974
1993
  "allowed-head-prefixes",
1975
1994
  "assignment-root",
@@ -1985,6 +2004,7 @@
1985
2004
  "dry-run",
1986
2005
  "expected-head-sha",
1987
2006
  "expected-pr-number",
2007
+ "handoff-workflow-id",
1988
2008
  "initiative-root",
1989
2009
  "landing-mode",
1990
2010
  "max-merges",
@@ -1999,11 +2019,13 @@
1999
2019
  "shard-evidence-roots-json",
2000
2020
  "source-identity-root",
2001
2021
  "source-patch-root",
2022
+ "source-workflow-id",
2023
+ "source-workflow-run-id",
2002
2024
  "target-branch",
2003
2025
  "toolchain-root",
2004
2026
  "warrant-lease-seconds"
2005
2027
  ],
2006
- "inputCount": 32,
2028
+ "inputCount": 36,
2007
2029
  "secrets": [
2008
2030
  "github-token"
2009
2031
  ],
@@ -2057,6 +2079,78 @@
2057
2079
  ],
2058
2080
  "outputCount": 7
2059
2081
  },
2082
+ {
2083
+ "id": "engineering-housekeeper-daily",
2084
+ "path": ".github/workflows/engineering-housekeeper-daily.yml",
2085
+ "reusable": false,
2086
+ "inputs": [],
2087
+ "inputCount": 0,
2088
+ "secrets": [],
2089
+ "secretCount": 0,
2090
+ "outputs": [],
2091
+ "outputCount": 0
2092
+ },
2093
+ {
2094
+ "id": "engineering-housekeeper-monthly",
2095
+ "path": ".github/workflows/engineering-housekeeper-monthly.yml",
2096
+ "reusable": false,
2097
+ "inputs": [],
2098
+ "inputCount": 0,
2099
+ "secrets": [],
2100
+ "secretCount": 0,
2101
+ "outputs": [],
2102
+ "outputCount": 0
2103
+ },
2104
+ {
2105
+ "id": "engineering-housekeeper-weekly",
2106
+ "path": ".github/workflows/engineering-housekeeper-weekly.yml",
2107
+ "reusable": false,
2108
+ "inputs": [],
2109
+ "inputCount": 0,
2110
+ "secrets": [],
2111
+ "secretCount": 0,
2112
+ "outputs": [],
2113
+ "outputCount": 0
2114
+ },
2115
+ {
2116
+ "id": "engineering-housekeeper",
2117
+ "path": ".github/workflows/engineering-housekeeper.yml",
2118
+ "reusable": true,
2119
+ "inputs": [
2120
+ "apply-enabled",
2121
+ "artifact-prefix",
2122
+ "artifact-retention-days",
2123
+ "buildchain-ref",
2124
+ "buildchain-repository",
2125
+ "max-actions",
2126
+ "mode",
2127
+ "protected-patterns",
2128
+ "repository",
2129
+ "retained-patterns",
2130
+ "stale-days",
2131
+ "stale-pull-request-label",
2132
+ "target-branch"
2133
+ ],
2134
+ "inputCount": 13,
2135
+ "secrets": [
2136
+ "github_app_id",
2137
+ "github_app_private_key",
2138
+ "github_token"
2139
+ ],
2140
+ "secretCount": 3,
2141
+ "outputs": [
2142
+ "action-count",
2143
+ "branch-receipt-root",
2144
+ "outcome",
2145
+ "plan-artifact",
2146
+ "plan-root",
2147
+ "pull-request-receipt-root",
2148
+ "receipt-artifact",
2149
+ "report-artifact",
2150
+ "report-receipt-root"
2151
+ ],
2152
+ "outputCount": 9
2153
+ },
2060
2154
  {
2061
2155
  "id": "github-artifact-attestation",
2062
2156
  "path": ".github/workflows/github-artifact-attestation.yml",
@@ -2402,6 +2496,7 @@
2402
2496
  "buildchain-repository",
2403
2497
  "buildchain-stable-contract-lock-path",
2404
2498
  "channel",
2499
+ "declarative-release-tail",
2405
2500
  "dry-run",
2406
2501
  "github-artifact-attestation-environment",
2407
2502
  "github-artifact-attestation-policy-json",
@@ -2419,6 +2514,7 @@
2419
2514
  "publication-commit-evidence-path",
2420
2515
  "publication-consumer-predicate-id",
2421
2516
  "publication-consumer-qualification-command",
2517
+ "publication-consumer-qualification-controller-sha",
2422
2518
  "publication-control-plane-audit-json",
2423
2519
  "publication-expected-json",
2424
2520
  "publication-gate-aggregate-json",
@@ -2487,7 +2583,7 @@
2487
2583
  "target-sha",
2488
2584
  "trusted-publishing"
2489
2585
  ],
2490
- "inputCount": 99,
2586
+ "inputCount": 101,
2491
2587
  "secrets": [
2492
2588
  "BUILDCHAIN_ISSUE_APP_ID",
2493
2589
  "BUILDCHAIN_ISSUE_APP_PRIVATE_KEY",
@@ -2536,9 +2632,14 @@
2536
2632
  "release-candidate-artifact",
2537
2633
  "release-candidate-recovery-receipt-artifact",
2538
2634
  "release-candidate-recovery-root",
2539
- "release-propagation-work-artifact"
2635
+ "release-propagation-work-artifact",
2636
+ "release-tail-declaration-root",
2637
+ "release-tail-receipt-roots-json",
2638
+ "release-tail-state-root",
2639
+ "release-tail-transaction-root",
2640
+ "release-tail-transaction-state"
2540
2641
  ],
2541
- "outputCount": 35
2642
+ "outputCount": 40
2542
2643
  },
2543
2644
  {
2544
2645
  "id": "release-governance-reconcile",
@@ -2628,6 +2729,32 @@
2628
2729
  ],
2629
2730
  "outputCount": 13
2630
2731
  },
2732
+ {
2733
+ "id": "release-tail",
2734
+ "path": ".github/workflows/release-tail.yml",
2735
+ "reusable": true,
2736
+ "inputs": [
2737
+ "buildchain-ref",
2738
+ "capsule-contract",
2739
+ "capsule-path",
2740
+ "capsule-root",
2741
+ "evidence-path",
2742
+ "state-path"
2743
+ ],
2744
+ "inputCount": 6,
2745
+ "secrets": [
2746
+ "http-token"
2747
+ ],
2748
+ "secretCount": 1,
2749
+ "outputs": [
2750
+ "binding-root",
2751
+ "evidence-root",
2752
+ "state-root",
2753
+ "transaction-root",
2754
+ "transaction-state"
2755
+ ],
2756
+ "outputCount": 5
2757
+ },
2631
2758
  {
2632
2759
  "id": "release-verify",
2633
2760
  "path": ".github/workflows/release-verify.yml",
@@ -2768,6 +2895,7 @@
2768
2895
  "branch-protection-bypass-apps",
2769
2896
  "branch-protection-bypass-teams",
2770
2897
  "branch-protection-bypass-users",
2898
+ "declarative-release-tail",
2771
2899
  "dry-run",
2772
2900
  "expected-publication-version",
2773
2901
  "generated-pull-request-token",
@@ -2777,6 +2905,7 @@
2777
2905
  "github-release-artifact-paths",
2778
2906
  "github-release-notes",
2779
2907
  "github-release-title",
2908
+ "plan-before-target-advance",
2780
2909
  "promote-only-release-candidate",
2781
2910
  "publication-capability-json",
2782
2911
  "publication-gate-aggregate-json",
@@ -2791,6 +2920,7 @@
2791
2920
  "publish-package-set-order",
2792
2921
  "publish-rematerialize-on-resume",
2793
2922
  "publish-required-artifacts-json",
2923
+ "publish-required-artifacts-path",
2794
2924
  "publish-sealed-bundle-manifest",
2795
2925
  "publish-sealed-bundle-root",
2796
2926
  "publish-source-locked",
@@ -2829,6 +2959,7 @@
2829
2959
  "release-passport-platform-manifest-paths",
2830
2960
  "release-passport-product-name",
2831
2961
  "release-passport-promotion-routing-json",
2962
+ "release-tail-state-path",
2832
2963
  "require-governance",
2833
2964
  "require-publication-qualification",
2834
2965
  "require-publish-source-lock",
@@ -2841,7 +2972,21 @@
2841
2972
  "transaction-state-path",
2842
2973
  "verification-command"
2843
2974
  ],
2844
- "inputCount": 76
2975
+ "inputCount": 80
2976
+ },
2977
+ {
2978
+ "id": "release-tail",
2979
+ "path": "actions/release-tail/action.yml",
2980
+ "inputs": [
2981
+ "capsule",
2982
+ "capsule-contract",
2983
+ "capsule-root",
2984
+ "evidence-path",
2985
+ "github-token",
2986
+ "http-token",
2987
+ "state-path"
2988
+ ],
2989
+ "inputCount": 7
2845
2990
  },
2846
2991
  {
2847
2992
  "id": "report-buildchain-issue",
@@ -2946,6 +3091,10 @@
2946
3091
  "id": "action:promote-buildchain-ref",
2947
3092
  "category": "action"
2948
3093
  },
3094
+ {
3095
+ "id": "action:release-tail",
3096
+ "category": "action"
3097
+ },
2949
3098
  {
2950
3099
  "id": "action:report-buildchain-issue",
2951
3100
  "category": "action"
@@ -3058,6 +3207,10 @@
3058
3207
  "id": "manual:dev-qualification-patrol",
3059
3208
  "category": "manual"
3060
3209
  },
3210
+ {
3211
+ "id": "manual:engineering-housekeeper",
3212
+ "category": "manual"
3213
+ },
3061
3214
  {
3062
3215
  "id": "manual:getting-started",
3063
3216
  "category": "manual"
@@ -3126,6 +3279,10 @@
3126
3279
  "id": "manual:publication-authority",
3127
3280
  "category": "manual"
3128
3281
  },
3282
+ {
3283
+ "id": "manual:publication-rehearsal",
3284
+ "category": "manual"
3285
+ },
3129
3286
  {
3130
3287
  "id": "manual:publish-transaction",
3131
3288
  "category": "manual"
@@ -3158,6 +3315,14 @@
3158
3315
  "id": "manual:release-propagation",
3159
3316
  "category": "manual"
3160
3317
  },
3318
+ {
3319
+ "id": "manual:release-tail-contract",
3320
+ "category": "manual"
3321
+ },
3322
+ {
3323
+ "id": "manual:release-tail-provider-plane",
3324
+ "category": "manual"
3325
+ },
3161
3326
  {
3162
3327
  "id": "manual:reusable-build-surface",
3163
3328
  "category": "manual"
@@ -3196,6 +3361,81 @@
3196
3361
  }
3197
3362
  ],
3198
3363
  "docCommandRefs": [
3364
+ {
3365
+ "id": "architecture",
3366
+ "path": "docs/cli-reference.md",
3367
+ "command": "buildchain architecture"
3368
+ },
3369
+ {
3370
+ "id": "architecture",
3371
+ "path": "docs/cli-reference.md",
3372
+ "command": "buildchain architecture list"
3373
+ },
3374
+ {
3375
+ "id": "architecture",
3376
+ "path": "docs/cli-reference.md",
3377
+ "command": "buildchain architecture qualify --authority-revision"
3378
+ },
3379
+ {
3380
+ "id": "architecture",
3381
+ "path": "docs/cli-reference.md",
3382
+ "command": "buildchain architecture show"
3383
+ },
3384
+ {
3385
+ "id": "architecture",
3386
+ "path": "docs/cli-reference.md",
3387
+ "command": "buildchain architecture validate"
3388
+ },
3389
+ {
3390
+ "id": "architecture",
3391
+ "path": "docs/cli-reference.md",
3392
+ "command": "buildchain architecture"
3393
+ },
3394
+ {
3395
+ "id": "architecture",
3396
+ "path": "docs/cli-reference.md",
3397
+ "command": "buildchain architecture --help"
3398
+ },
3399
+ {
3400
+ "id": "architecture",
3401
+ "path": "docs/cli-reference.md",
3402
+ "command": "buildchain architecture list"
3403
+ },
3404
+ {
3405
+ "id": "architecture",
3406
+ "path": "docs/cli-reference.md",
3407
+ "command": "buildchain architecture list --help"
3408
+ },
3409
+ {
3410
+ "id": "architecture",
3411
+ "path": "docs/cli-reference.md",
3412
+ "command": "buildchain architecture qualify"
3413
+ },
3414
+ {
3415
+ "id": "architecture",
3416
+ "path": "docs/cli-reference.md",
3417
+ "command": "buildchain architecture qualify --help"
3418
+ },
3419
+ {
3420
+ "id": "architecture",
3421
+ "path": "docs/cli-reference.md",
3422
+ "command": "buildchain architecture show"
3423
+ },
3424
+ {
3425
+ "id": "architecture",
3426
+ "path": "docs/cli-reference.md",
3427
+ "command": "buildchain architecture show --help"
3428
+ },
3429
+ {
3430
+ "id": "architecture",
3431
+ "path": "docs/cli-reference.md",
3432
+ "command": "buildchain architecture validate"
3433
+ },
3434
+ {
3435
+ "id": "architecture",
3436
+ "path": "docs/cli-reference.md",
3437
+ "command": "buildchain architecture validate --help"
3438
+ },
3199
3439
  {
3200
3440
  "id": "audit",
3201
3441
  "path": "docs/cli-reference.md",
@@ -4016,6 +4256,16 @@
4016
4256
  "path": "docs/dev-delivery-warrant.md",
4017
4257
  "command": "buildchain dev proof integration"
4018
4258
  },
4259
+ {
4260
+ "id": "dev",
4261
+ "path": "docs/dev-delivery-warrant.md",
4262
+ "command": "buildchain dev warrant shadow-plan"
4263
+ },
4264
+ {
4265
+ "id": "dev",
4266
+ "path": "docs/dev-delivery-warrant.md",
4267
+ "command": "buildchain dev warrant shadow-qualify"
4268
+ },
4019
4269
  {
4020
4270
  "id": "dev",
4021
4271
  "path": "docs/release-governance.md",
@@ -6966,6 +7216,136 @@
6966
7216
  "path": "docs/release-propagation.md",
6967
7217
  "command": "buildchain release-propagation work push-branch"
6968
7218
  },
7219
+ {
7220
+ "id": "release-tail",
7221
+ "path": "docs/cli-reference.md",
7222
+ "command": "buildchain release-tail"
7223
+ },
7224
+ {
7225
+ "id": "release-tail",
7226
+ "path": "docs/cli-reference.md",
7227
+ "command": "buildchain release-tail compat --hooks-json"
7228
+ },
7229
+ {
7230
+ "id": "release-tail",
7231
+ "path": "docs/cli-reference.md",
7232
+ "command": "buildchain release-tail init --declaration"
7233
+ },
7234
+ {
7235
+ "id": "release-tail",
7236
+ "path": "docs/cli-reference.md",
7237
+ "command": "buildchain release-tail plan --declaration"
7238
+ },
7239
+ {
7240
+ "id": "release-tail",
7241
+ "path": "docs/cli-reference.md",
7242
+ "command": "buildchain release-tail rehearse --capsule"
7243
+ },
7244
+ {
7245
+ "id": "release-tail",
7246
+ "path": "docs/cli-reference.md",
7247
+ "command": "buildchain release-tail"
7248
+ },
7249
+ {
7250
+ "id": "release-tail",
7251
+ "path": "docs/cli-reference.md",
7252
+ "command": "buildchain release-tail"
7253
+ },
7254
+ {
7255
+ "id": "release-tail",
7256
+ "path": "docs/cli-reference.md",
7257
+ "command": "buildchain release-tail"
7258
+ },
7259
+ {
7260
+ "id": "release-tail",
7261
+ "path": "docs/cli-reference.md",
7262
+ "command": "buildchain release-tail --help"
7263
+ },
7264
+ {
7265
+ "id": "release-tail",
7266
+ "path": "docs/cli-reference.md",
7267
+ "command": "buildchain release-tail compat"
7268
+ },
7269
+ {
7270
+ "id": "release-tail",
7271
+ "path": "docs/cli-reference.md",
7272
+ "command": "buildchain release-tail compat --help"
7273
+ },
7274
+ {
7275
+ "id": "release-tail",
7276
+ "path": "docs/cli-reference.md",
7277
+ "command": "buildchain release-tail init"
7278
+ },
7279
+ {
7280
+ "id": "release-tail",
7281
+ "path": "docs/cli-reference.md",
7282
+ "command": "buildchain release-tail init --help"
7283
+ },
7284
+ {
7285
+ "id": "release-tail",
7286
+ "path": "docs/cli-reference.md",
7287
+ "command": "buildchain release-tail plan"
7288
+ },
7289
+ {
7290
+ "id": "release-tail",
7291
+ "path": "docs/cli-reference.md",
7292
+ "command": "buildchain release-tail plan --help"
7293
+ },
7294
+ {
7295
+ "id": "release-tail",
7296
+ "path": "docs/cli-reference.md",
7297
+ "command": "buildchain release-tail rehearse"
7298
+ },
7299
+ {
7300
+ "id": "release-tail",
7301
+ "path": "docs/cli-reference.md",
7302
+ "command": "buildchain release-tail rehearse --help"
7303
+ },
7304
+ {
7305
+ "id": "release-tail",
7306
+ "path": "docs/cli-reference.md",
7307
+ "command": "buildchain release-tail status"
7308
+ },
7309
+ {
7310
+ "id": "release-tail",
7311
+ "path": "docs/cli-reference.md",
7312
+ "command": "buildchain release-tail status --help"
7313
+ },
7314
+ {
7315
+ "id": "release-tail",
7316
+ "path": "docs/cli-reference.md",
7317
+ "command": "buildchain release-tail verify"
7318
+ },
7319
+ {
7320
+ "id": "release-tail",
7321
+ "path": "docs/cli-reference.md",
7322
+ "command": "buildchain release-tail verify --help"
7323
+ },
7324
+ {
7325
+ "id": "release-tail",
7326
+ "path": "docs/publication-rehearsal.md",
7327
+ "command": "buildchain release-tail rehearse"
7328
+ },
7329
+ {
7330
+ "id": "release-tail",
7331
+ "path": "docs/release-tail-provider-plane.md",
7332
+ "command": "buildchain release-tail plan --declaration"
7333
+ },
7334
+ {
7335
+ "id": "release-tail",
7336
+ "path": "docs/release-tail-provider-plane.md",
7337
+ "command": "buildchain release-tail init --declaration"
7338
+ },
7339
+ {
7340
+ "id": "release-tail",
7341
+ "path": "docs/release-tail-provider-plane.md",
7342
+ "command": "buildchain release-tail verify --state"
7343
+ },
7344
+ {
7345
+ "id": "release-tail",
7346
+ "path": "docs/release-tail-provider-plane.md",
7347
+ "command": "buildchain release-tail plan"
7348
+ },
6969
7349
  {
6970
7350
  "id": "release-transaction",
6971
7351
  "path": "docs/cli-reference.md",
@@ -7607,9 +7987,9 @@
7607
7987
  "cliRegistryPath": "dist/site/cli-registry.json",
7608
7988
  "workflowRegistryPath": "dist/site/workflow-registry.json",
7609
7989
  "pageRegistryPath": "dist/site/page-registry.json",
7610
- "cliRegistryDigest": "2e7804e1fa8ef08bbe59fcf58908e47daef4dc145675fc9a989862671e40f993",
7611
- "workflowRegistryDigest": "20c6b31e754f9f0ffb15362bd1b646376e9cf2698951d5f502a5bafcdfd523e7",
7612
- "pageRegistryDigest": "50489f303fc5343c6c13ed307f0f7d008fa8deee7f32dd8ff701d47775b210df"
7990
+ "cliRegistryDigest": "e7b90e95dabcffb3fecb8e84cec48d7a99261c5e90732aff0ebc174b01c4e35c",
7991
+ "workflowRegistryDigest": "13a26d906880692e55594677ef0ede5f5858f3923910c62925961780b01ccde3",
7992
+ "pageRegistryDigest": "504454df002494e1bc5cdf37679c28a3914f2df43cf4a70524019d2d97b6c320"
7613
7993
  },
7614
7994
  "comparison": {
7615
7995
  "missingCliRegistry": [],