@unbrained/pm-cli 2026.8.13 → 2026.8.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/CHANGELOG.md +165 -113
  3. package/dist/cli/commander-usage.js +17 -4
  4. package/dist/cli/error-guidance.d.ts +2 -0
  5. package/dist/cli/error-guidance.js +52 -25
  6. package/dist/cli/main.js +40 -3
  7. package/dist/cli/register-mutation.js +4 -2
  8. package/dist/cli/register-operations.js +5 -5
  9. package/dist/cli-bundle/bundle-manifest.json +146 -178
  10. package/dist/cli-bundle/chunks/{chunk-F7FJYGK3.js → chunk-24GAV7XL.js} +2 -2
  11. package/dist/cli-bundle/chunks/chunk-AIM6VT2N.js +13 -0
  12. package/dist/cli-bundle/chunks/chunk-DSWDLTDR.js +197 -0
  13. package/dist/cli-bundle/chunks/{chunk-Q47C67TQ.js → chunk-J42EGKDK.js} +2 -2
  14. package/dist/cli-bundle/chunks/chunk-KIEGUBYQ.js +2 -0
  15. package/dist/cli-bundle/chunks/{chunk-3ZMOWAFM.js → chunk-KLKYLSDX.js} +2 -2
  16. package/dist/cli-bundle/chunks/{chunk-QGTUPEU5.js → chunk-LJHOAVGI.js} +59 -59
  17. package/dist/cli-bundle/chunks/chunk-MEM2ZS3O.js +5 -0
  18. package/dist/cli-bundle/chunks/chunk-QHPCJWEJ.js +35 -0
  19. package/dist/cli-bundle/chunks/{chunk-YLBAPY22.js → chunk-WLPDLNEZ.js} +2 -2
  20. package/dist/cli-bundle/chunks/{register-list-query-4HIZ7EA3.js → register-list-query-CT3LFDDN.js} +2 -2
  21. package/dist/cli-bundle/chunks/{register-mutation-W64FZ5HN.js → register-mutation-NWEVA5YS.js} +3 -3
  22. package/dist/cli-bundle/chunks/register-operations-AHIAG5KM.js +2 -0
  23. package/dist/cli-bundle/chunks/{register-setup-634MFRXU.js → register-setup-ZJZFVAKE.js} +2 -2
  24. package/dist/cli-bundle/focused-chunks/chunk-4X57RE4U.js +2 -0
  25. package/dist/cli-bundle/focused-chunks/chunk-6XKF3PGV.js +18 -0
  26. package/dist/cli-bundle/focused-chunks/chunk-7NJ4QYQ2.js +2 -0
  27. package/dist/cli-bundle/focused-chunks/{chunk-I75MANL7.js → chunk-EXZA4257.js} +2 -2
  28. package/dist/cli-bundle/focused-chunks/chunk-ITAUHSO6.js +50 -0
  29. package/dist/cli-bundle/focused-chunks/{chunk-OOYYKQWX.js → chunk-KLVUMNXJ.js} +2 -2
  30. package/dist/cli-bundle/focused-chunks/{chunk-2RI2FESN.js → chunk-KT5XMYSX.js} +2 -2
  31. package/dist/cli-bundle/focused-chunks/{chunk-E3AVJ655.js → chunk-KTKH4IMG.js} +2 -2
  32. package/dist/cli-bundle/focused-chunks/chunk-M67F5AIN.js +8 -0
  33. package/dist/cli-bundle/focused-chunks/{chunk-3DJSGWVB.js → chunk-NSPYTG6G.js} +2 -2
  34. package/dist/cli-bundle/focused-chunks/chunk-OKA6ELTL.js +2 -0
  35. package/dist/cli-bundle/focused-chunks/chunk-PUISBOPP.js +2 -0
  36. package/dist/cli-bundle/focused-chunks/chunk-QLNMCESQ.js +155 -0
  37. package/dist/cli-bundle/focused-chunks/{chunk-IIS2FRKL.js → chunk-SLKC6QLJ.js} +2 -2
  38. package/dist/cli-bundle/focused-chunks/chunk-U65UC4G3.js +2 -0
  39. package/dist/cli-bundle/focused-chunks/chunk-WTSER4WJ.js +16 -0
  40. package/dist/cli-bundle/focused-chunks/{chunk-2JP7W7GO.js → chunk-ZMFXQ7VF.js} +2 -2
  41. package/dist/cli-bundle/main.js +13 -13
  42. package/dist/cli-bundle/sdk-authoring.js +1 -1
  43. package/dist/cli-bundle/sdk-contracts.js +1 -1
  44. package/dist/cli-bundle/sdk-core.js +41 -41
  45. package/dist/cli-bundle/sdk-governance.js +1 -1
  46. package/dist/cli-bundle/sdk-graph.js +1 -1
  47. package/dist/cli-bundle/sdk-merge.js +110 -1
  48. package/dist/cli-bundle/sdk-query.js +1 -1
  49. package/dist/cli-bundle/sdk-runtime.js +1 -1
  50. package/dist/cli-bundle/sdk-testing.js +1 -1
  51. package/dist/cli-bundle/sdk.js +2 -2
  52. package/dist/core/diagnostics/remediation.js +7 -2
  53. package/dist/core/extensions/reserved-host-flags.js +3 -2
  54. package/dist/core/history/drift-scan.d.ts +6 -0
  55. package/dist/core/history/drift-scan.js +74 -50
  56. package/dist/core/history/replay.d.ts +14 -1
  57. package/dist/core/history/replay.js +45 -8
  58. package/dist/core/history/workspace-history.d.ts +59 -0
  59. package/dist/core/history/workspace-history.js +197 -10
  60. package/dist/core/output/output.d.ts +2 -0
  61. package/dist/core/output/output.js +13 -4
  62. package/dist/core/shared/command-types.d.ts +2 -0
  63. package/dist/core/shared/command-types.js +2 -2
  64. package/dist/core/shared/errors.d.ts +12 -0
  65. package/dist/core/shared/errors.js +2 -2
  66. package/dist/mcp/tool-definitions.js +9 -5
  67. package/dist/sdk/agent/refusal-reachability.d.ts +61 -0
  68. package/dist/sdk/agent/refusal-reachability.js +91 -3
  69. package/dist/sdk/cli-bootstrap.d.ts +2 -0
  70. package/dist/sdk/cli-bootstrap.js +7 -2
  71. package/dist/sdk/cli-contracts/completeness.js +3 -2
  72. package/dist/sdk/cli-contracts/flag-contracts.js +3 -2
  73. package/dist/sdk/cli-contracts/registration-helpers.js +3 -2
  74. package/dist/sdk/cli-contracts/runtime-contracts.d.ts +11 -1
  75. package/dist/sdk/cli-contracts/runtime-contracts.js +176 -65
  76. package/dist/sdk/cli-contracts/tool-parameter-tables.js +15 -5
  77. package/dist/sdk/cli-contracts/tool-schema.js +10 -3
  78. package/dist/sdk/cli-program.js +4 -3
  79. package/dist/sdk/context-relevance.js +12 -4
  80. package/dist/sdk/core.d.ts +2 -2
  81. package/dist/sdk/core.js +3 -3
  82. package/dist/sdk/generated/generated-error-code-catalog-part-1.js +26 -2
  83. package/dist/sdk/generated/generated-error-code-catalog-part-2.js +50 -26
  84. package/dist/sdk/governance/assurance-action.d.ts +7 -1
  85. package/dist/sdk/governance/assurance-action.js +7 -6
  86. package/dist/sdk/governance/assurance-mutation-error.d.ts +42 -1
  87. package/dist/sdk/governance/assurance-mutation-error.js +27 -3
  88. package/dist/sdk/governance/assurance-runtime.js +12 -11
  89. package/dist/sdk/governance/assurance.d.ts +9 -0
  90. package/dist/sdk/governance/assurance.js +82 -16
  91. package/dist/sdk/governance/extension-host-version.d.ts +25 -0
  92. package/dist/sdk/governance/extension-host-version.js +105 -0
  93. package/dist/sdk/governance/health.d.ts +32 -1
  94. package/dist/sdk/governance/health.js +132 -28
  95. package/dist/sdk/governance/provenance-health.d.ts +27 -0
  96. package/dist/sdk/governance/provenance-health.js +95 -3
  97. package/dist/sdk/governance/validate-history-drift.d.ts +7 -0
  98. package/dist/sdk/governance/validate-history-drift.js +68 -0
  99. package/dist/sdk/governance/validate.js +9 -52
  100. package/dist/sdk/governance.d.ts +6 -0
  101. package/dist/sdk/governance.js +8 -2
  102. package/dist/sdk/graph/assembly.d.ts +23 -0
  103. package/dist/sdk/graph/assembly.js +54 -2
  104. package/dist/sdk/graph/durable-cache.js +50 -20
  105. package/dist/sdk/graph/governance-contracts.d.ts +1 -1
  106. package/dist/sdk/graph/governance-contracts.js +4 -2
  107. package/dist/sdk/graph/governance.d.ts +21 -1
  108. package/dist/sdk/graph/governance.js +94 -32
  109. package/dist/sdk/graph/index.d.ts +2 -2
  110. package/dist/sdk/graph/index.js +4 -4
  111. package/dist/sdk/graph/mutation-advisory.js +15 -7
  112. package/dist/sdk/graph/remediation.js +12 -2
  113. package/dist/sdk/history-read.d.ts +8 -0
  114. package/dist/sdk/history-read.js +2 -2
  115. package/dist/sdk/history-repair.d.ts +13 -1
  116. package/dist/sdk/history-repair.js +62 -18
  117. package/dist/sdk/index.d.ts +1 -1
  118. package/dist/sdk/index.js +3 -3
  119. package/dist/sdk/linked-artifacts.js +16 -5
  120. package/dist/sdk/pagination.d.ts +15 -0
  121. package/dist/sdk/pagination.js +9 -5
  122. package/dist/sdk/query/context.d.ts +5 -1
  123. package/dist/sdk/query/context.js +14 -5
  124. package/dist/sdk/query/history.js +20 -3
  125. package/dist/sdk/read-output/continuation.d.ts +11 -0
  126. package/dist/sdk/read-output/continuation.js +132 -0
  127. package/dist/sdk/read-output-budget.d.ts +3 -1
  128. package/dist/sdk/read-output-budget.js +24 -13
  129. package/dist/sdk/read-output-contracts.d.ts +127 -7
  130. package/dist/sdk/read-output-contracts.js +381 -35
  131. package/dist/sdk/read-output-rows.d.ts +13 -0
  132. package/dist/sdk/read-output-rows.js +60 -2
  133. package/dist/sdk/runtime-input.js +4 -2
  134. package/dist/sdk/runtime-primitives.d.ts +1 -1
  135. package/dist/sdk/runtime-primitives.js +3 -3
  136. package/dist/sdk/runtime.js +5 -3
  137. package/docs/ASSURANCE.md +68 -2
  138. package/docs/COMMANDS.md +39 -4
  139. package/docs/READ_OUTPUT_CONTRACTS.md +85 -8
  140. package/docs/RELATIONSHIP_GRAPH.md +20 -5
  141. package/docs/RELEASING.md +42 -5
  142. package/docs/SDK.md +12 -5
  143. package/docs/SDK_CONTEXT_INTEGRITY.md +94 -1
  144. package/docs/TESTING.md +23 -1
  145. package/docs/performance/sdk-entrypoint-import-costs.md +20 -13
  146. package/marketplace.json +2 -2
  147. package/package.json +7 -7
  148. package/packages/pm-beads/extensions/beads/index.ts +1 -0
  149. package/packages/pm-beads/package.json +1 -1
  150. package/packages/pm-calendar/extensions/calendar/index.ts +1 -0
  151. package/packages/pm-calendar/package.json +1 -1
  152. package/packages/pm-command-kit/package.json +1 -1
  153. package/packages/pm-digital-twin/extensions/digital-twin/index.ts +7 -0
  154. package/packages/pm-digital-twin/package.json +1 -1
  155. package/packages/pm-governance-audit/extensions/governance-audit/index.ts +4 -0
  156. package/packages/pm-governance-audit/package.json +1 -1
  157. package/packages/pm-guide-shell/extensions/guide-shell/index.ts +5 -0
  158. package/packages/pm-guide-shell/package.json +1 -1
  159. package/packages/pm-kanban/package.json +1 -1
  160. package/packages/pm-lifecycle-hooks/package.json +1 -1
  161. package/packages/pm-linked-test-adapters/extensions/linked-test-adapters/index.ts +6 -0
  162. package/packages/pm-linked-test-adapters/package.json +1 -1
  163. package/packages/pm-search-advanced/extensions/search-advanced/index.ts +2 -0
  164. package/packages/pm-search-advanced/package.json +1 -1
  165. package/packages/pm-templates/extensions/templates/index.ts +4 -0
  166. package/packages/pm-templates/package.json +1 -1
  167. package/packages/pm-todos/extensions/todos/index.ts +2 -0
  168. package/packages/pm-todos/package.json +1 -1
  169. package/packages/pm-vcs/extensions/vcs/index.ts +7 -0
  170. package/packages/pm-vcs/package.json +1 -1
  171. package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
  172. package/plugins/pm-codex/.codex-plugin/plugin.json +1 -1
  173. package/scripts/bundle-cli.mjs +17 -4
  174. package/sdk/public-surface.json +1283 -157
  175. package/dist/cli-bundle/chunks/chunk-DEDU3DG7.js +0 -196
  176. package/dist/cli-bundle/chunks/chunk-DL5M5J3V.js +0 -13
  177. package/dist/cli-bundle/chunks/chunk-HIUZVCMN.js +0 -5
  178. package/dist/cli-bundle/chunks/chunk-IMGIN7R6.js +0 -2
  179. package/dist/cli-bundle/chunks/chunk-TF3TPKPR.js +0 -34
  180. package/dist/cli-bundle/chunks/register-operations-C44ET7R5.js +0 -2
  181. package/dist/cli-bundle/focused-chunks/chunk-27N23W6M.js +0 -31
  182. package/dist/cli-bundle/focused-chunks/chunk-3BNVU6LC.js +0 -8
  183. package/dist/cli-bundle/focused-chunks/chunk-6MLIRBLV.js +0 -5
  184. package/dist/cli-bundle/focused-chunks/chunk-6XYLENDV.js +0 -155
  185. package/dist/cli-bundle/focused-chunks/chunk-CP4K4WFS.js +0 -2
  186. package/dist/cli-bundle/focused-chunks/chunk-EBTNSFYE.js +0 -2
  187. package/dist/cli-bundle/focused-chunks/chunk-HC2OL2H2.js +0 -2
  188. package/dist/cli-bundle/focused-chunks/chunk-NFHFZH2Z.js +0 -2
  189. package/dist/cli-bundle/focused-chunks/chunk-OGC4XSBC.js +0 -17
  190. package/dist/cli-bundle/focused-chunks/chunk-PKPOZXLL.js +0 -2
  191. package/dist/cli-bundle/focused-chunks/chunk-QDZUABWL.js +0 -2
  192. package/dist/cli-bundle/focused-chunks/chunk-QQX5TDFT.js +0 -16
  193. package/dist/cli-bundle/focused-chunks/chunk-TEZIXMTH.js +0 -2
  194. package/dist/cli-bundle/focused-chunks/chunk-WEH6NSL6.js +0 -18
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "aggregate_completeness": {
3
- "covered_symbols": 1506,
3
+ "covered_symbols": 1613,
4
4
  "excluded": [
5
5
  {
6
6
  "name": "_testOnlyCliContracts",
@@ -8,7 +8,7 @@
8
8
  }
9
9
  ],
10
10
  "missing": [],
11
- "required_symbols": 1507
11
+ "required_symbols": 1614
12
12
  },
13
13
  "breaking_acknowledgements": [
14
14
  {
@@ -448,6 +448,168 @@
448
448
  ],
449
449
  "package_version": "2026.8.12",
450
450
  "reason": "Source-derived finding-code type replaces an identical handwritten union; the accepted values and runtime behavior are unchanged."
451
+ },
452
+ {
453
+ "changes": [
454
+ "signature ./sdk:HistoryVerificationResult",
455
+ "signature ./sdk:RelationshipAuditDelta",
456
+ "signature ./sdk:RelationshipAuditFinding",
457
+ "signature ./sdk:RelationshipCoverageProfile",
458
+ "signature ./sdk:WorkspaceRelationshipAssembly",
459
+ "signature ./sdk/graph:RelationshipAuditDelta",
460
+ "signature ./sdk/graph:RelationshipAuditFinding",
461
+ "signature ./sdk/graph:RelationshipCoverageProfile",
462
+ "signature ./sdk/graph:WorkspaceRelationshipAssembly"
463
+ ],
464
+ "package_version": "2026.8.13",
465
+ "reason": "pm-dwj33e and pm-h06944: additive optional history-agreement and graph-governance fields; existing inputs and legacy snapshots remain accepted"
466
+ },
467
+ {
468
+ "changes": [
469
+ "signature ./sdk:PM_READ_OUTPUT_SURFACES",
470
+ "signature ./sdk:PmReadOutputOptions",
471
+ "signature ./sdk:PmReadOutputReceipt",
472
+ "signature ./sdk:PmResolvedReadOutputDimensions",
473
+ "signature ./sdk/contracts:PM_READ_OUTPUT_SURFACES",
474
+ "signature ./sdk/contracts:PmReadOutputOptions",
475
+ "signature ./sdk/contracts:PmReadOutputReceipt",
476
+ "signature ./sdk/contracts:PmResolvedReadOutputDimensions",
477
+ "signature ./sdk/core:PmReadOutputOptions",
478
+ "signature ./sdk/core:PmReadOutputReceipt",
479
+ "signature ./sdk/runtime:PmReadOutputOptions"
480
+ ],
481
+ "package_version": "2026.8.13",
482
+ "reason": "Intentional SDK contract widening: default output budgets, explicit unbounded opt-out, and assurance/comments-audit read surfaces"
483
+ },
484
+ {
485
+ "changes": [
486
+ "signature ./sdk:PmReadOutputLegacyAlias",
487
+ "signature ./sdk:PmReadOutputReceipt",
488
+ "signature ./sdk:PmReadOutputResult",
489
+ "signature ./sdk/contracts:PmReadOutputLegacyAlias",
490
+ "signature ./sdk/contracts:PmReadOutputReceipt",
491
+ "signature ./sdk/contracts:PmReadOutputResult",
492
+ "signature ./sdk/core:PmReadOutputLegacyAlias",
493
+ "signature ./sdk/core:PmReadOutputReceipt",
494
+ "signature ./sdk/core:PmReadOutputResult",
495
+ "signature ./sdk/runtime:PmReadOutputResult"
496
+ ],
497
+ "package_version": "2026.8.13",
498
+ "reason": "Additive optional read-output receipts and explicit alias semantics for executable recovery contracts"
499
+ },
500
+ {
501
+ "changes": [
502
+ "signature ./sdk:ContractsResult",
503
+ "signature ./sdk:HealthResult",
504
+ "signature ./sdk/governance:HealthResult",
505
+ "signature ./sdk/runtime:ContractsResult",
506
+ "signature ./sdk/runtime:HealthResult"
507
+ ],
508
+ "package_version": "2026.8.14",
509
+ "reason": "Additive optional health and assurance contract fields; no existing member was removed or narrowed."
510
+ },
511
+ {
512
+ "changes": [
513
+ "signature ./sdk:PmReadOutputBudgetExceeded",
514
+ "signature ./sdk:PmReadOutputTruncationDisclosure",
515
+ "signature ./sdk/contracts:PmReadOutputBudgetExceeded",
516
+ "signature ./sdk/contracts:PmReadOutputTruncationDisclosure",
517
+ "signature ./sdk/core:PmReadOutputBudgetExceeded",
518
+ "signature ./sdk/runtime:PmReadOutputBudgetExceeded"
519
+ ],
520
+ "package_version": "2026.8.14",
521
+ "reason": "Additive optional health, assurance, and read-recovery contract fields; no existing member was removed or narrowed."
522
+ },
523
+ {
524
+ "changes": [
525
+ "signature ./sdk:AssuranceGateVerdict",
526
+ "signature ./sdk:BootstrapGlobalOptions",
527
+ "signature ./sdk:ContextRankingSummary",
528
+ "signature ./sdk:GlobalOptions",
529
+ "signature ./sdk:PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
530
+ "signature ./sdk:PmCliErrorRecoveryPayload",
531
+ "signature ./sdk:PmReadOutputOptions",
532
+ "signature ./sdk:PmReadOutputResultFor",
533
+ "signature ./sdk:PmReadOutputSurfaceContract",
534
+ "signature ./sdk:PmReadOutputTruncationDisclosure",
535
+ "signature ./sdk:toContextRankingSummary",
536
+ "signature ./sdk/contracts:PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
537
+ "signature ./sdk/contracts:PmReadOutputOptions",
538
+ "signature ./sdk/contracts:PmReadOutputResultFor",
539
+ "signature ./sdk/contracts:PmReadOutputSurfaceContract",
540
+ "signature ./sdk/contracts:PmReadOutputTruncationDisclosure",
541
+ "signature ./sdk/core:PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
542
+ "signature ./sdk/core:PmReadOutputOptions",
543
+ "signature ./sdk/core:PmReadOutputResultFor",
544
+ "signature ./sdk/core:PmReadOutputSurfaceContract",
545
+ "signature ./sdk/governance:AssuranceGateVerdict",
546
+ "signature ./sdk/query:ContextRankingSummary",
547
+ "signature ./sdk/query:toContextRankingSummary",
548
+ "signature ./sdk/runtime:GlobalOptions",
549
+ "signature ./sdk/runtime:PmReadOutputOptions",
550
+ "signature ./sdk/runtime:PmReadOutputResultFor",
551
+ "signature ./sdk/runtime:PmReadOutputSurfaceContract"
552
+ ],
553
+ "package_version": "2026.8.14",
554
+ "reason": "Extend read, assurance, ranking, and recovery contracts with bounded continuation and explicit completeness metadata"
555
+ },
556
+ {
557
+ "changes": [
558
+ "signature ./sdk:PmReadOutputTruncationDisclosure",
559
+ "signature ./sdk/contracts:PmReadOutputTruncationDisclosure"
560
+ ],
561
+ "package_version": "2026.8.14",
562
+ "reason": "Extend read, assurance, ranking, and recovery contracts with bounded continuation and explicit completeness metadata"
563
+ },
564
+ {
565
+ "changes": [
566
+ "signature ./sdk:PmReadOutputTruncationDisclosure",
567
+ "signature ./sdk/contracts:PmReadOutputTruncationDisclosure"
568
+ ],
569
+ "package_version": "2026.8.14",
570
+ "reason": "Consolidate cursor recovery into one value with explicit CLI SDK and MCP bindings"
571
+ },
572
+ {
573
+ "changes": [
574
+ "signature ./sdk:AssuranceEvaluationRefusalError",
575
+ "signature ./sdk:PmCliErrorContext",
576
+ "signature ./sdk:runAssuranceAction",
577
+ "signature ./sdk/governance:AssuranceEvaluationRefusalError",
578
+ "signature ./sdk/governance:runAssuranceAction"
579
+ ],
580
+ "package_version": "2026.8.14",
581
+ "reason": "Additive host-provider runtime options and typed assurance refusal location context for pm-4ok4ex and pm-xmmafu"
582
+ },
583
+ {
584
+ "changes": [
585
+ "signature ./sdk:AssuranceSourceResolutionError",
586
+ "signature ./sdk:PmRecoveryReferenceFinding",
587
+ "signature ./sdk/governance:AssuranceSourceResolutionError"
588
+ ],
589
+ "package_version": "2026.8.14",
590
+ "reason": "Expose duplicate-obligation refusal and innermost source-owner metadata so recursive assurance cannot overstate coverage or misattribute failures"
591
+ },
592
+ {
593
+ "changes": [
594
+ "signature ./sdk:AssuranceSourceResolutionError",
595
+ "signature ./sdk/governance:AssuranceSourceResolutionError"
596
+ ],
597
+ "package_version": "2026.8.14",
598
+ "reason": "AssuranceSourceResolutionContext names the existing structurally identical constructor object contract without changing runtime behavior, parameter order, or assignability"
599
+ },
600
+ {
601
+ "changes": [
602
+ "signature ./sdk:_testOnlyHealthCommand",
603
+ "signature ./sdk:HealthResult",
604
+ "signature ./sdk:HistoryRepairAllResult",
605
+ "signature ./sdk:HistoryRepairCommandOptions",
606
+ "signature ./sdk:HistoryRepairResult",
607
+ "signature ./sdk/governance:_testOnlyHealthCommand",
608
+ "signature ./sdk/governance:HealthResult",
609
+ "signature ./sdk/runtime:HealthResult"
610
+ ],
611
+ "package_version": "2026.8.14",
612
+ "reason": "Add self-indexing health verdicts and version-stable history repair receipts"
451
613
  }
