@vscode/vscode-settings-history 0.0.2-63 → 0.0.2-65

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/dist/history.json CHANGED
@@ -460461,5 +460461,501 @@
460461
460461
  }
460462
460462
  }
460463
460463
  ]
460464
+ },
460465
+ {
460466
+ "version": "1.134.0-insider+2026081318",
460467
+ "base": {
460468
+ "version": "1.134.0-insider+2026081219"
460469
+ },
460470
+ "patch": [
460471
+ {
460472
+ "op": "remove",
460473
+ "path": "/chat.agentHost.copilot.reasoningEffortOverride"
460474
+ },
460475
+ {
460476
+ "op": "remove",
460477
+ "path": "/chat.agentHost.modelCapabilityOverrides"
460478
+ },
460479
+ {
460480
+ "op": "add",
460481
+ "path": "/chat.defaultModel/policy/managedSettings/model",
460482
+ "value": {
460483
+ "type": "string"
460484
+ }
460485
+ },
460486
+ {
460487
+ "op": "replace",
460488
+ "path": "/chat.tools.edits.autoApprove/scope",
460489
+ "value": 1
460490
+ },
460491
+ {
460492
+ "op": "add",
460493
+ "path": "/chat.tools.edits.autoApprove/defaultDefaultValue/**~1.github~1agents~1**",
460494
+ "value": false
460495
+ },
460496
+ {
460497
+ "op": "add",
460498
+ "path": "/chat.tools.edits.autoApprove/defaultDefaultValue/**~1.github~1hooks~1**",
460499
+ "value": false
460500
+ },
460501
+ {
460502
+ "op": "add",
460503
+ "path": "/chat.tools.edits.autoApprove/defaultDefaultValue/**~1.claude~1agents~1**",
460504
+ "value": false
460505
+ },
460506
+ {
460507
+ "op": "add",
460508
+ "path": "/chat.tools.edits.autoApprove/defaultDefaultValue/**~1.claude~1settings.json",
460509
+ "value": false
460510
+ },
460511
+ {
460512
+ "op": "add",
460513
+ "path": "/chat.tools.edits.autoApprove/defaultDefaultValue/**~1.claude~1settings.local.json",
460514
+ "value": false
460515
+ },
460516
+ {
460517
+ "op": "add",
460518
+ "path": "/chat.tools.edits.autoApprove/default/**~1.github~1agents~1**",
460519
+ "value": false
460520
+ },
460521
+ {
460522
+ "op": "add",
460523
+ "path": "/chat.tools.edits.autoApprove/default/**~1.github~1hooks~1**",
460524
+ "value": false
460525
+ },
460526
+ {
460527
+ "op": "add",
460528
+ "path": "/chat.tools.edits.autoApprove/default/**~1.claude~1agents~1**",
460529
+ "value": false
460530
+ },
460531
+ {
460532
+ "op": "add",
460533
+ "path": "/chat.tools.edits.autoApprove/default/**~1.claude~1settings.json",
460534
+ "value": false
460535
+ },
460536
+ {
460537
+ "op": "add",
460538
+ "path": "/chat.tools.edits.autoApprove/default/**~1.claude~1settings.local.json",
460539
+ "value": false
460540
+ },
460541
+ {
460542
+ "op": "add",
460543
+ "path": "/chat.tools.edits.autoApprove/agentHost",
460544
+ "value": {
460545
+ "key": "editAutoApprovePatterns"
460546
+ }
460547
+ },
460548
+ {
460549
+ "op": "add",
460550
+ "path": "/chat.agentHost.experimental.activeAgentTitleGeneration",
460551
+ "value": {
460552
+ "type": "boolean",
460553
+ "description": "When enabled, the active agent names new sessions and chats using rename tools. When disabled, a utility model generates titles. Changes apply to sessions and chats created afterward.",
460554
+ "default": true,
460555
+ "scope": 1,
460556
+ "tags": [
460557
+ "experimental",
460558
+ "advanced",
460559
+ "onExP"
460560
+ ],
460561
+ "experiment": {
460562
+ "mode": "auto"
460563
+ },
460564
+ "agentHost": {
460565
+ "key": "activeAgentTitleGeneration"
460566
+ },
460567
+ "section": {
460568
+ "id": "chatAgentHostStarter",
460569
+ "title": "Chat Agent Host Starter"
460570
+ },
460571
+ "defaultDefaultValue": true,
460572
+ "restricted": false
460573
+ }
460574
+ },
460575
+ {
460576
+ "op": "add",
460577
+ "path": "/chat.agentHost.copilot.modelCapabilityOverrides",
460578
+ "value": {
460579
+ "type": "object",
460580
+ "markdownDescription": "Per-model capability overrides for Copilot SDK agent sessions, keyed by model id (`*` matches every model; a specific entry wins field-by-field), intended for evaluating models against an existing model's profile. Declare an aliased `family` (for example `claude-opus-4.8`) to route the model to that family's tuned system prompt and tool profile without changing the model id sent to the runtime — so a preview model can be evaluated against a known prompt while still running on its own endpoint — a `reasoningEffort` to pin its effort level, `availableTools`/`excludedTools` to filter its tool set, or `modelCapabilities` to override individual capability limits (e.g. vision support, context window size) passed through to the SDK. All overrides apply when a session launches or resumes. On a mid-session model change, only the new model's `reasoningEffort` is applied; the session keeps its launch-time family, tool filters, and model capabilities. Only affects Copilot CLI agent sessions.\n\n**Note**: This is an advanced setting for experimentation.",
460581
+ "additionalProperties": {
460582
+ "type": "object",
460583
+ "properties": {
460584
+ "family": {
460585
+ "type": "string",
460586
+ "description": "Route the model to another family's tuned system prompt and tool profile (e.g. `claude-opus-4.8`). The model id sent to the runtime is unaffected, so the session still runs on the selected model."
460587
+ },
460588
+ "reasoningEffort": {
460589
+ "type": "string",
460590
+ "enum": [
460591
+ "none",
460592
+ "minimal",
460593
+ "low",
460594
+ "medium",
460595
+ "high",
460596
+ "xhigh",
460597
+ "max",
460598
+ "ultra"
460599
+ ],
460600
+ "description": "Reasoning effort for sessions on this model, overriding the model picker's thinking level. Use the `*` entry to set it for every model. Unrecognized values are ignored."
460601
+ },
460602
+ "availableTools": {
460603
+ "type": "array",
460604
+ "items": {
460605
+ "type": "string"
460606
+ },
460607
+ "description": "When set, only matching tools are available to sessions on this model. Patterns: bare tool names, `builtin:*` or `builtin:<name>` (Copilot runtime tools), `mcp:*` or `mcp:<name>` (MCP server tools), and `custom:*` or `custom:<name>` (every tool VS Code registers with the SDK, including the agent host's own terminal tools); a bare `*` expands to all three sources."
460608
+ },
460609
+ "excludedTools": {
460610
+ "type": "array",
460611
+ "items": {
460612
+ "type": "string"
460613
+ },
460614
+ "description": "Tools disabled for sessions on this model; same pattern syntax as `availableTools` and takes precedence over it. Note that `custom:*` and a bare `*` also disable the agent host's own terminal tools registered with the SDK."
460615
+ },
460616
+ "modelCapabilities": {
460617
+ "type": "object",
460618
+ "additionalProperties": true,
460619
+ "description": "Per-property model capability overrides passed through to the Copilot SDK's `modelCapabilities` session field (e.g. `{ \"supports\": { \"vision\": false }, \"limits\": { \"max_context_window_tokens\": 64000 } }`), deep-merged over the runtime's resolved defaults for this model. Applied when the session launches or resumes."
460620
+ }
460621
+ }
460622
+ },
460623
+ "default": {},
460624
+ "scope": 1,
460625
+ "tags": [
460626
+ "experimental",
460627
+ "advanced"
460628
+ ],
460629
+ "section": {
460630
+ "id": "chatSidebar",
460631
+ "title": "Chat"
460632
+ },
460633
+ "defaultDefaultValue": {},
460634
+ "restricted": false
460635
+ }
460636
+ }
460637
+ ]
460638
+ },
460639
+ {
460640
+ "version": "1.134.0-insider+2026081414",
460641
+ "base": {
460642
+ "version": "1.134.0-insider+2026081318"
460643
+ },
460644
+ "patch": [
460645
+ {
460646
+ "op": "replace",
460647
+ "path": "/chat.agentHost.copilot.modelCapabilityOverrides/markdownDescription",
460648
+ "value": "Per-model capability overrides for Copilot SDK agent sessions, keyed by model id (`*` matches every model; a specific entry wins field-by-field), intended for evaluating models against an existing model's profile. Declare an aliased `family` (for example `claude-opus-4.8`) to route the model to that family's tuned system prompt and tool profile without changing the model id sent to the runtime — so a preview model can be evaluated against a known prompt while still running on its own endpoint — a `reasoningEffort` to pin its effort level, `availableTools`/`excludedTools` to filter its tool set, or `modelCapabilities` to override individual capability limits (e.g. vision support, context window size) passed through to the SDK. All overrides apply when a session launches or resumes. On a mid-session model change, only the new model's `reasoningEffort` is applied; the session keeps its launch-time family, tool filters, and model capabilities. Only affects Copilot agent sessions.\n\n**Note**: This is an advanced setting for experimentation."
460649
+ },
460650
+ {
460651
+ "op": "remove",
460652
+ "path": "/github.copilot.chat.autoMode.v2.enabled"
460653
+ },
460654
+ {
460655
+ "op": "add",
460656
+ "path": "/chat.agentHost.allowSignedOutWhenUsable/tags/2",
460657
+ "value": "onExP"
460658
+ },
460659
+ {
460660
+ "op": "add",
460661
+ "path": "/chat.agentHost.allowSignedOutWhenUsable/experiment",
460662
+ "value": {
460663
+ "mode": "startup"
460664
+ }
460665
+ },
460666
+ {
460667
+ "op": "replace",
460668
+ "path": "/chat.agentHost.cloudSandbox.enabled/description",
460669
+ "value": "Enable connecting to Copilot cloud sandbox sessions over a live Agent Host Protocol relay. When enabled, opening a Copilot cloud session connects to its sandbox for slash commands and a responsive, steerable experience instead of only polling logs."
460670
+ },
460671
+ {
460672
+ "op": "replace",
460673
+ "path": "/chat.customizations.promptMigration.enabled/description",
460674
+ "value": "Controls whether the Chat Customizations editor offers to convert prompt files into skills for agent-host harnesses, which ignore prompt files. When disabled, the migration card and sidebar shortcut are hidden."
460675
+ },
460676
+ {
460677
+ "op": "replace",
460678
+ "path": "/chat.implicitContext.includeActiveEditor/markdownDescription",
460679
+ "value": "When enabled, the active editor is automatically forwarded as context, even when it would otherwise only be suggested. Selections and explicitly attached files are always included regardless of this setting.\n\nNote: this setting currently only applies to Agent Host sessions (such as Copilot)."
460680
+ },
460681
+ {
460682
+ "op": "replace",
460683
+ "path": "/chat.experimental.permissionsSandboxToggle.enabled/markdownDescription",
460684
+ "value": "Controls whether the permissions picker shows an inline \"Sandboxing for terminal\" toggle on the Manual permissions option. For Copilot SDK sessions using the built-in shell tool, the toggle reflects and updates `#chat.agentHost.sdkSandbox.enabled#` or `#chat.agentHost.sdkSandbox.enabledWindows#`."
460685
+ },
460686
+ {
460687
+ "op": "replace",
460688
+ "path": "/chat.defaultConfiguration/defaultDefaultValue/approvals",
460689
+ "value": "manual"
460690
+ },
460691
+ {
460692
+ "op": "replace",
460693
+ "path": "/chat.defaultConfiguration/markdownDescription",
460694
+ "value": "Controls the default configuration for new agent sessions (such as Copilot). You can still change the mode and approval behavior per session, and each session remembers what was used."
460695
+ },
460696
+ {
460697
+ "op": "replace",
460698
+ "path": "/chat.defaultConfiguration/default/approvals",
460699
+ "value": "manual"
460700
+ },
460701
+ {
460702
+ "op": "replace",
460703
+ "path": "/chat.defaultConfiguration/properties/approvals/description",
460704
+ "value": "The starting approval behavior for new agent sessions. If enterprise policy disables auto approval, new sessions use Manual permissions."
460705
+ },
460706
+ {
460707
+ "op": "replace",
460708
+ "path": "/chat.defaultConfiguration/properties/approvals/default",
460709
+ "value": "manual"
460710
+ },
460711
+ {
460712
+ "op": "replace",
460713
+ "path": "/chat.defaultConfiguration/properties/approvals/enumDescriptions/0",
460714
+ "value": "Manual permissions — asks when approval settings don't apply."
460715
+ },
460716
+ {
460717
+ "op": "replace",
460718
+ "path": "/chat.defaultConfiguration/properties/approvals/enum/0",
460719
+ "value": "manual"
460720
+ },
460721
+ {
460722
+ "op": "replace",
460723
+ "path": "/chat.agentHost.sdkSandbox.enabled/markdownDescription",
460724
+ "value": "Sandbox mode for the Copilot SDK's built-in shell tool on macOS and Linux. Only takes effect when `#chat.agentHost.customTerminalTool.enabled#` is `false`; when the Agent Host's own terminal tool is enabled, the engine sandbox is controlled by `#chat.agent.sandbox.enabled#`. The sandbox applies only to requests that run with manual permissions — not when approvals are bypassed. Unrestricted network is controlled by `#chat.agent.sandbox.allowNetwork#`. Use `#chat.agentHost.sdkSandbox.enabledWindows#` on Windows."
460725
+ },
460726
+ {
460727
+ "op": "add",
460728
+ "path": "/workbench.editor.tabActionReserveSpace",
460729
+ "value": {
460730
+ "type": "boolean",
460731
+ "default": true,
460732
+ "description": "Controls whether Modern UI editor tabs always reserve space for tab action buttons. When disabled, clean tabs stay compact; tabs with persistent dirty or pinned indicators reserve space regardless.",
460733
+ "section": {
460734
+ "id": "workbench",
460735
+ "title": "Workbench",
460736
+ "order": 7
460737
+ },
460738
+ "defaultDefaultValue": true,
460739
+ "scope": 4,
460740
+ "restricted": false
460741
+ }
460742
+ },
460743
+ {
460744
+ "op": "add",
460745
+ "path": "/workbench.accounts.showAvatar",
460746
+ "value": {
460747
+ "type": "boolean",
460748
+ "default": true,
460749
+ "description": "Controls whether signed-in account profile images (avatars) are shown in account-related UI, such as the Accounts item in the Activity Bar.",
460750
+ "section": {
460751
+ "id": "workbench",
460752
+ "title": "Workbench",
460753
+ "order": 7
460754
+ },
460755
+ "defaultDefaultValue": true,
460756
+ "scope": 4,
460757
+ "restricted": false
460758
+ }
460759
+ },
460760
+ {
460761
+ "op": "add",
460762
+ "path": "/chat.agentSessions.showExternal",
460763
+ "value": {
460764
+ "type": "string",
460765
+ "enum": [
460766
+ "none",
460767
+ "all",
460768
+ "last24Hours",
460769
+ "last7Days"
460770
+ ],
460771
+ "enumDescriptions": [
460772
+ "Only shows sessions created by the Agent Host.",
460773
+ "Shows all sessions discovered from supported external agent applications.",
460774
+ "Shows external sessions updated in the last 24 hours.",
460775
+ "Shows external sessions updated in the last 7 days."
460776
+ ],
460777
+ "default": "last7Days",
460778
+ "markdownDescription": "Controls which external agent sessions, created outside VS Code's Agent Host, are shown.",
460779
+ "agentHost": {
460780
+ "key": "showExternalSessions"
460781
+ },
460782
+ "section": {
460783
+ "id": "chatSidebar",
460784
+ "title": "Chat"
460785
+ },
460786
+ "defaultDefaultValue": "last7Days",
460787
+ "scope": 4,
460788
+ "restricted": false
460789
+ }
460790
+ },
460791
+ {
460792
+ "op": "add",
460793
+ "path": "/chat.agentHost.copilot.reasoningEffortOverride",
460794
+ "value": {
460795
+ "type": "string",
460796
+ "markdownDescription": "Overrides the reasoning effort for Copilot SDK agent sessions regardless of the per-model picker value. Set it to a level the selected model supports (for example `low`, `medium`, `high`, or `xhigh`) — choosing a level the model does not support may be rejected by the model. A value that isn't a recognized effort level is ignored and the session falls back to the picker value. Applied when a session is created and when its model changes. Only affects Copilot CLI agent sessions.\n\n**Note**: This is an advanced setting for experimentation.",
460797
+ "default": "",
460798
+ "tags": [
460799
+ "experimental",
460800
+ "advanced"
460801
+ ],
460802
+ "section": {
460803
+ "id": "chatSidebar",
460804
+ "title": "Chat"
460805
+ },
460806
+ "defaultDefaultValue": "",
460807
+ "scope": 4,
460808
+ "restricted": false
460809
+ }
460810
+ },
460811
+ {
460812
+ "op": "add",
460813
+ "path": "/chat.agentHost.copilot.reasoningSummary.enabled",
460814
+ "value": {
460815
+ "type": "boolean",
460816
+ "markdownDescription": "When enabled, requests concise reasoning summaries for supported Copilot SDK agent sessions.",
460817
+ "default": false,
460818
+ "experiment": {
460819
+ "mode": "startup"
460820
+ },
460821
+ "tags": [
460822
+ "experimental",
460823
+ "advanced",
460824
+ "onExP"
460825
+ ],
460826
+ "section": {
460827
+ "id": "chatSidebar",
460828
+ "title": "Chat"
460829
+ },
460830
+ "defaultDefaultValue": false,
460831
+ "scope": 4,
460832
+ "restricted": false
460833
+ }
460834
+ },
460835
+ {
460836
+ "op": "add",
460837
+ "path": "/chat.customizations.userDataMigration.enabled",
460838
+ "value": {
460839
+ "type": "boolean",
460840
+ "tags": [
460841
+ "experimental"
460842
+ ],
460843
+ "description": "Controls whether the Chat Customizations editor offers to move agents and instructions stored in user data to the active agent-host harness, which ignores the user data location. When disabled, the migration card and sidebar shortcut are hidden.",
460844
+ "default": false,
460845
+ "section": {
460846
+ "id": "chatSidebar",
460847
+ "title": "Chat"
460848
+ },
460849
+ "defaultDefaultValue": false,
460850
+ "scope": 4,
460851
+ "restricted": false
460852
+ }
460853
+ },
460854
+ {
460855
+ "op": "add",
460856
+ "path": "/terminal.explorerKind",
460857
+ "value": {
460858
+ "type": "string",
460859
+ "enum": [
460860
+ "integrated",
460861
+ "external",
460862
+ "both"
460863
+ ],
460864
+ "enumDescriptions": [
460865
+ "Show the integrated terminal action.",
460866
+ "Show the external terminal action.",
460867
+ "Show both integrated and external terminal actions."
460868
+ ],
460869
+ "default": "integrated",
460870
+ "description": "When opening a file from the Explorer in a terminal, determines what kind of terminal will be launched",
460871
+ "section": {
460872
+ "id": "externalTerminal",
460873
+ "title": "External Terminal",
460874
+ "order": 100
460875
+ },
460876
+ "defaultDefaultValue": "integrated",
460877
+ "scope": 4,
460878
+ "restricted": false
460879
+ }
460880
+ },
460881
+ {
460882
+ "op": "add",
460883
+ "path": "/terminal.sourceControlRepositoriesKind",
460884
+ "value": {
460885
+ "type": "string",
460886
+ "enum": [
460887
+ "integrated",
460888
+ "external",
460889
+ "both"
460890
+ ],
460891
+ "enumDescriptions": [
460892
+ "Show the integrated terminal action.",
460893
+ "Show the external terminal action.",
460894
+ "Show both integrated and external terminal actions."
460895
+ ],
460896
+ "default": "integrated",
460897
+ "description": "When opening a repository from the Source Control Repositories view in a terminal, determines what kind of terminal will be launched",
460898
+ "section": {
460899
+ "id": "externalTerminal",
460900
+ "title": "External Terminal",
460901
+ "order": 100
460902
+ },
460903
+ "defaultDefaultValue": "integrated",
460904
+ "scope": 4,
460905
+ "restricted": false
460906
+ }
460907
+ },
460908
+ {
460909
+ "op": "add",
460910
+ "path": "/terminal.external.windowsExec",
460911
+ "value": {
460912
+ "type": "string",
460913
+ "description": "Customizes which terminal to run on Windows.",
460914
+ "default": "C:\\Windows\\System32\\cmd.exe",
460915
+ "scope": 1,
460916
+ "section": {
460917
+ "id": "externalTerminal",
460918
+ "title": "External Terminal",
460919
+ "order": 100
460920
+ },
460921
+ "defaultDefaultValue": "C:\\Windows\\System32\\cmd.exe",
460922
+ "restricted": false
460923
+ }
460924
+ },
460925
+ {
460926
+ "op": "add",
460927
+ "path": "/terminal.external.osxExec",
460928
+ "value": {
460929
+ "type": "string",
460930
+ "description": "Customizes which terminal application to run on macOS.",
460931
+ "default": "Terminal.app",
460932
+ "scope": 1,
460933
+ "section": {
460934
+ "id": "externalTerminal",
460935
+ "title": "External Terminal",
460936
+ "order": 100
460937
+ },
460938
+ "defaultDefaultValue": "Terminal.app",
460939
+ "restricted": false
460940
+ }
460941
+ },
460942
+ {
460943
+ "op": "add",
460944
+ "path": "/terminal.external.linuxExec",
460945
+ "value": {
460946
+ "type": "string",
460947
+ "description": "Customizes which terminal to run on Linux.",
460948
+ "default": "x-terminal-emulator",
460949
+ "scope": 1,
460950
+ "section": {
460951
+ "id": "externalTerminal",
460952
+ "title": "External Terminal",
460953
+ "order": 100
460954
+ },
460955
+ "defaultDefaultValue": "x-terminal-emulator",
460956
+ "restricted": false
460957
+ }
460958
+ }
460959
+ ]
460464
460960
  }
