@kungfu-tech/buildchain 3.0.9-alpha.2 → 3.0.9-alpha.4
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.
- package/contracts/fixtures/next-development-transition-v1/anchored-manual-waiting.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/semver-auto-planned.json +47 -0
- package/contracts/fixtures/next-development-transition-v1/version-model-cases.json +40 -0
- package/contracts/next-development-request-v1.schema.json +66 -0
- package/contracts/next-development-transition-v1.schema.json +292 -0
- package/dist/site/buildchain-contract.json +4 -4
- package/dist/site/buildchain-site.json +89 -18
- package/dist/site/capability-registry.json +4 -3
- package/dist/site/kfd-claims.json +65 -5
- package/dist/site/kfd-upstream-aggregate.json +1 -1
- package/dist/site/manual-registry.json +19 -3
- package/dist/site/node-api-registry.json +1017 -37
- package/dist/site/page-registry.json +74 -11
- package/dist/site/public-surface-audit.json +7 -3
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-provenance.json +3 -0
- package/dist/site/site-manifest.json +15 -7
- package/dist/site/workflow-registry.json +4 -4
- package/docs/MAP.md +2 -1
- package/docs/aws-us-elastic-runner-burst-plane.md +25 -3
- package/docs/dev-alpha-candidate-patrol.md +8 -0
- package/docs/next-development-transition.md +119 -0
- package/docs/node-api-reference.md +126 -73
- package/docs/versioning.md +1 -1
- package/package.json +8 -3
- package/packages/core/buildchain-agent-manuals.js +1 -0
- package/packages/core/channel-candidate.js +8 -0
- package/packages/core/channel-promotion-baseline.js +52 -0
- package/packages/core/dev-alpha-candidate-selection.js +10 -2
- package/packages/core/next-development-candidate-reservation.js +186 -0
- package/packages/core/next-development-controller.js +726 -0
- package/packages/core/next-development-projection.js +288 -0
- package/packages/core/next-development-transition.js +738 -0
- package/packages/core/paper-agent-entry.js +7 -4
- package/packages/core/paper.js +14 -7
- package/packages/core/release-passport-contract.js +1 -1
- package/scripts/aws-macos-jit-controller-core.mjs +109 -4
- package/scripts/aws-macos-jit-controller.mjs +71 -2
- package/scripts/aws-macos-jit-instance-rehydrate.mjs +260 -0
- package/scripts/aws-macos-jit-source-rebind.mjs +71 -14
- package/scripts/check-inventory.mjs +11 -0
- package/scripts/dev-alpha-candidate-patrol.mjs +22 -1
- package/scripts/generate-next-development-guidance.mjs +49 -0
- package/scripts/generate-site-bundle.mjs +2 -0
- package/scripts/init-repo.mjs +119 -62
- package/scripts/next-development-self-dogfood-harness.mjs +409 -0
- package/scripts/next-development-self-dogfood.mjs +532 -0
- package/scripts/next-development-transition.mjs +47 -0
- package/scripts/site-capability-metadata.mjs +3 -0
- package/scripts/stable-candidate-qualification.mjs +7 -7
|
@@ -11557,6 +11557,888 @@
|
|
|
11557
11557
|
"agent"
|
|
11558
11558
|
]
|
|
11559
11559
|
},
|
|
11560
|
+
{
|
|
11561
|
+
"id": "packages/core/next-development-controller.js#createNextDevelopmentController",
|
|
11562
|
+
"name": "createNextDevelopmentController",
|
|
11563
|
+
"kind": "function",
|
|
11564
|
+
"signature": "function createNextDevelopmentController({ transition, protectedDevBranch, } = {})",
|
|
11565
|
+
"parameters": [
|
|
11566
|
+
{
|
|
11567
|
+
"name": "parameter1",
|
|
11568
|
+
"signature": "{ transition, protectedDevBranch, } = {}"
|
|
11569
|
+
}
|
|
11570
|
+
],
|
|
11571
|
+
"returns": "unknown",
|
|
11572
|
+
"errors": [
|
|
11573
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11574
|
+
],
|
|
11575
|
+
"sideEffects": [
|
|
11576
|
+
"none-detected-by-static-source-scan"
|
|
11577
|
+
],
|
|
11578
|
+
"source": {
|
|
11579
|
+
"path": "packages/core/next-development-controller.js",
|
|
11580
|
+
"line": 118
|
|
11581
|
+
},
|
|
11582
|
+
"example": "import { createNextDevelopmentController } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11583
|
+
"maturity": "stable",
|
|
11584
|
+
"audience": [
|
|
11585
|
+
"developer",
|
|
11586
|
+
"agent"
|
|
11587
|
+
]
|
|
11588
|
+
},
|
|
11589
|
+
{
|
|
11590
|
+
"id": "packages/core/next-development-controller.js#NEXT_DEVELOPMENT_CONTROLLER_CONTRACT",
|
|
11591
|
+
"name": "NEXT_DEVELOPMENT_CONTROLLER_CONTRACT",
|
|
11592
|
+
"kind": "constant",
|
|
11593
|
+
"signature": "const NEXT_DEVELOPMENT_CONTROLLER_CONTRACT",
|
|
11594
|
+
"parameters": [],
|
|
11595
|
+
"returns": "value",
|
|
11596
|
+
"errors": [
|
|
11597
|
+
"Import does not declare a throw contract."
|
|
11598
|
+
],
|
|
11599
|
+
"sideEffects": [
|
|
11600
|
+
"none-on-import"
|
|
11601
|
+
],
|
|
11602
|
+
"source": {
|
|
11603
|
+
"path": "packages/core/next-development-controller.js",
|
|
11604
|
+
"line": 11
|
|
11605
|
+
},
|
|
11606
|
+
"example": "import { NEXT_DEVELOPMENT_CONTROLLER_CONTRACT } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11607
|
+
"maturity": "stable",
|
|
11608
|
+
"audience": [
|
|
11609
|
+
"developer",
|
|
11610
|
+
"agent"
|
|
11611
|
+
]
|
|
11612
|
+
},
|
|
11613
|
+
{
|
|
11614
|
+
"id": "packages/core/next-development-controller.js#nextDevelopmentChildKey",
|
|
11615
|
+
"name": "nextDevelopmentChildKey",
|
|
11616
|
+
"kind": "function",
|
|
11617
|
+
"signature": "function nextDevelopmentChildKey(transition)",
|
|
11618
|
+
"parameters": [
|
|
11619
|
+
{
|
|
11620
|
+
"name": "transition",
|
|
11621
|
+
"signature": "transition"
|
|
11622
|
+
}
|
|
11623
|
+
],
|
|
11624
|
+
"returns": "unknown",
|
|
11625
|
+
"errors": [
|
|
11626
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11627
|
+
],
|
|
11628
|
+
"sideEffects": [
|
|
11629
|
+
"none-detected-by-static-source-scan"
|
|
11630
|
+
],
|
|
11631
|
+
"source": {
|
|
11632
|
+
"path": "packages/core/next-development-controller.js",
|
|
11633
|
+
"line": 103
|
|
11634
|
+
},
|
|
11635
|
+
"example": "import { nextDevelopmentChildKey } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11636
|
+
"maturity": "stable",
|
|
11637
|
+
"audience": [
|
|
11638
|
+
"developer",
|
|
11639
|
+
"agent"
|
|
11640
|
+
]
|
|
11641
|
+
},
|
|
11642
|
+
{
|
|
11643
|
+
"id": "packages/core/next-development-controller.js#nextDevelopmentControllerRoot",
|
|
11644
|
+
"name": "nextDevelopmentControllerRoot",
|
|
11645
|
+
"kind": "function",
|
|
11646
|
+
"signature": "function nextDevelopmentControllerRoot(record)",
|
|
11647
|
+
"parameters": [
|
|
11648
|
+
{
|
|
11649
|
+
"name": "record",
|
|
11650
|
+
"signature": "record"
|
|
11651
|
+
}
|
|
11652
|
+
],
|
|
11653
|
+
"returns": "unknown",
|
|
11654
|
+
"errors": [
|
|
11655
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11656
|
+
],
|
|
11657
|
+
"sideEffects": [
|
|
11658
|
+
"none-detected-by-static-source-scan"
|
|
11659
|
+
],
|
|
11660
|
+
"source": {
|
|
11661
|
+
"path": "packages/core/next-development-controller.js",
|
|
11662
|
+
"line": 99
|
|
11663
|
+
},
|
|
11664
|
+
"example": "import { nextDevelopmentControllerRoot } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11665
|
+
"maturity": "stable",
|
|
11666
|
+
"audience": [
|
|
11667
|
+
"developer",
|
|
11668
|
+
"agent"
|
|
11669
|
+
]
|
|
11670
|
+
},
|
|
11671
|
+
{
|
|
11672
|
+
"id": "packages/core/next-development-controller.js#reconcileNextDevelopmentController",
|
|
11673
|
+
"name": "reconcileNextDevelopmentController",
|
|
11674
|
+
"kind": "function",
|
|
11675
|
+
"signature": "async function reconcileNextDevelopmentController(record, { store, executor, reviewedInput, recordedAt, fault } = {})",
|
|
11676
|
+
"parameters": [
|
|
11677
|
+
{
|
|
11678
|
+
"name": "record",
|
|
11679
|
+
"signature": "record"
|
|
11680
|
+
},
|
|
11681
|
+
{
|
|
11682
|
+
"name": "parameter2",
|
|
11683
|
+
"signature": "{ store, executor, reviewedInput, recordedAt, fault } = {}"
|
|
11684
|
+
}
|
|
11685
|
+
],
|
|
11686
|
+
"returns": "Promise<unknown>",
|
|
11687
|
+
"errors": [
|
|
11688
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11689
|
+
],
|
|
11690
|
+
"sideEffects": [
|
|
11691
|
+
"none-detected-by-static-source-scan"
|
|
11692
|
+
],
|
|
11693
|
+
"source": {
|
|
11694
|
+
"path": "packages/core/next-development-controller.js",
|
|
11695
|
+
"line": 548
|
|
11696
|
+
},
|
|
11697
|
+
"example": "import { reconcileNextDevelopmentController } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11698
|
+
"maturity": "stable",
|
|
11699
|
+
"audience": [
|
|
11700
|
+
"developer",
|
|
11701
|
+
"agent"
|
|
11702
|
+
]
|
|
11703
|
+
},
|
|
11704
|
+
{
|
|
11705
|
+
"id": "packages/core/next-development-controller.js#runNextDevelopmentController",
|
|
11706
|
+
"name": "runNextDevelopmentController",
|
|
11707
|
+
"kind": "function",
|
|
11708
|
+
"signature": "async function runNextDevelopmentController({ transition, protectedDevBranch, reviewedInput, recordedAt, fault } = {}, { store, executor } = {})",
|
|
11709
|
+
"parameters": [
|
|
11710
|
+
{
|
|
11711
|
+
"name": "parameter1",
|
|
11712
|
+
"signature": "{ transition, protectedDevBranch, reviewedInput, recordedAt, fault } = {}"
|
|
11713
|
+
},
|
|
11714
|
+
{
|
|
11715
|
+
"name": "parameter2",
|
|
11716
|
+
"signature": "{ store, executor } = {}"
|
|
11717
|
+
}
|
|
11718
|
+
],
|
|
11719
|
+
"returns": "Promise<unknown>",
|
|
11720
|
+
"errors": [
|
|
11721
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11722
|
+
],
|
|
11723
|
+
"sideEffects": [
|
|
11724
|
+
"may-write-or-invoke-external-actions"
|
|
11725
|
+
],
|
|
11726
|
+
"source": {
|
|
11727
|
+
"path": "packages/core/next-development-controller.js",
|
|
11728
|
+
"line": 710
|
|
11729
|
+
},
|
|
11730
|
+
"example": "import { runNextDevelopmentController } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11731
|
+
"maturity": "stable",
|
|
11732
|
+
"audience": [
|
|
11733
|
+
"developer",
|
|
11734
|
+
"agent"
|
|
11735
|
+
]
|
|
11736
|
+
},
|
|
11737
|
+
{
|
|
11738
|
+
"id": "packages/core/next-development-controller.js#scheduleNextDevelopmentController",
|
|
11739
|
+
"name": "scheduleNextDevelopmentController",
|
|
11740
|
+
"kind": "function",
|
|
11741
|
+
"signature": "async function scheduleNextDevelopmentController({ transition, protectedDevBranch } = {}, store)",
|
|
11742
|
+
"parameters": [
|
|
11743
|
+
{
|
|
11744
|
+
"name": "parameter1",
|
|
11745
|
+
"signature": "{ transition, protectedDevBranch } = {}"
|
|
11746
|
+
},
|
|
11747
|
+
{
|
|
11748
|
+
"name": "store",
|
|
11749
|
+
"signature": "store"
|
|
11750
|
+
}
|
|
11751
|
+
],
|
|
11752
|
+
"returns": "Promise<unknown>",
|
|
11753
|
+
"errors": [
|
|
11754
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11755
|
+
],
|
|
11756
|
+
"sideEffects": [
|
|
11757
|
+
"none-detected-by-static-source-scan"
|
|
11758
|
+
],
|
|
11759
|
+
"source": {
|
|
11760
|
+
"path": "packages/core/next-development-controller.js",
|
|
11761
|
+
"line": 475
|
|
11762
|
+
},
|
|
11763
|
+
"example": "import { scheduleNextDevelopmentController } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11764
|
+
"maturity": "stable",
|
|
11765
|
+
"audience": [
|
|
11766
|
+
"developer",
|
|
11767
|
+
"agent"
|
|
11768
|
+
]
|
|
11769
|
+
},
|
|
11770
|
+
{
|
|
11771
|
+
"id": "packages/core/next-development-controller.js#validateNextDevelopmentController",
|
|
11772
|
+
"name": "validateNextDevelopmentController",
|
|
11773
|
+
"kind": "function",
|
|
11774
|
+
"signature": "function validateNextDevelopmentController(record)",
|
|
11775
|
+
"parameters": [
|
|
11776
|
+
{
|
|
11777
|
+
"name": "record",
|
|
11778
|
+
"signature": "record"
|
|
11779
|
+
}
|
|
11780
|
+
],
|
|
11781
|
+
"returns": "unknown",
|
|
11782
|
+
"errors": [
|
|
11783
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11784
|
+
],
|
|
11785
|
+
"sideEffects": [
|
|
11786
|
+
"none-detected-by-static-source-scan"
|
|
11787
|
+
],
|
|
11788
|
+
"source": {
|
|
11789
|
+
"path": "packages/core/next-development-controller.js",
|
|
11790
|
+
"line": 385
|
|
11791
|
+
},
|
|
11792
|
+
"example": "import { validateNextDevelopmentController } from \"@kungfu-tech/buildchain/next-development-controller\";",
|
|
11793
|
+
"maturity": "stable",
|
|
11794
|
+
"audience": [
|
|
11795
|
+
"developer",
|
|
11796
|
+
"agent"
|
|
11797
|
+
]
|
|
11798
|
+
},
|
|
11799
|
+
{
|
|
11800
|
+
"id": "packages/core/next-development-projection.js#appendNextDevelopmentToml",
|
|
11801
|
+
"name": "appendNextDevelopmentToml",
|
|
11802
|
+
"kind": "function",
|
|
11803
|
+
"signature": "function appendNextDevelopmentToml(source)",
|
|
11804
|
+
"parameters": [
|
|
11805
|
+
{
|
|
11806
|
+
"name": "source",
|
|
11807
|
+
"signature": "source"
|
|
11808
|
+
}
|
|
11809
|
+
],
|
|
11810
|
+
"returns": "unknown",
|
|
11811
|
+
"errors": [
|
|
11812
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11813
|
+
],
|
|
11814
|
+
"sideEffects": [
|
|
11815
|
+
"may-write-or-invoke-external-actions"
|
|
11816
|
+
],
|
|
11817
|
+
"source": {
|
|
11818
|
+
"path": "packages/core/next-development-projection.js",
|
|
11819
|
+
"line": 44
|
|
11820
|
+
},
|
|
11821
|
+
"example": "import { appendNextDevelopmentToml } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11822
|
+
"maturity": "stable",
|
|
11823
|
+
"audience": [
|
|
11824
|
+
"developer",
|
|
11825
|
+
"agent"
|
|
11826
|
+
]
|
|
11827
|
+
},
|
|
11828
|
+
{
|
|
11829
|
+
"id": "packages/core/next-development-projection.js#assertNextDevelopmentConfig",
|
|
11830
|
+
"name": "assertNextDevelopmentConfig",
|
|
11831
|
+
"kind": "function",
|
|
11832
|
+
"signature": "function assertNextDevelopmentConfig(config)",
|
|
11833
|
+
"parameters": [
|
|
11834
|
+
{
|
|
11835
|
+
"name": "config",
|
|
11836
|
+
"signature": "config"
|
|
11837
|
+
}
|
|
11838
|
+
],
|
|
11839
|
+
"returns": "unknown",
|
|
11840
|
+
"errors": [
|
|
11841
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11842
|
+
],
|
|
11843
|
+
"sideEffects": [
|
|
11844
|
+
"none-detected-by-static-source-scan"
|
|
11845
|
+
],
|
|
11846
|
+
"source": {
|
|
11847
|
+
"path": "packages/core/next-development-projection.js",
|
|
11848
|
+
"line": 70
|
|
11849
|
+
},
|
|
11850
|
+
"example": "import { assertNextDevelopmentConfig } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11851
|
+
"maturity": "stable",
|
|
11852
|
+
"audience": [
|
|
11853
|
+
"developer",
|
|
11854
|
+
"agent"
|
|
11855
|
+
]
|
|
11856
|
+
},
|
|
11857
|
+
{
|
|
11858
|
+
"id": "packages/core/next-development-projection.js#mergeNextDevelopmentAgentInstructions",
|
|
11859
|
+
"name": "mergeNextDevelopmentAgentInstructions",
|
|
11860
|
+
"kind": "function",
|
|
11861
|
+
"signature": "function mergeNextDevelopmentAgentInstructions(current = \"\")",
|
|
11862
|
+
"parameters": [
|
|
11863
|
+
{
|
|
11864
|
+
"name": "current",
|
|
11865
|
+
"signature": "current = \"\""
|
|
11866
|
+
}
|
|
11867
|
+
],
|
|
11868
|
+
"returns": "unknown",
|
|
11869
|
+
"errors": [
|
|
11870
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
11871
|
+
],
|
|
11872
|
+
"sideEffects": [
|
|
11873
|
+
"none-detected-by-static-source-scan"
|
|
11874
|
+
],
|
|
11875
|
+
"source": {
|
|
11876
|
+
"path": "packages/core/next-development-projection.js",
|
|
11877
|
+
"line": 132
|
|
11878
|
+
},
|
|
11879
|
+
"example": "import { mergeNextDevelopmentAgentInstructions } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11880
|
+
"maturity": "stable",
|
|
11881
|
+
"audience": [
|
|
11882
|
+
"developer",
|
|
11883
|
+
"agent"
|
|
11884
|
+
]
|
|
11885
|
+
},
|
|
11886
|
+
{
|
|
11887
|
+
"id": "packages/core/next-development-projection.js#NEXT_DEVELOPMENT_AGENT_SECTION_END",
|
|
11888
|
+
"name": "NEXT_DEVELOPMENT_AGENT_SECTION_END",
|
|
11889
|
+
"kind": "constant",
|
|
11890
|
+
"signature": "const NEXT_DEVELOPMENT_AGENT_SECTION_END",
|
|
11891
|
+
"parameters": [],
|
|
11892
|
+
"returns": "value",
|
|
11893
|
+
"errors": [
|
|
11894
|
+
"Import does not declare a throw contract."
|
|
11895
|
+
],
|
|
11896
|
+
"sideEffects": [
|
|
11897
|
+
"none-on-import"
|
|
11898
|
+
],
|
|
11899
|
+
"source": {
|
|
11900
|
+
"path": "packages/core/next-development-projection.js",
|
|
11901
|
+
"line": 12
|
|
11902
|
+
},
|
|
11903
|
+
"example": "import { NEXT_DEVELOPMENT_AGENT_SECTION_END } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11904
|
+
"maturity": "stable",
|
|
11905
|
+
"audience": [
|
|
11906
|
+
"developer",
|
|
11907
|
+
"agent"
|
|
11908
|
+
]
|
|
11909
|
+
},
|
|
11910
|
+
{
|
|
11911
|
+
"id": "packages/core/next-development-projection.js#NEXT_DEVELOPMENT_AGENT_SECTION_START",
|
|
11912
|
+
"name": "NEXT_DEVELOPMENT_AGENT_SECTION_START",
|
|
11913
|
+
"kind": "constant",
|
|
11914
|
+
"signature": "const NEXT_DEVELOPMENT_AGENT_SECTION_START",
|
|
11915
|
+
"parameters": [],
|
|
11916
|
+
"returns": "value",
|
|
11917
|
+
"errors": [
|
|
11918
|
+
"Import does not declare a throw contract."
|
|
11919
|
+
],
|
|
11920
|
+
"sideEffects": [
|
|
11921
|
+
"none-on-import"
|
|
11922
|
+
],
|
|
11923
|
+
"source": {
|
|
11924
|
+
"path": "packages/core/next-development-projection.js",
|
|
11925
|
+
"line": 10
|
|
11926
|
+
},
|
|
11927
|
+
"example": "import { NEXT_DEVELOPMENT_AGENT_SECTION_START } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11928
|
+
"maturity": "stable",
|
|
11929
|
+
"audience": [
|
|
11930
|
+
"developer",
|
|
11931
|
+
"agent"
|
|
11932
|
+
]
|
|
11933
|
+
},
|
|
11934
|
+
{
|
|
11935
|
+
"id": "packages/core/next-development-projection.js#NEXT_DEVELOPMENT_LOCAL_COMMAND",
|
|
11936
|
+
"name": "NEXT_DEVELOPMENT_LOCAL_COMMAND",
|
|
11937
|
+
"kind": "constant",
|
|
11938
|
+
"signature": "const NEXT_DEVELOPMENT_LOCAL_COMMAND",
|
|
11939
|
+
"parameters": [],
|
|
11940
|
+
"returns": "value",
|
|
11941
|
+
"errors": [
|
|
11942
|
+
"Import does not declare a throw contract."
|
|
11943
|
+
],
|
|
11944
|
+
"sideEffects": [
|
|
11945
|
+
"none-on-import"
|
|
11946
|
+
],
|
|
11947
|
+
"source": {
|
|
11948
|
+
"path": "packages/core/next-development-projection.js",
|
|
11949
|
+
"line": 14
|
|
11950
|
+
},
|
|
11951
|
+
"example": "import { NEXT_DEVELOPMENT_LOCAL_COMMAND } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11952
|
+
"maturity": "stable",
|
|
11953
|
+
"audience": [
|
|
11954
|
+
"developer",
|
|
11955
|
+
"agent"
|
|
11956
|
+
]
|
|
11957
|
+
},
|
|
11958
|
+
{
|
|
11959
|
+
"id": "packages/core/next-development-projection.js#nextDevelopmentAgentInstructions",
|
|
11960
|
+
"name": "nextDevelopmentAgentInstructions",
|
|
11961
|
+
"kind": "function",
|
|
11962
|
+
"signature": "function nextDevelopmentAgentInstructions()",
|
|
11963
|
+
"parameters": [],
|
|
11964
|
+
"returns": "unknown",
|
|
11965
|
+
"errors": [
|
|
11966
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11967
|
+
],
|
|
11968
|
+
"sideEffects": [
|
|
11969
|
+
"none-detected-by-static-source-scan"
|
|
11970
|
+
],
|
|
11971
|
+
"source": {
|
|
11972
|
+
"path": "packages/core/next-development-projection.js",
|
|
11973
|
+
"line": 98
|
|
11974
|
+
},
|
|
11975
|
+
"example": "import { nextDevelopmentAgentInstructions } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
11976
|
+
"maturity": "stable",
|
|
11977
|
+
"audience": [
|
|
11978
|
+
"developer",
|
|
11979
|
+
"agent"
|
|
11980
|
+
]
|
|
11981
|
+
},
|
|
11982
|
+
{
|
|
11983
|
+
"id": "packages/core/next-development-projection.js#nextDevelopmentManual",
|
|
11984
|
+
"name": "nextDevelopmentManual",
|
|
11985
|
+
"kind": "function",
|
|
11986
|
+
"signature": "function nextDevelopmentManual()",
|
|
11987
|
+
"parameters": [],
|
|
11988
|
+
"returns": "unknown",
|
|
11989
|
+
"errors": [
|
|
11990
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
11991
|
+
],
|
|
11992
|
+
"sideEffects": [
|
|
11993
|
+
"none-detected-by-static-source-scan"
|
|
11994
|
+
],
|
|
11995
|
+
"source": {
|
|
11996
|
+
"path": "packages/core/next-development-projection.js",
|
|
11997
|
+
"line": 161
|
|
11998
|
+
},
|
|
11999
|
+
"example": "import { nextDevelopmentManual } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
12000
|
+
"maturity": "stable",
|
|
12001
|
+
"audience": [
|
|
12002
|
+
"developer",
|
|
12003
|
+
"agent"
|
|
12004
|
+
]
|
|
12005
|
+
},
|
|
12006
|
+
{
|
|
12007
|
+
"id": "packages/core/next-development-projection.js#nextDevelopmentToml",
|
|
12008
|
+
"name": "nextDevelopmentToml",
|
|
12009
|
+
"kind": "function",
|
|
12010
|
+
"signature": "function nextDevelopmentToml()",
|
|
12011
|
+
"parameters": [],
|
|
12012
|
+
"returns": "unknown",
|
|
12013
|
+
"errors": [
|
|
12014
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
12015
|
+
],
|
|
12016
|
+
"sideEffects": [
|
|
12017
|
+
"none-detected-by-static-source-scan"
|
|
12018
|
+
],
|
|
12019
|
+
"source": {
|
|
12020
|
+
"path": "packages/core/next-development-projection.js",
|
|
12021
|
+
"line": 24
|
|
12022
|
+
},
|
|
12023
|
+
"example": "import { nextDevelopmentToml } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
12024
|
+
"maturity": "stable",
|
|
12025
|
+
"audience": [
|
|
12026
|
+
"developer",
|
|
12027
|
+
"agent"
|
|
12028
|
+
]
|
|
12029
|
+
},
|
|
12030
|
+
{
|
|
12031
|
+
"id": "packages/core/next-development-projection.js#nextDevelopmentWorkflowHeader",
|
|
12032
|
+
"name": "nextDevelopmentWorkflowHeader",
|
|
12033
|
+
"kind": "function",
|
|
12034
|
+
"signature": "function nextDevelopmentWorkflowHeader()",
|
|
12035
|
+
"parameters": [],
|
|
12036
|
+
"returns": "unknown",
|
|
12037
|
+
"errors": [
|
|
12038
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
12039
|
+
],
|
|
12040
|
+
"sideEffects": [
|
|
12041
|
+
"none-detected-by-static-source-scan"
|
|
12042
|
+
],
|
|
12043
|
+
"source": {
|
|
12044
|
+
"path": "packages/core/next-development-projection.js",
|
|
12045
|
+
"line": 17
|
|
12046
|
+
},
|
|
12047
|
+
"example": "import { nextDevelopmentWorkflowHeader } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
12048
|
+
"maturity": "stable",
|
|
12049
|
+
"audience": [
|
|
12050
|
+
"developer",
|
|
12051
|
+
"agent"
|
|
12052
|
+
]
|
|
12053
|
+
},
|
|
12054
|
+
{
|
|
12055
|
+
"id": "packages/core/next-development-projection.js#projectNextDevelopmentToml",
|
|
12056
|
+
"name": "projectNextDevelopmentToml",
|
|
12057
|
+
"kind": "function",
|
|
12058
|
+
"signature": "function projectNextDevelopmentToml(source)",
|
|
12059
|
+
"parameters": [
|
|
12060
|
+
{
|
|
12061
|
+
"name": "source",
|
|
12062
|
+
"signature": "source"
|
|
12063
|
+
}
|
|
12064
|
+
],
|
|
12065
|
+
"returns": "unknown",
|
|
12066
|
+
"errors": [
|
|
12067
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
12068
|
+
],
|
|
12069
|
+
"sideEffects": [
|
|
12070
|
+
"none-detected-by-static-source-scan"
|
|
12071
|
+
],
|
|
12072
|
+
"source": {
|
|
12073
|
+
"path": "packages/core/next-development-projection.js",
|
|
12074
|
+
"line": 54
|
|
12075
|
+
},
|
|
12076
|
+
"example": "import { projectNextDevelopmentToml } from \"@kungfu-tech/buildchain/next-development-projection\";",
|
|
12077
|
+
"maturity": "stable",
|
|
12078
|
+
"audience": [
|
|
12079
|
+
"developer",
|
|
12080
|
+
"agent"
|
|
12081
|
+
]
|
|
12082
|
+
},
|
|
12083
|
+
{
|
|
12084
|
+
"id": "packages/core/next-development-transition.js#advanceNextDevelopmentTransition",
|
|
12085
|
+
"name": "advanceNextDevelopmentTransition",
|
|
12086
|
+
"kind": "function",
|
|
12087
|
+
"signature": "function advanceNextDevelopmentTransition(record, input = {})",
|
|
12088
|
+
"parameters": [
|
|
12089
|
+
{
|
|
12090
|
+
"name": "record",
|
|
12091
|
+
"signature": "record"
|
|
12092
|
+
},
|
|
12093
|
+
{
|
|
12094
|
+
"name": "input",
|
|
12095
|
+
"signature": "input = {}"
|
|
12096
|
+
}
|
|
12097
|
+
],
|
|
12098
|
+
"returns": "unknown",
|
|
12099
|
+
"errors": [
|
|
12100
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12101
|
+
],
|
|
12102
|
+
"sideEffects": [
|
|
12103
|
+
"none-detected-by-static-source-scan"
|
|
12104
|
+
],
|
|
12105
|
+
"source": {
|
|
12106
|
+
"path": "packages/core/next-development-transition.js",
|
|
12107
|
+
"line": 344
|
|
12108
|
+
},
|
|
12109
|
+
"example": "import { advanceNextDevelopmentTransition } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12110
|
+
"maturity": "stable",
|
|
12111
|
+
"audience": [
|
|
12112
|
+
"developer",
|
|
12113
|
+
"agent"
|
|
12114
|
+
]
|
|
12115
|
+
},
|
|
12116
|
+
{
|
|
12117
|
+
"id": "packages/core/next-development-transition.js#bindNextDevelopmentAnchor",
|
|
12118
|
+
"name": "bindNextDevelopmentAnchor",
|
|
12119
|
+
"kind": "function",
|
|
12120
|
+
"signature": "function bindNextDevelopmentAnchor(record, input = {})",
|
|
12121
|
+
"parameters": [
|
|
12122
|
+
{
|
|
12123
|
+
"name": "record",
|
|
12124
|
+
"signature": "record"
|
|
12125
|
+
},
|
|
12126
|
+
{
|
|
12127
|
+
"name": "input",
|
|
12128
|
+
"signature": "input = {}"
|
|
12129
|
+
}
|
|
12130
|
+
],
|
|
12131
|
+
"returns": "unknown",
|
|
12132
|
+
"errors": [
|
|
12133
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12134
|
+
],
|
|
12135
|
+
"sideEffects": [
|
|
12136
|
+
"none-detected-by-static-source-scan"
|
|
12137
|
+
],
|
|
12138
|
+
"source": {
|
|
12139
|
+
"path": "packages/core/next-development-transition.js",
|
|
12140
|
+
"line": 305
|
|
12141
|
+
},
|
|
12142
|
+
"example": "import { bindNextDevelopmentAnchor } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12143
|
+
"maturity": "stable",
|
|
12144
|
+
"audience": [
|
|
12145
|
+
"developer",
|
|
12146
|
+
"agent"
|
|
12147
|
+
]
|
|
12148
|
+
},
|
|
12149
|
+
{
|
|
12150
|
+
"id": "packages/core/next-development-transition.js#createNextDevelopmentTransition",
|
|
12151
|
+
"name": "createNextDevelopmentTransition",
|
|
12152
|
+
"kind": "function",
|
|
12153
|
+
"signature": "function createNextDevelopmentTransition(input = {})",
|
|
12154
|
+
"parameters": [
|
|
12155
|
+
{
|
|
12156
|
+
"name": "input",
|
|
12157
|
+
"signature": "input = {}"
|
|
12158
|
+
}
|
|
12159
|
+
],
|
|
12160
|
+
"returns": "unknown",
|
|
12161
|
+
"errors": [
|
|
12162
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
12163
|
+
],
|
|
12164
|
+
"sideEffects": [
|
|
12165
|
+
"none-detected-by-static-source-scan"
|
|
12166
|
+
],
|
|
12167
|
+
"source": {
|
|
12168
|
+
"path": "packages/core/next-development-transition.js",
|
|
12169
|
+
"line": 253
|
|
12170
|
+
},
|
|
12171
|
+
"example": "import { createNextDevelopmentTransition } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12172
|
+
"maturity": "stable",
|
|
12173
|
+
"audience": [
|
|
12174
|
+
"developer",
|
|
12175
|
+
"agent"
|
|
12176
|
+
]
|
|
12177
|
+
},
|
|
12178
|
+
{
|
|
12179
|
+
"id": "packages/core/next-development-transition.js#materializeNextDevelopmentTransition",
|
|
12180
|
+
"name": "materializeNextDevelopmentTransition",
|
|
12181
|
+
"kind": "function",
|
|
12182
|
+
"signature": "function materializeNextDevelopmentTransition({ cwd = process.cwd(), request, write = false, } = {})",
|
|
12183
|
+
"parameters": [
|
|
12184
|
+
{
|
|
12185
|
+
"name": "parameter1",
|
|
12186
|
+
"signature": "{ cwd = process.cwd(), request, write = false, } = {}"
|
|
12187
|
+
}
|
|
12188
|
+
],
|
|
12189
|
+
"returns": "unknown",
|
|
12190
|
+
"errors": [
|
|
12191
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12192
|
+
],
|
|
12193
|
+
"sideEffects": [
|
|
12194
|
+
"local-filesystem-write"
|
|
12195
|
+
],
|
|
12196
|
+
"source": {
|
|
12197
|
+
"path": "packages/core/next-development-transition.js",
|
|
12198
|
+
"line": 472
|
|
12199
|
+
},
|
|
12200
|
+
"example": "import { materializeNextDevelopmentTransition } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12201
|
+
"maturity": "stable",
|
|
12202
|
+
"audience": [
|
|
12203
|
+
"developer",
|
|
12204
|
+
"agent"
|
|
12205
|
+
]
|
|
12206
|
+
},
|
|
12207
|
+
{
|
|
12208
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_ADR",
|
|
12209
|
+
"name": "NEXT_DEVELOPMENT_ADR",
|
|
12210
|
+
"kind": "constant",
|
|
12211
|
+
"signature": "const NEXT_DEVELOPMENT_ADR",
|
|
12212
|
+
"parameters": [],
|
|
12213
|
+
"returns": "value",
|
|
12214
|
+
"errors": [
|
|
12215
|
+
"Import does not declare a throw contract."
|
|
12216
|
+
],
|
|
12217
|
+
"sideEffects": [
|
|
12218
|
+
"none-on-import"
|
|
12219
|
+
],
|
|
12220
|
+
"source": {
|
|
12221
|
+
"path": "packages/core/next-development-transition.js",
|
|
12222
|
+
"line": 20
|
|
12223
|
+
},
|
|
12224
|
+
"example": "import { NEXT_DEVELOPMENT_ADR } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12225
|
+
"maturity": "stable",
|
|
12226
|
+
"audience": [
|
|
12227
|
+
"developer",
|
|
12228
|
+
"agent"
|
|
12229
|
+
]
|
|
12230
|
+
},
|
|
12231
|
+
{
|
|
12232
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_INVARIANT",
|
|
12233
|
+
"name": "NEXT_DEVELOPMENT_INVARIANT",
|
|
12234
|
+
"kind": "constant",
|
|
12235
|
+
"signature": "const NEXT_DEVELOPMENT_INVARIANT",
|
|
12236
|
+
"parameters": [],
|
|
12237
|
+
"returns": "value",
|
|
12238
|
+
"errors": [
|
|
12239
|
+
"Import does not declare a throw contract."
|
|
12240
|
+
],
|
|
12241
|
+
"sideEffects": [
|
|
12242
|
+
"none-on-import"
|
|
12243
|
+
],
|
|
12244
|
+
"source": {
|
|
12245
|
+
"path": "packages/core/next-development-transition.js",
|
|
12246
|
+
"line": 22
|
|
12247
|
+
},
|
|
12248
|
+
"example": "import { NEXT_DEVELOPMENT_INVARIANT } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12249
|
+
"maturity": "stable",
|
|
12250
|
+
"audience": [
|
|
12251
|
+
"developer",
|
|
12252
|
+
"agent"
|
|
12253
|
+
]
|
|
12254
|
+
},
|
|
12255
|
+
{
|
|
12256
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_REQUEST_CONTRACT",
|
|
12257
|
+
"name": "NEXT_DEVELOPMENT_REQUEST_CONTRACT",
|
|
12258
|
+
"kind": "constant",
|
|
12259
|
+
"signature": "const NEXT_DEVELOPMENT_REQUEST_CONTRACT",
|
|
12260
|
+
"parameters": [],
|
|
12261
|
+
"returns": "value",
|
|
12262
|
+
"errors": [
|
|
12263
|
+
"Import does not declare a throw contract."
|
|
12264
|
+
],
|
|
12265
|
+
"sideEffects": [
|
|
12266
|
+
"none-on-import"
|
|
12267
|
+
],
|
|
12268
|
+
"source": {
|
|
12269
|
+
"path": "packages/core/next-development-transition.js",
|
|
12270
|
+
"line": 18
|
|
12271
|
+
},
|
|
12272
|
+
"example": "import { NEXT_DEVELOPMENT_REQUEST_CONTRACT } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12273
|
+
"maturity": "stable",
|
|
12274
|
+
"audience": [
|
|
12275
|
+
"developer",
|
|
12276
|
+
"agent"
|
|
12277
|
+
]
|
|
12278
|
+
},
|
|
12279
|
+
{
|
|
12280
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_STATES",
|
|
12281
|
+
"name": "NEXT_DEVELOPMENT_STATES",
|
|
12282
|
+
"kind": "constant",
|
|
12283
|
+
"signature": "const NEXT_DEVELOPMENT_STATES",
|
|
12284
|
+
"parameters": [],
|
|
12285
|
+
"returns": "value",
|
|
12286
|
+
"errors": [
|
|
12287
|
+
"Import does not declare a throw contract."
|
|
12288
|
+
],
|
|
12289
|
+
"sideEffects": [
|
|
12290
|
+
"none-on-import"
|
|
12291
|
+
],
|
|
12292
|
+
"source": {
|
|
12293
|
+
"path": "packages/core/next-development-transition.js",
|
|
12294
|
+
"line": 24
|
|
12295
|
+
},
|
|
12296
|
+
"example": "import { NEXT_DEVELOPMENT_STATES } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12297
|
+
"maturity": "stable",
|
|
12298
|
+
"audience": [
|
|
12299
|
+
"developer",
|
|
12300
|
+
"agent"
|
|
12301
|
+
]
|
|
12302
|
+
},
|
|
12303
|
+
{
|
|
12304
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_TRANSITION_CONTRACT",
|
|
12305
|
+
"name": "NEXT_DEVELOPMENT_TRANSITION_CONTRACT",
|
|
12306
|
+
"kind": "constant",
|
|
12307
|
+
"signature": "const NEXT_DEVELOPMENT_TRANSITION_CONTRACT",
|
|
12308
|
+
"parameters": [],
|
|
12309
|
+
"returns": "value",
|
|
12310
|
+
"errors": [
|
|
12311
|
+
"Import does not declare a throw contract."
|
|
12312
|
+
],
|
|
12313
|
+
"sideEffects": [
|
|
12314
|
+
"none-on-import"
|
|
12315
|
+
],
|
|
12316
|
+
"source": {
|
|
12317
|
+
"path": "packages/core/next-development-transition.js",
|
|
12318
|
+
"line": 16
|
|
12319
|
+
},
|
|
12320
|
+
"example": "import { NEXT_DEVELOPMENT_TRANSITION_CONTRACT } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12321
|
+
"maturity": "stable",
|
|
12322
|
+
"audience": [
|
|
12323
|
+
"developer",
|
|
12324
|
+
"agent"
|
|
12325
|
+
]
|
|
12326
|
+
},
|
|
12327
|
+
{
|
|
12328
|
+
"id": "packages/core/next-development-transition.js#NEXT_DEVELOPMENT_VERSION_MODELS",
|
|
12329
|
+
"name": "NEXT_DEVELOPMENT_VERSION_MODELS",
|
|
12330
|
+
"kind": "constant",
|
|
12331
|
+
"signature": "const NEXT_DEVELOPMENT_VERSION_MODELS",
|
|
12332
|
+
"parameters": [],
|
|
12333
|
+
"returns": "value",
|
|
12334
|
+
"errors": [
|
|
12335
|
+
"Import does not declare a throw contract."
|
|
12336
|
+
],
|
|
12337
|
+
"sideEffects": [
|
|
12338
|
+
"none-on-import"
|
|
12339
|
+
],
|
|
12340
|
+
"source": {
|
|
12341
|
+
"path": "packages/core/next-development-transition.js",
|
|
12342
|
+
"line": 32
|
|
12343
|
+
},
|
|
12344
|
+
"example": "import { NEXT_DEVELOPMENT_VERSION_MODELS } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12345
|
+
"maturity": "stable",
|
|
12346
|
+
"audience": [
|
|
12347
|
+
"developer",
|
|
12348
|
+
"agent"
|
|
12349
|
+
]
|
|
12350
|
+
},
|
|
12351
|
+
{
|
|
12352
|
+
"id": "packages/core/next-development-transition.js#nextDevelopmentRoot",
|
|
12353
|
+
"name": "nextDevelopmentRoot",
|
|
12354
|
+
"kind": "function",
|
|
12355
|
+
"signature": "function nextDevelopmentRoot(value)",
|
|
12356
|
+
"parameters": [
|
|
12357
|
+
{
|
|
12358
|
+
"name": "value",
|
|
12359
|
+
"signature": "value"
|
|
12360
|
+
}
|
|
12361
|
+
],
|
|
12362
|
+
"returns": "unknown",
|
|
12363
|
+
"errors": [
|
|
12364
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12365
|
+
],
|
|
12366
|
+
"sideEffects": [
|
|
12367
|
+
"none-detected-by-static-source-scan"
|
|
12368
|
+
],
|
|
12369
|
+
"source": {
|
|
12370
|
+
"path": "packages/core/next-development-transition.js",
|
|
12371
|
+
"line": 63
|
|
12372
|
+
},
|
|
12373
|
+
"example": "import { nextDevelopmentRoot } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12374
|
+
"maturity": "stable",
|
|
12375
|
+
"audience": [
|
|
12376
|
+
"developer",
|
|
12377
|
+
"agent"
|
|
12378
|
+
]
|
|
12379
|
+
},
|
|
12380
|
+
{
|
|
12381
|
+
"id": "packages/core/next-development-transition.js#recordNextDevelopmentMaterialization",
|
|
12382
|
+
"name": "recordNextDevelopmentMaterialization",
|
|
12383
|
+
"kind": "function",
|
|
12384
|
+
"signature": "function recordNextDevelopmentMaterialization(record, { materialization, evidenceRoot, recordedAt } = {})",
|
|
12385
|
+
"parameters": [
|
|
12386
|
+
{
|
|
12387
|
+
"name": "record",
|
|
12388
|
+
"signature": "record"
|
|
12389
|
+
},
|
|
12390
|
+
{
|
|
12391
|
+
"name": "parameter2",
|
|
12392
|
+
"signature": "{ materialization, evidenceRoot, recordedAt } = {}"
|
|
12393
|
+
}
|
|
12394
|
+
],
|
|
12395
|
+
"returns": "unknown",
|
|
12396
|
+
"errors": [
|
|
12397
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12398
|
+
],
|
|
12399
|
+
"sideEffects": [
|
|
12400
|
+
"may-write-or-invoke-external-actions"
|
|
12401
|
+
],
|
|
12402
|
+
"source": {
|
|
12403
|
+
"path": "packages/core/next-development-transition.js",
|
|
12404
|
+
"line": 416
|
|
12405
|
+
},
|
|
12406
|
+
"example": "import { recordNextDevelopmentMaterialization } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12407
|
+
"maturity": "stable",
|
|
12408
|
+
"audience": [
|
|
12409
|
+
"developer",
|
|
12410
|
+
"agent"
|
|
12411
|
+
]
|
|
12412
|
+
},
|
|
12413
|
+
{
|
|
12414
|
+
"id": "packages/core/next-development-transition.js#validateNextDevelopmentTransition",
|
|
12415
|
+
"name": "validateNextDevelopmentTransition",
|
|
12416
|
+
"kind": "function",
|
|
12417
|
+
"signature": "function validateNextDevelopmentTransition(record)",
|
|
12418
|
+
"parameters": [
|
|
12419
|
+
{
|
|
12420
|
+
"name": "record",
|
|
12421
|
+
"signature": "record"
|
|
12422
|
+
}
|
|
12423
|
+
],
|
|
12424
|
+
"returns": "unknown",
|
|
12425
|
+
"errors": [
|
|
12426
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
12427
|
+
],
|
|
12428
|
+
"sideEffects": [
|
|
12429
|
+
"none-detected-by-static-source-scan"
|
|
12430
|
+
],
|
|
12431
|
+
"source": {
|
|
12432
|
+
"path": "packages/core/next-development-transition.js",
|
|
12433
|
+
"line": 729
|
|
12434
|
+
},
|
|
12435
|
+
"example": "import { validateNextDevelopmentTransition } from \"@kungfu-tech/buildchain/next-development-transition\";",
|
|
12436
|
+
"maturity": "stable",
|
|
12437
|
+
"audience": [
|
|
12438
|
+
"developer",
|
|
12439
|
+
"agent"
|
|
12440
|
+
]
|
|
12441
|
+
},
|
|
11560
12442
|
{
|
|
11561
12443
|
"id": "packages/core/package-manager.js#assertPackageManager",
|
|
11562
12444
|
"name": "assertPackageManager",
|
|
@@ -11854,7 +12736,7 @@
|
|
|
11854
12736
|
],
|
|
11855
12737
|
"source": {
|
|
11856
12738
|
"path": "packages/core/paper-agent-entry.js",
|
|
11857
|
-
"line":
|
|
12739
|
+
"line": 257
|
|
11858
12740
|
},
|
|
11859
12741
|
"example": "import { collectPaperAgentEntry } from \"@kungfu-tech/buildchain/paper\";",
|
|
11860
12742
|
"maturity": "stable",
|
|
@@ -11883,7 +12765,7 @@
|
|
|
11883
12765
|
],
|
|
11884
12766
|
"source": {
|
|
11885
12767
|
"path": "packages/core/paper-agent-entry.js",
|
|
11886
|
-
"line":
|
|
12768
|
+
"line": 95
|
|
11887
12769
|
},
|
|
11888
12770
|
"example": "import { createPaperAgentEntry } from \"@kungfu-tech/buildchain/paper\";",
|
|
11889
12771
|
"maturity": "stable",
|
|
@@ -11916,7 +12798,7 @@
|
|
|
11916
12798
|
],
|
|
11917
12799
|
"source": {
|
|
11918
12800
|
"path": "packages/core/paper-agent-entry.js",
|
|
11919
|
-
"line":
|
|
12801
|
+
"line": 63
|
|
11920
12802
|
},
|
|
11921
12803
|
"example": "import { mergePaperAgentEntryInstructions } from \"@kungfu-tech/buildchain/paper\";",
|
|
11922
12804
|
"maturity": "stable",
|
|
@@ -11940,7 +12822,7 @@
|
|
|
11940
12822
|
],
|
|
11941
12823
|
"source": {
|
|
11942
12824
|
"path": "packages/core/paper-agent-entry.js",
|
|
11943
|
-
"line":
|
|
12825
|
+
"line": 18
|
|
11944
12826
|
},
|
|
11945
12827
|
"example": "import { PAPER_AGENT_ENTRY_CONTRACT } from \"@kungfu-tech/buildchain/paper\";",
|
|
11946
12828
|
"maturity": "stable",
|
|
@@ -11964,7 +12846,7 @@
|
|
|
11964
12846
|
],
|
|
11965
12847
|
"source": {
|
|
11966
12848
|
"path": "packages/core/paper-agent-entry.js",
|
|
11967
|
-
"line":
|
|
12849
|
+
"line": 19
|
|
11968
12850
|
},
|
|
11969
12851
|
"example": "import { PAPER_AGENT_ENTRY_SCHEMA_VERSION } from \"@kungfu-tech/buildchain/paper\";",
|
|
11970
12852
|
"maturity": "stable",
|
|
@@ -11988,7 +12870,7 @@
|
|
|
11988
12870
|
],
|
|
11989
12871
|
"source": {
|
|
11990
12872
|
"path": "packages/core/paper-agent-entry.js",
|
|
11991
|
-
"line":
|
|
12873
|
+
"line": 22
|
|
11992
12874
|
},
|
|
11993
12875
|
"example": "import { PAPER_AGENT_ENTRY_SECTION_END } from \"@kungfu-tech/buildchain/paper\";",
|
|
11994
12876
|
"maturity": "stable",
|
|
@@ -12012,7 +12894,7 @@
|
|
|
12012
12894
|
],
|
|
12013
12895
|
"source": {
|
|
12014
12896
|
"path": "packages/core/paper-agent-entry.js",
|
|
12015
|
-
"line":
|
|
12897
|
+
"line": 20
|
|
12016
12898
|
},
|
|
12017
12899
|
"example": "import { PAPER_AGENT_ENTRY_SECTION_START } from \"@kungfu-tech/buildchain/paper\";",
|
|
12018
12900
|
"maturity": "stable",
|
|
@@ -12041,7 +12923,7 @@
|
|
|
12041
12923
|
],
|
|
12042
12924
|
"source": {
|
|
12043
12925
|
"path": "packages/core/paper-agent-entry.js",
|
|
12044
|
-
"line":
|
|
12926
|
+
"line": 152
|
|
12045
12927
|
},
|
|
12046
12928
|
"example": "import { paperAgentEntryFiles } from \"@kungfu-tech/buildchain/paper\";",
|
|
12047
12929
|
"maturity": "stable",
|
|
@@ -12070,7 +12952,7 @@
|
|
|
12070
12952
|
],
|
|
12071
12953
|
"source": {
|
|
12072
12954
|
"path": "packages/core/paper-agent-entry.js",
|
|
12073
|
-
"line":
|
|
12955
|
+
"line": 38
|
|
12074
12956
|
},
|
|
12075
12957
|
"example": "import { paperAgentEntryInstructions } from \"@kungfu-tech/buildchain/paper\";",
|
|
12076
12958
|
"maturity": "stable",
|
|
@@ -12103,7 +12985,7 @@
|
|
|
12103
12985
|
],
|
|
12104
12986
|
"source": {
|
|
12105
12987
|
"path": "packages/core/paper-agent-entry.js",
|
|
12106
|
-
"line":
|
|
12988
|
+
"line": 183
|
|
12107
12989
|
},
|
|
12108
12990
|
"example": "import { resolvePaperBuildchainSha } from \"@kungfu-tech/buildchain/paper\";",
|
|
12109
12991
|
"maturity": "stable",
|
|
@@ -12546,7 +13428,7 @@
|
|
|
12546
13428
|
],
|
|
12547
13429
|
"source": {
|
|
12548
13430
|
"path": "packages/core/paper.js",
|
|
12549
|
-
"line":
|
|
13431
|
+
"line": 2446
|
|
12550
13432
|
},
|
|
12551
13433
|
"example": "import { collectPaperPreflight } from \"@kungfu-tech/buildchain\";",
|
|
12552
13434
|
"maturity": "stable",
|
|
@@ -12575,7 +13457,7 @@
|
|
|
12575
13457
|
],
|
|
12576
13458
|
"source": {
|
|
12577
13459
|
"path": "packages/core/paper.js",
|
|
12578
|
-
"line":
|
|
13460
|
+
"line": 1503
|
|
12579
13461
|
},
|
|
12580
13462
|
"example": "import { collectPaperStatus } from \"@kungfu-tech/buildchain\";",
|
|
12581
13463
|
"maturity": "stable",
|
|
@@ -12604,7 +13486,7 @@
|
|
|
12604
13486
|
],
|
|
12605
13487
|
"source": {
|
|
12606
13488
|
"path": "packages/core/paper.js",
|
|
12607
|
-
"line":
|
|
13489
|
+
"line": 2688
|
|
12608
13490
|
},
|
|
12609
13491
|
"example": "import { createPaperAlphaPlan } from \"@kungfu-tech/buildchain\";",
|
|
12610
13492
|
"maturity": "stable",
|
|
@@ -12633,7 +13515,7 @@
|
|
|
12633
13515
|
],
|
|
12634
13516
|
"source": {
|
|
12635
13517
|
"path": "packages/core/paper.js",
|
|
12636
|
-
"line":
|
|
13518
|
+
"line": 2625
|
|
12637
13519
|
},
|
|
12638
13520
|
"example": "import { createPaperBuildPlan } from \"@kungfu-tech/buildchain\";",
|
|
12639
13521
|
"maturity": "stable",
|
|
@@ -12662,7 +13544,7 @@
|
|
|
12662
13544
|
],
|
|
12663
13545
|
"source": {
|
|
12664
13546
|
"path": "packages/core/paper.js",
|
|
12665
|
-
"line":
|
|
13547
|
+
"line": 530
|
|
12666
13548
|
},
|
|
12667
13549
|
"example": "import { createPaperProvisioningAuthority } from \"@kungfu-tech/buildchain/paper\";",
|
|
12668
13550
|
"maturity": "stable",
|
|
@@ -12691,7 +13573,7 @@
|
|
|
12691
13573
|
],
|
|
12692
13574
|
"source": {
|
|
12693
13575
|
"path": "packages/core/paper.js",
|
|
12694
|
-
"line":
|
|
13576
|
+
"line": 2746
|
|
12695
13577
|
},
|
|
12696
13578
|
"example": "import { createPaperResumePlan } from \"@kungfu-tech/buildchain\";",
|
|
12697
13579
|
"maturity": "stable",
|
|
@@ -12720,7 +13602,7 @@
|
|
|
12720
13602
|
],
|
|
12721
13603
|
"source": {
|
|
12722
13604
|
"path": "packages/core/paper.js",
|
|
12723
|
-
"line":
|
|
13605
|
+
"line": 2873
|
|
12724
13606
|
},
|
|
12725
13607
|
"example": "import { executePaperNpmBootstrap } from \"@kungfu-tech/buildchain\";",
|
|
12726
13608
|
"maturity": "stable",
|
|
@@ -12744,7 +13626,7 @@
|
|
|
12744
13626
|
],
|
|
12745
13627
|
"source": {
|
|
12746
13628
|
"path": "packages/core/paper.js",
|
|
12747
|
-
"line":
|
|
13629
|
+
"line": 100
|
|
12748
13630
|
},
|
|
12749
13631
|
"example": "import { PAPER_ALPHA_PLAN_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12750
13632
|
"maturity": "stable",
|
|
@@ -12768,7 +13650,7 @@
|
|
|
12768
13650
|
],
|
|
12769
13651
|
"source": {
|
|
12770
13652
|
"path": "packages/core/paper.js",
|
|
12771
|
-
"line":
|
|
13653
|
+
"line": 99
|
|
12772
13654
|
},
|
|
12773
13655
|
"example": "import { PAPER_BUILD_PLAN_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12774
13656
|
"maturity": "stable",
|
|
@@ -12792,7 +13674,7 @@
|
|
|
12792
13674
|
],
|
|
12793
13675
|
"source": {
|
|
12794
13676
|
"path": "packages/core/paper.js",
|
|
12795
|
-
"line":
|
|
13677
|
+
"line": 92
|
|
12796
13678
|
},
|
|
12797
13679
|
"example": "import { PAPER_MIGRATION_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12798
13680
|
"maturity": "stable",
|
|
@@ -12816,7 +13698,7 @@
|
|
|
12816
13698
|
],
|
|
12817
13699
|
"source": {
|
|
12818
13700
|
"path": "packages/core/paper.js",
|
|
12819
|
-
"line":
|
|
13701
|
+
"line": 95
|
|
12820
13702
|
},
|
|
12821
13703
|
"example": "import { PAPER_NPM_BOOTSTRAP_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12822
13704
|
"maturity": "stable",
|
|
@@ -12840,7 +13722,7 @@
|
|
|
12840
13722
|
],
|
|
12841
13723
|
"source": {
|
|
12842
13724
|
"path": "packages/core/paper.js",
|
|
12843
|
-
"line":
|
|
13725
|
+
"line": 93
|
|
12844
13726
|
},
|
|
12845
13727
|
"example": "import { PAPER_PREFLIGHT_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12846
13728
|
"maturity": "stable",
|
|
@@ -12864,7 +13746,7 @@
|
|
|
12864
13746
|
],
|
|
12865
13747
|
"source": {
|
|
12866
13748
|
"path": "packages/core/paper.js",
|
|
12867
|
-
"line":
|
|
13749
|
+
"line": 97
|
|
12868
13750
|
},
|
|
12869
13751
|
"example": "import { PAPER_PROVISIONING_CONTRACT } from \"@kungfu-tech/buildchain/paper\";",
|
|
12870
13752
|
"maturity": "stable",
|
|
@@ -12888,7 +13770,7 @@
|
|
|
12888
13770
|
],
|
|
12889
13771
|
"source": {
|
|
12890
13772
|
"path": "packages/core/paper.js",
|
|
12891
|
-
"line":
|
|
13773
|
+
"line": 101
|
|
12892
13774
|
},
|
|
12893
13775
|
"example": "import { PAPER_RESUME_PLAN_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12894
13776
|
"maturity": "stable",
|
|
@@ -12912,7 +13794,7 @@
|
|
|
12912
13794
|
],
|
|
12913
13795
|
"source": {
|
|
12914
13796
|
"path": "packages/core/paper.js",
|
|
12915
|
-
"line":
|
|
13797
|
+
"line": 91
|
|
12916
13798
|
},
|
|
12917
13799
|
"example": "import { PAPER_SCAFFOLD_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12918
13800
|
"maturity": "stable",
|
|
@@ -12936,7 +13818,7 @@
|
|
|
12936
13818
|
],
|
|
12937
13819
|
"source": {
|
|
12938
13820
|
"path": "packages/core/paper.js",
|
|
12939
|
-
"line":
|
|
13821
|
+
"line": 104
|
|
12940
13822
|
},
|
|
12941
13823
|
"example": "import { PAPER_STATE_ORDER } from \"@kungfu-tech/buildchain\";",
|
|
12942
13824
|
"maturity": "stable",
|
|
@@ -12960,7 +13842,7 @@
|
|
|
12960
13842
|
],
|
|
12961
13843
|
"source": {
|
|
12962
13844
|
"path": "packages/core/paper.js",
|
|
12963
|
-
"line":
|
|
13845
|
+
"line": 94
|
|
12964
13846
|
},
|
|
12965
13847
|
"example": "import { PAPER_STATUS_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12966
13848
|
"maturity": "stable",
|
|
@@ -12984,7 +13866,7 @@
|
|
|
12984
13866
|
],
|
|
12985
13867
|
"source": {
|
|
12986
13868
|
"path": "packages/core/paper.js",
|
|
12987
|
-
"line":
|
|
13869
|
+
"line": 102
|
|
12988
13870
|
},
|
|
12989
13871
|
"example": "import { PAPER_VISIBILITY_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
12990
13872
|
"maturity": "stable",
|
|
@@ -13013,7 +13895,7 @@
|
|
|
13013
13895
|
],
|
|
13014
13896
|
"source": {
|
|
13015
13897
|
"path": "packages/core/paper.js",
|
|
13016
|
-
"line":
|
|
13898
|
+
"line": 1045
|
|
13017
13899
|
},
|
|
13018
13900
|
"example": "import { planPaperMigration } from \"@kungfu-tech/buildchain\";",
|
|
13019
13901
|
"maturity": "stable",
|
|
@@ -13042,7 +13924,7 @@
|
|
|
13042
13924
|
],
|
|
13043
13925
|
"source": {
|
|
13044
13926
|
"path": "packages/core/paper.js",
|
|
13045
|
-
"line":
|
|
13927
|
+
"line": 723
|
|
13046
13928
|
},
|
|
13047
13929
|
"example": "import { planPaperScaffold } from \"@kungfu-tech/buildchain\";",
|
|
13048
13930
|
"maturity": "stable",
|
|
@@ -13075,7 +13957,7 @@
|
|
|
13075
13957
|
],
|
|
13076
13958
|
"source": {
|
|
13077
13959
|
"path": "packages/core/paper.js",
|
|
13078
|
-
"line":
|
|
13960
|
+
"line": 256
|
|
13079
13961
|
},
|
|
13080
13962
|
"example": "import { resolvePaperRuntimeGitSha } from \"@kungfu-tech/buildchain/paper\";",
|
|
13081
13963
|
"maturity": "stable",
|
|
@@ -13104,7 +13986,7 @@
|
|
|
13104
13986
|
],
|
|
13105
13987
|
"source": {
|
|
13106
13988
|
"path": "packages/core/paper.js",
|
|
13107
|
-
"line":
|
|
13989
|
+
"line": 1161
|
|
13108
13990
|
},
|
|
13109
13991
|
"example": "import { writePaperMigration } from \"@kungfu-tech/buildchain\";",
|
|
13110
13992
|
"maturity": "stable",
|
|
@@ -13133,7 +14015,7 @@
|
|
|
13133
14015
|
],
|
|
13134
14016
|
"source": {
|
|
13135
14017
|
"path": "packages/core/paper.js",
|
|
13136
|
-
"line":
|
|
14018
|
+
"line": 868
|
|
13137
14019
|
},
|
|
13138
14020
|
"example": "import { writePaperScaffold } from \"@kungfu-tech/buildchain\";",
|
|
13139
14021
|
"maturity": "stable",
|
|
@@ -22721,7 +23603,7 @@
|
|
|
22721
23603
|
"specifier": "@kungfu-tech/buildchain/channel-candidate",
|
|
22722
23604
|
"export": "./channel-candidate",
|
|
22723
23605
|
"target": "./packages/core/channel-candidate.js",
|
|
22724
|
-
"digest": "sha256:
|
|
23606
|
+
"digest": "sha256:37f2d3ef241a713e279dc9f8d5018d0d90e9ae847b2f15aaa12c3776a82faf4f",
|
|
22725
23607
|
"summary": "Exact-source channel candidate decisions, same-SHA workflow evidence validation, and deterministic source-lock reference APIs.",
|
|
22726
23608
|
"capabilityGroup": "governance-versioning",
|
|
22727
23609
|
"audience": [
|
|
@@ -23469,7 +24351,7 @@
|
|
|
23469
24351
|
"specifier": "@kungfu-tech/buildchain/paper",
|
|
23470
24352
|
"export": "./paper",
|
|
23471
24353
|
"target": "./packages/core/paper.js",
|
|
23472
|
-
"digest": "sha256:
|
|
24354
|
+
"digest": "sha256:573bc2c8c5ac767103042a02ab8d2f9d67b1e1c9d1756bab7e2c5493981f308a",
|
|
23473
24355
|
"summary": "Unified Paper work, fleet, scaffold, preflight, npm bootstrap, build, Alpha, status, and resume planning APIs.",
|
|
23474
24356
|
"capabilityGroup": "reusable-build",
|
|
23475
24357
|
"audience": [
|
|
@@ -23874,6 +24756,104 @@
|
|
|
23874
24756
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
23875
24757
|
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
23876
24758
|
},
|
|
24759
|
+
{
|
|
24760
|
+
"specifier": "@kungfu-tech/buildchain/next-development-transition",
|
|
24761
|
+
"export": "./next-development-transition",
|
|
24762
|
+
"target": "./packages/core/next-development-transition.js",
|
|
24763
|
+
"digest": "sha256:01b47222bb17fc4a36a66bce74ff11bf2d2ac17c935085aeec93684933849fee",
|
|
24764
|
+
"summary": "Provider-neutral completed-Alpha preservation and rooted next-development state, version-model, idempotency, and local materialization APIs.",
|
|
24765
|
+
"capabilityGroup": "governance-versioning",
|
|
24766
|
+
"audience": [
|
|
24767
|
+
"developer",
|
|
24768
|
+
"agent"
|
|
24769
|
+
],
|
|
24770
|
+
"symbolCount": 13,
|
|
24771
|
+
"symbolIds": [
|
|
24772
|
+
"packages/core/next-development-transition.js#advanceNextDevelopmentTransition",
|
|
24773
|
+
"packages/core/next-development-transition.js#bindNextDevelopmentAnchor",
|
|
24774
|
+
"packages/core/next-development-transition.js#createNextDevelopmentTransition",
|
|
24775
|
+
"packages/core/next-development-transition.js#materializeNextDevelopmentTransition",
|
|
24776
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_ADR",
|
|
24777
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_INVARIANT",
|
|
24778
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_REQUEST_CONTRACT",
|
|
24779
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_STATES",
|
|
24780
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_TRANSITION_CONTRACT",
|
|
24781
|
+
"packages/core/next-development-transition.js#NEXT_DEVELOPMENT_VERSION_MODELS",
|
|
24782
|
+
"packages/core/next-development-transition.js#nextDevelopmentRoot",
|
|
24783
|
+
"packages/core/next-development-transition.js#recordNextDevelopmentMaterialization",
|
|
24784
|
+
"packages/core/next-development-transition.js#validateNextDevelopmentTransition"
|
|
24785
|
+
],
|
|
24786
|
+
"owner": "buildchain-core",
|
|
24787
|
+
"maturity": "stable",
|
|
24788
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
24789
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
24790
|
+
"deprecationReplacement": "",
|
|
24791
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
24792
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
24793
|
+
},
|
|
24794
|
+
{
|
|
24795
|
+
"specifier": "@kungfu-tech/buildchain/next-development-controller",
|
|
24796
|
+
"export": "./next-development-controller",
|
|
24797
|
+
"target": "./packages/core/next-development-controller.js",
|
|
24798
|
+
"digest": "sha256:c51c18eb329067cc33facb37c61a90fa392dddc8401936606df6bf306272f560",
|
|
24799
|
+
"summary": "Durable completed-Alpha child scheduling, fresh-runner checkpoint resume, latest protected-Dev reconciliation, and exact version-root readback APIs.",
|
|
24800
|
+
"capabilityGroup": "governance-versioning",
|
|
24801
|
+
"audience": [
|
|
24802
|
+
"developer",
|
|
24803
|
+
"agent"
|
|
24804
|
+
],
|
|
24805
|
+
"symbolCount": 8,
|
|
24806
|
+
"symbolIds": [
|
|
24807
|
+
"packages/core/next-development-controller.js#createNextDevelopmentController",
|
|
24808
|
+
"packages/core/next-development-controller.js#NEXT_DEVELOPMENT_CONTROLLER_CONTRACT",
|
|
24809
|
+
"packages/core/next-development-controller.js#nextDevelopmentChildKey",
|
|
24810
|
+
"packages/core/next-development-controller.js#nextDevelopmentControllerRoot",
|
|
24811
|
+
"packages/core/next-development-controller.js#reconcileNextDevelopmentController",
|
|
24812
|
+
"packages/core/next-development-controller.js#runNextDevelopmentController",
|
|
24813
|
+
"packages/core/next-development-controller.js#scheduleNextDevelopmentController",
|
|
24814
|
+
"packages/core/next-development-controller.js#validateNextDevelopmentController"
|
|
24815
|
+
],
|
|
24816
|
+
"owner": "buildchain-core",
|
|
24817
|
+
"maturity": "stable",
|
|
24818
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
24819
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
24820
|
+
"deprecationReplacement": "",
|
|
24821
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
24822
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
24823
|
+
},
|
|
24824
|
+
{
|
|
24825
|
+
"specifier": "@kungfu-tech/buildchain/next-development-projection",
|
|
24826
|
+
"export": "./next-development-projection",
|
|
24827
|
+
"target": "./packages/core/next-development-projection.js",
|
|
24828
|
+
"digest": "sha256:f2a2388303181ff28a9a58dd2afa4a5ba45995389c041ba8ab79dd15383687b7",
|
|
24829
|
+
"summary": "Canonical generated config, Agent, and manual projections for the next-development transition contract.",
|
|
24830
|
+
"capabilityGroup": "governance-versioning",
|
|
24831
|
+
"audience": [
|
|
24832
|
+
"developer",
|
|
24833
|
+
"agent"
|
|
24834
|
+
],
|
|
24835
|
+
"symbolCount": 11,
|
|
24836
|
+
"symbolIds": [
|
|
24837
|
+
"packages/core/next-development-projection.js#appendNextDevelopmentToml",
|
|
24838
|
+
"packages/core/next-development-projection.js#assertNextDevelopmentConfig",
|
|
24839
|
+
"packages/core/next-development-projection.js#mergeNextDevelopmentAgentInstructions",
|
|
24840
|
+
"packages/core/next-development-projection.js#NEXT_DEVELOPMENT_AGENT_SECTION_END",
|
|
24841
|
+
"packages/core/next-development-projection.js#NEXT_DEVELOPMENT_AGENT_SECTION_START",
|
|
24842
|
+
"packages/core/next-development-projection.js#NEXT_DEVELOPMENT_LOCAL_COMMAND",
|
|
24843
|
+
"packages/core/next-development-projection.js#nextDevelopmentAgentInstructions",
|
|
24844
|
+
"packages/core/next-development-projection.js#nextDevelopmentManual",
|
|
24845
|
+
"packages/core/next-development-projection.js#nextDevelopmentToml",
|
|
24846
|
+
"packages/core/next-development-projection.js#nextDevelopmentWorkflowHeader",
|
|
24847
|
+
"packages/core/next-development-projection.js#projectNextDevelopmentToml"
|
|
24848
|
+
],
|
|
24849
|
+
"owner": "buildchain-core",
|
|
24850
|
+
"maturity": "stable",
|
|
24851
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
24852
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
24853
|
+
"deprecationReplacement": "",
|
|
24854
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
24855
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
24856
|
+
},
|
|
23877
24857
|
{
|
|
23878
24858
|
"specifier": "@kungfu-tech/buildchain/stable-candidate-ledger",
|
|
23879
24859
|
"export": "./stable-candidate-ledger",
|
|
@@ -23956,7 +24936,7 @@
|
|
|
23956
24936
|
"specifier": "@kungfu-tech/buildchain/release-passport-contract",
|
|
23957
24937
|
"export": "./release-passport-contract",
|
|
23958
24938
|
"target": "./packages/core/release-passport-contract.js",
|
|
23959
|
-
"digest": "sha256:
|
|
24939
|
+
"digest": "sha256:028d755bda8e510b0e443eb0c899e4ebfa1d124b4a6d38234dcdf63b6ab4b59b",
|
|
23960
24940
|
"summary": "Standalone release passport JSON Schema, ownership/check manifest, and structural validation APIs.",
|
|
23961
24941
|
"capabilityGroup": "release-passport-trust",
|
|
23962
24942
|
"audience": [
|
|
@@ -24318,7 +25298,7 @@
|
|
|
24318
25298
|
{
|
|
24319
25299
|
"id": "node-api-reference",
|
|
24320
25300
|
"path": "docs/node-api-reference.md",
|
|
24321
|
-
"digest": "sha256:
|
|
25301
|
+
"digest": "sha256:cf2137143bb567a11430cf35c3faaff7e16861af4e68554af5cbea1b3a0a1077"
|
|
24322
25302
|
},
|
|
24323
25303
|
{
|
|
24324
25304
|
"id": "build-facts",
|