452
614
  ],
453
615
  "entrypoints": {
@@ -482,7 +644,7 @@
482
644
  "classification": "supported",
483
645
  "kind": "value",
484
646
  "name": "_testOnlyHealthCommand",
485
- "signature": "{ buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; 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; }"
647
+ "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; }"
486
648
  },
487
649
  {
488
650
  "classification": "advanced_export",
@@ -539,7 +701,7 @@
539
701
  "signature": "{ applyValidateFix: typeof applyValidateFix; applyValidateFixes: typeof applyValidateFixes; attachValidateFixHints: typeof attachValidateFixHints; buildCommandReferencesCheck: typeof buildCommandReferencesCheck; buildDependencyReferencesCheck: typeof buildDependencyReferencesCheck; buildCloseReasonBackfillRows: typeof buildCloseReasonBackfillRows; buildFilesCheck: typeof buildFilesCheck; buildLifecycleCheck: typeof buildLifecycleCheck; buildLifecycleDependencyGraph: typeof buildLifecycleDependencyGraph; buildLifecycleParentGraph: typeof buildLifecycleParentGraph; buildEstimateBackfillRows: typeof buildEstimateBackfillRows; buildMetadataCounts: typeof buildMetadataCounts; buildMissingFieldOccurrences: typeof buildMissingFieldOccurrences; buildOrphanedPathRows: typeof buildOrphanedPathRows; classifyOrphanedPath: typeof classifyOrphanedPath; collectDefaultProjectFileCandidates: typeof collectDefaultProjectFileCandidates; collectTrackedGitFileCandidates: typeof collectTrackedGitFileCandidates; detectLifecycleDependencyCycles: typeof detectLifecycleDependencyCycles; detectLifecycleParentCycles: typeof detectLifecycleParentCycles; escapeRegExp: typeof escapeRegExp; extractItemIds: typeof extractItemIds; findLifecycleDependencyCycleComponents: typeof findLifecycleDependencyCycleComponents; isMetadataFieldMissing: typeof isMetadataFieldMissing; linkedArtifactPathExceedsFilesystemLimits: typeof linkedArtifactPathExceedsFilesystemLimits; listFilesRecursive: typeof listFilesRecursive; resolveDependencyCycleSeverity: typeof resolveDependencyCycleSeverity; resolveParentCycleSeverity: typeof resolveParentCycleSeverity; resolveFileScanMode: typeof resolveFileScanMode; resolveLifecycleDependencyCycleSamplePath: typeof resolveLifecycleDependencyCycleSamplePath; resolveRequestedChecks: typeof resolveRequestedChecks; resolveValidateMetadataProfile: typeof resolveValidateMetadataProfile; resolveWorkspaceRoot: typeof resolveWorkspaceRoot; sharedDirectoryPrefixLength: typeof sharedDirectoryPrefixLength; summarizeOrphanedPathRows: typeof summarizeOrphanedPathRows; summarizeDuplicateIssueCodes: typeof summarizeDuplicateIssueCodes; toMeaningfulString: typeof toMeaningfulString; }"
540
702
  },
541
703
  {
542
- "classification": "advanced_export",
704
+ "classification": "supported",
543
705
  "kind": "function",
544
706
  "name": "acceptAssuranceProposals",
545
707
  "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>"
@@ -983,7 +1145,7 @@
983
1145
  "signature": "(baseCriteria: readonly string[], add: readonly string[] | undefined, remove: readonly string[] | undefined) => { criteria: string[]; unmatchedRemovals: string[]; } | calls: (baseCriteria: readonly string[], add: readonly string[] | undefined, remove: readonly string[] | undefined) => { criteria: string[]; unmatchedRemovals: string[]; }"
984
1146
  },
985
1147
  {
986
- "classification": "advanced_export",
1148
+ "classification": "supported",
987
1149
  "kind": "function",
988
1150
  "name": "applyAssurancePreset",
989
1151
  "signature": "(pmRoot: string, id: AssurancePresetId, ownerItemId: string, options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt> | calls: (pmRoot: string, id: AssurancePresetId, ownerItemId: string, options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt>"
@@ -1036,6 +1198,12 @@
1036
1198
  "name": "applyReadOutputDimensions",
1037
1199
  "signature": "<Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => PmReadOutputResult<Result> | calls: <Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => PmReadOutputResult<Result>"
1038
1200
  },
1201
+ {
1202
+ "classification": "contract_data",
1203
+ "kind": "function",
1204
+ "name": "applyReadOutputIncludeModes",
1205
+ "signature": "(command: string, includeValue: unknown, commandOptions: Record<string, unknown>) => { selectors: string[]; modes: string[]; } | calls: (command: string, includeValue: unknown, commandOptions: Record<string, unknown>) => { selectors: string[]; modes: string[]; }"
1206
+ },
1039
1207
  {
1040
1208
  "classification": "supported",
1041
1209
  "kind": "function",
@@ -1307,19 +1475,19 @@
1307
1475
  "signature": "(adapter: RelationshipGraphAdapter, options?: { workspace?: string; }) => Promise<RelationshipGraphAdapterConformanceReport> | calls: (adapter: RelationshipGraphAdapter, options?: { workspace?: string; }) => Promise<RelationshipGraphAdapterConformanceReport>"
1308
1476
  },
1309
1477
  {
1310
- "classification": "advanced_export",
1478
+ "classification": "supported",
1311
1479
  "kind": "value",
1312
1480
  "name": "ASSURANCE_ACTIONS",
1313
1481
  "signature": "readonly [\"list\", \"show\", \"put\", \"remove\", \"run\", \"verdicts\", \"presets\", \"apply\", \"derive\", \"promote\"]"
1314
1482
  },
1315
1483
  {
1316
- "classification": "advanced_export",
1484
+ "classification": "supported",
1317
1485
  "kind": "value",
1318
1486
  "name": "ASSURANCE_DECLARATION_KINDS",
1319
1487
  "signature": "readonly [\"measurement\", \"assertion\", \"gate\"]"
1320
1488
  },
1321
1489
  {
1322
- "classification": "advanced_export",
1490
+ "classification": "supported",
1323
1491
  "kind": "value",
1324
1492
  "name": "ASSURANCE_DOCUMENT_VERSION",
1325
1493
  "signature": "1"
@@ -1331,19 +1499,25 @@
1331
1499
  "signature": "CliFlagContract[]"
1332
1500
  },
1333
1501
  {
1334
- "classification": "advanced_export",
1502
+ "classification": "supported",
1335
1503
  "kind": "value",
1336
1504
  "name": "ASSURANCE_GATE_TRIGGERS",
1337
1505
  "signature": "readonly [\"pre-commit\", \"pre-push\", \"pre-merge\", \"ci\", \"pre-release\", \"post-release\", \"scheduled\", \"on-claim\", \"on-close\"]"
1338
1506
  },
1339
1507
  {
1340
- "classification": "advanced_export",
1508
+ "classification": "supported",
1509
+ "kind": "value",
1510
+ "name": "ASSURANCE_MEASUREMENT_SOURCE_KINDS",
1511
+ "signature": "readonly [\"items\", \"dependency_kind\", \"graph\", \"validate\", \"health\", \"history\", \"links\", \"provider\", \"derived\"]"
1512
+ },
1513
+ {
1514
+ "classification": "supported",
1341
1515
  "kind": "value",
1342
1516
  "name": "ASSURANCE_PRESET_IDS",
1343
1517
  "signature": "readonly [\"software-delivery\", \"research\", \"agent-evaluation\", \"operations\"]"
1344
1518
  },
1345
1519
  {
1346
- "classification": "advanced_export",
1520
+ "classification": "supported",
1347
1521
  "kind": "type",
1348
1522
  "name": "AssuranceAction",
1349
1523
  "signature": "export type AssuranceAction = (typeof ASSURANCE_ACTIONS)[number];"
@@ -1361,283 +1535,319 @@
1361
1535
  "signature": "export type AssuranceActionResult = AssuranceDeclaration | AssuranceMutationReceipt | AssuranceGateVerdict | AssuranceBundleMutationReceipt | AssurancePreset | { items: AssuranceDerivedProposal[]; count: number; applied?: AssuranceBundleMutationReceipt; } | { items: Array<{ id: AssurancePresetId; title: string; description: string; }>; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; } | { id: string; } | { items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; } | { items: AssuranceGateVerdict[]; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; };"
1362
1536
  },
1363
1537
  {
1364
- "classification": "advanced_export",
1538
+ "classification": "supported",
1539
+ "kind": "interface",
1540
+ "name": "AssuranceActionRuntimeOptions",
1541
+ "signature": "export interface AssuranceActionRuntimeOptions { workspace?: Omit<CreateAssuranceWorkspaceContextOptions, \"tree_id\" | \"trigger\">; }"
1542
+ },
1543
+ {
1544
+ "classification": "supported",
1365
1545
  "kind": "interface",
1366
1546
  "name": "AssuranceArithmeticExpression",
1367
1547
  "signature": "export interface AssuranceArithmeticExpression { operator: \"add\" | \"subtract\" | \"multiply\" | \"divide\" | \"min\" | \"max\"; operands: AssuranceDerivedExpression[]; }"
1368
1548
  },
1369
1549
  {
1370
- "classification": "advanced_export",
1550
+ "classification": "supported",
1371
1551
  "kind": "interface",
1372
1552
  "name": "AssuranceAssertionDefinition",
1373
1553
  "signature": "export interface AssuranceAssertionDefinition { id: string; measurement_id: string; owner_item_id: string; scope: AssuranceScope; ceiling?: number; floor?: number; equals?: AssuranceValue; zero?: true; monotone_nondecreasing?: number; monotone_nonincreasing?: number; subset_of?: string[]; lifetime?: AssuranceLifetime; retire_reason?: string; enforcement: AssuranceEnforcement; negative_control: AssuranceNegativeControl; authorization_decision?: string; }"
1374
1554
  },
1375
1555
  {
1376
- "classification": "advanced_export",
1556
+ "classification": "supported",
1377
1557
  "kind": "function",
1378
1558
  "name": "assuranceAssertionUpdateIsLoosening",
1379
1559
  "signature": "(before: AssuranceAssertionDefinition, after: AssuranceAssertionDefinition) => boolean | calls: (before: AssuranceAssertionDefinition, after: AssuranceAssertionDefinition) => boolean"
1380
1560
  },
1381
1561
  {
1382
- "classification": "advanced_export",
1562
+ "classification": "supported",
1383
1563
  "kind": "interface",
1384
1564
  "name": "AssuranceAssertionVerdict",
1385
1565
  "signature": "export interface AssuranceAssertionVerdict { assertion_id: string; measurement_id: string; measurement_definition_fingerprint: string; scope: AssuranceScope; population_size: number; observed: AssuranceValue; bound: AssuranceBound; distance: number | null; verdict: \"pass\" | \"fail\" | \"retired\"; enforcement: AssuranceEnforcement; negative_control_proven: boolean; cost: AssuranceMeasurementCost; contributors: string[]; }"
1386
1566
  },
1387
1567
  {
1388
- "classification": "advanced_export",
1568
+ "classification": "supported",
1389
1569
  "kind": "interface",
1390
1570
  "name": "AssuranceBound",
1391
1571
  "signature": "export interface AssuranceBound { polarity: \"ceiling\" | \"floor\" | \"equals\" | \"zero\" | \"monotone_nondecreasing\" | \"monotone_nonincreasing\" | \"subset_of\"; value: AssuranceValue; }"
1392
1572
  },
1393
1573
  {
1394
- "classification": "advanced_export",
1574
+ "classification": "supported",
1395
1575
  "kind": "interface",
1396
1576
  "name": "AssuranceBundleMutationReceipt",
1397
1577
  "signature": "export interface AssuranceBundleMutationReceipt { changed: boolean; created_ids: string[]; unchanged_ids: string[]; }"
1398
1578
  },
1399
1579
  {
1400
- "classification": "advanced_export",
1580
+ "classification": "supported",
1401
1581
  "kind": "type",
1402
1582
  "name": "AssuranceDeclaration",
1403
1583
  "signature": "export type AssuranceDeclaration = AssuranceMeasurementDefinition | AssuranceAssertionDefinition | AssuranceGateDefinition;"
1404
1584
  },
1405
1585
  {
1406
- "classification": "advanced_export",
1586
+ "classification": "supported",
1407
1587
  "kind": "interface",
1408
1588
  "name": "AssuranceDeclarationBundle",
1409
1589
  "signature": "export interface AssuranceDeclarationBundle { measurements: AssuranceMeasurementDefinition[]; assertions: AssuranceAssertionDefinition[]; gates: AssuranceGateDefinition[]; }"
1410
1590
  },
1411
1591
  {
1412
- "classification": "advanced_export",
1592
+ "classification": "supported",
1413
1593
  "kind": "type",
1414
1594
  "name": "AssuranceDeclarationKind",
1415
1595
  "signature": "export type AssuranceDeclarationKind = \"measurement\" | \"assertion\" | \"gate\";"
1416
1596
  },
1417
1597
  {
1418
- "classification": "advanced_export",
1598
+ "classification": "supported",
1419
1599
  "kind": "interface",
1420
1600
  "name": "AssuranceDependencyKindSource",
1421
1601
  "signature": "export interface AssuranceDependencyKindSource { kind: \"dependency_kind\"; dependency_kind: string; }"
1422
1602
  },
1423
1603
  {
1424
- "classification": "advanced_export",
1604
+ "classification": "supported",
1425
1605
  "kind": "interface",
1426
1606
  "name": "AssuranceDependencyRecord",
1427
1607
  "signature": "export interface AssuranceDependencyRecord { id: string; kind: string; }"
1428
1608
  },
1429
1609
  {
1430
- "classification": "advanced_export",
1610
+ "classification": "supported",
1431
1611
  "kind": "type",
1432
1612
  "name": "AssuranceDerivedExpression",
1433
1613
  "signature": "export type AssuranceDerivedExpression = AssuranceMeasurementReference | AssuranceLiteralExpression | AssuranceArithmeticExpression;"
1434
1614
  },
1435
1615
  {
1436
- "classification": "advanced_export",
1616
+ "classification": "supported",
1437
1617
  "kind": "interface",
1438
1618
  "name": "AssuranceDerivedProposal",
1439
1619
  "signature": "export interface AssuranceDerivedProposal { id: string; population_size: number; scope: AssuranceScope; observed: number; declarations: AssuranceDeclarationBundle; }"
1440
1620
  },
1441
1621
  {
1442
- "classification": "advanced_export",
1622
+ "classification": "supported",
1443
1623
  "kind": "interface",
1444
1624
  "name": "AssuranceDerivedSource",
1445
1625
  "signature": "export interface AssuranceDerivedSource { kind: \"derived\"; expression: AssuranceDerivedExpression; }"
1446
1626
  },
1447
1627
  {
1448
- "classification": "advanced_export",
1628
+ "classification": "supported",
1449
1629
  "kind": "interface",
1450
1630
  "name": "AssuranceDocument",
1451
1631
  "signature": "export interface AssuranceDocument { version: typeof ASSURANCE_DOCUMENT_VERSION; measurements: AssuranceMeasurementDefinition[]; assertions: AssuranceAssertionDefinition[]; gates: AssuranceGateDefinition[]; }"
1452
1632
  },
1453
1633
  {
1454
- "classification": "advanced_export",
1634
+ "classification": "supported",
1455
1635
  "kind": "type",
1456
1636
  "name": "AssuranceEnforcement",
1457
1637
  "signature": "export type AssuranceEnforcement = \"block\" | \"warn\" | \"observe\";"
1458
1638
  },
1459
1639
  {
1460
- "classification": "advanced_export",
1640
+ "classification": "supported",
1461
1641
  "kind": "interface",
1462
1642
  "name": "AssuranceEvaluationContext",
1463
1643
  "signature": "export interface AssuranceEvaluationContext { tree_id: string; items: AssuranceItemRecord[]; history: AssuranceHistoryRecord[]; terminal_statuses?: string[]; provider_capabilities?: Readonly<Record<string, { cost_class: AssuranceProviderCostClass; network: boolean; }>>; external: (source: AssuranceGraphSource | AssuranceValidateSource | AssuranceHealthSource | AssuranceProviderSource) => Promise<AssuranceExternalMeasurementResult>; }"
1464
1644
  },
1465
1645
  {
1466
- "classification": "advanced_export",
1646
+ "classification": "supported",
1647
+ "kind": "interface",
1648
+ "name": "AssuranceEvaluationRefusalContext",
1649
+ "signature": "export interface AssuranceEvaluationRefusalContext { gate_id?: string; assertion_id?: string; measurement_id?: string; source_kind?: string; field?: string; check?: string; }"
1650
+ },
1651
+ {
1652
+ "classification": "supported",
1653
+ "kind": "class",
1654
+ "name": "AssuranceEvaluationRefusalError",
1655
+ "signature": "export declare class AssuranceEvaluationRefusalError extends TypeError { readonly context: AssuranceEvaluationRefusalContext; constructor(message: string, context?: AssuranceEvaluationRefusalContext); }"
1656
+ },
1657
+ {
1658
+ "classification": "supported",
1467
1659
  "kind": "interface",
1468
1660
  "name": "AssuranceExternalMeasurementResult",
1469
1661
  "signature": "export interface AssuranceExternalMeasurementResult { value: AssuranceValue; population_size: number; cost: number; contributors?: string[]; }"
1470
1662
  },
1471
1663
  {
1472
- "classification": "advanced_export",
1664
+ "classification": "supported",
1473
1665
  "kind": "interface",
1474
1666
  "name": "AssuranceGateDefinition",
1475
1667
  "signature": "export interface AssuranceGateDefinition { id: string; assertion_ids: string[]; triggers: AssuranceGateTrigger[]; description?: string; provider_policy?: { allowed_providers: string[]; triggers: Partial<Record<AssuranceGateTrigger, { max_cost_class: AssuranceProviderCostClass; allow_network: boolean; }>>; }; }"
1476
1668
  },
1477
1669
  {
1478
- "classification": "advanced_export",
1670
+ "classification": "supported",
1479
1671
  "kind": "type",
1480
1672
  "name": "AssuranceGateTrigger",
1481
1673
  "signature": "export type AssuranceGateTrigger = (typeof ASSURANCE_GATE_TRIGGERS)[number];"
1482
1674
  },
1483
1675
  {
1484
- "classification": "advanced_export",
1676
+ "classification": "supported",
1485
1677
  "kind": "interface",
1486
1678
  "name": "AssuranceGateVerdict",
1487
- "signature": "export interface AssuranceGateVerdict { gate_id: string; tree_id: string; trigger: AssuranceGateTrigger; dry_run: boolean; evaluated_at: string; verdict: \"pass\" | \"warn\" | \"block\"; exit_code: 0 | 1; assertions: AssuranceAssertionVerdict[]; cost: AssuranceMeasurementCost; }"
1679
+ "signature": "export interface AssuranceGateVerdict { gate_id: string; tree_id: string; trigger: AssuranceGateTrigger; dry_run: boolean; evaluated_at: string; verdict: \"pass\" | \"warn\" | \"block\"; exit_code: 0 | 1; assertions: AssuranceAssertionVerdict[]; assertions_total: number; row_contract: { row_keys: [ \"assertions\" ]; jq_selector: \".assertions[]\"; }; cost: AssuranceMeasurementCost; }"
1488
1680
  },
1489
1681
  {
1490
- "classification": "advanced_export",
1682
+ "classification": "supported",
1491
1683
  "kind": "interface",
1492
1684
  "name": "AssuranceGraphSource",
1493
1685
  "signature": "export interface AssuranceGraphSource { kind: \"graph\"; operation: string; field: string; parameters?: Record<string, string | number | boolean>; }"
1494
1686
  },
1495
1687
  {
1496
- "classification": "advanced_export",
1688
+ "classification": "supported",
1497
1689
  "kind": "interface",
1498
1690
  "name": "AssuranceHealthSource",
1499
1691
  "signature": "export interface AssuranceHealthSource { kind: \"health\"; check: string; field: string; }"
1500
1692
  },
1501
1693
  {
1502
- "classification": "advanced_export",
1694
+ "classification": "supported",
1503
1695
  "kind": "interface",
1504
1696
  "name": "AssuranceHistoryRecord",
1505
1697
  "signature": "export interface AssuranceHistoryRecord { op: string; author: string; agent_harness?: string; agent_model?: string; [key: string]: unknown; }"
1506
1698
  },
1507
1699
  {
1508
- "classification": "advanced_export",
1700
+ "classification": "supported",
1509
1701
  "kind": "interface",
1510
1702
  "name": "AssuranceHistorySource",
1511
1703
  "signature": "export interface AssuranceHistorySource { kind: \"history\"; op?: string; author?: string; harness?: string; model?: string; }"
1512
1704
  },
1513
1705
  {
1514
- "classification": "advanced_export",
1706
+ "classification": "supported",
1515
1707
  "kind": "interface",
1516
1708
  "name": "AssuranceItemRecord",
1517
1709
  "signature": "export interface AssuranceItemRecord { id: string; status: string; type: string; tags?: string[]; priority?: string | number; dependencies?: AssuranceDependencyRecord[]; files?: object[]; tests?: object[]; docs?: object[]; [key: string]: unknown; }"
1518
1710
  },
1519
1711
  {
1520
- "classification": "advanced_export",
1712
+ "classification": "supported",
1521
1713
  "kind": "interface",
1522
1714
  "name": "AssuranceItemsSource",
1523
1715
  "signature": "export interface AssuranceItemsSource { kind: \"items\"; statuses?: string[]; types?: string[]; tags?: string[]; field?: string; equals?: string | number | boolean | null; state?: \"present\" | \"missing\"; }"
1524
1716
  },
1525
1717
  {
1526
- "classification": "advanced_export",
1718
+ "classification": "supported",
1527
1719
  "kind": "type",
1528
1720
  "name": "AssuranceLifetime",
1529
1721
  "signature": "export type AssuranceLifetime = \"hold\" | \"retire\";"
1530
1722
  },
1531
1723
  {
1532
- "classification": "advanced_export",
1724
+ "classification": "supported",
1533
1725
  "kind": "interface",
1534
1726
  "name": "AssuranceLinksSource",
1535
1727
  "signature": "export interface AssuranceLinksSource { kind: \"links\"; link: \"files\" | \"tests\" | \"docs\"; state: \"present\" | \"missing\"; }"
1536
1728
  },
1537
1729
  {
1538
- "classification": "advanced_export",
1730
+ "classification": "supported",
1539
1731
  "kind": "interface",
1540
1732
  "name": "AssuranceLiteralExpression",
1541
1733
  "signature": "export interface AssuranceLiteralExpression { literal: number; }"
1542
1734
  },
1543
1735
  {
1544
- "classification": "advanced_export",
1736
+ "classification": "supported",
1545
1737
  "kind": "interface",
1546
1738
  "name": "AssuranceMeasurementCost",
1547
1739
  "signature": "export interface AssuranceMeasurementCost { units: number; items_scanned: number; history_entries: number; provider_calls: number; duration_ms: number; }"
1548
1740
  },
