@kungfu-tech/buildchain 3.0.9-alpha.2 → 3.0.9-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 (48) hide show
  1. package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +47 -0
  2. package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +47 -0
  3. package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +40 -0
  4. package/contracts/next-development-request-v1.schema.json +66 -0
  5. package/contracts/next-development-transition-v1.schema.json +292 -0
  6. package/dist/site/buildchain-contract.json +4 -4
  7. package/dist/site/buildchain-site.json +89 -18
  8. package/dist/site/capability-registry.json +4 -3
  9. package/dist/site/kfd-claims.json +65 -5
  10. package/dist/site/kfd-upstream-aggregate.json +1 -1
  11. package/dist/site/manual-registry.json +19 -3
  12. package/dist/site/node-api-registry.json +1016 -36
  13. package/dist/site/page-registry.json +74 -11
  14. package/dist/site/public-surface-audit.json +7 -3
  15. package/dist/site/publication-registry.json +4 -4
  16. package/dist/site/release-provenance.json +3 -0
  17. package/dist/site/site-manifest.json +15 -7
  18. package/dist/site/workflow-registry.json +4 -4
  19. package/docs/MAP.md +2 -1
  20. package/docs/aws-us-elastic-runner-burst-plane.md +11 -3
  21. package/docs/dev-alpha-candidate-patrol.md +8 -0
  22. package/docs/next-development-transition.md +119 -0
  23. package/docs/node-api-reference.md +126 -73
  24. package/docs/versioning.md +1 -1
  25. package/package.json +8 -3
  26. package/packages/core/buildchain-agent-manuals.js +1 -0
  27. package/packages/core/channel-candidate.js +8 -0
  28. package/packages/core/channel-promotion-baseline.js +52 -0
  29. package/packages/core/dev-alpha-candidate-selection.js +10 -2
  30. package/packages/core/next-development-candidate-reservation.js +186 -0
  31. package/packages/core/next-development-controller.js +726 -0
  32. package/packages/core/next-development-projection.js +288 -0
  33. package/packages/core/next-development-transition.js +738 -0
  34. package/packages/core/paper-agent-entry.js +7 -4
  35. package/packages/core/paper.js +14 -7
  36. package/scripts/aws-macos-jit-controller-core.mjs +83 -2
  37. package/scripts/aws-macos-jit-controller.mjs +32 -1
  38. package/scripts/aws-macos-jit-instance-rehydrate.mjs +260 -0
  39. package/scripts/check-inventory.mjs +11 -0
  40. package/scripts/dev-alpha-candidate-patrol.mjs +22 -1
  41. package/scripts/generate-next-development-guidance.mjs +49 -0
  42. package/scripts/generate-site-bundle.mjs +2 -0
  43. package/scripts/init-repo.mjs +119 -62
  44. package/scripts/next-development-self-dogfood-harness.mjs +409 -0
  45. package/scripts/next-development-self-dogfood.mjs +532 -0
  46. package/scripts/next-development-transition.mjs +47 -0
  47. package/scripts/site-capability-metadata.mjs +3 -0
  48. package/scripts/stable-candidate-qualification.mjs +7 -7
@@ -253,16 +253,17 @@
253
253
  ],
254
254
  "maturity": "stable",
255
255
  "counts": {
256
- "manualCount": 9,
257
- "pageCount": 9,
256
+ "manualCount": 10,
257
+ "pageCount": 10,
258
258
  "cliCommandCount": 12,
259
- "nodeApiCount": 9,
259
+ "nodeApiCount": 12,
260
260
  "workflowCount": 20,
261
261
  "actionCount": 0
262
262
  },
