@kungfu-tech/buildchain 3.0.8 → 3.0.9-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/actions/promote-buildchain-ref/README.md +8 -7
- package/bin/buildchain.mjs +34 -33
- package/bin/internal/trust-release-release-handlers.mjs +5 -0
- package/dist/site/agent-index.json +0 -1
- package/dist/site/artifact-schemas.json +0 -2
- package/dist/site/badge-endpoint-registry.json +9 -9
- package/dist/site/badges/v1/kfd-8/aligned.json +1 -1
- package/dist/site/badges/v1/kfd-8/declared.json +1 -1
- package/dist/site/badges/v1/kfd-8/downgraded.json +1 -1
- package/dist/site/badges/v1/kfd-8/draft.json +1 -1
- package/dist/site/badges/v1/kfd-8/failed.json +1 -1
- package/dist/site/badges/v1/kfd-8/missing.json +1 -1
- package/dist/site/badges/v1/kfd-8/passed.json +1 -1
- package/dist/site/badges/v1/kfd-8/planned.json +1 -1
- package/dist/site/buildchain-contract.json +27 -22
- package/dist/site/buildchain-site.json +38 -28
- package/dist/site/capability-registry.json +1 -1
- package/dist/site/cli-registry.json +8 -7
- package/dist/site/controller-registry.json +6 -2
- package/dist/site/kfd-claims.json +34 -7
- package/dist/site/kfd-upstream-aggregate.json +10 -10
- package/dist/site/manual-registry.json +6 -6
- package/dist/site/node-api-registry.json +754 -228
- package/dist/site/page-registry.json +28 -18
- package/dist/site/public-surface-audit.json +19 -9
- package/dist/site/publication-registry.json +4 -4
- package/dist/site/release-passport-check-manifest.json +33 -5
- package/dist/site/release-provenance.json +2 -1
- package/dist/site/schemas/release-passport-v1.schema.json +3 -0
- package/dist/site/site-manifest.json +10 -10
- package/dist/site/workflow-registry.json +19 -9
- package/docs/aws-us-elastic-runner-burst-plane.md +15 -3
- package/docs/cli-reference.md +6 -6
- package/docs/cli.md +2 -3
- package/docs/dev-alpha-candidate-patrol.md +45 -20
- package/docs/kfd-support.md +7 -7
- package/docs/node-api-reference.md +179 -140
- package/docs/release-passport.md +18 -12
- package/docs/release-train.md +8 -0
- package/package.json +4 -3
- package/packages/core/artifact-verification-envelope.js +114 -0
- package/packages/core/dev-alpha-active-release-train.js +460 -0
- package/packages/core/dev-alpha-candidate-selection.js +181 -0
- package/packages/core/index.js +4 -5
- package/packages/core/kfd-adopter-manifest.js +390 -0
- package/packages/core/kfd-product-gates.js +0 -300
- package/packages/core/release-passport-contract.js +219 -6
- package/packages/core/release-passport.js +139 -242
- package/scripts/aws-macos-jit-controller-core.mjs +76 -0
- package/scripts/aws-macos-jit-controller.mjs +29 -0
- package/scripts/aws-macos-jit-source-rebind.mjs +503 -0
- package/scripts/buildchain-cli-help.mjs +4 -2
- package/scripts/check-inventory.mjs +2 -2
- package/scripts/dev-alpha-candidate-patrol.mjs +196 -201
- package/scripts/generate-site-bundle.mjs +1 -8
- package/scripts/site-capability-metadata.mjs +3 -1
- package/dist/site/schemas/kfd-support-projection-v1.schema.json +0 -106
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
],
|
|
765
765
|
"source": {
|
|
766
766
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
767
|
-
"line":
|
|
767
|
+
"line": 12
|
|
768
768
|
},
|
|
769
769
|
"example": "import { ARTIFACT_VERIFICATION_ENVELOPE_CHECK_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
770
770
|
"maturity": "stable",
|
|
@@ -788,7 +788,7 @@
|
|
|
788
788
|
],
|
|
789
789
|
"source": {
|
|
790
790
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
791
|
-
"line":
|
|
791
|
+
"line": 10
|
|
792
792
|
},
|
|
793
793
|
"example": "import { ARTIFACT_VERIFICATION_ENVELOPE_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
794
794
|
"maturity": "stable",
|
|
@@ -817,7 +817,7 @@
|
|
|
817
817
|
],
|
|
818
818
|
"source": {
|
|
819
819
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
820
|
-
"line":
|
|
820
|
+
"line": 59
|
|
821
821
|
},
|
|
822
822
|
"example": "import { artifactVerificationEnvelopeDigest } from \"@kungfu-tech/buildchain\";",
|
|
823
823
|
"maturity": "stable",
|
|
@@ -826,6 +826,83 @@
|
|
|
826
826
|
"agent"
|
|
827
827
|
]
|
|
828
828
|
},
|
|
829
|
+
{
|
|
830
|
+
"id": "packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
831
|
+
"name": "createKfdAdopterReleaseBinding",
|
|
832
|
+
"kind": "function",
|
|
833
|
+
"signature": "function createKfdAdopterReleaseBinding({ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedSourceSha = \"\", } = {})",
|
|
834
|
+
"parameters": [
|
|
835
|
+
{
|
|
836
|
+
"name": "parameter1",
|
|
837
|
+
"signature": "{ manifest, manifestGate, legacyProjection, manifestPath = \"kfd-adopter-manifest.json\", gatePath = \"kfd-adopter-manifest-gate.json\", legacyProjectionPath = \"kfd-support.json\", expectedSourceSha = \"\", } = {}"
|
|
838
|
+
}
|
|
839
|
+
],
|
|
840
|
+
"returns": "unknown",
|
|
841
|
+
"errors": [
|
|
842
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
843
|
+
],
|
|
844
|
+
"sideEffects": [
|
|
845
|
+
"none-detected-by-static-source-scan"
|
|
846
|
+
],
|
|
847
|
+
"source": {
|
|
848
|
+
"path": "packages/core/artifact-verification-envelope.js",
|
|
849
|
+
"line": 441
|
|
850
|
+
},
|
|
851
|
+
"example": "import { createKfdAdopterReleaseBinding } from \"@kungfu-tech/buildchain\";",
|
|
852
|
+
"maturity": "stable",
|
|
853
|
+
"audience": [
|
|
854
|
+
"developer",
|
|
855
|
+
"agent"
|
|
856
|
+
]
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
"id": "packages/core/artifact-verification-envelope.js#installedKfdPackageArtifactRoot",
|
|
860
|
+
"name": "installedKfdPackageArtifactRoot",
|
|
861
|
+
"kind": "function",
|
|
862
|
+
"signature": "function installedKfdPackageArtifactRoot()",
|
|
863
|
+
"parameters": [],
|
|
864
|
+
"returns": "unknown",
|
|
865
|
+
"errors": [
|
|
866
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
867
|
+
],
|
|
868
|
+
"sideEffects": [
|
|
869
|
+
"none-detected-by-static-source-scan"
|
|
870
|
+
],
|
|
871
|
+
"source": {
|
|
872
|
+
"path": "packages/core/artifact-verification-envelope.js",
|
|
873
|
+
"line": 397
|
|
874
|
+
},
|
|
875
|
+
"example": "import { installedKfdPackageArtifactRoot } from \"@kungfu-tech/buildchain\";",
|
|
876
|
+
"maturity": "stable",
|
|
877
|
+
"audience": [
|
|
878
|
+
"developer",
|
|
879
|
+
"agent"
|
|
880
|
+
]
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"id": "packages/core/artifact-verification-envelope.js#KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
884
|
+
"name": "KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
885
|
+
"kind": "constant",
|
|
886
|
+
"signature": "const KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
887
|
+
"parameters": [],
|
|
888
|
+
"returns": "value",
|
|
889
|
+
"errors": [
|
|
890
|
+
"Import does not declare a throw contract."
|
|
891
|
+
],
|
|
892
|
+
"sideEffects": [
|
|
893
|
+
"none-on-import"
|
|
894
|
+
],
|
|
895
|
+
"source": {
|
|
896
|
+
"path": "packages/core/artifact-verification-envelope.js",
|
|
897
|
+
"line": 16
|
|
898
|
+
},
|
|
899
|
+
"example": "import { KFD_ADOPTER_RELEASE_BINDING_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
900
|
+
"maturity": "stable",
|
|
901
|
+
"audience": [
|
|
902
|
+
"developer",
|
|
903
|
+
"agent"
|
|
904
|
+
]
|
|
905
|
+
},
|
|
829
906
|
{
|
|
830
907
|
"id": "packages/core/artifact-verification-envelope.js#KFX_ADMISSION_INPUTS_CONTRACT",
|
|
831
908
|
"name": "KFX_ADMISSION_INPUTS_CONTRACT",
|
|
@@ -841,7 +918,7 @@
|
|
|
841
918
|
],
|
|
842
919
|
"source": {
|
|
843
920
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
844
|
-
"line":
|
|
921
|
+
"line": 14
|
|
845
922
|
},
|
|
846
923
|
"example": "import { KFX_ADMISSION_INPUTS_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
847
924
|
"maturity": "stable",
|
|
@@ -870,7 +947,7 @@
|
|
|
870
947
|
],
|
|
871
948
|
"source": {
|
|
872
949
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
873
|
-
"line":
|
|
950
|
+
"line": 368
|
|
874
951
|
},
|
|
875
952
|
"example": "import { projectArtifactVerificationEnvelopeToKfx } from \"@kungfu-tech/buildchain\";",
|
|
876
953
|
"maturity": "stable",
|
|
@@ -899,7 +976,7 @@
|
|
|
899
976
|
],
|
|
900
977
|
"source": {
|
|
901
978
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
902
|
-
"line":
|
|
979
|
+
"line": 323
|
|
903
980
|
},
|
|
904
981
|
"example": "import { sealArtifactVerificationReport } from \"@kungfu-tech/buildchain\";",
|
|
905
982
|
"maturity": "stable",
|
|
@@ -908,6 +985,39 @@
|
|
|
908
985
|
"agent"
|
|
909
986
|
]
|
|
910
987
|
},
|
|
988
|
+
{
|
|
989
|
+
"id": "packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
990
|
+
"name": "validateKfdAdopterReleaseBinding",
|
|
991
|
+
"kind": "function",
|
|
992
|
+
"signature": "function validateKfdAdopterReleaseBinding(binding, { manifest, manifestGate, legacyProjection, expectedSourceSha = \"\", } = {})",
|
|
993
|
+
"parameters": [
|
|
994
|
+
{
|
|
995
|
+
"name": "binding",
|
|
996
|
+
"signature": "binding"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"name": "parameter2",
|
|
1000
|
+
"signature": "{ manifest, manifestGate, legacyProjection, expectedSourceSha = \"\", } = {}"
|
|
1001
|
+
}
|
|
1002
|
+
],
|
|
1003
|
+
"returns": "unknown",
|
|
1004
|
+
"errors": [
|
|
1005
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
1006
|
+
],
|
|
1007
|
+
"sideEffects": [
|
|
1008
|
+
"none-detected-by-static-source-scan"
|
|
1009
|
+
],
|
|
1010
|
+
"source": {
|
|
1011
|
+
"path": "packages/core/artifact-verification-envelope.js",
|
|
1012
|
+
"line": 467
|
|
1013
|
+
},
|
|
1014
|
+
"example": "import { validateKfdAdopterReleaseBinding } from \"@kungfu-tech/buildchain\";",
|
|
1015
|
+
"maturity": "stable",
|
|
1016
|
+
"audience": [
|
|
1017
|
+
"developer",
|
|
1018
|
+
"agent"
|
|
1019
|
+
]
|
|
1020
|
+
},
|
|
911
1021
|
{
|
|
912
1022
|
"id": "packages/core/artifact-verification-envelope.js#verifyArtifactVerificationEnvelope",
|
|
913
1023
|
"name": "verifyArtifactVerificationEnvelope",
|
|
@@ -928,7 +1038,7 @@
|
|
|
928
1038
|
],
|
|
929
1039
|
"source": {
|
|
930
1040
|
"path": "packages/core/artifact-verification-envelope.js",
|
|
931
|
-
"line":
|
|
1041
|
+
"line": 153
|
|
932
1042
|
},
|
|
933
1043
|
"example": "import { verifyArtifactVerificationEnvelope } from \"@kungfu-tech/buildchain\";",
|
|
934
1044
|
"maturity": "stable",
|
|
@@ -8705,6 +8815,178 @@
|
|
|
8705
8815
|
"agent"
|
|
8706
8816
|
]
|
|
8707
8817
|
},
|
|
8818
|
+
{
|
|
8819
|
+
"id": "packages/core/kfd-adopter-manifest.js#createKfdAdopterManifestGate",
|
|
8820
|
+
"name": "createKfdAdopterManifestGate",
|
|
8821
|
+
"kind": "function",
|
|
8822
|
+
"signature": "function createKfdAdopterManifestGate({ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {})",
|
|
8823
|
+
"parameters": [
|
|
8824
|
+
{
|
|
8825
|
+
"name": "parameter1",
|
|
8826
|
+
"signature": "{ manifest, packageArtifactRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/adopter-manifest.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), maxAgeSeconds = 86400, } = {}"
|
|
8827
|
+
}
|
|
8828
|
+
],
|
|
8829
|
+
"returns": "unknown",
|
|
8830
|
+
"errors": [
|
|
8831
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
8832
|
+
],
|
|
8833
|
+
"sideEffects": [
|
|
8834
|
+
"none-detected-by-static-source-scan"
|
|
8835
|
+
],
|
|
8836
|
+
"source": {
|
|
8837
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8838
|
+
"line": 209
|
|
8839
|
+
},
|
|
8840
|
+
"example": "import { createKfdAdopterManifestGate } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8841
|
+
"maturity": "stable",
|
|
8842
|
+
"audience": [
|
|
8843
|
+
"developer",
|
|
8844
|
+
"agent"
|
|
8845
|
+
]
|
|
8846
|
+
},
|
|
8847
|
+
{
|
|
8848
|
+
"id": "packages/core/kfd-adopter-manifest.js#createKfdLegacySupportMatrixProjection",
|
|
8849
|
+
"name": "createKfdLegacySupportMatrixProjection",
|
|
8850
|
+
"kind": "function",
|
|
8851
|
+
"signature": "function createKfdLegacySupportMatrixProjection({ manifest, manifestGate } = {})",
|
|
8852
|
+
"parameters": [
|
|
8853
|
+
{
|
|
8854
|
+
"name": "parameter1",
|
|
8855
|
+
"signature": "{ manifest, manifestGate } = {}"
|
|
8856
|
+
}
|
|
8857
|
+
],
|
|
8858
|
+
"returns": "unknown",
|
|
8859
|
+
"errors": [
|
|
8860
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
8861
|
+
],
|
|
8862
|
+
"sideEffects": [
|
|
8863
|
+
"none-detected-by-static-source-scan"
|
|
8864
|
+
],
|
|
8865
|
+
"source": {
|
|
8866
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8867
|
+
"line": 327
|
|
8868
|
+
},
|
|
8869
|
+
"example": "import { createKfdLegacySupportMatrixProjection } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8870
|
+
"maturity": "stable",
|
|
8871
|
+
"audience": [
|
|
8872
|
+
"developer",
|
|
8873
|
+
"agent"
|
|
8874
|
+
]
|
|
8875
|
+
},
|
|
8876
|
+
{
|
|
8877
|
+
"id": "packages/core/kfd-adopter-manifest.js#KFD_ADOPTER_MANIFEST_GATE_CONTRACT",
|
|
8878
|
+
"name": "KFD_ADOPTER_MANIFEST_GATE_CONTRACT",
|
|
8879
|
+
"kind": "constant",
|
|
8880
|
+
"signature": "const KFD_ADOPTER_MANIFEST_GATE_CONTRACT",
|
|
8881
|
+
"parameters": [],
|
|
8882
|
+
"returns": "value",
|
|
8883
|
+
"errors": [
|
|
8884
|
+
"Import does not declare a throw contract."
|
|
8885
|
+
],
|
|
8886
|
+
"sideEffects": [
|
|
8887
|
+
"none-on-import"
|
|
8888
|
+
],
|
|
8889
|
+
"source": {
|
|
8890
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8891
|
+
"line": 18
|
|
8892
|
+
},
|
|
8893
|
+
"example": "import { KFD_ADOPTER_MANIFEST_GATE_CONTRACT } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8894
|
+
"maturity": "stable",
|
|
8895
|
+
"audience": [
|
|
8896
|
+
"developer",
|
|
8897
|
+
"agent"
|
|
8898
|
+
]
|
|
8899
|
+
},
|
|
8900
|
+
{
|
|
8901
|
+
"id": "packages/core/kfd-adopter-manifest.js#KFD_LEGACY_SUPPORT_MATRIX_CONTRACT",
|
|
8902
|
+
"name": "KFD_LEGACY_SUPPORT_MATRIX_CONTRACT",
|
|
8903
|
+
"kind": "constant",
|
|
8904
|
+
"signature": "const KFD_LEGACY_SUPPORT_MATRIX_CONTRACT",
|
|
8905
|
+
"parameters": [],
|
|
8906
|
+
"returns": "value",
|
|
8907
|
+
"errors": [
|
|
8908
|
+
"Import does not declare a throw contract."
|
|
8909
|
+
],
|
|
8910
|
+
"sideEffects": [
|
|
8911
|
+
"none-on-import"
|
|
8912
|
+
],
|
|
8913
|
+
"source": {
|
|
8914
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8915
|
+
"line": 20
|
|
8916
|
+
},
|
|
8917
|
+
"example": "import { KFD_LEGACY_SUPPORT_MATRIX_CONTRACT } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8918
|
+
"maturity": "stable",
|
|
8919
|
+
"audience": [
|
|
8920
|
+
"developer",
|
|
8921
|
+
"agent"
|
|
8922
|
+
]
|
|
8923
|
+
},
|
|
8924
|
+
{
|
|
8925
|
+
"id": "packages/core/kfd-adopter-manifest.js#validateKfdAdopterManifestGate",
|
|
8926
|
+
"name": "validateKfdAdopterManifestGate",
|
|
8927
|
+
"kind": "function",
|
|
8928
|
+
"signature": "function validateKfdAdopterManifestGate(gate, { expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {})",
|
|
8929
|
+
"parameters": [
|
|
8930
|
+
{
|
|
8931
|
+
"name": "gate",
|
|
8932
|
+
"signature": "gate"
|
|
8933
|
+
},
|
|
8934
|
+
{
|
|
8935
|
+
"name": "parameter2",
|
|
8936
|
+
"signature": "{ expectedSourceSha = \"\", checkedAt = gate?.checkedAt || new Date().toISOString(), } = {}"
|
|
8937
|
+
}
|
|
8938
|
+
],
|
|
8939
|
+
"returns": "unknown",
|
|
8940
|
+
"errors": [
|
|
8941
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
8942
|
+
],
|
|
8943
|
+
"sideEffects": [
|
|
8944
|
+
"none-detected-by-static-source-scan"
|
|
8945
|
+
],
|
|
8946
|
+
"source": {
|
|
8947
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8948
|
+
"line": 279
|
|
8949
|
+
},
|
|
8950
|
+
"example": "import { validateKfdAdopterManifestGate } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8951
|
+
"maturity": "stable",
|
|
8952
|
+
"audience": [
|
|
8953
|
+
"developer",
|
|
8954
|
+
"agent"
|
|
8955
|
+
]
|
|
8956
|
+
},
|
|
8957
|
+
{
|
|
8958
|
+
"id": "packages/core/kfd-adopter-manifest.js#validateKfdLegacySupportMatrixProjection",
|
|
8959
|
+
"name": "validateKfdLegacySupportMatrixProjection",
|
|
8960
|
+
"kind": "function",
|
|
8961
|
+
"signature": "function validateKfdLegacySupportMatrixProjection(matrix, { manifest, manifestGate } = {})",
|
|
8962
|
+
"parameters": [
|
|
8963
|
+
{
|
|
8964
|
+
"name": "matrix",
|
|
8965
|
+
"signature": "matrix"
|
|
8966
|
+
},
|
|
8967
|
+
{
|
|
8968
|
+
"name": "parameter2",
|
|
8969
|
+
"signature": "{ manifest, manifestGate } = {}"
|
|
8970
|
+
}
|
|
8971
|
+
],
|
|
8972
|
+
"returns": "unknown",
|
|
8973
|
+
"errors": [
|
|
8974
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
8975
|
+
],
|
|
8976
|
+
"sideEffects": [
|
|
8977
|
+
"none-detected-by-static-source-scan"
|
|
8978
|
+
],
|
|
8979
|
+
"source": {
|
|
8980
|
+
"path": "packages/core/kfd-adopter-manifest.js",
|
|
8981
|
+
"line": 381
|
|
8982
|
+
},
|
|
8983
|
+
"example": "import { validateKfdLegacySupportMatrixProjection } from \"@kungfu-tech/buildchain/kfd-adopter-manifest\";",
|
|
8984
|
+
"maturity": "stable",
|
|
8985
|
+
"audience": [
|
|
8986
|
+
"developer",
|
|
8987
|
+
"agent"
|
|
8988
|
+
]
|
|
8989
|
+
},
|
|
8708
8990
|
{
|
|
8709
8991
|
"id": "packages/core/kfd-agent-hub.js#explainKfdAgentHub",
|
|
8710
8992
|
"name": "explainKfdAgentHub",
|
|
@@ -9534,35 +9816,6 @@
|
|
|
9534
9816
|
"agent"
|
|
9535
9817
|
]
|
|
9536
9818
|
},
|
|
9537
|
-
{
|
|
9538
|
-
"id": "packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
9539
|
-
"name": "createKfdSupportProjection",
|
|
9540
|
-
"kind": "function",
|
|
9541
|
-
"signature": "function createKfdSupportProjection({ matrix, matrixRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/support-matrix.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), } = {})",
|
|
9542
|
-
"parameters": [
|
|
9543
|
-
{
|
|
9544
|
-
"name": "parameter1",
|
|
9545
|
-
"signature": "{ matrix, matrixRoot = \"\", gateResults = [], authorityPath = \".buildchain/kfd/support-matrix.json\", expectedSourceSha = \"\", checkedAt = new Date().toISOString(), } = {}"
|
|
9546
|
-
}
|
|
9547
|
-
],
|
|
9548
|
-
"returns": "unknown",
|
|
9549
|
-
"errors": [
|
|
9550
|
-
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
9551
|
-
],
|
|
9552
|
-
"sideEffects": [
|
|
9553
|
-
"none-detected-by-static-source-scan"
|
|
9554
|
-
],
|
|
9555
|
-
"source": {
|
|
9556
|
-
"path": "packages/core/kfd-product-gates.js",
|
|
9557
|
-
"line": 716
|
|
9558
|
-
},
|
|
9559
|
-
"example": "import { createKfdSupportProjection } from \"@kungfu-tech/buildchain\";",
|
|
9560
|
-
"maturity": "stable",
|
|
9561
|
-
"audience": [
|
|
9562
|
-
"developer",
|
|
9563
|
-
"agent"
|
|
9564
|
-
]
|
|
9565
|
-
},
|
|
9566
9819
|
{
|
|
9567
9820
|
"id": "packages/core/kfd-product-gates.js#evaluateKfdProductGate",
|
|
9568
9821
|
"name": "evaluateKfdProductGate",
|
|
@@ -9583,7 +9836,7 @@
|
|
|
9583
9836
|
],
|
|
9584
9837
|
"source": {
|
|
9585
9838
|
"path": "packages/core/kfd-product-gates.js",
|
|
9586
|
-
"line":
|
|
9839
|
+
"line": 419
|
|
9587
9840
|
},
|
|
9588
9841
|
"example": "import { evaluateKfdProductGate } from \"@kungfu-tech/buildchain\";",
|
|
9589
9842
|
"maturity": "stable",
|
|
@@ -9655,7 +9908,7 @@
|
|
|
9655
9908
|
],
|
|
9656
9909
|
"source": {
|
|
9657
9910
|
"path": "packages/core/kfd-product-gates.js",
|
|
9658
|
-
"line":
|
|
9911
|
+
"line": 51
|
|
9659
9912
|
},
|
|
9660
9913
|
"example": "import { KFD_PRODUCT_GATE_INPUT_SCHEMA } from \"@kungfu-tech/buildchain\";",
|
|
9661
9914
|
"maturity": "stable",
|
|
@@ -9679,7 +9932,7 @@
|
|
|
9679
9932
|
],
|
|
9680
9933
|
"source": {
|
|
9681
9934
|
"path": "packages/core/kfd-product-gates.js",
|
|
9682
|
-
"line":
|
|
9935
|
+
"line": 13
|
|
9683
9936
|
},
|
|
9684
9937
|
"example": "import { KFD_PRODUCT_GATE_INPUT_SCHEMA_ID } from \"@kungfu-tech/buildchain\";",
|
|
9685
9938
|
"maturity": "stable",
|
|
@@ -9688,78 +9941,6 @@
|
|
|
9688
9941
|
"agent"
|
|
9689
9942
|
]
|
|
9690
9943
|
},
|
|
9691
|
-
{
|
|
9692
|
-
"id": "packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
9693
|
-
"name": "KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
9694
|
-
"kind": "constant",
|
|
9695
|
-
"signature": "const KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
9696
|
-
"parameters": [],
|
|
9697
|
-
"returns": "value",
|
|
9698
|
-
"errors": [
|
|
9699
|
-
"Import does not declare a throw contract."
|
|
9700
|
-
],
|
|
9701
|
-
"sideEffects": [
|
|
9702
|
-
"none-on-import"
|
|
9703
|
-
],
|
|
9704
|
-
"source": {
|
|
9705
|
-
"path": "packages/core/kfd-product-gates.js",
|
|
9706
|
-
"line": 13
|
|
9707
|
-
},
|
|
9708
|
-
"example": "import { KFD_SUPPORT_PROJECTION_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
9709
|
-
"maturity": "stable",
|
|
9710
|
-
"audience": [
|
|
9711
|
-
"developer",
|
|
9712
|
-
"agent"
|
|
9713
|
-
]
|
|
9714
|
-
},
|
|
9715
|
-
{
|
|
9716
|
-
"id": "packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
9717
|
-
"name": "KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
9718
|
-
"kind": "constant",
|
|
9719
|
-
"signature": "const KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
9720
|
-
"parameters": [],
|
|
9721
|
-
"returns": "value",
|
|
9722
|
-
"errors": [
|
|
9723
|
-
"Import does not declare a throw contract."
|
|
9724
|
-
],
|
|
9725
|
-
"sideEffects": [
|
|
9726
|
-
"none-on-import"
|
|
9727
|
-
],
|
|
9728
|
-
"source": {
|
|
9729
|
-
"path": "packages/core/kfd-product-gates.js",
|
|
9730
|
-
"line": 130
|
|
9731
|
-
},
|
|
9732
|
-
"example": "import { KFD_SUPPORT_PROJECTION_SCHEMA } from \"@kungfu-tech/buildchain\";",
|
|
9733
|
-
"maturity": "stable",
|
|
9734
|
-
"audience": [
|
|
9735
|
-
"developer",
|
|
9736
|
-
"agent"
|
|
9737
|
-
]
|
|
9738
|
-
},
|
|
9739
|
-
{
|
|
9740
|
-
"id": "packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
9741
|
-
"name": "KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
9742
|
-
"kind": "constant",
|
|
9743
|
-
"signature": "const KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
9744
|
-
"parameters": [],
|
|
9745
|
-
"returns": "value",
|
|
9746
|
-
"errors": [
|
|
9747
|
-
"Import does not declare a throw contract."
|
|
9748
|
-
],
|
|
9749
|
-
"sideEffects": [
|
|
9750
|
-
"none-on-import"
|
|
9751
|
-
],
|
|
9752
|
-
"source": {
|
|
9753
|
-
"path": "packages/core/kfd-product-gates.js",
|
|
9754
|
-
"line": 17
|
|
9755
|
-
},
|
|
9756
|
-
"example": "import { KFD_SUPPORT_PROJECTION_SCHEMA_ID } from \"@kungfu-tech/buildchain\";",
|
|
9757
|
-
"maturity": "stable",
|
|
9758
|
-
"audience": [
|
|
9759
|
-
"developer",
|
|
9760
|
-
"agent"
|
|
9761
|
-
]
|
|
9762
|
-
},
|
|
9763
9944
|
{
|
|
9764
9945
|
"id": "packages/core/kfd-product-gates.js#kfdProductGateDigest",
|
|
9765
9946
|
"name": "kfdProductGateDigest",
|
|
@@ -9780,7 +9961,7 @@
|
|
|
9780
9961
|
],
|
|
9781
9962
|
"source": {
|
|
9782
9963
|
"path": "packages/core/kfd-product-gates.js",
|
|
9783
|
-
"line":
|
|
9964
|
+
"line": 142
|
|
9784
9965
|
},
|
|
9785
9966
|
"example": "import { kfdProductGateDigest } from \"@kungfu-tech/buildchain\";",
|
|
9786
9967
|
"maturity": "stable",
|
|
@@ -9804,7 +9985,7 @@
|
|
|
9804
9985
|
],
|
|
9805
9986
|
"source": {
|
|
9806
9987
|
"path": "packages/core/kfd-product-gates.js",
|
|
9807
|
-
"line":
|
|
9988
|
+
"line": 561
|
|
9808
9989
|
},
|
|
9809
9990
|
"example": "import { kfdProductGates } from \"@kungfu-tech/buildchain\";",
|
|
9810
9991
|
"maturity": "stable",
|
|
@@ -9837,7 +10018,7 @@
|
|
|
9837
10018
|
],
|
|
9838
10019
|
"source": {
|
|
9839
10020
|
"path": "packages/core/kfd-product-gates.js",
|
|
9840
|
-
"line":
|
|
10021
|
+
"line": 519
|
|
9841
10022
|
},
|
|
9842
10023
|
"example": "import { validateKfdProductGateResult } from \"@kungfu-tech/buildchain\";",
|
|
9843
10024
|
"maturity": "stable",
|
|
@@ -9846,39 +10027,6 @@
|
|
|
9846
10027
|
"agent"
|
|
9847
10028
|
]
|
|
9848
10029
|
},
|
|
9849
|
-
{
|
|
9850
|
-
"id": "packages/core/kfd-product-gates.js#validateKfdSupportProjection",
|
|
9851
|
-
"name": "validateKfdSupportProjection",
|
|
9852
|
-
"kind": "function",
|
|
9853
|
-
"signature": "function validateKfdSupportProjection(projection, { expectedSourceSha = \"\", checkedAt = new Date().toISOString(), } = {})",
|
|
9854
|
-
"parameters": [
|
|
9855
|
-
{
|
|
9856
|
-
"name": "projection",
|
|
9857
|
-
"signature": "projection"
|
|
9858
|
-
},
|
|
9859
|
-
{
|
|
9860
|
-
"name": "parameter2",
|
|
9861
|
-
"signature": "{ expectedSourceSha = \"\", checkedAt = new Date().toISOString(), } = {}"
|
|
9862
|
-
}
|
|
9863
|
-
],
|
|
9864
|
-
"returns": "unknown",
|
|
9865
|
-
"errors": [
|
|
9866
|
-
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
9867
|
-
],
|
|
9868
|
-
"sideEffects": [
|
|
9869
|
-
"none-detected-by-static-source-scan"
|
|
9870
|
-
],
|
|
9871
|
-
"source": {
|
|
9872
|
-
"path": "packages/core/kfd-product-gates.js",
|
|
9873
|
-
"line": 796
|
|
9874
|
-
},
|
|
9875
|
-
"example": "import { validateKfdSupportProjection } from \"@kungfu-tech/buildchain\";",
|
|
9876
|
-
"maturity": "stable",
|
|
9877
|
-
"audience": [
|
|
9878
|
-
"developer",
|
|
9879
|
-
"agent"
|
|
9880
|
-
]
|
|
9881
|
-
},
|
|
9882
10030
|
{
|
|
9883
10031
|
"id": "packages/core/kfd-product-gates.js#verifyKfdRecord",
|
|
9884
10032
|
"name": "verifyKfdRecord",
|
|
@@ -9899,7 +10047,7 @@
|
|
|
9899
10047
|
],
|
|
9900
10048
|
"source": {
|
|
9901
10049
|
"path": "packages/core/kfd-product-gates.js",
|
|
9902
|
-
"line":
|
|
10050
|
+
"line": 262
|
|
9903
10051
|
},
|
|
9904
10052
|
"example": "import { verifyKfdRecord } from \"@kungfu-tech/buildchain\";",
|
|
9905
10053
|
"maturity": "stable",
|
|
@@ -16633,6 +16781,64 @@
|
|
|
16633
16781
|
"agent"
|
|
16634
16782
|
]
|
|
16635
16783
|
},
|
|
16784
|
+
{
|
|
16785
|
+
"id": "packages/core/release-passport-contract.js#buildReleaseArtifactEvidence",
|
|
16786
|
+
"name": "buildReleaseArtifactEvidence",
|
|
16787
|
+
"kind": "function",
|
|
16788
|
+
"signature": "function buildReleaseArtifactEvidence({ normalizedAssets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {}, kfdAdopter } = {})",
|
|
16789
|
+
"parameters": [
|
|
16790
|
+
{
|
|
16791
|
+
"name": "parameter1",
|
|
16792
|
+
"signature": "{ normalizedAssets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {}, kfdAdopter } = {}"
|
|
16793
|
+
}
|
|
16794
|
+
],
|
|
16795
|
+
"returns": "unknown",
|
|
16796
|
+
"errors": [
|
|
16797
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16798
|
+
],
|
|
16799
|
+
"sideEffects": [
|
|
16800
|
+
"none-detected-by-static-source-scan"
|
|
16801
|
+
],
|
|
16802
|
+
"source": {
|
|
16803
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16804
|
+
"line": 359
|
|
16805
|
+
},
|
|
16806
|
+
"example": "import { buildReleaseArtifactEvidence } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16807
|
+
"maturity": "stable",
|
|
16808
|
+
"audience": [
|
|
16809
|
+
"developer",
|
|
16810
|
+
"agent"
|
|
16811
|
+
]
|
|
16812
|
+
},
|
|
16813
|
+
{
|
|
16814
|
+
"id": "packages/core/release-passport-contract.js#collectKfdAdopterReleaseEvidence",
|
|
16815
|
+
"name": "collectKfdAdopterReleaseEvidence",
|
|
16816
|
+
"kind": "function",
|
|
16817
|
+
"signature": "function collectKfdAdopterReleaseEvidence({ manifest, gateResults = [], comparisonMatrix, sourceSha = \"\", checkedAt } = {})",
|
|
16818
|
+
"parameters": [
|
|
16819
|
+
{
|
|
16820
|
+
"name": "parameter1",
|
|
16821
|
+
"signature": "{ manifest, gateResults = [], comparisonMatrix, sourceSha = \"\", checkedAt } = {}"
|
|
16822
|
+
}
|
|
16823
|
+
],
|
|
16824
|
+
"returns": "unknown",
|
|
16825
|
+
"errors": [
|
|
16826
|
+
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
16827
|
+
],
|
|
16828
|
+
"sideEffects": [
|
|
16829
|
+
"none-detected-by-static-source-scan"
|
|
16830
|
+
],
|
|
16831
|
+
"source": {
|
|
16832
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16833
|
+
"line": 408
|
|
16834
|
+
},
|
|
16835
|
+
"example": "import { collectKfdAdopterReleaseEvidence } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16836
|
+
"maturity": "stable",
|
|
16837
|
+
"audience": [
|
|
16838
|
+
"developer",
|
|
16839
|
+
"agent"
|
|
16840
|
+
]
|
|
16841
|
+
},
|
|
16636
16842
|
{
|
|
16637
16843
|
"id": "packages/core/release-passport-contract.js#createReleasePassportCheckManifest",
|
|
16638
16844
|
"name": "createReleasePassportCheckManifest",
|
|
@@ -16653,7 +16859,7 @@
|
|
|
16653
16859
|
],
|
|
16654
16860
|
"source": {
|
|
16655
16861
|
"path": "packages/core/release-passport-contract.js",
|
|
16656
|
-
"line":
|
|
16862
|
+
"line": 159
|
|
16657
16863
|
},
|
|
16658
16864
|
"example": "import { createReleasePassportCheckManifest } from \"@kungfu-tech/buildchain\";",
|
|
16659
16865
|
"maturity": "stable",
|
|
@@ -16662,6 +16868,175 @@
|
|
|
16662
16868
|
"agent"
|
|
16663
16869
|
]
|
|
16664
16870
|
},
|
|
16871
|
+
{
|
|
16872
|
+
"id": "packages/core/release-passport-contract.js#defaultReleaseAgentIndex",
|
|
16873
|
+
"name": "defaultReleaseAgentIndex",
|
|
16874
|
+
"kind": "function",
|
|
16875
|
+
"signature": "function defaultReleaseAgentIndex({ tag = \"\", passportPath = \"buildchain.release.json\" } = {})",
|
|
16876
|
+
"parameters": [
|
|
16877
|
+
{
|
|
16878
|
+
"name": "parameter1",
|
|
16879
|
+
"signature": "{ tag = \"\", passportPath = \"buildchain.release.json\" } = {}"
|
|
16880
|
+
}
|
|
16881
|
+
],
|
|
16882
|
+
"returns": "unknown",
|
|
16883
|
+
"errors": [
|
|
16884
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16885
|
+
],
|
|
16886
|
+
"sideEffects": [
|
|
16887
|
+
"none-detected-by-static-source-scan"
|
|
16888
|
+
],
|
|
16889
|
+
"source": {
|
|
16890
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16891
|
+
"line": 336
|
|
16892
|
+
},
|
|
16893
|
+
"example": "import { defaultReleaseAgentIndex } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16894
|
+
"maturity": "stable",
|
|
16895
|
+
"audience": [
|
|
16896
|
+
"developer",
|
|
16897
|
+
"agent"
|
|
16898
|
+
]
|
|
16899
|
+
},
|
|
16900
|
+
{
|
|
16901
|
+
"id": "packages/core/release-passport-contract.js#defaultReleaseImpact",
|
|
16902
|
+
"name": "defaultReleaseImpact",
|
|
16903
|
+
"kind": "function",
|
|
16904
|
+
"signature": "function defaultReleaseImpact({ tag = \"\", line = \"\", decision = \"unknown\" } = {})",
|
|
16905
|
+
"parameters": [
|
|
16906
|
+
{
|
|
16907
|
+
"name": "parameter1",
|
|
16908
|
+
"signature": "{ tag = \"\", line = \"\", decision = \"unknown\" } = {}"
|
|
16909
|
+
}
|
|
16910
|
+
],
|
|
16911
|
+
"returns": "unknown",
|
|
16912
|
+
"errors": [
|
|
16913
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16914
|
+
],
|
|
16915
|
+
"sideEffects": [
|
|
16916
|
+
"none-detected-by-static-source-scan"
|
|
16917
|
+
],
|
|
16918
|
+
"source": {
|
|
16919
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16920
|
+
"line": 318
|
|
16921
|
+
},
|
|
16922
|
+
"example": "import { defaultReleaseImpact } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16923
|
+
"maturity": "stable",
|
|
16924
|
+
"audience": [
|
|
16925
|
+
"developer",
|
|
16926
|
+
"agent"
|
|
16927
|
+
]
|
|
16928
|
+
},
|
|
16929
|
+
{
|
|
16930
|
+
"id": "packages/core/release-passport-contract.js#defaultReleaseLlmsText",
|
|
16931
|
+
"name": "defaultReleaseLlmsText",
|
|
16932
|
+
"kind": "function",
|
|
16933
|
+
"signature": "function defaultReleaseLlmsText({ tag = \"\", passportPath = \"buildchain.release.json\" } = {})",
|
|
16934
|
+
"parameters": [
|
|
16935
|
+
{
|
|
16936
|
+
"name": "parameter1",
|
|
16937
|
+
"signature": "{ tag = \"\", passportPath = \"buildchain.release.json\" } = {}"
|
|
16938
|
+
}
|
|
16939
|
+
],
|
|
16940
|
+
"returns": "unknown",
|
|
16941
|
+
"errors": [
|
|
16942
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16943
|
+
],
|
|
16944
|
+
"sideEffects": [
|
|
16945
|
+
"none-detected-by-static-source-scan"
|
|
16946
|
+
],
|
|
16947
|
+
"source": {
|
|
16948
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16949
|
+
"line": 348
|
|
16950
|
+
},
|
|
16951
|
+
"example": "import { defaultReleaseLlmsText } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16952
|
+
"maturity": "stable",
|
|
16953
|
+
"audience": [
|
|
16954
|
+
"developer",
|
|
16955
|
+
"agent"
|
|
16956
|
+
]
|
|
16957
|
+
},
|
|
16958
|
+
{
|
|
16959
|
+
"id": "packages/core/release-passport-contract.js#defaultReleaseProductMechanism",
|
|
16960
|
+
"name": "defaultReleaseProductMechanism",
|
|
16961
|
+
"kind": "function",
|
|
16962
|
+
"signature": "function defaultReleaseProductMechanism({ repository = \"\", productName = \"Buildchain\" } = {})",
|
|
16963
|
+
"parameters": [
|
|
16964
|
+
{
|
|
16965
|
+
"name": "parameter1",
|
|
16966
|
+
"signature": "{ repository = \"\", productName = \"Buildchain\" } = {}"
|
|
16967
|
+
}
|
|
16968
|
+
],
|
|
16969
|
+
"returns": "unknown",
|
|
16970
|
+
"errors": [
|
|
16971
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16972
|
+
],
|
|
16973
|
+
"sideEffects": [
|
|
16974
|
+
"none-detected-by-static-source-scan"
|
|
16975
|
+
],
|
|
16976
|
+
"source": {
|
|
16977
|
+
"path": "packages/core/release-passport-contract.js",
|
|
16978
|
+
"line": 301
|
|
16979
|
+
},
|
|
16980
|
+
"example": "import { defaultReleaseProductMechanism } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
16981
|
+
"maturity": "stable",
|
|
16982
|
+
"audience": [
|
|
16983
|
+
"developer",
|
|
16984
|
+
"agent"
|
|
16985
|
+
]
|
|
16986
|
+
},
|
|
16987
|
+
{
|
|
16988
|
+
"id": "packages/core/release-passport-contract.js#prepareReleasePassportKfdSections",
|
|
16989
|
+
"name": "prepareReleasePassportKfdSections",
|
|
16990
|
+
"kind": "function",
|
|
16991
|
+
"signature": "function prepareReleasePassportKfdSections({ kfd1, kfd2Claims, kfd3, kfdAdopter, kfdSupport, kfd1DefaultKey, createKfd2, evidencePaths = {} } = {})",
|
|
16992
|
+
"parameters": [
|
|
16993
|
+
{
|
|
16994
|
+
"name": "parameter1",
|
|
16995
|
+
"signature": "{ kfd1, kfd2Claims, kfd3, kfdAdopter, kfdSupport, kfd1DefaultKey, createKfd2, evidencePaths = {} } = {}"
|
|
16996
|
+
}
|
|
16997
|
+
],
|
|
16998
|
+
"returns": "unknown",
|
|
16999
|
+
"errors": [
|
|
17000
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
17001
|
+
],
|
|
17002
|
+
"sideEffects": [
|
|
17003
|
+
"none-detected-by-static-source-scan"
|
|
17004
|
+
],
|
|
17005
|
+
"source": {
|
|
17006
|
+
"path": "packages/core/release-passport-contract.js",
|
|
17007
|
+
"line": 388
|
|
17008
|
+
},
|
|
17009
|
+
"example": "import { prepareReleasePassportKfdSections } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
17010
|
+
"maturity": "stable",
|
|
17011
|
+
"audience": [
|
|
17012
|
+
"developer",
|
|
17013
|
+
"agent"
|
|
17014
|
+
]
|
|
17015
|
+
},
|
|
17016
|
+
{
|
|
17017
|
+
"id": "packages/core/release-passport-contract.js#RELEASE_CHECK_REPORT_CONTRACT",
|
|
17018
|
+
"name": "RELEASE_CHECK_REPORT_CONTRACT",
|
|
17019
|
+
"kind": "constant",
|
|
17020
|
+
"signature": "const RELEASE_CHECK_REPORT_CONTRACT",
|
|
17021
|
+
"parameters": [],
|
|
17022
|
+
"returns": "value",
|
|
17023
|
+
"errors": [
|
|
17024
|
+
"Import does not declare a throw contract."
|
|
17025
|
+
],
|
|
17026
|
+
"sideEffects": [
|
|
17027
|
+
"none-on-import"
|
|
17028
|
+
],
|
|
17029
|
+
"source": {
|
|
17030
|
+
"path": "packages/core/release-passport-contract.js",
|
|
17031
|
+
"line": 15
|
|
17032
|
+
},
|
|
17033
|
+
"example": "import { RELEASE_CHECK_REPORT_CONTRACT } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
17034
|
+
"maturity": "stable",
|
|
17035
|
+
"audience": [
|
|
17036
|
+
"developer",
|
|
17037
|
+
"agent"
|
|
17038
|
+
]
|
|
17039
|
+
},
|
|
16665
17040
|
{
|
|
16666
17041
|
"id": "packages/core/release-passport-contract.js#RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT",
|
|
16667
17042
|
"name": "RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT",
|
|
@@ -16677,7 +17052,7 @@
|
|
|
16677
17052
|
],
|
|
16678
17053
|
"source": {
|
|
16679
17054
|
"path": "packages/core/release-passport-contract.js",
|
|
16680
|
-
"line":
|
|
17055
|
+
"line": 19
|
|
16681
17056
|
},
|
|
16682
17057
|
"example": "import { RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
16683
17058
|
"maturity": "stable",
|
|
@@ -16686,6 +17061,30 @@
|
|
|
16686
17061
|
"agent"
|
|
16687
17062
|
]
|
|
16688
17063
|
},
|
|
17064
|
+
{
|
|
17065
|
+
"id": "packages/core/release-passport-contract.js#RELEASE_PASSPORT_CONTRACT",
|
|
17066
|
+
"name": "RELEASE_PASSPORT_CONTRACT",
|
|
17067
|
+
"kind": "constant",
|
|
17068
|
+
"signature": "const RELEASE_PASSPORT_CONTRACT",
|
|
17069
|
+
"parameters": [],
|
|
17070
|
+
"returns": "value",
|
|
17071
|
+
"errors": [
|
|
17072
|
+
"Import does not declare a throw contract."
|
|
17073
|
+
],
|
|
17074
|
+
"sideEffects": [
|
|
17075
|
+
"none-on-import"
|
|
17076
|
+
],
|
|
17077
|
+
"source": {
|
|
17078
|
+
"path": "packages/core/release-passport-contract.js",
|
|
17079
|
+
"line": 14
|
|
17080
|
+
},
|
|
17081
|
+
"example": "import { RELEASE_PASSPORT_CONTRACT } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
17082
|
+
"maturity": "stable",
|
|
17083
|
+
"audience": [
|
|
17084
|
+
"developer",
|
|
17085
|
+
"agent"
|
|
17086
|
+
]
|
|
17087
|
+
},
|
|
16689
17088
|
{
|
|
16690
17089
|
"id": "packages/core/release-passport-contract.js#RELEASE_PASSPORT_SCHEMA",
|
|
16691
17090
|
"name": "RELEASE_PASSPORT_SCHEMA",
|
|
@@ -16701,7 +17100,7 @@
|
|
|
16701
17100
|
],
|
|
16702
17101
|
"source": {
|
|
16703
17102
|
"path": "packages/core/release-passport-contract.js",
|
|
16704
|
-
"line":
|
|
17103
|
+
"line": 26
|
|
16705
17104
|
},
|
|
16706
17105
|
"example": "import { RELEASE_PASSPORT_SCHEMA } from \"@kungfu-tech/buildchain\";",
|
|
16707
17106
|
"maturity": "stable",
|
|
@@ -16725,7 +17124,7 @@
|
|
|
16725
17124
|
],
|
|
16726
17125
|
"source": {
|
|
16727
17126
|
"path": "packages/core/release-passport-contract.js",
|
|
16728
|
-
"line":
|
|
17127
|
+
"line": 17
|
|
16729
17128
|
},
|
|
16730
17129
|
"example": "import { RELEASE_PASSPORT_SCHEMA_ID } from \"@kungfu-tech/buildchain\";",
|
|
16731
17130
|
"maturity": "stable",
|
|
@@ -16734,6 +17133,64 @@
|
|
|
16734
17133
|
"agent"
|
|
16735
17134
|
]
|
|
16736
17135
|
},
|
|
17136
|
+
{
|
|
17137
|
+
"id": "packages/core/release-passport-contract.js#resolveReleasePassportVerificationInputs",
|
|
17138
|
+
"name": "resolveReleasePassportVerificationInputs",
|
|
17139
|
+
"kind": "function",
|
|
17140
|
+
"signature": "async function resolveReleasePassportVerificationInputs({ passportLocation, locations = {}, readJson, resolveSibling } = {})",
|
|
17141
|
+
"parameters": [
|
|
17142
|
+
{
|
|
17143
|
+
"name": "parameter1",
|
|
17144
|
+
"signature": "{ passportLocation, locations = {}, readJson, resolveSibling } = {}"
|
|
17145
|
+
}
|
|
17146
|
+
],
|
|
17147
|
+
"returns": "Promise<unknown>",
|
|
17148
|
+
"errors": [
|
|
17149
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
17150
|
+
],
|
|
17151
|
+
"sideEffects": [
|
|
17152
|
+
"none-detected-by-static-source-scan"
|
|
17153
|
+
],
|
|
17154
|
+
"source": {
|
|
17155
|
+
"path": "packages/core/release-passport-contract.js",
|
|
17156
|
+
"line": 456
|
|
17157
|
+
},
|
|
17158
|
+
"example": "import { resolveReleasePassportVerificationInputs } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
17159
|
+
"maturity": "stable",
|
|
17160
|
+
"audience": [
|
|
17161
|
+
"developer",
|
|
17162
|
+
"agent"
|
|
17163
|
+
]
|
|
17164
|
+
},
|
|
17165
|
+
{
|
|
17166
|
+
"id": "packages/core/release-passport-contract.js#validateKfdAdopterReleaseEvidence",
|
|
17167
|
+
"name": "validateKfdAdopterReleaseEvidence",
|
|
17168
|
+
"kind": "function",
|
|
17169
|
+
"signature": "function validateKfdAdopterReleaseEvidence({ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedSourceSha = \"\" } = {})",
|
|
17170
|
+
"parameters": [
|
|
17171
|
+
{
|
|
17172
|
+
"name": "parameter1",
|
|
17173
|
+
"signature": "{ binding, artifactBinding, manifest, manifestGate, legacyProjection, passportLegacyProjection, expectedSourceSha = \"\" } = {}"
|
|
17174
|
+
}
|
|
17175
|
+
],
|
|
17176
|
+
"returns": "unknown",
|
|
17177
|
+
"errors": [
|
|
17178
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
17179
|
+
],
|
|
17180
|
+
"sideEffects": [
|
|
17181
|
+
"none-detected-by-static-source-scan"
|
|
17182
|
+
],
|
|
17183
|
+
"source": {
|
|
17184
|
+
"path": "packages/core/release-passport-contract.js",
|
|
17185
|
+
"line": 432
|
|
17186
|
+
},
|
|
17187
|
+
"example": "import { validateKfdAdopterReleaseEvidence } from \"@kungfu-tech/buildchain/release-passport-contract\";",
|
|
17188
|
+
"maturity": "stable",
|
|
17189
|
+
"audience": [
|
|
17190
|
+
"developer",
|
|
17191
|
+
"agent"
|
|
17192
|
+
]
|
|
17193
|
+
},
|
|
16737
17194
|
{
|
|
16738
17195
|
"id": "packages/core/release-passport-contract.js#validateReleasePassportSchema",
|
|
16739
17196
|
"name": "validateReleasePassportSchema",
|
|
@@ -16754,7 +17211,7 @@
|
|
|
16754
17211
|
],
|
|
16755
17212
|
"source": {
|
|
16756
17213
|
"path": "packages/core/release-passport-contract.js",
|
|
16757
|
-
"line":
|
|
17214
|
+
"line": 277
|
|
16758
17215
|
},
|
|
16759
17216
|
"example": "import { validateReleasePassportSchema } from \"@kungfu-tech/buildchain\";",
|
|
16760
17217
|
"maturity": "stable",
|
|
@@ -16778,7 +17235,7 @@
|
|
|
16778
17235
|
],
|
|
16779
17236
|
"source": {
|
|
16780
17237
|
"path": "packages/core/release-passport.js",
|
|
16781
|
-
"line":
|
|
17238
|
+
"line": 40
|
|
16782
17239
|
},
|
|
16783
17240
|
"example": "import { AGENT_INDEX_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
16784
17241
|
"maturity": "stable",
|
|
@@ -16802,7 +17259,7 @@
|
|
|
16802
17259
|
],
|
|
16803
17260
|
"source": {
|
|
16804
17261
|
"path": "packages/core/release-passport.js",
|
|
16805
|
-
"line":
|
|
17262
|
+
"line": 38
|
|
16806
17263
|
},
|
|
16807
17264
|
"example": "import { ARTIFACT_EVIDENCE_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
16808
17265
|
"maturity": "stable",
|
|
@@ -16815,23 +17272,23 @@
|
|
|
16815
17272
|
"id": "packages/core/release-passport.js#collectGitHubReleasePassport",
|
|
16816
17273
|
"name": "collectGitHubReleasePassport",
|
|
16817
17274
|
"kind": "function",
|
|
16818
|
-
"signature": "function collectGitHubReleasePassport({ cwd = process.cwd(), tag = \"\", repository = process.env.GITHUB_REPOSITORY || \"\", sourceSha = process.env.GITHUB_SHA || \"\", line = \"\", outputDir = \".buildchain/release-passport\", assetsJson = \"\", assetsDir = \"\", kfdArtifactSearchRoots = [], releaseJson = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", packageSetJson = \"\", publishEvidenceJson = \"\", trustedPublishingJson = \"\", transactionJson = \"\", anchorManifestJson = \"\", versionMaterialJson = \"\", impactJson = \"\", buildSummaryJson = \"\", buildFactsJsons = [], platformManifestJsons = [], distTagEvidenceJson = \"\", kfd1WitnessJsons = [], kfd2ClaimJsons = [], kfd3PrebuildWitnessJsons = [], kfd3ArtifactWitnessJsons = [], kfd3ArtifactVerifyCommand = \"\", kfdSupportMatrixJson = \"\", kfdProductGateJsons = [], invariantPassportJsons = [], invariantPassportCommand = \"\", releaseEvidenceJsons = [], kfdAgentHubEvidenceJson = \"\", controllerReceiptReferences = [], githubArtifactAttestationPolicyJsons = [], basePassportJson = \"\", requireBaseKfd = false, releaseJsonExtra = \"\", publishJson = \"\", workflow = {}, checkedAt = \"\", } = {})",
|
|
17275
|
+
"signature": "function collectGitHubReleasePassport({ cwd = process.cwd(), tag = \"\", repository = process.env.GITHUB_REPOSITORY || \"\", sourceSha = process.env.GITHUB_SHA || \"\", line = \"\", outputDir = \".buildchain/release-passport\", assetsJson = \"\", assetsDir = \"\", kfdArtifactSearchRoots = [], releaseJson = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", packageSetJson = \"\", publishEvidenceJson = \"\", trustedPublishingJson = \"\", transactionJson = \"\", anchorManifestJson = \"\", versionMaterialJson = \"\", impactJson = \"\", buildSummaryJson = \"\", buildFactsJsons = [], platformManifestJsons = [], distTagEvidenceJson = \"\", kfd1WitnessJsons = [], kfd2ClaimJsons = [], kfd3PrebuildWitnessJsons = [], kfd3ArtifactWitnessJsons = [], kfd3ArtifactVerifyCommand = \"\", kfdAdopterManifestJson = \"\", kfdSupportMatrixJson = \"\", kfdProductGateJsons = [], invariantPassportJsons = [], invariantPassportCommand = \"\", releaseEvidenceJsons = [], kfdAgentHubEvidenceJson = \"\", controllerReceiptReferences = [], githubArtifactAttestationPolicyJsons = [], basePassportJson = \"\", requireBaseKfd = false, releaseJsonExtra = \"\", publishJson = \"\", workflow = {}, checkedAt = \"\", } = {})",
|
|
16819
17276
|
"parameters": [
|
|
16820
17277
|
{
|
|
16821
17278
|
"name": "parameter1",
|
|
16822
|
-
"signature": "{ cwd = process.cwd(), tag = \"\", repository = process.env.GITHUB_REPOSITORY || \"\", sourceSha = process.env.GITHUB_SHA || \"\", line = \"\", outputDir = \".buildchain/release-passport\", assetsJson = \"\", assetsDir = \"\", kfdArtifactSearchRoots = [], releaseJson = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", packageSetJson = \"\", publishEvidenceJson = \"\", trustedPublishingJson = \"\", transactionJson = \"\", anchorManifestJson = \"\", versionMaterialJson = \"\", impactJson = \"\", buildSummaryJson = \"\", buildFactsJsons = [], platformManifestJsons = [], distTagEvidenceJson = \"\", kfd1WitnessJsons = [], kfd2ClaimJsons = [], kfd3PrebuildWitnessJsons = [], kfd3ArtifactWitnessJsons = [], kfd3ArtifactVerifyCommand = \"\", kfdSupportMatrixJson = \"\", kfdProductGateJsons = [], invariantPassportJsons = [], invariantPassportCommand = \"\", releaseEvidenceJsons = [], kfdAgentHubEvidenceJson = \"\", controllerReceiptReferences = [], githubArtifactAttestationPolicyJsons = [], basePassportJson = \"\", requireBaseKfd = false, releaseJsonExtra = \"\", publishJson = \"\", workflow = {}, checkedAt = \"\", } = {}"
|
|
17279
|
+
"signature": "{ cwd = process.cwd(), tag = \"\", repository = process.env.GITHUB_REPOSITORY || \"\", sourceSha = process.env.GITHUB_SHA || \"\", line = \"\", outputDir = \".buildchain/release-passport\", assetsJson = \"\", assetsDir = \"\", kfdArtifactSearchRoots = [], releaseJson = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", packageSetJson = \"\", publishEvidenceJson = \"\", trustedPublishingJson = \"\", transactionJson = \"\", anchorManifestJson = \"\", versionMaterialJson = \"\", impactJson = \"\", buildSummaryJson = \"\", buildFactsJsons = [], platformManifestJsons = [], distTagEvidenceJson = \"\", kfd1WitnessJsons = [], kfd2ClaimJsons = [], kfd3PrebuildWitnessJsons = [], kfd3ArtifactWitnessJsons = [], kfd3ArtifactVerifyCommand = \"\", kfdAdopterManifestJson = \"\", kfdSupportMatrixJson = \"\", kfdProductGateJsons = [], invariantPassportJsons = [], invariantPassportCommand = \"\", releaseEvidenceJsons = [], kfdAgentHubEvidenceJson = \"\", controllerReceiptReferences = [], githubArtifactAttestationPolicyJsons = [], basePassportJson = \"\", requireBaseKfd = false, releaseJsonExtra = \"\", publishJson = \"\", workflow = {}, checkedAt = \"\", } = {}"
|
|
16823
17280
|
}
|
|
16824
17281
|
],
|
|
16825
17282
|
"returns": "unknown",
|
|
16826
17283
|
"errors": [
|
|
16827
|
-
"
|
|
17284
|
+
"Errors from called operations may propagate; no narrower throw contract is declared in source."
|
|
16828
17285
|
],
|
|
16829
17286
|
"sideEffects": [
|
|
16830
|
-
"
|
|
17287
|
+
"none-detected-by-static-source-scan"
|
|
16831
17288
|
],
|
|
16832
17289
|
"source": {
|
|
16833
17290
|
"path": "packages/core/release-passport.js",
|
|
16834
|
-
"line":
|
|
17291
|
+
"line": 1499
|
|
16835
17292
|
},
|
|
16836
17293
|
"example": "import { collectGitHubReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
16837
17294
|
"maturity": "stable",
|
|
@@ -16844,11 +17301,11 @@
|
|
|
16844
17301
|
"id": "packages/core/release-passport.js#createArtifactEvidence",
|
|
16845
17302
|
"name": "createArtifactEvidence",
|
|
16846
17303
|
"kind": "function",
|
|
16847
|
-
"signature": "function createArtifactEvidence({ assets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {} } = {})",
|
|
17304
|
+
"signature": "function createArtifactEvidence({ assets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {}, kfdAdopter = undefined } = {})",
|
|
16848
17305
|
"parameters": [
|
|
16849
17306
|
{
|
|
16850
17307
|
"name": "parameter1",
|
|
16851
|
-
"signature": "{ assets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {} } = {}"
|
|
17308
|
+
"signature": "{ assets = [], repository = \"\", tag = \"\", sourceSha = \"\", workflow = {}, kfdAdopter = undefined } = {}"
|
|
16852
17309
|
}
|
|
16853
17310
|
],
|
|
16854
17311
|
"returns": "unknown",
|
|
@@ -16860,7 +17317,7 @@
|
|
|
16860
17317
|
],
|
|
16861
17318
|
"source": {
|
|
16862
17319
|
"path": "packages/core/release-passport.js",
|
|
16863
|
-
"line":
|
|
17320
|
+
"line": 1163
|
|
16864
17321
|
},
|
|
16865
17322
|
"example": "import { createArtifactEvidence } from \"@kungfu-tech/buildchain\";",
|
|
16866
17323
|
"maturity": "stable",
|
|
@@ -16889,7 +17346,7 @@
|
|
|
16889
17346
|
],
|
|
16890
17347
|
"source": {
|
|
16891
17348
|
"path": "packages/core/release-passport.js",
|
|
16892
|
-
"line":
|
|
17349
|
+
"line": 236
|
|
16893
17350
|
},
|
|
16894
17351
|
"example": "import { createInvariantPassportGate } from \"@kungfu-tech/buildchain/release-passport\";",
|
|
16895
17352
|
"maturity": "stable",
|
|
@@ -16902,11 +17359,11 @@
|
|
|
16902
17359
|
"id": "packages/core/release-passport.js#createReleaseCheckReport",
|
|
16903
17360
|
"name": "createReleaseCheckReport",
|
|
16904
17361
|
"kind": "function",
|
|
16905
|
-
"signature": "function createReleaseCheckReport({ passport, artifactEvidence, publishEvidence, impact, agentIndex, productMechanism, kfdAgentHubEvidence, kfdSupportEvidence, releaseEvidenceDocuments = [], checkedAt = nowIso(), } = {})",
|
|
17362
|
+
"signature": "function createReleaseCheckReport({ passport, artifactEvidence, publishEvidence, impact, agentIndex, productMechanism, kfdAgentHubEvidence, kfdSupportEvidence, kfdAdopterManifest, kfdAdopterManifestGate, releaseEvidenceDocuments = [], checkedAt = nowIso(), } = {})",
|
|
16906
17363
|
"parameters": [
|
|
16907
17364
|
{
|
|
16908
17365
|
"name": "parameter1",
|
|
16909
|
-
"signature": "{ passport, artifactEvidence, publishEvidence, impact, agentIndex, productMechanism, kfdAgentHubEvidence, kfdSupportEvidence, releaseEvidenceDocuments = [], checkedAt = nowIso(), } = {}"
|
|
17366
|
+
"signature": "{ passport, artifactEvidence, publishEvidence, impact, agentIndex, productMechanism, kfdAgentHubEvidence, kfdSupportEvidence, kfdAdopterManifest, kfdAdopterManifestGate, releaseEvidenceDocuments = [], checkedAt = nowIso(), } = {}"
|
|
16910
17367
|
}
|
|
16911
17368
|
],
|
|
16912
17369
|
"returns": "unknown",
|
|
@@ -16918,7 +17375,7 @@
|
|
|
16918
17375
|
],
|
|
16919
17376
|
"source": {
|
|
16920
17377
|
"path": "packages/core/release-passport.js",
|
|
16921
|
-
"line":
|
|
17378
|
+
"line": 2665
|
|
16922
17379
|
},
|
|
16923
17380
|
"example": "import { createReleaseCheckReport } from \"@kungfu-tech/buildchain\";",
|
|
16924
17381
|
"maturity": "stable",
|
|
@@ -16931,11 +17388,11 @@
|
|
|
16931
17388
|
"id": "packages/core/release-passport.js#createReleasePassport",
|
|
16932
17389
|
"name": "createReleasePassport",
|
|
16933
17390
|
"kind": "function",
|
|
16934
|
-
"signature": "function createReleasePassport({ cwd = process.cwd(), repository = \"\", tag = \"\", sourceSha = \"\", line = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", productMechanismPath = \"product-mechanism.json\", artifactEvidencePath = \"artifact-evidence.json\", impactPath = \"impact.json\", agentIndexPath = \"agent-index.json\", checkReportPath = \"check-report.json\", publishEvidencePath = \"\", transactionStatePath = \"\", assets = [], packageSet = undefined, anchorManifest = undefined, versionMaterial = undefined, publishEvidence = undefined, trustedPublishing = undefined, transaction = undefined, buildSummary = undefined, buildFacts = [], platformArtifactManifests = [], distTagPromotionEvidence = undefined, release = {}, publish = {}, impact = undefined, workflow = {}, kfd1 = undefined, kfd2Claims = [], kfd3 = undefined, kfdSupport = undefined, kfdSupportEvidencePath = \"\", invariantPassports = undefined, releaseEvidence = [], kfdAgentHubEvidence = undefined, kfdAgentHubEvidencePath = \"\", controllerReceipts = [], controllerReceiptReferences = [], githubArtifactAttestations = [], checkedAt = \"\", } = {})",
|
|
17391
|
+
"signature": "function createReleasePassport({ cwd = process.cwd(), repository = \"\", tag = \"\", sourceSha = \"\", line = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", productMechanismPath = \"product-mechanism.json\", artifactEvidencePath = \"artifact-evidence.json\", impactPath = \"impact.json\", agentIndexPath = \"agent-index.json\", checkReportPath = \"check-report.json\", publishEvidencePath = \"\", transactionStatePath = \"\", assets = [], packageSet = undefined, anchorManifest = undefined, versionMaterial = undefined, publishEvidence = undefined, trustedPublishing = undefined, transaction = undefined, buildSummary = undefined, buildFacts = [], platformArtifactManifests = [], distTagPromotionEvidence = undefined, release = {}, publish = {}, impact = undefined, workflow = {}, kfd1 = undefined, kfd2Claims = [], kfd3 = undefined, kfdAdopter = undefined, kfdAdopterManifestEvidencePath = \"\", kfdAdopterGateEvidencePath = \"\", kfdSupport = undefined, kfdSupportEvidencePath = \"\", invariantPassports = undefined, releaseEvidence = [], kfdAgentHubEvidence = undefined, kfdAgentHubEvidencePath = \"\", controllerReceipts = [], controllerReceiptReferences = [], githubArtifactAttestations = [], checkedAt = \"\", } = {})",
|
|
16935
17392
|
"parameters": [
|
|
16936
17393
|
{
|
|
16937
17394
|
"name": "parameter1",
|
|
16938
|
-
"signature": "{ cwd = process.cwd(), repository = \"\", tag = \"\", sourceSha = \"\", line = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", productMechanismPath = \"product-mechanism.json\", artifactEvidencePath = \"artifact-evidence.json\", impactPath = \"impact.json\", agentIndexPath = \"agent-index.json\", checkReportPath = \"check-report.json\", publishEvidencePath = \"\", transactionStatePath = \"\", assets = [], packageSet = undefined, anchorManifest = undefined, versionMaterial = undefined, publishEvidence = undefined, trustedPublishing = undefined, transaction = undefined, buildSummary = undefined, buildFacts = [], platformArtifactManifests = [], distTagPromotionEvidence = undefined, release = {}, publish = {}, impact = undefined, workflow = {}, kfd1 = undefined, kfd2Claims = [], kfd3 = undefined, kfdSupport = undefined, kfdSupportEvidencePath = \"\", invariantPassports = undefined, releaseEvidence = [], kfdAgentHubEvidence = undefined, kfdAgentHubEvidencePath = \"\", controllerReceipts = [], controllerReceiptReferences = [], githubArtifactAttestations = [], checkedAt = \"\", } = {}"
|
|
17395
|
+
"signature": "{ cwd = process.cwd(), repository = \"\", tag = \"\", sourceSha = \"\", line = \"\", productName = \"Buildchain\", packageName = \"@kungfu-tech/buildchain\", packageVersion = \"\", productMechanismPath = \"product-mechanism.json\", artifactEvidencePath = \"artifact-evidence.json\", impactPath = \"impact.json\", agentIndexPath = \"agent-index.json\", checkReportPath = \"check-report.json\", publishEvidencePath = \"\", transactionStatePath = \"\", assets = [], packageSet = undefined, anchorManifest = undefined, versionMaterial = undefined, publishEvidence = undefined, trustedPublishing = undefined, transaction = undefined, buildSummary = undefined, buildFacts = [], platformArtifactManifests = [], distTagPromotionEvidence = undefined, release = {}, publish = {}, impact = undefined, workflow = {}, kfd1 = undefined, kfd2Claims = [], kfd3 = undefined, kfdAdopter = undefined, kfdAdopterManifestEvidencePath = \"\", kfdAdopterGateEvidencePath = \"\", kfdSupport = undefined, kfdSupportEvidencePath = \"\", invariantPassports = undefined, releaseEvidence = [], kfdAgentHubEvidence = undefined, kfdAgentHubEvidencePath = \"\", controllerReceipts = [], controllerReceiptReferences = [], githubArtifactAttestations = [], checkedAt = \"\", } = {}"
|
|
16939
17396
|
}
|
|
16940
17397
|
],
|
|
16941
17398
|
"returns": "unknown",
|
|
@@ -16943,11 +17400,11 @@
|
|
|
16943
17400
|
"May throw an Error on rejected input or failed operations; follow the linked source contract."
|
|
16944
17401
|
],
|
|
16945
17402
|
"sideEffects": [
|
|
16946
|
-
"
|
|
17403
|
+
"local-filesystem-write"
|
|
16947
17404
|
],
|
|
16948
17405
|
"source": {
|
|
16949
17406
|
"path": "packages/core/release-passport.js",
|
|
16950
|
-
"line":
|
|
17407
|
+
"line": 1198
|
|
16951
17408
|
},
|
|
16952
17409
|
"example": "import { createReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
16953
17410
|
"maturity": "stable",
|
|
@@ -16976,7 +17433,7 @@
|
|
|
16976
17433
|
],
|
|
16977
17434
|
"source": {
|
|
16978
17435
|
"path": "packages/core/release-passport.js",
|
|
16979
|
-
"line":
|
|
17436
|
+
"line": 2819
|
|
16980
17437
|
},
|
|
16981
17438
|
"example": "import { explainReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
16982
17439
|
"maturity": "stable",
|
|
@@ -17000,7 +17457,7 @@
|
|
|
17000
17457
|
],
|
|
17001
17458
|
"source": {
|
|
17002
17459
|
"path": "packages/core/release-passport.js",
|
|
17003
|
-
"line":
|
|
17460
|
+
"line": 39
|
|
17004
17461
|
},
|
|
17005
17462
|
"example": "import { IMPACT_LEDGER_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17006
17463
|
"maturity": "stable",
|
|
@@ -17024,7 +17481,7 @@
|
|
|
17024
17481
|
],
|
|
17025
17482
|
"source": {
|
|
17026
17483
|
"path": "packages/core/release-passport.js",
|
|
17027
|
-
"line":
|
|
17484
|
+
"line": 45
|
|
17028
17485
|
},
|
|
17029
17486
|
"example": "import { INVARIANT_PASSPORT_GATE_CONTRACT } from \"@kungfu-tech/buildchain/release-passport\";",
|
|
17030
17487
|
"maturity": "stable",
|
|
@@ -17048,7 +17505,7 @@
|
|
|
17048
17505
|
],
|
|
17049
17506
|
"source": {
|
|
17050
17507
|
"path": "packages/core/release-passport.js",
|
|
17051
|
-
"line":
|
|
17508
|
+
"line": 46
|
|
17052
17509
|
},
|
|
17053
17510
|
"example": "import { KFD_AGENT_HUB_RELEASE_EVIDENCE_CONTRACT } from \"@kungfu-tech/buildchain/release-passport\";",
|
|
17054
17511
|
"maturity": "stable",
|
|
@@ -17072,7 +17529,7 @@
|
|
|
17072
17529
|
],
|
|
17073
17530
|
"source": {
|
|
17074
17531
|
"path": "packages/core/release-passport.js",
|
|
17075
|
-
"line":
|
|
17532
|
+
"line": 43
|
|
17076
17533
|
},
|
|
17077
17534
|
"example": "import { KFD2_RELEASE_TRUST_PASSPORT_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17078
17535
|
"maturity": "stable",
|
|
@@ -17096,7 +17553,7 @@
|
|
|
17096
17553
|
],
|
|
17097
17554
|
"source": {
|
|
17098
17555
|
"path": "packages/core/release-passport.js",
|
|
17099
|
-
"line":
|
|
17556
|
+
"line": 44
|
|
17100
17557
|
},
|
|
17101
17558
|
"example": "import { KFD2_TRUST_PROOF_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17102
17559
|
"maturity": "stable",
|
|
@@ -17125,7 +17582,7 @@
|
|
|
17125
17582
|
],
|
|
17126
17583
|
"source": {
|
|
17127
17584
|
"path": "packages/core/release-passport.js",
|
|
17128
|
-
"line":
|
|
17585
|
+
"line": 2848
|
|
17129
17586
|
},
|
|
17130
17587
|
"example": "import { makeReleasePassportFixtureAssets } from \"@kungfu-tech/buildchain\";",
|
|
17131
17588
|
"maturity": "stable",
|
|
@@ -17149,7 +17606,7 @@
|
|
|
17149
17606
|
],
|
|
17150
17607
|
"source": {
|
|
17151
17608
|
"path": "packages/core/release-passport.js",
|
|
17152
|
-
"line":
|
|
17609
|
+
"line": 41
|
|
17153
17610
|
},
|
|
17154
17611
|
"example": "import { PRODUCT_MECHANISM_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17155
17612
|
"maturity": "stable",
|
|
@@ -17186,7 +17643,7 @@
|
|
|
17186
17643
|
],
|
|
17187
17644
|
"source": {
|
|
17188
17645
|
"path": "packages/core/release-passport.js",
|
|
17189
|
-
"line":
|
|
17646
|
+
"line": 2735
|
|
17190
17647
|
},
|
|
17191
17648
|
"example": "import { readJsonFromLocation } from \"@kungfu-tech/buildchain\";",
|
|
17192
17649
|
"maturity": "stable",
|
|
@@ -17198,19 +17655,19 @@
|
|
|
17198
17655
|
{
|
|
17199
17656
|
"id": "packages/core/release-passport.js#RELEASE_CHECK_REPORT_CONTRACT",
|
|
17200
17657
|
"name": "RELEASE_CHECK_REPORT_CONTRACT",
|
|
17201
|
-
"kind": "
|
|
17202
|
-
"signature": "
|
|
17658
|
+
"kind": "value",
|
|
17659
|
+
"signature": "RELEASE_CHECK_REPORT_CONTRACT",
|
|
17203
17660
|
"parameters": [],
|
|
17204
|
-
"returns": "
|
|
17661
|
+
"returns": "unknown",
|
|
17205
17662
|
"errors": [
|
|
17206
|
-
"
|
|
17663
|
+
"No narrower error contract was mechanically discoverable."
|
|
17207
17664
|
],
|
|
17208
17665
|
"sideEffects": [
|
|
17209
|
-
"
|
|
17666
|
+
"unknown"
|
|
17210
17667
|
],
|
|
17211
17668
|
"source": {
|
|
17212
17669
|
"path": "packages/core/release-passport.js",
|
|
17213
|
-
"line":
|
|
17670
|
+
"line": 1
|
|
17214
17671
|
},
|
|
17215
17672
|
"example": "import { RELEASE_CHECK_REPORT_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17216
17673
|
"maturity": "stable",
|
|
@@ -17234,7 +17691,7 @@
|
|
|
17234
17691
|
],
|
|
17235
17692
|
"source": {
|
|
17236
17693
|
"path": "packages/core/release-passport.js",
|
|
17237
|
-
"line":
|
|
17694
|
+
"line": 42
|
|
17238
17695
|
},
|
|
17239
17696
|
"example": "import { RELEASE_EVIDENCE_ATTACHMENT_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17240
17697
|
"maturity": "stable",
|
|
@@ -17246,19 +17703,19 @@
|
|
|
17246
17703
|
{
|
|
17247
17704
|
"id": "packages/core/release-passport.js#RELEASE_PASSPORT_CONTRACT",
|
|
17248
17705
|
"name": "RELEASE_PASSPORT_CONTRACT",
|
|
17249
|
-
"kind": "
|
|
17250
|
-
"signature": "
|
|
17706
|
+
"kind": "value",
|
|
17707
|
+
"signature": "RELEASE_PASSPORT_CONTRACT",
|
|
17251
17708
|
"parameters": [],
|
|
17252
|
-
"returns": "
|
|
17709
|
+
"returns": "unknown",
|
|
17253
17710
|
"errors": [
|
|
17254
|
-
"
|
|
17711
|
+
"No narrower error contract was mechanically discoverable."
|
|
17255
17712
|
],
|
|
17256
17713
|
"sideEffects": [
|
|
17257
|
-
"
|
|
17714
|
+
"unknown"
|
|
17258
17715
|
],
|
|
17259
17716
|
"source": {
|
|
17260
17717
|
"path": "packages/core/release-passport.js",
|
|
17261
|
-
"line":
|
|
17718
|
+
"line": 1
|
|
17262
17719
|
},
|
|
17263
17720
|
"example": "import { RELEASE_PASSPORT_CONTRACT } from \"@kungfu-tech/buildchain\";",
|
|
17264
17721
|
"maturity": "stable",
|
|
@@ -17288,7 +17745,7 @@
|
|
|
17288
17745
|
],
|
|
17289
17746
|
"source": {
|
|
17290
17747
|
"path": "packages/core/release-passport.js",
|
|
17291
|
-
"line":
|
|
17748
|
+
"line": 251
|
|
17292
17749
|
},
|
|
17293
17750
|
"example": "import { sha256File } from \"@kungfu-tech/buildchain\";",
|
|
17294
17751
|
"maturity": "stable",
|
|
@@ -17317,7 +17774,7 @@
|
|
|
17317
17774
|
],
|
|
17318
17775
|
"source": {
|
|
17319
17776
|
"path": "packages/core/release-passport.js",
|
|
17320
|
-
"line":
|
|
17777
|
+
"line": 146
|
|
17321
17778
|
},
|
|
17322
17779
|
"example": "import { sha256Text } from \"@kungfu-tech/buildchain\";",
|
|
17323
17780
|
"maturity": "stable",
|
|
@@ -17341,7 +17798,7 @@
|
|
|
17341
17798
|
],
|
|
17342
17799
|
"source": {
|
|
17343
17800
|
"path": "packages/core/release-passport.js",
|
|
17344
|
-
"line":
|
|
17801
|
+
"line": 2860
|
|
17345
17802
|
},
|
|
17346
17803
|
"example": "import { validateKnownReleasePassportContracts } from \"@kungfu-tech/buildchain\";",
|
|
17347
17804
|
"maturity": "stable",
|
|
@@ -17354,11 +17811,11 @@
|
|
|
17354
17811
|
"id": "packages/core/release-passport.js#verifyReleasePassport",
|
|
17355
17812
|
"name": "verifyReleasePassport",
|
|
17356
17813
|
"kind": "function",
|
|
17357
|
-
"signature": "async function verifyReleasePassport({ passportLocation, artifactEvidenceLocation = \"\", publishEvidenceLocation = \"\", impactLocation = \"\", agentIndexLocation = \"\", productMechanismLocation = \"\", kfdAgentHubEvidenceLocation = \"\", kfdSupportEvidenceLocation = \"\", checkedAt = nowIso(), } = {})",
|
|
17814
|
+
"signature": "async function verifyReleasePassport({ passportLocation, artifactEvidenceLocation = \"\", publishEvidenceLocation = \"\", impactLocation = \"\", agentIndexLocation = \"\", productMechanismLocation = \"\", kfdAgentHubEvidenceLocation = \"\", kfdAdopterManifestLocation = \"\", kfdAdopterManifestGateLocation = \"\", kfdSupportEvidenceLocation = \"\", checkedAt = nowIso(), } = {})",
|
|
17358
17815
|
"parameters": [
|
|
17359
17816
|
{
|
|
17360
17817
|
"name": "parameter1",
|
|
17361
|
-
"signature": "{ passportLocation, artifactEvidenceLocation = \"\", publishEvidenceLocation = \"\", impactLocation = \"\", agentIndexLocation = \"\", productMechanismLocation = \"\", kfdAgentHubEvidenceLocation = \"\", kfdSupportEvidenceLocation = \"\", checkedAt = nowIso(), } = {}"
|
|
17818
|
+
"signature": "{ passportLocation, artifactEvidenceLocation = \"\", publishEvidenceLocation = \"\", impactLocation = \"\", agentIndexLocation = \"\", productMechanismLocation = \"\", kfdAgentHubEvidenceLocation = \"\", kfdAdopterManifestLocation = \"\", kfdAdopterManifestGateLocation = \"\", kfdSupportEvidenceLocation = \"\", checkedAt = nowIso(), } = {}"
|
|
17362
17819
|
}
|
|
17363
17820
|
],
|
|
17364
17821
|
"returns": "Promise<unknown>",
|
|
@@ -17370,7 +17827,7 @@
|
|
|
17370
17827
|
],
|
|
17371
17828
|
"source": {
|
|
17372
17829
|
"path": "packages/core/release-passport.js",
|
|
17373
|
-
"line":
|
|
17830
|
+
"line": 2784
|
|
17374
17831
|
},
|
|
17375
17832
|
"example": "import { verifyReleasePassport } from \"@kungfu-tech/buildchain\";",
|
|
17376
17833
|
"maturity": "stable",
|
|
@@ -20353,14 +20810,14 @@
|
|
|
20353
20810
|
"specifier": "@kungfu-tech/buildchain",
|
|
20354
20811
|
"export": ".",
|
|
20355
20812
|
"target": "./packages/core/index.js",
|
|
20356
|
-
"digest": "sha256:
|
|
20813
|
+
"digest": "sha256:f37909d2a4f2806563b89cde4c616d9821d968f0d1e8a72a3c4e2c31645f9397",
|
|
20357
20814
|
"summary": "Root toolkit export for Buildchain's public Node API.",
|
|
20358
20815
|
"capabilityGroup": "api-cli-reference",
|
|
20359
20816
|
"audience": [
|
|
20360
20817
|
"developer",
|
|
20361
20818
|
"agent"
|
|
20362
20819
|
],
|
|
20363
|
-
"symbolCount":
|
|
20820
|
+
"symbolCount": 608,
|
|
20364
20821
|
"symbolIds": [
|
|
20365
20822
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
20366
20823
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -20542,8 +20999,8 @@
|
|
|
20542
20999
|
"packages/core/kfd-gate.js#createKfd1ReleaseGateEvidence",
|
|
20543
21000
|
"packages/core/kfd-gate.js#createKfd3CollaborationInterfaceReleaseGateEvidence",
|
|
20544
21001
|
"packages/core/kfd3-surface-register.js#createKfd3SurfaceWitness",
|
|
21002
|
+
"packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
20545
21003
|
"packages/core/readme-badges.js#createKfdBadgeSpecsFromStandards",
|
|
20546
|
-
"packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
20547
21004
|
"packages/core/build-facts.js#createKungfuBuildInfoProjection",
|
|
20548
21005
|
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
20549
21006
|
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
@@ -20667,6 +21124,8 @@
|
|
|
20667
21124
|
"packages/core/kfd-agent-hub.js#initKfdAgentHub",
|
|
20668
21125
|
"packages/core/kfd-agent-hub.js#inspectKfdAgentHub",
|
|
20669
21126
|
"packages/core/release-propagation-push.js#inspectReleasePropagationPushState",
|
|
21127
|
+
"packages/core/artifact-verification-envelope.js#installedKfdPackageArtifactRoot",
|
|
21128
|
+
"packages/core/artifact-verification-envelope.js#KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
20670
21129
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_ADOPTION_CONTRACT",
|
|
20671
21130
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_ADOPTION_SCHEMA",
|
|
20672
21131
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_DECLARATION",
|
|
@@ -20677,9 +21136,6 @@
|
|
|
20677
21136
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_CONTRACT",
|
|
20678
21137
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA",
|
|
20679
21138
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA_ID",
|
|
20680
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
20681
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
20682
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
20683
21139
|
"packages/core/kfd.js#kfd1",
|
|
20684
21140
|
"packages/core/kfd-gate.js#KFD1_RELEASE_GATE_CONTRACT",
|
|
20685
21141
|
"packages/core/kfd-gate.js#KFD1_WITNESS_SET_CONTRACT",
|
|
@@ -20924,8 +21380,8 @@
|
|
|
20924
21380
|
"packages/core/kfd-gate.js#validateKfd1ReleaseGateEvidence",
|
|
20925
21381
|
"packages/core/kfd2-product-claims.js#validateKfd2ProductClaimsRegistry",
|
|
20926
21382
|
"packages/core/kfd-gate.js#validateKfd3CollaborationInterfaceReleaseGateEvidence",
|
|
21383
|
+
"packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
20927
21384
|
"packages/core/kfd-product-gates.js#validateKfdProductGateResult",
|
|
20928
|
-
"packages/core/kfd-product-gates.js#validateKfdSupportProjection",
|
|
20929
21385
|
"packages/core/release-passport.js#validateKnownReleasePassportContracts",
|
|
20930
21386
|
"packages/core/package-manager.js#validatePackageManagerContract",
|
|
20931
21387
|
"packages/core/publish-transaction.js#validatePublishEvidence",
|
|
@@ -21060,14 +21516,14 @@
|
|
|
21060
21516
|
"specifier": "@kungfu-tech/buildchain/core",
|
|
21061
21517
|
"export": "./core",
|
|
21062
21518
|
"target": "./packages/core/index.js",
|
|
21063
|
-
"digest": "sha256:
|
|
21519
|
+
"digest": "sha256:f37909d2a4f2806563b89cde4c616d9821d968f0d1e8a72a3c4e2c31645f9397",
|
|
21064
21520
|
"summary": "Alias for the root public toolkit export.",
|
|
21065
21521
|
"capabilityGroup": "api-cli-reference",
|
|
21066
21522
|
"audience": [
|
|
21067
21523
|
"developer",
|
|
21068
21524
|
"agent"
|
|
21069
21525
|
],
|
|
21070
|
-
"symbolCount":
|
|
21526
|
+
"symbolCount": 608,
|
|
21071
21527
|
"symbolIds": [
|
|
21072
21528
|
"packages/core/release-activation-transaction.js#abortReleaseActivationTransaction",
|
|
21073
21529
|
"packages/core/release-passport.js#AGENT_INDEX_CONTRACT",
|
|
@@ -21249,8 +21705,8 @@
|
|
|
21249
21705
|
"packages/core/kfd-gate.js#createKfd1ReleaseGateEvidence",
|
|
21250
21706
|
"packages/core/kfd-gate.js#createKfd3CollaborationInterfaceReleaseGateEvidence",
|
|
21251
21707
|
"packages/core/kfd3-surface-register.js#createKfd3SurfaceWitness",
|
|
21708
|
+
"packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
21252
21709
|
"packages/core/readme-badges.js#createKfdBadgeSpecsFromStandards",
|
|
21253
|
-
"packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
21254
21710
|
"packages/core/build-facts.js#createKungfuBuildInfoProjection",
|
|
21255
21711
|
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupCapture",
|
|
21256
21712
|
"packages/core/release-propagation-pickup.js#createManualUpstreamPickupPlan",
|
|
@@ -21374,6 +21830,8 @@
|
|
|
21374
21830
|
"packages/core/kfd-agent-hub.js#initKfdAgentHub",
|
|
21375
21831
|
"packages/core/kfd-agent-hub.js#inspectKfdAgentHub",
|
|
21376
21832
|
"packages/core/release-propagation-push.js#inspectReleasePropagationPushState",
|
|
21833
|
+
"packages/core/artifact-verification-envelope.js#installedKfdPackageArtifactRoot",
|
|
21834
|
+
"packages/core/artifact-verification-envelope.js#KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
21377
21835
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_ADOPTION_CONTRACT",
|
|
21378
21836
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_ADOPTION_SCHEMA",
|
|
21379
21837
|
"packages/core/kfd-agent-hub.js#KFD_AGENT_HUB_DECLARATION",
|
|
@@ -21384,9 +21842,6 @@
|
|
|
21384
21842
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_CONTRACT",
|
|
21385
21843
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA",
|
|
21386
21844
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA_ID",
|
|
21387
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
21388
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
21389
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
21390
21845
|
"packages/core/kfd.js#kfd1",
|
|
21391
21846
|
"packages/core/kfd-gate.js#KFD1_RELEASE_GATE_CONTRACT",
|
|
21392
21847
|
"packages/core/kfd-gate.js#KFD1_WITNESS_SET_CONTRACT",
|
|
@@ -21631,8 +22086,8 @@
|
|
|
21631
22086
|
"packages/core/kfd-gate.js#validateKfd1ReleaseGateEvidence",
|
|
21632
22087
|
"packages/core/kfd2-product-claims.js#validateKfd2ProductClaimsRegistry",
|
|
21633
22088
|
"packages/core/kfd-gate.js#validateKfd3CollaborationInterfaceReleaseGateEvidence",
|
|
22089
|
+
"packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
21634
22090
|
"packages/core/kfd-product-gates.js#validateKfdProductGateResult",
|
|
21635
|
-
"packages/core/kfd-product-gates.js#validateKfdSupportProjection",
|
|
21636
22091
|
"packages/core/release-passport.js#validateKnownReleasePassportContracts",
|
|
21637
22092
|
"packages/core/package-manager.js#validatePackageManagerContract",
|
|
21638
22093
|
"packages/core/publish-transaction.js#validatePublishEvidence",
|
|
@@ -21723,21 +22178,25 @@
|
|
|
21723
22178
|
"specifier": "@kungfu-tech/buildchain/artifact-verification-envelope",
|
|
21724
22179
|
"export": "./artifact-verification-envelope",
|
|
21725
22180
|
"target": "./packages/core/artifact-verification-envelope.js",
|
|
21726
|
-
"digest": "sha256:
|
|
22181
|
+
"digest": "sha256:8e96b81f67c49b3249a0c7e5dab176f01713da896956ee536284db3d509dd67a",
|
|
21727
22182
|
"summary": "Sealed exact-root, lifecycle, identity, and existing KFD assessment inputs for KFX admission.",
|
|
21728
22183
|
"capabilityGroup": "release-passport-trust",
|
|
21729
22184
|
"audience": [
|
|
21730
22185
|
"developer",
|
|
21731
22186
|
"agent"
|
|
21732
22187
|
],
|
|
21733
|
-
"symbolCount":
|
|
22188
|
+
"symbolCount": 11,
|
|
21734
22189
|
"symbolIds": [
|
|
21735
22190
|
"packages/core/artifact-verification-envelope.js#ARTIFACT_VERIFICATION_ENVELOPE_CHECK_CONTRACT",
|
|
21736
22191
|
"packages/core/artifact-verification-envelope.js#ARTIFACT_VERIFICATION_ENVELOPE_CONTRACT",
|
|
21737
22192
|
"packages/core/artifact-verification-envelope.js#artifactVerificationEnvelopeDigest",
|
|
22193
|
+
"packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
22194
|
+
"packages/core/artifact-verification-envelope.js#installedKfdPackageArtifactRoot",
|
|
22195
|
+
"packages/core/artifact-verification-envelope.js#KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
21738
22196
|
"packages/core/artifact-verification-envelope.js#KFX_ADMISSION_INPUTS_CONTRACT",
|
|
21739
22197
|
"packages/core/artifact-verification-envelope.js#projectArtifactVerificationEnvelopeToKfx",
|
|
21740
22198
|
"packages/core/artifact-verification-envelope.js#sealArtifactVerificationReport",
|
|
22199
|
+
"packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
21741
22200
|
"packages/core/artifact-verification-envelope.js#verifyArtifactVerificationEnvelope"
|
|
21742
22201
|
],
|
|
21743
22202
|
"owner": "buildchain-core",
|
|
@@ -22274,28 +22733,23 @@
|
|
|
22274
22733
|
"specifier": "@kungfu-tech/buildchain/kfd-product-gates",
|
|
22275
22734
|
"export": "./kfd-product-gates",
|
|
22276
22735
|
"target": "./packages/core/kfd-product-gates.js",
|
|
22277
|
-
"digest": "sha256:
|
|
22736
|
+
"digest": "sha256:67406fce41e175cedcefa9191fcfb07aacdaaa890e666b9cad2318d453a0bc1d",
|
|
22278
22737
|
"summary": "Fail-closed KFD-4, KFD-5, and KFD-7 product evidence gates plus non-widening KFD support-matrix release projections.",
|
|
22279
22738
|
"capabilityGroup": "kfd-trust",
|
|
22280
22739
|
"audience": [
|
|
22281
22740
|
"developer",
|
|
22282
22741
|
"agent"
|
|
22283
22742
|
],
|
|
22284
|
-
"symbolCount":
|
|
22743
|
+
"symbolCount": 9,
|
|
22285
22744
|
"symbolIds": [
|
|
22286
|
-
"packages/core/kfd-product-gates.js#createKfdSupportProjection",
|
|
22287
22745
|
"packages/core/kfd-product-gates.js#evaluateKfdProductGate",
|
|
22288
22746
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_CONTRACT",
|
|
22289
22747
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_CONTRACT",
|
|
22290
22748
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA",
|
|
22291
22749
|
"packages/core/kfd-product-gates.js#KFD_PRODUCT_GATE_INPUT_SCHEMA_ID",
|
|
22292
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_CONTRACT",
|
|
22293
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA",
|
|
22294
|
-
"packages/core/kfd-product-gates.js#KFD_SUPPORT_PROJECTION_SCHEMA_ID",
|
|
22295
22750
|
"packages/core/kfd-product-gates.js#kfdProductGateDigest",
|
|
22296
22751
|
"packages/core/kfd-product-gates.js#kfdProductGates",
|
|
22297
22752
|
"packages/core/kfd-product-gates.js#validateKfdProductGateResult",
|
|
22298
|
-
"packages/core/kfd-product-gates.js#validateKfdSupportProjection",
|
|
22299
22753
|
"packages/core/kfd-product-gates.js#verifyKfdRecord"
|
|
22300
22754
|
],
|
|
22301
22755
|
"owner": "buildchain-core",
|
|
@@ -22306,6 +22760,67 @@
|
|
|
22306
22760
|
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
22307
22761
|
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
22308
22762
|
},
|
|
22763
|
+
{
|
|
22764
|
+
"specifier": "@kungfu-tech/buildchain/kfd-adopter-manifest",
|
|
22765
|
+
"export": "./kfd-adopter-manifest",
|
|
22766
|
+
"target": "./packages/core/kfd-adopter-manifest.js",
|
|
22767
|
+
"digest": "sha256:45fc7620410c48001da97cb0748c0b19ff9f5c5b07267f1aaf744dc816e970bd",
|
|
22768
|
+
"summary": "Exact-cut KFD adopter manifest verification, Buildchain evidence binding, and one-way legacy support-matrix projection APIs.",
|
|
22769
|
+
"capabilityGroup": "kfd-trust",
|
|
22770
|
+
"audience": [
|
|
22771
|
+
"developer",
|
|
22772
|
+
"agent"
|
|
22773
|
+
],
|
|
22774
|
+
"symbolCount": 6,
|
|
22775
|
+
"symbolIds": [
|
|
22776
|
+
"packages/core/kfd-adopter-manifest.js#createKfdAdopterManifestGate",
|
|
22777
|
+
"packages/core/kfd-adopter-manifest.js#createKfdLegacySupportMatrixProjection",
|
|
22778
|
+
"packages/core/kfd-adopter-manifest.js#KFD_ADOPTER_MANIFEST_GATE_CONTRACT",
|
|
22779
|
+
"packages/core/kfd-adopter-manifest.js#KFD_LEGACY_SUPPORT_MATRIX_CONTRACT",
|
|
22780
|
+
"packages/core/kfd-adopter-manifest.js#validateKfdAdopterManifestGate",
|
|
22781
|
+
"packages/core/kfd-adopter-manifest.js#validateKfdLegacySupportMatrixProjection"
|
|
22782
|
+
],
|
|
22783
|
+
"owner": "buildchain-core",
|
|
22784
|
+
"maturity": "stable",
|
|
22785
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
22786
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
22787
|
+
"deprecationReplacement": "",
|
|
22788
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
22789
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
22790
|
+
},
|
|
22791
|
+
{
|
|
22792
|
+
"specifier": "@kungfu-tech/buildchain/kfd-adopter-release-binding",
|
|
22793
|
+
"export": "./kfd-adopter-release-binding",
|
|
22794
|
+
"target": "./packages/core/artifact-verification-envelope.js",
|
|
22795
|
+
"digest": "sha256:8e96b81f67c49b3249a0c7e5dab176f01713da896956ee536284db3d509dd67a",
|
|
22796
|
+
"summary": "Release Passport and artifact-evidence binding for one exact standard adopter manifest closure.",
|
|
22797
|
+
"capabilityGroup": "kfd-trust",
|
|
22798
|
+
"audience": [
|
|
22799
|
+
"developer",
|
|
22800
|
+
"agent"
|
|
22801
|
+
],
|
|
22802
|
+
"symbolCount": 11,
|
|
22803
|
+
"symbolIds": [
|
|
22804
|
+
"packages/core/artifact-verification-envelope.js#ARTIFACT_VERIFICATION_ENVELOPE_CHECK_CONTRACT",
|
|
22805
|
+
"packages/core/artifact-verification-envelope.js#ARTIFACT_VERIFICATION_ENVELOPE_CONTRACT",
|
|
22806
|
+
"packages/core/artifact-verification-envelope.js#artifactVerificationEnvelopeDigest",
|
|
22807
|
+
"packages/core/artifact-verification-envelope.js#createKfdAdopterReleaseBinding",
|
|
22808
|
+
"packages/core/artifact-verification-envelope.js#installedKfdPackageArtifactRoot",
|
|
22809
|
+
"packages/core/artifact-verification-envelope.js#KFD_ADOPTER_RELEASE_BINDING_CONTRACT",
|
|
22810
|
+
"packages/core/artifact-verification-envelope.js#KFX_ADMISSION_INPUTS_CONTRACT",
|
|
22811
|
+
"packages/core/artifact-verification-envelope.js#projectArtifactVerificationEnvelopeToKfx",
|
|
22812
|
+
"packages/core/artifact-verification-envelope.js#sealArtifactVerificationReport",
|
|
22813
|
+
"packages/core/artifact-verification-envelope.js#validateKfdAdopterReleaseBinding",
|
|
22814
|
+
"packages/core/artifact-verification-envelope.js#verifyArtifactVerificationEnvelope"
|
|
22815
|
+
],
|
|
22816
|
+
"owner": "buildchain-core",
|
|
22817
|
+
"maturity": "stable",
|
|
22818
|
+
"introducedVersion": "pre-3.0.2-alpha.4",
|
|
22819
|
+
"compatibilityPromise": "preserved-through-the-v3-major-line",
|
|
22820
|
+
"deprecationReplacement": "",
|
|
22821
|
+
"sunsetCondition": "explicit-breaking-change-review-in-a-future-major-line",
|
|
22822
|
+
"nonDuplicationRationale": "Existing package subpath retained as the canonical API boundary for this capability."
|
|
22823
|
+
},
|
|
22309
22824
|
{
|
|
22310
22825
|
"specifier": "@kungfu-tech/buildchain/kfd-agent-hub",
|
|
22311
22826
|
"export": "./kfd-agent-hub",
|
|
@@ -23099,7 +23614,7 @@
|
|
|
23099
23614
|
"specifier": "@kungfu-tech/buildchain/release-passport",
|
|
23100
23615
|
"export": "./release-passport",
|
|
23101
23616
|
"target": "./packages/core/release-passport.js",
|
|
23102
|
-
"digest": "sha256:
|
|
23617
|
+
"digest": "sha256:3118f2de735ad98e4d9d70d3b62f905709292c0c7989175f9332bef3ac58aacd",
|
|
23103
23618
|
"summary": "Release passport collection, verification, explanation, and evidence APIs.",
|
|
23104
23619
|
"capabilityGroup": "release-passport-trust",
|
|
23105
23620
|
"audience": [
|
|
@@ -23144,19 +23659,30 @@
|
|
|
23144
23659
|
"specifier": "@kungfu-tech/buildchain/release-passport-contract",
|
|
23145
23660
|
"export": "./release-passport-contract",
|
|
23146
23661
|
"target": "./packages/core/release-passport-contract.js",
|
|
23147
|
-
"digest": "sha256:
|
|
23662
|
+
"digest": "sha256:2ab3962c8aea07e0f0e48ff07cb247235a8310344ea750b37e1cf7beb24a8352",
|
|
23148
23663
|
"summary": "Standalone release passport JSON Schema, ownership/check manifest, and structural validation APIs.",
|
|
23149
23664
|
"capabilityGroup": "release-passport-trust",
|
|
23150
23665
|
"audience": [
|
|
23151
23666
|
"developer",
|
|
23152
23667
|
"agent"
|
|
23153
23668
|
],
|
|
23154
|
-
"symbolCount":
|
|
23669
|
+
"symbolCount": 16,
|
|
23155
23670
|
"symbolIds": [
|
|
23671
|
+
"packages/core/release-passport-contract.js#buildReleaseArtifactEvidence",
|
|
23672
|
+
"packages/core/release-passport-contract.js#collectKfdAdopterReleaseEvidence",
|
|
23156
23673
|
"packages/core/release-passport-contract.js#createReleasePassportCheckManifest",
|
|
23674
|
+
"packages/core/release-passport-contract.js#defaultReleaseAgentIndex",
|
|
23675
|
+
"packages/core/release-passport-contract.js#defaultReleaseImpact",
|
|
23676
|
+
"packages/core/release-passport-contract.js#defaultReleaseLlmsText",
|
|
23677
|
+
"packages/core/release-passport-contract.js#defaultReleaseProductMechanism",
|
|
23678
|
+
"packages/core/release-passport-contract.js#prepareReleasePassportKfdSections",
|
|
23679
|
+
"packages/core/release-passport-contract.js#RELEASE_CHECK_REPORT_CONTRACT",
|
|
23157
23680
|
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_CHECK_MANIFEST_CONTRACT",
|
|
23681
|
+
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_CONTRACT",
|
|
23158
23682
|
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_SCHEMA",
|
|
23159
23683
|
"packages/core/release-passport-contract.js#RELEASE_PASSPORT_SCHEMA_ID",
|
|
23684
|
+
"packages/core/release-passport-contract.js#resolveReleasePassportVerificationInputs",
|
|
23685
|
+
"packages/core/release-passport-contract.js#validateKfdAdopterReleaseEvidence",
|
|
23160
23686
|
"packages/core/release-passport-contract.js#validateReleasePassportSchema"
|
|
23161
23687
|
],
|
|
23162
23688
|
"owner": "buildchain-core",
|
|
@@ -23490,12 +24016,12 @@
|
|
|
23490
24016
|
{
|
|
23491
24017
|
"id": "cli-and-node-package",
|
|
23492
24018
|
"path": "docs/cli.md",
|
|
23493
|
-
"digest": "sha256:
|
|
24019
|
+
"digest": "sha256:142d4c11dde521dae8d829372ef28eb0b7b4d05ff29d0ce35d7fc33a7230dca5"
|
|
23494
24020
|
},
|
|
23495
24021
|
{
|
|
23496
24022
|
"id": "node-api-reference",
|
|
23497
24023
|
"path": "docs/node-api-reference.md",
|
|
23498
|
-
"digest": "sha256:
|
|
24024
|
+
"digest": "sha256:5caa3d6020c9449cb57bdeff92ec04255e7dafca8dd3639d3e134d72e75c5a2d"
|
|
23499
24025
|
},
|
|
23500
24026
|
{
|
|
23501
24027
|
"id": "build-facts",
|
|
@@ -23505,7 +24031,7 @@
|
|
|
23505
24031
|
{
|
|
23506
24032
|
"id": "kfd-support",
|
|
23507
24033
|
"path": "docs/kfd-support.md",
|
|
23508
|
-
"digest": "sha256:
|
|
24034
|
+
"digest": "sha256:4efc8fb6f94293b75606aa0631dfa122edccc970c2cfc00c7e35f81817ea8335"
|
|
23509
24035
|
},
|
|
23510
24036
|
{
|
|
23511
24037
|
"id": "readme-badges",
|