1549
1741
  {
1550
- "classification": "advanced_export",
1742
+ "classification": "supported",
1551
1743
  "kind": "interface",
1552
1744
  "name": "AssuranceMeasurementDefinition",
1553
1745
  "signature": "export interface AssuranceMeasurementDefinition { id: string; description?: string; source: AssuranceMeasurementSource; max_cost?: number; }"
1554
1746
  },
1555
1747
  {
1556
- "classification": "advanced_export",
1748
+ "classification": "supported",
1557
1749
  "kind": "interface",
1558
1750
  "name": "AssuranceMeasurementReference",
1559
1751
  "signature": "export interface AssuranceMeasurementReference { measurement: string; }"
1560
1752
  },
1561
1753
  {
1562
- "classification": "advanced_export",
1754
+ "classification": "supported",
1563
1755
  "kind": "interface",
1564
1756
  "name": "AssuranceMeasurementResult",
1565
1757
  "signature": "export interface AssuranceMeasurementResult { id: string; definition_fingerprint: string; value: AssuranceValue; population_size: number; cost: AssuranceMeasurementCost; contributors: string[]; }"
1566
1758
  },
1567
1759
  {
1568
- "classification": "advanced_export",
1760
+ "classification": "supported",
1569
1761
  "kind": "type",
1570
1762
  "name": "AssuranceMeasurementSource",
1571
1763
  "signature": "export type AssuranceMeasurementSource = AssuranceItemsSource | AssuranceDependencyKindSource | AssuranceGraphSource | AssuranceValidateSource | AssuranceHealthSource | AssuranceHistorySource | AssuranceLinksSource | AssuranceProviderSource | AssuranceDerivedSource;"
1572
1764
  },
1573
1765
  {
1574
- "classification": "advanced_export",
1766
+ "classification": "supported",
1575
1767
  "kind": "interface",
1576
1768
  "name": "AssuranceMutationOptions",
1577
1769
  "signature": "export interface AssuranceMutationOptions { author?: string; message?: string; authorized_decision_ids?: string[]; }"
1578
1770
  },
1579
1771
  {
1580
- "classification": "advanced_export",
1772
+ "classification": "supported",
1581
1773
  "kind": "interface",
1582
1774
  "name": "AssuranceMutationReceipt",
1583
1775
  "signature": "export interface AssuranceMutationReceipt { changed: boolean; action: \"created\" | \"updated\" | \"removed\"; kind: AssuranceDeclarationKind; id: string; }"
1584
1776
  },
1585
1777
  {
1586
- "classification": "advanced_export",
1778
+ "classification": "supported",
1779
+ "kind": "class",
1780
+ "name": "AssuranceMutationRefusalError",
1781
+ "signature": "export declare class AssuranceMutationRefusalError extends TypeError { constructor(message: string); }"
1782
+ },
1783
+ {
1784
+ "classification": "supported",
1587
1785
  "kind": "interface",
1588
1786
  "name": "AssuranceNegativeControl",
1589
1787
  "signature": "export interface AssuranceNegativeControl { cases: AssuranceNegativeControlCase[]; }"
1590
1788
  },
1591
1789
  {
1592
- "classification": "advanced_export",
1790
+ "classification": "supported",
1593
1791
  "kind": "interface",
1594
1792
  "name": "AssuranceNegativeControlCase",
1595
1793
  "signature": "export interface AssuranceNegativeControlCase { observed: AssuranceValue; expected: \"pass\" | \"fail\"; }"
1596
1794
  },
1597
1795
  {
1598
- "classification": "advanced_export",
1796
+ "classification": "supported",
1599
1797
  "kind": "interface",
1600
1798
  "name": "AssurancePreset",
1601
1799
  "signature": "export interface AssurancePreset { id: AssurancePresetId; title: string; description: string; declarations: AssuranceDeclarationBundle; }"
1602
1800
  },
1603
1801
  {
1604
- "classification": "advanced_export",
1802
+ "classification": "supported",
1605
1803
  "kind": "type",
1606
1804
  "name": "AssurancePresetId",
1607
1805
  "signature": "export type AssurancePresetId = (typeof ASSURANCE_PRESET_IDS)[number];"
1608
1806
  },
1609
1807
  {
1610
- "classification": "advanced_export",
1808
+ "classification": "supported",
1611
1809
  "kind": "type",
1612
1810
  "name": "AssuranceProviderCostClass",
1613
1811
  "signature": "export type AssuranceProviderCostClass = \"low\" | \"medium\" | \"high\";"
1614
1812
  },
1615
1813
  {
1616
- "classification": "advanced_export",
1814
+ "classification": "supported",
1617
1815
  "kind": "type",
1618
1816
  "name": "AssuranceProviderResolver",
1619
1817
  "signature": "export type AssuranceProviderResolver = (source: AssuranceProviderSource) => Promise<AssuranceExternalMeasurementResult>;"
1620
1818
  },
1621
1819
  {
1622
- "classification": "advanced_export",
1820
+ "classification": "supported",
1623
1821
  "kind": "interface",
1624
1822
  "name": "AssuranceProviderSource",
1625
1823
  "signature": "export interface AssuranceProviderSource { kind: \"provider\"; provider: string; key: string; parameters?: Record<string, string | number | boolean | null>; }"
1626
1824
  },
1627
1825
  {
1628
- "classification": "advanced_export",
1826
+ "classification": "supported",
1629
1827
  "kind": "type",
1630
1828
  "name": "AssuranceScope",
1631
1829
  "signature": "export type AssuranceScope = { kind: \"all\"; } | { kind: \"active\"; } | { kind: \"filter\"; measurement_id: string; };"
1632
1830
  },
1633
1831
  {
1634
- "classification": "advanced_export",
1832
+ "classification": "supported",
1833
+ "kind": "interface",
1834
+ "name": "AssuranceSourceResolutionContext",
1835
+ "signature": "export interface AssuranceSourceResolutionContext { measurement_id?: string; source_kind: string; field: string; check?: string; }"
1836
+ },
1837
+ {
1838
+ "classification": "supported",
1839
+ "kind": "class",
1840
+ "name": "AssuranceSourceResolutionError",
1841
+ "signature": "export declare class AssuranceSourceResolutionError extends TypeError { readonly measurement_id?: string; readonly source_kind: string; readonly field: string; readonly check?: string; constructor(message: string, context: AssuranceSourceResolutionContext); }"
1842
+ },
1843
+ {
1844
+ "classification": "supported",
1635
1845
  "kind": "interface",
1636
1846
  "name": "AssuranceValidateSource",
1637
1847
  "signature": "export interface AssuranceValidateSource { kind: \"validate\"; check: string; field: string; }"
1638
1848
  },
1639
1849
  {
1640
- "classification": "advanced_export",
1850
+ "classification": "supported",
1641
1851
  "kind": "type",
1642
1852
  "name": "AssuranceValue",
1643
1853
  "signature": "export type AssuranceValue = number | string[];"
@@ -1754,7 +1964,7 @@
1754
1964
  "classification": "advanced_export",
1755
1965
  "kind": "interface",
1756
1966
  "name": "BootstrapGlobalOptions",
1757
- "signature": "export interface BootstrapGlobalOptions { path?: string; noExtensions: boolean; noPager: boolean; json: boolean; quiet: boolean; lean: boolean; tokenAccounting: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputRowContract?: boolean; author?: string; authorMissingValue?: true; }"
1967
+ "signature": "export interface BootstrapGlobalOptions { path?: string; noExtensions: boolean; noPager: boolean; json: boolean; quiet: boolean; lean: boolean; tokenAccounting: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputCursor?: string; outputRowContract?: boolean; author?: string; authorMissingValue?: true; }"
1758
1968
  },
1759
1969
  {
1760
1970
  "classification": "advanced_export",
@@ -2344,6 +2554,12 @@
2344
2554
  "name": "collectOrderingCycles",
2345
2555
  "signature": "(successors: Map<string, string[]>) => string[][] | calls: (successors: Map<string, string[]>) => string[][]"
2346
2556
  },
2557
+ {
2558
+ "classification": "supported",
2559
+ "kind": "function",
2560
+ "name": "collectOrderingStorageContradictions",
2561
+ "signature": "(items: readonly DependencyReferenceHolder[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => OrderingStorageContradiction[] | calls: (items: readonly DependencyReferenceHolder[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => OrderingStorageContradiction[]"
2562
+ },
2347
2563
  {
2348
2564
  "classification": "advanced_export",
2349
2565
  "kind": "function",
@@ -2924,7 +3140,7 @@
2924
3140
  "classification": "supported",
2925
3141
  "kind": "interface",
2926
3142
  "name": "ContextRankingSummary",
2927
- "signature": "export interface ContextRankingSummary { model: string; available_signals: ContextRelevanceSignalName[]; items: Array<{ id: string; rank: number; baseline_rank: number; score: number; contributions: ContextRelevanceContributions; }>; feature_store?: { source: \"derived_index\" | \"scan_fallback\"; cache_status: \"fresh\" | \"rebuilt\"; source_cursor: string; generated_at: string; }; }"
3143
+ "signature": "export interface ContextRankingSummary { model: string; available_signals: ContextRelevanceSignalName[]; items: Array<{ id: string; rank: number; baseline_rank: number; score: number; contributions: ContextRelevanceContributions; }>; candidate_count: number; omitted_count: number; feature_store?: { source: \"derived_index\" | \"scan_fallback\"; cache_status: \"fresh\" | \"rebuilt\"; source_cursor: string; generated_at: string; }; }"
2928
3144
  },
2929
3145
  {
2930
3146
  "classification": "supported",
@@ -3074,7 +3290,7 @@
3074
3290
  "classification": "advanced_export",
3075
3291
  "kind": "interface",
3076
3292
  "name": "ContractsResult",
3077
- "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[]; 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[]; }; 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\"]; }>; }; }"
3293
+ "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[]; 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\"]; }>; }; }"
3078
3294
  },
3079
3295
  {
3080
3296
  "classification": "supported",
@@ -3179,19 +3395,19 @@
3179
3395
  "signature": "CliFlagContract[]"
3180
3396
  },
3181
3397
  {
3182
- "classification": "advanced_export",
3398
+ "classification": "supported",
3183
3399
  "kind": "function",
3184
3400
  "name": "createAssurancePreset",
3185
3401
  "signature": "(id: AssurancePresetId, ownerItemId: string) => AssurancePreset | calls: (id: AssurancePresetId, ownerItemId: string) => AssurancePreset"
3186
3402
  },
3187
3403
  {
3188
- "classification": "advanced_export",
3404
+ "classification": "supported",
3189
3405
  "kind": "function",
3190
3406
  "name": "createAssuranceWorkspaceContext",
3191
3407
  "signature": "(pmRoot: string, options?: CreateAssuranceWorkspaceContextOptions) => Promise<AssuranceEvaluationContext> | calls: (pmRoot: string, options?: CreateAssuranceWorkspaceContextOptions) => Promise<AssuranceEvaluationContext>"
3192
3408
  },
3193
3409
  {
3194
- "classification": "advanced_export",
3410
+ "classification": "supported",
3195
3411
  "kind": "interface",
3196
3412
  "name": "CreateAssuranceWorkspaceContextOptions",
3197
3413
  "signature": "export interface CreateAssuranceWorkspaceContextOptions { tree_id?: string; include_history?: boolean; resolve_tree?: boolean; providers?: Readonly<Record<string, AssuranceProviderResolver>>; provider_capabilities?: AssuranceEvaluationContext[\"provider_capabilities\"]; trigger?: string; }"
@@ -3215,7 +3431,7 @@
3215
3431
  "signature": "(shape: Readonly<CorpusShape>) => CorpusShapeMeasurement | calls: (shape: Readonly<CorpusShape>) => CorpusShapeMeasurement"
3216
3432
  },
3217
3433
  {
3218
- "classification": "advanced_export",
3434
+ "classification": "supported",
3219
3435
  "kind": "function",
3220
3436
  "name": "createEmptyAssuranceDocument",
3221
3437
  "signature": "() => AssuranceDocument | calls: () => AssuranceDocument"
@@ -3430,12 +3646,24 @@
3430
3646
  "name": "decodeQueryCursor",
3431
3647
  "signature": "(cursor: unknown, expectedFingerprint: string) => string | calls: (cursor: unknown, expectedFingerprint: string) => string"
3432
3648
  },
3649
+ {
3650
+ "classification": "supported",
3651
+ "kind": "function",
3652
+ "name": "decodeQueryCursorEnvelope",
3653
+ "signature": "(cursor: unknown) => QueryCursorEnvelope | calls: (cursor: unknown) => QueryCursorEnvelope"
3654
+ },
3433
3655
  {
3434
3656
  "classification": "supported",
3435
3657
  "kind": "function",
3436
3658
  "name": "decodeQueryCursorState",
3437
3659
  "signature": "(cursor: unknown, expectedFingerprint: string) => QueryCursorState | calls: (cursor: unknown, expectedFingerprint: string) => QueryCursorState"
3438
3660
  },
3661
+ {
3662
+ "classification": "supported",
3663
+ "kind": "function",
3664
+ "name": "decodeReadOutputContinuationCursor",
3665
+ "signature": "(raw: string) => PmReadOutputCursorEnvelope | calls: (raw: string) => PmReadOutputCursorEnvelope"
3666
+ },
3439
3667
  {
3440
3668
  "classification": "advanced_export",
3441
3669
  "kind": "function",
@@ -3785,7 +4013,7 @@
3785
4013
  "signature": "export interface DepsTreeNode { id: string; title?: string; type?: ItemType; status?: ItemStatus; via?: string; missing: boolean; cycle: boolean; truncated?: boolean; collapsed?: boolean; dependencies: DepsTreeNode[]; }"
3786
4014
  },
3787
4015
  {
3788
- "classification": "advanced_export",
4016
+ "classification": "supported",
3789
4017
  "kind": "function",
3790
4018
  "name": "deriveAssuranceProposals",
3791
4019
  "signature": "(context: AssuranceEvaluationContext, ownerItemId: string) => Promise<AssuranceDerivedProposal[]> | calls: (context: AssuranceEvaluationContext, ownerItemId: string) => Promise<AssuranceDerivedProposal[]>"
@@ -4066,6 +4294,12 @@
4066
4294
  "name": "encodeQueryCursor",
4067
4295
  "signature": "(fingerprint: string, afterId: string, afterIndex?: number, snapshot?: string) => string | calls: (fingerprint: string, afterId: string, afterIndex?: number, snapshot?: string) => string"
4068
4296
  },
4297
+ {
4298
+ "classification": "supported",
4299
+ "kind": "function",
4300
+ "name": "encodeReadOutputContinuationCursor",
4301
+ "signature": "(cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string | calls: (cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string"
4302
+ },
4069
4303
  {
4070
4304
  "classification": "advanced_export",
4071
4305
  "kind": "function",
@@ -4181,13 +4415,13 @@
4181
4415
  "signature": "export interface EvalResult { k: number; query_count: number; aggregate: { ndcg: number; mrr: number; precision: number; recall: number; }; queries: EvalQueryReport[]; fail_under?: number; passed: boolean; }"
4182
4416
  },
4183
4417
  {
4184
- "classification": "advanced_export",
4418
+ "classification": "supported",
4185
4419
  "kind": "function",
4186
4420
  "name": "evaluateAssuranceAssertion",
4187
4421
  "signature": "(definition: AssuranceAssertionDefinition, measurement: AssuranceMeasurementResult, options?: { owner_terminal?: boolean; }) => AssuranceAssertionVerdict | calls: (definition: AssuranceAssertionDefinition, measurement: AssuranceMeasurementResult, options?: { owner_terminal?: boolean; }) => AssuranceAssertionVerdict"
4188
4422
  },
4189
4423
  {
4190
- "classification": "advanced_export",
4424
+ "classification": "supported",
4191
4425
  "kind": "function",
4192
4426
  "name": "evaluateAssuranceGate",
4193
4427
  "signature": "(gateId: string, document: AssuranceDocument, context: AssuranceEvaluationContext, options: { trigger: AssuranceGateTrigger; dry_run?: boolean; }) => Promise<AssuranceGateVerdict> | calls: (gateId: string, document: AssuranceDocument, context: AssuranceEvaluationContext, options: { trigger: AssuranceGateTrigger; dry_run?: boolean; }) => Promise<AssuranceGateVerdict>"
@@ -4199,7 +4433,7 @@
4199
4433
  "signature": "(input: ContextRankingEvaluationInput) => ContextRankingEvaluation | calls: (input: ContextRankingEvaluationInput) => ContextRankingEvaluation"
4200
4434
  },
4201
4435
  {
4202
- "classification": "advanced_export",
4436
+ "classification": "supported",
4203
4437
  "kind": "function",
4204
4438
  "name": "evaluateMeasurement",
4205
4439
  "signature": "(definition: AssuranceMeasurementDefinition, context: AssuranceEvaluationContext, definitions?: AssuranceMeasurementDefinition[]) => Promise<AssuranceMeasurementResult> | calls: (definition: AssuranceMeasurementDefinition, context: AssuranceEvaluationContext, definitions?: AssuranceMeasurementDefinition[]) => Promise<AssuranceMeasurementResult>"
@@ -4685,10 +4919,22 @@
4685
4919
  "signature": "export interface ExtensionHookRegistry { beforeCommand: Array<RegisteredExtensionHook<BeforeCommandHook>>; beforeMutation: Array<RegisteredExtensionHook<BeforeMutationHook>>; afterCommand: Array<RegisteredExtensionHook<AfterCommandHook>>; onWrite: Array<RegisteredExtensionHook<OnWriteHook>>; onRead: Array<RegisteredExtensionHook<OnReadHook>>; onIndex: Array<RegisteredExtensionHook<OnIndexHook>>; }"
4686
4920
  },
4687
4921
  {
4688
- "classification": "advanced_export",
4922
+ "classification": "supported",
4689
4923
  "kind": "interface",
4690
- "name": "ExtensionInstallSourceCandidate",
4691
- "signature": "export interface ExtensionInstallSourceCandidate extends ExtensionInstallSourceSelection { version?: string; directory?: string; command: string; }"
4924
+ "name": "ExtensionHostVersionCensus",
4925
+ "signature": "export interface ExtensionHostVersionCensus { host_version: string | null; copies: ExtensionHostVersionCopy[]; mismatches: ExtensionHostVersionCopy[]; warnings: string[]; }"
4926
+ },
4927
+ {
4928
+ "classification": "supported",
4929
+ "kind": "interface",
4930
+ "name": "ExtensionHostVersionCopy",
4931
+ "signature": "export interface ExtensionHostVersionCopy { version: string; path: string; layout: \"host\" | \"npm\" | \"pnpm\" | \"other\"; consumers: string[]; }"
4932
+ },
4933
+ {
4934
+ "classification": "advanced_export",
4935
+ "kind": "interface",
4936
+ "name": "ExtensionInstallSourceCandidate",
4937
+ "signature": "export interface ExtensionInstallSourceCandidate extends ExtensionInstallSourceSelection { version?: string; directory?: string; command: string; }"
4692
4938
  },
4693
4939
  {
4694
4940
  "classification": "advanced_export",
@@ -5188,6 +5434,12 @@
5188
5434
  "name": "formatDuplicateEdgeGroup",
5189
5435
  "signature": "(group: DuplicateRelationshipEdgeGroup) => string | calls: (group: DuplicateRelationshipEdgeGroup) => string"
5190
5436
  },
5437
+ {
5438
+ "classification": "supported",
5439
+ "kind": "function",
5440
+ "name": "formatOrderingStorageContradiction",
5441
+ "signature": "(contradiction: Pick<OrderingStorageContradiction, \"dependency_kind\" | \"holder_id\" | \"target_id\">) => string | calls: (contradiction: Pick<OrderingStorageContradiction, \"holder_id\" | \"target_id\" | \"dependency_kind\">) => string"
5442
+ },
5191
5443
  {
5192
5444
  "classification": "advanced_export",
5193
5445
  "kind": "function",
@@ -5297,7 +5549,7 @@
5297
5549
  "signature": "() => ExtensionRegistrationRegistry | null | calls: () => ExtensionRegistrationRegistry | null"
5298
5550
  },
5299
5551
  {
5300
- "classification": "advanced_export",
5552
+ "classification": "supported",
5301
5553
  "kind": "function",
5302
5554
  "name": "getAssuranceDeclaration",
5303
5555
  "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, id: string) => Promise<AssuranceDeclaration> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, id: string) => Promise<AssuranceDeclaration>"
@@ -5408,7 +5660,7 @@
5408
5660
  "classification": "advanced_export",
5409
5661
  "kind": "interface",
5410
5662
  "name": "GlobalOptions",
5411
- "signature": "export interface GlobalOptions { json?: boolean; quiet?: boolean; noChangedFields?: boolean; fullChangedFields?: boolean; idOnly?: boolean; lean?: boolean; tokenAccounting?: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputRowContract?: boolean; path?: string; noExtensions?: boolean; noPager?: boolean; profile?: boolean; author?: string; defaultOutputFormat?: \"toon\" | \"json\"; }"
5663
+ "signature": "export interface GlobalOptions { json?: boolean; quiet?: boolean; noChangedFields?: boolean; fullChangedFields?: boolean; idOnly?: boolean; lean?: boolean; tokenAccounting?: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputCursor?: string; outputRowContract?: boolean; path?: string; noExtensions?: boolean; noPager?: boolean; profile?: boolean; author?: string; defaultOutputFormat?: \"toon\" | \"json\"; }"
5412
5664
  },
5413
5665
  {
5414
5666
  "classification": "supported",
@@ -5770,11 +6022,17 @@
5770
6022
  "name": "HealthCheck",
5771
6023
  "signature": "export interface HealthCheck { name: \"settings\" | \"directories\" | \"settings_values\" | \"telemetry\" | \"extensions\" | \"storage\" | \"locks\" | \"integrity\" | \"history_drift\" | \"vectorization\"; status: HealthStatus; ok: boolean; details: Record<string, unknown>; }"
5772
6024
  },
6025
+ {
6026
+ "classification": "supported",
6027
+ "kind": "interface",
6028
+ "name": "HealthFinding",
6029
+ "signature": "export interface HealthFinding { warning: string; code: string; check: HealthCheck[\"name\"]; severity: \"advisory\" | \"gate_failing\"; remediation?: string; disposition?: \"no_safe_automatic_remediation\"; }"
6030
+ },
5773
6031
  {
5774
6032
  "classification": "supported",
5775
6033
  "kind": "interface",
5776
6034
  "name": "HealthResult",
5777
- "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warnings: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
6035
+ "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warning_limit?: number; warnings_truncated?: boolean; warnings: string[]; findings: HealthFinding[]; failed_because: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
5778
6036
  },
5779
6037
  {
5780
6038
  "classification": "supported",
@@ -6008,7 +6266,7 @@
6008
6266
  "classification": "advanced_export",
6009
6267
  "kind": "interface",
6010
6268
  "name": "HistoryRepairAllResult",
6011
- "signature": "export interface HistoryRepairAllResult { all: true; dry_run: boolean; scanned_streams: number; drifted_streams: number; streams: HistoryRepairAllStreamResult[]; totals: { repaired: number; skipped_clean: number; failed: number; }; warnings: string[]; generated_at: string; }"
6269
+ "signature": "export interface HistoryRepairAllResult { all: true; dry_run: boolean; scanned_streams: number; drifted_streams: number; provenance_invalid_streams: number; streams: HistoryRepairAllStreamResult[]; totals: { repaired: number; skipped_clean: number; failed: number; }; warnings: string[]; generated_at: string; }"
6012
6270
  },
