@unbrained/pm-cli 2026.8.21 → 2026.8.23
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/.claude-plugin/marketplace.json +2 -2
- package/CHANGELOG.md +44 -0
- package/dist/cli/error-guidance.d.ts +22 -4
- package/dist/cli/error-guidance.js +73 -16
- package/dist/cli/main.d.ts +3 -0
- package/dist/cli/main.js +51 -9
- package/dist/cli/register-mutation.js +6 -6
- package/dist/cli/register-operations.d.ts +73 -0
- package/dist/cli/register-operations.js +39 -14
- package/dist/cli/register-setup.js +3 -3
- package/dist/cli/schema-registration-helpers.d.ts +8 -1
- package/dist/cli/schema-registration-helpers.js +14 -5
- package/dist/cli-bundle/bundle-manifest.json +149 -149
- package/dist/cli-bundle/chunks/chunk-3ENVHX6C.js +36 -0
- package/dist/cli-bundle/chunks/{chunk-LOVTQ52Z.js → chunk-DW2CGEMU.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-EG6CLDZT.js +5 -0
- package/dist/cli-bundle/chunks/{chunk-LARJJ3RK.js → chunk-F3AI2JFL.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-N3DSV4CH.js → chunk-HWZ6CELB.js} +8 -8
- package/dist/cli-bundle/chunks/chunk-HZBMLSZI.js +201 -0
- package/dist/cli-bundle/chunks/chunk-JB4KZWBF.js +3 -0
- package/dist/cli-bundle/chunks/chunk-KPH73XXJ.js +2 -0
- package/dist/cli-bundle/chunks/{chunk-BKYB45NQ.js → chunk-KXPMB2YL.js} +50 -50
- package/dist/cli-bundle/chunks/{chunk-BUNIEJNE.js → chunk-QDVHNHAQ.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-TFI5V5N2.js +13 -0
- package/dist/cli-bundle/chunks/{register-list-query-F57EWDEF.js → register-list-query-UJB5FMV2.js} +2 -2
- package/dist/cli-bundle/chunks/register-mutation-NX5XE4VX.js +20 -0
- package/dist/cli-bundle/chunks/register-operations-RXIJIYXC.js +2 -0
- package/dist/cli-bundle/chunks/{register-setup-HXU7IZZD.js → register-setup-GFUZEKRE.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-F4YEW5I2.js → chunk-37Z4OEAP.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-3UPTYG44.js +8 -0
- package/dist/cli-bundle/focused-chunks/chunk-5S7E72FY.js +16 -0
- package/dist/cli-bundle/focused-chunks/{chunk-4ERLO7QD.js → chunk-AUFH5H35.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-E7X25GC3.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-FQCSTBWE.js +4 -0
- package/dist/cli-bundle/focused-chunks/{chunk-FH6DYED3.js → chunk-FZS4H32O.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-IFLWKY2R.js +156 -0
- package/dist/cli-bundle/focused-chunks/{chunk-YKBKIEAJ.js → chunk-JOWDB2MH.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-LYVSW5VM.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-MRCNF3U6.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-UZE7XUZK.js → chunk-OFVUGTLJ.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-FJ22HNRP.js → chunk-OGLQBL46.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-OY7QAV4Y.js +51 -0
- package/dist/cli-bundle/focused-chunks/chunk-QGFNI65N.js +26 -0
- package/dist/cli-bundle/focused-chunks/{chunk-KDNG7TKQ.js → chunk-R27IDGHD.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-UYRFYCDQ.js +5 -0
- package/dist/cli-bundle/focused-chunks/{chunk-2NIY5NKG.js → chunk-ZHVA42R5.js} +9 -9
- package/dist/cli-bundle/main.js +13 -13
- package/dist/cli-bundle/sdk-authoring.js +1 -1
- package/dist/cli-bundle/sdk-contracts.js +2 -2
- package/dist/cli-bundle/sdk-core.js +40 -40
- package/dist/cli-bundle/sdk-governance.js +1 -1
- package/dist/cli-bundle/sdk-graph.js +1 -1
- package/dist/cli-bundle/sdk-merge.js +33 -32
- package/dist/cli-bundle/sdk-query.js +1 -1
- package/dist/cli-bundle/sdk-runtime.js +1 -1
- package/dist/cli-bundle/sdk-testing.js +1 -1
- package/dist/cli-bundle/sdk.js +5 -5
- package/dist/core/config/nested-settings.js +8 -2
- package/dist/core/config/positional-value.d.ts +1 -1
- package/dist/core/config/positional-value.js +5 -2
- package/dist/core/extensions/extension-hook-runtime.js +22 -20
- package/dist/core/extensions/extension-types.d.ts +8 -1
- package/dist/core/extensions/extension-types.js +2 -2
- package/dist/core/extensions/loader.js +7 -3
- package/dist/core/extensions/service-ownership.d.ts +8 -0
- package/dist/core/extensions/service-ownership.js +20 -0
- package/dist/core/history/history.js +3 -3
- package/dist/core/item/id.js +20 -5
- package/dist/core/item/item-format.js +81 -2
- package/dist/core/reproducibility/context.d.ts +4 -0
- package/dist/core/reproducibility/context.js +14 -8
- package/dist/core/shared/author.d.ts +55 -1
- package/dist/core/shared/author.js +333 -16
- package/dist/core/shared/constants.js +3 -2
- package/dist/core/shared/errors.d.ts +4 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/core/store/settings-validator.d.ts +1 -0
- package/dist/core/store/settings-validator.js +6 -3
- package/dist/core/store/settings.js +5 -2
- package/dist/mcp/server.d.ts +1 -1
- package/dist/mcp/server.js +30 -9
- package/dist/sdk/agent/identity-config.d.ts +63 -0
- package/dist/sdk/agent/identity-config.js +107 -0
- package/dist/sdk/agent/refusal-corpus-contracts.d.ts +76 -0
- package/dist/sdk/agent/refusal-corpus-contracts.js +194 -0
- package/dist/sdk/agent/refusal-reachability.d.ts +1 -1
- package/dist/sdk/authoring.d.ts +1 -1
- package/dist/sdk/authoring.js +2 -2
- package/dist/sdk/cli-contracts/agent-output-contracts.d.ts +77 -0
- package/dist/sdk/cli-contracts/agent-output-contracts.js +326 -2
- package/dist/sdk/cli-contracts/commander-mutation-options.js +3 -3
- package/dist/sdk/cli-contracts/enum-contracts.d.ts +4 -0
- package/dist/sdk/cli-contracts/enum-contracts.js +9 -2
- package/dist/sdk/cli-contracts/flag-contracts.js +9 -2
- package/dist/sdk/cli-contracts/flag-lexicon-contracts.js +4 -4
- package/dist/sdk/cli-contracts/registration-helpers.js +5 -2
- package/dist/sdk/cli-contracts/runtime-contracts.d.ts +3 -1
- package/dist/sdk/cli-contracts/runtime-contracts.js +4 -3
- package/dist/sdk/cli-contracts/tool-parameter-tables.js +22 -2
- package/dist/sdk/cli-contracts/tool-schema.d.ts +1 -1
- package/dist/sdk/cli-contracts/tool-schema.js +14 -3
- package/dist/sdk/cli-contracts.d.ts +4 -4
- package/dist/sdk/cli-contracts.js +5 -5
- package/dist/sdk/config.d.ts +6 -1
- package/dist/sdk/config.js +119 -14
- package/dist/sdk/context-intent-contracts.js +4 -2
- package/dist/sdk/core-governance.d.ts +1 -1
- package/dist/sdk/core-governance.js +3 -3
- package/dist/sdk/extension/install-sources.d.ts +1 -1
- package/dist/sdk/extension/install-sources.js +6 -3
- package/dist/sdk/extension/output-ownership.d.ts +1 -0
- package/dist/sdk/extension/output-ownership.js +3 -2
- package/dist/sdk/extension/scaffold.js +11 -5
- package/dist/sdk/flag-invocation-contracts.js +4 -2
- package/dist/sdk/generated/generated-error-code-catalog-part-1.js +74 -2
- package/dist/sdk/generated/generated-error-code-catalog-part-2.js +87 -26
- package/dist/sdk/governance/assurance-action.js +30 -10
- package/dist/sdk/governance/health.d.ts +3 -0
- package/dist/sdk/governance/health.js +39 -7
- package/dist/sdk/governance/hierarchy-validation.d.ts +29 -0
- package/dist/sdk/governance/hierarchy-validation.js +109 -0
- package/dist/sdk/governance/validate.d.ts +3 -9
- package/dist/sdk/governance/validate.js +84 -111
- package/dist/sdk/graph/assembly.d.ts +6 -1
- package/dist/sdk/graph/assembly.js +16 -22
- package/dist/sdk/graph/governance-contracts.d.ts +1 -1
- package/dist/sdk/graph/governance-contracts.js +8 -2
- package/dist/sdk/graph/governance.js +46 -2
- package/dist/sdk/graph/hierarchy-integrity.d.ts +94 -0
- package/dist/sdk/graph/hierarchy-integrity.js +311 -0
- package/dist/sdk/graph/index.d.ts +2 -1
- package/dist/sdk/graph/index.js +3 -2
- package/dist/sdk/graph/remediation.js +32 -2
- package/dist/sdk/graph/run.d.ts +31 -2
- package/dist/sdk/graph/run.js +80 -31
- package/dist/sdk/graph/workspace-relationship-kind-registry.d.ts +8 -0
- package/dist/sdk/graph/workspace-relationship-kind-registry.js +28 -0
- package/dist/sdk/index.d.ts +8 -3
- package/dist/sdk/index.js +9 -4
- package/dist/sdk/item-children.js +21 -8
- package/dist/sdk/lifecycle/create.js +129 -97
- package/dist/sdk/lifecycle/hierarchy-mutation-lock.d.ts +15 -0
- package/dist/sdk/lifecycle/hierarchy-mutation-lock.js +25 -0
- package/dist/sdk/lifecycle/update.d.ts +2 -0
- package/dist/sdk/lifecycle/update.js +174 -84
- package/dist/sdk/merge/three-way.js +105 -26
- package/dist/sdk/query/complete-list.d.ts +3 -3
- package/dist/sdk/query/complete-list.js +46 -3
- package/dist/sdk/query/list.d.ts +4 -3
- package/dist/sdk/query/list.js +89 -49
- package/dist/sdk/read-output-budget.d.ts +21 -0
- package/dist/sdk/read-output-budget.js +39 -2
- package/dist/sdk/read-output-contracts.d.ts +10 -4
- package/dist/sdk/read-output-contracts.js +105 -32
- package/dist/sdk/relationship-context.js +3 -4
- package/dist/sdk/relationships.js +17 -10
- package/dist/sdk/reproducibility/process.d.ts +19 -0
- package/dist/sdk/reproducibility/process.js +88 -0
- package/dist/sdk/runtime-primitives.d.ts +1 -1
- package/dist/sdk/runtime-primitives.js +3 -3
- package/dist/sdk/runtime.d.ts +3 -2
- package/dist/sdk/runtime.js +7 -5
- package/dist/sdk/test/batch.d.ts +6 -0
- package/dist/sdk/test/batch.js +26 -6
- package/dist/sdk/test/entry.d.ts +1 -1
- package/dist/sdk/test/entry.js +3 -2
- package/dist/sdk/test/execution.d.ts +28 -3
- package/dist/sdk/test/execution.js +201 -34
- package/dist/sdk/test/parsers.d.ts +6 -0
- package/dist/sdk/test/parsers.js +21 -2
- package/dist/sdk/test/trust.d.ts +33 -0
- package/dist/sdk/test/trust.js +207 -0
- package/dist/types.d.ts +34 -0
- package/dist/types.js +2 -2
- package/docs/AGENT_PROVENANCE_ADR.md +41 -5
- package/docs/AGENT_UX_CONTRACTS.md +20 -4
- package/docs/COMMANDS.md +29 -14
- package/docs/CONFIGURATION.md +4 -0
- package/docs/DEPENDENCY_KIND_CONTRACT.md +31 -3
- package/docs/DIAGNOSTIC_OUTPUT_CONTRACTS.md +115 -0
- package/docs/EXTENSIONS.md +2 -1
- package/docs/MERGE_SAFETY.md +15 -1
- package/docs/README.md +1 -0
- package/docs/READ_OUTPUT_CONTRACTS.md +19 -2
- package/docs/RELATIONSHIP_GRAPH.md +6 -3
- package/docs/REPRODUCIBLE_WORKSPACES.md +42 -8
- package/docs/SDK.md +9 -0
- package/docs/SDK_AGENT_SESSION_CONTEXT.md +6 -4
- package/docs/SDK_EVIDENCE_TRACEABILITY.md +1 -1
- package/docs/TESTING.md +83 -1
- package/docs/agent-task-token-baseline.json +2 -2
- package/docs/generated/FLAG_LEXICON_BUDGETS.md +2 -2
- package/marketplace.json +2 -2
- package/package.json +2 -2
- package/packages/pm-beads/package.json +1 -1
- package/packages/pm-calendar/package.json +1 -1
- package/packages/pm-command-kit/package.json +1 -1
- package/packages/pm-digital-twin/package.json +1 -1
- package/packages/pm-governance-audit/package.json +1 -1
- package/packages/pm-guide-shell/package.json +1 -1
- package/packages/pm-kanban/package.json +1 -1
- package/packages/pm-lifecycle-hooks/package.json +1 -1
- package/packages/pm-linked-test-adapters/package.json +1 -1
- package/packages/pm-search-advanced/package.json +1 -1
- package/packages/pm-templates/package.json +1 -1
- package/packages/pm-todos/package.json +1 -1
- package/packages/pm-vcs/package.json +1 -1
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-codex/.codex-plugin/plugin.json +1 -1
- package/sdk/public-surface.json +1021 -53
- package/dist/cli-bundle/chunks/chunk-2MA6ZQVZ.js +0 -197
- package/dist/cli-bundle/chunks/chunk-3AFAUHUE.js +0 -2
- package/dist/cli-bundle/chunks/chunk-7VHZS727.js +0 -5
- package/dist/cli-bundle/chunks/chunk-JSLOFXGA.js +0 -3
- package/dist/cli-bundle/chunks/chunk-OCLPLFAY.js +0 -35
- package/dist/cli-bundle/chunks/chunk-S4IRYKBU.js +0 -13
- package/dist/cli-bundle/chunks/register-mutation-7IY2D5KO.js +0 -20
- package/dist/cli-bundle/chunks/register-operations-FALL3YTU.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-7WZRLCYF.js +0 -50
- package/dist/cli-bundle/focused-chunks/chunk-CKKQSJNN.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-EEFKYMDR.js +0 -16
- package/dist/cli-bundle/focused-chunks/chunk-F2A56DHV.js +0 -8
- package/dist/cli-bundle/focused-chunks/chunk-FV5ACOK7.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-JEAVFOWM.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-NJ63LOP6.js +0 -155
- package/dist/cli-bundle/focused-chunks/chunk-NXRTQ7HI.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-TJ7EMJ46.js +0 -4
- package/dist/cli-bundle/focused-chunks/chunk-ZOSEELYJ.js +0 -26
package/sdk/public-surface.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"aggregate_completeness": {
|
|
3
|
-
"covered_symbols":
|
|
3
|
+
"covered_symbols": 1793,
|
|
4
4
|
"excluded": [
|
|
5
5
|
{
|
|
6
6
|
"name": "_testOnlyCliContracts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}
|
|
9
9
|
],
|
|
10
10
|
"missing": [],
|
|
11
|
-
"required_symbols":
|
|
11
|
+
"required_symbols": 1794
|
|
12
12
|
},
|
|
13
13
|
"breaking_acknowledgements": [
|
|
14
14
|
{
|
|
@@ -967,6 +967,147 @@
|
|
|
967
967
|
],
|
|
968
968
|
"package_version": "2026.8.20",
|
|
969
969
|
"reason": "Expose exact prose-gap partitions on measurement and gate receipts while keeping fields optional for existing SDK consumers"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"changes": [
|
|
973
|
+
"signature ./sdk:GraphAnalyzeResult",
|
|
974
|
+
"signature ./sdk:PmCliErrorContext",
|
|
975
|
+
"signature ./sdk/graph:GraphAnalyzeResult"
|
|
976
|
+
],
|
|
977
|
+
"package_version": "2026.8.21",
|
|
978
|
+
"reason": "Expose optional graph hierarchy analytics and exact dependency-removal provenance; the snapshot conservatively classifies additive interface fields as signature changes."
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"changes": [
|
|
982
|
+
"signature ./sdk:GraphAuditResult",
|
|
983
|
+
"signature ./sdk/graph:GraphAuditResult"
|
|
984
|
+
],
|
|
985
|
+
"package_version": "2026.8.21",
|
|
986
|
+
"reason": "Remove the duplicate audit finding census from summary profiles while preserving it in detailed output and the top-level summary census."
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"changes": [
|
|
990
|
+
"signature ./sdk:_testOnlyHealthCommand",
|
|
991
|
+
"signature ./sdk/governance:_testOnlyHealthCommand"
|
|
992
|
+
],
|
|
993
|
+
"package_version": "2026.8.21",
|
|
994
|
+
"reason": "Extend the existing test-only health diagnostics surface with hierarchy warning rendering coverage."
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
"changes": [
|
|
998
|
+
"signature ./sdk:GraphHierarchySummary",
|
|
999
|
+
"signature ./sdk/graph:GraphHierarchySummary"
|
|
1000
|
+
],
|
|
1001
|
+
"package_version": "2026.8.21",
|
|
1002
|
+
"reason": "Add optional active and terminal-only hierarchy defect counts without removing or narrowing existing GraphHierarchySummary fields"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"changes": [
|
|
1006
|
+
"signature ./sdk:WorkspaceRelationshipAssembly",
|
|
1007
|
+
"signature ./sdk/graph:WorkspaceRelationshipAssembly"
|
|
1008
|
+
],
|
|
1009
|
+
"package_version": "2026.8.21",
|
|
1010
|
+
"reason": "Additive optional hierarchyIntegrity field preserves analysis across spread-copied assemblies; existing consumers and constructors remain source-compatible."
|
|
1011
|
+
},
|
|
1012
|
+
{
|
|
1013
|
+
"changes": [
|
|
1014
|
+
"signature ./sdk:duplicates",
|
|
1015
|
+
"signature ./sdk:ExtensionApi",
|
|
1016
|
+
"signature ./sdk:PM_COMPLETE_LIST_FINDING_CODES",
|
|
1017
|
+
"signature ./sdk:PM_READ_OUTPUT_SURFACES",
|
|
1018
|
+
"signature ./sdk:PmClient",
|
|
1019
|
+
"signature ./sdk:PmCompleteListResult",
|
|
1020
|
+
"signature ./sdk:RegisteredExtensionServiceOverride",
|
|
1021
|
+
"signature ./sdk/authoring:ExtensionApi",
|
|
1022
|
+
"signature ./sdk/authoring:RegisteredExtensionServiceOverride",
|
|
1023
|
+
"signature ./sdk/contracts:PM_READ_OUTPUT_SURFACES",
|
|
1024
|
+
"signature ./sdk/core:PmClient",
|
|
1025
|
+
"signature ./sdk/core:PmCompleteListResult",
|
|
1026
|
+
"signature ./sdk/query:PM_COMPLETE_LIST_FINDING_CODES",
|
|
1027
|
+
"signature ./sdk/query:PmCompleteListResult",
|
|
1028
|
+
"signature ./sdk/runtime:duplicates",
|
|
1029
|
+
"signature ./sdk/runtime:PmClient",
|
|
1030
|
+
"signature ./sdk/runtime:PmCompleteListResult"
|
|
1031
|
+
],
|
|
1032
|
+
"package_version": "2026.8.21",
|
|
1033
|
+
"reason": "Fail closed complete-list certification and add typed duplicates/service pass-through contracts"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"changes": [
|
|
1037
|
+
"signature ./sdk:PmReadOutputReceipt",
|
|
1038
|
+
"signature ./sdk:PmResolvedReadOutputDimensions",
|
|
1039
|
+
"signature ./sdk/contracts:PmReadOutputReceipt",
|
|
1040
|
+
"signature ./sdk/contracts:PmResolvedReadOutputDimensions",
|
|
1041
|
+
"signature ./sdk/core:PmReadOutputReceipt"
|
|
1042
|
+
],
|
|
1043
|
+
"package_version": "2026.8.21",
|
|
1044
|
+
"reason": "Add optional canonical read-output provenance to typed receipts while preserving all existing fields and behavior."
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"changes": [
|
|
1048
|
+
"signature ./sdk:ContractsResult",
|
|
1049
|
+
"signature ./sdk/runtime:ContractsResult"
|
|
1050
|
+
],
|
|
1051
|
+
"package_version": "2026.8.21",
|
|
1052
|
+
"reason": "Add optional diagnostic_output_contracts discovery metadata and additive diagnostic projection exports"
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
"changes": [
|
|
1056
|
+
"signature ./sdk:PmDiagnosticOutputReceipt",
|
|
1057
|
+
"signature ./sdk:PmProjectedDiagnostic",
|
|
1058
|
+
"signature ./sdk/contracts:PmDiagnosticOutputReceipt",
|
|
1059
|
+
"signature ./sdk/contracts:PmProjectedDiagnostic"
|
|
1060
|
+
],
|
|
1061
|
+
"package_version": "2026.8.21",
|
|
1062
|
+
"reason": "Correct projected diagnostic types to model deterministic field omission and disclose bounded omission overflow."
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"changes": [
|
|
1066
|
+
"signature ./sdk:ConfigResult",
|
|
1067
|
+
"signature ./sdk:PmReadOutputTruncationDisclosure",
|
|
1068
|
+
"signature ./sdk/contracts:PmReadOutputTruncationDisclosure",
|
|
1069
|
+
"signature ./sdk/runtime:ConfigResult"
|
|
1070
|
+
],
|
|
1071
|
+
"package_version": "2026.8.22",
|
|
1072
|
+
"reason": "pm-c0lrdm pm-yds9dt pm-xam9bt: add adapter/config receipts and widen incorrect fixed recovery-budget literals to measured number or explicit null/unbounded"
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
"changes": [
|
|
1076
|
+
"signature ./sdk:LinkedTest",
|
|
1077
|
+
"signature ./sdk:PmSettings",
|
|
1078
|
+
"signature ./sdk:TestAllCommandOptions",
|
|
1079
|
+
"signature ./sdk:TestCommandOptions",
|
|
1080
|
+
"signature ./sdk:TestRunResult",
|
|
1081
|
+
"signature ./sdk/core:PmSettings",
|
|
1082
|
+
"signature ./sdk/runtime:LinkedTest",
|
|
1083
|
+
"signature ./sdk/runtime:PmSettings"
|
|
1084
|
+
],
|
|
1085
|
+
"package_version": "2026.8.22",
|
|
1086
|
+
"reason": "Extend linked-test trust and workspace-context contracts across SDK entrypoints"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
"changes": [
|
|
1090
|
+
"signature ./sdk:PM_TOOL_PARAMETERS_SCHEMA_VERSION",
|
|
1091
|
+
"signature ./sdk/contracts:PM_TOOL_PARAMETERS_SCHEMA_VERSION"
|
|
1092
|
+
],
|
|
1093
|
+
"package_version": "2026.8.22",
|
|
1094
|
+
"reason": "Extend linked-test trust and workspace-context contracts across SDK entrypoints"
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"changes": [
|
|
1098
|
+
"signature ./sdk:LinkedTestFailureCategory",
|
|
1099
|
+
"signature ./sdk:LinkedTestTrustDecision"
|
|
1100
|
+
],
|
|
1101
|
+
"package_version": "2026.8.22",
|
|
1102
|
+
"reason": "Add explicit trust-refusal and invalid-provenance classifications required by linked-test execution safety"
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
"changes": [
|
|
1106
|
+
"signature ./sdk:LinkedTest",
|
|
1107
|
+
"signature ./sdk/runtime:LinkedTest"
|
|
1108
|
+
],
|
|
1109
|
+
"package_version": "2026.8.22",
|
|
1110
|
+
"reason": "Additive optional provenance_invalid marker preserves fail-closed storage state without widening the existing provenance source_kind union; two trust helpers are newly exported for CLI-consumer parity."
|
|
970
1111
|
}
|
|
971
1112
|
],
|
|
972
1113
|
"entrypoints": {
|
|
@@ -1019,7 +1160,7 @@
|
|
|
1019
1160
|
"classification": "supported",
|
|
1020
1161
|
"kind": "value",
|
|
1021
1162
|
"name": "_testOnlyHealthCommand",
|
|
1022
|
-
"signature": "{ buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; buildHealthFindings: typeof buildHealthFindings; buildCapabilityContractMetadata: typeof buildCapabilityContractMetadata; buildStaleInProgressHealthSummary: typeof buildStaleInProgressHealthSummary; buildVectorizationProviderDetails: typeof buildVectorizationProviderDetails; collectUnknownCapabilityGuidance: typeof collectUnknownCapabilityGuidance; isAdvisoryHealthWarning: typeof isAdvisoryHealthWarning; isDirectory: typeof isDirectory; isExpectedUnmanagedExtension: typeof isExpectedUnmanagedExtension; listItemDocumentPaths: typeof listItemDocumentPaths; normalizeEndpointForDisplay: typeof normalizeEndpointForDisplay; normalizeExtensionNameForMatch: typeof normalizeExtensionNameForMatch; parseTelemetryQueue: typeof parseTelemetryQueue; probeTelemetryEndpointHealth: typeof probeTelemetryEndpointHealth; projectHealthResult: typeof projectHealthResult; resolveActionableUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveHealthSkipPolicy: typeof resolveHealthSkipPolicy; resolveUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveVectorRefreshPolicy: typeof resolveVectorRefreshPolicy; selectStaleItemDetail: typeof selectStaleItemDetail; summarizeHealthCheckDetails: typeof summarizeHealthCheckDetails; summarizeExtensionList: typeof summarizeExtensionList; summarizeRecordList: typeof summarizeRecordList; summarizeStringList: typeof summarizeStringList; telemetryEnvFlagEnabled: typeof telemetryEnvFlagEnabled; warningCode: typeof warningCode; }"
|
|
1163
|
+
"signature": "{ buildHierarchyIntegrityWarnings: typeof buildHierarchyIntegrityWarnings; buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; buildHealthFindings: typeof buildHealthFindings; buildCapabilityContractMetadata: typeof buildCapabilityContractMetadata; buildStaleInProgressHealthSummary: typeof buildStaleInProgressHealthSummary; buildVectorizationProviderDetails: typeof buildVectorizationProviderDetails; collectUnknownCapabilityGuidance: typeof collectUnknownCapabilityGuidance; isAdvisoryHealthWarning: typeof isAdvisoryHealthWarning; isDirectory: typeof isDirectory; isExpectedUnmanagedExtension: typeof isExpectedUnmanagedExtension; listItemDocumentPaths: typeof listItemDocumentPaths; normalizeEndpointForDisplay: typeof normalizeEndpointForDisplay; normalizeExtensionNameForMatch: typeof normalizeExtensionNameForMatch; parseTelemetryQueue: typeof parseTelemetryQueue; probeTelemetryEndpointHealth: typeof probeTelemetryEndpointHealth; projectHealthResult: typeof projectHealthResult; resolveActionableUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveHealthSkipPolicy: typeof resolveHealthSkipPolicy; resolveUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveVectorRefreshPolicy: typeof resolveVectorRefreshPolicy; selectStaleItemDetail: typeof selectStaleItemDetail; summarizeHealthCheckDetails: typeof summarizeHealthCheckDetails; summarizeExtensionList: typeof summarizeExtensionList; summarizeRecordList: typeof summarizeRecordList; summarizeStringList: typeof summarizeStringList; telemetryEnvFlagEnabled: typeof telemetryEnvFlagEnabled; warningCode: typeof warningCode; }"
|
|
1023
1164
|
},
|
|
1024
1165
|
{
|
|
1025
1166
|
"classification": "advanced_export",
|
|
@@ -1081,6 +1222,12 @@
|
|
|
1081
1222
|
"name": "acceptAssuranceProposals",
|
|
1082
1223
|
"signature": "(pmRoot: string, proposals: readonly AssuranceDerivedProposal[], options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt> | calls: (pmRoot: string, proposals: readonly AssuranceDerivedProposal[], options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt>"
|
|
1083
1224
|
},
|
|
1225
|
+
{
|
|
1226
|
+
"classification": "advanced_export",
|
|
1227
|
+
"kind": "function",
|
|
1228
|
+
"name": "acknowledgeLinkedTests",
|
|
1229
|
+
"signature": "(pmRoot: string, tests: LinkedTest[], acknowledgedAt: string) => Promise<{ acknowledged: number; fingerprints: string[]; }> | calls: (pmRoot: string, tests: LinkedTest[], acknowledgedAt: string) => Promise<{ acknowledged: number; fingerprints: string[]; }>"
|
|
1230
|
+
},
|
|
1084
1231
|
{
|
|
1085
1232
|
"classification": "supported",
|
|
1086
1233
|
"kind": "interface",
|
|
@@ -1249,6 +1396,42 @@
|
|
|
1249
1396
|
"name": "AgentEpisodeIdentity",
|
|
1250
1397
|
"signature": "export interface AgentEpisodeIdentity { id: string; label?: string; parent_id?: string; }"
|
|
1251
1398
|
},
|
|
1399
|
+
{
|
|
1400
|
+
"classification": "advanced_export",
|
|
1401
|
+
"kind": "interface",
|
|
1402
|
+
"name": "AgentIdentityVocabulary",
|
|
1403
|
+
"signature": "export interface AgentIdentityVocabulary { version: number; aliases: Record<string, string>; }"
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"classification": "advanced_export",
|
|
1407
|
+
"kind": "interface",
|
|
1408
|
+
"name": "AgentIdentityVocabularyMutationInput",
|
|
1409
|
+
"signature": "export interface AgentIdentityVocabularyMutationInput { operation: AgentIdentityVocabularyOperation; legacy_author?: string; canonical_harness?: string; observed_authors?: readonly string[]; }"
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"classification": "advanced_export",
|
|
1413
|
+
"kind": "interface",
|
|
1414
|
+
"name": "AgentIdentityVocabularyMutationPlan",
|
|
1415
|
+
"signature": "export interface AgentIdentityVocabularyMutationPlan { vocabulary: AgentIdentityVocabulary; preview: AgentIdentityVocabularyMutationPreview; }"
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
"classification": "advanced_export",
|
|
1419
|
+
"kind": "interface",
|
|
1420
|
+
"name": "AgentIdentityVocabularyMutationPreview",
|
|
1421
|
+
"signature": "export interface AgentIdentityVocabularyMutationPreview { operation: AgentIdentityVocabularyOperation; changed: boolean; version_before: number; version_after: number; alias_count: number; residual_author_count: number; }"
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"classification": "advanced_export",
|
|
1425
|
+
"kind": "type",
|
|
1426
|
+
"name": "AgentIdentityVocabularyOperation",
|
|
1427
|
+
"signature": "export type AgentIdentityVocabularyOperation = \"add\" | \"remove\" | \"clear\";"
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"classification": "advanced_export",
|
|
1431
|
+
"kind": "interface",
|
|
1432
|
+
"name": "AgentIdentityVocabularySummary",
|
|
1433
|
+
"signature": "export interface AgentIdentityVocabularySummary { version: number; alias_count: number; }"
|
|
1434
|
+
},
|
|
1252
1435
|
{
|
|
1253
1436
|
"classification": "supported",
|
|
1254
1437
|
"kind": "interface",
|
|
@@ -1273,6 +1456,12 @@
|
|
|
1273
1456
|
"name": "AgentProvenanceAbsenceReason",
|
|
1274
1457
|
"signature": "export type AgentProvenanceAbsenceReason = \"harness_unavailable\" | \"resolver_failed\" | \"resolver_not_configured\" | \"probes_disabled\" | \"invalid_value\";"
|
|
1275
1458
|
},
|
|
1459
|
+
{
|
|
1460
|
+
"classification": "supported",
|
|
1461
|
+
"kind": "interface",
|
|
1462
|
+
"name": "AgentProvenanceAdapter",
|
|
1463
|
+
"signature": "export interface AgentProvenanceAdapter { contract_version: 1; adapter_version: string; priority: number; harness: string; descriptor: HarnessSignalDescriptor; supported_dimensions: readonly string[]; native_sources: readonly (\"environment\" | \"argv\" | \"mcp_client\" | \"session_file\")[]; probe_policy: { max_bytes: number; max_lines: number; network_access: false; subprocess_access: false; }; normalization: { model_family: \"v1\"; effort: \"v1\"; preserve_raw: true; }; confidence: \"high\" | \"medium\" | \"low\"; waivers?: Readonly<Record<string, string>>; }"
|
|
1464
|
+
},
|
|
1276
1465
|
{
|
|
1277
1466
|
"classification": "supported",
|
|
1278
1467
|
"kind": "interface",
|
|
@@ -1375,6 +1564,12 @@
|
|
|
1375
1564
|
"name": "analyzeGraphImpact",
|
|
1376
1565
|
"signature": "(graph: RelationshipGraph, root: string, options?: RelationshipImpactOptions) => RelationshipImpactAnalysis | calls: (graph: RelationshipGraph, root: string, options?: RelationshipImpactOptions) => RelationshipImpactAnalysis"
|
|
1377
1566
|
},
|
|
1567
|
+
{
|
|
1568
|
+
"classification": "supported",
|
|
1569
|
+
"kind": "function",
|
|
1570
|
+
"name": "analyzeHierarchyIntegrity",
|
|
1571
|
+
"signature": "(items: readonly HierarchyIntegrityItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => HierarchyIntegrityAnalysis | calls: (items: readonly HierarchyIntegrityItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => HierarchyIntegrityAnalysis"
|
|
1572
|
+
},
|
|
1378
1573
|
{
|
|
1379
1574
|
"classification": "supported",
|
|
1380
1575
|
"kind": "function",
|
|
@@ -1693,6 +1888,12 @@
|
|
|
1693
1888
|
"name": "assertExtensionPreflight",
|
|
1694
1889
|
"signature": "(blueprint: ExtensionBlueprint, options?: PreflightExtensionOptions) => ExtensionPreflightReport | calls: (blueprint: ExtensionBlueprint, options?: PreflightExtensionOptions) => ExtensionPreflightReport"
|
|
1695
1890
|
},
|
|
1891
|
+
{
|
|
1892
|
+
"classification": "supported",
|
|
1893
|
+
"kind": "function",
|
|
1894
|
+
"name": "assertHierarchyMutationAllowed",
|
|
1895
|
+
"signature": "(beforeItems: readonly HierarchyIntegrityItem[], afterItems: readonly HierarchyIntegrityItem[], changedItemId: string, isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => void | calls: (beforeItems: readonly HierarchyIntegrityItem[], afterItems: readonly HierarchyIntegrityItem[], changedItemId: string, isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => void"
|
|
1896
|
+
},
|
|
1696
1897
|
{
|
|
1697
1898
|
"classification": "advanced_export",
|
|
1698
1899
|
"kind": "function",
|
|
@@ -2281,6 +2482,18 @@
|
|
|
2281
2482
|
"name": "attachContextIntentReceipt",
|
|
2282
2483
|
"signature": "<Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => Result & { context_intent?: PmContextIntentReceipt; } | calls: <Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => Result & { context_intent?: PmContextIntentReceipt; }"
|
|
2283
2484
|
},
|
|
2485
|
+
{
|
|
2486
|
+
"classification": "advanced_export",
|
|
2487
|
+
"kind": "function",
|
|
2488
|
+
"name": "attachLinkedTestMutationProvenance",
|
|
2489
|
+
"signature": "(tests: LinkedTest[] | undefined, author: string, createdAt: string) => Promise<LinkedTest[] | undefined> | calls: (tests: LinkedTest[] | undefined, author: string, createdAt: string) => Promise<LinkedTest[] | undefined>"
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
"classification": "advanced_export",
|
|
2493
|
+
"kind": "function",
|
|
2494
|
+
"name": "attachLinkedTestProvenance",
|
|
2495
|
+
"signature": "(tests: LinkedTest[] | undefined, author: string, createdAt: string, sourceRef: string | undefined) => LinkedTest[] | undefined | calls: (tests: LinkedTest[] | undefined, author: string, createdAt: string, sourceRef: string | undefined) => LinkedTest[] | undefined"
|
|
2496
|
+
},
|
|
2284
2497
|
{
|
|
2285
2498
|
"classification": "advanced_export",
|
|
2286
2499
|
"kind": "function",
|
|
@@ -2623,6 +2836,12 @@
|
|
|
2623
2836
|
"name": "buildWorkspaceMemorySnapshot",
|
|
2624
2837
|
"signature": "(items: readonly ItemMetadata[], options: { statusRegistry: RuntimeStatusRegistry; sourceCursor: string; now: string; }) => WorkspaceMemorySnapshot | calls: (items: readonly ItemMetadata[], options: { statusRegistry: RuntimeStatusRegistry; sourceCursor: string; now: string; }) => WorkspaceMemorySnapshot"
|
|
2625
2838
|
},
|
|
2839
|
+
{
|
|
2840
|
+
"classification": "supported",
|
|
2841
|
+
"kind": "value",
|
|
2842
|
+
"name": "BUILTIN_AGENT_PROVENANCE_ADAPTERS",
|
|
2843
|
+
"signature": "readonly AgentProvenanceAdapter[]"
|
|
2844
|
+
},
|
|
2626
2845
|
{
|
|
2627
2846
|
"classification": "advanced_export",
|
|
2628
2847
|
"kind": "value",
|
|
@@ -3049,6 +3268,12 @@
|
|
|
3049
3268
|
"name": "collectErrorCauseCodes",
|
|
3050
3269
|
"signature": "(error: unknown) => string | calls: (error: unknown) => string"
|
|
3051
3270
|
},
|
|
3271
|
+
{
|
|
3272
|
+
"classification": "supported",
|
|
3273
|
+
"kind": "function",
|
|
3274
|
+
"name": "collectHierarchyRelations",
|
|
3275
|
+
"signature": "(items: readonly HierarchyIntegrityItem[], registry?: RelationshipKindRegistry) => HierarchyRelation[] | calls: (items: readonly HierarchyIntegrityItem[], registry?: RelationshipKindRegistry) => HierarchyRelation[]"
|
|
3276
|
+
},
|
|
3052
3277
|
{
|
|
3053
3278
|
"classification": "supported",
|
|
3054
3279
|
"kind": "function",
|
|
@@ -3431,7 +3656,7 @@
|
|
|
3431
3656
|
"classification": "advanced_export",
|
|
3432
3657
|
"kind": "interface",
|
|
3433
3658
|
"name": "ConfigResult",
|
|
3434
|
-
"signature": "export interface ConfigResult { scope: ConfigScope; key?: ConfigKey | string; criteria?: string[]; format?: ItemFormat; policy?: HistoryMissingStreamPolicy | SprintReleaseFormatPolicy | ParentReferencePolicy | ValidateMetadataProfile | GovernancePreset | GovernanceOwnershipEnforcement | GovernanceCreateModeDefault | GovernanceCloseValidationDefault | GovernanceRequireCloseReasonPolicy | GovernanceWorkflowEnforcement | GovernanceForceRequiredForStaleLockPolicy | TestResultTrackingPolicy | TelemetryTrackingPolicy | string; nested_setting?: NestedSettingResultValue; nested_settings?: NestedSettingResultValue[]; keys?: ConfigKeyDescriptor[]; values?: Record<ConfigKey, ConfigValue>; count?: number; context_settings?: ContextConfigValue; has_explicit_item_format?: boolean; migration?: { target_format: ItemFormat; scanned: number; migrated: string[]; removed: string[]; warnings: string[]; }; settings_path: string; changed: boolean; warnings?: string[]; }"
|
|
3659
|
+
"signature": "export interface ConfigResult { scope: ConfigScope; key?: ConfigKey | string; criteria?: string[]; format?: ItemFormat; policy?: HistoryMissingStreamPolicy | SprintReleaseFormatPolicy | ParentReferencePolicy | ValidateMetadataProfile | GovernancePreset | GovernanceOwnershipEnforcement | GovernanceCreateModeDefault | GovernanceCloseValidationDefault | GovernanceRequireCloseReasonPolicy | GovernanceWorkflowEnforcement | GovernanceForceRequiredForStaleLockPolicy | TestResultTrackingPolicy | TelemetryTrackingPolicy | string; nested_setting?: NestedSettingResultValue; nested_settings?: NestedSettingResultValue[]; keys?: ConfigKeyDescriptor[]; values?: Record<ConfigKey, ConfigValue>; count?: number; context_settings?: ContextConfigValue; identity_vocabulary?: AgentIdentityVocabularySummary; vocabulary_mutation?: AgentIdentityVocabularyMutationPreview; has_explicit_item_format?: boolean; migration?: { target_format: ItemFormat; scanned: number; migrated: string[]; removed: string[]; warnings: string[]; }; settings_path: string; changed: boolean; warnings?: string[]; }"
|
|
3435
3660
|
},
|
|
3436
3661
|
{
|
|
3437
3662
|
"classification": "advanced_export",
|
|
@@ -3803,7 +4028,7 @@
|
|
|
3803
4028
|
"classification": "advanced_export",
|
|
3804
4029
|
"kind": "interface",
|
|
3805
4030
|
"name": "ContractsResult",
|
|
3806
|
-
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
4031
|
+
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; diagnostic_output_contracts?: readonly PmDiagnosticOutputBudgetContract[]; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
3807
4032
|
},
|
|
3808
4033
|
{
|
|
3809
4034
|
"classification": "supported",
|
|
@@ -4057,6 +4282,12 @@
|
|
|
4057
4282
|
"name": "createRelationshipKindRegistry",
|
|
4058
4283
|
"signature": "() => RelationshipKindRegistry | calls: () => RelationshipKindRegistry"
|
|
4059
4284
|
},
|
|
4285
|
+
{
|
|
4286
|
+
"classification": "advanced_export",
|
|
4287
|
+
"kind": "function",
|
|
4288
|
+
"name": "createReproducibleProcessRunner",
|
|
4289
|
+
"signature": "(environment: ReproducibleProcessEnvironment) => ReproducibleProcessRunner | calls: (environment: ReproducibleProcessEnvironment) => ReproducibleProcessRunner"
|
|
4290
|
+
},
|
|
4060
4291
|
{
|
|
4061
4292
|
"classification": "supported",
|
|
4062
4293
|
"kind": "interface",
|
|
@@ -4853,7 +5084,7 @@
|
|
|
4853
5084
|
"classification": "advanced_export",
|
|
4854
5085
|
"kind": "function",
|
|
4855
5086
|
"name": "duplicates",
|
|
4856
|
-
"signature": "(options?:
|
|
5087
|
+
"signature": "<Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<DuplicatesResult, Options> | calls: <Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<DuplicatesResult, Options>"
|
|
4857
5088
|
},
|
|
4858
5089
|
{
|
|
4859
5090
|
"classification": "contract_data",
|
|
@@ -5381,7 +5612,7 @@
|
|
|
5381
5612
|
"classification": "supported",
|
|
5382
5613
|
"kind": "interface",
|
|
5383
5614
|
"name": "ExtensionApi",
|
|
5384
|
-
"signature": "export interface ExtensionApi { readonly extension: ExtensionSelfIdentity; registerCommand(command: string, override: CommandOverride): void; registerCommand(definition: CommandDefinition): void; registerParser(command: string, override: ParserOverride): void; registerPreflight(override: PreflightOverride | ScopedPreflightOverrideDefinition): void; registerService(service: ExtensionServiceName, override: ServiceOverride): void; registerFlags(targetCommand: string, flags: FlagDefinition[]): void; registerItemFields(fields: SchemaFieldDefinition[]): void; registerItemTypes(types: SchemaItemTypeDefinition[]): void; registerRelationshipKinds(definitions: RelationshipKindDefinition[]): void; registerMigration(definition: SchemaMigrationDefinition): void; registerProfile(profile: ProjectProfileRegistrationInput): void; registerRenderer(format: OutputRendererFormat, renderer: RendererOverride, ownership?: RendererOverrideOwnership): void; registerImporter(name: string, importer: Importer, options?: ImportExportRegistrationOptions): void; registerExporter(name: string, exporter: Exporter, options?: ExporterRegistrationOptions): void; registerSearchProvider(provider: SearchProviderDefinition): void; registerVectorStoreAdapter(adapter: VectorStoreAdapterDefinition): void; registerAssuranceMeasurementProvider(provider: AssuranceMeasurementProviderDefinition): void; hooks: { beforeCommand(hook: BeforeCommandHook): void; beforeMutation(hook: BeforeMutationHook): void; afterCommand(hook: AfterCommandHook): void; onWrite(hook: OnWriteHook): void; onRead(hook: OnReadHook): void; onIndex(hook: OnIndexHook): void; }; }"
|
|
5615
|
+
"signature": "export interface ExtensionApi { readonly extension: ExtensionSelfIdentity; registerCommand(command: string, override: CommandOverride): void; registerCommand(definition: CommandDefinition): void; registerParser(command: string, override: ParserOverride): void; registerPreflight(override: PreflightOverride | ScopedPreflightOverrideDefinition): void; registerService(service: ExtensionServiceName, override: ServiceOverride, ownership?: ServiceOverrideOwnership): void; registerFlags(targetCommand: string, flags: FlagDefinition[]): void; registerItemFields(fields: SchemaFieldDefinition[]): void; registerItemTypes(types: SchemaItemTypeDefinition[]): void; registerRelationshipKinds(definitions: RelationshipKindDefinition[]): void; registerMigration(definition: SchemaMigrationDefinition): void; registerProfile(profile: ProjectProfileRegistrationInput): void; registerRenderer(format: OutputRendererFormat, renderer: RendererOverride, ownership?: RendererOverrideOwnership): void; registerImporter(name: string, importer: Importer, options?: ImportExportRegistrationOptions): void; registerExporter(name: string, exporter: Exporter, options?: ExporterRegistrationOptions): void; registerSearchProvider(provider: SearchProviderDefinition): void; registerVectorStoreAdapter(adapter: VectorStoreAdapterDefinition): void; registerAssuranceMeasurementProvider(provider: AssuranceMeasurementProviderDefinition): void; hooks: { beforeCommand(hook: BeforeCommandHook): void; beforeMutation(hook: BeforeMutationHook): void; afterCommand(hook: AfterCommandHook): void; onWrite(hook: OnWriteHook): void; onRead(hook: OnReadHook): void; onIndex(hook: OnIndexHook): void; }; }"
|
|
5385
5616
|
},
|
|
5386
5617
|
{
|
|
5387
5618
|
"classification": "supported",
|
|
@@ -6097,6 +6328,12 @@
|
|
|
6097
6328
|
"name": "formatDuplicateEdgeGroup",
|
|
6098
6329
|
"signature": "(group: DuplicateRelationshipEdgeGroup) => string | calls: (group: DuplicateRelationshipEdgeGroup) => string"
|
|
6099
6330
|
},
|
|
6331
|
+
{
|
|
6332
|
+
"classification": "supported",
|
|
6333
|
+
"kind": "function",
|
|
6334
|
+
"name": "formatHierarchyRelation",
|
|
6335
|
+
"signature": "(relation: HierarchyRelation) => string | calls: (relation: HierarchyRelation) => string"
|
|
6336
|
+
},
|
|
6100
6337
|
{
|
|
6101
6338
|
"classification": "supported",
|
|
6102
6339
|
"kind": "function",
|
|
@@ -6377,7 +6614,7 @@
|
|
|
6377
6614
|
"classification": "supported",
|
|
6378
6615
|
"kind": "interface",
|
|
6379
6616
|
"name": "GraphAnalyzeResult",
|
|
6380
|
-
"signature": "export interface GraphAnalyzeResult { subcommand: \"analyze\"; node_count: number; edge_count: number; edge_basis: \"deduplicated_directed\"; sample_limit: number; execution: GraphExecutionSummary; knowledge: GraphKnowledgeSummary; cache?: GraphCacheMetadata; }"
|
|
6617
|
+
"signature": "export interface GraphAnalyzeResult { subcommand: \"analyze\"; node_count: number; edge_count: number; edge_basis: \"deduplicated_directed\"; sample_limit: number; execution: GraphExecutionSummary; knowledge: GraphKnowledgeSummary; hierarchy?: GraphHierarchySummary; cache?: GraphCacheMetadata; }"
|
|
6381
6618
|
},
|
|
6382
6619
|
{
|
|
6383
6620
|
"classification": "supported",
|
|
@@ -6395,7 +6632,7 @@
|
|
|
6395
6632
|
"classification": "supported",
|
|
6396
6633
|
"kind": "interface",
|
|
6397
6634
|
"name": "GraphAuditResult",
|
|
6398
|
-
"signature": "export interface GraphAuditResult { subcommand: \"audit\"; finding_count: number; findings_by_severity: Record<string, number>; findings_by_code: Record<string, number>; affected_subjects_by_severity: Record<string, number>; affected_subjects_by_code: Record<string, number>; profile: RelationshipAuditReport[\"profile\"]
|
|
6635
|
+
"signature": "export interface GraphAuditResult { subcommand: \"audit\"; finding_count: number; findings_by_severity: Record<string, number>; findings_by_code: Record<string, number>; affected_subjects_by_severity: Record<string, number>; affected_subjects_by_code: Record<string, number>; profile: Omit<RelationshipAuditReport[\"profile\"], \"finding_subjects_by_code\"> & Partial<Pick<RelationshipAuditReport[\"profile\"], \"finding_subjects_by_code\">>; legacy_alias_counts?: Record<string, number>; findings?: RelationshipAuditReport[\"findings\"]; baseline?: RelationshipAuditDelta; cache?: GraphCacheMetadata; }"
|
|
6399
6636
|
},
|
|
6400
6637
|
{
|
|
6401
6638
|
"classification": "supported",
|
|
@@ -6481,6 +6718,12 @@
|
|
|
6481
6718
|
"name": "GraphExecutionSummary",
|
|
6482
6719
|
"signature": "export interface GraphExecutionSummary { acyclic: boolean; ordered_node_count: number; layer_count: number; frontier_count: number; frontier?: string[]; critical_path_length: number; critical_path?: string[]; cycle_count: number; cycles?: string[][]; }"
|
|
6483
6720
|
},
|
|
6721
|
+
{
|
|
6722
|
+
"classification": "supported",
|
|
6723
|
+
"kind": "interface",
|
|
6724
|
+
"name": "GraphHierarchySummary",
|
|
6725
|
+
"signature": "export interface GraphHierarchySummary { acyclic: boolean; relation_count: number; cycle_count: number; active_cycle_count?: number; legacy_cycle_count?: number; cardinality_violation_count: number; active_cardinality_violation_count?: number; legacy_cardinality_violation_count?: number; parent_divergence_count: number; active_parent_divergence_count?: number; legacy_parent_divergence_count?: number; cycles?: string[][]; }"
|
|
6726
|
+
},
|
|
6484
6727
|
{
|
|
6485
6728
|
"classification": "supported",
|
|
6486
6729
|
"kind": "interface",
|
|
@@ -6721,24 +6964,72 @@
|
|
|
6721
6964
|
"name": "hierarchyAncestors",
|
|
6722
6965
|
"signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
|
|
6723
6966
|
},
|
|
6967
|
+
{
|
|
6968
|
+
"classification": "supported",
|
|
6969
|
+
"kind": "interface",
|
|
6970
|
+
"name": "HierarchyCardinalityViolation",
|
|
6971
|
+
"signature": "export interface HierarchyCardinalityViolation { child_id: string; parent_ids: string[]; legacy_terminal: boolean; }"
|
|
6972
|
+
},
|
|
6724
6973
|
{
|
|
6725
6974
|
"classification": "supported",
|
|
6726
6975
|
"kind": "interface",
|
|
6727
6976
|
"name": "HierarchyChild",
|
|
6728
6977
|
"signature": "export interface HierarchyChild { id: string; title: string; type: string; status: ItemStatus; children_total: number; children_closed: number; }"
|
|
6729
6978
|
},
|
|
6979
|
+
{
|
|
6980
|
+
"classification": "supported",
|
|
6981
|
+
"kind": "interface",
|
|
6982
|
+
"name": "HierarchyCycle",
|
|
6983
|
+
"signature": "export interface HierarchyCycle { item_ids: string[]; legacy_terminal: boolean; }"
|
|
6984
|
+
},
|
|
6730
6985
|
{
|
|
6731
6986
|
"classification": "supported",
|
|
6732
6987
|
"kind": "function",
|
|
6733
6988
|
"name": "hierarchyDescendants",
|
|
6734
6989
|
"signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
|
|
6735
6990
|
},
|
|
6991
|
+
{
|
|
6992
|
+
"classification": "supported",
|
|
6993
|
+
"kind": "interface",
|
|
6994
|
+
"name": "HierarchyIntegrityAnalysis",
|
|
6995
|
+
"signature": "export interface HierarchyIntegrityAnalysis { relations: HierarchyRelation[]; cycles: HierarchyCycle[]; cardinality_violations: HierarchyCardinalityViolation[]; divergences: HierarchyParentDivergence[]; }"
|
|
6996
|
+
},
|
|
6997
|
+
{
|
|
6998
|
+
"classification": "supported",
|
|
6999
|
+
"kind": "interface",
|
|
7000
|
+
"name": "HierarchyIntegrityItem",
|
|
7001
|
+
"signature": "export interface HierarchyIntegrityItem { id: string; status: ItemStatus; parent?: string; dependencies?: Dependency[]; }"
|
|
7002
|
+
},
|
|
6736
7003
|
{
|
|
6737
7004
|
"classification": "supported",
|
|
6738
7005
|
"kind": "interface",
|
|
6739
7006
|
"name": "HierarchyNode",
|
|
6740
7007
|
"signature": "export interface HierarchyNode { id: string; title: string; type: string; status: ItemStatus; children_total: number; children_closed: number; children_open: number; children_in_progress: number; children_blocked: number; children: HierarchyChild[]; }"
|
|
6741
7008
|
},
|
|
7009
|
+
{
|
|
7010
|
+
"classification": "supported",
|
|
7011
|
+
"kind": "interface",
|
|
7012
|
+
"name": "HierarchyParentDivergence",
|
|
7013
|
+
"signature": "export interface HierarchyParentDivergence { child_id: string; scalar_parent_id: string; dependency_parent_ids: string[]; legacy_terminal: boolean; }"
|
|
7014
|
+
},
|
|
7015
|
+
{
|
|
7016
|
+
"classification": "supported",
|
|
7017
|
+
"kind": "interface",
|
|
7018
|
+
"name": "HierarchyRelation",
|
|
7019
|
+
"signature": "export interface HierarchyRelation { parent_id: string; child_id: string; source: HierarchyRelationSource; kind: string; holder_id: string; target_id?: string; child_cardinality: \"one\" | \"many\"; }"
|
|
7020
|
+
},
|
|
7021
|
+
{
|
|
7022
|
+
"classification": "supported",
|
|
7023
|
+
"kind": "interface",
|
|
7024
|
+
"name": "HierarchyRelationIndexes",
|
|
7025
|
+
"signature": "export interface HierarchyRelationIndexes { parents_by_child: ReadonlyMap<string, readonly string[]>; children_by_parent: ReadonlyMap<string, readonly string[]>; }"
|
|
7026
|
+
},
|
|
7027
|
+
{
|
|
7028
|
+
"classification": "supported",
|
|
7029
|
+
"kind": "type",
|
|
7030
|
+
"name": "HierarchyRelationSource",
|
|
7031
|
+
"signature": "export type HierarchyRelationSource = \"scalar_parent\" | \"dependency\";"
|
|
7032
|
+
},
|
|
6742
7033
|
{
|
|
6743
7034
|
"classification": "contract_data",
|
|
6744
7035
|
"kind": "value",
|
|
@@ -7093,6 +7384,12 @@
|
|
|
7093
7384
|
"name": "IndexedLinkedFileMatch",
|
|
7094
7385
|
"signature": "export interface IndexedLinkedFileMatch { item: ItemMetadata; files: LinkedFile[]; }"
|
|
7095
7386
|
},
|
|
7387
|
+
{
|
|
7388
|
+
"classification": "supported",
|
|
7389
|
+
"kind": "function",
|
|
7390
|
+
"name": "indexHierarchyRelations",
|
|
7391
|
+
"signature": "(relations: readonly HierarchyRelation[]) => HierarchyRelationIndexes | calls: (relations: readonly HierarchyRelation[]) => HierarchyRelationIndexes"
|
|
7392
|
+
},
|
|
7096
7393
|
{
|
|
7097
7394
|
"classification": "advanced_export",
|
|
7098
7395
|
"kind": "function",
|
|
@@ -7645,6 +7942,12 @@
|
|
|
7645
7942
|
"name": "LINKED_TEST_PROTECTED_ENV_KEYS",
|
|
7646
7943
|
"signature": "Set<string>"
|
|
7647
7944
|
},
|
|
7945
|
+
{
|
|
7946
|
+
"classification": "advanced_export",
|
|
7947
|
+
"kind": "value",
|
|
7948
|
+
"name": "LINKED_TEST_WORKSPACE_CONTEXT_MODE_VALUES",
|
|
7949
|
+
"signature": "readonly [\"source\", \"isolated\", \"snapshot\"]"
|
|
7950
|
+
},
|
|
7648
7951
|
{
|
|
7649
7952
|
"classification": "advanced_export",
|
|
7650
7953
|
"kind": "type",
|
|
@@ -7697,13 +8000,13 @@
|
|
|
7697
8000
|
"classification": "advanced_export",
|
|
7698
8001
|
"kind": "interface",
|
|
7699
8002
|
"name": "LinkedTest",
|
|
7700
|
-
"signature": "export interface LinkedTest { command?: string; path?: string; scope: LinkScope; timeout_seconds?: number; pm_context_mode?: \"schema\" | \"tracker\" | \"auto\"; env_set?: Record<string, string>; env_clear?: string[]; shared_host_safe?: boolean; assert_stdout_contains?: string[]; assert_stdout_regex?: string[]; assert_stderr_contains?: string[]; assert_stderr_regex?: string[]; assert_stdout_min_lines?: number; assert_json_field_equals?: Record<string, string>; assert_json_field_gte?: Record<string, number>; note?: string; }"
|
|
8003
|
+
"signature": "export interface LinkedTest { command?: string; path?: string; scope: LinkScope; timeout_seconds?: number; pm_context_mode?: \"schema\" | \"tracker\" | \"auto\"; workspace_context_mode?: \"source\" | \"isolated\" | \"snapshot\"; provenance?: LinkedTestProvenance; provenance_invalid?: true; env_set?: Record<string, string>; env_clear?: string[]; shared_host_safe?: boolean; assert_stdout_contains?: string[]; assert_stdout_regex?: string[]; assert_stderr_contains?: string[]; assert_stderr_regex?: string[]; assert_stdout_min_lines?: number; assert_json_field_equals?: Record<string, string>; assert_json_field_gte?: Record<string, number>; note?: string; }"
|
|
7701
8004
|
},
|
|
7702
8005
|
{
|
|
7703
8006
|
"classification": "advanced_export",
|
|
7704
8007
|
"kind": "type",
|
|
7705
8008
|
"name": "LinkedTestFailureCategory",
|
|
7706
|
-
"signature": "export type LinkedTestFailureCategory = \"infra_collision\" | \"assertion_failure\" | \"empty_run\" | \"timeout\" | \"max_buffer\" | \"spawn_error\" | \"signal\";"
|
|
8009
|
+
"signature": "export type LinkedTestFailureCategory = \"infra_collision\" | \"trust_refusal\" | \"assertion_failure\" | \"empty_run\" | \"timeout\" | \"max_buffer\" | \"spawn_error\" | \"signal\";"
|
|
7707
8010
|
},
|
|
7708
8011
|
{
|
|
7709
8012
|
"classification": "advanced_export",
|
|
@@ -7711,6 +8014,24 @@
|
|
|
7711
8014
|
"name": "LinkedTestPmContextMode",
|
|
7712
8015
|
"signature": "export type LinkedTestPmContextMode = (typeof LINKED_TEST_PM_CONTEXT_MODE_VALUES)[number];"
|
|
7713
8016
|
},
|
|
8017
|
+
{
|
|
8018
|
+
"classification": "advanced_export",
|
|
8019
|
+
"kind": "interface",
|
|
8020
|
+
"name": "LinkedTestTrustDecision",
|
|
8021
|
+
"signature": "export interface LinkedTestTrustDecision { fingerprint: string; trusted: boolean; reason: \"legacy\" | \"local_mutation\" | \"local_source_ref\" | \"acknowledged\" | \"invalid_provenance\" | \"foreign_source_ref\"; source_ref?: string; current_source_ref?: string; }"
|
|
8022
|
+
},
|
|
8023
|
+
{
|
|
8024
|
+
"classification": "advanced_export",
|
|
8025
|
+
"kind": "function",
|
|
8026
|
+
"name": "linkedTestTrustFingerprint",
|
|
8027
|
+
"signature": "(test: LinkedTest) => string | calls: (test: LinkedTest) => string"
|
|
8028
|
+
},
|
|
8029
|
+
{
|
|
8030
|
+
"classification": "advanced_export",
|
|
8031
|
+
"kind": "type",
|
|
8032
|
+
"name": "LinkedTestWorkspaceContextMode",
|
|
8033
|
+
"signature": "export type LinkedTestWorkspaceContextMode = (typeof LINKED_TEST_WORKSPACE_CONTEXT_MODE_VALUES)[number];"
|
|
8034
|
+
},
|
|
7714
8035
|
{
|
|
7715
8036
|
"classification": "supported",
|
|
7716
8037
|
"kind": "function",
|
|
@@ -7771,6 +8092,12 @@
|
|
|
7771
8092
|
"name": "LIST_SORT_ORDER_VALUES",
|
|
7772
8093
|
"signature": "readonly [\"asc\", \"desc\"]"
|
|
7773
8094
|
},
|
|
8095
|
+
{
|
|
8096
|
+
"classification": "supported",
|
|
8097
|
+
"kind": "function",
|
|
8098
|
+
"name": "listAgentProvenanceAdapters",
|
|
8099
|
+
"signature": "() => readonly AgentProvenanceAdapter[] | calls: () => readonly AgentProvenanceAdapter[]"
|
|
8100
|
+
},
|
|
7774
8101
|
{
|
|
7775
8102
|
"classification": "advanced_export",
|
|
7776
8103
|
"kind": "function",
|
|
@@ -7933,6 +8260,18 @@
|
|
|
7933
8260
|
"name": "listPmMcpToolsForProfile",
|
|
7934
8261
|
"signature": "(availableTools: readonly string[], profile: Exclude<PmMcpToolProfile, \"custom\">) => string[] | calls: (availableTools: readonly string[], profile: Exclude<PmMcpToolProfile, \"custom\">) => string[]"
|
|
7935
8262
|
},
|
|
8263
|
+
{
|
|
8264
|
+
"classification": "advanced_export",
|
|
8265
|
+
"kind": "function",
|
|
8266
|
+
"name": "listPmRequiredArgumentRefusalContracts",
|
|
8267
|
+
"signature": "(contracts?: readonly PmCommandPositionalContract[]) => PmRequiredArgumentRefusalContract[] | calls: (contracts?: readonly PmCommandPositionalContract[]) => PmRequiredArgumentRefusalContract[]"
|
|
8268
|
+
},
|
|
8269
|
+
{
|
|
8270
|
+
"classification": "advanced_export",
|
|
8271
|
+
"kind": "function",
|
|
8272
|
+
"name": "listPmSubcommandRefusalContracts",
|
|
8273
|
+
"signature": "(contracts?: readonly PmCommandPositionalContract[]) => PmSubcommandRefusalContract[] | calls: (contracts?: readonly PmCommandPositionalContract[]) => PmSubcommandRefusalContract[]"
|
|
8274
|
+
},
|
|
7936
8275
|
{
|
|
7937
8276
|
"classification": "supported",
|
|
7938
8277
|
"kind": "function",
|
|
@@ -8149,6 +8488,12 @@
|
|
|
8149
8488
|
"name": "MERGE_FLAG_CONTRACTS",
|
|
8150
8489
|
"signature": "CliFlagContract[]"
|
|
8151
8490
|
},
|
|
8491
|
+
{
|
|
8492
|
+
"classification": "contract_data",
|
|
8493
|
+
"kind": "value",
|
|
8494
|
+
"name": "MERGE_SUBCOMMAND_VALUES",
|
|
8495
|
+
"signature": "readonly [\"install\", \"reconcile\", \"report\", \"driver\"]"
|
|
8496
|
+
},
|
|
8152
8497
|
{
|
|
8153
8498
|
"classification": "advanced_export",
|
|
8154
8499
|
"kind": "function",
|
|
@@ -8287,6 +8632,12 @@
|
|
|
8287
8632
|
"name": "mergeSortedWarnings",
|
|
8288
8633
|
"signature": "(...warningGroups: Array<string[] | undefined>) => string[] | calls: (...warningGroups: Array<string[] | undefined>) => string[]"
|
|
8289
8634
|
},
|
|
8635
|
+
{
|
|
8636
|
+
"classification": "contract_data",
|
|
8637
|
+
"kind": "type",
|
|
8638
|
+
"name": "MergeSubcommand",
|
|
8639
|
+
"signature": "export type MergeSubcommand = (typeof MERGE_SUBCOMMAND_VALUES)[number];"
|
|
8640
|
+
},
|
|
8290
8641
|
{
|
|
8291
8642
|
"classification": "advanced_export",
|
|
8292
8643
|
"kind": "function",
|
|
@@ -8437,6 +8788,12 @@
|
|
|
8437
8788
|
"name": "NextResult",
|
|
8438
8789
|
"signature": "export interface NextResult { output_default: \"toon\"; now: string; recommended: NextRecommendation | null; ready: NextActionableItem[]; decision_needed: NextActionableItem[]; blocked: NextActionableItem[]; held_by_others: Array<{ id: string; assignee: string; }>; summary: NextSummary; filters: { type: string | null; tag: string | null; priority: string | number | null; assignee: string | null; assignee_filter: string | null; sprint: string | null; release: string | null; parent: string | null; limit: number; blocked_limit: number; ready_only: boolean; include_decisions: boolean; token_budget: number; }; suggestions?: string[]; warnings?: string[]; ranking?: ContextRankingSummary; packing?: ContextPackingSummary; truncation?: { decision_needed_total?: number; held_by_others_total?: number; }; }"
|
|
8439
8790
|
},
|
|
8791
|
+
{
|
|
8792
|
+
"classification": "supported",
|
|
8793
|
+
"kind": "function",
|
|
8794
|
+
"name": "normalizeAgentProvenanceAdapterValue",
|
|
8795
|
+
"signature": "(dimension: \"effort\" | \"model\", value: string) => NormalizedAgentProvenanceAdapterValue | calls: (dimension: \"model\" | \"effort\", value: string) => NormalizedAgentProvenanceAdapterValue"
|
|
8796
|
+
},
|
|
8440
8797
|
{
|
|
8441
8798
|
"classification": "advanced_export",
|
|
8442
8799
|
"kind": "function",
|
|
@@ -8461,6 +8818,12 @@
|
|
|
8461
8818
|
"name": "normalizeBootstrapInvocation",
|
|
8462
8819
|
"signature": "(argv: string[]) => BootstrapInvocationNormalizationResult | calls: (argv: string[]) => BootstrapInvocationNormalizationResult"
|
|
8463
8820
|
},
|
|
8821
|
+
{
|
|
8822
|
+
"classification": "supported",
|
|
8823
|
+
"kind": "interface",
|
|
8824
|
+
"name": "NormalizedAgentProvenanceAdapterValue",
|
|
8825
|
+
"signature": "export interface NormalizedAgentProvenanceAdapterValue { raw: string; normalized: string; vocabulary: \"v1\"; }"
|
|
8826
|
+
},
|
|
8464
8827
|
{
|
|
8465
8828
|
"classification": "supported",
|
|
8466
8829
|
"kind": "function",
|
|
@@ -9061,6 +9424,12 @@
|
|
|
9061
9424
|
"name": "parseLinkedTestStringList",
|
|
9062
9425
|
"signature": "(raw: string | undefined) => string[] | undefined | calls: (raw: string | undefined) => string[] | undefined"
|
|
9063
9426
|
},
|
|
9427
|
+
{
|
|
9428
|
+
"classification": "advanced_export",
|
|
9429
|
+
"kind": "function",
|
|
9430
|
+
"name": "parseLinkedTestWorkspaceContextMode",
|
|
9431
|
+
"signature": "(raw: string | undefined, optionName: string) => LinkedTest[\"workspace_context_mode\"] | undefined | calls: (raw: string | undefined, optionName: string) => LinkedTest[\"workspace_context_mode\"] | undefined"
|
|
9432
|
+
},
|
|
9064
9433
|
{
|
|
9065
9434
|
"classification": "advanced_export",
|
|
9066
9435
|
"kind": "function",
|
|
@@ -9277,6 +9646,12 @@
|
|
|
9277
9646
|
"name": "PLAN_TEMPLATE_NAMES",
|
|
9278
9647
|
"signature": "readonly [\"bug-investigation\", \"feature-implementation\", \"refactoring-sprint\"]"
|
|
9279
9648
|
},
|
|
9649
|
+
{
|
|
9650
|
+
"classification": "advanced_export",
|
|
9651
|
+
"kind": "function",
|
|
9652
|
+
"name": "planAgentIdentityVocabularyMutation",
|
|
9653
|
+
"signature": "(current: AgentIdentityVocabulary | undefined, input: AgentIdentityVocabularyMutationInput) => AgentIdentityVocabularyMutationPlan | calls: (current: AgentIdentityVocabulary | undefined, input: AgentIdentityVocabularyMutationInput) => AgentIdentityVocabularyMutationPlan"
|
|
9654
|
+
},
|
|
9280
9655
|
{
|
|
9281
9656
|
"classification": "advanced_export",
|
|
9282
9657
|
"kind": "interface",
|
|
@@ -9467,7 +9842,7 @@
|
|
|
9467
9842
|
"classification": "supported",
|
|
9468
9843
|
"kind": "value",
|
|
9469
9844
|
"name": "PM_COMPLETE_LIST_FINDING_CODES",
|
|
9470
|
-
"signature": "readonly [\"invalid_envelope\", \"source_incomplete\", \"source_unchecked\", \"filtered_corpus\", \"terminal_items_excluded\", \"strict_read_unproven\", \"page_incomplete\", \"count_mismatch\", \"projection_incomplete\", \"field_omission\", \"budget_compaction\", \"budget_omission\", \"session_projection\", \"invalid_item_id\", \"duplicate_item_id\"]"
|
|
9845
|
+
"signature": "readonly [\"invalid_envelope\", \"source_incomplete\", \"source_unchecked\", \"filtered_corpus\", \"terminal_items_excluded\", \"strict_read_unproven\", \"page_incomplete\", \"count_mismatch\", \"projection_incomplete\", \"field_omission\", \"omission_receipt_missing\", \"omission_receipt_invalid\", \"read_output_missing\", \"read_output_invalid\", \"read_output_dimensions_incomplete\", \"budget_compaction\", \"budget_omission\", \"session_projection\", \"invalid_item_id\", \"duplicate_item_id\"]"
|
|
9471
9846
|
},
|
|
9472
9847
|
{
|
|
9473
9848
|
"classification": "contract_data",
|
|
@@ -9499,6 +9874,24 @@
|
|
|
9499
9874
|
"name": "PM_DEPRECATED_TOOL_ACTIONS",
|
|
9500
9875
|
"signature": "readonly PmToolAction[]"
|
|
9501
9876
|
},
|
|
9877
|
+
{
|
|
9878
|
+
"classification": "contract_data",
|
|
9879
|
+
"kind": "value",
|
|
9880
|
+
"name": "PM_DIAGNOSTIC_DEGRADATION_STEPS",
|
|
9881
|
+
"signature": "readonly [\"full\", \"omit_explanation\", \"limit_collections\", \"compact_recovery\", \"action_only\"]"
|
|
9882
|
+
},
|
|
9883
|
+
{
|
|
9884
|
+
"classification": "contract_data",
|
|
9885
|
+
"kind": "value",
|
|
9886
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_BUDGET_CONTRACTS",
|
|
9887
|
+
"signature": "PmDiagnosticOutputBudgetContract[]"
|
|
9888
|
+
},
|
|
9889
|
+
{
|
|
9890
|
+
"classification": "contract_data",
|
|
9891
|
+
"kind": "value",
|
|
9892
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_CLASSES",
|
|
9893
|
+
"signature": "readonly [\"error\", \"warning\", \"validation_summary\", \"recovery_bundle\"]"
|
|
9894
|
+
},
|
|
9502
9895
|
{
|
|
9503
9896
|
"classification": "contract_data",
|
|
9504
9897
|
"kind": "value",
|
|
@@ -9725,7 +10118,7 @@
|
|
|
9725
10118
|
"classification": "contract_data",
|
|
9726
10119
|
"kind": "value",
|
|
9727
10120
|
"name": "PM_READ_OUTPUT_SURFACES",
|
|
9728
|
-
"signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-catalog\", \"package-manage\", \"comments-audit\", \"assurance\"]"
|
|
10121
|
+
"signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"duplicates\", \"package-catalog\", \"package-manage\", \"comments-audit\", \"assurance\"]"
|
|
9729
10122
|
},
|
|
9730
10123
|
{
|
|
9731
10124
|
"classification": "advanced_export",
|
|
@@ -9751,6 +10144,12 @@
|
|
|
9751
10144
|
"name": "PM_RECOVERY_REFERENCE_KINDS",
|
|
9752
10145
|
"signature": "readonly [\"suggested_retry\", \"candidate_command\", \"example\", \"next_step\", \"migration_hint\", \"restore_with\"]"
|
|
9753
10146
|
},
|
|
10147
|
+
{
|
|
10148
|
+
"classification": "advanced_export",
|
|
10149
|
+
"kind": "value",
|
|
10150
|
+
"name": "PM_REPRODUCIBLE_PROCESS_ENV",
|
|
10151
|
+
"signature": "Readonly<{ readonly clock: \"PM_CLOCK\"; readonly tickMs: \"PM_CLOCK_TICK_MS\"; readonly seed: \"PM_SEED\"; }>"
|
|
10152
|
+
},
|
|
9754
10153
|
{
|
|
9755
10154
|
"classification": "contract_data",
|
|
9756
10155
|
"kind": "value",
|
|
@@ -9785,7 +10184,7 @@
|
|
|
9785
10184
|
"classification": "contract_data",
|
|
9786
10185
|
"kind": "value",
|
|
9787
10186
|
"name": "PM_TOOL_PARAMETERS_SCHEMA_VERSION",
|
|
9788
|
-
"signature": "\"4.
|
|
10187
|
+
"signature": "\"4.9.0\""
|
|
9789
10188
|
},
|
|
9790
10189
|
{
|
|
9791
10190
|
"classification": "contract_data",
|
|
@@ -9851,7 +10250,7 @@
|
|
|
9851
10250
|
"classification": "supported",
|
|
9852
10251
|
"kind": "class",
|
|
9853
10252
|
"name": "PmClient",
|
|
9854
|
-
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates(options?: DuplicatesCommandOptions): Promise<DuplicatesResult>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
10253
|
+
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates<Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options): ReadPromise<DuplicatesResult, Options>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
9855
10254
|
},
|
|
9856
10255
|
{
|
|
9857
10256
|
"classification": "advanced_export",
|
|
@@ -9893,7 +10292,7 @@
|
|
|
9893
10292
|
"classification": "advanced_export",
|
|
9894
10293
|
"kind": "interface",
|
|
9895
10294
|
"name": "PmCliErrorContext",
|
|
9896
|
-
"signature": "export interface PmCliErrorContext { code?: string; reason?: string; field?: string; gate_id?: string; assertion_id?: string; measurement_id?: string; source_kind?: string; source_id?: string; source_created_at?: string; target_id?: string; target_created_at?: string; temporal_order?: string; check?: string; format?: string; flag?: string; value?: string; format_version?: number; type?: string; required?: string; why?: string; resolved_path?: string; requested_path?: string; suggested_path?: string; examples?: string[]; nextSteps?: string[]; unmatched?: string[]; unmatched_selectors?: Array<{ id: string; kind?: string; source_kind?: string; }>; available_dependencies?: Array<{ id: string; kind: string; source_kind?: string; }>; verification_errors?: string[]; unresolved_targets?: string[]; valid_range?: { first_version: number | null; last_version: number | null; first_timestamp: string | null; last_timestamp: string | null; }; recovery?: PmCliErrorRecoveryPayload; }"
|
|
10295
|
+
"signature": "export interface PmCliErrorContext { code?: string; reason?: string; field?: string; gate_id?: string; assertion_id?: string; measurement_id?: string; source_kind?: string; source_id?: string; source_created_at?: string; target_id?: string; target_created_at?: string; temporal_order?: string; check?: string; format?: string; flag?: string; value?: string; format_version?: number; type?: string; required?: string; why?: string; resolved_path?: string; requested_path?: string; suggested_path?: string; examples?: string[]; nextSteps?: string[]; unmatched?: string[]; unmatched_selectors?: Array<{ id: string; kind?: string; source_kind?: string; author?: string; created_at?: string; }>; available_dependencies?: Array<{ id: string; kind: string; source_kind?: string; author?: string; created_at?: string; }>; verification_errors?: string[]; unresolved_targets?: string[]; valid_range?: { first_version: number | null; last_version: number | null; first_timestamp: string | null; last_timestamp: string | null; }; recovery?: PmCliErrorRecoveryPayload; }"
|
|
9897
10296
|
},
|
|
9898
10297
|
{
|
|
9899
10298
|
"classification": "advanced_export",
|
|
@@ -10133,7 +10532,7 @@
|
|
|
10133
10532
|
"classification": "supported",
|
|
10134
10533
|
"kind": "interface",
|
|
10135
10534
|
"name": "PmCompleteListResult",
|
|
10136
|
-
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output
|
|
10535
|
+
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output: PmReadOutputReceipt; }"
|
|
10137
10536
|
},
|
|
10138
10537
|
{
|
|
10139
10538
|
"classification": "supported",
|
|
@@ -10198,13 +10597,37 @@
|
|
|
10198
10597
|
{
|
|
10199
10598
|
"classification": "contract_data",
|
|
10200
10599
|
"kind": "type",
|
|
10201
|
-
"name": "
|
|
10202
|
-
"signature": "export type
|
|
10600
|
+
"name": "PmDiagnosticDegradationStep",
|
|
10601
|
+
"signature": "export type PmDiagnosticDegradationStep = (typeof PM_DIAGNOSTIC_DEGRADATION_STEPS)[number];"
|
|
10203
10602
|
},
|
|
10204
10603
|
{
|
|
10205
10604
|
"classification": "contract_data",
|
|
10206
10605
|
"kind": "interface",
|
|
10207
|
-
"name": "
|
|
10606
|
+
"name": "PmDiagnosticOutputBudgetContract",
|
|
10607
|
+
"signature": "export interface PmDiagnosticOutputBudgetContract { diagnostic_class: PmDiagnosticOutputClass; default_max_estimated_tokens_by_format: Readonly<{ text: number; json: number; }>; minimum_max_estimated_tokens: number; degradation_ladder: readonly PmDiagnosticDegradationStep[]; corrective_action_paths: readonly string[]; token_estimate: \"ceil(utf8_bytes / 4)\"; }"
|
|
10608
|
+
},
|
|
10609
|
+
{
|
|
10610
|
+
"classification": "contract_data",
|
|
10611
|
+
"kind": "type",
|
|
10612
|
+
"name": "PmDiagnosticOutputClass",
|
|
10613
|
+
"signature": "export type PmDiagnosticOutputClass = (typeof PM_DIAGNOSTIC_OUTPUT_CLASSES)[number];"
|
|
10614
|
+
},
|
|
10615
|
+
{
|
|
10616
|
+
"classification": "contract_data",
|
|
10617
|
+
"kind": "interface",
|
|
10618
|
+
"name": "PmDiagnosticOutputReceipt",
|
|
10619
|
+
"signature": "export interface PmDiagnosticOutputReceipt { diagnostic_class: PmDiagnosticOutputClass; format: \"json\" | \"text\"; budget: number; budget_source: \"default\" | \"explicit\"; original_estimated_tokens: number; estimated_tokens: number; truncated: boolean; degradation_steps: PmDiagnosticDegradationStep[]; omitted_fields: string[]; omitted_fields_overflow_count?: number; }"
|
|
10620
|
+
},
|
|
10621
|
+
{
|
|
10622
|
+
"classification": "contract_data",
|
|
10623
|
+
"kind": "type",
|
|
10624
|
+
"name": "PmErrorCodeClass",
|
|
10625
|
+
"signature": "export type PmErrorCodeClass = \"generic_failure\" | \"usage\" | \"not_found\" | \"conflict\" | \"dependency_failed\";"
|
|
10626
|
+
},
|
|
10627
|
+
{
|
|
10628
|
+
"classification": "contract_data",
|
|
10629
|
+
"kind": "interface",
|
|
10630
|
+
"name": "PmErrorCodeContract",
|
|
10208
10631
|
"signature": "export interface PmErrorCodeContract { code: string; meaning: string; stability: PmErrorCodeStability; exit_code: 1 | 2 | 3 | 4 | 5; class: PmErrorCodeClass; recovery: string; sources: string[]; emitting_commands: string[]; canonical_code?: string; aliases?: string[]; owned_states?: PmRefusalStateContract[]; }"
|
|
10209
10632
|
},
|
|
10210
10633
|
{
|
|
@@ -10285,6 +10708,36 @@
|
|
|
10285
10708
|
"name": "PmFlagValueKind",
|
|
10286
10709
|
"signature": "export type PmFlagValueKind = \"boolean\" | \"string\" | \"number\" | \"list\";"
|
|
10287
10710
|
},
|
|
10711
|
+
{
|
|
10712
|
+
"classification": "advanced_export",
|
|
10713
|
+
"kind": "interface",
|
|
10714
|
+
"name": "PmGrammarRefusalClosureReport",
|
|
10715
|
+
"signature": "export interface PmGrammarRefusalClosureReport { ok: boolean; probe_count: number; closed_probe_count: number; findings: PmGrammarRefusalFinding[]; }"
|
|
10716
|
+
},
|
|
10717
|
+
{
|
|
10718
|
+
"classification": "advanced_export",
|
|
10719
|
+
"kind": "interface",
|
|
10720
|
+
"name": "PmGrammarRefusalContract",
|
|
10721
|
+
"signature": "export interface PmGrammarRefusalContract { probe_id: string; command: string; refusal_args: readonly string[]; recovery_args: readonly string[]; error_code: \"invalid_argument_value\" | \"missing_lifecycle_target\" | \"missing_required_argument\" | \"unknown_subcommand\"; }"
|
|
10722
|
+
},
|
|
10723
|
+
{
|
|
10724
|
+
"classification": "advanced_export",
|
|
10725
|
+
"kind": "interface",
|
|
10726
|
+
"name": "PmGrammarRefusalFinding",
|
|
10727
|
+
"signature": "export interface PmGrammarRefusalFinding { code: PmGrammarRefusalFindingCode; probe_id: string; detail: string; }"
|
|
10728
|
+
},
|
|
10729
|
+
{
|
|
10730
|
+
"classification": "advanced_export",
|
|
10731
|
+
"kind": "type",
|
|
10732
|
+
"name": "PmGrammarRefusalFindingCode",
|
|
10733
|
+
"signature": "export type PmGrammarRefusalFindingCode = \"refusal_allowed_values_mismatch\" | \"refusal_error_code_mismatch\" | \"refusal_exit_code_mismatch\" | \"refusal_mutated_state\" | \"refusal_probe_missing\" | \"refusal_recovery_failed\" | \"unexpected_refusal_probe\";"
|
|
10734
|
+
},
|
|
10735
|
+
{
|
|
10736
|
+
"classification": "advanced_export",
|
|
10737
|
+
"kind": "interface",
|
|
10738
|
+
"name": "PmGrammarRefusalObservation",
|
|
10739
|
+
"signature": "export interface PmGrammarRefusalObservation { probe_id: string; error_code: string; exit_code: number; allowed_values: readonly string[]; recovery_succeeded: boolean; refusal_mutated_state: boolean; mutated_paths?: readonly string[]; }"
|
|
10740
|
+
},
|
|
10288
10741
|
{
|
|
10289
10742
|
"classification": "advanced_export",
|
|
10290
10743
|
"kind": "interface",
|
|
@@ -10417,6 +10870,18 @@
|
|
|
10417
10870
|
"name": "PmPositionalActionContract",
|
|
10418
10871
|
"signature": "export interface PmPositionalActionContract extends PmCommandPositionalContract { parent: \"assurance\" | \"plan\" | \"workspace snapshot\"; action: string; accepted_flags: readonly string[]; description: string; example: string; }"
|
|
10419
10872
|
},
|
|
10873
|
+
{
|
|
10874
|
+
"classification": "contract_data",
|
|
10875
|
+
"kind": "type",
|
|
10876
|
+
"name": "PmProjectedDiagnostic",
|
|
10877
|
+
"signature": "export type PmProjectedDiagnostic<TDiagnostic extends object> = Partial<TDiagnostic> & Pick<TDiagnostic, Extract<keyof TDiagnostic, \"code\" | \"required\">> & { diagnostic_output?: PmDiagnosticOutputReceipt; };"
|
|
10878
|
+
},
|
|
10879
|
+
{
|
|
10880
|
+
"classification": "contract_data",
|
|
10881
|
+
"kind": "interface",
|
|
10882
|
+
"name": "PmProjectedTextDiagnostic",
|
|
10883
|
+
"signature": "export interface PmProjectedTextDiagnostic { output: string; diagnostic_output: PmDiagnosticOutputReceipt; }"
|
|
10884
|
+
},
|
|
10420
10885
|
{
|
|
10421
10886
|
"classification": "supported",
|
|
10422
10887
|
"kind": "interface",
|
|
@@ -10469,7 +10934,19 @@
|
|
|
10469
10934
|
"classification": "supported",
|
|
10470
10935
|
"kind": "interface",
|
|
10471
10936
|
"name": "PmReadOutputReceipt",
|
|
10472
|
-
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
10937
|
+
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; canonical_options_used?: string[]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
10938
|
+
},
|
|
10939
|
+
{
|
|
10940
|
+
"classification": "contract_data",
|
|
10941
|
+
"kind": "interface",
|
|
10942
|
+
"name": "PmReadOutputRecoveryBudget",
|
|
10943
|
+
"signature": "export interface PmReadOutputRecoveryBudget { output_budget: number | \"unbounded\"; recovery_budget_multiplier: number | null; rule_version: \"v1\"; }"
|
|
10944
|
+
},
|
|
10945
|
+
{
|
|
10946
|
+
"classification": "contract_data",
|
|
10947
|
+
"kind": "interface",
|
|
10948
|
+
"name": "PmReadOutputRecoveryBudgetInput",
|
|
10949
|
+
"signature": "export interface PmReadOutputRecoveryBudgetInput { effective_budget_tokens: number; measured_result_tokens: number; }"
|
|
10473
10950
|
},
|
|
10474
10951
|
{
|
|
10475
10952
|
"classification": "supported",
|
|
@@ -10523,7 +11000,7 @@
|
|
|
10523
11000
|
"classification": "contract_data",
|
|
10524
11001
|
"kind": "interface",
|
|
10525
11002
|
"name": "PmReadOutputTruncationDisclosure",
|
|
10526
|
-
"signature": "export interface PmReadOutputTruncationDisclosure { reason: \"output_budget_reached\"; budget_source: PmReadOutputDimensionSource | \"session\"; budget_tokens: number; overridden_dimensions: PmReadOutputDimension[]; compacted_row_paths: string[]; continuation_cursor_rebased: boolean; continuation_available: boolean; recovery_budget_multiplier:
|
|
11003
|
+
"signature": "export interface PmReadOutputTruncationDisclosure { reason: \"output_budget_reached\"; budget_source: PmReadOutputDimensionSource | \"session\"; budget_tokens: number; overridden_dimensions: PmReadOutputDimension[]; compacted_row_paths: string[]; continuation_cursor_rebased: boolean; continuation_available: boolean; recovery_budget_multiplier: number | null; continuations: PmReadOutputContinuation[]; restore_with: string; recovery: { cursor: string; cli: \"--output-cursor\"; sdk: \"outputCursor\"; mcp: \"outputCursor\"; } | { cli: string; sdk: { outputBudget: number | \"unbounded\"; }; mcp: { outputBudget: number | \"unbounded\"; }; }; }"
|
|
10527
11004
|
},
|
|
10528
11005
|
{
|
|
10529
11006
|
"classification": "advanced_export",
|
|
@@ -10645,6 +11122,12 @@
|
|
|
10645
11122
|
"name": "PmRefusalStateContract",
|
|
10646
11123
|
"signature": "export interface PmRefusalStateContract { state: string; probe_id: string; entrypoints: string[]; expected_exit_class: PmErrorCodeClass; }"
|
|
10647
11124
|
},
|
|
11125
|
+
{
|
|
11126
|
+
"classification": "advanced_export",
|
|
11127
|
+
"kind": "interface",
|
|
11128
|
+
"name": "PmRequiredArgumentRefusalContract",
|
|
11129
|
+
"signature": "export interface PmRequiredArgumentRefusalContract extends PmGrammarRefusalContract { missing_argument: string; missing_argument_index: number; }"
|
|
11130
|
+
},
|
|
10648
11131
|
{
|
|
10649
11132
|
"classification": "contract_data",
|
|
10650
11133
|
"kind": "interface",
|
|
@@ -10655,13 +11138,19 @@
|
|
|
10655
11138
|
"classification": "contract_data",
|
|
10656
11139
|
"kind": "interface",
|
|
10657
11140
|
"name": "PmResolvedReadOutputDimensions",
|
|
10658
|
-
"signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number | \"unbounded\">; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
|
|
11141
|
+
"signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number | \"unbounded\">; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; canonical_options_used?: string[]; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
|
|
10659
11142
|
},
|
|
10660
11143
|
{
|
|
10661
11144
|
"classification": "supported",
|
|
10662
11145
|
"kind": "interface",
|
|
10663
11146
|
"name": "PmSettings",
|
|
10664
|
-
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
11147
|
+
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; allow_untrusted_linked_tests: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
11148
|
+
},
|
|
11149
|
+
{
|
|
11150
|
+
"classification": "advanced_export",
|
|
11151
|
+
"kind": "interface",
|
|
11152
|
+
"name": "PmSubcommandRefusalContract",
|
|
11153
|
+
"signature": "export interface PmSubcommandRefusalContract extends PmGrammarRefusalContract { rejected_value: string; allowed_values: readonly string[]; }"
|
|
10665
11154
|
},
|
|
10666
11155
|
{
|
|
10667
11156
|
"classification": "contract_data",
|
|
@@ -11077,6 +11566,18 @@
|
|
|
11077
11566
|
"name": "projectHistoryProvenance",
|
|
11078
11567
|
"signature": "(entry: HistoryEntry, vocabulary?: AuthorIdentityVocabulary, coordinates?: { itemId?: string; version?: number; }) => HistoryProvenanceRow | calls: (entry: HistoryEntry, vocabulary?: AuthorIdentityVocabulary, coordinates?: { itemId?: string; version?: number; }) => HistoryProvenanceRow"
|
|
11079
11568
|
},
|
|
11569
|
+
{
|
|
11570
|
+
"classification": "contract_data",
|
|
11571
|
+
"kind": "function",
|
|
11572
|
+
"name": "projectPmDiagnosticOutput",
|
|
11573
|
+
"signature": "<TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic> | calls: <TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic>"
|
|
11574
|
+
},
|
|
11575
|
+
{
|
|
11576
|
+
"classification": "contract_data",
|
|
11577
|
+
"kind": "function",
|
|
11578
|
+
"name": "projectPmDiagnosticText",
|
|
11579
|
+
"signature": "(output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic | calls: (output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic"
|
|
11580
|
+
},
|
|
11080
11581
|
{
|
|
11081
11582
|
"classification": "supported",
|
|
11082
11583
|
"kind": "interface",
|
|
@@ -11605,6 +12106,12 @@
|
|
|
11605
12106
|
"name": "refreshSearchArtifactsForMutation",
|
|
11606
12107
|
"signature": "(pmRoot: string, itemIds: string[], options?: RefreshSearchArtifactsForMutationOptions) => Promise<SearchMutationArtifactRefreshResult> | calls: (pmRoot: string, itemIds: string[], options?: RefreshSearchArtifactsForMutationOptions) => Promise<SearchMutationArtifactRefreshResult>"
|
|
11607
12108
|
},
|
|
12109
|
+
{
|
|
12110
|
+
"classification": "supported",
|
|
12111
|
+
"kind": "function",
|
|
12112
|
+
"name": "registerAgentProvenanceAdapters",
|
|
12113
|
+
"signature": "(adapters: readonly AgentProvenanceAdapter[]) => () => void | calls: (adapters: readonly AgentProvenanceAdapter[]) => () => void"
|
|
12114
|
+
},
|
|
11608
12115
|
{
|
|
11609
12116
|
"classification": "supported",
|
|
11610
12117
|
"kind": "interface",
|
|
@@ -11687,7 +12194,7 @@
|
|
|
11687
12194
|
"classification": "supported",
|
|
11688
12195
|
"kind": "interface",
|
|
11689
12196
|
"name": "RegisteredExtensionServiceOverride",
|
|
11690
|
-
"signature": "export interface RegisteredExtensionServiceOverride { layer: ExtensionLayer; name: string; service: ExtensionServiceName; run: ServiceOverride; }"
|
|
12197
|
+
"signature": "export interface RegisteredExtensionServiceOverride { layer: ExtensionLayer; name: string; service: ExtensionServiceName; run: ServiceOverride; passThrough?: boolean; }"
|
|
11691
12198
|
},
|
|
11692
12199
|
{
|
|
11693
12200
|
"classification": "supported",
|
|
@@ -12547,6 +13054,24 @@
|
|
|
12547
13054
|
"name": "replayToItemDocument",
|
|
12548
13055
|
"signature": "(document: ReplayDocument) => ItemDocument | calls: (document: ReplayDocument) => ItemDocument"
|
|
12549
13056
|
},
|
|
13057
|
+
{
|
|
13058
|
+
"classification": "advanced_export",
|
|
13059
|
+
"kind": "interface",
|
|
13060
|
+
"name": "ReproducibleExecutionSettings",
|
|
13061
|
+
"signature": "export interface ReproducibleExecutionSettings { seed: string; clock: string; tickMs: number; }"
|
|
13062
|
+
},
|
|
13063
|
+
{
|
|
13064
|
+
"classification": "advanced_export",
|
|
13065
|
+
"kind": "type",
|
|
13066
|
+
"name": "ReproducibleProcessEnvironment",
|
|
13067
|
+
"signature": "export type ReproducibleProcessEnvironment = Readonly<Record<string, string | undefined>>;"
|
|
13068
|
+
},
|
|
13069
|
+
{
|
|
13070
|
+
"classification": "advanced_export",
|
|
13071
|
+
"kind": "type",
|
|
13072
|
+
"name": "ReproducibleProcessRunner",
|
|
13073
|
+
"signature": "export type ReproducibleProcessRunner = ReproducibleExecutionRunner;"
|
|
13074
|
+
},
|
|
12550
13075
|
{
|
|
12551
13076
|
"classification": "advanced_export",
|
|
12552
13077
|
"kind": "function",
|
|
@@ -12853,6 +13378,30 @@
|
|
|
12853
13378
|
"name": "resolveLinkedTestFailureExitCode",
|
|
12854
13379
|
"signature": "(execution: Pick<LinkedTestExecutionResult, \"exitCode\" | \"maxBufferExceeded\" | \"timedOut\">) => number | calls: (execution: Pick<LinkedTestExecutionResult, \"exitCode\" | \"timedOut\" | \"maxBufferExceeded\">) => number"
|
|
12855
13380
|
},
|
|
13381
|
+
{
|
|
13382
|
+
"classification": "advanced_export",
|
|
13383
|
+
"kind": "function",
|
|
13384
|
+
"name": "resolveLinkedTestSourceRef",
|
|
13385
|
+
"signature": "(cwd?: string) => Promise<string | undefined> | calls: (cwd?: string) => Promise<string | undefined>"
|
|
13386
|
+
},
|
|
13387
|
+
{
|
|
13388
|
+
"classification": "advanced_export",
|
|
13389
|
+
"kind": "function",
|
|
13390
|
+
"name": "resolveLinkedTestSourceWorkspaceRoot",
|
|
13391
|
+
"signature": "(cwd?: string) => string | calls: (cwd?: string) => string"
|
|
13392
|
+
},
|
|
13393
|
+
{
|
|
13394
|
+
"classification": "advanced_export",
|
|
13395
|
+
"kind": "function",
|
|
13396
|
+
"name": "resolveLinkedTestTrust",
|
|
13397
|
+
"signature": "(pmRoot: string, test: LinkedTest, currentSourceRef?: string) => Promise<LinkedTestTrustDecision> | calls: (pmRoot: string, test: LinkedTest, currentSourceRef?: string) => Promise<LinkedTestTrustDecision>"
|
|
13398
|
+
},
|
|
13399
|
+
{
|
|
13400
|
+
"classification": "advanced_export",
|
|
13401
|
+
"kind": "function",
|
|
13402
|
+
"name": "resolveLinkedTestTrustBatch",
|
|
13403
|
+
"signature": "(pmRoot: string, tests: LinkedTest[], currentSourceRef?: string) => Promise<LinkedTestTrustDecision[]> | calls: (pmRoot: string, tests: LinkedTest[], currentSourceRef?: string) => Promise<LinkedTestTrustDecision[]>"
|
|
13404
|
+
},
|
|
12856
13405
|
{
|
|
12857
13406
|
"classification": "supported",
|
|
12858
13407
|
"kind": "function",
|
|
@@ -12937,6 +13486,12 @@
|
|
|
12937
13486
|
"name": "resolvePmCommandVisibilityTier",
|
|
12938
13487
|
"signature": "(command: string, extensionTier?: PmCommandVisibilityTier) => PmCommandVisibilityTier | calls: (command: string, extensionTier?: PmCommandVisibilityTier) => PmCommandVisibilityTier"
|
|
12939
13488
|
},
|
|
13489
|
+
{
|
|
13490
|
+
"classification": "contract_data",
|
|
13491
|
+
"kind": "function",
|
|
13492
|
+
"name": "resolvePmDiagnosticOutputBudget",
|
|
13493
|
+
"signature": "(diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract | calls: (diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract"
|
|
13494
|
+
},
|
|
12940
13495
|
{
|
|
12941
13496
|
"classification": "contract_data",
|
|
12942
13497
|
"kind": "function",
|
|
@@ -13015,6 +13570,12 @@
|
|
|
13015
13570
|
"name": "resolveReadOutputEncoding",
|
|
13016
13571
|
"signature": "(command: string, options: Record<string, unknown>) => \"json\" | \"toon\" | undefined | calls: (command: string, options: Record<string, unknown>) => \"json\" | \"toon\" | undefined"
|
|
13017
13572
|
},
|
|
13573
|
+
{
|
|
13574
|
+
"classification": "contract_data",
|
|
13575
|
+
"kind": "function",
|
|
13576
|
+
"name": "resolveReadOutputRecoveryBudget",
|
|
13577
|
+
"signature": "(input: PmReadOutputRecoveryBudgetInput) => PmReadOutputRecoveryBudget | calls: (input: PmReadOutputRecoveryBudgetInput) => PmReadOutputRecoveryBudget"
|
|
13578
|
+
},
|
|
13018
13579
|
{
|
|
13019
13580
|
"classification": "supported",
|
|
13020
13581
|
"kind": "function",
|
|
@@ -13045,6 +13606,12 @@
|
|
|
13045
13606
|
"name": "resolveRegisteredVectorStoreAdapter",
|
|
13046
13607
|
"signature": "(registrations: ExtensionRegistrationRegistry | null, configuredAdapter: string | undefined) => RegisteredExtensionVectorStoreAdapter | null | calls: (registrations: ExtensionRegistrationRegistry | null, configuredAdapter: string | undefined) => RegisteredExtensionVectorStoreAdapter | null"
|
|
13047
13608
|
},
|
|
13609
|
+
{
|
|
13610
|
+
"classification": "advanced_export",
|
|
13611
|
+
"kind": "function",
|
|
13612
|
+
"name": "resolveReproducibleProcessEnvironment",
|
|
13613
|
+
"signature": "(environment: ReproducibleProcessEnvironment) => ReproducibleExecutionSettings | undefined | calls: (environment: ReproducibleProcessEnvironment) => ReproducibleExecutionSettings | undefined"
|
|
13614
|
+
},
|
|
13048
13615
|
{
|
|
13049
13616
|
"classification": "advanced_export",
|
|
13050
13617
|
"kind": "function",
|
|
@@ -14071,6 +14638,12 @@
|
|
|
14071
14638
|
"name": "runWithHarnessDetectionSignals",
|
|
14072
14639
|
"signature": "<T>(signals: HarnessDetectionSignals, callback: () => T) => T | calls: <T>(signals: HarnessDetectionSignals, callback: () => T) => T"
|
|
14073
14640
|
},
|
|
14641
|
+
{
|
|
14642
|
+
"classification": "advanced_export",
|
|
14643
|
+
"kind": "function",
|
|
14644
|
+
"name": "runWithReproducibleProcessEnvironment",
|
|
14645
|
+
"signature": "<T>(environment: ReproducibleProcessEnvironment, operation: () => Promise<T>) => Promise<T> | calls: <T>(environment: ReproducibleProcessEnvironment, operation: () => Promise<T>) => Promise<T>"
|
|
14646
|
+
},
|
|
14074
14647
|
{
|
|
14075
14648
|
"classification": "supported",
|
|
14076
14649
|
"kind": "function",
|
|
@@ -14497,6 +15070,12 @@
|
|
|
14497
15070
|
"name": "scoreItemSimilarity",
|
|
14498
15071
|
"signature": "(leftTitle: string, rightTitle: string) => ItemSimilarityScore | calls: (leftTitle: string, rightTitle: string) => ItemSimilarityScore"
|
|
14499
15072
|
},
|
|
15073
|
+
{
|
|
15074
|
+
"classification": "advanced_export",
|
|
15075
|
+
"kind": "function",
|
|
15076
|
+
"name": "scorePmGrammarRefusalClosure",
|
|
15077
|
+
"signature": "(contracts: readonly (PmRequiredArgumentRefusalContract | PmSubcommandRefusalContract)[], observations: readonly PmGrammarRefusalObservation[]) => PmGrammarRefusalClosureReport | calls: (contracts: readonly (PmRequiredArgumentRefusalContract | PmSubcommandRefusalContract)[], observations: readonly PmGrammarRefusalObservation[]) => PmGrammarRefusalClosureReport"
|
|
15078
|
+
},
|
|
14500
15079
|
{
|
|
14501
15080
|
"classification": "contract_data",
|
|
14502
15081
|
"kind": "function",
|
|
@@ -14809,6 +15388,12 @@
|
|
|
14809
15388
|
"name": "ServiceOverrideDecision",
|
|
14810
15389
|
"signature": "export type ServiceOverrideDecision = { handled: true; result: unknown; } | { handled: false; };"
|
|
14811
15390
|
},
|
|
15391
|
+
{
|
|
15392
|
+
"classification": "supported",
|
|
15393
|
+
"kind": "interface",
|
|
15394
|
+
"name": "ServiceOverrideOwnership",
|
|
15395
|
+
"signature": "export interface ServiceOverrideOwnership { passThrough?: boolean; }"
|
|
15396
|
+
},
|
|
14812
15397
|
{
|
|
14813
15398
|
"classification": "advanced_export",
|
|
14814
15399
|
"kind": "function",
|
|
@@ -15205,6 +15790,12 @@
|
|
|
15205
15790
|
"name": "SubscribeMutationEventsOptions",
|
|
15206
15791
|
"signature": "export interface SubscribeMutationEventsOptions extends ListMutationEventsOptions { intervalMs?: number; signal?: AbortSignal; }"
|
|
15207
15792
|
},
|
|
15793
|
+
{
|
|
15794
|
+
"classification": "advanced_export",
|
|
15795
|
+
"kind": "function",
|
|
15796
|
+
"name": "summarizeAgentIdentityVocabulary",
|
|
15797
|
+
"signature": "(vocabulary: AgentIdentityVocabulary | undefined) => AgentIdentityVocabularySummary | calls: (vocabulary: AgentIdentityVocabulary | undefined) => AgentIdentityVocabularySummary"
|
|
15798
|
+
},
|
|
15208
15799
|
{
|
|
15209
15800
|
"classification": "supported",
|
|
15210
15801
|
"kind": "function",
|
|
@@ -15449,7 +16040,7 @@
|
|
|
15449
16040
|
"classification": "advanced_export",
|
|
15450
16041
|
"kind": "interface",
|
|
15451
16042
|
"name": "TestAllCommandOptions",
|
|
15452
|
-
"signature": "export interface TestAllCommandOptions { author?: string; status?: string; limit?: string; offset?: string; timeout?: string; progress?: boolean; envSet?: string[]; envClear?: string[]; sharedHostSafe?: boolean; pmContext?: string; overrideLinkedPmContext?: boolean; failOnContextMismatch?: boolean; failOnSkipped?: boolean; failOnEmptyTestRun?: boolean; requireAssertionsForPm?: boolean; checkContext?: boolean; autoPmContext?: boolean; }"
|
|
16043
|
+
"signature": "export interface TestAllCommandOptions { author?: string; status?: string; limit?: string; offset?: string; timeout?: string; progress?: boolean; envSet?: string[]; envClear?: string[]; sharedHostSafe?: boolean; pmContext?: string; overrideLinkedPmContext?: boolean; workspaceContext?: string; overrideLinkedWorkspaceContext?: boolean; allowUntrustedLinkedTests?: boolean; failOnContextMismatch?: boolean; failOnSkipped?: boolean; failOnEmptyTestRun?: boolean; requireAssertionsForPm?: boolean; checkContext?: boolean; autoPmContext?: boolean; }"
|
|
15453
16044
|
},
|
|
15454
16045
|
{
|
|
15455
16046
|
"classification": "advanced_export",
|
|
@@ -15467,7 +16058,7 @@
|
|
|
15467
16058
|
"classification": "advanced_export",
|
|
15468
16059
|
"kind": "interface",
|
|
15469
16060
|
"name": "TestCommandOptions",
|
|
15470
|
-
"signature": "export interface TestCommandOptions { add?: string[]; addJson?: string[]; remove?: string[]; removeIndex?: Array<string | number>; list?: boolean; run?: boolean; match?: string; onlyIndex?: string | number; onlyLast?: boolean; timeout?: string; progress?: boolean; envSet?: string[]; envClear?: string[]; sharedHostSafe?: boolean; pmContext?: string; overrideLinkedPmContext?: boolean; failOnContextMismatch?: boolean; failOnSkipped?: boolean; failOnEmptyTestRun?: boolean; requireAssertionsForPm?: boolean; checkContext?: boolean; autoPmContext?: boolean; author?: string; message?: string; force?: boolean; measure?: string[]; metricBelow?: string; metricDiff?: string; }"
|
|
16061
|
+
"signature": "export interface TestCommandOptions { add?: string[]; addJson?: string[]; remove?: string[]; removeIndex?: Array<string | number>; list?: boolean; run?: boolean; match?: string; onlyIndex?: string | number; onlyLast?: boolean; timeout?: string; progress?: boolean; envSet?: string[]; envClear?: string[]; sharedHostSafe?: boolean; pmContext?: string; overrideLinkedPmContext?: boolean; workspaceContext?: string; overrideLinkedWorkspaceContext?: boolean; allowUntrustedLinkedTests?: boolean; acknowledgeLinkedTests?: boolean; failOnContextMismatch?: boolean; failOnSkipped?: boolean; failOnEmptyTestRun?: boolean; requireAssertionsForPm?: boolean; checkContext?: boolean; autoPmContext?: boolean; author?: string; message?: string; force?: boolean; measure?: string[]; metricBelow?: string; metricDiff?: string; }"
|
|
15471
16062
|
},
|
|
15472
16063
|
{
|
|
15473
16064
|
"classification": "supported",
|
|
@@ -15491,7 +16082,7 @@
|
|
|
15491
16082
|
"classification": "advanced_export",
|
|
15492
16083
|
"kind": "interface",
|
|
15493
16084
|
"name": "TestRunResult",
|
|
15494
|
-
"signature": "export interface TestRunResult { command?: string; path?: string; status: \"passed\" | \"failed\" | \"skipped\"; exit_code?: number; failure_category?: LinkedTestFailureCategory; execution_context?: { requested_pm_context_mode: LinkedTestPmContextMode; pm_context_mode: LinkedTestPmContextMode; auto_pm_context_applied: boolean; is_pm_command: boolean; is_pm_tracker_read_command: boolean; source_project_pm_path: string; sandbox_project_pm_path: string; source_global_pm_path: string; sandbox_global_pm_path: string; source_project_item_count: number; sandbox_project_item_count: number; source_global_item_count: number; sandbox_global_item_count: number; mismatch_detected: boolean; project_extensions_seeded: boolean; global_extensions_seeded: boolean; }; stdout?: string; stderr?: string; error?: string; }"
|
|
16085
|
+
"signature": "export interface TestRunResult { command?: string; path?: string; status: \"passed\" | \"failed\" | \"skipped\"; exit_code?: number; failure_category?: LinkedTestFailureCategory; execution_context?: { requested_pm_context_mode: LinkedTestPmContextMode; pm_context_mode: LinkedTestPmContextMode; auto_pm_context_applied: boolean; is_pm_command: boolean; is_pm_tracker_read_command: boolean; source_project_pm_path: string; sandbox_project_pm_path: string; source_global_pm_path: string; sandbox_global_pm_path: string; source_project_item_count: number; sandbox_project_item_count: number; source_global_item_count: number; sandbox_global_item_count: number; mismatch_detected: boolean; project_extensions_seeded: boolean; global_extensions_seeded: boolean; requested_workspace_context_mode: LinkedTestWorkspaceContextMode; workspace_context_mode: LinkedTestWorkspaceContextMode; working_directory: string; source_workspace_root: string; trust: LinkedTestTrustDecision; }; stdout?: string; stderr?: string; error?: string; }"
|
|
15495
16086
|
},
|
|
15496
16087
|
{
|
|
15497
16088
|
"classification": "advanced_export",
|
|
@@ -16433,7 +17024,7 @@
|
|
|
16433
17024
|
"classification": "supported",
|
|
16434
17025
|
"kind": "interface",
|
|
16435
17026
|
"name": "WorkspaceRelationshipAssembly",
|
|
16436
|
-
"signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; }"
|
|
17027
|
+
"signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; hierarchyIntegrity?: HierarchyIntegrityAnalysis; }"
|
|
16437
17028
|
},
|
|
16438
17029
|
{
|
|
16439
17030
|
"classification": "supported",
|
|
@@ -16991,7 +17582,7 @@
|
|
|
16991
17582
|
"classification": "supported",
|
|
16992
17583
|
"kind": "interface",
|
|
16993
17584
|
"name": "ExtensionApi",
|
|
16994
|
-
"signature": "export interface ExtensionApi { readonly extension: ExtensionSelfIdentity; registerCommand(command: string, override: CommandOverride): void; registerCommand(definition: CommandDefinition): void; registerParser(command: string, override: ParserOverride): void; registerPreflight(override: PreflightOverride | ScopedPreflightOverrideDefinition): void; registerService(service: ExtensionServiceName, override: ServiceOverride): void; registerFlags(targetCommand: string, flags: FlagDefinition[]): void; registerItemFields(fields: SchemaFieldDefinition[]): void; registerItemTypes(types: SchemaItemTypeDefinition[]): void; registerRelationshipKinds(definitions: RelationshipKindDefinition[]): void; registerMigration(definition: SchemaMigrationDefinition): void; registerProfile(profile: ProjectProfileRegistrationInput): void; registerRenderer(format: OutputRendererFormat, renderer: RendererOverride, ownership?: RendererOverrideOwnership): void; registerImporter(name: string, importer: Importer, options?: ImportExportRegistrationOptions): void; registerExporter(name: string, exporter: Exporter, options?: ExporterRegistrationOptions): void; registerSearchProvider(provider: SearchProviderDefinition): void; registerVectorStoreAdapter(adapter: VectorStoreAdapterDefinition): void; registerAssuranceMeasurementProvider(provider: AssuranceMeasurementProviderDefinition): void; hooks: { beforeCommand(hook: BeforeCommandHook): void; beforeMutation(hook: BeforeMutationHook): void; afterCommand(hook: AfterCommandHook): void; onWrite(hook: OnWriteHook): void; onRead(hook: OnReadHook): void; onIndex(hook: OnIndexHook): void; }; }"
|
|
17585
|
+
"signature": "export interface ExtensionApi { readonly extension: ExtensionSelfIdentity; registerCommand(command: string, override: CommandOverride): void; registerCommand(definition: CommandDefinition): void; registerParser(command: string, override: ParserOverride): void; registerPreflight(override: PreflightOverride | ScopedPreflightOverrideDefinition): void; registerService(service: ExtensionServiceName, override: ServiceOverride, ownership?: ServiceOverrideOwnership): void; registerFlags(targetCommand: string, flags: FlagDefinition[]): void; registerItemFields(fields: SchemaFieldDefinition[]): void; registerItemTypes(types: SchemaItemTypeDefinition[]): void; registerRelationshipKinds(definitions: RelationshipKindDefinition[]): void; registerMigration(definition: SchemaMigrationDefinition): void; registerProfile(profile: ProjectProfileRegistrationInput): void; registerRenderer(format: OutputRendererFormat, renderer: RendererOverride, ownership?: RendererOverrideOwnership): void; registerImporter(name: string, importer: Importer, options?: ImportExportRegistrationOptions): void; registerExporter(name: string, exporter: Exporter, options?: ExporterRegistrationOptions): void; registerSearchProvider(provider: SearchProviderDefinition): void; registerVectorStoreAdapter(adapter: VectorStoreAdapterDefinition): void; registerAssuranceMeasurementProvider(provider: AssuranceMeasurementProviderDefinition): void; hooks: { beforeCommand(hook: BeforeCommandHook): void; beforeMutation(hook: BeforeMutationHook): void; afterCommand(hook: AfterCommandHook): void; onWrite(hook: OnWriteHook): void; onRead(hook: OnReadHook): void; onIndex(hook: OnIndexHook): void; }; }"
|
|
16995
17586
|
},
|
|
16996
17587
|
{
|
|
16997
17588
|
"classification": "supported",
|
|
@@ -17777,7 +18368,7 @@
|
|
|
17777
18368
|
"classification": "supported",
|
|
17778
18369
|
"kind": "interface",
|
|
17779
18370
|
"name": "RegisteredExtensionServiceOverride",
|
|
17780
|
-
"signature": "export interface RegisteredExtensionServiceOverride { layer: ExtensionLayer; name: string; service: ExtensionServiceName; run: ServiceOverride; }"
|
|
18371
|
+
"signature": "export interface RegisteredExtensionServiceOverride { layer: ExtensionLayer; name: string; service: ExtensionServiceName; run: ServiceOverride; passThrough?: boolean; }"
|
|
17781
18372
|
},
|
|
17782
18373
|
{
|
|
17783
18374
|
"classification": "supported",
|
|
@@ -17917,6 +18508,12 @@
|
|
|
17917
18508
|
"name": "ServiceOverrideDecision",
|
|
17918
18509
|
"signature": "export type ServiceOverrideDecision = { handled: true; result: unknown; } | { handled: false; };"
|
|
17919
18510
|
},
|
|
18511
|
+
{
|
|
18512
|
+
"classification": "supported",
|
|
18513
|
+
"kind": "interface",
|
|
18514
|
+
"name": "ServiceOverrideOwnership",
|
|
18515
|
+
"signature": "export interface ServiceOverrideOwnership { passThrough?: boolean; }"
|
|
18516
|
+
},
|
|
17920
18517
|
{
|
|
17921
18518
|
"classification": "supported",
|
|
17922
18519
|
"kind": "function",
|
|
@@ -18703,6 +19300,18 @@
|
|
|
18703
19300
|
"name": "MERGE_FLAG_CONTRACTS",
|
|
18704
19301
|
"signature": "CliFlagContract[]"
|
|
18705
19302
|
},
|
|
19303
|
+
{
|
|
19304
|
+
"classification": "contract_data",
|
|
19305
|
+
"kind": "value",
|
|
19306
|
+
"name": "MERGE_SUBCOMMAND_VALUES",
|
|
19307
|
+
"signature": "readonly [\"install\", \"reconcile\", \"report\", \"driver\"]"
|
|
19308
|
+
},
|
|
19309
|
+
{
|
|
19310
|
+
"classification": "contract_data",
|
|
19311
|
+
"kind": "type",
|
|
19312
|
+
"name": "MergeSubcommand",
|
|
19313
|
+
"signature": "export type MergeSubcommand = (typeof MERGE_SUBCOMMAND_VALUES)[number];"
|
|
19314
|
+
},
|
|
18706
19315
|
{
|
|
18707
19316
|
"classification": "contract_data",
|
|
18708
19317
|
"kind": "value",
|
|
@@ -18853,6 +19462,24 @@
|
|
|
18853
19462
|
"name": "PM_DEPRECATED_TOOL_ACTIONS",
|
|
18854
19463
|
"signature": "readonly PmToolAction[]"
|
|
18855
19464
|
},
|
|
19465
|
+
{
|
|
19466
|
+
"classification": "contract_data",
|
|
19467
|
+
"kind": "value",
|
|
19468
|
+
"name": "PM_DIAGNOSTIC_DEGRADATION_STEPS",
|
|
19469
|
+
"signature": "readonly [\"full\", \"omit_explanation\", \"limit_collections\", \"compact_recovery\", \"action_only\"]"
|
|
19470
|
+
},
|
|
19471
|
+
{
|
|
19472
|
+
"classification": "contract_data",
|
|
19473
|
+
"kind": "value",
|
|
19474
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_BUDGET_CONTRACTS",
|
|
19475
|
+
"signature": "PmDiagnosticOutputBudgetContract[]"
|
|
19476
|
+
},
|
|
19477
|
+
{
|
|
19478
|
+
"classification": "contract_data",
|
|
19479
|
+
"kind": "value",
|
|
19480
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_CLASSES",
|
|
19481
|
+
"signature": "readonly [\"error\", \"warning\", \"validation_summary\", \"recovery_bundle\"]"
|
|
19482
|
+
},
|
|
18856
19483
|
{
|
|
18857
19484
|
"classification": "contract_data",
|
|
18858
19485
|
"kind": "value",
|
|
@@ -18983,7 +19610,7 @@
|
|
|
18983
19610
|
"classification": "contract_data",
|
|
18984
19611
|
"kind": "value",
|
|
18985
19612
|
"name": "PM_READ_OUTPUT_SURFACES",
|
|
18986
|
-
"signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-catalog\", \"package-manage\", \"comments-audit\", \"assurance\"]"
|
|
19613
|
+
"signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"duplicates\", \"package-catalog\", \"package-manage\", \"comments-audit\", \"assurance\"]"
|
|
18987
19614
|
},
|
|
18988
19615
|
{
|
|
18989
19616
|
"classification": "contract_data",
|
|
@@ -19019,7 +19646,7 @@
|
|
|
19019
19646
|
"classification": "contract_data",
|
|
19020
19647
|
"kind": "value",
|
|
19021
19648
|
"name": "PM_TOOL_PARAMETERS_SCHEMA_VERSION",
|
|
19022
|
-
"signature": "\"4.
|
|
19649
|
+
"signature": "\"4.9.0\""
|
|
19023
19650
|
},
|
|
19024
19651
|
{
|
|
19025
19652
|
"classification": "contract_data",
|
|
@@ -19255,6 +19882,30 @@
|
|
|
19255
19882
|
"name": "PmCreateActionOptions",
|
|
19256
19883
|
"signature": "export type PmCreateActionOptions = DeclaredProperties<CreateCommandOptions>;"
|
|
19257
19884
|
},
|
|
19885
|
+
{
|
|
19886
|
+
"classification": "contract_data",
|
|
19887
|
+
"kind": "type",
|
|
19888
|
+
"name": "PmDiagnosticDegradationStep",
|
|
19889
|
+
"signature": "export type PmDiagnosticDegradationStep = (typeof PM_DIAGNOSTIC_DEGRADATION_STEPS)[number];"
|
|
19890
|
+
},
|
|
19891
|
+
{
|
|
19892
|
+
"classification": "contract_data",
|
|
19893
|
+
"kind": "interface",
|
|
19894
|
+
"name": "PmDiagnosticOutputBudgetContract",
|
|
19895
|
+
"signature": "export interface PmDiagnosticOutputBudgetContract { diagnostic_class: PmDiagnosticOutputClass; default_max_estimated_tokens_by_format: Readonly<{ text: number; json: number; }>; minimum_max_estimated_tokens: number; degradation_ladder: readonly PmDiagnosticDegradationStep[]; corrective_action_paths: readonly string[]; token_estimate: \"ceil(utf8_bytes / 4)\"; }"
|
|
19896
|
+
},
|
|
19897
|
+
{
|
|
19898
|
+
"classification": "contract_data",
|
|
19899
|
+
"kind": "type",
|
|
19900
|
+
"name": "PmDiagnosticOutputClass",
|
|
19901
|
+
"signature": "export type PmDiagnosticOutputClass = (typeof PM_DIAGNOSTIC_OUTPUT_CLASSES)[number];"
|
|
19902
|
+
},
|
|
19903
|
+
{
|
|
19904
|
+
"classification": "contract_data",
|
|
19905
|
+
"kind": "interface",
|
|
19906
|
+
"name": "PmDiagnosticOutputReceipt",
|
|
19907
|
+
"signature": "export interface PmDiagnosticOutputReceipt { diagnostic_class: PmDiagnosticOutputClass; format: \"json\" | \"text\"; budget: number; budget_source: \"default\" | \"explicit\"; original_estimated_tokens: number; estimated_tokens: number; truncated: boolean; degradation_steps: PmDiagnosticDegradationStep[]; omitted_fields: string[]; omitted_fields_overflow_count?: number; }"
|
|
19908
|
+
},
|
|
19258
19909
|
{
|
|
19259
19910
|
"classification": "contract_data",
|
|
19260
19911
|
"kind": "type",
|
|
@@ -19399,6 +20050,18 @@
|
|
|
19399
20050
|
"name": "PmPositionalActionContract",
|
|
19400
20051
|
"signature": "export interface PmPositionalActionContract extends PmCommandPositionalContract { parent: \"assurance\" | \"plan\" | \"workspace snapshot\"; action: string; accepted_flags: readonly string[]; description: string; example: string; }"
|
|
19401
20052
|
},
|
|
20053
|
+
{
|
|
20054
|
+
"classification": "contract_data",
|
|
20055
|
+
"kind": "type",
|
|
20056
|
+
"name": "PmProjectedDiagnostic",
|
|
20057
|
+
"signature": "export type PmProjectedDiagnostic<TDiagnostic extends object> = Partial<TDiagnostic> & Pick<TDiagnostic, Extract<keyof TDiagnostic, \"code\" | \"required\">> & { diagnostic_output?: PmDiagnosticOutputReceipt; };"
|
|
20058
|
+
},
|
|
20059
|
+
{
|
|
20060
|
+
"classification": "contract_data",
|
|
20061
|
+
"kind": "interface",
|
|
20062
|
+
"name": "PmProjectedTextDiagnostic",
|
|
20063
|
+
"signature": "export interface PmProjectedTextDiagnostic { output: string; diagnostic_output: PmDiagnosticOutputReceipt; }"
|
|
20064
|
+
},
|
|
19402
20065
|
{
|
|
19403
20066
|
"classification": "contract_data",
|
|
19404
20067
|
"kind": "interface",
|
|
@@ -19451,7 +20114,19 @@
|
|
|
19451
20114
|
"classification": "contract_data",
|
|
19452
20115
|
"kind": "interface",
|
|
19453
20116
|
"name": "PmReadOutputReceipt",
|
|
19454
|
-
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
20117
|
+
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; canonical_options_used?: string[]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
20118
|
+
},
|
|
20119
|
+
{
|
|
20120
|
+
"classification": "contract_data",
|
|
20121
|
+
"kind": "interface",
|
|
20122
|
+
"name": "PmReadOutputRecoveryBudget",
|
|
20123
|
+
"signature": "export interface PmReadOutputRecoveryBudget { output_budget: number | \"unbounded\"; recovery_budget_multiplier: number | null; rule_version: \"v1\"; }"
|
|
20124
|
+
},
|
|
20125
|
+
{
|
|
20126
|
+
"classification": "contract_data",
|
|
20127
|
+
"kind": "interface",
|
|
20128
|
+
"name": "PmReadOutputRecoveryBudgetInput",
|
|
20129
|
+
"signature": "export interface PmReadOutputRecoveryBudgetInput { effective_budget_tokens: number; measured_result_tokens: number; }"
|
|
19455
20130
|
},
|
|
19456
20131
|
{
|
|
19457
20132
|
"classification": "contract_data",
|
|
@@ -19493,7 +20168,7 @@
|
|
|
19493
20168
|
"classification": "contract_data",
|
|
19494
20169
|
"kind": "interface",
|
|
19495
20170
|
"name": "PmReadOutputTruncationDisclosure",
|
|
19496
|
-
"signature": "export interface PmReadOutputTruncationDisclosure { reason: \"output_budget_reached\"; budget_source: PmReadOutputDimensionSource | \"session\"; budget_tokens: number; overridden_dimensions: PmReadOutputDimension[]; compacted_row_paths: string[]; continuation_cursor_rebased: boolean; continuation_available: boolean; recovery_budget_multiplier:
|
|
20171
|
+
"signature": "export interface PmReadOutputTruncationDisclosure { reason: \"output_budget_reached\"; budget_source: PmReadOutputDimensionSource | \"session\"; budget_tokens: number; overridden_dimensions: PmReadOutputDimension[]; compacted_row_paths: string[]; continuation_cursor_rebased: boolean; continuation_available: boolean; recovery_budget_multiplier: number | null; continuations: PmReadOutputContinuation[]; restore_with: string; recovery: { cursor: string; cli: \"--output-cursor\"; sdk: \"outputCursor\"; mcp: \"outputCursor\"; } | { cli: string; sdk: { outputBudget: number | \"unbounded\"; }; mcp: { outputBudget: number | \"unbounded\"; }; }; }"
|
|
19497
20172
|
},
|
|
19498
20173
|
{
|
|
19499
20174
|
"classification": "contract_data",
|
|
@@ -19529,7 +20204,7 @@
|
|
|
19529
20204
|
"classification": "contract_data",
|
|
19530
20205
|
"kind": "interface",
|
|
19531
20206
|
"name": "PmResolvedReadOutputDimensions",
|
|
19532
|
-
"signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number | \"unbounded\">; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
|
|
20207
|
+
"signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number | \"unbounded\">; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; canonical_options_used?: string[]; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
|
|
19533
20208
|
},
|
|
19534
20209
|
{
|
|
19535
20210
|
"classification": "contract_data",
|
|
@@ -19615,6 +20290,18 @@
|
|
|
19615
20290
|
"name": "PROFILE_FLAG_CONTRACTS",
|
|
19616
20291
|
"signature": "CliFlagContract[]"
|
|
19617
20292
|
},
|
|
20293
|
+
{
|
|
20294
|
+
"classification": "contract_data",
|
|
20295
|
+
"kind": "function",
|
|
20296
|
+
"name": "projectPmDiagnosticOutput",
|
|
20297
|
+
"signature": "<TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic> | calls: <TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic>"
|
|
20298
|
+
},
|
|
20299
|
+
{
|
|
20300
|
+
"classification": "contract_data",
|
|
20301
|
+
"kind": "function",
|
|
20302
|
+
"name": "projectPmDiagnosticText",
|
|
20303
|
+
"signature": "(output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic | calls: (output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic"
|
|
20304
|
+
},
|
|
19618
20305
|
{
|
|
19619
20306
|
"classification": "contract_data",
|
|
19620
20307
|
"kind": "function",
|
|
@@ -19717,6 +20404,12 @@
|
|
|
19717
20404
|
"name": "resolvePmCommandPositionalContract",
|
|
19718
20405
|
"signature": "(command: string) => PmCommandPositionalContract | undefined | calls: (command: string) => PmCommandPositionalContract | undefined"
|
|
19719
20406
|
},
|
|
20407
|
+
{
|
|
20408
|
+
"classification": "contract_data",
|
|
20409
|
+
"kind": "function",
|
|
20410
|
+
"name": "resolvePmDiagnosticOutputBudget",
|
|
20411
|
+
"signature": "(diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract | calls: (diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract"
|
|
20412
|
+
},
|
|
19720
20413
|
{
|
|
19721
20414
|
"classification": "contract_data",
|
|
19722
20415
|
"kind": "function",
|
|
@@ -19759,6 +20452,12 @@
|
|
|
19759
20452
|
"name": "resolveReadOutputEncoding",
|
|
19760
20453
|
"signature": "(command: string, options: Record<string, unknown>) => \"json\" | \"toon\" | undefined | calls: (command: string, options: Record<string, unknown>) => \"json\" | \"toon\" | undefined"
|
|
19761
20454
|
},
|
|
20455
|
+
{
|
|
20456
|
+
"classification": "contract_data",
|
|
20457
|
+
"kind": "function",
|
|
20458
|
+
"name": "resolveReadOutputRecoveryBudget",
|
|
20459
|
+
"signature": "(input: PmReadOutputRecoveryBudgetInput) => PmReadOutputRecoveryBudget | calls: (input: PmReadOutputRecoveryBudgetInput) => PmReadOutputRecoveryBudget"
|
|
20460
|
+
},
|
|
19762
20461
|
{
|
|
19763
20462
|
"classification": "contract_data",
|
|
19764
20463
|
"kind": "function",
|
|
@@ -20161,6 +20860,12 @@
|
|
|
20161
20860
|
"name": "AgentProvenanceAbsenceReason",
|
|
20162
20861
|
"signature": "export type AgentProvenanceAbsenceReason = \"harness_unavailable\" | \"resolver_failed\" | \"resolver_not_configured\" | \"probes_disabled\" | \"invalid_value\";"
|
|
20163
20862
|
},
|
|
20863
|
+
{
|
|
20864
|
+
"classification": "supported",
|
|
20865
|
+
"kind": "interface",
|
|
20866
|
+
"name": "AgentProvenanceAdapter",
|
|
20867
|
+
"signature": "export interface AgentProvenanceAdapter { contract_version: 1; adapter_version: string; priority: number; harness: string; descriptor: HarnessSignalDescriptor; supported_dimensions: readonly string[]; native_sources: readonly (\"environment\" | \"argv\" | \"mcp_client\" | \"session_file\")[]; probe_policy: { max_bytes: number; max_lines: number; network_access: false; subprocess_access: false; }; normalization: { model_family: \"v1\"; effort: \"v1\"; preserve_raw: true; }; confidence: \"high\" | \"medium\" | \"low\"; waivers?: Readonly<Record<string, string>>; }"
|
|
20868
|
+
},
|
|
20164
20869
|
{
|
|
20165
20870
|
"classification": "supported",
|
|
20166
20871
|
"kind": "interface",
|
|
@@ -20311,6 +21016,12 @@
|
|
|
20311
21016
|
"name": "boundAgentEpisodeIdentity",
|
|
20312
21017
|
"signature": "(value: unknown, strict: boolean) => AgentEpisodeIdentity | undefined | calls: (value: unknown, strict: boolean) => AgentEpisodeIdentity | undefined"
|
|
20313
21018
|
},
|
|
21019
|
+
{
|
|
21020
|
+
"classification": "supported",
|
|
21021
|
+
"kind": "value",
|
|
21022
|
+
"name": "BUILTIN_AGENT_PROVENANCE_ADAPTERS",
|
|
21023
|
+
"signature": "readonly AgentProvenanceAdapter[]"
|
|
21024
|
+
},
|
|
20314
21025
|
{
|
|
20315
21026
|
"classification": "supported",
|
|
20316
21027
|
"kind": "value",
|
|
@@ -20767,6 +21478,12 @@
|
|
|
20767
21478
|
"name": "list",
|
|
20768
21479
|
"signature": "<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<ListResult, Options> | calls: <Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<ListResult, Options>"
|
|
20769
21480
|
},
|
|
21481
|
+
{
|
|
21482
|
+
"classification": "supported",
|
|
21483
|
+
"kind": "function",
|
|
21484
|
+
"name": "listAgentProvenanceAdapters",
|
|
21485
|
+
"signature": "() => readonly AgentProvenanceAdapter[] | calls: () => readonly AgentProvenanceAdapter[]"
|
|
21486
|
+
},
|
|
20770
21487
|
{
|
|
20771
21488
|
"classification": "supported",
|
|
20772
21489
|
"kind": "function",
|
|
@@ -20803,6 +21520,18 @@
|
|
|
20803
21520
|
"name": "NextResult",
|
|
20804
21521
|
"signature": "export interface NextResult { output_default: \"toon\"; now: string; recommended: NextRecommendation | null; ready: NextActionableItem[]; decision_needed: NextActionableItem[]; blocked: NextActionableItem[]; held_by_others: Array<{ id: string; assignee: string; }>; summary: NextSummary; filters: { type: string | null; tag: string | null; priority: string | number | null; assignee: string | null; assignee_filter: string | null; sprint: string | null; release: string | null; parent: string | null; limit: number; blocked_limit: number; ready_only: boolean; include_decisions: boolean; token_budget: number; }; suggestions?: string[]; warnings?: string[]; ranking?: ContextRankingSummary; packing?: ContextPackingSummary; truncation?: { decision_needed_total?: number; held_by_others_total?: number; }; }"
|
|
20805
21522
|
},
|
|
21523
|
+
{
|
|
21524
|
+
"classification": "supported",
|
|
21525
|
+
"kind": "function",
|
|
21526
|
+
"name": "normalizeAgentProvenanceAdapterValue",
|
|
21527
|
+
"signature": "(dimension: \"effort\" | \"model\", value: string) => NormalizedAgentProvenanceAdapterValue | calls: (dimension: \"model\" | \"effort\", value: string) => NormalizedAgentProvenanceAdapterValue"
|
|
21528
|
+
},
|
|
21529
|
+
{
|
|
21530
|
+
"classification": "supported",
|
|
21531
|
+
"kind": "interface",
|
|
21532
|
+
"name": "NormalizedAgentProvenanceAdapterValue",
|
|
21533
|
+
"signature": "export interface NormalizedAgentProvenanceAdapterValue { raw: string; normalized: string; vocabulary: \"v1\"; }"
|
|
21534
|
+
},
|
|
20806
21535
|
{
|
|
20807
21536
|
"classification": "supported",
|
|
20808
21537
|
"kind": "function",
|
|
@@ -20909,7 +21638,7 @@
|
|
|
20909
21638
|
"classification": "supported",
|
|
20910
21639
|
"kind": "class",
|
|
20911
21640
|
"name": "PmClient",
|
|
20912
|
-
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates(options?: DuplicatesCommandOptions): Promise<DuplicatesResult>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
21641
|
+
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates<Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options): ReadPromise<DuplicatesResult, Options>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
20913
21642
|
},
|
|
20914
21643
|
{
|
|
20915
21644
|
"classification": "supported",
|
|
@@ -20933,7 +21662,7 @@
|
|
|
20933
21662
|
"classification": "supported",
|
|
20934
21663
|
"kind": "interface",
|
|
20935
21664
|
"name": "PmCompleteListResult",
|
|
20936
|
-
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output
|
|
21665
|
+
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output: PmReadOutputReceipt; }"
|
|
20937
21666
|
},
|
|
20938
21667
|
{
|
|
20939
21668
|
"classification": "supported",
|
|
@@ -20975,7 +21704,7 @@
|
|
|
20975
21704
|
"classification": "supported",
|
|
20976
21705
|
"kind": "interface",
|
|
20977
21706
|
"name": "PmReadOutputReceipt",
|
|
20978
|
-
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
21707
|
+
"signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; budget_source?: \"default\"; budget_tokens?: number; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; canonical_options_used?: string[]; legacy_aliases_used: string[]; migration_hints: string[]; estimated_tokens: number; within_budget: boolean; strings_compacted: boolean; rows_compacted: boolean; compacted_row_paths?: string[]; result_omitted: boolean; omitted_result_estimated_tokens?: number; }"
|
|
20979
21708
|
},
|
|
20980
21709
|
{
|
|
20981
21710
|
"classification": "supported",
|
|
@@ -21023,7 +21752,7 @@
|
|
|
21023
21752
|
"classification": "supported",
|
|
21024
21753
|
"kind": "interface",
|
|
21025
21754
|
"name": "PmSettings",
|
|
21026
|
-
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
21755
|
+
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; allow_untrusted_linked_tests: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
21027
21756
|
},
|
|
21028
21757
|
{
|
|
21029
21758
|
"classification": "supported",
|
|
@@ -21067,6 +21796,12 @@
|
|
|
21067
21796
|
"name": "RecurrenceReceipt",
|
|
21068
21797
|
"signature": "export interface RecurrenceReceipt { reason: string; from_status: string; to_status: string; previous_terminal: PreviousTerminalEvidence; }"
|
|
21069
21798
|
},
|
|
21799
|
+
{
|
|
21800
|
+
"classification": "supported",
|
|
21801
|
+
"kind": "function",
|
|
21802
|
+
"name": "registerAgentProvenanceAdapters",
|
|
21803
|
+
"signature": "(adapters: readonly AgentProvenanceAdapter[]) => () => void | calls: (adapters: readonly AgentProvenanceAdapter[]) => () => void"
|
|
21804
|
+
},
|
|
21070
21805
|
{
|
|
21071
21806
|
"classification": "supported",
|
|
21072
21807
|
"kind": "function",
|
|
@@ -21341,7 +22076,7 @@
|
|
|
21341
22076
|
"classification": "supported",
|
|
21342
22077
|
"kind": "value",
|
|
21343
22078
|
"name": "_testOnlyHealthCommand",
|
|
21344
|
-
"signature": "{ buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; buildHealthFindings: typeof buildHealthFindings; buildCapabilityContractMetadata: typeof buildCapabilityContractMetadata; buildStaleInProgressHealthSummary: typeof buildStaleInProgressHealthSummary; buildVectorizationProviderDetails: typeof buildVectorizationProviderDetails; collectUnknownCapabilityGuidance: typeof collectUnknownCapabilityGuidance; isAdvisoryHealthWarning: typeof isAdvisoryHealthWarning; isDirectory: typeof isDirectory; isExpectedUnmanagedExtension: typeof isExpectedUnmanagedExtension; listItemDocumentPaths: typeof listItemDocumentPaths; normalizeEndpointForDisplay: typeof normalizeEndpointForDisplay; normalizeExtensionNameForMatch: typeof normalizeExtensionNameForMatch; parseTelemetryQueue: typeof parseTelemetryQueue; probeTelemetryEndpointHealth: typeof probeTelemetryEndpointHealth; projectHealthResult: typeof projectHealthResult; resolveActionableUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveHealthSkipPolicy: typeof resolveHealthSkipPolicy; resolveUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveVectorRefreshPolicy: typeof resolveVectorRefreshPolicy; selectStaleItemDetail: typeof selectStaleItemDetail; summarizeHealthCheckDetails: typeof summarizeHealthCheckDetails; summarizeExtensionList: typeof summarizeExtensionList; summarizeRecordList: typeof summarizeRecordList; summarizeStringList: typeof summarizeStringList; telemetryEnvFlagEnabled: typeof telemetryEnvFlagEnabled; warningCode: typeof warningCode; }"
|
|
22079
|
+
"signature": "{ buildHierarchyIntegrityWarnings: typeof buildHierarchyIntegrityWarnings; buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; buildHealthFindings: typeof buildHealthFindings; buildCapabilityContractMetadata: typeof buildCapabilityContractMetadata; buildStaleInProgressHealthSummary: typeof buildStaleInProgressHealthSummary; buildVectorizationProviderDetails: typeof buildVectorizationProviderDetails; collectUnknownCapabilityGuidance: typeof collectUnknownCapabilityGuidance; isAdvisoryHealthWarning: typeof isAdvisoryHealthWarning; isDirectory: typeof isDirectory; isExpectedUnmanagedExtension: typeof isExpectedUnmanagedExtension; listItemDocumentPaths: typeof listItemDocumentPaths; normalizeEndpointForDisplay: typeof normalizeEndpointForDisplay; normalizeExtensionNameForMatch: typeof normalizeExtensionNameForMatch; parseTelemetryQueue: typeof parseTelemetryQueue; probeTelemetryEndpointHealth: typeof probeTelemetryEndpointHealth; projectHealthResult: typeof projectHealthResult; resolveActionableUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveHealthSkipPolicy: typeof resolveHealthSkipPolicy; resolveUnknownAuthorEventCount: (authorAttribution: HistoryAuthorAttributionScan) => number; resolveVectorRefreshPolicy: typeof resolveVectorRefreshPolicy; selectStaleItemDetail: typeof selectStaleItemDetail; summarizeHealthCheckDetails: typeof summarizeHealthCheckDetails; summarizeExtensionList: typeof summarizeExtensionList; summarizeRecordList: typeof summarizeRecordList; summarizeStringList: typeof summarizeStringList; telemetryEnvFlagEnabled: typeof telemetryEnvFlagEnabled; warningCode: typeof warningCode; }"
|
|
21345
22080
|
},
|
|
21346
22081
|
{
|
|
21347
22082
|
"classification": "supported",
|
|
@@ -22759,6 +23494,12 @@
|
|
|
22759
23494
|
"name": "analyzeGraphImpact",
|
|
22760
23495
|
"signature": "(graph: RelationshipGraph, root: string, options?: RelationshipImpactOptions) => RelationshipImpactAnalysis | calls: (graph: RelationshipGraph, root: string, options?: RelationshipImpactOptions) => RelationshipImpactAnalysis"
|
|
22761
23496
|
},
|
|
23497
|
+
{
|
|
23498
|
+
"classification": "supported",
|
|
23499
|
+
"kind": "function",
|
|
23500
|
+
"name": "analyzeHierarchyIntegrity",
|
|
23501
|
+
"signature": "(items: readonly HierarchyIntegrityItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => HierarchyIntegrityAnalysis | calls: (items: readonly HierarchyIntegrityItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => HierarchyIntegrityAnalysis"
|
|
23502
|
+
},
|
|
22762
23503
|
{
|
|
22763
23504
|
"classification": "supported",
|
|
22764
23505
|
"kind": "function",
|
|
@@ -22783,6 +23524,12 @@
|
|
|
22783
23524
|
"name": "assembleWorkspaceRelationshipGraph",
|
|
22784
23525
|
"signature": "(items: readonly WorkspaceRelationshipItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => WorkspaceRelationshipAssembly | calls: (items: readonly WorkspaceRelationshipItem[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => WorkspaceRelationshipAssembly"
|
|
22785
23526
|
},
|
|
23527
|
+
{
|
|
23528
|
+
"classification": "supported",
|
|
23529
|
+
"kind": "function",
|
|
23530
|
+
"name": "assertHierarchyMutationAllowed",
|
|
23531
|
+
"signature": "(beforeItems: readonly HierarchyIntegrityItem[], afterItems: readonly HierarchyIntegrityItem[], changedItemId: string, isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => void | calls: (beforeItems: readonly HierarchyIntegrityItem[], afterItems: readonly HierarchyIntegrityItem[], changedItemId: string, isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => void"
|
|
23532
|
+
},
|
|
22786
23533
|
{
|
|
22787
23534
|
"classification": "supported",
|
|
22788
23535
|
"kind": "function",
|
|
@@ -22867,6 +23614,12 @@
|
|
|
22867
23614
|
"name": "collectDuplicateRelationshipEdgeGroups",
|
|
22868
23615
|
"signature": "(assembly: WorkspaceRelationshipAssembly) => DuplicateRelationshipEdgeGroup[] | calls: (assembly: WorkspaceRelationshipAssembly) => DuplicateRelationshipEdgeGroup[]"
|
|
22869
23616
|
},
|
|
23617
|
+
{
|
|
23618
|
+
"classification": "supported",
|
|
23619
|
+
"kind": "function",
|
|
23620
|
+
"name": "collectHierarchyRelations",
|
|
23621
|
+
"signature": "(items: readonly HierarchyIntegrityItem[], registry?: RelationshipKindRegistry) => HierarchyRelation[] | calls: (items: readonly HierarchyIntegrityItem[], registry?: RelationshipKindRegistry) => HierarchyRelation[]"
|
|
23622
|
+
},
|
|
22870
23623
|
{
|
|
22871
23624
|
"classification": "supported",
|
|
22872
23625
|
"kind": "function",
|
|
@@ -23059,6 +23812,12 @@
|
|
|
23059
23812
|
"name": "formatDuplicateEdgeGroup",
|
|
23060
23813
|
"signature": "(group: DuplicateRelationshipEdgeGroup) => string | calls: (group: DuplicateRelationshipEdgeGroup) => string"
|
|
23061
23814
|
},
|
|
23815
|
+
{
|
|
23816
|
+
"classification": "supported",
|
|
23817
|
+
"kind": "function",
|
|
23818
|
+
"name": "formatHierarchyRelation",
|
|
23819
|
+
"signature": "(relation: HierarchyRelation) => string | calls: (relation: HierarchyRelation) => string"
|
|
23820
|
+
},
|
|
23062
23821
|
{
|
|
23063
23822
|
"classification": "supported",
|
|
23064
23823
|
"kind": "function",
|
|
@@ -23087,7 +23846,7 @@
|
|
|
23087
23846
|
"classification": "supported",
|
|
23088
23847
|
"kind": "interface",
|
|
23089
23848
|
"name": "GraphAnalyzeResult",
|
|
23090
|
-
"signature": "export interface GraphAnalyzeResult { subcommand: \"analyze\"; node_count: number; edge_count: number; edge_basis: \"deduplicated_directed\"; sample_limit: number; execution: GraphExecutionSummary; knowledge: GraphKnowledgeSummary; cache?: GraphCacheMetadata; }"
|
|
23849
|
+
"signature": "export interface GraphAnalyzeResult { subcommand: \"analyze\"; node_count: number; edge_count: number; edge_basis: \"deduplicated_directed\"; sample_limit: number; execution: GraphExecutionSummary; knowledge: GraphKnowledgeSummary; hierarchy?: GraphHierarchySummary; cache?: GraphCacheMetadata; }"
|
|
23091
23850
|
},
|
|
23092
23851
|
{
|
|
23093
23852
|
"classification": "supported",
|
|
@@ -23105,7 +23864,7 @@
|
|
|
23105
23864
|
"classification": "supported",
|
|
23106
23865
|
"kind": "interface",
|
|
23107
23866
|
"name": "GraphAuditResult",
|
|
23108
|
-
"signature": "export interface GraphAuditResult { subcommand: \"audit\"; finding_count: number; findings_by_severity: Record<string, number>; findings_by_code: Record<string, number>; affected_subjects_by_severity: Record<string, number>; affected_subjects_by_code: Record<string, number>; profile: RelationshipAuditReport[\"profile\"]
|
|
23867
|
+
"signature": "export interface GraphAuditResult { subcommand: \"audit\"; finding_count: number; findings_by_severity: Record<string, number>; findings_by_code: Record<string, number>; affected_subjects_by_severity: Record<string, number>; affected_subjects_by_code: Record<string, number>; profile: Omit<RelationshipAuditReport[\"profile\"], \"finding_subjects_by_code\"> & Partial<Pick<RelationshipAuditReport[\"profile\"], \"finding_subjects_by_code\">>; legacy_alias_counts?: Record<string, number>; findings?: RelationshipAuditReport[\"findings\"]; baseline?: RelationshipAuditDelta; cache?: GraphCacheMetadata; }"
|
|
23109
23868
|
},
|
|
23110
23869
|
{
|
|
23111
23870
|
"classification": "supported",
|
|
@@ -23191,6 +23950,12 @@
|
|
|
23191
23950
|
"name": "GraphExecutionSummary",
|
|
23192
23951
|
"signature": "export interface GraphExecutionSummary { acyclic: boolean; ordered_node_count: number; layer_count: number; frontier_count: number; frontier?: string[]; critical_path_length: number; critical_path?: string[]; cycle_count: number; cycles?: string[][]; }"
|
|
23193
23952
|
},
|
|
23953
|
+
{
|
|
23954
|
+
"classification": "supported",
|
|
23955
|
+
"kind": "interface",
|
|
23956
|
+
"name": "GraphHierarchySummary",
|
|
23957
|
+
"signature": "export interface GraphHierarchySummary { acyclic: boolean; relation_count: number; cycle_count: number; active_cycle_count?: number; legacy_cycle_count?: number; cardinality_violation_count: number; active_cardinality_violation_count?: number; legacy_cardinality_violation_count?: number; parent_divergence_count: number; active_parent_divergence_count?: number; legacy_parent_divergence_count?: number; cycles?: string[][]; }"
|
|
23958
|
+
},
|
|
23194
23959
|
{
|
|
23195
23960
|
"classification": "supported",
|
|
23196
23961
|
"kind": "interface",
|
|
@@ -23311,18 +24076,72 @@
|
|
|
23311
24076
|
"name": "hierarchyAncestors",
|
|
23312
24077
|
"signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
|
|
23313
24078
|
},
|
|
24079
|
+
{
|
|
24080
|
+
"classification": "supported",
|
|
24081
|
+
"kind": "interface",
|
|
24082
|
+
"name": "HierarchyCardinalityViolation",
|
|
24083
|
+
"signature": "export interface HierarchyCardinalityViolation { child_id: string; parent_ids: string[]; legacy_terminal: boolean; }"
|
|
24084
|
+
},
|
|
24085
|
+
{
|
|
24086
|
+
"classification": "supported",
|
|
24087
|
+
"kind": "interface",
|
|
24088
|
+
"name": "HierarchyCycle",
|
|
24089
|
+
"signature": "export interface HierarchyCycle { item_ids: string[]; legacy_terminal: boolean; }"
|
|
24090
|
+
},
|
|
23314
24091
|
{
|
|
23315
24092
|
"classification": "supported",
|
|
23316
24093
|
"kind": "function",
|
|
23317
24094
|
"name": "hierarchyDescendants",
|
|
23318
24095
|
"signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
|
|
23319
24096
|
},
|
|
24097
|
+
{
|
|
24098
|
+
"classification": "supported",
|
|
24099
|
+
"kind": "interface",
|
|
24100
|
+
"name": "HierarchyIntegrityAnalysis",
|
|
24101
|
+
"signature": "export interface HierarchyIntegrityAnalysis { relations: HierarchyRelation[]; cycles: HierarchyCycle[]; cardinality_violations: HierarchyCardinalityViolation[]; divergences: HierarchyParentDivergence[]; }"
|
|
24102
|
+
},
|
|
24103
|
+
{
|
|
24104
|
+
"classification": "supported",
|
|
24105
|
+
"kind": "interface",
|
|
24106
|
+
"name": "HierarchyIntegrityItem",
|
|
24107
|
+
"signature": "export interface HierarchyIntegrityItem { id: string; status: ItemStatus; parent?: string; dependencies?: Dependency[]; }"
|
|
24108
|
+
},
|
|
24109
|
+
{
|
|
24110
|
+
"classification": "supported",
|
|
24111
|
+
"kind": "interface",
|
|
24112
|
+
"name": "HierarchyParentDivergence",
|
|
24113
|
+
"signature": "export interface HierarchyParentDivergence { child_id: string; scalar_parent_id: string; dependency_parent_ids: string[]; legacy_terminal: boolean; }"
|
|
24114
|
+
},
|
|
24115
|
+
{
|
|
24116
|
+
"classification": "supported",
|
|
24117
|
+
"kind": "interface",
|
|
24118
|
+
"name": "HierarchyRelation",
|
|
24119
|
+
"signature": "export interface HierarchyRelation { parent_id: string; child_id: string; source: HierarchyRelationSource; kind: string; holder_id: string; target_id?: string; child_cardinality: \"one\" | \"many\"; }"
|
|
24120
|
+
},
|
|
24121
|
+
{
|
|
24122
|
+
"classification": "supported",
|
|
24123
|
+
"kind": "interface",
|
|
24124
|
+
"name": "HierarchyRelationIndexes",
|
|
24125
|
+
"signature": "export interface HierarchyRelationIndexes { parents_by_child: ReadonlyMap<string, readonly string[]>; children_by_parent: ReadonlyMap<string, readonly string[]>; }"
|
|
24126
|
+
},
|
|
24127
|
+
{
|
|
24128
|
+
"classification": "supported",
|
|
24129
|
+
"kind": "type",
|
|
24130
|
+
"name": "HierarchyRelationSource",
|
|
24131
|
+
"signature": "export type HierarchyRelationSource = \"scalar_parent\" | \"dependency\";"
|
|
24132
|
+
},
|
|
23320
24133
|
{
|
|
23321
24134
|
"classification": "supported",
|
|
23322
24135
|
"kind": "function",
|
|
23323
24136
|
"name": "indexBlockedByIds",
|
|
23324
24137
|
"signature": "(corpus: readonly ItemMetadata[]) => Map<string, string[]> | calls: (corpus: readonly ItemMetadata[]) => Map<string, string[]>"
|
|
23325
24138
|
},
|
|
24139
|
+
{
|
|
24140
|
+
"classification": "supported",
|
|
24141
|
+
"kind": "function",
|
|
24142
|
+
"name": "indexHierarchyRelations",
|
|
24143
|
+
"signature": "(relations: readonly HierarchyRelation[]) => HierarchyRelationIndexes | calls: (relations: readonly HierarchyRelation[]) => HierarchyRelationIndexes"
|
|
24144
|
+
},
|
|
23326
24145
|
{
|
|
23327
24146
|
"classification": "supported",
|
|
23328
24147
|
"kind": "function",
|
|
@@ -24011,7 +24830,7 @@
|
|
|
24011
24830
|
"classification": "supported",
|
|
24012
24831
|
"kind": "interface",
|
|
24013
24832
|
"name": "WorkspaceRelationshipAssembly",
|
|
24014
|
-
"signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; }"
|
|
24833
|
+
"signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; hierarchyIntegrity?: HierarchyIntegrityAnalysis; }"
|
|
24015
24834
|
},
|
|
24016
24835
|
{
|
|
24017
24836
|
"classification": "supported",
|
|
@@ -25403,7 +26222,7 @@
|
|
|
25403
26222
|
"classification": "supported",
|
|
25404
26223
|
"kind": "value",
|
|
25405
26224
|
"name": "PM_COMPLETE_LIST_FINDING_CODES",
|
|
25406
|
-
"signature": "readonly [\"invalid_envelope\", \"source_incomplete\", \"source_unchecked\", \"filtered_corpus\", \"terminal_items_excluded\", \"strict_read_unproven\", \"page_incomplete\", \"count_mismatch\", \"projection_incomplete\", \"field_omission\", \"budget_compaction\", \"budget_omission\", \"session_projection\", \"invalid_item_id\", \"duplicate_item_id\"]"
|
|
26225
|
+
"signature": "readonly [\"invalid_envelope\", \"source_incomplete\", \"source_unchecked\", \"filtered_corpus\", \"terminal_items_excluded\", \"strict_read_unproven\", \"page_incomplete\", \"count_mismatch\", \"projection_incomplete\", \"field_omission\", \"omission_receipt_missing\", \"omission_receipt_invalid\", \"read_output_missing\", \"read_output_invalid\", \"read_output_dimensions_incomplete\", \"budget_compaction\", \"budget_omission\", \"session_projection\", \"invalid_item_id\", \"duplicate_item_id\"]"
|
|
25407
26226
|
},
|
|
25408
26227
|
{
|
|
25409
26228
|
"classification": "supported",
|
|
@@ -25445,7 +26264,7 @@
|
|
|
25445
26264
|
"classification": "supported",
|
|
25446
26265
|
"kind": "interface",
|
|
25447
26266
|
"name": "PmCompleteListResult",
|
|
25448
|
-
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output
|
|
26267
|
+
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output: PmReadOutputReceipt; }"
|
|
25449
26268
|
},
|
|
25450
26269
|
{
|
|
25451
26270
|
"classification": "supported",
|
|
@@ -26267,7 +27086,7 @@
|
|
|
26267
27086
|
"classification": "advanced_export",
|
|
26268
27087
|
"kind": "interface",
|
|
26269
27088
|
"name": "ConfigResult",
|
|
26270
|
-
"signature": "export interface ConfigResult { scope: ConfigScope; key?: ConfigKey | string; criteria?: string[]; format?: ItemFormat; policy?: HistoryMissingStreamPolicy | SprintReleaseFormatPolicy | ParentReferencePolicy | ValidateMetadataProfile | GovernancePreset | GovernanceOwnershipEnforcement | GovernanceCreateModeDefault | GovernanceCloseValidationDefault | GovernanceRequireCloseReasonPolicy | GovernanceWorkflowEnforcement | GovernanceForceRequiredForStaleLockPolicy | TestResultTrackingPolicy | TelemetryTrackingPolicy | string; nested_setting?: NestedSettingResultValue; nested_settings?: NestedSettingResultValue[]; keys?: ConfigKeyDescriptor[]; values?: Record<ConfigKey, ConfigValue>; count?: number; context_settings?: ContextConfigValue; has_explicit_item_format?: boolean; migration?: { target_format: ItemFormat; scanned: number; migrated: string[]; removed: string[]; warnings: string[]; }; settings_path: string; changed: boolean; warnings?: string[]; }"
|
|
27089
|
+
"signature": "export interface ConfigResult { scope: ConfigScope; key?: ConfigKey | string; criteria?: string[]; format?: ItemFormat; policy?: HistoryMissingStreamPolicy | SprintReleaseFormatPolicy | ParentReferencePolicy | ValidateMetadataProfile | GovernancePreset | GovernanceOwnershipEnforcement | GovernanceCreateModeDefault | GovernanceCloseValidationDefault | GovernanceRequireCloseReasonPolicy | GovernanceWorkflowEnforcement | GovernanceForceRequiredForStaleLockPolicy | TestResultTrackingPolicy | TelemetryTrackingPolicy | string; nested_setting?: NestedSettingResultValue; nested_settings?: NestedSettingResultValue[]; keys?: ConfigKeyDescriptor[]; values?: Record<ConfigKey, ConfigValue>; count?: number; context_settings?: ContextConfigValue; identity_vocabulary?: AgentIdentityVocabularySummary; vocabulary_mutation?: AgentIdentityVocabularyMutationPreview; has_explicit_item_format?: boolean; migration?: { target_format: ItemFormat; scanned: number; migrated: string[]; removed: string[]; warnings: string[]; }; settings_path: string; changed: boolean; warnings?: string[]; }"
|
|
26271
27090
|
},
|
|
26272
27091
|
{
|
|
26273
27092
|
"classification": "supported",
|
|
@@ -26315,7 +27134,7 @@
|
|
|
26315
27134
|
"classification": "advanced_export",
|
|
26316
27135
|
"kind": "interface",
|
|
26317
27136
|
"name": "ContractsResult",
|
|
26318
|
-
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
27137
|
+
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; diagnostic_output_contracts?: readonly PmDiagnosticOutputBudgetContract[]; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
26319
27138
|
},
|
|
26320
27139
|
{
|
|
26321
27140
|
"classification": "supported",
|
|
@@ -26365,6 +27184,12 @@
|
|
|
26365
27184
|
"name": "CreatePmCliExpectedErrorOptions",
|
|
26366
27185
|
"signature": "export interface CreatePmCliExpectedErrorOptions { exitCode?: number; context?: PmCliErrorContext; cause?: unknown; }"
|
|
26367
27186
|
},
|
|
27187
|
+
{
|
|
27188
|
+
"classification": "contract_data",
|
|
27189
|
+
"kind": "function",
|
|
27190
|
+
"name": "createPmCommandOutputBudget",
|
|
27191
|
+
"signature": "(command: string, budgetClass?: PmOutputBudgetClass) => PmCommandOutputBudgetContract | calls: (command: string, budgetClass?: PmOutputBudgetClass) => PmCommandOutputBudgetContract"
|
|
27192
|
+
},
|
|
26368
27193
|
{
|
|
26369
27194
|
"classification": "supported",
|
|
26370
27195
|
"kind": "interface",
|
|
@@ -26389,6 +27214,12 @@
|
|
|
26389
27214
|
"name": "DEFAULT_TERMINAL_TRANSITION_POLICY",
|
|
26390
27215
|
"signature": "Readonly<TerminalTransitionPolicy>"
|
|
26391
27216
|
},
|
|
27217
|
+
{
|
|
27218
|
+
"classification": "contract_data",
|
|
27219
|
+
"kind": "function",
|
|
27220
|
+
"name": "definePmCommandOutputBudget",
|
|
27221
|
+
"signature": "<TContract extends PmCommandOutputBudgetContract>(contract: TContract) => TContract | calls: <TContract extends PmCommandOutputBudgetContract>(contract: TContract) => TContract"
|
|
27222
|
+
},
|
|
26392
27223
|
{
|
|
26393
27224
|
"classification": "advanced_export",
|
|
26394
27225
|
"kind": "interface",
|
|
@@ -26459,7 +27290,7 @@
|
|
|
26459
27290
|
"classification": "advanced_export",
|
|
26460
27291
|
"kind": "function",
|
|
26461
27292
|
"name": "duplicates",
|
|
26462
|
-
"signature": "(options?:
|
|
27293
|
+
"signature": "<Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<DuplicatesResult, Options> | calls: <Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options, clientOptions?: PmClientOptions) => ReadPromise<DuplicatesResult, Options>"
|
|
26463
27294
|
},
|
|
26464
27295
|
{
|
|
26465
27296
|
"classification": "supported",
|
|
@@ -26503,6 +27334,12 @@
|
|
|
26503
27334
|
"name": "ensureTrackerInitialized",
|
|
26504
27335
|
"signature": "(pmRoot: string) => Promise<void> | calls: (pmRoot: string) => Promise<void>"
|
|
26505
27336
|
},
|
|
27337
|
+
{
|
|
27338
|
+
"classification": "contract_data",
|
|
27339
|
+
"kind": "function",
|
|
27340
|
+
"name": "estimatePmOutputTokens",
|
|
27341
|
+
"signature": "(utf8Bytes: number) => number | calls: (utf8Bytes: number) => number"
|
|
27342
|
+
},
|
|
26506
27343
|
{
|
|
26507
27344
|
"classification": "supported",
|
|
26508
27345
|
"kind": "value",
|
|
@@ -26821,6 +27658,12 @@
|
|
|
26821
27658
|
"name": "ImportPriorityValue",
|
|
26822
27659
|
"signature": "export type ImportPriorityValue = 0 | 1 | 2 | 3 | 4;"
|
|
26823
27660
|
},
|
|
27661
|
+
{
|
|
27662
|
+
"classification": "contract_data",
|
|
27663
|
+
"kind": "function",
|
|
27664
|
+
"name": "inferPmOutputBudgetClass",
|
|
27665
|
+
"signature": "(command: string) => PmOutputBudgetClass | calls: (command: string) => PmOutputBudgetClass"
|
|
27666
|
+
},
|
|
26824
27667
|
{
|
|
26825
27668
|
"classification": "advanced_export",
|
|
26826
27669
|
"kind": "function",
|
|
@@ -26963,7 +27806,7 @@
|
|
|
26963
27806
|
"classification": "advanced_export",
|
|
26964
27807
|
"kind": "interface",
|
|
26965
27808
|
"name": "LinkedTest",
|
|
26966
|
-
"signature": "export interface LinkedTest { command?: string; path?: string; scope: LinkScope; timeout_seconds?: number; pm_context_mode?: \"schema\" | \"tracker\" | \"auto\"; env_set?: Record<string, string>; env_clear?: string[]; shared_host_safe?: boolean; assert_stdout_contains?: string[]; assert_stdout_regex?: string[]; assert_stderr_contains?: string[]; assert_stderr_regex?: string[]; assert_stdout_min_lines?: number; assert_json_field_equals?: Record<string, string>; assert_json_field_gte?: Record<string, number>; note?: string; }"
|
|
27809
|
+
"signature": "export interface LinkedTest { command?: string; path?: string; scope: LinkScope; timeout_seconds?: number; pm_context_mode?: \"schema\" | \"tracker\" | \"auto\"; workspace_context_mode?: \"source\" | \"isolated\" | \"snapshot\"; provenance?: LinkedTestProvenance; provenance_invalid?: true; env_set?: Record<string, string>; env_clear?: string[]; shared_host_safe?: boolean; assert_stdout_contains?: string[]; assert_stdout_regex?: string[]; assert_stderr_contains?: string[]; assert_stderr_regex?: string[]; assert_stdout_min_lines?: number; assert_json_field_equals?: Record<string, string>; assert_json_field_gte?: Record<string, number>; note?: string; }"
|
|
26967
27810
|
},
|
|
26968
27811
|
{
|
|
26969
27812
|
"classification": "supported",
|
|
@@ -27301,6 +28144,30 @@
|
|
|
27301
28144
|
"name": "PM_CLI_EXPECTED_ERROR_NAME",
|
|
27302
28145
|
"signature": "\"PmCliError\""
|
|
27303
28146
|
},
|
|
28147
|
+
{
|
|
28148
|
+
"classification": "contract_data",
|
|
28149
|
+
"kind": "value",
|
|
28150
|
+
"name": "PM_COMMAND_OUTPUT_BUDGET_CONTRACTS",
|
|
28151
|
+
"signature": "PmCommandOutputBudgetContract[]"
|
|
28152
|
+
},
|
|
28153
|
+
{
|
|
28154
|
+
"classification": "contract_data",
|
|
28155
|
+
"kind": "value",
|
|
28156
|
+
"name": "PM_DIAGNOSTIC_DEGRADATION_STEPS",
|
|
28157
|
+
"signature": "readonly [\"full\", \"omit_explanation\", \"limit_collections\", \"compact_recovery\", \"action_only\"]"
|
|
28158
|
+
},
|
|
28159
|
+
{
|
|
28160
|
+
"classification": "contract_data",
|
|
28161
|
+
"kind": "value",
|
|
28162
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_BUDGET_CONTRACTS",
|
|
28163
|
+
"signature": "PmDiagnosticOutputBudgetContract[]"
|
|
28164
|
+
},
|
|
28165
|
+
{
|
|
28166
|
+
"classification": "contract_data",
|
|
28167
|
+
"kind": "value",
|
|
28168
|
+
"name": "PM_DIAGNOSTIC_OUTPUT_CLASSES",
|
|
28169
|
+
"signature": "readonly [\"error\", \"warning\", \"validation_summary\", \"recovery_bundle\"]"
|
|
28170
|
+
},
|
|
27304
28171
|
{
|
|
27305
28172
|
"classification": "advanced_export",
|
|
27306
28173
|
"kind": "value",
|
|
@@ -27313,6 +28180,18 @@
|
|
|
27313
28180
|
"name": "PM_GITIGNORE_START",
|
|
27314
28181
|
"signature": "\"# pm-cli:runtime-cache:start\""
|
|
27315
28182
|
},
|
|
28183
|
+
{
|
|
28184
|
+
"classification": "contract_data",
|
|
28185
|
+
"kind": "value",
|
|
28186
|
+
"name": "PM_OUTPUT_BUDGET_CLASSES",
|
|
28187
|
+
"signature": "readonly [\"mutation\", \"read\", \"discovery\", \"governance\"]"
|
|
28188
|
+
},
|
|
28189
|
+
{
|
|
28190
|
+
"classification": "contract_data",
|
|
28191
|
+
"kind": "value",
|
|
28192
|
+
"name": "PM_OUTPUT_DEGRADATION_STEPS",
|
|
28193
|
+
"signature": "readonly [\"full\", \"compact\", \"brief\", \"summary\", \"counts\"]"
|
|
28194
|
+
},
|
|
27316
28195
|
{
|
|
27317
28196
|
"classification": "supported",
|
|
27318
28197
|
"kind": "type",
|
|
@@ -27335,7 +28214,7 @@
|
|
|
27335
28214
|
"classification": "supported",
|
|
27336
28215
|
"kind": "class",
|
|
27337
28216
|
"name": "PmClient",
|
|
27338
|
-
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates(options?: DuplicatesCommandOptions): Promise<DuplicatesResult>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
28217
|
+
"signature": "export declare class PmClient { private readonly defaults; constructor(options?: PmClientOptions); static forActiveExtensionHost(options: PmClientOptions): PmClient; run(action: PmActionName, args?: PmClientRunArgs): Promise<unknown>; private runTyped; context<Options extends ReadOptions<ContextOptions> = ContextOptions>(options?: Options): ReadPromise<ContextResult, Options>; listAllItemMetadataLight(): Promise<ItemMetadata[]>; list<Options extends ReadOptions<ListOptions> = ListOptions>(options?: Options): ReadPromise<ListResult, Options>; listAllComplete(options?: PmCompleteListOptions): Promise<PmCompleteListResult>; search<Options extends ReadOptions<SearchOptions> = SearchOptions>(query: string, options?: Options): ReadPromise<SearchResult, Options>; get<Options extends ReadOptions<GetOptions> = GetOptions>(id: string, options?: Options): ReadPromise<GetResult, Options>; next<Options extends ReadOptions<NextOptions> = NextOptions>(options?: Options): ReadPromise<NextResult, Options>; aggregate<Options extends ReadOptions<AggregateOptions> = AggregateOptions>(options?: Options): ReadPromise<AggregateResult, Options>; stats<Options extends ReadOptions<StatsCommandOptions> = StatsCommandOptions>(options?: Options): ReadPromise<StatsResult, Options>; duplicates<Options extends ReadOptions<DuplicatesCommandOptions> = DuplicatesCommandOptions>(options?: Options): ReadPromise<DuplicatesResult, Options>; comments<Options extends ReadOptions<CommentsCommandOptions> = CommentsCommandOptions>(id: string, options?: Options): ReadPromise<CommentsResult, Options>; notes<Options extends ReadOptions<NotesCommandOptions> = NotesCommandOptions>(id: string, options?: Options): ReadPromise<NotesResult, Options>; learnings(id: string, options?: LearningsCommandOptions): Promise<LearningsResult>; files<Options extends ReadOptions<FilesCommandOptions> = FilesCommandOptions>(id: string, options?: Options): ReadPromise<FilesResult, Options>; filesDiscover(id: string, options?: FilesDiscoverOptions): Promise<FilesDiscoverResult>; filesLookup(options: FilesLookupOptions): Promise<FilesLookupResult>; docs<Options extends ReadOptions<DocsCommandOptions> = DocsCommandOptions>(id: string, options?: Options): ReadPromise<DocsResult, Options>; deps<Options extends ReadOptions<DepsCommandOptions> = DepsCommandOptions>(id: string, options?: Options): ReadPromise<DepsResult, Options>; graph<Options extends ReadOptions<GraphCommandOptions> = GraphCommandOptions>(subcommand: GraphSubcommand, ids?: { id?: string; target?: string; }, options?: Options): ReadPromise<GraphResult, Options>; append(id: string, body: string, options?: PmClientFullMutationOptions): Promise<AppendResult>; init(prefix?: string, options?: InitCommandOptions): Promise<InitResult>; config(scope: string, configAction: string, key?: string, value?: string, options?: ConfigCommandOptions): Promise<ConfigResult>; schema(subcommand: SchemaSubcommand, options?: PmActionOptions): Promise<SchemaResult>; schemaList(): Promise<SchemaListResult>; schemaShow(name: string): Promise<SchemaShowResult>; schemaAddType(name: string, options?: SchemaAddTypeCommandOptions): Promise<SchemaAddTypeResult>; schemaRemoveType(name: string, options?: SchemaRemoveTypeCommandOptions): Promise<SchemaRemoveTypeResult>; schemaAddStatus(name: string, options?: SchemaAddStatusCommandOptions): Promise<SchemaAddStatusResult>; schemaRemoveStatus(name: string, options?: SchemaRemoveStatusCommandOptions): Promise<SchemaRemoveStatusResult>; schemaAddField(name: string, options?: SchemaAddFieldCommandOptions): Promise<SchemaAddFieldResult>; schemaRemoveField(name: string, options?: SchemaRemoveFieldCommandOptions): Promise<SchemaRemoveFieldResult>; schemaListFields(): Promise<SchemaListFieldsResult>; schemaShowField(name: string): Promise<SchemaShowFieldResult>; schemaApplyPreset(typePreset: string, options?: SchemaApplyPresetCommandOptions): Promise<SchemaApplyPresetResult>; schemaInferTypes(options?: SchemaAddTypeInferCommandOptions): Promise<SchemaAddTypeInferResult>; schemaRenameType(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaRenameField(from: string, to: string, options: RunSchemaEvolutionMigrationOptions, type?: string): Promise<SchemaEvolutionMigrationResult>; schemaRemapStatus(from: string, to: string, options: RunSchemaEvolutionMigrationOptions): Promise<SchemaEvolutionMigrationResult>; schemaShowStatus(name: string): Promise<SchemaShowStatusResult>; profile(subcommand: ProfileSubcommand, options?: PmActionOptions): Promise<ProfileResult>; profileList(): Promise<ProfileListResult>; profileShow(name: string): Promise<ProfileShowResult>; profileApply(name: string, options?: ProfileApplyCommandOptions): Promise<ProfileApplyResult>; profileLint(name: string): Promise<ProfileLintResult>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts: true; }>(options: Options): ReadPromise<ValidateCountsResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions> & { counts?: false; } = ValidateCommandOptions & { counts?: false; }>(options?: Options): ReadPromise<ValidateResult, Options>; validate<Options extends ReadOptions<ValidateCommandOptions>>(options: Options): ReadPromise<ValidateResult | ValidateCountsResult, Options>; health<Options extends ReadOptions<RunHealthOptions> = RunHealthOptions>(options?: Options): ReadPromise<HealthResult, Options>; gc(options?: GcCommandOptions): Promise<GcResult>; assurance(input: AssuranceActionInput): Promise<AssuranceActionResult>; historyRedact(id: string, options: HistoryRedactCommandOptions): Promise<HistoryRedactResult>; historyRepair(id: string, options?: HistoryRepairCommandOptions): Promise<HistoryRepairResult>; historyRepairAll(options?: HistoryRepairCommandOptions): Promise<HistoryRepairAllResult>; historyCompact(id: string, options?: HistoryCompactCommandOptions): Promise<HistoryCompactResult>; historyCompactBulk(options: HistoryCompactBulkCommandOptions): Promise<HistoryCompactBulkResult>; historyAuthorAcknowledge(options: AcknowledgeUnknownAuthorEventsOptions): Promise<UnknownAuthorAcknowledgmentResult>; plan(subcommand: PlanSubcommand, id?: string, options?: PlanCommandOptions, stepRef?: string, reorderTo?: number): Promise<PlanCommandResult>; planCreate(options: PlanCommandOptions): Promise<PlanCommandResult>; planShow(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planAddStep(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUpdateStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planCompleteStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planBlockStep(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planReorderStep(id: string, stepRef: string, reorderTo: number, options?: PlanCommandOptions): Promise<PlanCommandResult>; planRemoveStep(id: string, stepRef: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planLink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planUnlink(id: string, stepRef: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDecision(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planDiscovery(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planValidation(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planResume(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; planApprove(id: string, options?: PlanCommandOptions): Promise<PlanCommandResult>; planMaterialize(id: string, options: PlanCommandOptions): Promise<PlanCommandResult>; create(options?: PmCreateActionOptions): Promise<CreateResult>; update(id: string, options?: PmUpdateActionOptions): Promise<UpdateResult>; reopen(id: string, reason: string, options?: ReopenCommandOptions): Promise<ReopenResult>; close(id: string, reason: string, options?: PmClientCloseActionOptions): Promise<CloseResult>; claim(id: string, options?: PmClientFullMutationOptions): Promise<ClaimResult>; claimNext(options?: ClaimNextOptions): Promise<ClaimNextResult>; release(id: string, options?: PmClientFullMutationOptions): Promise<ReleaseResult>; copy(id: string, options?: PmClientFullMutationOptions): Promise<CopyResult>; delete(id: string, options?: PmClientFullMutationOptions): Promise<DeleteResult>; restore(id: string, target: string, options?: PmClientFullMutationOptions): Promise<RestoreResult>; focus(id?: string, options?: PmClientFullMutationOptions): Promise<FocusResult>; startTask(id: string, options?: PmClientFullMutationOptions): Promise<StartTaskResult>; pauseTask(id: string, options?: PmClientFullMutationOptions): Promise<PauseTaskResult>; closeTask(id: string, reason: string, options?: PmClientFullMutationOptions): Promise<CloseTaskResult>; extension(target?: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionList(options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionActivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; extensionDeactivate(target: string, options?: ExtensionCommandOptions): Promise<ExtensionCommandResult>; package(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageList(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageInstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageUninstall(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDoctor(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageManage(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDescribe(target?: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageReload(options?: PackageCommandOptions): Promise<PackageCommandResult>; packageCatalog<Options extends ReadOptions<PackageCommandOptions> = PackageCommandOptions>(options?: Options): ReadPromise<PackageCommandResult, Options>; packageActivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageDeactivate(target: string, options?: PackageCommandOptions): Promise<PackageCommandResult>; packageMigrate(options?: PackageCommandOptions): Promise<PackageCommandResult>; upgrade(target?: string, options?: UpgradeCommandOptions): Promise<UpgradeResult>; }"
|
|
27339
28218
|
},
|
|
27340
28219
|
{
|
|
27341
28220
|
"classification": "advanced_export",
|
|
@@ -27379,6 +28258,12 @@
|
|
|
27379
28258
|
"name": "PmCliExpectedError",
|
|
27380
28259
|
"signature": "export interface PmCliExpectedError extends Error { name: typeof PM_CLI_EXPECTED_ERROR_NAME; exitCode: number; context: PmCliErrorContext; cause?: unknown; }"
|
|
27381
28260
|
},
|
|
28261
|
+
{
|
|
28262
|
+
"classification": "contract_data",
|
|
28263
|
+
"kind": "interface",
|
|
28264
|
+
"name": "PmCommandOutputBudgetContract",
|
|
28265
|
+
"signature": "export interface PmCommandOutputBudgetContract { command: string; budget_class: PmOutputBudgetClass; default_max_estimated_tokens: number; default_max_estimated_tokens_by_format: Readonly<{ toon: number; json: number; }>; degradation_ladder: readonly PmOutputDegradationStep[]; allows_unbounded_opt_out: boolean; token_estimate: \"ceil(utf8_bytes / 4)\"; }"
|
|
28266
|
+
},
|
|
27382
28267
|
{
|
|
27383
28268
|
"classification": "supported",
|
|
27384
28269
|
"kind": "interface",
|
|
@@ -27419,7 +28304,7 @@
|
|
|
27419
28304
|
"classification": "supported",
|
|
27420
28305
|
"kind": "interface",
|
|
27421
28306
|
"name": "PmCompleteListResult",
|
|
27422
|
-
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output
|
|
28307
|
+
"signature": "export interface PmCompleteListResult extends ListFullResult { complete_list: PmCompleteListCertificate; read_output: PmReadOutputReceipt; }"
|
|
27423
28308
|
},
|
|
27424
28309
|
{
|
|
27425
28310
|
"classification": "supported",
|
|
@@ -27433,12 +28318,60 @@
|
|
|
27433
28318
|
"name": "PmContextIntentContract",
|
|
27434
28319
|
"signature": "export interface PmContextIntentContract { command: PmContextIntentCommand; intent: string; description: string; included_field_groups: string[]; token_budget: number; source?: PmContextIntentSource; }"
|
|
27435
28320
|
},
|
|
28321
|
+
{
|
|
28322
|
+
"classification": "contract_data",
|
|
28323
|
+
"kind": "type",
|
|
28324
|
+
"name": "PmDiagnosticDegradationStep",
|
|
28325
|
+
"signature": "export type PmDiagnosticDegradationStep = (typeof PM_DIAGNOSTIC_DEGRADATION_STEPS)[number];"
|
|
28326
|
+
},
|
|
28327
|
+
{
|
|
28328
|
+
"classification": "contract_data",
|
|
28329
|
+
"kind": "interface",
|
|
28330
|
+
"name": "PmDiagnosticOutputBudgetContract",
|
|
28331
|
+
"signature": "export interface PmDiagnosticOutputBudgetContract { diagnostic_class: PmDiagnosticOutputClass; default_max_estimated_tokens_by_format: Readonly<{ text: number; json: number; }>; minimum_max_estimated_tokens: number; degradation_ladder: readonly PmDiagnosticDegradationStep[]; corrective_action_paths: readonly string[]; token_estimate: \"ceil(utf8_bytes / 4)\"; }"
|
|
28332
|
+
},
|
|
28333
|
+
{
|
|
28334
|
+
"classification": "contract_data",
|
|
28335
|
+
"kind": "type",
|
|
28336
|
+
"name": "PmDiagnosticOutputClass",
|
|
28337
|
+
"signature": "export type PmDiagnosticOutputClass = (typeof PM_DIAGNOSTIC_OUTPUT_CLASSES)[number];"
|
|
28338
|
+
},
|
|
28339
|
+
{
|
|
28340
|
+
"classification": "contract_data",
|
|
28341
|
+
"kind": "interface",
|
|
28342
|
+
"name": "PmDiagnosticOutputReceipt",
|
|
28343
|
+
"signature": "export interface PmDiagnosticOutputReceipt { diagnostic_class: PmDiagnosticOutputClass; format: \"json\" | \"text\"; budget: number; budget_source: \"default\" | \"explicit\"; original_estimated_tokens: number; estimated_tokens: number; truncated: boolean; degradation_steps: PmDiagnosticDegradationStep[]; omitted_fields: string[]; omitted_fields_overflow_count?: number; }"
|
|
28344
|
+
},
|
|
27436
28345
|
{
|
|
27437
28346
|
"classification": "contract_data",
|
|
27438
28347
|
"kind": "interface",
|
|
27439
28348
|
"name": "PmErrorCodeContract",
|
|
27440
28349
|
"signature": "export interface PmErrorCodeContract { code: string; meaning: string; stability: PmErrorCodeStability; exit_code: 1 | 2 | 3 | 4 | 5; class: PmErrorCodeClass; recovery: string; sources: string[]; emitting_commands: string[]; canonical_code?: string; aliases?: string[]; owned_states?: PmRefusalStateContract[]; }"
|
|
27441
28350
|
},
|
|
28351
|
+
{
|
|
28352
|
+
"classification": "contract_data",
|
|
28353
|
+
"kind": "type",
|
|
28354
|
+
"name": "PmOutputBudgetClass",
|
|
28355
|
+
"signature": "export type PmOutputBudgetClass = (typeof PM_OUTPUT_BUDGET_CLASSES)[number];"
|
|
28356
|
+
},
|
|
28357
|
+
{
|
|
28358
|
+
"classification": "contract_data",
|
|
28359
|
+
"kind": "type",
|
|
28360
|
+
"name": "PmOutputDegradationStep",
|
|
28361
|
+
"signature": "export type PmOutputDegradationStep = (typeof PM_OUTPUT_DEGRADATION_STEPS)[number];"
|
|
28362
|
+
},
|
|
28363
|
+
{
|
|
28364
|
+
"classification": "contract_data",
|
|
28365
|
+
"kind": "type",
|
|
28366
|
+
"name": "PmProjectedDiagnostic",
|
|
28367
|
+
"signature": "export type PmProjectedDiagnostic<TDiagnostic extends object> = Partial<TDiagnostic> & Pick<TDiagnostic, Extract<keyof TDiagnostic, \"code\" | \"required\">> & { diagnostic_output?: PmDiagnosticOutputReceipt; };"
|
|
28368
|
+
},
|
|
28369
|
+
{
|
|
28370
|
+
"classification": "contract_data",
|
|
28371
|
+
"kind": "interface",
|
|
28372
|
+
"name": "PmProjectedTextDiagnostic",
|
|
28373
|
+
"signature": "export interface PmProjectedTextDiagnostic { output: string; diagnostic_output: PmDiagnosticOutputReceipt; }"
|
|
28374
|
+
},
|
|
27442
28375
|
{
|
|
27443
28376
|
"classification": "supported",
|
|
27444
28377
|
"kind": "interface",
|
|
@@ -27485,7 +28418,7 @@
|
|
|
27485
28418
|
"classification": "supported",
|
|
27486
28419
|
"kind": "interface",
|
|
27487
28420
|
"name": "PmSettings",
|
|
27488
|
-
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
28421
|
+
"signature": "export interface PmSettings { version: number; id_prefix: string; ids: { token_length: number; }; author_default: string; agent_identity?: { probes_enabled?: boolean; identity_vocabulary?: { version: number; aliases: Record<string, string>; }; harness_signals: Array<{ harness: string; environment_keys?: string[]; model_environment_keys?: string[]; session_environment_keys?: string[]; provenance_environment_keys?: Record<string, string[]>; provenance_resolvers?: Record<string, \"ai_agent_version\" | \"claude_session_file\">; provenance_unavailable_dimensions?: string[]; argv_markers?: string[]; client_names?: string[]; }>; }; mutation_guard: { require_attributed_author: boolean; secret_guard: \"off\" | \"advise\" | \"block\"; stale_in_progress_hours: number; }; item_format: ItemFormat; locks: { ttl_seconds: number; wait_ms: number; }; checkpoints: { retention_days: number; }; output: { default_format: \"toon\" | \"json\"; }; ux?: { deprecation_hints?: boolean; }; history: { missing_stream: \"auto_create\" | \"strict_error\"; compact_policy: HistoryCompactPolicy; }; validation: { sprint_release_format: SprintReleaseFormatPolicy; parent_reference: ParentReferencePolicy; metadata_profile: ValidateMetadataProfile; metadata_required_fields: ValidateMetadataRequiredField[]; lifecycle_stale_blocker_reason_patterns: string[]; lifecycle_closure_like_blocked_reason_patterns: string[]; lifecycle_closure_like_resolution_patterns: string[]; lifecycle_closure_like_actual_result_patterns: string[]; estimate_defaults_by_type: Record<string, number>; }; governance: GovernanceSettings; workflow: { definition_of_done: string[]; }; testing: { record_results_to_items: boolean; allow_untrusted_linked_tests: boolean; }; telemetry: { enabled: boolean; first_run_prompt_completed: boolean; capture_level: \"minimal\" | \"redacted\" | \"max\"; endpoint: string; installation_id: string; retention_days: number; }; agent_guidance: AgentGuidanceSettings; item_types: { definitions: ItemTypeDefinition[]; }; schema: RuntimeSchemaSettings; extensions: { enabled: string[]; disabled: string[]; policy: ExtensionPolicySettings; }; search: { score_threshold: number; hybrid_semantic_weight: number; max_results: number; embedding_model: string; embedding_corpus_max_characters?: number; embedding_batch_size: number; embedding_timeout_ms: number; scanner_max_batch_retries: number; provider?: string; corpus_fields?: string[]; mutation_refresh_policy: SearchMutationRefreshPolicy; query_expansion: SearchQueryExpansionSettings; rerank: SearchRerankSettings; bm25?: { k1?: number; b?: number; }; tuning?: { title_exact_bonus?: number; title_weight?: number; description_weight?: number; tags_weight?: number; status_weight?: number; body_weight?: number; comments_weight?: number; notes_weight?: number; learnings_weight?: number; dependencies_weight?: number; linked_content_weight?: number; }; }; providers: { openai: { base_url: string; api_key: string; model: string; }; ollama: { base_url: string; model: string; }; }; context: ContextSettings; vector_store: { adapter?: string; collection_name: string; qdrant: { url: string; api_key: string; }; lancedb: { path: string; }; }; }"
|
|
27489
28422
|
},
|
|
27490
28423
|
{
|
|
27491
28424
|
"classification": "supported",
|
|
@@ -27571,6 +28504,18 @@
|
|
|
27571
28504
|
"name": "ProgressEntry",
|
|
27572
28505
|
"signature": "export interface ProgressEntry { id: string; title: string; type: string; total: number; closed: number; open: number; in_progress: number; blocked: number; completion_pct: number; }"
|
|
27573
28506
|
},
|
|
28507
|
+
{
|
|
28508
|
+
"classification": "contract_data",
|
|
28509
|
+
"kind": "function",
|
|
28510
|
+
"name": "projectPmDiagnosticOutput",
|
|
28511
|
+
"signature": "<TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic> | calls: <TDiagnostic extends object>(diagnostic: TDiagnostic, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedDiagnostic<TDiagnostic>"
|
|
28512
|
+
},
|
|
28513
|
+
{
|
|
28514
|
+
"classification": "contract_data",
|
|
28515
|
+
"kind": "function",
|
|
28516
|
+
"name": "projectPmDiagnosticText",
|
|
28517
|
+
"signature": "(output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic | calls: (output: string, correctiveAction: string, options?: { diagnosticClass?: PmDiagnosticOutputClass; maxEstimatedTokens?: number; }) => PmProjectedTextDiagnostic"
|
|
28518
|
+
},
|
|
27574
28519
|
{
|
|
27575
28520
|
"classification": "advanced_export",
|
|
27576
28521
|
"kind": "function",
|
|
@@ -27721,6 +28666,18 @@
|
|
|
27721
28666
|
"name": "resolveItemTypeRegistry",
|
|
27722
28667
|
"signature": "(settings: PmSettings, extensionRegistrations?: ExtensionRegistrationRegistry | null | undefined) => ItemTypeRegistry | calls: (settings: PmSettings, extensionRegistrations?: ExtensionRegistrationRegistry | null | undefined) => ItemTypeRegistry"
|
|
27723
28668
|
},
|
|
28669
|
+
{
|
|
28670
|
+
"classification": "contract_data",
|
|
28671
|
+
"kind": "function",
|
|
28672
|
+
"name": "resolvePmCommandOutputBudget",
|
|
28673
|
+
"signature": "{ (command: string, options: { generateFallback: true; }): PmCommandOutputBudgetContract; (command: string, options?: { generateFallback?: false; }): PmCommandOutputBudgetContract | null; } | calls: (command: string, options: { generateFallback: true; }) => PmCommandOutputBudgetContract ; (command: string, options?: { generateFallback?: false; }) => PmCommandOutputBudgetContract | null"
|
|
28674
|
+
},
|
|
28675
|
+
{
|
|
28676
|
+
"classification": "contract_data",
|
|
28677
|
+
"kind": "function",
|
|
28678
|
+
"name": "resolvePmDiagnosticOutputBudget",
|
|
28679
|
+
"signature": "(diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract | calls: (diagnosticClass: PmDiagnosticOutputClass) => PmDiagnosticOutputBudgetContract"
|
|
28680
|
+
},
|
|
27724
28681
|
{
|
|
27725
28682
|
"classification": "advanced_export",
|
|
27726
28683
|
"kind": "function",
|
|
@@ -29330,6 +30287,9 @@
|
|
|
29330
30287
|
"field_invalid",
|
|
29331
30288
|
"field_mcp_input_collision",
|
|
29332
30289
|
"github_source_entry_unbuilt",
|
|
30290
|
+
"hierarchy_cardinality_created",
|
|
30291
|
+
"hierarchy_cycle_created",
|
|
30292
|
+
"hierarchy_parent_divergence_created",
|
|
29333
30293
|
"history_author_acknowledge_plan_conflict",
|
|
29334
30294
|
"history_author_acknowledge_plan_fingerprint_required",
|
|
29335
30295
|
"history_author_acknowledge_preview_limit_invalid",
|
|
@@ -29384,6 +30344,7 @@
|
|
|
29384
30344
|
"invalid_provenance_predicate",
|
|
29385
30345
|
"invalid_query_cursor",
|
|
29386
30346
|
"invalid_read_output_session",
|
|
30347
|
+
"invalid_reproducible_process_environment",
|
|
29387
30348
|
"invalid_workspace_snapshot_target",
|
|
29388
30349
|
"item_already_active",
|
|
29389
30350
|
"item_document_invalid",
|
|
@@ -29454,6 +30415,12 @@
|
|
|
29454
30415
|
"read_output_cursor_stale",
|
|
29455
30416
|
"recovery_kind_mismatch",
|
|
29456
30417
|
"redundant_edge",
|
|
30418
|
+
"refusal_allowed_values_mismatch",
|
|
30419
|
+
"refusal_error_code_mismatch",
|
|
30420
|
+
"refusal_exit_code_mismatch",
|
|
30421
|
+
"refusal_mutated_state",
|
|
30422
|
+
"refusal_probe_missing",
|
|
30423
|
+
"refusal_recovery_failed",
|
|
29457
30424
|
"reindex_already_running",
|
|
29458
30425
|
"removed_canonical_spelling",
|
|
29459
30426
|
"removed_compatibility_spelling",
|
|
@@ -29500,6 +30467,7 @@
|
|
|
29500
30467
|
"type_duplicate",
|
|
29501
30468
|
"type_invalid",
|
|
29502
30469
|
"undeclared_observation",
|
|
30470
|
+
"unexpected_refusal_probe",
|
|
29503
30471
|
"unknown_command",
|
|
29504
30472
|
"unknown_context_intent",
|
|
29505
30473
|
"unknown_error",
|