263
263
  "manuals": [
264
264
  "docs/github-governance-authority.md",
265
265
  "docs/release-train.md",
266
+ "docs/next-development-transition.md",
266
267
  "docs/infra-contract.md",
267
268
  "docs/migration-inventory.md",
268
269
  "docs/ownership.md",
@@ -21,12 +21,12 @@
21
21
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
22
22
  "path": "dist/site/public-surface-audit.json",
23
23
  "status": "passed",
24
- "sha256": "7b796dee388afdf05a9281386d2afd4e2223a7cc3fc901dc555a4f85bd64cdd2",
24
+ "sha256": "990b84565bc4089bd5c9f7c54564374fbceee3ce8985fd70731d4829fe62ba9e",
25
25
  "summary": {
26
26
  "cliCommandCount": 114,
27
27
  "workflowCount": 69,
28
28
  "actionCount": 7,
29
- "sitePageCount": 71,
29
+ "sitePageCount": 72,
30
30
  "docCommandRefCount": 924,
31
31
  "failureCount": 0
32
32
  },
@@ -246,12 +246,12 @@
246
246
  "contract": "kungfu-buildchain-public-surface-reverse-audit",
247
247
  "path": "dist/site/public-surface-audit.json",
248
248
  "status": "passed",
249
- "sha256": "7b796dee388afdf05a9281386d2afd4e2223a7cc3fc901dc555a4f85bd64cdd2",
249
+ "sha256": "990b84565bc4089bd5c9f7c54564374fbceee3ce8985fd70731d4829fe62ba9e",
250
250
  "summary": {
251
251
  "cliCommandCount": 114,
252
252
  "workflowCount": 69,
253
253
  "actionCount": 7,
254
- "sitePageCount": 71,
254
+ "sitePageCount": 72,
255
255
  "docCommandRefCount": 924,
256
256
  "failureCount": 0
257
257
  },
@@ -596,6 +596,18 @@
596
596
  "public": true,
597
597
  "plane": "verify"
598
598
  },
599
+ {
600
+ "id": "doc:docs/next-development-transition.md",
601
+ "name": "Next-development transition",
602
+ "kind": "documentation",
603
+ "sourcePath": "docs/next-development-transition.md",
604
+ "evidencePath": "docs/next-development-transition.md",
605
+ "availability": "shipped",
606
+ "visibility": "public",
607
+ "participantFacing": true,
608
+ "public": true,
609
+ "plane": "verify"
610
+ },
599
611
  {
600
612
  "id": "doc:docs/node-api-reference.md",
601
613
  "name": "Generated Node API reference",
@@ -1760,6 +1772,42 @@
1760
1772
  "public": true,
1761
1773
  "packageExport": "./release-train"
1762
1774
  },
1775
+ {
1776
+ "id": "export:./next-development-transition",
1777
+ "name": "@kungfu-tech/buildchain/next-development-transition",
1778
+ "kind": "package-export",
1779
+ "sourcePath": "packages/core/next-development-transition.js",
1780
+ "evidencePath": "packages/core/next-development-transition.js",
1781
+ "availability": "shipped",
1782
+ "visibility": "public",
1783
+ "participantFacing": true,
1784
+ "public": true,
1785
+ "packageExport": "./next-development-transition"
1786
+ },
1787
+ {
1788
+ "id": "export:./next-development-controller",
1789
+ "name": "@kungfu-tech/buildchain/next-development-controller",
1790
+ "kind": "package-export",
1791
+ "sourcePath": "packages/core/next-development-controller.js",
1792
+ "evidencePath": "packages/core/next-development-controller.js",
1793
+ "availability": "shipped",
1794
+ "visibility": "public",
1795
+ "participantFacing": true,
1796
+ "public": true,
1797
+ "packageExport": "./next-development-controller"
1798
+ },
1799
+ {
1800
+ "id": "export:./next-development-projection",
1801
+ "name": "@kungfu-tech/buildchain/next-development-projection",
1802
+ "kind": "package-export",
1803
+ "sourcePath": "packages/core/next-development-projection.js",
1804
+ "evidencePath": "packages/core/next-development-projection.js",
1805
+ "availability": "shipped",
1806
+ "visibility": "public",
1807
+ "participantFacing": true,
1808
+ "public": true,
1809
+ "packageExport": "./next-development-projection"
1810
+ },
1763
1811
  {
1764
1812
  "id": "export:./stable-candidate-ledger",
1765
1813
  "name": "@kungfu-tech/buildchain/stable-candidate-ledger",
@@ -6263,6 +6311,18 @@
6263
6311
  "public": true,
6264
6312
  "reverseAuditSource": "dist/site/page-registry.json"
6265
6313
  },