6013
6271
  {
6014
6272
  "classification": "advanced_export",
@@ -6020,7 +6278,7 @@
6020
6278
  "classification": "advanced_export",
6021
6279
  "kind": "interface",
6022
6280
  "name": "HistoryRepairCommandOptions",
6023
- "signature": "export interface HistoryRepairCommandOptions { dryRun?: boolean; author?: string; message?: string; force?: boolean; auditOperation?: string; auditContext?: Record<string, unknown>; auditContextById?: Record<string, Record<string, unknown>>; forceAuditEntry?: boolean; }"
6281
+ "signature": "export interface HistoryRepairCommandOptions { dryRun?: boolean; author?: string; message?: string; force?: boolean; auditOperation?: string; auditContext?: Record<string, unknown>; auditContextById?: Record<string, Record<string, unknown>>; forceAuditEntry?: boolean; normalizeProvenance?: boolean; }"
6024
6282
  },
6025
6283
  {
6026
6284
  "classification": "advanced_export",
@@ -6038,7 +6296,7 @@
6038
6296
  "classification": "advanced_export",
6039
6297
  "kind": "interface",
6040
6298
  "name": "HistoryRepairResult",
6041
- "signature": "export interface HistoryRepairResult { id: string; dry_run: boolean; changed: boolean; history: { path: string; entries_scanned: number; chain_drift_before: boolean; entries_rehashed: number; entries_patch_repaired: number; converted_replace_to_add: number; skipped_ops: number; reconciled_with_item: boolean; audit_entry_added: boolean; verify_ok: boolean; verify_errors: string[]; }; item: { exists: boolean; path: string | null; matched_chain_before: boolean | null; }; reconciliation?: HistoryRepairReconciliationReport; warnings: string[]; generated_at: string; }"
6299
+ "signature": "export interface HistoryRepairResult { id: string; dry_run: boolean; changed: boolean; history: { path: string; entries_scanned: number; chain_drift_before: boolean; entries_rehashed: number; entries_patch_repaired: number; converted_replace_to_add: number; skipped_ops: number; reconciled_with_item: boolean; audit_entry_added: boolean; verify_ok: boolean; verify_errors: string[]; item_hash_version_before: number | null; item_hash_version_after: number; version_disposition: \"preserved\" | \"selected_for_ambiguous_stream\"; }; item: { exists: boolean; path: string | null; matched_chain_before: boolean | null; }; provenance_normalization: ProvenanceNormalizationReceipt & { requested: boolean; }; reconciliation?: HistoryRepairReconciliationReport; warnings: string[]; generated_at: string; }"
6042
6300
  },
6043
6301
  {
6044
6302
  "classification": "supported",
@@ -6062,7 +6320,7 @@
6062
6320
  "classification": "advanced_export",
6063
6321
  "kind": "interface",
6064
6322
  "name": "HistoryVerificationResult",
6065
- "signature": "export interface HistoryVerificationResult { ok: boolean; entries: number; errors: string[]; latest_after_hash?: string; current_item_hash?: string; current_matches_latest?: boolean; }"
6323
+ "signature": "export interface HistoryVerificationResult { ok: boolean; entries: number; errors: string[]; latest_after_hash?: string; current_item_hash?: string; current_matches_latest?: boolean; workspace_state_matches_latest?: boolean; workspace_state_mismatches?: string[]; workspace_state_missing?: string[]; workspace_state_unreadable?: string[]; }"
6066
6324
  },
6067
6325
  {
6068
6326
  "classification": "advanced_export",
@@ -6268,6 +6526,12 @@
6268
6526
  "name": "InspectStaleInProgressOptions",
6269
6527
  "signature": "export interface InspectStaleInProgressOptions { in_progress_status?: string; threshold_hours: number; now?: Date; last_history_activity?: (item: ItemMetadata) => string | undefined; }"
6270
6528
  },
6529
+ {
6530
+ "classification": "advanced_export",
6531
+ "kind": "function",
6532
+ "name": "inspectWorkspaceHistoryState",
6533
+ "signature": "(pmRoot: string) => Promise<WorkspaceHistoryStateAgreement> | calls: (pmRoot: string) => Promise<WorkspaceHistoryStateAgreement>"
6534
+ },
6271
6535
  {
6272
6536
  "classification": "advanced_export",
6273
6537
  "kind": "function",
@@ -6839,13 +7103,13 @@
6839
7103
  "signature": "(pmRoot: string, preferredFormat?: ItemFormat, typeToFolder?: Record<string, string>, warnings?: string[], schema?: RuntimeSchemaSettings) => Promise<ItemMetadata[]> | calls: (pmRoot: string, preferredFormat?: ItemFormat, typeToFolder?: Record<string, string>, warnings?: string[], schema?: RuntimeSchemaSettings) => Promise<ItemMetadata[]>"
6840
7104
  },
6841
7105
  {
6842
- "classification": "advanced_export",
7106
+ "classification": "supported",
6843
7107
  "kind": "function",
6844
7108
  "name": "listAssuranceDeclarations",
6845
7109
  "signature": "(pmRoot: string, kind: AssuranceDeclarationKind) => Promise<{ items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [\"items\"]; jq_selector: \".items[]\"; }; }> | calls: (pmRoot: string, kind: AssuranceDeclarationKind) => Promise<{ items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [\"items\"]; jq_selector: \".items[]\"; }; }>"
6846
7110
  },
6847
7111
  {
6848
- "classification": "advanced_export",
7112
+ "classification": "supported",
6849
7113
  "kind": "function",
6850
7114
  "name": "listAssuranceVerdicts",
6851
7115
  "signature": "(pmRoot: string, options?: { gate_id?: string; limit?: number; }) => Promise<AssuranceGateVerdict[]> | calls: (pmRoot: string, options?: { gate_id?: string; limit?: number; }) => Promise<AssuranceGateVerdict[]>"
@@ -6880,6 +7144,12 @@
6880
7144
  "name": "ListFullResult",
6881
7145
  "signature": "export interface ListFullResult extends ListVerboseResult { items: Array<ListedItem | ListTreeItem>; projection: { mode: \"full\"; fields: null; }; }"
6882
7146
  },
7147
+ {
7148
+ "classification": "supported",
7149
+ "kind": "function",
7150
+ "name": "listInvalidProvenanceHistoryStreamIds",
7151
+ "signature": "(pmRoot: string) => Promise<string[]> | calls: (pmRoot: string) => Promise<string[]>"
7152
+ },
6883
7153
  {
6884
7154
  "classification": "supported",
6885
7155
  "kind": "function",
@@ -7414,6 +7684,18 @@
7414
7684
  "name": "normalizeAnnotationTransportOptions",
7415
7685
  "signature": "(options: Record<string, unknown>) => Record<string, unknown> | calls: (options: Record<string, unknown>) => Record<string, unknown>"
7416
7686
  },
7687
+ {
7688
+ "classification": "supported",
7689
+ "kind": "function",
7690
+ "name": "normalizeAssuranceEvaluation",
7691
+ "signature": "<T>(operation: () => Promise<T>) => Promise<T> | calls: <T>(operation: () => Promise<T>) => Promise<T>"
7692
+ },
7693
+ {
7694
+ "classification": "supported",
7695
+ "kind": "function",
7696
+ "name": "normalizeAssuranceMutation",
7697
+ "signature": "<T>(operation: () => Promise<T>) => Promise<T> | calls: <T>(operation: () => Promise<T>) => Promise<T>"
7698
+ },
7417
7699
  {
7418
7700
  "classification": "advanced_export",
7419
7701
  "kind": "function",
@@ -7450,6 +7732,12 @@
7450
7732
  "name": "normalizeExtensionContributionInventory",
7451
7733
  "signature": "(value: unknown) => ExtensionContributionInventory | null | undefined | calls: (value: unknown) => ExtensionContributionInventory | null | undefined"
7452
7734
  },
7735
+ {
7736
+ "classification": "supported",
7737
+ "kind": "function",
7738
+ "name": "normalizeInvalidHistoryProvenance",
7739
+ "signature": "(entries: HistoryEntry[]) => ProvenanceNormalizationResult | calls: (entries: HistoryEntry[]) => ProvenanceNormalizationResult"
7740
+ },
7453
7741
  {
7454
7742
  "classification": "advanced_export",
7455
7743
  "kind": "function",
@@ -7504,6 +7792,12 @@
7504
7792
  "name": "normalizeRawItemId",
7505
7793
  "signature": "(input: string) => string | calls: (input: string) => string"
7506
7794
  },
7795
+ {
7796
+ "classification": "contract_data",
7797
+ "kind": "function",
7798
+ "name": "normalizeReadOutputIncludeModeOptions",
7799
+ "signature": "(command: string, options: Record<string, unknown>) => void | calls: (command: string, options: Record<string, unknown>) => void"
7800
+ },
7507
7801
  {
7508
7802
  "classification": "advanced_export",
7509
7803
  "kind": "function",
@@ -7630,6 +7924,12 @@
7630
7924
  "name": "orderingPredecessors",
7631
7925
  "signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
7632
7926
  },
7927
+ {
7928
+ "classification": "supported",
7929
+ "kind": "interface",
7930
+ "name": "OrderingStorageContradiction",
7931
+ "signature": "export interface OrderingStorageContradiction { holder_id: string; target_id: string; dependency_kind: string; holder_status: ItemStatus; legacy_terminal: boolean; }"
7932
+ },
7633
7933
  {
7634
7934
  "classification": "supported",
7635
7935
  "kind": "function",
@@ -8534,7 +8834,7 @@
8534
8834
  "classification": "supported",
8535
8835
  "kind": "value",
8536
8836
  "name": "PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
8537
- "signature": "readonly [\"--output-session\", \"--output-row-contract\"]"
8837
+ "signature": "readonly [\"--output-session\", \"--output-cursor\", \"--output-row-contract\"]"
8538
8838
  },
8539
8839
  {
8540
8840
  "classification": "supported",
@@ -8570,7 +8870,7 @@
8570
8870
  "classification": "contract_data",
8571
8871
  "kind": "value",
8572
8872
  "name": "PM_READ_OUTPUT_SURFACES",
8573
- "signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-manage\"]"
8873
+ "signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-manage\", \"comments-audit\", \"assurance\"]"
8574
8874
  },
8575
8875
  {
8576
8876
  "classification": "advanced_export",
@@ -8584,6 +8884,12 @@
8584
8884
  "name": "PM_READ_ROW_JQ_SELECTOR",
8585
8885
  "signature": "\".row_contract.row_keys[] as $key | getpath($key | split(\\\".\\\")) | if type == \\\"array\\\" then .[] else if type == \\\"object\\\" then to_entries[] else empty end end\""
8586
8886
  },
8887
+ {
8888
+ "classification": "advanced_export",
8889
+ "kind": "value",
8890
+ "name": "PM_RECOVERY_REFERENCE_KINDS",
8891
+ "signature": "readonly [\"suggested_retry\", \"candidate_command\", \"example\", \"next_step\"]"
8892
+ },
8587
8893
  {
8588
8894
  "classification": "contract_data",
8589
8895
  "kind": "value",
@@ -8726,13 +9032,13 @@
8726
9032
  "classification": "advanced_export",
8727
9033
  "kind": "interface",
8728
9034
  "name": "PmCliErrorContext",
8729
- "signature": "export interface PmCliErrorContext { code?: string; reason?: string; field?: string; format?: 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[]; unresolved_targets?: string[]; valid_range?: { first_version: number | null; last_version: number | null; first_timestamp: string | null; last_timestamp: string | null; }; recovery?: PmCliErrorRecoveryPayload; }"
9035
+ "signature": "export interface PmCliErrorContext { code?: string; reason?: string; field?: string; gate_id?: string; assertion_id?: string; measurement_id?: string; source_kind?: string; check?: string; format?: 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[]; unresolved_targets?: string[]; valid_range?: { first_version: number | null; last_version: number | null; first_timestamp: string | null; last_timestamp: string | null; }; recovery?: PmCliErrorRecoveryPayload; }"
8730
9036
  },
8731
9037
  {
8732
9038
  "classification": "advanced_export",
8733
9039
  "kind": "interface",
8734
9040
  "name": "PmCliErrorRecoveryPayload",
8735
- "signature": "export interface PmCliErrorRecoveryPayload { recovery_mode?: \"compact\"; attempted_command?: string; normalized_args?: string[]; parsed_positionals?: Array<{ role: string; value: string; }>; provided_fields?: string[]; missing?: string[]; missing_required_fields?: string[]; suggested_flags?: string[]; allowed_values?: string[]; candidate_commands?: string[]; candidate_commands_total?: number; candidate_commands_truncated?: boolean; suggested_retry?: string; retry_after_ms?: number; fallback_candidates?: Array<{ source: string; command: string; reason: string; }>; next_best_command?: string; }"
9041
+ "signature": "export interface PmCliErrorRecoveryPayload { recovery_mode?: \"compact\"; attempted_command?: string; normalized_args?: string[]; parsed_positionals?: Array<{ role: string; value: string; }>; provided_fields?: string[]; missing?: string[]; missing_required_fields?: string[]; suggested_flags?: string[]; allowed_values?: string[]; candidate_commands?: string[]; candidate_commands_total?: number; candidate_commands_truncated?: boolean; option_scope?: \"declared_on_path\" | \"declared_elsewhere\" | \"declared_nowhere\"; suggested_retry?: string; retry_after_ms?: number; fallback_candidates?: Array<{ source: string; command: string; reason: string; }>; next_best_command?: string; }"
8736
9042
  },
8737
9043
  {
8738
9044
  "classification": "advanced_export",
@@ -9050,7 +9356,19 @@
9050
9356
  "classification": "supported",
9051
9357
  "kind": "interface",
9052
9358
  "name": "PmReadOutputBudgetExceeded",
9053
- "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; }; read_output: PmReadOutputReceipt; }"
9359
+ "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; recovery: { outputBudget: \"unbounded\"; }; }; read_output: PmReadOutputReceipt; }"
9360
+ },
9361
+ {
9362
+ "classification": "supported",
9363
+ "kind": "interface",
9364
+ "name": "PmReadOutputContinuation",
9365
+ "signature": "export interface PmReadOutputContinuation { path: string; cursor: string; retained_rows: number; remaining_rows: number; total_rows: number; }"
9366
+ },
9367
+ {
9368
+ "classification": "supported",
9369
+ "kind": "interface",
9370
+ "name": "PmReadOutputCursorEnvelope",
9371
+ "signature": "export interface PmReadOutputCursorEnvelope { version: 1; command: PmReadOutputSurface; path: string; offset: number; total_rows: number; fingerprint: string; }"
9054
9372
  },
9055
9373
  {
9056
9374
  "classification": "supported",
@@ -9074,31 +9392,31 @@
9074
9392
  "classification": "supported",
9075
9393
  "kind": "interface",
9076
9394
  "name": "PmReadOutputLegacyAlias",
9077
- "signature": "export interface PmReadOutputLegacyAlias { flag: string; migration_hint: string; visibility: \"hidden_alias\"; }"
9395
+ "signature": "export interface PmReadOutputLegacyAlias { flag: string; semantics?: \"replacement\" | \"behavior_preserving\"; migration_hint: string; visibility: \"hidden_alias\"; }"
9078
9396
  },
9079
9397
  {
9080
9398
  "classification": "supported",
9081
9399
  "kind": "interface",
9082
9400
  "name": "PmReadOutputOptions",
9083
- "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputRowContract?: boolean; }"
9401
+ "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number | \"unbounded\"; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputCursor?: string; outputRowContract?: boolean; }"
9084
9402
  },
9085
9403
  {
9086
9404
  "classification": "supported",
9087
9405
  "kind": "interface",
9088
9406
  "name": "PmReadOutputReceipt",
9089
- "signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; 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; result_omitted: boolean; }"
9407
+ "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; }"
9090
9408
  },
9091
9409
  {
9092
9410
  "classification": "supported",
9093
9411
  "kind": "type",
9094
9412
  "name": "PmReadOutputResult",
9095
- "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
9413
+ "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; output_budget_truncation?: PmReadOutputTruncationDisclosure; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
9096
9414
  },
9097
9415
  {
9098
9416
  "classification": "supported",
9099
9417
  "kind": "type",
9100
9418
  "name": "PmReadOutputResultFor",
9101
- "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
9419
+ "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : \"outputCursor\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
9102
9420
  },
9103
9421
  {
9104
9422
  "classification": "advanced_export",
@@ -9134,7 +9452,49 @@
9134
9452
  "classification": "supported",
9135
9453
  "kind": "interface",
9136
9454
  "name": "PmReadOutputSurfaceContract",
9137
- "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
9455
+ "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; budget_retention_policy: \"ordered_prefix\" | \"verdict_priority\"; }"
9456
+ },
9457
+ {
9458
+ "classification": "contract_data",
9459
+ "kind": "interface",
9460
+ "name": "PmReadOutputTruncationDisclosure",
9461
+ "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: 1; continuations: PmReadOutputContinuation[]; restore_with: string; recovery: { cursor: string; cli: \"--output-cursor\"; sdk: \"outputCursor\"; mcp: \"outputCursor\"; } | { cli: string; sdk: { outputBudget: number; }; mcp: { outputBudget: number; }; }; }"
9462
+ },
9463
+ {
9464
+ "classification": "advanced_export",
9465
+ "kind": "interface",
9466
+ "name": "PmRecoveryReferenceFinding",
9467
+ "signature": "export interface PmRecoveryReferenceFinding { kind: \"duplicate_obligation\" | \"duplicate_observation\" | \"missing_observation\" | \"unreachable_reference\" | \"undeclared_observation\"; reference_id: string; detail: string; }"
9468
+ },
9469
+ {
9470
+ "classification": "advanced_export",
9471
+ "kind": "type",
9472
+ "name": "PmRecoveryReferenceKind",
9473
+ "signature": "export type PmRecoveryReferenceKind = (typeof PM_RECOVERY_REFERENCE_KINDS)[number];"
9474
+ },
9475
+ {
9476
+ "classification": "advanced_export",
9477
+ "kind": "interface",
9478
+ "name": "PmRecoveryReferenceKindCoverage",
9479
+ "signature": "export interface PmRecoveryReferenceKindCoverage { kind: PmRecoveryReferenceKind; declared: number; observed: number; passed: number; }"
9480
+ },
9481
+ {
9482
+ "classification": "advanced_export",
9483
+ "kind": "interface",
9484
+ "name": "PmRecoveryReferenceObligation",
9485
+ "signature": "export interface PmRecoveryReferenceObligation { id: string; probe_id: string; kind: PmRecoveryReferenceKind; value: string; }"
9486
+ },
9487
+ {
9488
+ "classification": "advanced_export",
9489
+ "kind": "interface",
9490
+ "name": "PmRecoveryReferenceObservation",
9491
+ "signature": "export interface PmRecoveryReferenceObservation { id: string; reachable: boolean; proof: \"executed\" | \"declared_command_path\" | \"linked_execution\"; }"
9492
+ },
9493
+ {
9494
+ "classification": "advanced_export",
9495
+ "kind": "interface",
9496
+ "name": "PmRecoveryReferenceReport",
9497
+ "signature": "export interface PmRecoveryReferenceReport { ok: boolean; declared_reference_count: number; observed_reference_count: number; pass_fraction: number; coverage_by_kind: PmRecoveryReferenceKindCoverage[]; findings: PmRecoveryReferenceFinding[]; }"
9138
9498
  },
9139
9499
  {
9140
9500
  "classification": "advanced_export",
@@ -9170,7 +9530,7 @@
9170
9530
  "classification": "contract_data",
9171
9531
  "kind": "interface",
9172
9532
  "name": "PmResolvedReadOutputDimensions",
9173
- "signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number>; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
9533
+ "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\" ]; }"
9174
9534
  },
9175
9535
  {
9176
9536
  "classification": "supported",
@@ -9611,7 +9971,7 @@
9611
9971
  "signature": "(result: ValidateResult) => ValidateCountsResult | calls: (result: ValidateResult) => ValidateCountsResult"
9612
9972
  },
9613
9973
  {
9614
- "classification": "advanced_export",
9974
+ "classification": "supported",
9615
9975
  "kind": "function",
9616
9976
  "name": "promoteAssuranceAssertion",
9617
9977
  "signature": "(pmRoot: string, definition: AssuranceAssertionDefinition, enforcement: Exclude<AssuranceEnforcement, \"observe\">, options?: { author?: string; message?: string; }) => Promise<Awaited<ReturnType<typeof putAssuranceDeclaration>>> | calls: (pmRoot: string, definition: AssuranceAssertionDefinition, enforcement: Exclude<AssuranceEnforcement, \"observe\">, options?: { author?: string; message?: string; }) => Promise<Awaited<ReturnType<typeof putAssuranceDeclaration>>>"
@@ -9622,6 +9982,18 @@
9622
9982
  "name": "ProvenanceCoverageAnalytics",
9623
9983
  "signature": "export interface ProvenanceCoverageAnalytics { descriptors: AgentProvenanceDescriptorCoverage[]; observations: AgentProvenanceDimensionCoverage[]; inert: Array<{ harness: string; dimension: string; explicit_samples: number; }>; undeclared: string[]; warnings: string[]; window: HistoryAnalyticsWindowReceipt; }"
9624
9984
  },
9985
+ {
9986
+ "classification": "supported",
9987
+ "kind": "interface",
9988
+ "name": "ProvenanceNormalizationReceipt",
9989
+ "signature": "export interface ProvenanceNormalizationReceipt { changed: boolean; events_changed: number; observations_removed: number; invalid_values: ProvenanceValueHealthFinding[]; }"
9990
+ },
9991
+ {
9992
+ "classification": "supported",
9993
+ "kind": "interface",
9994
+ "name": "ProvenanceNormalizationResult",
9995
+ "signature": "export interface ProvenanceNormalizationResult { entries: HistoryEntry[]; receipt: ProvenanceNormalizationReceipt; }"
9996
+ },
9625
9997
  {
9626
9998
  "classification": "supported",
9627
9999
  "kind": "interface",
@@ -9647,13 +10019,13 @@
9647
10019
  "signature": "(cacheRoot: string, currentGeneration: string) => CompileCachePruneResult | calls: (cacheRoot: string, currentGeneration: string) => CompileCachePruneResult"
9648
10020
  },
9649
10021
  {
9650
- "classification": "advanced_export",
10022
+ "classification": "supported",
9651
10023
  "kind": "function",
9652
10024
  "name": "putAssuranceDeclaration",
9653
10025
  "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, definition: AssuranceDeclaration, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, definition: AssuranceDeclaration, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt>"
9654
10026
  },
9655
10027
  {
9656
- "classification": "advanced_export",
10028
+ "classification": "supported",
9657
10029
  "kind": "function",
9658
10030
  "name": "putAssuranceDeclarationBundle",
9659
10031
  "signature": "(pmRoot: string, bundle: AssuranceDeclarationBundle, options?: AssuranceMutationOptions) => Promise<AssuranceBundleMutationReceipt> | calls: (pmRoot: string, bundle: AssuranceDeclarationBundle, options?: AssuranceMutationOptions) => Promise<AssuranceBundleMutationReceipt>"
@@ -9664,6 +10036,12 @@
9664
10036
  "name": "QUERY_CURSOR_CONTRACT",
9665
10037
  "signature": "Readonly<{ version: 1; max_length: 4096; }>"
9666
10038
  },
10039
+ {
10040
+ "classification": "supported",
10041
+ "kind": "interface",
10042
+ "name": "QueryCursorEnvelope",
10043
+ "signature": "export interface QueryCursorEnvelope { version: number; fingerprint: string; after_id: string; after_index?: number; snapshot?: string; }"
10044
+ },
9667
10045
  {
9668
10046
  "classification": "supported",
9669
10047
  "kind": "interface",
@@ -9814,6 +10192,18 @@
9814
10192
  "name": "readLocatedItem",
9815
10193
  "signature": "(item: LocatedItem, options?: { schema?: RuntimeSchemaSettings; extensionFieldNames?: readonly string[]; warnings?: string[]; }) => Promise<{ raw: string; document: ItemDocument; }> | calls: (item: LocatedItem, options?: { schema?: RuntimeSchemaSettings; extensionFieldNames?: readonly string[]; warnings?: string[]; }) => Promise<{ raw: string; document: ItemDocument; }>"
9816
10194
  },