460465
460961
  ]
@@ -13166,6 +13166,37 @@ export type VscodeSettings_1_134_0_insider_2026081219 = Patch<VscodeSettings_1_1
13166
13166
  readonly 'workbench.experimental.modernUIUppercaseViewHeaders'?: boolean;
13167
13167
  }, 'github.copilot.chat.advanced.inlineEdits.cacheDelay' | 'github.copilot.chat.advanced.inlineEdits.debounce' | 'github.copilot.chat.advanced.inlineEdits.excludedProviders' | 'github.copilot.chat.advanced.inlineEdits.extraDebounceEndOfLine' | 'github.copilot.chat.advanced.inlineEdits.nesMimicGhostTextBehavior' | 'github.copilot.chat.advanced.inlineEdits.rebasedCacheDelay' | 'github.copilot.chat.advanced.inlineEdits.unification' | 'github.copilot.chat.advanced.inlineEdits.xtabProvider.diffPatch.splitOnDiff' | 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nLinesAbove' | 'github.copilot.chat.advanced.inlineEdits.xtabProvider.nLinesBelow' | 'github.copilot.chat.advanced.inlineEdits.xtabProvider.patchFastYieldLineWithCursor' | 'github.copilot.chat.advanced.inlineEdits.xtabProvider.patchModelPredictionKind' | 'github.copilot.chat.cloudAgentBackend.version'>;
