@unbrained/pm-cli 2026.8.18 → 2026.8.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/CHANGELOG.md +16 -2
- package/dist/cli/error-guidance.js +3 -2
- package/dist/cli/help-content.js +32 -13
- package/dist/cli/help-json-payload.d.ts +15 -0
- package/dist/cli/help-json-payload.js +101 -23
- package/dist/cli/main.js +6 -2
- package/dist/cli/register-list-query.js +8 -5
- package/dist/cli/register-mutation.js +8 -8
- package/dist/cli/register-operations.js +6 -6
- package/dist/cli-bundle/bundle-manifest.json +139 -139
- package/dist/cli-bundle/chunks/chunk-4NRRH7AM.js +2 -0
- package/dist/cli-bundle/chunks/{chunk-UYCLQVL2.js → chunk-4THEB6PD.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-BSK2IN3C.js → chunk-BHYMXLAE.js} +2 -2
- package/dist/cli-bundle/chunks/chunk-GWMXAQOD.js +197 -0
- package/dist/cli-bundle/chunks/chunk-HVFQTLYM.js +35 -0
- package/dist/cli-bundle/chunks/chunk-OI4XI562.js +5 -0
- package/dist/cli-bundle/chunks/{chunk-YRGOLZA7.js → chunk-OIOKV6NO.js} +3 -3
- package/dist/cli-bundle/chunks/{chunk-5UZZAJKR.js → chunk-QXSH7BLM.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-RZQTVMRQ.js → chunk-TOXJM4WA.js} +2 -2
- package/dist/cli-bundle/chunks/{chunk-GNFAFIJI.js → chunk-YBMRWW4E.js} +44 -44
- package/dist/cli-bundle/chunks/{register-list-query-I23LALEE.js → register-list-query-Y56KINDU.js} +11 -11
- package/dist/cli-bundle/chunks/register-mutation-AUWVCW4M.js +20 -0
- package/dist/cli-bundle/chunks/register-operations-PZQPHXW5.js +2 -0
- package/dist/cli-bundle/chunks/{register-setup-PPPEF3SN.js → register-setup-I4LUHGVW.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-5AF3ZBNB.js → chunk-34QBIYZI.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-V5XTGLK7.js → chunk-BJRYFVSH.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-DKPLYW3L.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-ODOVCP45.js → chunk-EF6ZS5GH.js} +44 -44
- package/dist/cli-bundle/focused-chunks/{chunk-EX6MKP2X.js → chunk-ESISGDAY.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-EUEGXZ2A.js → chunk-EXBCLIBU.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-UI6AJ5TD.js → chunk-JDOMQ7VQ.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-L623ZPNK.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-MCZXYZAF.js +2 -0
- package/dist/cli-bundle/focused-chunks/chunk-ODHQEECS.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-3TKWMNKF.js → chunk-PRHY2IMX.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-RZU5U6Q7.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-M62NO7EI.js → chunk-US7VEYZG.js} +2 -2
- package/dist/cli-bundle/focused-chunks/{chunk-TN4AE665.js → chunk-VXDSU5MC.js} +2 -2
- package/dist/cli-bundle/focused-chunks/chunk-YBMGXBFV.js +16 -0
- package/dist/cli-bundle/focused-chunks/chunk-YLVBJ6GF.js +2 -0
- package/dist/cli-bundle/focused-chunks/{chunk-K43KKAFS.js → chunk-ZBIQQYMI.js} +2 -2
- package/dist/cli-bundle/main.js +13 -13
- package/dist/cli-bundle/sdk-authoring.js +1 -1
- package/dist/cli-bundle/sdk-contracts.js +2 -1
- package/dist/cli-bundle/sdk-core.js +31 -31
- package/dist/cli-bundle/sdk-governance.js +1 -1
- package/dist/cli-bundle/sdk-graph.js +1 -1
- package/dist/cli-bundle/sdk-merge.js +32 -32
- package/dist/cli-bundle/sdk-query.js +1 -1
- package/dist/cli-bundle/sdk-runtime.js +1 -1
- package/dist/cli-bundle/sdk-testing.js +1 -1
- package/dist/cli-bundle/sdk.js +5 -4
- package/dist/core/shared/errors.d.ts +2 -0
- package/dist/core/shared/errors.js +2 -2
- package/dist/sdk/agent/refusal-closure.d.ts +41 -0
- package/dist/sdk/agent/refusal-closure.js +92 -0
- package/dist/sdk/agent/refusal-reachability.d.ts +1 -1
- package/dist/sdk/agent-capability-contracts.d.ts +13 -0
- package/dist/sdk/agent-capability-contracts.js +104 -7
- package/dist/sdk/cli-contracts/command-aliases.js +18 -2
- package/dist/sdk/cli-contracts/commander-mutation-options.js +30 -6
- package/dist/sdk/cli-contracts/commander-types.js +5 -4
- package/dist/sdk/cli-contracts/flag-contracts.d.ts +5 -0
- package/dist/sdk/cli-contracts/flag-contracts.js +75 -8
- package/dist/sdk/cli-contracts/flag-lexicon-contracts.d.ts +55 -0
- package/dist/sdk/cli-contracts/flag-lexicon-contracts.js +240 -0
- package/dist/sdk/cli-contracts/grammar-contracts.d.ts +81 -0
- package/dist/sdk/cli-contracts/grammar-contracts.js +615 -2
- package/dist/sdk/cli-contracts/runtime-contracts.d.ts +15 -4
- package/dist/sdk/cli-contracts/runtime-contracts.js +42 -12
- package/dist/sdk/cli-contracts/tool-option-contracts.d.ts +28 -1
- package/dist/sdk/cli-contracts/tool-option-contracts.js +38 -3
- package/dist/sdk/cli-contracts.d.ts +3 -2
- package/dist/sdk/cli-contracts.js +5 -4
- package/dist/sdk/context-intent-contracts.d.ts +2 -2
- package/dist/sdk/context-intent-contracts.js +22 -7
- package/dist/sdk/contracts.d.ts +2 -0
- package/dist/sdk/contracts.js +4 -2
- package/dist/sdk/flag-invocation-contracts.d.ts +37 -0
- package/dist/sdk/flag-invocation-contracts.js +218 -9
- package/dist/sdk/generated/generated-error-code-catalog-part-1.js +134 -2
- package/dist/sdk/generated/generated-error-code-catalog-part-2.js +154 -22
- package/dist/sdk/index.d.ts +7 -5
- package/dist/sdk/index.js +7 -5
- package/dist/sdk/output-projection.d.ts +2 -0
- package/dist/sdk/output-projection.js +11 -5
- package/dist/sdk/query/get.js +25 -6
- package/dist/sdk/query/list.js +16 -2
- package/dist/sdk/query/search-contracts.d.ts +1 -1
- package/dist/sdk/query/search-contracts.js +23 -9
- package/dist/sdk/query/search.js +3 -3
- package/dist/sdk/read-output/continuation.d.ts +1 -1
- package/dist/sdk/read-output/continuation.js +7 -24
- package/dist/sdk/read-output-contracts.js +55 -6
- package/dist/sdk/read-output-rows.d.ts +4 -0
- package/dist/sdk/read-output-rows.js +47 -18
- package/dist/sdk/runtime.js +9 -5
- package/dist/sdk/workspace-snapshot.d.ts +2 -0
- package/dist/sdk/workspace-snapshot.js +10 -2
- package/docs/COMMANDS.md +16 -4
- package/docs/OUTPUT_PROJECTION_CONTRACTS.md +11 -2
- package/docs/READ_OUTPUT_CONTRACTS.md +10 -6
- package/docs/SDK.md +6 -0
- package/docs/TESTING.md +14 -1
- package/docs/generated/AGENT_COMMAND_SURFACE.md +78 -78
- package/docs/generated/FLAG_LEXICON_BUDGETS.md +76 -0
- package/marketplace.json +2 -2
- package/package.json +5 -3
- package/packages/pm-beads/package.json +1 -1
- package/packages/pm-calendar/package.json +1 -1
- package/packages/pm-command-kit/package.json +1 -1
- package/packages/pm-digital-twin/package.json +1 -1
- package/packages/pm-governance-audit/package.json +1 -1
- package/packages/pm-guide-shell/package.json +1 -1
- package/packages/pm-kanban/package.json +1 -1
- package/packages/pm-lifecycle-hooks/package.json +1 -1
- package/packages/pm-linked-test-adapters/package.json +1 -1
- package/packages/pm-search-advanced/package.json +1 -1
- package/packages/pm-templates/package.json +1 -1
- package/packages/pm-todos/package.json +1 -1
- package/packages/pm-vcs/package.json +1 -1
- package/plugins/pm-claude/.claude-plugin/plugin.json +1 -1
- package/plugins/pm-codex/.codex-plugin/plugin.json +1 -1
- package/scripts/generate-agent-capability-surfaces.mjs +20 -14
- package/sdk/public-surface.json +576 -12
- package/dist/cli-bundle/chunks/chunk-ALDJGKAK.js +0 -2
- package/dist/cli-bundle/chunks/chunk-DY4DMUMC.js +0 -197
- package/dist/cli-bundle/chunks/chunk-L5Q2CLPE.js +0 -35
- package/dist/cli-bundle/chunks/chunk-PVRUN5ZS.js +0 -5
- package/dist/cli-bundle/chunks/register-mutation-6YGU3GPH.js +0 -20
- package/dist/cli-bundle/chunks/register-operations-4HTFC6J7.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-2PN4TJXH.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-C5IW2NDA.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-RNDNMARJ.js +0 -16
- package/dist/cli-bundle/focused-chunks/chunk-TVV2DONO.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-WGHQVU6P.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-XYNBXTDQ.js +0 -2
- package/dist/cli-bundle/focused-chunks/chunk-Z56ECT7I.js +0 -2
package/sdk/public-surface.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"aggregate_completeness": {
|
|
3
|
-
"covered_symbols":
|
|
3
|
+
"covered_symbols": 1723,
|
|
4
4
|
"excluded": [
|
|
5
5
|
{
|
|
6
6
|
"name": "_testOnlyCliContracts",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}
|
|
9
9
|
],
|
|
10
10
|
"missing": [],
|
|
11
|
-
"required_symbols":
|
|
11
|
+
"required_symbols": 1724
|
|
12
12
|
},
|
|
13
13
|
"breaking_acknowledgements": [
|
|
14
14
|
{
|
|
@@ -790,6 +790,68 @@
|
|
|
790
790
|
],
|
|
791
791
|
"package_version": "2026.8.17",
|
|
792
792
|
"reason": "Restore source compatibility for pre-ux PmSettings object literals; ux is normalized at runtime and the declaration change only widens accepted inputs."
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"changes": [
|
|
796
|
+
"signature ./sdk:ContractsResult",
|
|
797
|
+
"signature ./sdk:PM_CLI_GRAMMAR_CONTRACT",
|
|
798
|
+
"signature ./sdk/contracts:PM_CLI_GRAMMAR_CONTRACT",
|
|
799
|
+
"signature ./sdk/runtime:ContractsResult"
|
|
800
|
+
],
|
|
801
|
+
"package_version": "2026.8.18",
|
|
802
|
+
"reason": "Extend public contract receipts with additive positional grammar metadata while preserving all existing fields and runtime behavior."
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
"changes": [
|
|
806
|
+
"signature ./sdk:PmPositionalActionContract",
|
|
807
|
+
"signature ./sdk/contracts:PmPositionalActionContract"
|
|
808
|
+
],
|
|
809
|
+
"package_version": "2026.8.18",
|
|
810
|
+
"reason": "Widen positional-action parent union for governed workspace snapshot actions; existing values and behavior remain compatible"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"changes": [
|
|
814
|
+
"signature ./sdk:ReadRowContract"
|
|
815
|
+
],
|
|
816
|
+
"package_version": "2026.8.18",
|
|
817
|
+
"reason": "ReadRowContract adds an optional continuation_row_keys field; existing consumers remain source-compatible while nested resumability becomes explicit."
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"changes": [
|
|
821
|
+
"signature ./sdk:PmFlagLexiconFinding",
|
|
822
|
+
"signature ./sdk:PmRefusalClosureFinding",
|
|
823
|
+
"signature ./sdk/contracts:PmFlagLexiconFinding",
|
|
824
|
+
"signature ./sdk/contracts:PmRefusalClosureFinding"
|
|
825
|
+
],
|
|
826
|
+
"package_version": "2026.8.18",
|
|
827
|
+
"reason": "Finalize unpublished recovery and lexicon finding unions before first release"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"changes": [
|
|
831
|
+
"symbol ./sdk:PM_FLAG_LEXICON removed",
|
|
832
|
+
"symbol ./sdk/contracts:PM_FLAG_LEXICON removed"
|
|
833
|
+
],
|
|
834
|
+
"package_version": "2026.8.18",
|
|
835
|
+
"reason": "Finalize unpublished flag lexicon as a lazy SDK function to preserve import budgets"
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"changes": [
|
|
839
|
+
"symbol ./sdk:PM_COMMAND_FLAG_BUDGETS removed",
|
|
840
|
+
"symbol ./sdk/contracts:PM_COMMAND_FLAG_BUDGETS removed"
|
|
841
|
+
],
|
|
842
|
+
"package_version": "2026.8.18",
|
|
843
|
+
"reason": "Finalize unpublished flag budget surface as a lazy SDK function to preserve import ratchets"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"changes": [
|
|
847
|
+
"signature ./sdk:applyContextIntentProjection",
|
|
848
|
+
"signature ./sdk:PmCliErrorRecoveryPayload",
|
|
849
|
+
"signature ./sdk:resolveContextIntentContract",
|
|
850
|
+
"signature ./sdk/contracts:applyContextIntentProjection",
|
|
851
|
+
"signature ./sdk/contracts:resolveContextIntentContract"
|
|
852
|
+
],
|
|
853
|
+
"package_version": "2026.8.18",
|
|
854
|
+
"reason": "Add optional operand-preserving recovery argv parameters and structured retry metadata while retaining existing call compatibility"
|
|
793
855
|
}
|
|
794
856
|
],
|
|
795
857
|
"entrypoints": {
|
|
@@ -1370,7 +1432,7 @@
|
|
|
1370
1432
|
"classification": "contract_data",
|
|
1371
1433
|
"kind": "function",
|
|
1372
1434
|
"name": "applyContextIntentProjection",
|
|
1373
|
-
"signature": "(command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown
|
|
1435
|
+
"signature": "(command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown>, positionalArguments?: readonly string[]) => Record<string, unknown> | calls: (command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown>, positionalArguments?: readonly string[]) => Record<string, unknown>"
|
|
1374
1436
|
},
|
|
1375
1437
|
{
|
|
1376
1438
|
"classification": "supported",
|
|
@@ -2680,6 +2742,12 @@
|
|
|
2680
2742
|
"name": "clearWorkspaceContractsCache",
|
|
2681
2743
|
"signature": "() => void | calls: () => void"
|
|
2682
2744
|
},
|
|
2745
|
+
{
|
|
2746
|
+
"classification": "contract_data",
|
|
2747
|
+
"kind": "interface",
|
|
2748
|
+
"name": "CliFlagArityObservation",
|
|
2749
|
+
"signature": "export interface CliFlagArityObservation { command: string; flag: string; takes_value: boolean; value_required: boolean; repeatable: boolean; }"
|
|
2750
|
+
},
|
|
2683
2751
|
{
|
|
2684
2752
|
"classification": "contract_data",
|
|
2685
2753
|
"kind": "interface",
|
|
@@ -2698,6 +2766,18 @@
|
|
|
2698
2766
|
"name": "CliFlagInvocationContract",
|
|
2699
2767
|
"signature": "export interface CliFlagInvocationContract extends CliFlagContract { description: string; takes_value: boolean; value_required: boolean; value_type: \"string\" | \"number\" | \"boolean\"; required: boolean; repeatable: boolean; input_sources: CliFlagInputSource[]; stdin_token?: \"-\"; }"
|
|
2700
2768
|
},
|
|
2769
|
+
{
|
|
2770
|
+
"classification": "contract_data",
|
|
2771
|
+
"kind": "interface",
|
|
2772
|
+
"name": "CliFlagInvocationParityFinding",
|
|
2773
|
+
"signature": "export interface CliFlagInvocationParityFinding { code: \"duplicate_observation\" | \"missing_observation\" | \"takes_value_mismatch\" | \"value_required_mismatch\" | \"repeatable_mismatch\" | \"undeclared_observation\"; command: string; flag: string; detail: string; }"
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
"classification": "contract_data",
|
|
2777
|
+
"kind": "interface",
|
|
2778
|
+
"name": "CliFlagInvocationParityReport",
|
|
2779
|
+
"signature": "export interface CliFlagInvocationParityReport { ok: boolean; declared_count: number; observed_count: number; findings: CliFlagInvocationParityFinding[]; }"
|
|
2780
|
+
},
|
|
2701
2781
|
{
|
|
2702
2782
|
"classification": "supported",
|
|
2703
2783
|
"kind": "function",
|
|
@@ -3578,7 +3658,7 @@
|
|
|
3578
3658
|
"classification": "advanced_export",
|
|
3579
3659
|
"kind": "interface",
|
|
3580
3660
|
"name": "ContractsResult",
|
|
3581
|
-
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
3661
|
+
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
3582
3662
|
},
|
|
3583
3663
|
{
|
|
3584
3664
|
"classification": "supported",
|
|
@@ -5878,6 +5958,12 @@
|
|
|
5878
5958
|
"name": "formatOrderingStorageContradiction",
|
|
5879
5959
|
"signature": "(contradiction: Pick<OrderingStorageContradiction, \"dependency_kind\" | \"holder_id\" | \"target_id\">) => string | calls: (contradiction: Pick<OrderingStorageContradiction, \"holder_id\" | \"target_id\" | \"dependency_kind\">) => string"
|
|
5880
5960
|
},
|
|
5961
|
+
{
|
|
5962
|
+
"classification": "contract_data",
|
|
5963
|
+
"kind": "function",
|
|
5964
|
+
"name": "formatPmPositionalActionFlagTip",
|
|
5965
|
+
"signature": "(acceptedFlags: readonly string[]) => string | calls: (acceptedFlags: readonly string[]) => string"
|
|
5966
|
+
},
|
|
5881
5967
|
{
|
|
5882
5968
|
"classification": "advanced_export",
|
|
5883
5969
|
"kind": "function",
|
|
@@ -7630,12 +7716,30 @@
|
|
|
7630
7716
|
"name": "ListOptions",
|
|
7631
7717
|
"signature": "export interface ListOptions extends SharedItemFilterOptions { ids?: string; assigneeFilter?: string; today?: boolean; recent?: boolean; limit?: string; offset?: string; after?: string; noTruncate?: boolean; includeBody?: boolean; compact?: boolean; brief?: boolean; full?: boolean; fields?: string; sort?: string; order?: string; tree?: boolean; treeDepth?: string; excludeTerminal?: boolean; strictRead?: boolean; dependencyBlocked?: boolean; filterAcMissing?: boolean; filterEstimatesMissing?: boolean; filterResolutionMissing?: boolean; filterMetadataMissing?: boolean; }"
|
|
7632
7718
|
},
|
|
7719
|
+
{
|
|
7720
|
+
"classification": "contract_data",
|
|
7721
|
+
"kind": "function",
|
|
7722
|
+
"name": "listPmCommandFlagBudgets",
|
|
7723
|
+
"signature": "() => readonly PmCommandFlagBudget[] | calls: () => readonly PmCommandFlagBudget[]"
|
|
7724
|
+
},
|
|
7725
|
+
{
|
|
7726
|
+
"classification": "advanced_export",
|
|
7727
|
+
"kind": "function",
|
|
7728
|
+
"name": "listPmCommandsForFamily",
|
|
7729
|
+
"signature": "(family: PmCommandCapabilityFamily) => string[] | calls: (family: PmCommandCapabilityFamily) => string[]"
|
|
7730
|
+
},
|
|
7633
7731
|
{
|
|
7634
7732
|
"classification": "advanced_export",
|
|
7635
7733
|
"kind": "function",
|
|
7636
7734
|
"name": "listPmCommandsForTier",
|
|
7637
7735
|
"signature": "(tier: Exclude<PmCommandVisibilityTier, \"internal\">) => string[] | calls: (tier: Exclude<PmCommandVisibilityTier, \"internal\">) => string[]"
|
|
7638
7736
|
},
|
|
7737
|
+
{
|
|
7738
|
+
"classification": "contract_data",
|
|
7739
|
+
"kind": "function",
|
|
7740
|
+
"name": "listPmFlagLexicon",
|
|
7741
|
+
"signature": "() => readonly PmFlagLexiconEntry[] | calls: () => readonly PmFlagLexiconEntry[]"
|
|
7742
|
+
},
|
|
7639
7743
|
{
|
|
7640
7744
|
"classification": "advanced_export",
|
|
7641
7745
|
"kind": "function",
|
|
@@ -9086,7 +9190,7 @@
|
|
|
9086
9190
|
"classification": "contract_data",
|
|
9087
9191
|
"kind": "value",
|
|
9088
9192
|
"name": "PM_CLI_GRAMMAR_CONTRACT",
|
|
9089
|
-
"signature": "{ readonly nouns: readonly [\"item\", \"list\", \"context\", \"search\", \"graph\", \"history\", \"workspace\", \"package\", \"ops\", \"plan\", \"contracts\", \"help\"]; readonly shared_verbs: readonly [\"activate\", \"add\", \"adopt\", \"adopt-all\", \"catalog\", \"compact\", \"complete\", \"create\", \"deactivate\", \"delete\", \"describe\", \"doctor\", \"edit\", \"explore\", \"import\", \"init\", \"inspect\", \"install\", \"list\", \"manage\", \"migrate\", \"mutate\", \"read\", \"redact\", \"reload\", \"remove\", \"repair\", \"restore\", \"run\", \"show\", \"uninstall\", \"verify\"]; readonly scope_before_verb: true; readonly visible_top_level_ceiling: 69; readonly ceiling_raise_requires_pm_item: true; }"
|
|
9193
|
+
"signature": "{ readonly nouns: readonly [\"item\", \"list\", \"context\", \"search\", \"graph\", \"history\", \"workspace\", \"package\", \"ops\", \"plan\", \"contracts\", \"help\"]; readonly shared_verbs: readonly [\"activate\", \"add\", \"adopt\", \"adopt-all\", \"catalog\", \"compact\", \"complete\", \"create\", \"deactivate\", \"delete\", \"describe\", \"doctor\", \"edit\", \"explore\", \"import\", \"init\", \"inspect\", \"install\", \"list\", \"manage\", \"migrate\", \"mutate\", \"read\", \"redact\", \"reload\", \"remove\", \"repair\", \"restore\", \"run\", \"show\", \"uninstall\", \"verify\"]; readonly scope_before_verb: true; readonly visible_top_level_ceiling: 69; readonly ceiling_raise_requires_pm_item: true; readonly positional_shape_budget: 21; }"
|
|
9090
9194
|
},
|
|
9091
9195
|
{
|
|
9092
9196
|
"classification": "contract_data",
|
|
@@ -9112,6 +9216,12 @@
|
|
|
9112
9216
|
"name": "PM_COMMAND_ALIAS_CONTRACTS",
|
|
9113
9217
|
"signature": "readonly PmCommandAliasContract[]"
|
|
9114
9218
|
},
|
|
9219
|
+
{
|
|
9220
|
+
"classification": "advanced_export",
|
|
9221
|
+
"kind": "value",
|
|
9222
|
+
"name": "PM_COMMAND_CAPABILITY_CONTRACTS",
|
|
9223
|
+
"signature": "readonly PmCommandCapabilityContract[]"
|
|
9224
|
+
},
|
|
9115
9225
|
{
|
|
9116
9226
|
"classification": "contract_data",
|
|
9117
9227
|
"kind": "value",
|
|
@@ -9142,6 +9252,12 @@
|
|
|
9142
9252
|
"name": "PM_COMMAND_OUTPUT_ENVELOPE_CONTRACTS",
|
|
9143
9253
|
"signature": "PmCommandOutputEnvelopeContract[]"
|
|
9144
9254
|
},
|
|
9255
|
+
{
|
|
9256
|
+
"classification": "contract_data",
|
|
9257
|
+
"kind": "value",
|
|
9258
|
+
"name": "PM_COMMAND_POSITIONAL_CONTRACTS",
|
|
9259
|
+
"signature": "readonly PmCommandPositionalContract[]"
|
|
9260
|
+
},
|
|
9145
9261
|
{
|
|
9146
9262
|
"classification": "advanced_export",
|
|
9147
9263
|
"kind": "value",
|
|
@@ -9346,6 +9462,12 @@
|
|
|
9346
9462
|
"name": "PM_PACKAGE_RESOURCE_KINDS",
|
|
9347
9463
|
"signature": "readonly [\"extensions\", \"docs\", \"examples\", \"assets\", \"prompts\"]"
|
|
9348
9464
|
},
|
|
9465
|
+
{
|
|
9466
|
+
"classification": "contract_data",
|
|
9467
|
+
"kind": "value",
|
|
9468
|
+
"name": "PM_POSITIONAL_ACTION_CONTRACTS",
|
|
9469
|
+
"signature": "readonly PmPositionalActionContract[]"
|
|
9470
|
+
},
|
|
9349
9471
|
{
|
|
9350
9472
|
"classification": "contract_data",
|
|
9351
9473
|
"kind": "value",
|
|
@@ -9572,7 +9694,7 @@
|
|
|
9572
9694
|
"classification": "advanced_export",
|
|
9573
9695
|
"kind": "interface",
|
|
9574
9696
|
"name": "PmCliErrorRecoveryPayload",
|
|
9575
|
-
"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; }"
|
|
9697
|
+
"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; suggested_retry_args?: string[]; retry_after_ms?: number; fallback_candidates?: Array<{ source: string; command: string; reason: string; }>; next_best_command?: string; }"
|
|
9576
9698
|
},
|
|
9577
9699
|
{
|
|
9578
9700
|
"classification": "advanced_export",
|
|
@@ -9628,6 +9750,18 @@
|
|
|
9628
9750
|
"name": "PmCommandAliasRegistration",
|
|
9629
9751
|
"signature": "export type PmCommandAliasRegistration = \"bootstrap\" | \"commander\";"
|
|
9630
9752
|
},
|
|
9753
|
+
{
|
|
9754
|
+
"classification": "advanced_export",
|
|
9755
|
+
"kind": "interface",
|
|
9756
|
+
"name": "PmCommandCapabilityContract",
|
|
9757
|
+
"signature": "export interface PmCommandCapabilityContract extends PmCommandVisibilityContract { family: PmCommandCapabilityFamily; }"
|
|
9758
|
+
},
|
|
9759
|
+
{
|
|
9760
|
+
"classification": "advanced_export",
|
|
9761
|
+
"kind": "type",
|
|
9762
|
+
"name": "PmCommandCapabilityFamily",
|
|
9763
|
+
"signature": "export type PmCommandCapabilityFamily = \"workspace\" | \"intake\" | \"context\" | \"lifecycle\" | \"evidence\" | \"graph\" | \"quality\" | \"automation\" | \"extensions\" | \"internal\";"
|
|
9764
|
+
},
|
|
9631
9765
|
{
|
|
9632
9766
|
"classification": "contract_data",
|
|
9633
9767
|
"kind": "interface",
|
|
@@ -9688,6 +9822,12 @@
|
|
|
9688
9822
|
"name": "PmCommandExitOutcomeContract",
|
|
9689
9823
|
"signature": "export interface PmCommandExitOutcomeContract { exit_code: PmCommandExitCode; outcome: PmCommandExitOutcome; success: boolean; meaning: string; }"
|
|
9690
9824
|
},
|
|
9825
|
+
{
|
|
9826
|
+
"classification": "contract_data",
|
|
9827
|
+
"kind": "interface",
|
|
9828
|
+
"name": "PmCommandFlagBudget",
|
|
9829
|
+
"signature": "export interface PmCommandFlagBudget { command: string; current: number; maximum: number; }"
|
|
9830
|
+
},
|
|
9691
9831
|
{
|
|
9692
9832
|
"classification": "contract_data",
|
|
9693
9833
|
"kind": "interface",
|
|
@@ -9700,6 +9840,36 @@
|
|
|
9700
9840
|
"name": "PmCommandOutputEnvelopeContract",
|
|
9701
9841
|
"signature": "export interface PmCommandOutputEnvelopeContract { command: string; kind: PmOutputEnvelopeKind; wrapper_key: string | null; cardinality: \"one\" | \"many\" | \"none\"; format_flag: \"--json\"; }"
|
|
9702
9842
|
},
|
|
9843
|
+
{
|
|
9844
|
+
"classification": "contract_data",
|
|
9845
|
+
"kind": "interface",
|
|
9846
|
+
"name": "PmCommandPositionalContract",
|
|
9847
|
+
"signature": "export interface PmCommandPositionalContract { command: string; slots: readonly PmCommandPositionalSlotContract[]; }"
|
|
9848
|
+
},
|
|
9849
|
+
{
|
|
9850
|
+
"classification": "contract_data",
|
|
9851
|
+
"kind": "interface",
|
|
9852
|
+
"name": "PmCommandPositionalFinding",
|
|
9853
|
+
"signature": "export interface PmCommandPositionalFinding { code: \"missing_observed_signature\" | \"positional_shape_budget_exceeded\" | \"positional_signature_mismatch\" | \"stale_observed_signature\"; command: string; detail: string; }"
|
|
9854
|
+
},
|
|
9855
|
+
{
|
|
9856
|
+
"classification": "contract_data",
|
|
9857
|
+
"kind": "interface",
|
|
9858
|
+
"name": "PmCommandPositionalReport",
|
|
9859
|
+
"signature": "export interface PmCommandPositionalReport { ok: boolean; declared_command_count: number; observed_command_count: number; positional_shape_count: number; positional_shape_budget: number; findings: PmCommandPositionalFinding[]; }"
|
|
9860
|
+
},
|
|
9861
|
+
{
|
|
9862
|
+
"classification": "contract_data",
|
|
9863
|
+
"kind": "interface",
|
|
9864
|
+
"name": "PmCommandPositionalSlotContract",
|
|
9865
|
+
"signature": "export interface PmCommandPositionalSlotContract { name: string; required: boolean; variadic: boolean; value_kind: PmCommandPositionalValueKind; polymorphic: boolean; }"
|
|
9866
|
+
},
|
|
9867
|
+
{
|
|
9868
|
+
"classification": "contract_data",
|
|
9869
|
+
"kind": "type",
|
|
9870
|
+
"name": "PmCommandPositionalValueKind",
|
|
9871
|
+
"signature": "export type PmCommandPositionalValueKind = \"action\" | \"integer\" | \"item_id\" | \"string\";"
|
|
9872
|
+
},
|
|
9703
9873
|
{
|
|
9704
9874
|
"classification": "advanced_export",
|
|
9705
9875
|
"kind": "interface",
|
|
@@ -9874,6 +10044,30 @@
|
|
|
9874
10044
|
"name": "PmExtensionTrustModeContract",
|
|
9875
10045
|
"signature": "export type PmExtensionTrustModeContract = (typeof PM_EXTENSION_TRUST_MODE_CONTRACTS)[number];"
|
|
9876
10046
|
},
|
|
10047
|
+
{
|
|
10048
|
+
"classification": "contract_data",
|
|
10049
|
+
"kind": "interface",
|
|
10050
|
+
"name": "PmFlagLexiconEntry",
|
|
10051
|
+
"signature": "export interface PmFlagLexiconEntry { command: string; family: PmCommandCapabilityFamily; concept: string; flag: string; aliases: readonly string[]; value_kind: PmFlagValueKind; }"
|
|
10052
|
+
},
|
|
10053
|
+
{
|
|
10054
|
+
"classification": "contract_data",
|
|
10055
|
+
"kind": "interface",
|
|
10056
|
+
"name": "PmFlagLexiconFinding",
|
|
10057
|
+
"signature": "export interface PmFlagLexiconFinding { code: \"alias_collision\" | \"budget_exceeded\" | \"duplicate_canonical_flag\" | \"inconsistent_concept_kind\" | \"missing_budget\" | \"stale_budget\"; command: string; detail: string; }"
|
|
10058
|
+
},
|
|
10059
|
+
{
|
|
10060
|
+
"classification": "contract_data",
|
|
10061
|
+
"kind": "interface",
|
|
10062
|
+
"name": "PmFlagLexiconReport",
|
|
10063
|
+
"signature": "export interface PmFlagLexiconReport { ok: boolean; entry_count: number; budget_count: number; findings: readonly PmFlagLexiconFinding[]; }"
|
|
10064
|
+
},
|
|
10065
|
+
{
|
|
10066
|
+
"classification": "contract_data",
|
|
10067
|
+
"kind": "type",
|
|
10068
|
+
"name": "PmFlagValueKind",
|
|
10069
|
+
"signature": "export type PmFlagValueKind = \"boolean\" | \"string\" | \"number\" | \"list\";"
|
|
10070
|
+
},
|
|
9877
10071
|
{
|
|
9878
10072
|
"classification": "advanced_export",
|
|
9879
10073
|
"kind": "interface",
|
|
@@ -10000,6 +10194,12 @@
|
|
|
10000
10194
|
"name": "PmPackageResourceMap",
|
|
10001
10195
|
"signature": "export type PmPackageResourceMap = Partial<Record<PmPackageResourceKind, string[]>>;"
|
|
10002
10196
|
},
|
|
10197
|
+
{
|
|
10198
|
+
"classification": "contract_data",
|
|
10199
|
+
"kind": "interface",
|
|
10200
|
+
"name": "PmPositionalActionContract",
|
|
10201
|
+
"signature": "export interface PmPositionalActionContract extends PmCommandPositionalContract { parent: \"assurance\" | \"plan\" | \"workspace snapshot\"; action: string; accepted_flags: readonly string[]; description: string; example: string; }"
|
|
10202
|
+
},
|
|
10003
10203
|
{
|
|
10004
10204
|
"classification": "supported",
|
|
10005
10205
|
"kind": "interface",
|
|
@@ -10174,6 +10374,24 @@
|
|
|
10174
10374
|
"name": "PmRecoveryReferenceSemantics",
|
|
10175
10375
|
"signature": "export type PmRecoveryReferenceSemantics = \"recovery\" | \"replacement\" | \"behavior_preserving\";"
|
|
10176
10376
|
},
|
|
10377
|
+
{
|
|
10378
|
+
"classification": "contract_data",
|
|
10379
|
+
"kind": "interface",
|
|
10380
|
+
"name": "PmRefusalClosureFinding",
|
|
10381
|
+
"signature": "export interface PmRefusalClosureFinding { code: \"accepted_rejected_value\" | \"duplicate_probe\" | \"empty_corpus\" | \"missing_allowed_values\" | \"missing_suggested_retry\" | \"non_refusal_exit\" | \"retry_failed\"; probe_id: string; detail: string; }"
|
|
10382
|
+
},
|
|
10383
|
+
{
|
|
10384
|
+
"classification": "contract_data",
|
|
10385
|
+
"kind": "interface",
|
|
10386
|
+
"name": "PmRefusalClosureObservation",
|
|
10387
|
+
"signature": "export interface PmRefusalClosureObservation { probe_id: string; entrypoint: string; exit_code: number; rejected_value: string; allowed_values: readonly string[]; suggested_retry: string; retry_succeeded: boolean; }"
|
|
10388
|
+
},
|
|
10389
|
+
{
|
|
10390
|
+
"classification": "contract_data",
|
|
10391
|
+
"kind": "interface",
|
|
10392
|
+
"name": "PmRefusalClosureReport",
|
|
10393
|
+
"signature": "export interface PmRefusalClosureReport { ok: boolean; probe_count: number; closed_probe_count: number; closure_fraction: number; findings: readonly PmRefusalClosureFinding[]; }"
|
|
10394
|
+
},
|
|
10177
10395
|
{
|
|
10178
10396
|
"classification": "advanced_export",
|
|
10179
10397
|
"kind": "interface",
|
|
@@ -10246,6 +10464,18 @@
|
|
|
10246
10464
|
"name": "PmUpdateManyActionOptions",
|
|
10247
10465
|
"signature": "export type PmUpdateManyActionOptions = Omit<PmUpdateActionOptions, \"allowMissingParent\" | \"completedAt\"> & PmBulkMutationFilterOptions & PmBulkMutationControlOptions;"
|
|
10248
10466
|
},
|
|
10467
|
+
{
|
|
10468
|
+
"classification": "contract_data",
|
|
10469
|
+
"kind": "function",
|
|
10470
|
+
"name": "positionalShapeKey",
|
|
10471
|
+
"signature": "(slots: readonly PmCommandPositionalSlotContract[]) => string | calls: (slots: readonly PmCommandPositionalSlotContract[]) => string"
|
|
10472
|
+
},
|
|
10473
|
+
{
|
|
10474
|
+
"classification": "contract_data",
|
|
10475
|
+
"kind": "function",
|
|
10476
|
+
"name": "positionalSignatureKey",
|
|
10477
|
+
"signature": "(slots: readonly PmCommandPositionalSlotContract[]) => string | calls: (slots: readonly PmCommandPositionalSlotContract[]) => string"
|
|
10478
|
+
},
|
|
10249
10479
|
{
|
|
10250
10480
|
"classification": "supported",
|
|
10251
10481
|
"kind": "function",
|
|
@@ -10876,6 +11106,18 @@
|
|
|
10876
11106
|
"name": "readOutputBudgetCollections",
|
|
10877
11107
|
"signature": "(result: Record<string, unknown>) => PmReadOutputRowCollection[] | calls: (result: Record<string, unknown>) => PmReadOutputRowCollection[]"
|
|
10878
11108
|
},
|
|
11109
|
+
{
|
|
11110
|
+
"classification": "advanced_export",
|
|
11111
|
+
"kind": "function",
|
|
11112
|
+
"name": "readOutputContinuationRowCollections",
|
|
11113
|
+
"signature": "(result: Record<string, unknown>) => PmReadOutputRowCollection[] | calls: (result: Record<string, unknown>) => PmReadOutputRowCollection[]"
|
|
11114
|
+
},
|
|
11115
|
+
{
|
|
11116
|
+
"classification": "advanced_export",
|
|
11117
|
+
"kind": "function",
|
|
11118
|
+
"name": "readOutputContinuationRowPaths",
|
|
11119
|
+
"signature": "(result: Record<string, unknown>) => string[] | calls: (result: Record<string, unknown>) => string[]"
|
|
11120
|
+
},
|
|
10879
11121
|
{
|
|
10880
11122
|
"classification": "contract_data",
|
|
10881
11123
|
"kind": "function",
|
|
@@ -10916,7 +11158,7 @@
|
|
|
10916
11158
|
"classification": "advanced_export",
|
|
10917
11159
|
"kind": "interface",
|
|
10918
11160
|
"name": "ReadRowContract",
|
|
10919
|
-
"signature": "export interface ReadRowContract { command: string; row_kind: \"collection\" | \"none\"; row_keys: string[]; fields: \"supported\" | \"unsupported\"; jq_selector?: string; toon_encoding?: \"tabular_when_uniform\"; }"
|
|
11161
|
+
"signature": "export interface ReadRowContract { command: string; row_kind: \"collection\" | \"none\"; row_keys: string[]; continuation_row_keys?: string[]; fields: \"supported\" | \"unsupported\"; jq_selector?: string; toon_encoding?: \"tabular_when_uniform\"; }"
|
|
10920
11162
|
},
|
|
10921
11163
|
{
|
|
10922
11164
|
"classification": "advanced_export",
|
|
@@ -11956,6 +12198,12 @@
|
|
|
11956
12198
|
"name": "renderPmCommandVisibilityMarkdown",
|
|
11957
12199
|
"signature": "() => string | calls: () => string"
|
|
11958
12200
|
},
|
|
12201
|
+
{
|
|
12202
|
+
"classification": "contract_data",
|
|
12203
|
+
"kind": "function",
|
|
12204
|
+
"name": "renderPmFlagLexiconMarkdown",
|
|
12205
|
+
"signature": "() => string | calls: () => string"
|
|
12206
|
+
},
|
|
11959
12207
|
{
|
|
11960
12208
|
"classification": "advanced_export",
|
|
11961
12209
|
"kind": "function",
|
|
@@ -12116,7 +12364,7 @@
|
|
|
12116
12364
|
"classification": "contract_data",
|
|
12117
12365
|
"kind": "function",
|
|
12118
12366
|
"name": "resolveContextIntentContract",
|
|
12119
|
-
"signature": "(command: string, intent: string, contracts?: readonly PmContextIntentContract[]) => PmContextIntentContract | undefined | calls: (command: string, intent: string, contracts?: readonly PmContextIntentContract[]) => PmContextIntentContract | undefined"
|
|
12367
|
+
"signature": "(command: string, intent: string, contracts?: readonly PmContextIntentContract[], positionalArguments?: readonly string[]) => PmContextIntentContract | undefined | calls: (command: string, intent: string, contracts?: readonly PmContextIntentContract[], positionalArguments?: readonly string[]) => PmContextIntentContract | undefined"
|
|
12120
12368
|
},
|
|
12121
12369
|
{
|
|
12122
12370
|
"classification": "supported",
|
|
@@ -12340,6 +12588,12 @@
|
|
|
12340
12588
|
"name": "resolvePmCommandAlias",
|
|
12341
12589
|
"signature": "(alias: string) => PmCommandAliasContract | undefined | calls: (alias: string) => PmCommandAliasContract | undefined"
|
|
12342
12590
|
},
|
|
12591
|
+
{
|
|
12592
|
+
"classification": "advanced_export",
|
|
12593
|
+
"kind": "function",
|
|
12594
|
+
"name": "resolvePmCommandCapabilityFamily",
|
|
12595
|
+
"signature": "(command: string) => PmCommandCapabilityFamily | calls: (command: string) => PmCommandCapabilityFamily"
|
|
12596
|
+
},
|
|
12343
12597
|
{
|
|
12344
12598
|
"classification": "contract_data",
|
|
12345
12599
|
"kind": "function",
|
|
@@ -12358,6 +12612,12 @@
|
|
|
12358
12612
|
"name": "resolvePmCommandOutputEnvelope",
|
|
12359
12613
|
"signature": "(command: string) => PmCommandOutputEnvelopeContract | calls: (command: string) => PmCommandOutputEnvelopeContract"
|
|
12360
12614
|
},
|
|
12615
|
+
{
|
|
12616
|
+
"classification": "contract_data",
|
|
12617
|
+
"kind": "function",
|
|
12618
|
+
"name": "resolvePmCommandPositionalContract",
|
|
12619
|
+
"signature": "(command: string) => PmCommandPositionalContract | undefined | calls: (command: string) => PmCommandPositionalContract | undefined"
|
|
12620
|
+
},
|
|
12361
12621
|
{
|
|
12362
12622
|
"classification": "advanced_export",
|
|
12363
12623
|
"kind": "function",
|
|
@@ -12376,6 +12636,18 @@
|
|
|
12376
12636
|
"name": "resolvePmPackageRootFromModule",
|
|
12377
12637
|
"signature": "(metaUrl: string, fallbackRelativeSegments?: string[]) => string | calls: (metaUrl: string, fallbackRelativeSegments?: string[]) => string"
|
|
12378
12638
|
},
|
|
12639
|
+
{
|
|
12640
|
+
"classification": "contract_data",
|
|
12641
|
+
"kind": "function",
|
|
12642
|
+
"name": "resolvePmPositionalActionContract",
|
|
12643
|
+
"signature": "(command: string) => PmPositionalActionContract | undefined | calls: (command: string) => PmPositionalActionContract | undefined"
|
|
12644
|
+
},
|
|
12645
|
+
{
|
|
12646
|
+
"classification": "contract_data",
|
|
12647
|
+
"kind": "function",
|
|
12648
|
+
"name": "resolvePmPositionalActionFlagContracts",
|
|
12649
|
+
"signature": "(actions?: readonly PmPositionalActionContract[]) => Array<readonly [string, CliFlagContract[]]> | calls: (actions?: readonly PmPositionalActionContract[]) => Array<readonly [string, CliFlagContract[]]>"
|
|
12650
|
+
},
|
|
12379
12651
|
{
|
|
12380
12652
|
"classification": "advanced_export",
|
|
12381
12653
|
"kind": "function",
|
|
@@ -13894,6 +14166,12 @@
|
|
|
13894
14166
|
"name": "scoreItemSimilarity",
|
|
13895
14167
|
"signature": "(leftTitle: string, rightTitle: string) => ItemSimilarityScore | calls: (leftTitle: string, rightTitle: string) => ItemSimilarityScore"
|
|
13896
14168
|
},
|
|
14169
|
+
{
|
|
14170
|
+
"classification": "contract_data",
|
|
14171
|
+
"kind": "function",
|
|
14172
|
+
"name": "scorePmRefusalClosure",
|
|
14173
|
+
"signature": "(observations: readonly PmRefusalClosureObservation[]) => PmRefusalClosureReport | calls: (observations: readonly PmRefusalClosureObservation[]) => PmRefusalClosureReport"
|
|
14174
|
+
},
|
|
13897
14175
|
{
|
|
13898
14176
|
"classification": "supported",
|
|
13899
14177
|
"kind": "function",
|
|
@@ -15166,6 +15444,18 @@
|
|
|
15166
15444
|
"name": "TOOL_UPDATE_OPTION_CONTRACTS",
|
|
15167
15445
|
"signature": "ToolOptionFlagContract[]"
|
|
15168
15446
|
},
|
|
15447
|
+
{
|
|
15448
|
+
"classification": "contract_data",
|
|
15449
|
+
"kind": "interface",
|
|
15450
|
+
"name": "ToolOptionCliParityFinding",
|
|
15451
|
+
"signature": "export interface ToolOptionCliParityFinding { code: \"missing_cli_flag\" | \"missing_parameter_alias\"; parameter: string; flag: string; parameter_flag: string; }"
|
|
15452
|
+
},
|
|
15453
|
+
{
|
|
15454
|
+
"classification": "contract_data",
|
|
15455
|
+
"kind": "interface",
|
|
15456
|
+
"name": "ToolOptionCliParityReport",
|
|
15457
|
+
"signature": "export interface ToolOptionCliParityReport { ok: boolean; parameter_count: number; cli_flag_count: number; findings: ToolOptionCliParityFinding[]; }"
|
|
15458
|
+
},
|
|
15169
15459
|
{
|
|
15170
15460
|
"classification": "contract_data",
|
|
15171
15461
|
"kind": "interface",
|
|
@@ -15526,6 +15816,18 @@
|
|
|
15526
15816
|
"name": "VectorStoreUpsertPoint",
|
|
15527
15817
|
"signature": "export interface VectorStoreUpsertPoint { id: string; vector: number[]; payload?: Record<string, unknown>; [key: string]: unknown; }"
|
|
15528
15818
|
},
|
|
15819
|
+
{
|
|
15820
|
+
"classification": "contract_data",
|
|
15821
|
+
"kind": "function",
|
|
15822
|
+
"name": "verifyCliFlagInvocationParity",
|
|
15823
|
+
"signature": "(command: string, declarations: readonly CliFlagInvocationContract[], observations: readonly CliFlagArityObservation[]) => CliFlagInvocationParityReport | calls: (command: string, declarations: readonly CliFlagInvocationContract[], observations: readonly CliFlagArityObservation[]) => CliFlagInvocationParityReport"
|
|
15824
|
+
},
|
|
15825
|
+
{
|
|
15826
|
+
"classification": "contract_data",
|
|
15827
|
+
"kind": "function",
|
|
15828
|
+
"name": "verifyExplicitPositionalSlotCensus",
|
|
15829
|
+
"signature": "(explicitCommands: Iterable<string>, destinationCommands: Iterable<string>) => PmCommandPositionalFinding[] | calls: (explicitCommands: Iterable<string>, destinationCommands: Iterable<string>) => PmCommandPositionalFinding[]"
|
|
15830
|
+
},
|
|
15529
15831
|
{
|
|
15530
15832
|
"classification": "supported",
|
|
15531
15833
|
"kind": "function",
|
|
@@ -15550,6 +15852,18 @@
|
|
|
15550
15852
|
"name": "verifyPmCliGrammar",
|
|
15551
15853
|
"signature": "(commands: readonly string[], aliases?: readonly PmCommandAliasContract[]) => PmCliGrammarReport | calls: (commands: readonly string[], aliases?: readonly PmCommandAliasContract[]) => PmCliGrammarReport"
|
|
15552
15854
|
},
|
|
15855
|
+
{
|
|
15856
|
+
"classification": "contract_data",
|
|
15857
|
+
"kind": "function",
|
|
15858
|
+
"name": "verifyPmCommandPositionalContracts",
|
|
15859
|
+
"signature": "(observed: readonly PmCommandPositionalContract[], options?: { declared?: readonly PmCommandPositionalContract[]; positionalShapeBudget?: number; }) => PmCommandPositionalReport | calls: (observed: readonly PmCommandPositionalContract[], options?: { declared?: readonly PmCommandPositionalContract[]; positionalShapeBudget?: number; }) => PmCommandPositionalReport"
|
|
15860
|
+
},
|
|
15861
|
+
{
|
|
15862
|
+
"classification": "contract_data",
|
|
15863
|
+
"kind": "function",
|
|
15864
|
+
"name": "verifyPmFlagLexicon",
|
|
15865
|
+
"signature": "(entries?: readonly PmFlagLexiconEntry[], budgets?: readonly PmCommandFlagBudget[]) => PmFlagLexiconReport | calls: (entries?: readonly PmFlagLexiconEntry[], budgets?: readonly PmCommandFlagBudget[]) => PmFlagLexiconReport"
|
|
15866
|
+
},
|
|
15553
15867
|
{
|
|
15554
15868
|
"classification": "advanced_export",
|
|
15555
15869
|
"kind": "function",
|
|
@@ -15562,6 +15876,12 @@
|
|
|
15562
15876
|
"name": "verifyPmRefusalReachability",
|
|
15563
15877
|
"signature": "(catalog: readonly PmErrorCodeContract[], observations: readonly PmRefusalProbeObservation[]) => PmRefusalReachabilityReport | calls: (catalog: readonly PmErrorCodeContract[], observations: readonly PmRefusalProbeObservation[]) => PmRefusalReachabilityReport"
|
|
15564
15878
|
},
|
|
15879
|
+
{
|
|
15880
|
+
"classification": "contract_data",
|
|
15881
|
+
"kind": "function",
|
|
15882
|
+
"name": "verifyToolOptionCliParity",
|
|
15883
|
+
"signature": "(toolOptions: readonly ToolOptionFlagContract[], cliFlags: readonly CliFlagContract[]) => ToolOptionCliParityReport | calls: (toolOptions: readonly ToolOptionFlagContract[], cliFlags: readonly CliFlagContract[]) => ToolOptionCliParityReport"
|
|
15884
|
+
},
|
|
15565
15885
|
{
|
|
15566
15886
|
"classification": "supported",
|
|
15567
15887
|
"kind": "interface",
|
|
@@ -15598,6 +15918,12 @@
|
|
|
15598
15918
|
"name": "WORKSPACE_HISTORY_ID",
|
|
15599
15919
|
"signature": "\"_workspace\""
|
|
15600
15920
|
},
|
|
15921
|
+
{
|
|
15922
|
+
"classification": "advanced_export",
|
|
15923
|
+
"kind": "value",
|
|
15924
|
+
"name": "WORKSPACE_SNAPSHOT_ACTIONS",
|
|
15925
|
+
"signature": "readonly [\"create\", \"list\", \"inspect\", \"restore\", \"delete\"]"
|
|
15926
|
+
},
|
|
15601
15927
|
{
|
|
15602
15928
|
"classification": "advanced_export",
|
|
15603
15929
|
"kind": "interface",
|
|
@@ -17348,7 +17674,7 @@
|
|
|
17348
17674
|
"classification": "contract_data",
|
|
17349
17675
|
"kind": "function",
|
|
17350
17676
|
"name": "applyContextIntentProjection",
|
|
17351
|
-
"signature": "(command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown
|
|
17677
|
+
"signature": "(command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown>, positionalArguments?: readonly string[]) => Record<string, unknown> | calls: (command: \"context\" | \"get\" | \"list\" | \"next\" | \"search\", options: Record<string, unknown>, positionalArguments?: readonly string[]) => Record<string, unknown>"
|
|
17352
17678
|
},
|
|
17353
17679
|
{
|
|
17354
17680
|
"classification": "contract_data",
|
|
@@ -17410,6 +17736,12 @@
|
|
|
17410
17736
|
"name": "CLAIM_FLAG_CONTRACTS",
|
|
17411
17737
|
"signature": "CliFlagContract[]"
|
|
17412
17738
|
},
|
|
17739
|
+
{
|
|
17740
|
+
"classification": "contract_data",
|
|
17741
|
+
"kind": "interface",
|
|
17742
|
+
"name": "CliFlagArityObservation",
|
|
17743
|
+
"signature": "export interface CliFlagArityObservation { command: string; flag: string; takes_value: boolean; value_required: boolean; repeatable: boolean; }"
|
|
17744
|
+
},
|
|
17413
17745
|
{
|
|
17414
17746
|
"classification": "contract_data",
|
|
17415
17747
|
"kind": "interface",
|
|
@@ -17428,6 +17760,18 @@
|
|
|
17428
17760
|
"name": "CliFlagInvocationContract",
|
|
17429
17761
|
"signature": "export interface CliFlagInvocationContract extends CliFlagContract { description: string; takes_value: boolean; value_required: boolean; value_type: \"string\" | \"number\" | \"boolean\"; required: boolean; repeatable: boolean; input_sources: CliFlagInputSource[]; stdin_token?: \"-\"; }"
|
|
17430
17762
|
},
|
|
17763
|
+
{
|
|
17764
|
+
"classification": "contract_data",
|
|
17765
|
+
"kind": "interface",
|
|
17766
|
+
"name": "CliFlagInvocationParityFinding",
|
|
17767
|
+
"signature": "export interface CliFlagInvocationParityFinding { code: \"duplicate_observation\" | \"missing_observation\" | \"takes_value_mismatch\" | \"value_required_mismatch\" | \"repeatable_mismatch\" | \"undeclared_observation\"; command: string; flag: string; detail: string; }"
|
|
17768
|
+
},
|
|
17769
|
+
{
|
|
17770
|
+
"classification": "contract_data",
|
|
17771
|
+
"kind": "interface",
|
|
17772
|
+
"name": "CliFlagInvocationParityReport",
|
|
17773
|
+
"signature": "export interface CliFlagInvocationParityReport { ok: boolean; declared_count: number; observed_count: number; findings: CliFlagInvocationParityFinding[]; }"
|
|
17774
|
+
},
|
|
17431
17775
|
{
|
|
17432
17776
|
"classification": "contract_data",
|
|
17433
17777
|
"kind": "value",
|
|
@@ -17770,6 +18114,12 @@
|
|
|
17770
18114
|
"name": "FOCUS_FLAG_CONTRACTS",
|
|
17771
18115
|
"signature": "CliFlagContract[]"
|
|
17772
18116
|
},
|
|
18117
|
+
{
|
|
18118
|
+
"classification": "contract_data",
|
|
18119
|
+
"kind": "function",
|
|
18120
|
+
"name": "formatPmPositionalActionFlagTip",
|
|
18121
|
+
"signature": "(acceptedFlags: readonly string[]) => string | calls: (acceptedFlags: readonly string[]) => string"
|
|
18122
|
+
},
|
|
17773
18123
|
{
|
|
17774
18124
|
"classification": "contract_data",
|
|
17775
18125
|
"kind": "value",
|
|
@@ -17950,6 +18300,18 @@
|
|
|
17950
18300
|
"name": "LIST_FILTER_FLAG_CONTRACTS",
|
|
17951
18301
|
"signature": "CliFlagContract[]"
|
|
17952
18302
|
},
|
|
18303
|
+
{
|
|
18304
|
+
"classification": "contract_data",
|
|
18305
|
+
"kind": "function",
|
|
18306
|
+
"name": "listPmCommandFlagBudgets",
|
|
18307
|
+
"signature": "() => readonly PmCommandFlagBudget[] | calls: () => readonly PmCommandFlagBudget[]"
|
|
18308
|
+
},
|
|
18309
|
+
{
|
|
18310
|
+
"classification": "contract_data",
|
|
18311
|
+
"kind": "function",
|
|
18312
|
+
"name": "listPmFlagLexicon",
|
|
18313
|
+
"signature": "() => readonly PmFlagLexiconEntry[] | calls: () => readonly PmFlagLexiconEntry[]"
|
|
18314
|
+
},
|
|
17953
18315
|
{
|
|
17954
18316
|
"classification": "contract_data",
|
|
17955
18317
|
"kind": "value",
|
|
@@ -18032,7 +18394,7 @@
|
|
|
18032
18394
|
"classification": "contract_data",
|
|
18033
18395
|
"kind": "value",
|
|
18034
18396
|
"name": "PM_CLI_GRAMMAR_CONTRACT",
|
|
18035
|
-
"signature": "{ readonly nouns: readonly [\"item\", \"list\", \"context\", \"search\", \"graph\", \"history\", \"workspace\", \"package\", \"ops\", \"plan\", \"contracts\", \"help\"]; readonly shared_verbs: readonly [\"activate\", \"add\", \"adopt\", \"adopt-all\", \"catalog\", \"compact\", \"complete\", \"create\", \"deactivate\", \"delete\", \"describe\", \"doctor\", \"edit\", \"explore\", \"import\", \"init\", \"inspect\", \"install\", \"list\", \"manage\", \"migrate\", \"mutate\", \"read\", \"redact\", \"reload\", \"remove\", \"repair\", \"restore\", \"run\", \"show\", \"uninstall\", \"verify\"]; readonly scope_before_verb: true; readonly visible_top_level_ceiling: 69; readonly ceiling_raise_requires_pm_item: true; }"
|
|
18397
|
+
"signature": "{ readonly nouns: readonly [\"item\", \"list\", \"context\", \"search\", \"graph\", \"history\", \"workspace\", \"package\", \"ops\", \"plan\", \"contracts\", \"help\"]; readonly shared_verbs: readonly [\"activate\", \"add\", \"adopt\", \"adopt-all\", \"catalog\", \"compact\", \"complete\", \"create\", \"deactivate\", \"delete\", \"describe\", \"doctor\", \"edit\", \"explore\", \"import\", \"init\", \"inspect\", \"install\", \"list\", \"manage\", \"migrate\", \"mutate\", \"read\", \"redact\", \"reload\", \"remove\", \"repair\", \"restore\", \"run\", \"show\", \"uninstall\", \"verify\"]; readonly scope_before_verb: true; readonly visible_top_level_ceiling: 69; readonly ceiling_raise_requires_pm_item: true; readonly positional_shape_budget: 21; }"
|
|
18036
18398
|
},
|
|
18037
18399
|
{
|
|
18038
18400
|
"classification": "contract_data",
|
|
@@ -18088,6 +18450,12 @@
|
|
|
18088
18450
|
"name": "PM_COMMAND_OUTPUT_ENVELOPE_CONTRACTS",
|
|
18089
18451
|
"signature": "PmCommandOutputEnvelopeContract[]"
|
|
18090
18452
|
},
|
|
18453
|
+
{
|
|
18454
|
+
"classification": "contract_data",
|
|
18455
|
+
"kind": "value",
|
|
18456
|
+
"name": "PM_COMMAND_POSITIONAL_CONTRACTS",
|
|
18457
|
+
"signature": "readonly PmCommandPositionalContract[]"
|
|
18458
|
+
},
|
|
18091
18459
|
{
|
|
18092
18460
|
"classification": "contract_data",
|
|
18093
18461
|
"kind": "value",
|
|
@@ -18184,6 +18552,12 @@
|
|
|
18184
18552
|
"name": "PM_OUTPUT_ENVELOPE_KINDS",
|
|
18185
18553
|
"signature": "readonly [\"mutation_receipt\", \"entity\", \"collection\", \"diagnostic\", \"stream\"]"
|
|
18186
18554
|
},
|
|
18555
|
+
{
|
|
18556
|
+
"classification": "contract_data",
|
|
18557
|
+
"kind": "value",
|
|
18558
|
+
"name": "PM_POSITIONAL_ACTION_CONTRACTS",
|
|
18559
|
+
"signature": "readonly PmPositionalActionContract[]"
|
|
18560
|
+
},
|
|
18187
18561
|
{
|
|
18188
18562
|
"classification": "contract_data",
|
|
18189
18563
|
"kind": "value",
|
|
@@ -18406,6 +18780,12 @@
|
|
|
18406
18780
|
"name": "PmCommandExitOutcomeContract",
|
|
18407
18781
|
"signature": "export interface PmCommandExitOutcomeContract { exit_code: PmCommandExitCode; outcome: PmCommandExitOutcome; success: boolean; meaning: string; }"
|
|
18408
18782
|
},
|
|
18783
|
+
{
|
|
18784
|
+
"classification": "contract_data",
|
|
18785
|
+
"kind": "interface",
|
|
18786
|
+
"name": "PmCommandFlagBudget",
|
|
18787
|
+
"signature": "export interface PmCommandFlagBudget { command: string; current: number; maximum: number; }"
|
|
18788
|
+
},
|
|
18409
18789
|
{
|
|
18410
18790
|
"classification": "contract_data",
|
|
18411
18791
|
"kind": "interface",
|
|
@@ -18418,6 +18798,36 @@
|
|
|
18418
18798
|
"name": "PmCommandOutputEnvelopeContract",
|
|
18419
18799
|
"signature": "export interface PmCommandOutputEnvelopeContract { command: string; kind: PmOutputEnvelopeKind; wrapper_key: string | null; cardinality: \"one\" | \"many\" | \"none\"; format_flag: \"--json\"; }"
|
|
18420
18800
|
},
|
|
18801
|
+
{
|
|
18802
|
+
"classification": "contract_data",
|
|
18803
|
+
"kind": "interface",
|
|
18804
|
+
"name": "PmCommandPositionalContract",
|
|
18805
|
+
"signature": "export interface PmCommandPositionalContract { command: string; slots: readonly PmCommandPositionalSlotContract[]; }"
|
|
18806
|
+
},
|
|
18807
|
+
{
|
|
18808
|
+
"classification": "contract_data",
|
|
18809
|
+
"kind": "interface",
|
|
18810
|
+
"name": "PmCommandPositionalFinding",
|
|
18811
|
+
"signature": "export interface PmCommandPositionalFinding { code: \"missing_observed_signature\" | \"positional_shape_budget_exceeded\" | \"positional_signature_mismatch\" | \"stale_observed_signature\"; command: string; detail: string; }"
|
|
18812
|
+
},
|
|
18813
|
+
{
|
|
18814
|
+
"classification": "contract_data",
|
|
18815
|
+
"kind": "interface",
|
|
18816
|
+
"name": "PmCommandPositionalReport",
|
|
18817
|
+
"signature": "export interface PmCommandPositionalReport { ok: boolean; declared_command_count: number; observed_command_count: number; positional_shape_count: number; positional_shape_budget: number; findings: PmCommandPositionalFinding[]; }"
|
|
18818
|
+
},
|
|
18819
|
+
{
|
|
18820
|
+
"classification": "contract_data",
|
|
18821
|
+
"kind": "interface",
|
|
18822
|
+
"name": "PmCommandPositionalSlotContract",
|
|
18823
|
+
"signature": "export interface PmCommandPositionalSlotContract { name: string; required: boolean; variadic: boolean; value_kind: PmCommandPositionalValueKind; polymorphic: boolean; }"
|
|
18824
|
+
},
|
|
18825
|
+
{
|
|
18826
|
+
"classification": "contract_data",
|
|
18827
|
+
"kind": "type",
|
|
18828
|
+
"name": "PmCommandPositionalValueKind",
|
|
18829
|
+
"signature": "export type PmCommandPositionalValueKind = \"action\" | \"integer\" | \"item_id\" | \"string\";"
|
|
18830
|
+
},
|
|
18421
18831
|
{
|
|
18422
18832
|
"classification": "contract_data",
|
|
18423
18833
|
"kind": "type",
|
|
@@ -18508,6 +18918,30 @@
|
|
|
18508
18918
|
"name": "PmExtensionTrustModeContract",
|
|
18509
18919
|
"signature": "export type PmExtensionTrustModeContract = (typeof PM_EXTENSION_TRUST_MODE_CONTRACTS)[number];"
|
|
18510
18920
|
},
|
|
18921
|
+
{
|
|
18922
|
+
"classification": "contract_data",
|
|
18923
|
+
"kind": "interface",
|
|
18924
|
+
"name": "PmFlagLexiconEntry",
|
|
18925
|
+
"signature": "export interface PmFlagLexiconEntry { command: string; family: PmCommandCapabilityFamily; concept: string; flag: string; aliases: readonly string[]; value_kind: PmFlagValueKind; }"
|
|
18926
|
+
},
|
|
18927
|
+
{
|
|
18928
|
+
"classification": "contract_data",
|
|
18929
|
+
"kind": "interface",
|
|
18930
|
+
"name": "PmFlagLexiconFinding",
|
|
18931
|
+
"signature": "export interface PmFlagLexiconFinding { code: \"alias_collision\" | \"budget_exceeded\" | \"duplicate_canonical_flag\" | \"inconsistent_concept_kind\" | \"missing_budget\" | \"stale_budget\"; command: string; detail: string; }"
|
|
18932
|
+
},
|
|
18933
|
+
{
|
|
18934
|
+
"classification": "contract_data",
|
|
18935
|
+
"kind": "interface",
|
|
18936
|
+
"name": "PmFlagLexiconReport",
|
|
18937
|
+
"signature": "export interface PmFlagLexiconReport { ok: boolean; entry_count: number; budget_count: number; findings: readonly PmFlagLexiconFinding[]; }"
|
|
18938
|
+
},
|
|
18939
|
+
{
|
|
18940
|
+
"classification": "contract_data",
|
|
18941
|
+
"kind": "type",
|
|
18942
|
+
"name": "PmFlagValueKind",
|
|
18943
|
+
"signature": "export type PmFlagValueKind = \"boolean\" | \"string\" | \"number\" | \"list\";"
|
|
18944
|
+
},
|
|
18511
18945
|
{
|
|
18512
18946
|
"classification": "contract_data",
|
|
18513
18947
|
"kind": "type",
|
|
@@ -18562,6 +18996,12 @@
|
|
|
18562
18996
|
"name": "PmOutputTokenSectionAccounting",
|
|
18563
18997
|
"signature": "export interface PmOutputTokenSectionAccounting { bytes: number; estimated_tokens: number; }"
|
|
18564
18998
|
},
|
|
18999
|
+
{
|
|
19000
|
+
"classification": "contract_data",
|
|
19001
|
+
"kind": "interface",
|
|
19002
|
+
"name": "PmPositionalActionContract",
|
|
19003
|
+
"signature": "export interface PmPositionalActionContract extends PmCommandPositionalContract { parent: \"assurance\" | \"plan\" | \"workspace snapshot\"; action: string; accepted_flags: readonly string[]; description: string; example: string; }"
|
|
19004
|
+
},
|
|
18565
19005
|
{
|
|
18566
19006
|
"classification": "contract_data",
|
|
18567
19007
|
"kind": "interface",
|
|
@@ -18658,6 +19098,24 @@
|
|
|
18658
19098
|
"name": "PmReadOutputTruncationDisclosure",
|
|
18659
19099
|
"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; }; }; }"
|
|
18660
19100
|
},
|
|
19101
|
+
{
|
|
19102
|
+
"classification": "contract_data",
|
|
19103
|
+
"kind": "interface",
|
|
19104
|
+
"name": "PmRefusalClosureFinding",
|
|
19105
|
+
"signature": "export interface PmRefusalClosureFinding { code: \"accepted_rejected_value\" | \"duplicate_probe\" | \"empty_corpus\" | \"missing_allowed_values\" | \"missing_suggested_retry\" | \"non_refusal_exit\" | \"retry_failed\"; probe_id: string; detail: string; }"
|
|
19106
|
+
},
|
|
19107
|
+
{
|
|
19108
|
+
"classification": "contract_data",
|
|
19109
|
+
"kind": "interface",
|
|
19110
|
+
"name": "PmRefusalClosureObservation",
|
|
19111
|
+
"signature": "export interface PmRefusalClosureObservation { probe_id: string; entrypoint: string; exit_code: number; rejected_value: string; allowed_values: readonly string[]; suggested_retry: string; retry_succeeded: boolean; }"
|
|
19112
|
+
},
|
|
19113
|
+
{
|
|
19114
|
+
"classification": "contract_data",
|
|
19115
|
+
"kind": "interface",
|
|
19116
|
+
"name": "PmRefusalClosureReport",
|
|
19117
|
+
"signature": "export interface PmRefusalClosureReport { ok: boolean; probe_count: number; closed_probe_count: number; closure_fraction: number; findings: readonly PmRefusalClosureFinding[]; }"
|
|
19118
|
+
},
|
|
18661
19119
|
{
|
|
18662
19120
|
"classification": "contract_data",
|
|
18663
19121
|
"kind": "interface",
|
|
@@ -18706,6 +19164,18 @@
|
|
|
18706
19164
|
"name": "PmUpdateManyActionOptions",
|
|
18707
19165
|
"signature": "export type PmUpdateManyActionOptions = Omit<PmUpdateActionOptions, \"allowMissingParent\" | \"completedAt\"> & PmBulkMutationFilterOptions & PmBulkMutationControlOptions;"
|
|
18708
19166
|
},
|
|
19167
|
+
{
|
|
19168
|
+
"classification": "contract_data",
|
|
19169
|
+
"kind": "function",
|
|
19170
|
+
"name": "positionalShapeKey",
|
|
19171
|
+
"signature": "(slots: readonly PmCommandPositionalSlotContract[]) => string | calls: (slots: readonly PmCommandPositionalSlotContract[]) => string"
|
|
19172
|
+
},
|
|
19173
|
+
{
|
|
19174
|
+
"classification": "contract_data",
|
|
19175
|
+
"kind": "function",
|
|
19176
|
+
"name": "positionalSignatureKey",
|
|
19177
|
+
"signature": "(slots: readonly PmCommandPositionalSlotContract[]) => string | calls: (slots: readonly PmCommandPositionalSlotContract[]) => string"
|
|
19178
|
+
},
|
|
18709
19179
|
{
|
|
18710
19180
|
"classification": "contract_data",
|
|
18711
19181
|
"kind": "value",
|
|
@@ -18760,6 +19230,12 @@
|
|
|
18760
19230
|
"name": "renderPmCommandAliasMigrationHint",
|
|
18761
19231
|
"signature": "(contract: PmCommandAliasContract) => string | calls: (contract: PmCommandAliasContract) => string"
|
|
18762
19232
|
},
|
|
19233
|
+
{
|
|
19234
|
+
"classification": "contract_data",
|
|
19235
|
+
"kind": "function",
|
|
19236
|
+
"name": "renderPmFlagLexiconMarkdown",
|
|
19237
|
+
"signature": "() => string | calls: () => string"
|
|
19238
|
+
},
|
|
18763
19239
|
{
|
|
18764
19240
|
"classification": "contract_data",
|
|
18765
19241
|
"kind": "function",
|
|
@@ -18770,7 +19246,7 @@
|
|
|
18770
19246
|
"classification": "contract_data",
|
|
18771
19247
|
"kind": "function",
|
|
18772
19248
|
"name": "resolveContextIntentContract",
|
|
18773
|
-
"signature": "(command: string, intent: string, contracts?: readonly PmContextIntentContract[]) => PmContextIntentContract | undefined | calls: (command: string, intent: string, contracts?: readonly PmContextIntentContract[]) => PmContextIntentContract | undefined"
|
|
19249
|
+
"signature": "(command: string, intent: string, contracts?: readonly PmContextIntentContract[], positionalArguments?: readonly string[]) => PmContextIntentContract | undefined | calls: (command: string, intent: string, contracts?: readonly PmContextIntentContract[], positionalArguments?: readonly string[]) => PmContextIntentContract | undefined"
|
|
18774
19250
|
},
|
|
18775
19251
|
{
|
|
18776
19252
|
"classification": "contract_data",
|
|
@@ -18796,12 +19272,30 @@
|
|
|
18796
19272
|
"name": "resolvePmCommandOutputEnvelope",
|
|
18797
19273
|
"signature": "(command: string) => PmCommandOutputEnvelopeContract | calls: (command: string) => PmCommandOutputEnvelopeContract"
|
|
18798
19274
|
},
|
|
19275
|
+
{
|
|
19276
|
+
"classification": "contract_data",
|
|
19277
|
+
"kind": "function",
|
|
19278
|
+
"name": "resolvePmCommandPositionalContract",
|
|
19279
|
+
"signature": "(command: string) => PmCommandPositionalContract | undefined | calls: (command: string) => PmCommandPositionalContract | undefined"
|
|
19280
|
+
},
|
|
18799
19281
|
{
|
|
18800
19282
|
"classification": "contract_data",
|
|
18801
19283
|
"kind": "function",
|
|
18802
19284
|
"name": "resolvePmErrorCodeContract",
|
|
18803
19285
|
"signature": "(code: string, catalog: readonly PmErrorCodeContract[]) => PmErrorCodeContract | calls: (code: string, catalog: readonly PmErrorCodeContract[]) => PmErrorCodeContract"
|
|
18804
19286
|
},
|
|
19287
|
+
{
|
|
19288
|
+
"classification": "contract_data",
|
|
19289
|
+
"kind": "function",
|
|
19290
|
+
"name": "resolvePmPositionalActionContract",
|
|
19291
|
+
"signature": "(command: string) => PmPositionalActionContract | undefined | calls: (command: string) => PmPositionalActionContract | undefined"
|
|
19292
|
+
},
|
|
19293
|
+
{
|
|
19294
|
+
"classification": "contract_data",
|
|
19295
|
+
"kind": "function",
|
|
19296
|
+
"name": "resolvePmPositionalActionFlagContracts",
|
|
19297
|
+
"signature": "(actions?: readonly PmPositionalActionContract[]) => Array<readonly [string, CliFlagContract[]]> | calls: (actions?: readonly PmPositionalActionContract[]) => Array<readonly [string, CliFlagContract[]]>"
|
|
19298
|
+
},
|
|
18805
19299
|
{
|
|
18806
19300
|
"classification": "contract_data",
|
|
18807
19301
|
"kind": "function",
|
|
@@ -18850,6 +19344,12 @@
|
|
|
18850
19344
|
"name": "SCHEMA_FLAG_CONTRACTS",
|
|
18851
19345
|
"signature": "CliFlagContract[]"
|
|
18852
19346
|
},
|
|
19347
|
+
{
|
|
19348
|
+
"classification": "contract_data",
|
|
19349
|
+
"kind": "function",
|
|
19350
|
+
"name": "scorePmRefusalClosure",
|
|
19351
|
+
"signature": "(observations: readonly PmRefusalClosureObservation[]) => PmRefusalClosureReport | calls: (observations: readonly PmRefusalClosureObservation[]) => PmRefusalClosureReport"
|
|
19352
|
+
},
|
|
18853
19353
|
{
|
|
18854
19354
|
"classification": "contract_data",
|
|
18855
19355
|
"kind": "interface",
|
|
@@ -19042,6 +19542,18 @@
|
|
|
19042
19542
|
"name": "TOOL_UPDATE_OPTION_CONTRACTS",
|
|
19043
19543
|
"signature": "ToolOptionFlagContract[]"
|
|
19044
19544
|
},
|
|
19545
|
+
{
|
|
19546
|
+
"classification": "contract_data",
|
|
19547
|
+
"kind": "interface",
|
|
19548
|
+
"name": "ToolOptionCliParityFinding",
|
|
19549
|
+
"signature": "export interface ToolOptionCliParityFinding { code: \"missing_cli_flag\" | \"missing_parameter_alias\"; parameter: string; flag: string; parameter_flag: string; }"
|
|
19550
|
+
},
|
|
19551
|
+
{
|
|
19552
|
+
"classification": "contract_data",
|
|
19553
|
+
"kind": "interface",
|
|
19554
|
+
"name": "ToolOptionCliParityReport",
|
|
19555
|
+
"signature": "export interface ToolOptionCliParityReport { ok: boolean; parameter_count: number; cli_flag_count: number; findings: ToolOptionCliParityFinding[]; }"
|
|
19556
|
+
},
|
|
19045
19557
|
{
|
|
19046
19558
|
"classification": "contract_data",
|
|
19047
19559
|
"kind": "interface",
|
|
@@ -19096,12 +19608,42 @@
|
|
|
19096
19608
|
"name": "validateReadOutputOptions",
|
|
19097
19609
|
"signature": "(command: string, options: Record<string, unknown>) => void | calls: (command: string, options: Record<string, unknown>) => void"
|
|
19098
19610
|
},
|
|
19611
|
+
{
|
|
19612
|
+
"classification": "contract_data",
|
|
19613
|
+
"kind": "function",
|
|
19614
|
+
"name": "verifyCliFlagInvocationParity",
|
|
19615
|
+
"signature": "(command: string, declarations: readonly CliFlagInvocationContract[], observations: readonly CliFlagArityObservation[]) => CliFlagInvocationParityReport | calls: (command: string, declarations: readonly CliFlagInvocationContract[], observations: readonly CliFlagArityObservation[]) => CliFlagInvocationParityReport"
|
|
19616
|
+
},
|
|
19617
|
+
{
|
|
19618
|
+
"classification": "contract_data",
|
|
19619
|
+
"kind": "function",
|
|
19620
|
+
"name": "verifyExplicitPositionalSlotCensus",
|
|
19621
|
+
"signature": "(explicitCommands: Iterable<string>, destinationCommands: Iterable<string>) => PmCommandPositionalFinding[] | calls: (explicitCommands: Iterable<string>, destinationCommands: Iterable<string>) => PmCommandPositionalFinding[]"
|
|
19622
|
+
},
|
|
19099
19623
|
{
|
|
19100
19624
|
"classification": "contract_data",
|
|
19101
19625
|
"kind": "function",
|
|
19102
19626
|
"name": "verifyPmCliGrammar",
|
|
19103
19627
|
"signature": "(commands: readonly string[], aliases?: readonly PmCommandAliasContract[]) => PmCliGrammarReport | calls: (commands: readonly string[], aliases?: readonly PmCommandAliasContract[]) => PmCliGrammarReport"
|
|
19104
19628
|
},
|
|
19629
|
+
{
|
|
19630
|
+
"classification": "contract_data",
|
|
19631
|
+
"kind": "function",
|
|
19632
|
+
"name": "verifyPmCommandPositionalContracts",
|
|
19633
|
+
"signature": "(observed: readonly PmCommandPositionalContract[], options?: { declared?: readonly PmCommandPositionalContract[]; positionalShapeBudget?: number; }) => PmCommandPositionalReport | calls: (observed: readonly PmCommandPositionalContract[], options?: { declared?: readonly PmCommandPositionalContract[]; positionalShapeBudget?: number; }) => PmCommandPositionalReport"
|
|
19634
|
+
},
|
|
19635
|
+
{
|
|
19636
|
+
"classification": "contract_data",
|
|
19637
|
+
"kind": "function",
|
|
19638
|
+
"name": "verifyPmFlagLexicon",
|
|
19639
|
+
"signature": "(entries?: readonly PmFlagLexiconEntry[], budgets?: readonly PmCommandFlagBudget[]) => PmFlagLexiconReport | calls: (entries?: readonly PmFlagLexiconEntry[], budgets?: readonly PmCommandFlagBudget[]) => PmFlagLexiconReport"
|
|
19640
|
+
},
|
|
19641
|
+
{
|
|
19642
|
+
"classification": "contract_data",
|
|
19643
|
+
"kind": "function",
|
|
19644
|
+
"name": "verifyToolOptionCliParity",
|
|
19645
|
+
"signature": "(toolOptions: readonly ToolOptionFlagContract[], cliFlags: readonly CliFlagContract[]) => ToolOptionCliParityReport | calls: (toolOptions: readonly ToolOptionFlagContract[], cliFlags: readonly CliFlagContract[]) => ToolOptionCliParityReport"
|
|
19646
|
+
},
|
|
19105
19647
|
{
|
|
19106
19648
|
"classification": "contract_data",
|
|
19107
19649
|
"kind": "function",
|
|
@@ -25232,7 +25774,7 @@
|
|
|
25232
25774
|
"classification": "advanced_export",
|
|
25233
25775
|
"kind": "interface",
|
|
25234
25776
|
"name": "ContractsResult",
|
|
25235
|
-
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
25777
|
+
"signature": "export interface ContractsResult { schema_version: string | null; schema_id: string | null; selected: { action: string | null; command: string | null; summary: boolean; schema_only: boolean; flags_only: boolean; availability_only: boolean; runtime_only: boolean; command_scoped: boolean; }; actions?: string[]; action_availability?: ContractsActionAvailability[]; commands: string[]; schema?: Record<string, unknown>; schema_omitted_reason?: string; command_flags_omitted_reason?: string; commander_aliases_omitted_reason?: string; command_flags?: CommandFlagSurface[]; list_projections?: ListCommandProjectionSurface[]; command_aliases?: CommandAliasSurface[]; grammar_contracts?: { nouns: readonly string[]; shared_verbs: readonly string[]; scope_before_verb: boolean; visible_top_level_ceiling: number; ceiling_raise_requires_pm_item: boolean; positional_shape_budget: number; positional_shape_count: number; positional_action_count: number; positional_action_parents: readonly string[]; positional_signatures?: readonly PmCommandPositionalContract[]; destinations?: readonly PmCommandDestinationContract[]; }; commander_aliases?: Record<string, CommanderOptionAliasContract[]>; extension_commands?: ExtensionCommandContract[]; command_summaries?: CommandSummarySurface[]; output_policy?: { token_estimate: \"ceil(utf8_bytes / 4)\"; degradation_ladder: string[]; allows_unbounded_opt_out: boolean; }; runtime_schema?: { statuses: string[]; open_status: string; close_status: string; canceled_status: string; types: string[]; fields_by_command: Record<string, string[]>; }; relationship_kind_contracts?: Array<{ canonical: string; aliases: string[]; inverse?: string; ordering: boolean; hierarchy: boolean; }>; extension_contracts?: { capabilities: string[]; services: string[]; policy_modes: string[]; policy_mode_scope: \"extensions.policy.mode\"; policy_surfaces: string[]; trust_modes: string[]; trust_mode_scope: \"extensions.policy.trust_mode\"; sandbox_profiles: string[]; manifest_versions: number[]; compatibility: { current: string; previous: string[]; breaking_strategy: string; }; }; governance_contracts?: { ownership_enforcement_modes: string[]; create_modes: string[]; close_validation_modes: string[]; workflow_enforcement_modes: string[]; }; assurance_contracts?: { measurement_source_kinds: readonly string[]; gate_triggers: readonly string[]; }; mcp_tools?: McpToolContract[]; context_intents?: readonly PmContextIntentContract[]; read_output_dimensions?: readonly PmReadOutputSurfaceContract[]; error_codes?: readonly PmErrorCodeContract[]; command_output_contracts?: Array<{ budget: PmCommandOutputBudgetContract; envelope: PmCommandOutputEnvelopeContract; }>; command_exit_contracts?: { vocabulary: readonly PmCommandExitOutcomeContract[]; command_sets: Array<{ commands: string[]; exit_codes: PmCommandExitContract[\"exit_codes\"]; }>; }; }"
|
|
25236
25778
|
},
|
|
25237
25779
|
{
|
|
25238
25780
|
"classification": "supported",
|
|
@@ -28134,6 +28676,8 @@
|
|
|
28134
28676
|
"acceptance_criteria_mutation_conflict",
|
|
28135
28677
|
"acceptance_criteria_remove_unmatched",
|
|
28136
28678
|
"acceptance_criteria_semicolon_forbidden",
|
|
28679
|
+
"accepted_rejected_value",
|
|
28680
|
+
"alias_collision",
|
|
28137
28681
|
"alias_target_missing",
|
|
28138
28682
|
"already_claimed_by",
|
|
28139
28683
|
"ambiguous_option_combination",
|
|
@@ -28146,6 +28690,7 @@
|
|
|
28146
28690
|
"body_file_conflicts_with_body",
|
|
28147
28691
|
"body_file_missing_path",
|
|
28148
28692
|
"body_file_unreadable",
|
|
28693
|
+
"budget_exceeded",
|
|
28149
28694
|
"bundle_integrity_torn_install",
|
|
28150
28695
|
"capability_undeclared",
|
|
28151
28696
|
"capability_unused",
|
|
@@ -28171,14 +28716,18 @@
|
|
|
28171
28716
|
"dependency_edge_not_allowed",
|
|
28172
28717
|
"dependency_target_not_found",
|
|
28173
28718
|
"dependency_temporal_order_invalid",
|
|
28719
|
+
"duplicate_canonical_flag",
|
|
28174
28720
|
"duplicate_command",
|
|
28175
28721
|
"duplicate_destination",
|
|
28176
28722
|
"duplicate_edge",
|
|
28723
|
+
"duplicate_observation",
|
|
28724
|
+
"duplicate_probe",
|
|
28177
28725
|
"duplicate_sweep_cost_limit",
|
|
28178
28726
|
"duplicate_target_circular",
|
|
28179
28727
|
"duplicate_target_is_duplicate",
|
|
28180
28728
|
"duplicate_target_missing",
|
|
28181
28729
|
"duplicate_target_self",
|
|
28730
|
+
"empty_corpus",
|
|
28182
28731
|
"empty_surface",
|
|
28183
28732
|
"event_cursor_query_mismatch",
|
|
28184
28733
|
"event_index_unavailable",
|
|
@@ -28222,6 +28771,7 @@
|
|
|
28222
28771
|
"host_environment_resource_fault",
|
|
28223
28772
|
"improvement_metric_contract_conflict",
|
|
28224
28773
|
"improvement_observation_conflict",
|
|
28774
|
+
"inconsistent_concept_kind",
|
|
28225
28775
|
"init_existing_settings_requires_force",
|
|
28226
28776
|
"init_gitignore_unwritable",
|
|
28227
28777
|
"init_id_prefix_conflict",
|
|
@@ -28275,11 +28825,18 @@
|
|
|
28275
28825
|
"merge_git_config_unwritable",
|
|
28276
28826
|
"merge_reconcile_discards_require_acceptance",
|
|
28277
28827
|
"merge_root_not_found",
|
|
28828
|
+
"missing_allowed_values",
|
|
28829
|
+
"missing_budget",
|
|
28830
|
+
"missing_cli_flag",
|
|
28278
28831
|
"missing_destination",
|
|
28279
28832
|
"missing_directory",
|
|
28280
28833
|
"missing_lifecycle_target",
|
|
28834
|
+
"missing_observation",
|
|
28835
|
+
"missing_observed_signature",
|
|
28836
|
+
"missing_parameter_alias",
|
|
28281
28837
|
"missing_required_argument",
|
|
28282
28838
|
"missing_required_option",
|
|
28839
|
+
"missing_suggested_retry",
|
|
28283
28840
|
"module_import_failed",
|
|
28284
28841
|
"multi_target_github_install_ambiguous",
|
|
28285
28842
|
"mutation_author_required",
|
|
@@ -28290,11 +28847,14 @@
|
|
|
28290
28847
|
"no_tests_found",
|
|
28291
28848
|
"no_update_fields",
|
|
28292
28849
|
"no_version_bounds_declared",
|
|
28850
|
+
"non_refusal_exit",
|
|
28293
28851
|
"npm_package_not_found",
|
|
28294
28852
|
"ownership_conflict",
|
|
28295
28853
|
"ownership_dependency_bypass_restricted_options",
|
|
28296
28854
|
"ownership_metadata_bypass_restricted_options",
|
|
28297
28855
|
"package_spec_empty",
|
|
28856
|
+
"positional_shape_budget_exceeded",
|
|
28857
|
+
"positional_signature_mismatch",
|
|
28298
28858
|
"profile_name_empty",
|
|
28299
28859
|
"profile_name_not_normalized",
|
|
28300
28860
|
"profile_summary_empty",
|
|
@@ -28308,12 +28868,15 @@
|
|
|
28308
28868
|
"redundant_edge",
|
|
28309
28869
|
"reindex_already_running",
|
|
28310
28870
|
"reserved_item_field",
|
|
28871
|
+
"retry_failed",
|
|
28311
28872
|
"schema_migration_input_required",
|
|
28312
28873
|
"settings_read_fs_error",
|
|
28313
28874
|
"settings_read_invalid_json",
|
|
28314
28875
|
"settings_read_invalid_schema",
|
|
28315
28876
|
"settings_read_merge_failed",
|
|
28877
|
+
"stale_budget",
|
|
28316
28878
|
"stale_destination",
|
|
28879
|
+
"stale_observed_signature",
|
|
28317
28880
|
"status_duplicate",
|
|
28318
28881
|
"status_invalid",
|
|
28319
28882
|
"stdin_json_invalid",
|
|
@@ -28341,6 +28904,7 @@
|
|
|
28341
28904
|
"tracker_root_unreadable",
|
|
28342
28905
|
"type_duplicate",
|
|
28343
28906
|
"type_invalid",
|
|
28907
|
+
"undeclared_observation",
|
|
28344
28908
|
"unknown_command",
|
|
28345
28909
|
"unknown_context_intent",
|
|
28346
28910
|
"unknown_error",
|