10195
+ {
10196
+ "classification": "advanced_export",
10197
+ "kind": "function",
10198
+ "name": "readOutputBudgetCollections",
10199
+ "signature": "(result: Record<string, unknown>) => PmReadOutputRowCollection[] | calls: (result: Record<string, unknown>) => PmReadOutputRowCollection[]"
10200
+ },
10201
+ {
10202
+ "classification": "contract_data",
10203
+ "kind": "function",
10204
+ "name": "readOutputIncludeModeOptions",
10205
+ "signature": "(command: string) => ReadonlyMap<string, string> | calls: (command: string) => ReadonlyMap<string, string>"
10206
+ },
9817
10207
  {
9818
10208
  "classification": "advanced_export",
9819
10209
  "kind": "function",
@@ -9922,6 +10312,12 @@
9922
10312
  "name": "reconcileExtensionCapabilityUsage",
9923
10313
  "signature": "(loaded: ReadonlyArray<{ layer: ExtensionLayer; name: string; capabilities?: readonly string[]; }>, activation: ExtensionActivationResult) => ExtensionCapabilityUsageReconciliation[] | calls: (loaded: ReadonlyArray<{ layer: ExtensionLayer; name: string; capabilities?: readonly string[]; }>, activation: ExtensionActivationResult) => ExtensionCapabilityUsageReconciliation[]"
9924
10314
  },
10315
+ {
10316
+ "classification": "advanced_export",
10317
+ "kind": "function",
10318
+ "name": "reconcileWorkspaceJsonHistory",
10319
+ "signature": "(options: WorkspaceJsonReconciliationOptions) => Promise<{ changed: boolean; entry?: HistoryEntry; historyPath: string; }> | calls: (options: WorkspaceJsonReconciliationOptions) => Promise<{ changed: boolean; entry?: HistoryEntry; historyPath: string; }>"
10320
+ },
9925
10321
  {
9926
10322
  "classification": "advanced_export",
9927
10323
  "kind": "function",
@@ -9929,7 +10325,7 @@
9929
10325
  "signature": "(item: AfterCommandAffectedItem) => void | calls: (item: AfterCommandAffectedItem) => void"
9930
10326
  },
9931
10327
  {
9932
- "classification": "advanced_export",
10328
+ "classification": "supported",
9933
10329
  "kind": "function",
9934
10330
  "name": "recordAssuranceVerdict",
9935
10331
  "signature": "(pmRoot: string, verdict: AssuranceGateVerdict, options?: AssuranceMutationOptions) => Promise<void> | calls: (pmRoot: string, verdict: AssuranceGateVerdict, options?: AssuranceMutationOptions) => Promise<void>"
@@ -10250,13 +10646,13 @@
10250
10646
  "classification": "supported",
10251
10647
  "kind": "interface",
10252
10648
  "name": "RelationshipAuditDelta",
10253
- "signature": "export interface RelationshipAuditDelta { baseline_saved_at: string; same_snapshot: boolean; affected_subjects_by_code: Record<string, number>; profile: { nodes: number; edges: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; }; }"
10649
+ "signature": "export interface RelationshipAuditDelta { baseline_saved_at: string; same_snapshot: boolean; affected_subjects_by_code: Record<string, number>; profile: { nodes: number; recorded_nodes?: number; edges: number; informative_edges?: number; redundant_edges?: number; ordering_contradiction_edges?: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; }; }"
10254
10650
  },
10255
10651
  {
10256
10652
  "classification": "supported",
10257
10653
  "kind": "interface",
10258
10654
  "name": "RelationshipAuditFinding",
10259
- "signature": "export interface RelationshipAuditFinding { code: RelationshipAuditFindingCode; severity: RelationshipAuditSeverity; policy: string; message: string; count: number; sample: string[]; sample_truncated: boolean; remediation: string; }"
10655
+ "signature": "export interface RelationshipAuditFinding { code: RelationshipAuditFindingCode; severity: RelationshipAuditSeverity; policy: string; message: string; count: number; sample: string[]; evidence?: string[]; sample_truncated: boolean; remediation: string; }"
10260
10656
  },
10261
10657
  {
10262
10658
  "classification": "supported",
@@ -10370,7 +10766,7 @@
10370
10766
  "classification": "supported",
10371
10767
  "kind": "interface",
10372
10768
  "name": "RelationshipCoverageProfile",
10373
- "signature": "export interface RelationshipCoverageProfile { nodes: number; edges: number; edge_basis: \"deduplicated_directed\"; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; articulation_points: number; bridge_edges: number; outcome_nodes: number; active_outcome_reachable_nodes: number; active_outcome_unreachable_nodes: number; active_outcome_reachability_basis_points: number; terminal_nodes: number; terminal_outcome_reachable_nodes: number; terminal_outcome_unreachable_nodes: number; terminal_outcome_reachability_basis_points: number; outcome_reachable_nodes: number; outcome_unreachable_nodes: number; outcome_reachability_basis_points: number; finding_subjects_by_code: Record<RelationshipAuditFindingCode, number>; }"
10769
+ "signature": "export interface RelationshipCoverageProfile { nodes: number; recorded_nodes?: number; edges: number; informative_edges?: number; redundant_edges?: number; ordering_contradiction_edges?: number; edge_basis: \"deduplicated_directed\"; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; articulation_points: number; bridge_edges: number; outcome_nodes: number; active_outcome_reachable_nodes: number; active_outcome_unreachable_nodes: number; active_outcome_reachability_basis_points: number; terminal_nodes: number; terminal_outcome_reachable_nodes: number; terminal_outcome_unreachable_nodes: number; terminal_outcome_reachability_basis_points: number; outcome_reachable_nodes: number; outcome_unreachable_nodes: number; outcome_reachability_basis_points: number; finding_subjects_by_code: Record<RelationshipAuditFindingCode, number>; }"
10374
10770
  },
10375
10771
  {
10376
10772
  "classification": "supported",
@@ -10769,7 +11165,7 @@
10769
11165
  "signature": "export interface ReminderShortcutOptions extends SchedulingShortcutCommonOptions { at?: string; text?: string; }"
10770
11166
  },
10771
11167
  {
10772
- "classification": "advanced_export",
11168
+ "classification": "supported",
10773
11169
  "kind": "function",
10774
11170
  "name": "removeAssuranceDeclaration",
10775
11171
  "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, id: string, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, id: string, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt>"
@@ -11518,6 +11914,12 @@
11518
11914
  "name": "RestoreResult",
11519
11915
  "signature": "export interface RestoreResult { item: ItemMetadata; restored_from: { kind: \"version\" | \"timestamp\"; target: string; history_index: number; entry_ts: string; entry_op: string; }; changed_fields: string[]; warnings: string[]; }"
11520
11916
  },
11917
+ {
11918
+ "classification": "advanced_export",
11919
+ "kind": "function",
11920
+ "name": "restoreWorkspaceJsonFromHistory",
11921
+ "signature": "(options: WorkspaceJsonRestoreOptions) => Promise<WorkspaceJsonRestoreResult> | calls: (options: WorkspaceJsonRestoreOptions) => Promise<WorkspaceJsonRestoreResult>"
11922
+ },
11521
11923
  {
11522
11924
  "classification": "advanced_export",
11523
11925
  "kind": "function",
@@ -11639,13 +12041,13 @@
11639
12041
  "signature": "(id: string, options: AppendCommandOptions, global: GlobalOptions) => Promise<AppendResult> | calls: (id: string, options: AppendCommandOptions, global: GlobalOptions) => Promise<AppendResult>"
11640
12042
  },
11641
12043
  {
11642
- "classification": "advanced_export",
12044
+ "classification": "supported",
11643
12045
  "kind": "function",
11644
12046
  "name": "runAssuranceAction",
11645
- "signature": "(input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">) => Promise<AssuranceActionResult> | calls: (input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">) => Promise<AssuranceActionResult>"
12047
+ "signature": "(input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">, runtime?: AssuranceActionRuntimeOptions) => Promise<AssuranceActionResult> | calls: (input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">, runtime?: AssuranceActionRuntimeOptions) => Promise<AssuranceActionResult>"
11646
12048
  },
11647
12049
  {
11648
- "classification": "advanced_export",
12050
+ "classification": "supported",
11649
12051
  "kind": "function",
11650
12052
  "name": "runAssuranceDispatch",
11651
12053
  "signature": "(args: Record<string, unknown>, options: Record<string, unknown>, global: GlobalOptions) => Promise<AssuranceActionResult> | calls: (args: Record<string, unknown>, options: Record<string, unknown>, global: GlobalOptions) => Promise<AssuranceActionResult>"
@@ -12376,6 +12778,12 @@
12376
12778
  "name": "saveGraphAuditBaseline",
12377
12779
  "signature": "(pmRoot: string, snapshot: RelationshipAuditSnapshot) => Promise<void> | calls: (pmRoot: string, snapshot: RelationshipAuditSnapshot) => Promise<void>"
12378
12780
  },
12781
+ {
12782
+ "classification": "supported",
12783
+ "kind": "function",
12784
+ "name": "scanExtensionHostVersions",
12785
+ "signature": "(loadedExtensions: readonly LoadedExtension[], workspaceRoot: string, hostPackageRoot?: string) => Promise<ExtensionHostVersionCensus> | calls: (loadedExtensions: readonly LoadedExtension[], workspaceRoot: string, hostPackageRoot?: string) => Promise<ExtensionHostVersionCensus>"
12786
+ },
12379
12787
  {
12380
12788
  "classification": "supported",
12381
12789
  "kind": "value",
@@ -13210,6 +13618,12 @@
13210
13618
  "name": "similarityAdvisoryWarnings",
13211
13619
  "signature": "(advisory: SimilarityAdvisory | undefined) => string[] | calls: (advisory: SimilarityAdvisory | undefined) => string[]"
13212
13620
  },
13621
+ {
13622
+ "classification": "advanced_export",
13623
+ "kind": "function",
13624
+ "name": "sliceReadOutputRowCollection",
13625
+ "signature": "(result: Record<string, unknown>, rowPath: string, offset: number) => Record<string, unknown> | calls: (result: Record<string, unknown>, rowPath: string, offset: number) => Record<string, unknown>"
13626
+ },
13213
13627
  {
13214
13628
  "classification": "advanced_export",
13215
13629
  "kind": "value",
@@ -13778,7 +14192,7 @@
13778
14192
  "classification": "supported",
13779
14193
  "kind": "function",
13780
14194
  "name": "toContextRankingSummary",
13781
- "signature": "<TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult) => ContextRankingSummary | calls: <TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult) => ContextRankingSummary"
14195
+ "signature": "<TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult, servedItemIds?: ReadonlySet<string>) => ContextRankingSummary | calls: <TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult, servedItemIds?: ReadonlySet<string>) => ContextRankingSummary"
13782
14196
  },
13783
14197
  {
13784
14198
  "classification": "advanced_export",
@@ -14207,13 +14621,13 @@
14207
14621
  "signature": "CliFlagContract[]"
14208
14622
  },
14209
14623
  {
14210
- "classification": "advanced_export",
14624
+ "classification": "supported",
14211
14625
  "kind": "function",
14212
14626
  "name": "validateAssertionDefinition",
14213
14627
  "signature": "(definition: AssuranceAssertionDefinition) => AssuranceAssertionDefinition | calls: (definition: AssuranceAssertionDefinition) => AssuranceAssertionDefinition"
14214
14628
  },
14215
14629
  {
14216
- "classification": "advanced_export",
14630
+ "classification": "supported",
14217
14631
  "kind": "function",
14218
14632
  "name": "validateAssuranceDocument",
14219
14633
  "signature": "(document: AssuranceDocument) => AssuranceDocument | calls: (document: AssuranceDocument) => AssuranceDocument"
@@ -14249,7 +14663,7 @@
14249
14663
  "signature": "export interface ValidateFixesSummary { mode: \"apply\" | \"dry_run\"; auto_fix: boolean; prune_missing: boolean; granted_fix_scopes: string[]; planned_count: number; applied_count: number; gated_count: number; failed_count: number; planned_fixes: Array<Record<string, unknown>>; applied_fixes: Array<Record<string, unknown>>; gated_fixes: Array<Record<string, unknown>>; failed_fixes: Array<Record<string, unknown>>; }"
14250
14664
  },
14251
14665
  {
14252
- "classification": "advanced_export",
14666
+ "classification": "supported",
14253
14667
  "kind": "function",
14254
14668
  "name": "validateGateDefinition",
14255
14669
  "signature": "(definition: AssuranceGateDefinition) => AssuranceGateDefinition | calls: (definition: AssuranceGateDefinition) => AssuranceGateDefinition"
@@ -14267,7 +14681,7 @@
14267
14681
  "signature": "(paths: string[], workspaceRoot?: string) => Promise<LinkedPathValidation> | calls: (paths: string[], workspaceRoot?: string) => Promise<LinkedPathValidation>"
14268
14682
  },
14269
14683
  {
14270
- "classification": "advanced_export",
14684
+ "classification": "supported",
14271
14685
  "kind": "function",
14272
14686
  "name": "validateMeasurementDefinition",
14273
14687
  "signature": "(definition: AssuranceMeasurementDefinition) => AssuranceMeasurementDefinition | calls: (definition: AssuranceMeasurementDefinition) => AssuranceMeasurementDefinition"
@@ -14386,6 +14800,12 @@
14386
14800
  "name": "verifyHistoryEntries",
14387
14801
  "signature": "(history: HistoryEntry[], currentDocument?: ItemDocument) => HistoryVerificationResult | calls: (history: HistoryEntry[], currentDocument?: ItemDocument) => HistoryVerificationResult"
14388
14802
  },
14803
+ {
14804
+ "classification": "advanced_export",
14805
+ "kind": "function",
14806
+ "name": "verifyPmRecoveryReferences",
14807
+ "signature": "(obligations: readonly PmRecoveryReferenceObligation[], observations: readonly PmRecoveryReferenceObservation[]) => PmRecoveryReferenceReport | calls: (obligations: readonly PmRecoveryReferenceObligation[], observations: readonly PmRecoveryReferenceObservation[]) => PmRecoveryReferenceReport"
14808
+ },
14389
14809
  {
14390
14810
  "classification": "advanced_export",
14391
14811
  "kind": "function",
@@ -14476,6 +14896,12 @@
14476
14896
  "name": "WorkspaceHistoryChange",
14477
14897
  "signature": "export interface WorkspaceHistoryChange { pmRoot: string; documentPath: string; before: unknown; after: unknown; op: string; idempotencyKey?: string; author: string; message?: string; lockTtlSeconds: number; lockWaitMs: number; }"
14478
14898
  },
14899
+ {
14900
+ "classification": "advanced_export",
14901
+ "kind": "interface",
14902
+ "name": "WorkspaceHistoryStateAgreement",
14903
+ "signature": "export interface WorkspaceHistoryStateAgreement { ok: boolean; document_count: number; matching_documents: string[]; mismatched_documents: string[]; missing_documents: string[]; unreadable_documents: string[]; }"
14904
+ },
14479
14905
  {
14480
14906
  "classification": "advanced_export",
14481
14907
  "kind": "interface",
@@ -14488,6 +14914,24 @@
14488
14914
  "name": "WorkspaceJsonMutationOptions",
14489
14915
  "signature": "export interface WorkspaceJsonMutationOptions<Result> extends Omit<WorkspaceJsonWriteOptions, \"raw\"> { mutate: (beforeRaw: string | null) => WorkspaceJsonMutation<Result> | Promise<WorkspaceJsonMutation<Result>>; }"
14490
14916
  },
14917
+ {
14918
+ "classification": "advanced_export",
14919
+ "kind": "interface",
14920
+ "name": "WorkspaceJsonReconciliationOptions",
14921
+ "signature": "export interface WorkspaceJsonReconciliationOptions extends Omit<WorkspaceJsonWriteOptions, \"raw\" | \"recordCreation\"> { authorizationDecision: string; }"
14922
+ },
14923
+ {
14924
+ "classification": "advanced_export",
14925
+ "kind": "interface",
14926
+ "name": "WorkspaceJsonRestoreOptions",
14927
+ "signature": "export interface WorkspaceJsonRestoreOptions extends Omit<WorkspaceJsonWriteOptions, \"raw\" | \"recordCreation\"> { targetVersion: number; }"
14928
+ },
14929
+ {
14930
+ "classification": "advanced_export",
14931
+ "kind": "interface",
14932
+ "name": "WorkspaceJsonRestoreResult",
14933
+ "signature": "export interface WorkspaceJsonRestoreResult { document_path: string; restored_from_version: number; changed: boolean; }"
14934
+ },
14491
14935
  {
14492
14936
  "classification": "advanced_export",
14493
14937
  "kind": "interface",
@@ -14552,7 +14996,7 @@
14552
14996
  "classification": "supported",
14553
14997
  "kind": "interface",
14554
14998
  "name": "WorkspaceRelationshipAssembly",
14555
- "signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; legacyAliasCounts: Record<string, number>; }"
14999
+ "signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; }"
14556
15000
  },
14557
15001
  {
14558
15002
  "classification": "supported",
@@ -16138,6 +16582,12 @@
16138
16582
  "name": "applyReadOutputDimensions",
16139
16583
  "signature": "<Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => PmReadOutputResult<Result> | calls: <Result extends Record<string, unknown>>(command: string, options: Record<string, unknown>, result: Result) => PmReadOutputResult<Result>"
16140
16584
  },
16585
+ {
16586
+ "classification": "contract_data",
16587
+ "kind": "function",
16588
+ "name": "applyReadOutputIncludeModes",
16589
+ "signature": "(command: string, includeValue: unknown, commandOptions: Record<string, unknown>) => { selectors: string[]; modes: string[]; } | calls: (command: string, includeValue: unknown, commandOptions: Record<string, unknown>) => { selectors: string[]; modes: string[]; }"
16590
+ },
16141
16591
  {
16142
16592
  "classification": "contract_data",
16143
16593
  "kind": "value",
@@ -16336,6 +16786,12 @@
16336
16786
  "name": "decodeContextIntentCursor",
16337
16787
  "signature": "(cursor: string) => ContextIntentCursorEnvelope | undefined | calls: (cursor: string) => ContextIntentCursorEnvelope | undefined"
16338
16788
  },
16789
+ {
16790
+ "classification": "contract_data",
16791
+ "kind": "function",
16792
+ "name": "decodeReadOutputContinuationCursor",
16793
+ "signature": "(raw: string) => PmReadOutputCursorEnvelope | calls: (raw: string) => PmReadOutputCursorEnvelope"
16794
+ },
16339
16795
  {
16340
16796
  "classification": "contract_data",
16341
16797
  "kind": "function",
@@ -16384,6 +16840,12 @@
16384
16840
  "name": "DUPLICATES_FLAG_CONTRACTS",
16385
16841
  "signature": "CliFlagContract[]"
16386
16842
  },
16843
+ {
16844
+ "classification": "contract_data",
16845
+ "kind": "function",
16846
+ "name": "encodeReadOutputContinuationCursor",
16847
+ "signature": "(cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string | calls: (cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string"
16848
+ },
16387
16849
  {
16388
16850
  "classification": "contract_data",
16389
16851
  "kind": "function",
@@ -16738,6 +17200,12 @@
16738
17200
  "name": "NEXT_FLAG_CONTRACTS",
16739
17201
  "signature": "CliFlagContract[]"
16740
17202
  },
17203
+ {
17204
+ "classification": "contract_data",
17205
+ "kind": "function",
17206
+ "name": "normalizeReadOutputIncludeModeOptions",
17207
+ "signature": "(command: string, options: Record<string, unknown>) => void | calls: (command: string, options: Record<string, unknown>) => void"
17208
+ },
16741
17209
  {
16742
17210
  "classification": "contract_data",
16743
17211
  "kind": "value",
@@ -16916,7 +17384,7 @@
16916
17384
  "classification": "contract_data",
16917
17385
  "kind": "value",
16918
17386
  "name": "PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
16919
- "signature": "readonly [\"--output-session\", \"--output-row-contract\"]"
17387
+ "signature": "readonly [\"--output-session\", \"--output-cursor\", \"--output-row-contract\"]"
16920
17388
  },
16921
17389
  {
16922
17390
  "classification": "contract_data",
@@ -16940,7 +17408,7 @@
16940
17408
  "classification": "contract_data",
16941
17409
  "kind": "value",
16942
17410
  "name": "PM_READ_OUTPUT_SURFACES",
16943
- "signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-manage\"]"
17411
+ "signature": "readonly [\"list\", \"context\", \"search\", \"get\", \"next\", \"health\", \"deps\", \"graph\", \"history\", \"activity\", \"validate\", \"events\", \"contracts\", \"comments\", \"notes\", \"files\", \"docs\", \"stats\", \"aggregate\", \"package-manage\", \"comments-audit\", \"assurance\"]"
16944
17412
  },
16945
17413
  {
16946
17414
  "classification": "contract_data",
@@ -17240,7 +17708,19 @@
17240
17708
  "classification": "contract_data",
17241
17709
  "kind": "interface",
17242
17710
  "name": "PmReadOutputBudgetExceeded",
17243
- "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; }; read_output: PmReadOutputReceipt; }"
17711
+ "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; recovery: { outputBudget: \"unbounded\"; }; }; read_output: PmReadOutputReceipt; }"
17712
+ },
17713
+ {
17714
+ "classification": "contract_data",
17715
+ "kind": "interface",
17716
+ "name": "PmReadOutputContinuation",
17717
+ "signature": "export interface PmReadOutputContinuation { path: string; cursor: string; retained_rows: number; remaining_rows: number; total_rows: number; }"
17718
+ },
17719
+ {
17720
+ "classification": "contract_data",
17721
+ "kind": "interface",
17722
+ "name": "PmReadOutputCursorEnvelope",
17723
+ "signature": "export interface PmReadOutputCursorEnvelope { version: 1; command: PmReadOutputSurface; path: string; offset: number; total_rows: number; fingerprint: string; }"
17244
17724
  },
17245
17725
  {
17246
17726
  "classification": "contract_data",
@@ -17264,31 +17744,31 @@
17264
17744
  "classification": "contract_data",
17265
17745
  "kind": "interface",
17266
17746
  "name": "PmReadOutputLegacyAlias",
17267
- "signature": "export interface PmReadOutputLegacyAlias { flag: string; migration_hint: string; visibility: \"hidden_alias\"; }"
17747
+ "signature": "export interface PmReadOutputLegacyAlias { flag: string; semantics?: \"replacement\" | \"behavior_preserving\"; migration_hint: string; visibility: \"hidden_alias\"; }"
17268
17748
  },
17269
17749
  {
17270
17750
  "classification": "contract_data",
17271
17751
  "kind": "interface",
17272
17752
  "name": "PmReadOutputOptions",
17273
- "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputRowContract?: boolean; }"
17753
+ "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number | \"unbounded\"; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputCursor?: string; outputRowContract?: boolean; }"
17274
17754
  },
17275
17755
  {
17276
17756
  "classification": "contract_data",
17277
17757
  "kind": "interface",
17278
17758
  "name": "PmReadOutputReceipt",
17279
- "signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; 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; result_omitted: boolean; }"
17759
+ "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; }"
17280
17760
  },
17281
17761
  {
17282
17762
  "classification": "contract_data",
17283
17763
  "kind": "type",
17284
17764
  "name": "PmReadOutputResult",
17285
- "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
17765
+ "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; output_budget_truncation?: PmReadOutputTruncationDisclosure; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
17286
17766
  },
17287
17767
  {
17288
17768
  "classification": "contract_data",
17289
17769
  "kind": "type",
17290
17770
  "name": "PmReadOutputResultFor",
17291
- "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
17771
+ "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : \"outputCursor\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
17292
17772
  },