13168
13168
 
13169
+ // ── 1.134.0-insider+2026081318: +2, ~2, -2 ──
13170
+ export type VscodeSettings_1_134_0_insider_2026081318 = Patch<VscodeSettings_1_134_0_insider_2026081219, {
13171
+ readonly 'chat.agentHost.copilot.modelCapabilityOverrides'?: Record<string, unknown>;
13172
+ readonly 'chat.agentHost.experimental.activeAgentTitleGeneration'?: boolean;
13173
+ readonly 'chat.defaultModel'?: string;
13174
+ readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
13175
+ }, 'chat.agentHost.copilot.reasoningEffortOverride' | 'chat.agentHost.modelCapabilityOverrides'>;
13176
+
13177
+ // ── 1.134.0-insider+2026081414: +11, ~8, -1 ──
13178
+ export type VscodeSettings_1_134_0_insider_2026081414 = Patch<VscodeSettings_1_134_0_insider_2026081318, {
13179
+ readonly 'chat.agentHost.allowSignedOutWhenUsable'?: boolean;
13180
+ readonly 'chat.agentHost.cloudSandbox.enabled'?: boolean;
13181
+ readonly 'chat.agentHost.copilot.modelCapabilityOverrides'?: Record<string, unknown>;
13182
+ readonly 'chat.agentHost.copilot.reasoningEffortOverride'?: string;
13183
+ readonly 'chat.agentHost.copilot.reasoningSummary.enabled'?: boolean;
13184
+ readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on';
13185
+ readonly 'chat.agentSessions.showExternal'?: 'none' | 'all' | 'last24Hours' | 'last7Days';
13186
+ readonly 'chat.customizations.promptMigration.enabled'?: boolean;
13187
+ readonly 'chat.customizations.userDataMigration.enabled'?: boolean;
13188
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
13189
+ readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
13190
+ readonly 'chat.implicitContext.includeActiveEditor'?: boolean;
13191
+ readonly 'terminal.explorerKind'?: 'integrated' | 'external' | 'both';
13192
+ readonly 'terminal.external.linuxExec'?: string;
13193
+ readonly 'terminal.external.osxExec'?: string;
13194
+ readonly 'terminal.external.windowsExec'?: string;
13195
+ readonly 'terminal.sourceControlRepositoriesKind'?: 'integrated' | 'external' | 'both';
13196
+ readonly 'workbench.accounts.showAvatar'?: boolean;
13197
+ readonly 'workbench.editor.tabActionReserveSpace'?: boolean;
13198
+ }, 'github.copilot.chat.autoMode.v2.enabled'>;
13199
+
13169
13200
  // ── Version map ──