6314
+ {
6315
+ "id": "site-page:manual:next-development-transition",
6316
+ "name": "site-page:manual:next-development-transition",
6317
+ "kind": "site-page",
6318
+ "sourcePath": "dist/site/page-registry.json",
6319
+ "evidencePath": "dist/site/page-registry.json",
6320
+ "availability": "shipped",
6321
+ "visibility": "public",
6322
+ "participantFacing": true,
6323
+ "public": true,
6324
+ "reverseAuditSource": "dist/site/page-registry.json"
6325
+ },
6266
6326
  {
6267
6327
  "id": "site-page:manual:node-api-reference",
6268
6328
  "name": "site-page:manual:node-api-reference",
@@ -6758,6 +6818,6 @@
6758
6818
  }
6759
6819
  }
6760
6820
  ],
6761
- "publicSurfaceCount": 430
6821
+ "publicSurfaceCount": 435
6762
6822
  }
6763
6823
  }
@@ -4,7 +4,7 @@
4
4
  "product": {
5
5
  "id": "kungfu-tech-buildchain",
6
6
  "name": "@kungfu-tech/buildchain",
7
- "version": "3.0.9-alpha.2",
7
+ "version": "3.0.9-alpha.3",
8
8
  "repository": "https://github.com/kungfu-systems/buildchain"
9
9
  },
10
10
  "source": {
@@ -9,7 +9,7 @@
9
9
  "title": "Buildchain documentation map",
10
10
  "path": "docs/MAP.md",
11
11
  "plane": "use",
12
- "digest": "sha256:5292461118df2ec99a15411b6ed50c288abeb05d992677e3500b9bd46255a001",
12
+ "digest": "sha256:a1c408b13658f225113ede0ee4f4309cbae466178e8f248f4290a616ce39194c",
13
13
  "capabilityGroup": "getting-started",
14
14
  "audience": [
15
15
  "agent",
@@ -160,6 +160,21 @@
160
160
  "maturity": "preview",
161
161
  "order": 132
162
162
  },
163
+ {
164
+ "id": "next-development-transition",
165
+ "title": "Next-development transition",
166
+ "path": "docs/next-development-transition.md",
167
+ "plane": "verify",
168
+ "digest": "sha256:93b2687be0e36744cb7b0b9d0d76588d89569120ffdb577f13c8c0827988ba28",
169
+ "capabilityGroup": "governance-versioning",
170
+ "audience": [
171
+ "release-operator",
172
+ "consumer",
173
+ "agent"
174
+ ],
175
+ "maturity": "preview",
176
+ "order": 133
177
+ },
163
178
  {
164
179
  "id": "release-propagation",
165
180
  "title": "Release propagation",
@@ -347,7 +362,7 @@
347
362
  "title": "Generated Node API reference",
348
363
  "path": "docs/node-api-reference.md",
349
364
  "plane": "use",
350
- "digest": "sha256:bbef23e4f489376f759e5678d61e2f07c69dfa5542f5538e14c68a0714233ea3",
365
+ "digest": "sha256:cf2137143bb567a11430cf35c3faaff7e16861af4e68554af5cbea1b3a0a1077",
351
366
  "capabilityGroup": "api-cli-reference",
352
367
  "audience": [
353
368
  "agent",
@@ -532,7 +547,7 @@
532
547
  "title": "Versioning",
533
548
  "path": "docs/versioning.md",
534
549
  "plane": "why",
535
- "digest": "sha256:68934ebe8330a13376d1b71d1a875d67d2970b1036e0f185a923175ca2a257fe",
550
+ "digest": "sha256:948957c9170437e2a383efba01d99d9b137ef56ce71ae8036545daaed625d09c",
536
551
  "capabilityGroup": "governance-versioning",
537
552
  "audience": [
538
553
  "maintainer"
@@ -564,6 +579,7 @@
564
579
  "docs/reusable-build-surface.md",
565
580
  "docs/release-candidate.md",
566
581
  "docs/release-train.md",
582
+ "docs/next-development-transition.md",
567
583
  "docs/stable-candidate-patrol.md",
568
584
  "docs/dev-qualification-patrol.md",
569
585
  "docs/dev-alpha-candidate-patrol.md",