17293
17773
  {
17294
17774
  "classification": "contract_data",
@@ -17312,7 +17792,13 @@
17312
17792
  "classification": "contract_data",
17313
17793
  "kind": "interface",
17314
17794
  "name": "PmReadOutputSurfaceContract",
17315
- "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
17795
+ "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; budget_retention_policy: \"ordered_prefix\" | \"verdict_priority\"; }"
17796
+ },
17797
+ {
17798
+ "classification": "contract_data",
17799
+ "kind": "interface",
17800
+ "name": "PmReadOutputTruncationDisclosure",
17801
+ "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: 1; continuations: PmReadOutputContinuation[]; restore_with: string; recovery: { cursor: string; cli: \"--output-cursor\"; sdk: \"outputCursor\"; mcp: \"outputCursor\"; } | { cli: string; sdk: { outputBudget: number; }; mcp: { outputBudget: number; }; }; }"
17316
17802
  },
17317
17803
  {
17318
17804
  "classification": "contract_data",
@@ -17330,7 +17816,7 @@
17330
17816
  "classification": "contract_data",
17331
17817
  "kind": "interface",
17332
17818
  "name": "PmResolvedReadOutputDimensions",
17333
- "signature": "export interface PmResolvedReadOutputDimensions { command: PmReadOutputSurface; include?: PmResolvedReadOutputDimension<string[]>; amount?: PmResolvedReadOutputDimension<number | \"unbounded\">; cost?: PmResolvedReadOutputDimension<number>; encoding?: PmResolvedReadOutputDimension<\"json\" | \"toon\" | \"stream\">; legacy_aliases_used: string[]; migration_hints: string[]; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
17819
+ "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\" ]; }"
17334
17820
  },
17335
17821
  {
17336
17822
  "classification": "contract_data",
@@ -17380,6 +17866,12 @@
17380
17866
  "name": "readFirstValueFromCommanderOptions",
17381
17867
  "signature": "(options: Record<string, unknown>, contract: CommanderOptionAliasContract) => unknown | calls: (options: Record<string, unknown>, contract: CommanderOptionAliasContract) => unknown"
17382
17868
  },
17869
+ {
17870
+ "classification": "contract_data",
17871
+ "kind": "function",
17872
+ "name": "readOutputIncludeModeOptions",
17873
+ "signature": "(command: string) => ReadonlyMap<string, string> | calls: (command: string) => ReadonlyMap<string, string>"
17874
+ },
17383
17875
  {
17384
17876
  "classification": "contract_data",
17385
17877
  "kind": "function",
@@ -18088,6 +18580,12 @@
18088
18580
  "name": "CURRENT_ITEM_FORMAT_VERSION",
18089
18581
  "signature": "1"
18090
18582
  },
18583
+ {
18584
+ "classification": "supported",
18585
+ "kind": "function",
18586
+ "name": "decodeReadOutputContinuationCursor",
18587
+ "signature": "(raw: string) => PmReadOutputCursorEnvelope | calls: (raw: string) => PmReadOutputCursorEnvelope"
18588
+ },
18091
18589
  {
18092
18590
  "classification": "supported",
18093
18591
  "kind": "function",
@@ -18190,6 +18688,12 @@
18190
18688
  "name": "emptyImportedDocument",
18191
18689
  "signature": "() => ItemDocument | calls: () => ItemDocument"
18192
18690
  },
18691
+ {
18692
+ "classification": "supported",
18693
+ "kind": "function",
18694
+ "name": "encodeReadOutputContinuationCursor",
18695
+ "signature": "(cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string | calls: (cursor: Omit<PmReadOutputCursorEnvelope, \"version\">) => string"
18696
+ },
18193
18697
  {
18194
18698
  "classification": "supported",
18195
18699
  "kind": "function",
@@ -18488,7 +18992,7 @@
18488
18992
  "classification": "supported",
18489
18993
  "kind": "value",
18490
18994
  "name": "PM_READ_OUTPUT_COMPOSITION_OPTION_FLAGS",
18491
- "signature": "readonly [\"--output-session\", \"--output-row-contract\"]"
18995
+ "signature": "readonly [\"--output-session\", \"--output-cursor\", \"--output-row-contract\"]"
18492
18996
  },
18493
18997
  {
18494
18998
  "classification": "supported",
@@ -18548,7 +19052,19 @@
18548
19052
  "classification": "supported",
18549
19053
  "kind": "interface",
18550
19054
  "name": "PmReadOutputBudgetExceeded",
18551
- "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; }; read_output: PmReadOutputReceipt; }"
19055
+ "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; recovery: { outputBudget: \"unbounded\"; }; }; read_output: PmReadOutputReceipt; }"
19056
+ },
19057
+ {
19058
+ "classification": "supported",
19059
+ "kind": "interface",
19060
+ "name": "PmReadOutputContinuation",
19061
+ "signature": "export interface PmReadOutputContinuation { path: string; cursor: string; retained_rows: number; remaining_rows: number; total_rows: number; }"
19062
+ },
19063
+ {
19064
+ "classification": "supported",
19065
+ "kind": "interface",
19066
+ "name": "PmReadOutputCursorEnvelope",
19067
+ "signature": "export interface PmReadOutputCursorEnvelope { version: 1; command: PmReadOutputSurface; path: string; offset: number; total_rows: number; fingerprint: string; }"
18552
19068
  },
18553
19069
  {
18554
19070
  "classification": "supported",
@@ -18560,31 +19076,31 @@
18560
19076
  "classification": "supported",
18561
19077
  "kind": "interface",
18562
19078
  "name": "PmReadOutputLegacyAlias",
18563
- "signature": "export interface PmReadOutputLegacyAlias { flag: string; migration_hint: string; visibility: \"hidden_alias\"; }"
19079
+ "signature": "export interface PmReadOutputLegacyAlias { flag: string; semantics?: \"replacement\" | \"behavior_preserving\"; migration_hint: string; visibility: \"hidden_alias\"; }"
18564
19080
  },
18565
19081
  {
18566
19082
  "classification": "supported",
18567
19083
  "kind": "interface",
18568
19084
  "name": "PmReadOutputOptions",
18569
- "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputRowContract?: boolean; }"
19085
+ "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number | \"unbounded\"; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputCursor?: string; outputRowContract?: boolean; }"
18570
19086
  },
18571
19087
  {
18572
19088
  "classification": "supported",
18573
19089
  "kind": "interface",
18574
19090
  "name": "PmReadOutputReceipt",
18575
- "signature": "export interface PmReadOutputReceipt { contract_version: 1; command: PmReadOutputSurface; requested_dimensions: PmReadOutputDimension[]; 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; result_omitted: boolean; }"
19091
+ "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; }"
18576
19092
  },
18577
19093
  {
18578
19094
  "classification": "supported",
18579
19095
  "kind": "type",
18580
19096
  "name": "PmReadOutputResult",
18581
- "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
19097
+ "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; output_budget_truncation?: PmReadOutputTruncationDisclosure; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
18582
19098
  },
18583
19099
  {
18584
19100
  "classification": "supported",
18585
19101
  "kind": "type",
18586
19102
  "name": "PmReadOutputResultFor",
18587
- "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
19103
+ "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : \"outputCursor\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
18588
19104
  },
18589
19105
  {
18590
19106
  "classification": "supported",
@@ -18614,7 +19130,7 @@
18614
19130
  "classification": "supported",
18615
19131
  "kind": "interface",
18616
19132
  "name": "PmReadOutputSurfaceContract",
18617
- "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
19133
+ "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; budget_retention_policy: \"ordered_prefix\" | \"verdict_priority\"; }"
18618
19134
  },
18619
19135
  {
18620
19136
  "classification": "supported",
@@ -18908,7 +19424,7 @@
18908
19424
  "classification": "supported",
18909
19425
  "kind": "value",
18910
19426
  "name": "_testOnlyHealthCommand",
18911
- "signature": "{ buildExtensionHealthTriageSummary: typeof buildExtensionHealthTriageSummary; 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; }"
19427
+ "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; }"
18912
19428
  },
18913
19429
  {
18914
19430
  "classification": "supported",
@@ -18922,6 +19438,12 @@
18922
19438
  "name": "_testOnlyValidateCommand",
18923
19439
  "signature": "{ applyValidateFix: typeof applyValidateFix; applyValidateFixes: typeof applyValidateFixes; attachValidateFixHints: typeof attachValidateFixHints; buildCommandReferencesCheck: typeof buildCommandReferencesCheck; buildDependencyReferencesCheck: typeof buildDependencyReferencesCheck; buildCloseReasonBackfillRows: typeof buildCloseReasonBackfillRows; buildFilesCheck: typeof buildFilesCheck; buildLifecycleCheck: typeof buildLifecycleCheck; buildLifecycleDependencyGraph: typeof buildLifecycleDependencyGraph; buildLifecycleParentGraph: typeof buildLifecycleParentGraph; buildEstimateBackfillRows: typeof buildEstimateBackfillRows; buildMetadataCounts: typeof buildMetadataCounts; buildMissingFieldOccurrences: typeof buildMissingFieldOccurrences; buildOrphanedPathRows: typeof buildOrphanedPathRows; classifyOrphanedPath: typeof classifyOrphanedPath; collectDefaultProjectFileCandidates: typeof collectDefaultProjectFileCandidates; collectTrackedGitFileCandidates: typeof collectTrackedGitFileCandidates; detectLifecycleDependencyCycles: typeof detectLifecycleDependencyCycles; detectLifecycleParentCycles: typeof detectLifecycleParentCycles; escapeRegExp: typeof escapeRegExp; extractItemIds: typeof extractItemIds; findLifecycleDependencyCycleComponents: typeof findLifecycleDependencyCycleComponents; isMetadataFieldMissing: typeof isMetadataFieldMissing; linkedArtifactPathExceedsFilesystemLimits: typeof linkedArtifactPathExceedsFilesystemLimits; listFilesRecursive: typeof listFilesRecursive; resolveDependencyCycleSeverity: typeof resolveDependencyCycleSeverity; resolveParentCycleSeverity: typeof resolveParentCycleSeverity; resolveFileScanMode: typeof resolveFileScanMode; resolveLifecycleDependencyCycleSamplePath: typeof resolveLifecycleDependencyCycleSamplePath; resolveRequestedChecks: typeof resolveRequestedChecks; resolveValidateMetadataProfile: typeof resolveValidateMetadataProfile; resolveWorkspaceRoot: typeof resolveWorkspaceRoot; sharedDirectoryPrefixLength: typeof sharedDirectoryPrefixLength; summarizeOrphanedPathRows: typeof summarizeOrphanedPathRows; summarizeDuplicateIssueCodes: typeof summarizeDuplicateIssueCodes; toMeaningfulString: typeof toMeaningfulString; }"
18924
19440
  },
19441
+ {
19442
+ "classification": "supported",
19443
+ "kind": "function",
19444
+ "name": "acceptAssuranceProposals",
19445
+ "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>"
19446
+ },
18925
19447
  {
18926
19448
  "classification": "supported",
18927
19449
  "kind": "interface",
@@ -18940,36 +19462,462 @@
18940
19462
  "name": "acknowledgeUnknownAuthorHistoryEventsFromTransport",
18941
19463
  "signature": "(pmRoot: string, input: Record<string, unknown>) => Promise<{ acknowledged: number; history_path: string; }> | calls: (pmRoot: string, input: Record<string, unknown>) => Promise<{ acknowledged: number; history_path: string; }>"
18942
19464
  },
19465
+ {
19466
+ "classification": "supported",
19467
+ "kind": "function",
19468
+ "name": "applyAssurancePreset",
19469
+ "signature": "(pmRoot: string, id: AssurancePresetId, ownerItemId: string, options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt> | calls: (pmRoot: string, id: AssurancePresetId, ownerItemId: string, options?: { author?: string; message?: string; }) => Promise<AssuranceBundleMutationReceipt>"
19470
+ },
18943
19471
  {
18944
19472
  "classification": "supported",
18945
19473
  "kind": "value",
18946
- "name": "classifyHistoryAuthorEvent",
18947
- "signature": "(parsed: unknown) => \"actionable_unknown\" | \"attributed\" | \"legacy_unknown\" | calls: (parsed: unknown) => \"attributed\" | \"legacy_unknown\" | \"actionable_unknown\""
19474
+ "name": "ASSURANCE_ACTIONS",
19475
+ "signature": "readonly [\"list\", \"show\", \"put\", \"remove\", \"run\", \"verdicts\", \"presets\", \"apply\", \"derive\", \"promote\"]"
18948
19476
  },
18949
19477
  {
18950
19478
  "classification": "supported",
18951
- "kind": "interface",
18952
- "name": "DuplicateCluster",
18953
- "signature": "export interface DuplicateCluster { id: string; items: Omit<SimilarItemMatch, \"score\" | \"reason\">[]; matches: DuplicateClusterMatch[]; max_score: number; }"
19479
+ "kind": "value",
19480
+ "name": "ASSURANCE_DECLARATION_KINDS",
19481
+ "signature": "readonly [\"measurement\", \"assertion\", \"gate\"]"
18954
19482
  },
18955
19483
  {
18956
19484
  "classification": "supported",
18957
- "kind": "interface",
18958
- "name": "DuplicateClusterMatch",
18959
- "signature": "export interface DuplicateClusterMatch { left_id: string; right_id: string; score: number; reason: SimilarItemMatch[\"reason\"]; }"
19485
+ "kind": "value",
19486
+ "name": "ASSURANCE_DOCUMENT_VERSION",
19487
+ "signature": "1"
18960
19488
  },
18961
19489
  {
18962
19490
  "classification": "supported",
18963
- "kind": "interface",
18964
- "name": "DuplicateClustersResult",
18965
- "signature": "export interface DuplicateClustersResult { clusters: DuplicateCluster[]; count: number; threshold: number; source: \"metadata_scan\"; filters: { statuses: string[] | null; since: string | null; }; cost: { item_count: number; candidate_pairs: number; scored_pairs: number; }; }"
19491
+ "kind": "value",
19492
+ "name": "ASSURANCE_GATE_TRIGGERS",
19493
+ "signature": "readonly [\"pre-commit\", \"pre-push\", \"pre-merge\", \"ci\", \"pre-release\", \"post-release\", \"scheduled\", \"on-claim\", \"on-close\"]"
18966
19494
  },