13170
13201
  // Stable entries map directly to their settings type.
13171
13202
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -13309,12 +13340,14 @@ interface VscodeVersionMap {
13309
13340
  '1.134.0-insider': InsiderBuilds<{
13310
13341
  '2026081017': VscodeSettings_1_134_0_insider_2026081017;
13311
13342
  '2026081219': VscodeSettings_1_134_0_insider_2026081219;
13343
+ '2026081318': VscodeSettings_1_134_0_insider_2026081318;
13344
+ '2026081414': VscodeSettings_1_134_0_insider_2026081414;
13312
13345
  }>;
13313
13346
  }
13314
13347
 
13315
13348
  export type LatestVscodeSettings = VscodeSettings_1_133_0;
13316
13349
 
13317
- export type LatestInsiderVscodeSettings = VscodeSettings_1_134_0_insider_2026081219;
13350
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_134_0_insider_2026081414;
13318
13351
 
13319
13352
  export type VscodeVersion = keyof VscodeVersionMap;
13320
13353
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vscode-settings-history",
3
- "version": "0.0.2-63",
3
+ "version": "0.0.2-65",
4
4
  "type": "module",
5
5
  "description": "Tracks VS Code settings schema changes across versions",
6
6
  "license": "MIT",
@@ -37,5 +37,5 @@
37
37
  "tsx": "4.22.4",
38
38
  "vitest": "^4.1.4"
39
39
  },
40
- "gitHead": "e0649851dcaeca57c3d992195dfd9774f4f42d50"
40
+ "gitHead": "98afcf082daa03049d7225fc5d69f9beb2151ba8"
41
41
  }