18967
19495
  {
18968
19496
  "classification": "supported",
18969
- "kind": "interface",
19497
+ "kind": "value",
19498
+ "name": "ASSURANCE_MEASUREMENT_SOURCE_KINDS",
19499
+ "signature": "readonly [\"items\", \"dependency_kind\", \"graph\", \"validate\", \"health\", \"history\", \"links\", \"provider\", \"derived\"]"
19500
+ },
19501
+ {
19502
+ "classification": "supported",
19503
+ "kind": "value",
19504
+ "name": "ASSURANCE_PRESET_IDS",
19505
+ "signature": "readonly [\"software-delivery\", \"research\", \"agent-evaluation\", \"operations\"]"
19506
+ },
19507
+ {
19508
+ "classification": "supported",
19509
+ "kind": "type",
19510
+ "name": "AssuranceAction",
19511
+ "signature": "export type AssuranceAction = (typeof ASSURANCE_ACTIONS)[number];"
19512
+ },
19513
+ {
19514
+ "classification": "supported",
19515
+ "kind": "interface",
19516
+ "name": "AssuranceActionInput",
19517
+ "signature": "export interface AssuranceActionInput { action: string; kind?: string; id?: string; definition?: unknown; trigger?: string; tree?: string; gate?: string; limit?: number | string; dry_run?: boolean; fullChangedFields?: boolean; idOnly?: boolean; author?: string; message?: string; preset?: string; owner?: string; apply?: boolean; enforcement?: string; }"
19518
+ },
19519
+ {
19520
+ "classification": "supported",
19521
+ "kind": "type",
19522
+ "name": "AssuranceActionResult",
19523
+ "signature": "export type AssuranceActionResult = AssuranceDeclaration | AssuranceMutationReceipt | AssuranceGateVerdict | AssuranceBundleMutationReceipt | AssurancePreset | { items: AssuranceDerivedProposal[]; count: number; applied?: AssuranceBundleMutationReceipt; } | { items: Array<{ id: AssurancePresetId; title: string; description: string; }>; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; } | { id: string; } | { items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; } | { items: AssuranceGateVerdict[]; count: number; row_contract: { row_keys: [ \"items\" ]; jq_selector: \".items[]\"; }; };"
19524
+ },
19525
+ {
19526
+ "classification": "supported",
19527
+ "kind": "interface",
19528
+ "name": "AssuranceActionRuntimeOptions",
19529
+ "signature": "export interface AssuranceActionRuntimeOptions { workspace?: Omit<CreateAssuranceWorkspaceContextOptions, \"tree_id\" | \"trigger\">; }"
19530
+ },
19531
+ {
19532
+ "classification": "supported",
19533
+ "kind": "interface",
19534
+ "name": "AssuranceArithmeticExpression",
19535
+ "signature": "export interface AssuranceArithmeticExpression { operator: \"add\" | \"subtract\" | \"multiply\" | \"divide\" | \"min\" | \"max\"; operands: AssuranceDerivedExpression[]; }"
19536
+ },
19537
+ {
19538
+ "classification": "supported",
19539
+ "kind": "interface",
19540
+ "name": "AssuranceAssertionDefinition",
19541
+ "signature": "export interface AssuranceAssertionDefinition { id: string; measurement_id: string; owner_item_id: string; scope: AssuranceScope; ceiling?: number; floor?: number; equals?: AssuranceValue; zero?: true; monotone_nondecreasing?: number; monotone_nonincreasing?: number; subset_of?: string[]; lifetime?: AssuranceLifetime; retire_reason?: string; enforcement: AssuranceEnforcement; negative_control: AssuranceNegativeControl; authorization_decision?: string; }"
19542
+ },
19543
+ {
19544
+ "classification": "supported",
19545
+ "kind": "function",
19546
+ "name": "assuranceAssertionUpdateIsLoosening",
19547
+ "signature": "(before: AssuranceAssertionDefinition, after: AssuranceAssertionDefinition) => boolean | calls: (before: AssuranceAssertionDefinition, after: AssuranceAssertionDefinition) => boolean"
19548
+ },
19549
+ {
19550
+ "classification": "supported",
19551
+ "kind": "interface",
19552
+ "name": "AssuranceAssertionVerdict",
19553
+ "signature": "export interface AssuranceAssertionVerdict { assertion_id: string; measurement_id: string; measurement_definition_fingerprint: string; scope: AssuranceScope; population_size: number; observed: AssuranceValue; bound: AssuranceBound; distance: number | null; verdict: \"pass\" | \"fail\" | \"retired\"; enforcement: AssuranceEnforcement; negative_control_proven: boolean; cost: AssuranceMeasurementCost; contributors: string[]; }"
19554
+ },
19555
+ {
19556
+ "classification": "supported",
19557
+ "kind": "interface",
19558
+ "name": "AssuranceBound",
19559
+ "signature": "export interface AssuranceBound { polarity: \"ceiling\" | \"floor\" | \"equals\" | \"zero\" | \"monotone_nondecreasing\" | \"monotone_nonincreasing\" | \"subset_of\"; value: AssuranceValue; }"
19560
+ },
19561
+ {
19562
+ "classification": "supported",
19563
+ "kind": "interface",
19564
+ "name": "AssuranceBundleMutationReceipt",
19565
+ "signature": "export interface AssuranceBundleMutationReceipt { changed: boolean; created_ids: string[]; unchanged_ids: string[]; }"
19566
+ },
19567
+ {
19568
+ "classification": "supported",
19569
+ "kind": "type",
19570
+ "name": "AssuranceDeclaration",
19571
+ "signature": "export type AssuranceDeclaration = AssuranceMeasurementDefinition | AssuranceAssertionDefinition | AssuranceGateDefinition;"
19572
+ },
19573
+ {
19574
+ "classification": "supported",
19575
+ "kind": "interface",
19576
+ "name": "AssuranceDeclarationBundle",
19577
+ "signature": "export interface AssuranceDeclarationBundle { measurements: AssuranceMeasurementDefinition[]; assertions: AssuranceAssertionDefinition[]; gates: AssuranceGateDefinition[]; }"
19578
+ },
19579
+ {
19580
+ "classification": "supported",
19581
+ "kind": "type",
19582
+ "name": "AssuranceDeclarationKind",
19583
+ "signature": "export type AssuranceDeclarationKind = \"measurement\" | \"assertion\" | \"gate\";"
19584
+ },
19585
+ {
19586
+ "classification": "supported",
19587
+ "kind": "interface",
19588
+ "name": "AssuranceDependencyKindSource",
19589
+ "signature": "export interface AssuranceDependencyKindSource { kind: \"dependency_kind\"; dependency_kind: string; }"
19590
+ },
19591
+ {
19592
+ "classification": "supported",
19593
+ "kind": "interface",
19594
+ "name": "AssuranceDependencyRecord",
19595
+ "signature": "export interface AssuranceDependencyRecord { id: string; kind: string; }"
19596
+ },
19597
+ {
19598
+ "classification": "supported",
19599
+ "kind": "type",
19600
+ "name": "AssuranceDerivedExpression",
19601
+ "signature": "export type AssuranceDerivedExpression = AssuranceMeasurementReference | AssuranceLiteralExpression | AssuranceArithmeticExpression;"
19602
+ },
19603
+ {
19604
+ "classification": "supported",
19605
+ "kind": "interface",
19606
+ "name": "AssuranceDerivedProposal",
19607
+ "signature": "export interface AssuranceDerivedProposal { id: string; population_size: number; scope: AssuranceScope; observed: number; declarations: AssuranceDeclarationBundle; }"
19608
+ },
19609
+ {
19610
+ "classification": "supported",
19611
+ "kind": "interface",
19612
+ "name": "AssuranceDerivedSource",
19613
+ "signature": "export interface AssuranceDerivedSource { kind: \"derived\"; expression: AssuranceDerivedExpression; }"
19614
+ },
19615
+ {
19616
+ "classification": "supported",
19617
+ "kind": "interface",
19618
+ "name": "AssuranceDocument",
19619
+ "signature": "export interface AssuranceDocument { version: typeof ASSURANCE_DOCUMENT_VERSION; measurements: AssuranceMeasurementDefinition[]; assertions: AssuranceAssertionDefinition[]; gates: AssuranceGateDefinition[]; }"
19620
+ },
19621
+ {
19622
+ "classification": "supported",
19623
+ "kind": "type",
19624
+ "name": "AssuranceEnforcement",
19625
+ "signature": "export type AssuranceEnforcement = \"block\" | \"warn\" | \"observe\";"
19626
+ },
19627
+ {
19628
+ "classification": "supported",
19629
+ "kind": "interface",
19630
+ "name": "AssuranceEvaluationContext",
19631
+ "signature": "export interface AssuranceEvaluationContext { tree_id: string; items: AssuranceItemRecord[]; history: AssuranceHistoryRecord[]; terminal_statuses?: string[]; provider_capabilities?: Readonly<Record<string, { cost_class: AssuranceProviderCostClass; network: boolean; }>>; external: (source: AssuranceGraphSource | AssuranceValidateSource | AssuranceHealthSource | AssuranceProviderSource) => Promise<AssuranceExternalMeasurementResult>; }"
19632
+ },
19633
+ {
19634
+ "classification": "supported",
19635
+ "kind": "interface",
19636
+ "name": "AssuranceEvaluationRefusalContext",
19637
+ "signature": "export interface AssuranceEvaluationRefusalContext { gate_id?: string; assertion_id?: string; measurement_id?: string; source_kind?: string; field?: string; check?: string; }"
19638
+ },
19639
+ {
19640
+ "classification": "supported",
19641
+ "kind": "class",
19642
+ "name": "AssuranceEvaluationRefusalError",
19643
+ "signature": "export declare class AssuranceEvaluationRefusalError extends TypeError { readonly context: AssuranceEvaluationRefusalContext; constructor(message: string, context?: AssuranceEvaluationRefusalContext); }"
19644
+ },
19645
+ {
19646
+ "classification": "supported",
19647
+ "kind": "interface",
19648
+ "name": "AssuranceExternalMeasurementResult",
19649
+ "signature": "export interface AssuranceExternalMeasurementResult { value: AssuranceValue; population_size: number; cost: number; contributors?: string[]; }"
19650
+ },
19651
+ {
19652
+ "classification": "supported",
19653
+ "kind": "interface",
19654
+ "name": "AssuranceGateDefinition",
19655
+ "signature": "export interface AssuranceGateDefinition { id: string; assertion_ids: string[]; triggers: AssuranceGateTrigger[]; description?: string; provider_policy?: { allowed_providers: string[]; triggers: Partial<Record<AssuranceGateTrigger, { max_cost_class: AssuranceProviderCostClass; allow_network: boolean; }>>; }; }"
19656
+ },
19657
+ {
19658
+ "classification": "supported",
19659
+ "kind": "type",
19660
+ "name": "AssuranceGateTrigger",
19661
+ "signature": "export type AssuranceGateTrigger = (typeof ASSURANCE_GATE_TRIGGERS)[number];"
19662
+ },
19663
+ {
19664
+ "classification": "supported",
19665
+ "kind": "interface",
19666
+ "name": "AssuranceGateVerdict",
19667
+ "signature": "export interface AssuranceGateVerdict { gate_id: string; tree_id: string; trigger: AssuranceGateTrigger; dry_run: boolean; evaluated_at: string; verdict: \"pass\" | \"warn\" | \"block\"; exit_code: 0 | 1; assertions: AssuranceAssertionVerdict[]; assertions_total: number; row_contract: { row_keys: [ \"assertions\" ]; jq_selector: \".assertions[]\"; }; cost: AssuranceMeasurementCost; }"
19668
+ },
19669
+ {
19670
+ "classification": "supported",
19671
+ "kind": "interface",
19672
+ "name": "AssuranceGraphSource",
19673
+ "signature": "export interface AssuranceGraphSource { kind: \"graph\"; operation: string; field: string; parameters?: Record<string, string | number | boolean>; }"
19674
+ },
19675
+ {
19676
+ "classification": "supported",
19677
+ "kind": "interface",
19678
+ "name": "AssuranceHealthSource",
19679
+ "signature": "export interface AssuranceHealthSource { kind: \"health\"; check: string; field: string; }"
19680
+ },
19681
+ {
19682
+ "classification": "supported",
19683
+ "kind": "interface",
19684
+ "name": "AssuranceHistoryRecord",
19685
+ "signature": "export interface AssuranceHistoryRecord { op: string; author: string; agent_harness?: string; agent_model?: string; [key: string]: unknown; }"
19686
+ },
19687
+ {
19688
+ "classification": "supported",
19689
+ "kind": "interface",
19690
+ "name": "AssuranceHistorySource",
19691
+ "signature": "export interface AssuranceHistorySource { kind: \"history\"; op?: string; author?: string; harness?: string; model?: string; }"
19692
+ },
19693
+ {
19694
+ "classification": "supported",
19695
+ "kind": "interface",
19696
+ "name": "AssuranceItemRecord",
19697
+ "signature": "export interface AssuranceItemRecord { id: string; status: string; type: string; tags?: string[]; priority?: string | number; dependencies?: AssuranceDependencyRecord[]; files?: object[]; tests?: object[]; docs?: object[]; [key: string]: unknown; }"
19698
+ },
19699
+ {
19700
+ "classification": "supported",
19701
+ "kind": "interface",
19702
+ "name": "AssuranceItemsSource",
19703
+ "signature": "export interface AssuranceItemsSource { kind: \"items\"; statuses?: string[]; types?: string[]; tags?: string[]; field?: string; equals?: string | number | boolean | null; state?: \"present\" | \"missing\"; }"
19704
+ },
19705
+ {
19706
+ "classification": "supported",
19707
+ "kind": "type",
19708
+ "name": "AssuranceLifetime",
19709
+ "signature": "export type AssuranceLifetime = \"hold\" | \"retire\";"
19710
+ },
19711
+ {
19712
+ "classification": "supported",
19713
+ "kind": "interface",
19714
+ "name": "AssuranceLinksSource",
19715
+ "signature": "export interface AssuranceLinksSource { kind: \"links\"; link: \"files\" | \"tests\" | \"docs\"; state: \"present\" | \"missing\"; }"
19716
+ },
19717
+ {
19718
+ "classification": "supported",
19719
+ "kind": "interface",
19720
+ "name": "AssuranceLiteralExpression",
19721
+ "signature": "export interface AssuranceLiteralExpression { literal: number; }"
19722
+ },
19723
+ {
19724
+ "classification": "supported",
19725
+ "kind": "interface",
19726
+ "name": "AssuranceMeasurementCost",
19727
+ "signature": "export interface AssuranceMeasurementCost { units: number; items_scanned: number; history_entries: number; provider_calls: number; duration_ms: number; }"
19728
+ },
19729
+ {
19730
+ "classification": "supported",
19731
+ "kind": "interface",
19732
+ "name": "AssuranceMeasurementDefinition",
19733
+ "signature": "export interface AssuranceMeasurementDefinition { id: string; description?: string; source: AssuranceMeasurementSource; max_cost?: number; }"
19734
+ },
19735
+ {
19736
+ "classification": "supported",
19737
+ "kind": "interface",
19738
+ "name": "AssuranceMeasurementReference",
19739
+ "signature": "export interface AssuranceMeasurementReference { measurement: string; }"
19740
+ },
19741
+ {
19742
+ "classification": "supported",
19743
+ "kind": "interface",
19744
+ "name": "AssuranceMeasurementResult",
19745
+ "signature": "export interface AssuranceMeasurementResult { id: string; definition_fingerprint: string; value: AssuranceValue; population_size: number; cost: AssuranceMeasurementCost; contributors: string[]; }"
19746
+ },
19747
+ {
19748
+ "classification": "supported",
19749
+ "kind": "type",
19750
+ "name": "AssuranceMeasurementSource",
19751
+ "signature": "export type AssuranceMeasurementSource = AssuranceItemsSource | AssuranceDependencyKindSource | AssuranceGraphSource | AssuranceValidateSource | AssuranceHealthSource | AssuranceHistorySource | AssuranceLinksSource | AssuranceProviderSource | AssuranceDerivedSource;"
19752
+ },
19753
+ {
19754
+ "classification": "supported",
19755
+ "kind": "interface",
19756
+ "name": "AssuranceMutationOptions",
19757
+ "signature": "export interface AssuranceMutationOptions { author?: string; message?: string; authorized_decision_ids?: string[]; }"
19758
+ },
19759
+ {
19760
+ "classification": "supported",
19761
+ "kind": "interface",
19762
+ "name": "AssuranceMutationReceipt",
19763
+ "signature": "export interface AssuranceMutationReceipt { changed: boolean; action: \"created\" | \"updated\" | \"removed\"; kind: AssuranceDeclarationKind; id: string; }"
19764
+ },
19765
+ {
19766
+ "classification": "supported",
19767
+ "kind": "class",
19768
+ "name": "AssuranceMutationRefusalError",
19769
+ "signature": "export declare class AssuranceMutationRefusalError extends TypeError { constructor(message: string); }"
19770
+ },
19771
+ {
19772
+ "classification": "supported",
19773
+ "kind": "interface",
19774
+ "name": "AssuranceNegativeControl",
19775
+ "signature": "export interface AssuranceNegativeControl { cases: AssuranceNegativeControlCase[]; }"
19776
+ },
19777
+ {
19778
+ "classification": "supported",
19779
+ "kind": "interface",
19780
+ "name": "AssuranceNegativeControlCase",
19781
+ "signature": "export interface AssuranceNegativeControlCase { observed: AssuranceValue; expected: \"pass\" | \"fail\"; }"
19782
+ },
19783
+ {
19784
+ "classification": "supported",
19785
+ "kind": "interface",
19786
+ "name": "AssurancePreset",
19787
+ "signature": "export interface AssurancePreset { id: AssurancePresetId; title: string; description: string; declarations: AssuranceDeclarationBundle; }"
19788
+ },
19789
+ {
19790
+ "classification": "supported",
19791
+ "kind": "type",
19792
+ "name": "AssurancePresetId",
19793
+ "signature": "export type AssurancePresetId = (typeof ASSURANCE_PRESET_IDS)[number];"
19794
+ },
19795
+ {
19796
+ "classification": "supported",
19797
+ "kind": "type",
19798
+ "name": "AssuranceProviderCostClass",
19799
+ "signature": "export type AssuranceProviderCostClass = \"low\" | \"medium\" | \"high\";"
19800
+ },
19801
+ {
19802
+ "classification": "supported",
19803
+ "kind": "type",
19804
+ "name": "AssuranceProviderResolver",
19805
+ "signature": "export type AssuranceProviderResolver = (source: AssuranceProviderSource) => Promise<AssuranceExternalMeasurementResult>;"
19806
+ },
19807
+ {
19808
+ "classification": "supported",
19809
+ "kind": "interface",
19810
+ "name": "AssuranceProviderSource",
19811
+ "signature": "export interface AssuranceProviderSource { kind: \"provider\"; provider: string; key: string; parameters?: Record<string, string | number | boolean | null>; }"
19812
+ },
19813
+ {
19814
+ "classification": "supported",
19815
+ "kind": "type",
19816
+ "name": "AssuranceScope",
19817
+ "signature": "export type AssuranceScope = { kind: \"all\"; } | { kind: \"active\"; } | { kind: \"filter\"; measurement_id: string; };"
19818
+ },
19819
+ {
19820
+ "classification": "supported",
19821
+ "kind": "interface",
19822
+ "name": "AssuranceSourceResolutionContext",
19823
+ "signature": "export interface AssuranceSourceResolutionContext { measurement_id?: string; source_kind: string; field: string; check?: string; }"
19824
+ },
19825
+ {
19826
+ "classification": "supported",
19827
+ "kind": "class",
19828
+ "name": "AssuranceSourceResolutionError",
19829
+ "signature": "export declare class AssuranceSourceResolutionError extends TypeError { readonly measurement_id?: string; readonly source_kind: string; readonly field: string; readonly check?: string; constructor(message: string, context: AssuranceSourceResolutionContext); }"
19830
+ },
19831
+ {
19832
+ "classification": "supported",
19833
+ "kind": "interface",
19834
+ "name": "AssuranceValidateSource",
19835
+ "signature": "export interface AssuranceValidateSource { kind: \"validate\"; check: string; field: string; }"
19836
+ },
19837
+ {
19838
+ "classification": "supported",
19839
+ "kind": "type",
19840
+ "name": "AssuranceValue",
19841
+ "signature": "export type AssuranceValue = number | string[];"
19842
+ },
19843
+ {
19844
+ "classification": "supported",
19845
+ "kind": "value",
19846
+ "name": "classifyHistoryAuthorEvent",
19847
+ "signature": "(parsed: unknown) => \"actionable_unknown\" | \"attributed\" | \"legacy_unknown\" | calls: (parsed: unknown) => \"attributed\" | \"legacy_unknown\" | \"actionable_unknown\""
19848
+ },
19849
+ {
19850
+ "classification": "supported",
19851
+ "kind": "function",
19852
+ "name": "createAssurancePreset",
19853
+ "signature": "(id: AssurancePresetId, ownerItemId: string) => AssurancePreset | calls: (id: AssurancePresetId, ownerItemId: string) => AssurancePreset"
19854
+ },
19855
+ {
19856
+ "classification": "supported",
19857
+ "kind": "function",
19858
+ "name": "createAssuranceWorkspaceContext",
19859
+ "signature": "(pmRoot: string, options?: CreateAssuranceWorkspaceContextOptions) => Promise<AssuranceEvaluationContext> | calls: (pmRoot: string, options?: CreateAssuranceWorkspaceContextOptions) => Promise<AssuranceEvaluationContext>"
19860
+ },
19861
+ {
19862
+ "classification": "supported",
19863
+ "kind": "interface",
19864
+ "name": "CreateAssuranceWorkspaceContextOptions",
19865
+ "signature": "export interface CreateAssuranceWorkspaceContextOptions { tree_id?: string; include_history?: boolean; resolve_tree?: boolean; providers?: Readonly<Record<string, AssuranceProviderResolver>>; provider_capabilities?: AssuranceEvaluationContext[\"provider_capabilities\"]; trigger?: string; }"
19866
+ },
19867
+ {
19868
+ "classification": "supported",
19869
+ "kind": "function",
19870
+ "name": "createEmptyAssuranceDocument",
19871
+ "signature": "() => AssuranceDocument | calls: () => AssuranceDocument"
19872
+ },
19873
+ {
19874
+ "classification": "supported",
19875
+ "kind": "function",
19876
+ "name": "deriveAssuranceProposals",
19877
+ "signature": "(context: AssuranceEvaluationContext, ownerItemId: string) => Promise<AssuranceDerivedProposal[]> | calls: (context: AssuranceEvaluationContext, ownerItemId: string) => Promise<AssuranceDerivedProposal[]>"
19878
+ },
19879
+ {
19880
+ "classification": "supported",
19881
+ "kind": "interface",
19882
+ "name": "DuplicateCluster",
19883
+ "signature": "export interface DuplicateCluster { id: string; items: Omit<SimilarItemMatch, \"score\" | \"reason\">[]; matches: DuplicateClusterMatch[]; max_score: number; }"
19884
+ },
19885
+ {
19886
+ "classification": "supported",
19887
+ "kind": "interface",
19888
+ "name": "DuplicateClusterMatch",
19889
+ "signature": "export interface DuplicateClusterMatch { left_id: string; right_id: string; score: number; reason: SimilarItemMatch[\"reason\"]; }"
19890
+ },
19891
+ {
19892
+ "classification": "supported",
19893
+ "kind": "interface",
19894
+ "name": "DuplicateClustersResult",
19895
+ "signature": "export interface DuplicateClustersResult { clusters: DuplicateCluster[]; count: number; threshold: number; source: \"metadata_scan\"; filters: { statuses: string[] | null; since: string | null; }; cost: { item_count: number; candidate_pairs: number; scored_pairs: number; }; }"
19896
+ },
19897
+ {
19898
+ "classification": "supported",
19899
+ "kind": "interface",
18970
19900
  "name": "DuplicateItemIdRow",
18971
19901
  "signature": "export interface DuplicateItemIdRow { id: string; paths: string[]; }"
18972
19902
  },
19903
+ {
19904
+ "classification": "supported",
19905
+ "kind": "function",
19906
+ "name": "evaluateAssuranceAssertion",
19907
+ "signature": "(definition: AssuranceAssertionDefinition, measurement: AssuranceMeasurementResult, options?: { owner_terminal?: boolean; }) => AssuranceAssertionVerdict | calls: (definition: AssuranceAssertionDefinition, measurement: AssuranceMeasurementResult, options?: { owner_terminal?: boolean; }) => AssuranceAssertionVerdict"
19908
+ },
19909
+ {
19910
+ "classification": "supported",
19911
+ "kind": "function",
19912
+ "name": "evaluateAssuranceGate",
19913
+ "signature": "(gateId: string, document: AssuranceDocument, context: AssuranceEvaluationContext, options: { trigger: AssuranceGateTrigger; dry_run?: boolean; }) => Promise<AssuranceGateVerdict> | calls: (gateId: string, document: AssuranceDocument, context: AssuranceEvaluationContext, options: { trigger: AssuranceGateTrigger; dry_run?: boolean; }) => Promise<AssuranceGateVerdict>"
19914
+ },
19915
+ {
19916
+ "classification": "supported",
19917
+ "kind": "function",
19918
+ "name": "evaluateMeasurement",
19919
+ "signature": "(definition: AssuranceMeasurementDefinition, context: AssuranceEvaluationContext, definitions?: AssuranceMeasurementDefinition[]) => Promise<AssuranceMeasurementResult> | calls: (definition: AssuranceMeasurementDefinition, context: AssuranceEvaluationContext, definitions?: AssuranceMeasurementDefinition[]) => Promise<AssuranceMeasurementResult>"
19920
+ },
18973
19921
  {
18974
19922
  "classification": "supported",
18975
19923
  "kind": "function",
@@ -18988,6 +19936,18 @@
18988
19936
  "name": "evaluateSimilarityGovernance",
18989
19937
  "signature": "(candidate: SimilarItemCandidate, options: FindSimilarItemsOptions & { mode: \"advisory\" | \"off\" | \"strict\"; allowDuplicate?: boolean; }) => Promise<SimilarityAdvisory | undefined> | calls: (candidate: SimilarItemCandidate, options: FindSimilarItemsOptions & { mode: \"off\" | \"advisory\" | \"strict\"; allowDuplicate?: boolean; }) => Promise<SimilarityAdvisory | undefined>"
18990
19938
  },
19939
+ {
19940
+ "classification": "supported",
19941
+ "kind": "interface",
19942
+ "name": "ExtensionHostVersionCensus",
19943
+ "signature": "export interface ExtensionHostVersionCensus { host_version: string | null; copies: ExtensionHostVersionCopy[]; mismatches: ExtensionHostVersionCopy[]; warnings: string[]; }"
19944
+ },
19945
+ {
19946
+ "classification": "supported",
19947
+ "kind": "interface",
19948
+ "name": "ExtensionHostVersionCopy",
19949
+ "signature": "export interface ExtensionHostVersionCopy { version: string; path: string; layout: \"host\" | \"npm\" | \"pnpm\" | \"other\"; consumers: string[]; }"
19950
+ },
18991
19951
  {
18992
19952
  "classification": "supported",
18993
19953
  "kind": "function",
@@ -19042,6 +20002,12 @@
19042
20002
  "name": "GcTransactionsSummary",
19043
20003
  "signature": "export interface GcTransactionsSummary { scanned: number; removed: number; retained: number; retention_days: number; }"
19044
20004
  },
20005
+ {
20006
+ "classification": "supported",
20007
+ "kind": "function",
20008
+ "name": "getAssuranceDeclaration",
20009
+ "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, id: string) => Promise<AssuranceDeclaration> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, id: string) => Promise<AssuranceDeclaration>"
20010
+ },
19045
20011
  {
19046
20012
  "classification": "supported",
19047
20013
  "kind": "function",
@@ -19054,11 +20020,17 @@
19054
20020
  "name": "HealthCheck",
19055
20021
  "signature": "export interface HealthCheck { name: \"settings\" | \"directories\" | \"settings_values\" | \"telemetry\" | \"extensions\" | \"storage\" | \"locks\" | \"integrity\" | \"history_drift\" | \"vectorization\"; status: HealthStatus; ok: boolean; details: Record<string, unknown>; }"
19056
20022
  },
20023
+ {
20024
+ "classification": "supported",
20025
+ "kind": "interface",
20026
+ "name": "HealthFinding",
20027
+ "signature": "export interface HealthFinding { warning: string; code: string; check: HealthCheck[\"name\"]; severity: \"advisory\" | \"gate_failing\"; remediation?: string; disposition?: \"no_safe_automatic_remediation\"; }"
20028
+ },
19057
20029
  {
19058
20030
  "classification": "supported",
19059
20031
  "kind": "interface",
19060
20032
  "name": "HealthResult",
19061
- "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warnings: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
20033
+ "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warning_limit?: number; warnings_truncated?: boolean; warnings: string[]; findings: HealthFinding[]; failed_because: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
19062
20034
  },
19063
20035
  {
19064
20036
  "classification": "supported",
@@ -19114,6 +20086,24 @@
19114
20086
  "name": "jaccardSimilarity",
19115
20087
  "signature": "(leftTokens: readonly string[], rightTokens: readonly string[]) => number | calls: (leftTokens: readonly string[], rightTokens: readonly string[]) => number"
19116
20088
  },
20089
+ {
20090
+ "classification": "supported",
20091
+ "kind": "function",
20092
+ "name": "listAssuranceDeclarations",
20093
+ "signature": "(pmRoot: string, kind: AssuranceDeclarationKind) => Promise<{ items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [\"items\"]; jq_selector: \".items[]\"; }; }> | calls: (pmRoot: string, kind: AssuranceDeclarationKind) => Promise<{ items: AssuranceDeclaration[]; count: number; row_contract: { row_keys: [\"items\"]; jq_selector: \".items[]\"; }; }>"
20094
+ },
20095
+ {
20096
+ "classification": "supported",
20097
+ "kind": "function",
20098
+ "name": "listAssuranceVerdicts",
20099
+ "signature": "(pmRoot: string, options?: { gate_id?: string; limit?: number; }) => Promise<AssuranceGateVerdict[]> | calls: (pmRoot: string, options?: { gate_id?: string; limit?: number; }) => Promise<AssuranceGateVerdict[]>"
20100
+ },
20101
+ {
20102
+ "classification": "supported",
20103
+ "kind": "function",
20104
+ "name": "listInvalidProvenanceHistoryStreamIds",
20105
+ "signature": "(pmRoot: string) => Promise<string[]> | calls: (pmRoot: string) => Promise<string[]>"
20106
+ },
19117
20107
  {
19118
20108
  "classification": "supported",
19119
20109
  "kind": "function",
@@ -19144,6 +20134,24 @@
19144
20134
  "name": "MutationHistoryScope",
19145
20135
  "signature": "export type MutationHistoryScope = \"item\" | \"workspace\" | \"history\" | \"conditional\";"
19146
20136
  },
20137
+ {
20138
+ "classification": "supported",
20139
+ "kind": "function",
20140
+ "name": "normalizeAssuranceEvaluation",
20141
+ "signature": "<T>(operation: () => Promise<T>) => Promise<T> | calls: <T>(operation: () => Promise<T>) => Promise<T>"
20142
+ },
20143
+ {
20144
+ "classification": "supported",
20145
+ "kind": "function",
20146
+ "name": "normalizeAssuranceMutation",
20147
+ "signature": "<T>(operation: () => Promise<T>) => Promise<T> | calls: <T>(operation: () => Promise<T>) => Promise<T>"
20148
+ },
20149
+ {
20150
+ "classification": "supported",
20151
+ "kind": "function",
20152
+ "name": "normalizeInvalidHistoryProvenance",
20153
+ "signature": "(entries: HistoryEntry[]) => ProvenanceNormalizationResult | calls: (entries: HistoryEntry[]) => ProvenanceNormalizationResult"
20154
+ },
19147
20155
  {
19148
20156
  "classification": "supported",
19149
20157
  "kind": "function",
@@ -19180,6 +20188,24 @@
19180
20188
  "name": "projectValidateCounts",
19181
20189
  "signature": "(result: ValidateResult) => ValidateCountsResult | calls: (result: ValidateResult) => ValidateCountsResult"
19182
20190
  },
20191
+ {
20192
+ "classification": "supported",
20193
+ "kind": "function",
20194
+ "name": "promoteAssuranceAssertion",
20195
+ "signature": "(pmRoot: string, definition: AssuranceAssertionDefinition, enforcement: Exclude<AssuranceEnforcement, \"observe\">, options?: { author?: string; message?: string; }) => Promise<Awaited<ReturnType<typeof putAssuranceDeclaration>>> | calls: (pmRoot: string, definition: AssuranceAssertionDefinition, enforcement: Exclude<AssuranceEnforcement, \"observe\">, options?: { author?: string; message?: string; }) => Promise<Awaited<ReturnType<typeof putAssuranceDeclaration>>>"
20196
+ },
20197
+ {
20198
+ "classification": "supported",
20199
+ "kind": "interface",
20200
+ "name": "ProvenanceNormalizationReceipt",
20201
+ "signature": "export interface ProvenanceNormalizationReceipt { changed: boolean; events_changed: number; observations_removed: number; invalid_values: ProvenanceValueHealthFinding[]; }"
20202
+ },
20203
+ {
20204
+ "classification": "supported",
20205
+ "kind": "interface",
20206
+ "name": "ProvenanceNormalizationResult",
20207
+ "signature": "export interface ProvenanceNormalizationResult { entries: HistoryEntry[]; receipt: ProvenanceNormalizationReceipt; }"
20208
+ },
19183
20209
  {
19184
20210
  "classification": "supported",
19185
20211
  "kind": "interface",
@@ -19198,6 +20224,24 @@
19198
20224
  "name": "ProvenanceValueHealthFinding",
19199
20225
  "signature": "export interface ProvenanceValueHealthFinding { harness: string; dimension: string; kind: \"boolean\" | \"single_digit\"; count: number; }"
19200
20226
  },
20227
+ {
20228
+ "classification": "supported",
20229
+ "kind": "function",
20230
+ "name": "putAssuranceDeclaration",
20231
+ "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, definition: AssuranceDeclaration, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, definition: AssuranceDeclaration, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt>"
20232
+ },
20233
+ {
20234
+ "classification": "supported",
20235
+ "kind": "function",
20236
+ "name": "putAssuranceDeclarationBundle",
20237
+ "signature": "(pmRoot: string, bundle: AssuranceDeclarationBundle, options?: AssuranceMutationOptions) => Promise<AssuranceBundleMutationReceipt> | calls: (pmRoot: string, bundle: AssuranceDeclarationBundle, options?: AssuranceMutationOptions) => Promise<AssuranceBundleMutationReceipt>"
20238
+ },
20239
+ {
20240
+ "classification": "supported",
20241
+ "kind": "function",
20242
+ "name": "recordAssuranceVerdict",
20243
+ "signature": "(pmRoot: string, verdict: AssuranceGateVerdict, options?: AssuranceMutationOptions) => Promise<void> | calls: (pmRoot: string, verdict: AssuranceGateVerdict, options?: AssuranceMutationOptions) => Promise<void>"
20244
+ },
19201
20245
  {
19202
20246
  "classification": "supported",
19203
20247
  "kind": "interface",
@@ -19210,6 +20254,12 @@
19210
20254
  "name": "ReindexResult",
19211
20255
  "signature": "export interface ReindexResult { ok: boolean; mode: ReindexMode; total_items: number; semantic: { enabled: boolean; stale_items: number; unchanged_items: number; embedded_items: number; vector_upserted: number; batches_completed: number; }; artifacts: { manifest: string; embeddings: string; }; warnings: string[]; generated_at: string; }"
19212
20256
  },
20257
+ {
20258
+ "classification": "supported",
20259
+ "kind": "function",
20260
+ "name": "removeAssuranceDeclaration",
20261
+ "signature": "(pmRoot: string, kind: AssuranceDeclarationKind, id: string, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt> | calls: (pmRoot: string, kind: AssuranceDeclarationKind, id: string, options?: AssuranceMutationOptions) => Promise<AssuranceMutationReceipt>"
20262
+ },
19213
20263
  {
19214
20264
  "classification": "supported",
19215
20265
  "kind": "function",
@@ -19222,6 +20272,18 @@
19222
20272
  "name": "ResurrectedItemRow",
19223
20273
  "signature": "export interface ResurrectedItemRow { id: string; deleted_at: string; deleted_by: string; }"
19224
20274
  },
20275
+ {
20276
+ "classification": "supported",
20277
+ "kind": "function",
20278
+ "name": "runAssuranceAction",
20279
+ "signature": "(input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">, runtime?: AssuranceActionRuntimeOptions) => Promise<AssuranceActionResult> | calls: (input: AssuranceActionInput, global?: Pick<GlobalOptions, \"path\">, runtime?: AssuranceActionRuntimeOptions) => Promise<AssuranceActionResult>"
20280
+ },
20281
+ {
20282
+ "classification": "supported",
20283
+ "kind": "function",
20284
+ "name": "runAssuranceDispatch",
20285
+ "signature": "(args: Record<string, unknown>, options: Record<string, unknown>, global: GlobalOptions) => Promise<AssuranceActionResult> | calls: (args: Record<string, unknown>, options: Record<string, unknown>, global: GlobalOptions) => Promise<AssuranceActionResult>"
20286
+ },
19225
20287
  {
19226
20288
  "classification": "supported",
19227
20289
  "kind": "function",
@@ -19258,6 +20320,12 @@
19258
20320
  "name": "runValidate",
19259
20321
  "signature": "{ (options: ValidateCommandOptions & { counts: true; }, global: GlobalOptions, services?: ValidateMutationServices): Promise<ValidateCountsResult>; (options: ValidateCommandOptions & { counts?: false; }, global: GlobalOptions, services?: ValidateMutationServices): Promise<ValidateResult>; (options: ValidateCommandOptions, global: GlobalOptions, services?: ValidateMutationServices): Promise<ValidateResult | ValidateCountsResult>; } | calls: (options: ValidateCommandOptions & { counts: true; }, global: GlobalOptions, services?: ValidateMutationServices) => Promise<ValidateCountsResult> ; (options: ValidateCommandOptions & { counts?: false; }, global: GlobalOptions, services?: ValidateMutationServices) => Promise<ValidateResult> ; (options: ValidateCommandOptions, global: GlobalOptions, services?: ValidateMutationServices) => Promise<ValidateResult | ValidateCountsResult>"
19260
20322
  },
20323
+ {
20324
+ "classification": "supported",
20325
+ "kind": "function",
20326
+ "name": "scanExtensionHostVersions",
20327
+ "signature": "(loadedExtensions: readonly LoadedExtension[], workspaceRoot: string, hostPackageRoot?: string) => Promise<ExtensionHostVersionCensus> | calls: (loadedExtensions: readonly LoadedExtension[], workspaceRoot: string, hostPackageRoot?: string) => Promise<ExtensionHostVersionCensus>"
20328
+ },
19261
20329
  {
19262
20330
  "classification": "supported",
19263
20331
  "kind": "value",
@@ -19426,6 +20494,18 @@
19426
20494
  "name": "UpgradeResult",
19427
20495
  "signature": "export interface UpgradeResult { ok: boolean; action: \"upgrade\"; dry_run: boolean; scope: ExtensionScope; target?: string; cli: UpgradeCliResult; packages: UpgradePackageResult[]; summary: { requested_cli: boolean; requested_packages: boolean; planned: number; updated: number; skipped: number; failed: number; }; }"
19428
20496
  },
20497
+ {
20498
+ "classification": "supported",
20499
+ "kind": "function",
20500
+ "name": "validateAssertionDefinition",
20501
+ "signature": "(definition: AssuranceAssertionDefinition) => AssuranceAssertionDefinition | calls: (definition: AssuranceAssertionDefinition) => AssuranceAssertionDefinition"
20502
+ },
20503
+ {
20504
+ "classification": "supported",
20505
+ "kind": "function",
20506
+ "name": "validateAssuranceDocument",
20507
+ "signature": "(document: AssuranceDocument) => AssuranceDocument | calls: (document: AssuranceDocument) => AssuranceDocument"
20508
+ },
19429
20509
  {
19430
20510
  "classification": "supported",
19431
20511
  "kind": "interface",
@@ -19456,6 +20536,18 @@
19456
20536
  "name": "ValidateFixesSummary",
19457
20537
  "signature": "export interface ValidateFixesSummary { mode: \"apply\" | \"dry_run\"; auto_fix: boolean; prune_missing: boolean; granted_fix_scopes: string[]; planned_count: number; applied_count: number; gated_count: number; failed_count: number; planned_fixes: Array<Record<string, unknown>>; applied_fixes: Array<Record<string, unknown>>; gated_fixes: Array<Record<string, unknown>>; failed_fixes: Array<Record<string, unknown>>; }"
19458
20538
  },
20539
+ {
20540
+ "classification": "supported",
20541
+ "kind": "function",
20542
+ "name": "validateGateDefinition",
20543
+ "signature": "(definition: AssuranceGateDefinition) => AssuranceGateDefinition | calls: (definition: AssuranceGateDefinition) => AssuranceGateDefinition"
20544
+ },
20545
+ {
20546
+ "classification": "supported",
20547
+ "kind": "function",
20548
+ "name": "validateMeasurementDefinition",
20549
+ "signature": "(definition: AssuranceMeasurementDefinition) => AssuranceMeasurementDefinition | calls: (definition: AssuranceMeasurementDefinition) => AssuranceMeasurementDefinition"
20550
+ },
19459
20551
  {
19460
20552
  "classification": "supported",
19461
20553
  "kind": "interface",
@@ -19624,6 +20716,12 @@
19624
20716
  "name": "collectOrderingCycles",
19625
20717
  "signature": "(successors: Map<string, string[]>) => string[][] | calls: (successors: Map<string, string[]>) => string[][]"
19626
20718
  },
20719
+ {
20720
+ "classification": "supported",
20721
+ "kind": "function",
20722
+ "name": "collectOrderingStorageContradictions",
20723
+ "signature": "(items: readonly DependencyReferenceHolder[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => OrderingStorageContradiction[] | calls: (items: readonly DependencyReferenceHolder[], isTerminal?: (status: ItemStatus) => boolean, registry?: RelationshipKindRegistry) => OrderingStorageContradiction[]"
20724
+ },
19627
20725
  {
19628
20726
  "classification": "supported",
19629
20727
  "kind": "function",
@@ -19792,6 +20890,12 @@
19792
20890
  "name": "formatDuplicateEdgeGroup",
19793
20891
  "signature": "(group: DuplicateRelationshipEdgeGroup) => string | calls: (group: DuplicateRelationshipEdgeGroup) => string"
19794
20892
  },
20893
+ {
20894
+ "classification": "supported",
20895
+ "kind": "function",
20896
+ "name": "formatOrderingStorageContradiction",
20897
+ "signature": "(contradiction: Pick<OrderingStorageContradiction, \"dependency_kind\" | \"holder_id\" | \"target_id\">) => string | calls: (contradiction: Pick<OrderingStorageContradiction, \"holder_id\" | \"target_id\" | \"dependency_kind\">) => string"
20898
+ },
19795
20899
  {
19796
20900
  "classification": "supported",
19797
20901
  "kind": "value",
@@ -20098,6 +21202,12 @@
20098
21202
  "name": "orderingPredecessors",
20099
21203
  "signature": "(graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]> | calls: (graph: RelationshipGraph, id: string, options?: GraphTraversalOptions) => RelationshipQueryResult<string[]>"
20100
21204
  },
21205
+ {
21206
+ "classification": "supported",
21207
+ "kind": "interface",
21208
+ "name": "OrderingStorageContradiction",
21209
+ "signature": "export interface OrderingStorageContradiction { holder_id: string; target_id: string; dependency_kind: string; holder_status: ItemStatus; legacy_terminal: boolean; }"
21210
+ },
20101
21211
  {
20102
21212
  "classification": "supported",
20103
21213
  "kind": "function",
@@ -20156,13 +21266,13 @@
20156
21266
  "classification": "supported",
20157
21267
  "kind": "interface",
20158
21268
  "name": "RelationshipAuditDelta",
20159
- "signature": "export interface RelationshipAuditDelta { baseline_saved_at: string; same_snapshot: boolean; affected_subjects_by_code: Record<string, number>; profile: { nodes: number; edges: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; }; }"
21269
+ "signature": "export interface RelationshipAuditDelta { baseline_saved_at: string; same_snapshot: boolean; affected_subjects_by_code: Record<string, number>; profile: { nodes: number; recorded_nodes?: number; edges: number; informative_edges?: number; redundant_edges?: number; ordering_contradiction_edges?: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; }; }"
20160
21270
  },
20161
21271
  {
20162
21272
  "classification": "supported",
20163
21273
  "kind": "interface",
20164
21274
  "name": "RelationshipAuditFinding",
20165
- "signature": "export interface RelationshipAuditFinding { code: RelationshipAuditFindingCode; severity: RelationshipAuditSeverity; policy: string; message: string; count: number; sample: string[]; sample_truncated: boolean; remediation: string; }"
21275
+ "signature": "export interface RelationshipAuditFinding { code: RelationshipAuditFindingCode; severity: RelationshipAuditSeverity; policy: string; message: string; count: number; sample: string[]; evidence?: string[]; sample_truncated: boolean; remediation: string; }"
20166
21276
  },
20167
21277
  {
20168
21278
  "classification": "supported",
@@ -20276,7 +21386,7 @@
20276
21386
  "classification": "supported",
20277
21387
  "kind": "interface",
20278
21388
  "name": "RelationshipCoverageProfile",
20279
- "signature": "export interface RelationshipCoverageProfile { nodes: number; edges: number; edge_basis: \"deduplicated_directed\"; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; articulation_points: number; bridge_edges: number; outcome_nodes: number; active_outcome_reachable_nodes: number; active_outcome_unreachable_nodes: number; active_outcome_reachability_basis_points: number; terminal_nodes: number; terminal_outcome_reachable_nodes: number; terminal_outcome_unreachable_nodes: number; terminal_outcome_reachability_basis_points: number; outcome_reachable_nodes: number; outcome_unreachable_nodes: number; outcome_reachability_basis_points: number; finding_subjects_by_code: Record<RelationshipAuditFindingCode, number>; }"
21389
+ "signature": "export interface RelationshipCoverageProfile { nodes: number; recorded_nodes?: number; edges: number; informative_edges?: number; redundant_edges?: number; ordering_contradiction_edges?: number; edge_basis: \"deduplicated_directed\"; edges_by_kind: Record<string, number>; edge_share_by_kind: Record<string, number>; semantic_edges: number; semantic_edge_share: number; active_nodes: number; missing_nodes: number; isolated_active_nodes: number; degree_leq_one_active_nodes: number; coverage_by_type: Record<string, RelationshipCoverageTypeProfile>; articulation_points: number; bridge_edges: number; outcome_nodes: number; active_outcome_reachable_nodes: number; active_outcome_unreachable_nodes: number; active_outcome_reachability_basis_points: number; terminal_nodes: number; terminal_outcome_reachable_nodes: number; terminal_outcome_unreachable_nodes: number; terminal_outcome_reachability_basis_points: number; outcome_reachable_nodes: number; outcome_unreachable_nodes: number; outcome_reachability_basis_points: number; finding_subjects_by_code: Record<RelationshipAuditFindingCode, number>; }"
20280
21390
  },
20281
21391
  {
20282
21392
  "classification": "supported",
@@ -20714,7 +21824,7 @@
20714
21824
  "classification": "supported",
20715
21825
  "kind": "interface",
20716
21826
  "name": "WorkspaceRelationshipAssembly",
20717
- "signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; legacyAliasCounts: Record<string, number>; }"
21827
+ "signature": "export interface WorkspaceRelationshipAssembly { graph: RelationshipGraph; details: WorkspaceRelationshipNodeDetails[]; missingIdSet: Set<string>; dangling: DanglingDependencyReferenceSummary; duplicateRows: DuplicateDependencyRow[]; orderingContradictions?: OrderingStorageContradiction[]; legacyAliasCounts: Record<string, number>; }"
20718
21828
  },
20719
21829
  {
20720
21830
  "classification": "supported",
@@ -21458,7 +22568,7 @@
21458
22568
  "classification": "supported",
21459
22569
  "kind": "interface",
21460
22570
  "name": "ContextRankingSummary",
21461
- "signature": "export interface ContextRankingSummary { model: string; available_signals: ContextRelevanceSignalName[]; items: Array<{ id: string; rank: number; baseline_rank: number; score: number; contributions: ContextRelevanceContributions; }>; feature_store?: { source: \"derived_index\" | \"scan_fallback\"; cache_status: \"fresh\" | \"rebuilt\"; source_cursor: string; generated_at: string; }; }"
22571
+ "signature": "export interface ContextRankingSummary { model: string; available_signals: ContextRelevanceSignalName[]; items: Array<{ id: string; rank: number; baseline_rank: number; score: number; contributions: ContextRelevanceContributions; }>; candidate_count: number; omitted_count: number; feature_store?: { source: \"derived_index\" | \"scan_fallback\"; cache_status: \"fresh\" | \"rebuilt\"; source_cursor: string; generated_at: string; }; }"
21462
22572
  },
21463
22573
  {
21464
22574
  "classification": "supported",
@@ -21610,6 +22720,12 @@
21610
22720
  "name": "decodeQueryCursor",
21611
22721
  "signature": "(cursor: unknown, expectedFingerprint: string) => string | calls: (cursor: unknown, expectedFingerprint: string) => string"
21612
22722
  },
22723
+ {
22724
+ "classification": "supported",
22725
+ "kind": "function",
22726
+ "name": "decodeQueryCursorEnvelope",
22727
+ "signature": "(cursor: unknown) => QueryCursorEnvelope | calls: (cursor: unknown) => QueryCursorEnvelope"
22728
+ },
21613
22729
  {
21614
22730
  "classification": "supported",
21615
22731
  "kind": "function",
@@ -22066,6 +23182,12 @@
22066
23182
  "name": "QUERY_CURSOR_CONTRACT",
22067
23183
  "signature": "Readonly<{ version: 1; max_length: 4096; }>"
22068
23184
  },
23185
+ {
23186
+ "classification": "supported",
23187
+ "kind": "interface",
23188
+ "name": "QueryCursorEnvelope",
23189
+ "signature": "export interface QueryCursorEnvelope { version: number; fingerprint: string; after_id: string; after_index?: number; snapshot?: string; }"
23190
+ },
22069
23191
  {
22070
23192
  "classification": "supported",
22071
23193
  "kind": "interface",
@@ -22508,7 +23630,7 @@
22508
23630
  "classification": "supported",
22509
23631
  "kind": "function",
22510
23632
  "name": "toContextRankingSummary",
22511
- "signature": "<TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult) => ContextRankingSummary | calls: <TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult) => ContextRankingSummary"
23633
+ "signature": "<TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult, servedItemIds?: ReadonlySet<string>) => ContextRankingSummary | calls: <TItem>(report: ContextRelevanceReport<TItem>, featureStore?: ContextSignalStoreReadResult, servedItemIds?: ReadonlySet<string>) => ContextRankingSummary"
22512
23634
  },
22513
23635
  {
22514
23636
  "classification": "supported",
@@ -22886,7 +24008,7 @@
22886
24008
  "classification": "advanced_export",
22887
24009
  "kind": "interface",
22888
24010
  "name": "ContractsResult",
22889
- "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[]; 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[]; }; 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\"]; }>; }; }"
24011
+ "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[]; 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\"]; }>; }; }"
22890
24012
  },
22891
24013
  {
22892
24014
  "classification": "supported",
@@ -23282,7 +24404,7 @@
23282
24404
  "classification": "advanced_export",
23283
24405
  "kind": "interface",
23284
24406
  "name": "GlobalOptions",
23285
- "signature": "export interface GlobalOptions { json?: boolean; quiet?: boolean; noChangedFields?: boolean; fullChangedFields?: boolean; idOnly?: boolean; lean?: boolean; tokenAccounting?: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputRowContract?: boolean; path?: string; noExtensions?: boolean; noPager?: boolean; profile?: boolean; author?: string; defaultOutputFormat?: \"toon\" | \"json\"; }"
24407
+ "signature": "export interface GlobalOptions { json?: boolean; quiet?: boolean; noChangedFields?: boolean; fullChangedFields?: boolean; idOnly?: boolean; lean?: boolean; tokenAccounting?: boolean; outputInclude?: string; outputLimit?: string; outputBudget?: string; outputFormat?: \"toon\" | \"json\"; outputSession?: string; outputCursor?: string; outputRowContract?: boolean; path?: string; noExtensions?: boolean; noPager?: boolean; profile?: boolean; author?: string; defaultOutputFormat?: \"toon\" | \"json\"; }"
23286
24408
  },
23287
24409
  {
23288
24410
  "classification": "supported",
@@ -23324,7 +24446,7 @@
23324
24446
  "classification": "supported",
23325
24447
  "kind": "interface",
23326
24448
  "name": "HealthResult",
23327
- "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warnings: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
24449
+ "signature": "export interface HealthResult { ok: boolean; checks: HealthCheck[]; warning_count?: number; warning_limit?: number; warnings_truncated?: boolean; warnings: string[]; findings: HealthFinding[]; failed_because: string[]; projection?: { mode: \"brief\" | \"summary\" | \"full\"; warning_count: number; warnings_truncated: boolean; detail_limit: number; omitted_checks?: HealthCheck[\"name\"][]; }; generated_at: string; }"
23328
24450
  },
23329
24451
  {
23330
24452
  "classification": "supported",
@@ -23948,25 +25070,25 @@
23948
25070
  "classification": "supported",
23949
25071
  "kind": "interface",
23950
25072
  "name": "PmReadOutputBudgetExceeded",
23951
- "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; }; read_output: PmReadOutputReceipt; }"
25073
+ "signature": "export interface PmReadOutputBudgetExceeded { output_budget_exceeded: { omitted_result: true; reason: \"requested_budget_infeasible\"; restore_with: string; recovery: { outputBudget: \"unbounded\"; }; }; read_output: PmReadOutputReceipt; }"
23952
25074
  },
23953
25075
  {
23954
25076
  "classification": "supported",
23955
25077
  "kind": "interface",
23956
25078
  "name": "PmReadOutputOptions",
23957
- "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputRowContract?: boolean; }"
25079
+ "signature": "export interface PmReadOutputOptions { outputInclude?: string | string[]; outputLimit?: string | number | \"unbounded\"; outputBudget?: string | number | \"unbounded\"; outputFormat?: \"json\" | \"toon\"; outputSession?: string | PmReadOutputSessionState; outputCursor?: string; outputRowContract?: boolean; }"
23958
25080
  },
23959
25081
  {
23960
25082
  "classification": "supported",
23961
25083
  "kind": "type",
23962
25084
  "name": "PmReadOutputResult",
23963
- "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
25085
+ "signature": "export type PmReadOutputResult<Result> = (Result & { read_output?: PmReadOutputReceipt; read_session?: PmReadOutputSessionReceipt; output_budget_truncation?: PmReadOutputTruncationDisclosure; }) | (PmReadOutputBudgetExceeded & { read_session?: PmReadOutputSessionReceipt; });"
23964
25086
  },
23965
25087
  {
23966
25088
  "classification": "supported",
23967
25089
  "kind": "type",
23968
25090
  "name": "PmReadOutputResultFor",
23969
- "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
25091
+ "signature": "export type PmReadOutputResultFor<Result, Options> = \"outputBudget\" extends keyof Options ? PmReadOutputResult<Result> : \"outputSession\" extends keyof Options ? PmReadOutputResult<Result> : \"outputCursor\" extends keyof Options ? PmReadOutputResult<Result> : Result;"
23970
25092
  },
23971
25093
  {
23972
25094
  "classification": "supported",
@@ -23984,7 +25106,7 @@
23984
25106
  "classification": "supported",
23985
25107
  "kind": "interface",
23986
25108
  "name": "PmReadOutputSurfaceContract",
23987
- "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; }"
25109
+ "signature": "export interface PmReadOutputSurfaceContract { command: PmReadOutputSurface; dimensions: Record<PmReadOutputDimension, PmReadOutputDimensionContract>; precedence: readonly [ \"canonical\", \"legacy\", \"intent\", \"default\" ]; budget_retention_policy: \"ordered_prefix\" | \"verdict_priority\"; }"
23988
25110
  },
23989
25111
  {
23990
25112
  "classification": "supported",
@@ -25880,6 +27002,10 @@
25880
27002
  "profile_title_empty",
25881
27003
  "project_runtime_stale_mutation",
25882
27004
  "project_runtime_stale_read",
27005
+ "provenance_value_domain_invalid",
27006
+ "read_output_cursor_command_mismatch",
27007
+ "read_output_cursor_invalid",
27008
+ "read_output_cursor_stale",
25883
27009
  "redundant_edge",
25884
27010
  "reindex_already_running",
25885
27011
  "reserved_item_field",