@vscode/vscode-settings-history 0.0.2-5 → 0.0.2-51

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.
@@ -4,6 +4,16 @@
4
4
  // ── Patch utility ──
5
5
  type Patch<Base, Added extends Record<string, unknown> = {}, Removed extends string = never> = Omit<Base, Removed> & Added;
6
6
 
7
+ // ── Insider build brand ──
8
+ // Wraps the nested build-stamp → settings map for insider versions so it can
9
+ // be discriminated unambiguously from a stable settings type. A structural
10
+ // check (e.g. `extends Record<string, unknown>`) is not reliable here:
11
+ // stable settings interfaces match that shape too because all their
12
+ // properties are optional and `unknown` accepts any value, which would
13
+ // misroute stable lookups through the insider branch.
14
+ declare const InsiderBuildsBrand: unique symbol;
15
+ interface InsiderBuilds<T> { readonly [InsiderBuildsBrand]: T }
16
+
7
17
  // ── Baseline: 1.100.0 (475 settings) ──
8
18
  export interface VscodeSettings_1_100_0 {
9
19
  readonly 'css.completion.completePropertyWithSemicolon'?: boolean;
@@ -962,11 +972,11 @@ export type VscodeSettings_1_100_2 = Patch<VscodeSettings_1_100_1, {
962
972
  readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
963
973
  }, never>;
964
974
 
965
- // ── 1.101.0: +2, -7 ──
975
+ // ── 1.101.0: +1, ~1, -6 ──
966
976
  export type VscodeSettings_1_101_0 = Patch<VscodeSettings_1_100_0, {
967
977
  readonly 'html.autoCreateQuotes'?: boolean;
968
978
  readonly 'js/ts.hover.maximumLength'?: number;
969
- }, 'html.autoCreateQuotes' | 'javascript.implicitProjectConfig.checkJs' | 'javascript.implicitProjectConfig.experimentalDecorators' | 'javascript.preferences.renameShorthandProperties' | 'typescript.preferences.renameShorthandProperties' | 'typescript.tsserver.experimental.useVsCodeWatcher' | 'typescript.tsserver.useSeparateSyntaxServer'>;
979
+ }, 'javascript.implicitProjectConfig.checkJs' | 'javascript.implicitProjectConfig.experimentalDecorators' | 'javascript.preferences.renameShorthandProperties' | 'typescript.preferences.renameShorthandProperties' | 'typescript.tsserver.experimental.useVsCodeWatcher' | 'typescript.tsserver.useSeparateSyntaxServer'>;
970
980
 
971
981
  // ── 1.101.2: +470 ──
972
982
  export type VscodeSettings_1_101_2 = Patch<VscodeSettings_1_101_1, {
@@ -1442,7 +1452,7 @@ export type VscodeSettings_1_101_2 = Patch<VscodeSettings_1_101_1, {
1442
1452
  readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
1443
1453
  }, never>;
1444
1454
 
1445
- // ── 1.102.0: +1, ~1 ──
1455
+ // ── 1.102.0: ~2 ──
1446
1456
  export type VscodeSettings_1_102_0 = Patch<VscodeSettings_1_101_0, {
1447
1457
  readonly 'debug.javascript.debugByLinkOptions'?: unknown;
1448
1458
  readonly 'markdown.copyFiles.destination'?: Record<string, unknown>;
@@ -1922,7 +1932,7 @@ export type VscodeSettings_1_102_2 = Patch<VscodeSettings_1_102_1, {
1922
1932
  readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
1923
1933
  }, never>;
1924
1934
 
1925
- // ── 1.103.0: +3, -1 ──
1935
+ // ── 1.103.0: +2, ~1, -1 ──
1926
1936
  export type VscodeSettings_1_103_0 = Patch<VscodeSettings_1_102_0, {
1927
1937
  readonly 'git.detectWorktrees'?: boolean;
1928
1938
  readonly 'git.detectWorktreesLimit'?: number;
@@ -2404,7 +2414,7 @@ export type VscodeSettings_1_103_2 = Patch<VscodeSettings_1_103_1, {
2404
2414
  readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
2405
2415
  }, never>;
2406
2416
 
2407
- // ── 1.104.0: +4, ~4 ──
2417
+ // ── 1.104.0: +2, ~2 ──
2408
2418
  export type VscodeSettings_1_104_0 = Patch<VscodeSettings_1_103_0, {
2409
2419
  readonly 'github-authentication.useElectronFetch'?: boolean;
2410
2420
  readonly 'js/ts.implicitProjectConfig.strict'?: boolean;
@@ -3382,11 +3392,11 @@ export type VscodeSettings_1_106_2 = Patch<VscodeSettings_1_106_1, {
3382
3392
  readonly 'typescript.workspaceSymbols.scope'?: 'allOpenProjects' | 'currentProject';
3383
3393
  }, never>;
3384
3394
 
3385
- // ── 1.107.0: ~2, -2 ──
3395
+ // ── 1.107.0: ~2 ──
3386
3396
  export type VscodeSettings_1_107_0 = Patch<VscodeSettings_1_106_0, {
3387
3397
  readonly 'git.detectWorktreesLimit'?: number;
3388
3398
  readonly 'microsoft-authentication.implementation'?: 'msal' | 'msal-no-broker';
3389
- }, 'microsoft-authentication.implementation' | 'microsoft-authentication.implementation'>;
3399
+ }, never>;
3390
3400
 
3391
3401
  // ── 1.108.0: +1167 ──
3392
3402
  export type VscodeSettings_1_108_0 = Patch<VscodeSettings_1_107_0, {
@@ -6212,7 +6222,7 @@ export type VscodeSettings_1_108_2 = Patch<VscodeSettings_1_108_1, {
6212
6222
  readonly 'zenMode.silentNotifications'?: boolean;
6213
6223
  }, never>;
6214
6224
 
6215
- // ── 1.109.0: +81, ~8, -19 ──
6225
+ // ── 1.109.0: +41, ~10, -8 ──
6216
6226
  export type VscodeSettings_1_109_0 = Patch<VscodeSettings_1_108_0, {
6217
6227
  readonly 'chat.agent.thinking.terminalTools'?: boolean;
6218
6228
  readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
@@ -6265,7 +6275,7 @@ export type VscodeSettings_1_109_0 = Patch<VscodeSettings_1_108_0, {
6265
6275
  readonly 'workbench.editorinputs.browser'?: unknown;
6266
6276
  readonly 'workbench.hover.reducedDelay'?: number;
6267
6277
  readonly 'workbench.secondarySideBar.forceMaximized'?: boolean;
6268
- }, 'chat.commandCenter.enabled' | 'chat.renderRelatedFiles' | 'chat.suspendThrottling' | 'chat.todoListTool.descriptionField' | 'chat.todoListTool.writeOnly' | 'chat.tools.edits.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.tools.terminal.autoApprove' | 'chat.viewTitle.enabled' | 'chat.viewWelcome.enabled' | 'mermaid-chat.enabled' | 'terminal.integrated.windowsEnableConpty'>;
6278
+ }, 'chat.commandCenter.enabled' | 'chat.renderRelatedFiles' | 'chat.suspendThrottling' | 'chat.todoListTool.descriptionField' | 'chat.todoListTool.writeOnly' | 'chat.viewTitle.enabled' | 'chat.viewWelcome.enabled' | 'terminal.integrated.windowsEnableConpty'>;
6269
6279
 
6270
6280
  // ── 1.109.1: -3 ──
6271
6281
  export type VscodeSettings_1_109_1 = Patch<VscodeSettings_1_109_0, {}, 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
@@ -6277,7 +6287,7 @@ export type VscodeSettings_1_109_2 = Patch<VscodeSettings_1_109_1, {
6277
6287
  readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
6278
6288
  }, never>;
6279
6289
 
6280
- // ── 1.109.3: +8 ──
6290
+ // ── 1.109.3: +6, ~2 ──
6281
6291
  export type VscodeSettings_1_109_3 = Patch<VscodeSettings_1_109_2, {
6282
6292
  readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
6283
6293
  readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
@@ -6300,7 +6310,7 @@ export type VscodeSettings_1_109_5 = Patch<VscodeSettings_1_109_4, {
6300
6310
  readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
6301
6311
  }, never>;
6302
6312
 
6303
- // ── 1.110.0: +274, ~19, -15 ──
6313
+ // ── 1.110.0: +120, ~148, -6 ──
6304
6314
  export type VscodeSettings_1_110_0 = Patch<VscodeSettings_1_109_0, {
6305
6315
  readonly 'accessibility.chat.showCheckmarks'?: boolean;
6306
6316
  readonly 'accessibility.verbosity.find'?: boolean;
@@ -6570,7 +6580,7 @@ export type VscodeSettings_1_110_0 = Patch<VscodeSettings_1_109_0, {
6570
6580
  readonly 'workbench.notifications.position'?: string;
6571
6581
  readonly 'workbench.notifications.showInTitleBar'?: boolean;
6572
6582
  readonly 'workbench.reduceTransparency'?: string;
6573
- }, 'chat.alternativeToolAction.enabled' | 'chat.statusWidget.sku' | 'javascript.referencesCodeLens.showOnAllFunctions' | 'json.schemaDownload.trustedDomains' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'simpleBrowser.useIntegratedBrowser' | 'typescript.disableAutomaticTypeAcquisition' | 'typescript.experimental.useTsgo' | 'typescript.implementationsCodeLens.showOnAllClassMethods' | 'typescript.implementationsCodeLens.showOnInterfaceMethods' | 'typescript.referencesCodeLens.showOnAllFunctions' | 'typescript.tsserver.enableRegionDiagnostics' | 'typescript.tsserver.experimental.enableProjectDiagnostics'>;
6583
+ }, 'chat.alternativeToolAction.enabled' | 'chat.statusWidget.sku' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'typescript.tsserver.enableRegionDiagnostics'>;
6574
6584
 
6575
6585
  // ── 1.110.1: +3 ──
6576
6586
  export type VscodeSettings_1_110_1 = Patch<VscodeSettings_1_110_0, {
@@ -6579,7 +6589,7 @@ export type VscodeSettings_1_110_1 = Patch<VscodeSettings_1_110_0, {
6579
6589
  readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
6580
6590
  }, never>;
6581
6591
 
6582
- // ── 1.111.0: +10, -4 ──
6592
+ // ── 1.111.0: +9, ~1, -4 ──
6583
6593
  export type VscodeSettings_1_111_0 = Patch<VscodeSettings_1_110_0, {
6584
6594
  readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
6585
6595
  readonly 'chat.autopilot.enabled'?: boolean;
@@ -6593,7 +6603,7 @@ export type VscodeSettings_1_111_0 = Patch<VscodeSettings_1_110_0, {
6593
6603
  readonly 'terminal.integrated.experimental.aiProfileGrouping'?: boolean;
6594
6604
  }, 'chat.agentsControl.clickBehavior' | 'chat.edits2.enabled' | 'chat.plugins.paths' | 'inlineChat.holdToSpeech'>;
6595
6605
 
6596
- // ── 1.112.0: +22, ~11, -11 ──
6606
+ // ── 1.112.0: +8, ~19 ──
6597
6607
  export type VscodeSettings_1_112_0 = Patch<VscodeSettings_1_111_0, {
6598
6608
  readonly 'chat.autopilot.enabled'?: boolean;
6599
6609
  readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
@@ -6622,9 +6632,9 @@ export type VscodeSettings_1_112_0 = Patch<VscodeSettings_1_111_0, {
6622
6632
  readonly 'update.titleBar'?: string;
6623
6633
  readonly 'workbench.browser.pageZoom'?: string;
6624
6634
  readonly 'workbench.browser.showInTitleBar'?: boolean;
6625
- }, 'css.lint.validProperties' | 'js/ts.tsserver.node.path' | 'json.schemaDownload.trustedDomains' | 'json.schemas' | 'json.schemas' | 'json.schemas' | 'less.lint.validProperties' | 'npm.enableScriptExplorer' | 'npm.scriptHover' | 'scss.lint.validProperties' | 'typescript.tsserver.nodePath'>;
6635
+ }, never>;
6626
6636
 
6627
- // ── 1.113.0: +15, ~8, -5 ──
6637
+ // ── 1.113.0: +15, ~7, -2 ──
6628
6638
  export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
6629
6639
  readonly 'chat.agentsControl.enabled'?: string;
6630
6640
  readonly 'chat.artifacts.enabled'?: boolean;
@@ -6632,6 +6642,7 @@ export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
6632
6642
  readonly 'chat.editing.revealNextChangeOnResolve'?: boolean;
6633
6643
  readonly 'chat.subagents.allowInvocationsFromSubagents'?: boolean;
6634
6644
  readonly 'chat.tools.terminal.idlePollInterval'?: number;
6645
+ readonly 'chat.tools.terminal.sandbox.network'?: Record<string, unknown>;
6635
6646
  readonly 'chat.tools.terminal.sandbox.network.allowTrustedDomains'?: unknown;
6636
6647
  readonly 'chat.tools.terminal.sandbox.network.allowedDomains'?: unknown;
6637
6648
  readonly 'chat.tools.terminal.sandbox.network.deniedDomains'?: unknown;
@@ -6647,9 +6658,9 @@ export type VscodeSettings_1_113_0 = Patch<VscodeSettings_1_112_0, {
6647
6658
  readonly 'workbench.preferredDarkColorTheme'?: string;
6648
6659
  readonly 'workbench.preferredLightColorTheme'?: string;
6649
6660
  readonly 'workbench.shadows'?: boolean;
6650
- }, 'chat.imageCarousel.enabled' | 'chat.tools.terminal.sandbox.network' | 'chat.tools.terminal.sandbox.network' | 'chat.tools.terminal.sandbox.network' | 'simpleBrowser.useIntegratedBrowser'>;
6661
+ }, 'chat.imageCarousel.enabled' | 'simpleBrowser.useIntegratedBrowser'>;
6651
6662
 
6652
- // ── 1.114.0: +18, ~5, -14 ──
6663
+ // ── 1.114.0: +11, ~11, -7 ──
6653
6664
  export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
6654
6665
  readonly 'chat.agent.sandbox'?: boolean;
6655
6666
  readonly 'chat.agent.sandboxFileSystem.linux'?: Record<string, unknown>;
@@ -6662,6 +6673,8 @@ export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
6662
6673
  readonly 'chat.customizations.providerApi.enabled'?: boolean;
6663
6674
  readonly 'chat.signInTitleBar.enabled'?: boolean;
6664
6675
  readonly 'chat.tips.enabled'?: boolean;
6676
+ readonly 'chat.tools.terminal.sandbox.linuxFileSystem'?: Record<string, unknown>;
6677
+ readonly 'chat.tools.terminal.sandbox.macFileSystem'?: Record<string, unknown>;
6665
6678
  readonly 'chat.tools.terminal.sandbox.network'?: Record<string, unknown>;
6666
6679
  readonly 'chat.tools.terminal.sandbox.network.allowedDomains'?: unknown[];
6667
6680
  readonly 'chat.tools.terminal.sandbox.network.deniedDomains'?: unknown[];
@@ -6671,15 +6684,17 @@ export type VscodeSettings_1_114_0 = Patch<VscodeSettings_1_113_0, {
6671
6684
  readonly 'workbench.editor.useModal'?: string;
6672
6685
  readonly 'workbench.preferredDarkColorTheme'?: string;
6673
6686
  readonly 'workbench.preferredLightColorTheme'?: string;
6674
- }, 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.network.allowTrustedDomains' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'terminal.integrated.experimental.aiProfileGrouping' | 'workbench.editor.autoLockGroups' | 'workbench.editor.modalMinWidth' | 'workbench.editorinputs.browser'>;
6687
+ }, 'chat.tools.terminal.sandbox.network.allowTrustedDomains' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform' | 'terminal.integrated.experimental.aiProfileGrouping' | 'workbench.editor.modalMinWidth' | 'workbench.editorinputs.browser'>;
6675
6688
 
6676
- // ── 1.115.0: +16, ~2, -19 ──
6689
+ // ── 1.115.0: +10, ~5, -10 ──
6677
6690
  export type VscodeSettings_1_115_0 = Patch<VscodeSettings_1_114_0, {
6678
6691
  readonly 'chat.agent.sandbox.allowedNetworkDomains'?: unknown[];
6679
6692
  readonly 'chat.agent.sandbox.deniedNetworkDomains'?: unknown[];
6680
6693
  readonly 'chat.agent.sandbox.enabled'?: string;
6681
6694
  readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
6682
6695
  readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
6696
+ readonly 'chat.agent.sandboxFileSystem.linux'?: Record<string, unknown>;
6697
+ readonly 'chat.agent.sandboxFileSystem.mac'?: Record<string, unknown>;
6683
6698
  readonly 'chat.customizations.providerApi.enabled'?: boolean;
6684
6699
  readonly 'chat.generalPurposeAgent.enabled'?: boolean;
6685
6700
  readonly 'chat.newSession.defaultMode'?: string;
@@ -6688,7 +6703,7 @@ export type VscodeSettings_1_115_0 = Patch<VscodeSettings_1_114_0, {
6688
6703
  readonly 'files.watcherExclude'?: Record<string, unknown>;
6689
6704
  readonly 'git.detectWorktrees'?: boolean;
6690
6705
  readonly 'testing.coverageMinimapEnabled'?: boolean;
6691
- }, 'chat.agent.sandbox' | 'chat.agent.sandboxFileSystem.linux' | 'chat.agent.sandboxFileSystem.linux' | 'chat.agent.sandboxFileSystem.linux' | 'chat.agent.sandboxFileSystem.mac' | 'chat.agent.sandboxFileSystem.mac' | 'chat.agent.sandboxFileSystem.mac' | 'chat.statusWidget.anonymous' | 'chat.tools.terminal.sandbox.enabled' | 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.network' | 'chat.tools.terminal.sandbox.network.allowedDomains' | 'chat.tools.terminal.sandbox.network.deniedDomains' | 'files.watcherExclude' | 'files.watcherExclude' | 'files.watcherExclude' | 'update.statusBar' | 'update.titleBar'>;
6706
+ }, 'chat.agent.sandbox' | 'chat.statusWidget.anonymous' | 'chat.tools.terminal.sandbox.enabled' | 'chat.tools.terminal.sandbox.linuxFileSystem' | 'chat.tools.terminal.sandbox.macFileSystem' | 'chat.tools.terminal.sandbox.network' | 'chat.tools.terminal.sandbox.network.allowedDomains' | 'chat.tools.terminal.sandbox.network.deniedDomains' | 'update.statusBar' | 'update.titleBar'>;
6692
6707
 
6693
6708
  // ── 1.116.0: +9, ~1, -4 ──
6694
6709
  export type VscodeSettings_1_116_0 = Patch<VscodeSettings_1_115_0, {
@@ -7459,9 +7474,7 @@ export type VscodeSettings_1_120_0 = Patch<VscodeSettings_1_119_0, {
7459
7474
  readonly 'files.dialog.defaultPath'?: string;
7460
7475
  readonly 'files.enableTrash'?: boolean;
7461
7476
  readonly 'files.encoding'?: 'utf8' | 'utf8bom' | 'utf16le' | 'utf16be' | 'windows1252' | 'iso88591' | 'iso88593' | 'iso885915' | 'macroman' | 'cp437' | 'windows1256' | 'iso88596' | 'windows1257' | 'iso88594' | 'iso885914' | 'windows1250' | 'iso88592' | 'cp852' | 'windows1251' | 'cp866' | 'cp1125' | 'iso88595' | 'koi8r' | 'koi8u' | 'iso885913' | 'windows1253' | 'iso88597' | 'windows1255' | 'iso88598' | 'iso885910' | 'iso885916' | 'windows1254' | 'iso88599' | 'cp857' | 'windows1258' | 'gbk' | 'gb18030' | 'cp950' | 'big5hkscs' | 'shiftjis' | 'eucjp' | 'euckr' | 'windows874' | 'iso885911' | 'koi8ru' | 'koi8t' | 'gb2312' | 'cp865' | 'cp850';
7462
- readonly 'files.eol'?: '
7463
- ' | '
7464
- ' | 'auto';
7477
+ readonly 'files.eol'?: '\n' | '\r\n' | 'auto';
7465
7478
  readonly 'files.exclude'?: Record<string, unknown>;
7466
7479
  readonly 'files.hotExit'?: 'off' | 'onExit' | 'onExitAndWindowClose';
7467
7480
  readonly 'files.insertFinalNewline'?: boolean;
@@ -9509,9 +9522,7 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
9509
9522
  readonly 'files.dialog.defaultPath'?: string;
9510
9523
  readonly 'files.enableTrash'?: boolean;
9511
9524
  readonly 'files.encoding'?: 'utf8' | 'utf8bom' | 'utf16le' | 'utf16be' | 'windows1252' | 'iso88591' | 'iso88593' | 'iso885915' | 'macroman' | 'cp437' | 'windows1256' | 'iso88596' | 'windows1257' | 'iso88594' | 'iso885914' | 'windows1250' | 'iso88592' | 'cp852' | 'windows1251' | 'cp866' | 'cp1125' | 'iso88595' | 'koi8r' | 'koi8u' | 'iso885913' | 'windows1253' | 'iso88597' | 'windows1255' | 'iso88598' | 'iso885910' | 'iso885916' | 'windows1254' | 'iso88599' | 'cp857' | 'windows1258' | 'gbk' | 'gb18030' | 'cp950' | 'big5hkscs' | 'shiftjis' | 'eucjp' | 'euckr' | 'windows874' | 'iso885911' | 'koi8ru' | 'koi8t' | 'gb2312' | 'cp865' | 'cp850';
9512
- readonly 'files.eol'?: '
9513
- ' | '
9514
- ' | 'auto';
9525
+ readonly 'files.eol'?: '\n' | '\r\n' | 'auto';
9515
9526
  readonly 'files.exclude'?: Record<string, unknown>;
9516
9527
  readonly 'files.hotExit'?: 'off' | 'onExit' | 'onExitAndWindowClose';
9517
9528
  readonly 'files.insertFinalNewline'?: boolean;
@@ -10799,7 +10810,7 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
10799
10810
  readonly 'zenMode.silentNotifications'?: boolean;
10800
10811
  }
10801
10812
 
10802
- // ── 1.121.0-insider+2026051505: +15, ~2 ──
10813
+ // ── 1.121.0-insider+2026051505: +13, ~2 ──
10803
10814
  export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_121_0_insider_2026051305, {
10804
10815
  readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
10805
10816
  readonly 'chat.agentHost.otel.captureContent'?: boolean;
@@ -10821,7 +10832,7 @@ export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_1
10821
10832
  // ── 1.121.0-insider+2026051517: -2 ──
10822
10833
  export type VscodeSettings_1_121_0_insider_2026051517 = Patch<VscodeSettings_1_121_0_insider_2026051505, {}, 'github.copilot.chat.gpt54ConcisePrompt.enabled' | 'github.copilot.chat.gpt54LargePrompt.enabled'>;
10823
10834
 
10824
- // ── 1.121.0-insider+2026051823: +12, ~23, -3 ──
10835
+ // ── 1.121.0-insider+2026051823: +11, ~10, -3 ──
10825
10836
  export type VscodeSettings_1_121_0_insider_2026051823 = Patch<VscodeSettings_1_121_0_insider_2026051517, {
10826
10837
  readonly 'chat.sessionSync.enabled'?: boolean;
10827
10838
  readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
@@ -10846,6 +10857,1633 @@ export type VscodeSettings_1_121_0_insider_2026051823 = Patch<VscodeSettings_1_1
10846
10857
  readonly 'notebook.editorOptionsCustomizations'?: unknown;
10847
10858
  }, 'chat.tools.renameTool.enabled' | 'chat.tools.usagesTool.enabled' | 'mermaid-chat.enabled'>;
10848
10859
 
10860
+ // ── 1.121.0-insider+2026051910: ~2 ──
10861
+ export type VscodeSettings_1_121_0_insider_2026051910 = Patch<VscodeSettings_1_121_0_insider_2026051823, {
10862
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
10863
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
10864
+ }, never>;
10865
+
10866
+ // ── 1.121.0: +18, ~17, -7 ──
10867
+ export type VscodeSettings_1_121_0 = Patch<VscodeSettings_1_120_0, {
10868
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
10869
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
10870
+ readonly 'chat.sessionSync.enabled'?: boolean;
10871
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
10872
+ readonly 'chat.tools.riskAssessment.enabled'?: boolean;
10873
+ readonly 'chat.tools.riskAssessment.model'?: string;
10874
+ readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
10875
+ readonly 'chat.tools.terminal.outputDeltas'?: boolean;
10876
+ readonly 'chat.utilityModel'?: '';
10877
+ readonly 'chat.utilitySmallModel'?: '';
10878
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
10879
+ readonly 'editor.quickSuggestions'?: unknown;
10880
+ readonly 'git.enabled'?: boolean;
10881
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
10882
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
10883
+ readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
10884
+ readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
10885
+ readonly 'github.copilot.chat.freezeCustomizationsIndex'?: boolean;
10886
+ readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
10887
+ readonly 'js/ts.tsdk.path'?: string;
10888
+ readonly 'markdown-mermaid.controls.show'?: 'never' | 'onHoverOrFocus' | 'always';
10889
+ readonly 'markdown-mermaid.darkModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10890
+ readonly 'markdown-mermaid.languages'?: unknown[];
10891
+ readonly 'markdown-mermaid.lightModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10892
+ readonly 'markdown-mermaid.maxHeight'?: string;
10893
+ readonly 'markdown-mermaid.maxTextSize'?: number;
10894
+ readonly 'markdown-mermaid.mouseNavigation.enabled'?: 'always' | 'alt' | 'never';
10895
+ readonly 'markdown-mermaid.resizable'?: boolean;
10896
+ readonly 'markdown.preview.frontMatter'?: 'hide' | 'codeBlock' | 'table';
10897
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
10898
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
10899
+ readonly 'search.experimental.useIgnoreFilesInFindFiles'?: boolean;
10900
+ readonly 'terminal.integrated.windowsUseConptyDll'?: boolean;
10901
+ readonly 'typescript.tsdk'?: string;
10902
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
10903
+ }, 'chat.tools.renameTool.enabled' | 'chat.tools.usagesTool.enabled' | 'github.copilot.chat.gpt54ConcisePrompt.enabled' | 'github.copilot.chat.gpt54LargePrompt.enabled' | 'github.copilot.chat.responsesApi.toolSearchTool.enabled' | 'github.copilot.chat.tools.memory.enabled' | 'mermaid-chat.enabled'>;
10904
+
10905
+ // ── 1.122.0-insider+2026052017: +2, ~20, -1 ──
10906
+ export type VscodeSettings_1_122_0_insider_2026052017 = Patch<VscodeSettings_1_121_0_insider_2026051910, {
10907
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
10908
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
10909
+ readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
10910
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
10911
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
10912
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
10913
+ readonly 'chat.utilityModel'?: '';
10914
+ readonly 'chat.utilitySmallModel'?: '';
10915
+ readonly 'diffEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
10916
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
10917
+ readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
10918
+ readonly 'mergeEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
10919
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
10920
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
10921
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
10922
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
10923
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
10924
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
10925
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
10926
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
10927
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
10928
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'git-fetch' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
10929
+ }, 'github.copilot.chat.projectSetupInfoSkill.enabled'>;
10930
+
10931
+ // ── 1.122.0-insider+2026052105: +2, ~14 ──
10932
+ export type VscodeSettings_1_122_0_insider_2026052105 = Patch<VscodeSettings_1_122_0_insider_2026052017, {
10933
+ readonly 'chat.agentHost.ahpJsonlLoggingEnabled'?: boolean;
10934
+ readonly 'chat.agentHost.clientTools'?: (string)[];
10935
+ readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
10936
+ readonly 'chat.agentHost.enabled'?: boolean;
10937
+ readonly 'chat.agentHost.ipcLoggingEnabled'?: boolean;
10938
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
10939
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
10940
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
10941
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
10942
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
10943
+ readonly 'chat.agentHost.otel.outfile'?: string;
10944
+ readonly 'issueReporter.wizard.enabled'?: boolean;
10945
+ readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
10946
+ readonly 'markdown-mermaid.darkModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10947
+ readonly 'markdown-mermaid.lightModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10948
+ readonly 'terminal.integrated.stickyScroll.ignoredCommands'?: (string)[];
10949
+ }, never>;
10950
+
10951
+ // ── 1.122.0-insider+2026052217: +3, ~16, -2 ──
10952
+ export type VscodeSettings_1_122_0_insider_2026052217 = Patch<VscodeSettings_1_122_0_insider_2026052105, {
10953
+ readonly 'chat.agent.sandbox.advanced.runtime'?: Record<string, unknown>;
10954
+ readonly 'chat.agent.sandbox.enabled.windows'?: 'off' | 'allowNetwork';
10955
+ readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
10956
+ readonly 'chat.agentHost.enabled'?: boolean;
10957
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
10958
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
10959
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
10960
+ readonly 'issueReporter.wizard.enabled'?: boolean;
10961
+ readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
10962
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
10963
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
10964
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
10965
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
10966
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
10967
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
10968
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
10969
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
10970
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
10971
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
10972
+ }, 'chat.allowAnonymousAccess' | 'chat.customizations.useChatSessionCustomizationsForCustomAgents'>;
10973
+
10974
+ // ── 1.122.0-insider+2026052517: +1, ~1, -2 ──
10975
+ export type VscodeSettings_1_122_0_insider_2026052517 = Patch<VscodeSettings_1_122_0_insider_2026052217, {
10976
+ readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'allowNetwork';
10977
+ readonly 'chat.agentHost.enabled'?: boolean;
10978
+ }, 'chat.agent.sandbox.enabled.windows' | 'github.copilot.chat.freezeCustomizationsIndex'>;
10979
+
10980
+ // ── 1.122.0-insider+2026052623: ~2, -1 ──
10981
+ export type VscodeSettings_1_122_0_insider_2026052623 = Patch<VscodeSettings_1_122_0_insider_2026052517, {
10982
+ readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
10983
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
10984
+ }, 'chat.agent.maxRequests'>;
10985
+
10986
+ // ── 1.122.0: +18, ~24, -5 ──
10987
+ export type VscodeSettings_1_122_0 = Patch<VscodeSettings_1_121_0, {
10988
+ readonly 'chat.agent.sandbox.advanced.runtime'?: Record<string, unknown>;
10989
+ readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'allowNetwork';
10990
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
10991
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
10992
+ readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
10993
+ readonly 'chat.agentHost.ahpJsonlLoggingEnabled'?: boolean;
10994
+ readonly 'chat.agentHost.clientTools'?: (string)[];
10995
+ readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
10996
+ readonly 'chat.agentHost.enabled'?: boolean;
10997
+ readonly 'chat.agentHost.ipcLoggingEnabled'?: boolean;
10998
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
10999
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11000
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11001
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11002
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11003
+ readonly 'chat.agentHost.otel.outfile'?: string;
11004
+ readonly 'chat.tools.edits.autoApprove'?: Record<string, unknown>;
11005
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11006
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11007
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11008
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11009
+ readonly 'chat.utilityModel'?: '';
11010
+ readonly 'chat.utilitySmallModel'?: '';
11011
+ readonly 'diffEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
11012
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
11013
+ readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
11014
+ readonly 'issueReporter.wizard.enabled'?: boolean;
11015
+ readonly 'issueReporter.wizard.fullWorkspaceScan'?: boolean;
11016
+ readonly 'markdown-mermaid.darkModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
11017
+ readonly 'markdown-mermaid.lightModeTheme'?: 'vscode' | 'base' | 'forest' | 'dark' | 'default' | 'neutral';
11018
+ readonly 'mergeEditor.diffAlgorithm'?: 'legacy' | 'advanced' | 'advanced-external' | 'advanced-wasm';
11019
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11020
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11021
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11022
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11023
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11024
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11025
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11026
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11027
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11028
+ readonly 'terminal.integrated.stickyScroll.ignoredCommands'?: (string)[];
11029
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11030
+ }, 'chat.agent.maxRequests' | 'chat.allowAnonymousAccess' | 'chat.customizations.useChatSessionCustomizationsForCustomAgents' | 'github.copilot.chat.freezeCustomizationsIndex' | 'github.copilot.chat.projectSetupInfoSkill.enabled'>;
11031
+
11032
+ // ── 1.122.1: +1, ~1 ──
11033
+ export type VscodeSettings_1_122_1 = Patch<VscodeSettings_1_122_0, {
11034
+ readonly 'chat.agent.maxRequests'?: number;
11035
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11036
+ }, never>;
11037
+
11038
+ // ── 1.123.0-insider+2026060105: +11, ~33, -1 ──
11039
+ export type VscodeSettings_1_123_0_insider_2026060105 = Patch<VscodeSettings_1_122_0_insider_2026052623, {
11040
+ readonly 'chat.agent.maxRequests'?: number;
11041
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
11042
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
11043
+ readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
11044
+ readonly 'chat.agentHost.claudeAgent.path'?: string;
11045
+ readonly 'chat.agentHost.enabled'?: boolean;
11046
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11047
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11048
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11049
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11050
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11051
+ readonly 'chat.agentHost.otel.outfile'?: string;
11052
+ readonly 'chat.agentHost.rubberDuck.enabled'?: boolean;
11053
+ readonly 'chat.agentsHandoffTip.mode'?: 'hidden' | 'default' | 'custom';
11054
+ readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
11055
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11056
+ readonly 'chat.plugins.marketplaces'?: (string)[];
11057
+ readonly 'chat.plugins.strictMarketplaces'?: boolean;
11058
+ readonly 'chat.sessionSync.enabled'?: boolean;
11059
+ readonly 'chat.titleBar.openInAgentsWindow.enabled'?: boolean;
11060
+ readonly 'chat.tools.confirmationCarousel.enabled'?: boolean;
11061
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11062
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11063
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11064
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11065
+ readonly 'extensions.autoUpdate'?: 'on' | 'delayed' | 'off';
11066
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
11067
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
11068
+ readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
11069
+ readonly 'github.copilot.chat.executionSubagent.model'?: string;
11070
+ readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
11071
+ readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
11072
+ readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
11073
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11074
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11075
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11076
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11077
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11078
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11079
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11080
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11081
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11082
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11083
+ readonly 'workbench.browser.experimentalUserTools.enabled'?: boolean;
11084
+ }, 'chat.autopilot.enabled'>;
11085
+
11086
+ // ── 1.124.0-insider+2026060217: +3, ~6, -2 ──
11087
+ export type VscodeSettings_1_124_0_insider_2026060217 = Patch<VscodeSettings_1_123_0_insider_2026060105, {
11088
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
11089
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
11090
+ readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
11091
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11092
+ readonly 'extensions.autoUpdate'?: true | 'onlyEnabledExtensions' | false;
11093
+ readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
11094
+ readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
11095
+ readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
11096
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
11097
+ }, 'chat.agentHost.ipcLoggingEnabled' | 'chat.agentHost.rubberDuck.enabled'>;
11098
+
11099
+ // ── 1.123.0: +12, ~31, -1 ──
11100
+ export type VscodeSettings_1_123_0 = Patch<VscodeSettings_1_122_0, {
11101
+ readonly 'chat.agent.maxRequests'?: number;
11102
+ readonly 'chat.agent.sandbox.fileSystem.windows'?: Record<string, unknown>;
11103
+ readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
11104
+ readonly 'chat.agentHost.enabled'?: boolean;
11105
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11106
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11107
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11108
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11109
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11110
+ readonly 'chat.agentHost.otel.outfile'?: string;
11111
+ readonly 'chat.agentsHandoffTip.mode'?: 'hidden' | 'default' | 'custom';
11112
+ readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
11113
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11114
+ readonly 'chat.plugins.marketplaces'?: (string)[];
11115
+ readonly 'chat.plugins.strictMarketplaces'?: boolean;
11116
+ readonly 'chat.sessionSync.enabled'?: boolean;
11117
+ readonly 'chat.titleBar.openInAgentsWindow.enabled'?: boolean;
11118
+ readonly 'chat.tools.confirmationCarousel.enabled'?: boolean;
11119
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11120
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11121
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11122
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11123
+ readonly 'extensions.autoUpdate'?: true | 'onlyEnabledExtensions' | false;
11124
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
11125
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
11126
+ readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
11127
+ readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
11128
+ readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
11129
+ readonly 'github.copilot.chat.executionSubagent.model'?: string;
11130
+ readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
11131
+ readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
11132
+ readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
11133
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11134
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11135
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11136
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11137
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11138
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11139
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11140
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11141
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11142
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11143
+ readonly 'workbench.browser.experimentalUserTools.enabled'?: boolean;
11144
+ }, 'chat.autopilot.enabled'>;
11145
+
11146
+ // ── 1.124.0-insider+2026060321: +4, ~2 ──
11147
+ export type VscodeSettings_1_124_0_insider_2026060321 = Patch<VscodeSettings_1_124_0_insider_2026060217, {
11148
+ readonly 'chat.agentHost.codexAgent.binaryArgs'?: (string)[];
11149
+ readonly 'chat.agentHost.codexAgent.codexHome'?: string;
11150
+ readonly 'chat.agentHost.codexAgent.path'?: string;
11151
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11152
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
11153
+ readonly 'workbench.browser.maxHistoryEntries'?: number;
11154
+ }, never>;
11155
+
11156
+ // ── 1.124.0-insider+2026060513: +2, ~15 ──
11157
+ export type VscodeSettings_1_124_0_insider_2026060513 = Patch<VscodeSettings_1_124_0_insider_2026060321, {
11158
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11159
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11160
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11161
+ readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
11162
+ readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11163
+ readonly 'github.copilot.completions.chat.enabled'?: boolean;
11164
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11165
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11166
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11167
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11168
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11169
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11170
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11171
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11172
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11173
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11174
+ readonly 'workbench.browser.enableChatTools'?: boolean;
11175
+ }, never>;
11176
+
11177
+ // ── 1.123.1: ~16, -1 ──
11178
+ export type VscodeSettings_1_123_1 = Patch<VscodeSettings_1_123_0, {
11179
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11180
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11181
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11182
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11183
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11184
+ readonly 'chat.agentHost.otel.outfile'?: string;
11185
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11186
+ readonly 'editor.defaultFormatter'?: string | null;
11187
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11188
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11189
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11190
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11191
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11192
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11193
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11194
+ readonly 'notebook.defaultFormatter'?: string | null;
11195
+ }, 'chat.agent.maxRequests'>;
11196
+
11197
+ // ── 1.123.2: +1, ~4 ──
11198
+ export type VscodeSettings_1_123_2 = Patch<VscodeSettings_1_123_1, {
11199
+ readonly 'chat.agent.maxRequests'?: number;
11200
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11201
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11202
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11203
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
11204
+ }, never>;
11205
+
11206
+ // ── 1.124.0-insider+2026060900: +2, ~2 ──
11207
+ export type VscodeSettings_1_124_0_insider_2026060900 = Patch<VscodeSettings_1_124_0_insider_2026060513, {
11208
+ readonly 'chat.agentHost.defaultChatProvider'?: boolean;
11209
+ readonly 'chat.autopilot.advanced.enabled'?: boolean;
11210
+ readonly 'jsts-chat-features.skills.enabled'?: boolean;
11211
+ readonly 'npm.scriptRunner'?: 'auto' | 'npm' | 'yarn' | 'pnpm' | 'bun' | 'node' | 'vp';
11212
+ }, never>;
11213
+
11214
+ // ── 1.124.0: +9, ~32, -1 ──
11215
+ export type VscodeSettings_1_124_0 = Patch<VscodeSettings_1_123_0, {
11216
+ readonly 'chat.agentHost.defaultChatProvider'?: boolean;
11217
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11218
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11219
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11220
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11221
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11222
+ readonly 'chat.agentHost.otel.outfile'?: string;
11223
+ readonly 'chat.autopilot.advanced.enabled'?: boolean;
11224
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11225
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11226
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11227
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11228
+ readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
11229
+ readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11230
+ readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
11231
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11232
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11233
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11234
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11235
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11236
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11237
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11238
+ readonly 'github.copilot.completions.chat.enabled'?: boolean;
11239
+ readonly 'jsts-chat-features.skills.enabled'?: boolean;
11240
+ readonly 'npm.scriptRunner'?: 'auto' | 'npm' | 'yarn' | 'pnpm' | 'bun' | 'node' | 'vp';
11241
+ readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
11242
+ readonly 'settingsSync.ignoredSettings'?: unknown[];
11243
+ readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
11244
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11245
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11246
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11247
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11248
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11249
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11250
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
11251
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11252
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11253
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11254
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11255
+ readonly 'workbench.browser.enableChatTools'?: boolean;
11256
+ readonly 'workbench.browser.maxHistoryEntries'?: number;
11257
+ }, 'chat.agentHost.ipcLoggingEnabled'>;
11258
+
11259
+ // ── 1.125.0-insider+2026061105: +8, ~34, -3 ──
11260
+ export type VscodeSettings_1_125_0_insider_2026061105 = Patch<VscodeSettings_1_124_0_insider_2026060900, {
11261
+ readonly 'chat.agentHost.claudeAgent.sdkRoot'?: string;
11262
+ readonly 'chat.agentHost.clientTools'?: (string)[];
11263
+ readonly 'chat.agentHost.codexAgent.sdkRoot'?: string;
11264
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11265
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11266
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11267
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11268
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11269
+ readonly 'chat.agentHost.otel.outfile'?: string;
11270
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11271
+ readonly 'chat.tools.riskAssessment.enabled'?: boolean;
11272
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11273
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11274
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11275
+ readonly 'github.copilot.chat.conversationCompaction.model'?: string;
11276
+ readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
11277
+ readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
11278
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11279
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11280
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11281
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11282
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11283
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11284
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11285
+ readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
11286
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11287
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11288
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11289
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11290
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11291
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11292
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11293
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11294
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11295
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11296
+ readonly 'workbench.browser.dataStorage'?: 'default' | 'global' | 'workspace' | 'ephemeral';
11297
+ readonly 'workbench.browser.enableRemoteProxy'?: boolean;
11298
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
11299
+ readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
11300
+ readonly 'workbench.editor.autoLockGroups'?: Record<string, unknown>;
11301
+ readonly 'workbench.editor.defaultBinaryEditor'?: 'default' | 'workbench.editor.chatSession' | 'workbench.editorinputs.searchEditorInput' | 'agentSessionsWelcomePage' | 'notebookOutputEditor' | 'repl' | 'workbench.editors.gettingStartedInput' | 'jupyter-notebook' | 'vscode.markdown.preview.editor' | 'vscode.markdown.editor' | 'imagePreview.previewEditor' | 'vscode.audioPreview' | 'vscode.videoPreview' | 'jsProfileVisualizer.cpuprofile.table' | 'jsProfileVisualizer.heapprofile.table' | 'jsProfileVisualizer.heapsnapshot.table' | '';
11302
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
11303
+ }, 'chat.agent.maxRequests' | 'chat.agentHost.claudeAgent.path' | 'chat.agentHost.codexAgent.path'>;
11304
+
11305
+ // ── 1.124.1: ~5, -4 ──
11306
+ export type VscodeSettings_1_124_1 = Patch<VscodeSettings_1_124_0, {
11307
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11308
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11309
+ readonly 'editor.defaultFormatter'?: string | null;
11310
+ readonly 'notebook.defaultFormatter'?: string | null;
11311
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
11312
+ }, 'chat.agent.maxRequests' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
11313
+
11314
+ // ── 1.124.2: +1, ~3 ──
11315
+ export type VscodeSettings_1_124_2 = Patch<VscodeSettings_1_124_1, {
11316
+ readonly 'chat.agent.maxRequests'?: number;
11317
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11318
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11319
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11320
+ }, never>;
11321
+
11322
+ // ── 1.125.0-insider+2026061205: +7, ~7 ──
11323
+ export type VscodeSettings_1_125_0_insider_2026061205 = Patch<VscodeSettings_1_125_0_insider_2026061105, {
11324
+ readonly 'chat.agent.maxRequests'?: number;
11325
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
11326
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
11327
+ readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11328
+ readonly 'chat.agents.claude.preferAgentHost'?: boolean;
11329
+ readonly 'chat.editor.claude.preferAgentHost'?: boolean;
11330
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11331
+ readonly 'chat.tools.global.autoApprove'?: boolean;
11332
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11333
+ readonly 'settingsSync.ignoredExtensions'?: (unknown)[];
11334
+ readonly 'settingsSync.ignoredSettings'?: unknown[];
11335
+ readonly 'settingsSync.keybindingsPerPlatform'?: boolean;
11336
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
11337
+ readonly 'workbench.browser.enableRemoteProxy'?: boolean;
11338
+ }, never>;
11339
+
11340
+ // ── 1.125.0-insider+2026061217: +4, ~3, -4 ──
11341
+ export type VscodeSettings_1_125_0_insider_2026061217 = Patch<VscodeSettings_1_125_0_insider_2026061205, {
11342
+ readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
11343
+ readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
11344
+ readonly 'chat.editor.defaultProvider'?: 'local' | 'copilotEh' | 'copilotAh';
11345
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11346
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11347
+ readonly 'extensions.autoUpdate'?: 'on' | 'off';
11348
+ readonly 'extensions.autoUpdateDelay'?: number;
11349
+ }, 'chat.agentHost.defaultChatProvider' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
11350
+
11351
+ // ── 1.125.0-insider+2026061505: +4, ~6, -1 ──
11352
+ export type VscodeSettings_1_125_0_insider_2026061505 = Patch<VscodeSettings_1_125_0_insider_2026061217, {
11353
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11354
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11355
+ readonly 'chat.editing.openChangedFileInDiffEditor'?: boolean;
11356
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11357
+ readonly 'chat.plugins.strictMarketplaces'?: boolean;
11358
+ readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
11359
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11360
+ readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
11361
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
11362
+ readonly 'workbench.browser.enableRemoteProxy'?: boolean;
11363
+ }, 'chat.agentHost.claudeAgent.sdkRoot'>;
11364
+
11365
+ // ── 1.125.0-insider+2026061523: ~2, -1 ──
11366
+ export type VscodeSettings_1_125_0_insider_2026061523 = Patch<VscodeSettings_1_125_0_insider_2026061505, {
11367
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11368
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11369
+ }, 'chat.agent.maxRequests'>;
11370
+
11371
+ // ── 1.126.0-insider+2026061617: +4, ~4 ──
11372
+ export type VscodeSettings_1_126_0_insider_2026061617 = Patch<VscodeSettings_1_125_0_insider_2026061523, {
11373
+ readonly 'chat.agent.maxRequests'?: number;
11374
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11375
+ readonly 'chat.editor.localAgent.enabled'?: boolean;
11376
+ readonly 'chat.plugins.enabled'?: boolean;
11377
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11378
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11379
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
11380
+ readonly 'workbench.experimental.styleOverrides'?: ('activityBar' | 'fontRamp' | 'paneHeaders' | 'roundedCorners' | 'tabs')[];
11381
+ }, never>;
11382
+
11383
+ // ── 1.125.0: +17, ~29, -4 ──
11384
+ export type VscodeSettings_1_125_0 = Patch<VscodeSettings_1_124_0, {
11385
+ readonly 'chat.agent.sandbox.fileSystem.linux'?: Record<string, unknown>;
11386
+ readonly 'chat.agent.sandbox.fileSystem.mac'?: Record<string, unknown>;
11387
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11388
+ readonly 'chat.agentHost.clientTools'?: (string)[];
11389
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11390
+ readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11391
+ readonly 'chat.agents.claude.preferAgentHost'?: boolean;
11392
+ readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
11393
+ readonly 'chat.editing.openChangedFileInDiffEditor'?: boolean;
11394
+ readonly 'chat.editor.claude.preferAgentHost'?: boolean;
11395
+ readonly 'chat.editor.copilotCli.hideExtensionHost'?: boolean;
11396
+ readonly 'chat.editor.defaultProvider'?: 'local' | 'copilotEh' | 'copilotAh';
11397
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11398
+ readonly 'chat.plugins.strictMarketplaces'?: boolean;
11399
+ readonly 'chat.tools.global.autoApprove'?: boolean;
11400
+ readonly 'chat.tools.riskAssessment.enabled'?: boolean;
11401
+ readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
11402
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11403
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11404
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11405
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11406
+ readonly 'extensions.autoUpdate'?: 'on' | 'off';
11407
+ readonly 'extensions.autoUpdateDelay'?: number;
11408
+ readonly 'github.copilot.chat.conversationCompaction.model'?: string;
11409
+ readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
11410
+ readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
11411
+ readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
11412
+ readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
11413
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11414
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11415
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11416
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11417
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11418
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11419
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
11420
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11421
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11422
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11423
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11424
+ readonly 'workbench.browser.dataStorage'?: 'default' | 'global' | 'workspace' | 'ephemeral';
11425
+ readonly 'workbench.browser.enableRemoteProxy'?: boolean;
11426
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
11427
+ readonly 'workbench.diffEditorAssociations'?: Record<string, unknown>;
11428
+ readonly 'workbench.editor.autoLockGroups'?: Record<string, unknown>;
11429
+ readonly 'workbench.editor.defaultBinaryEditor'?: 'default' | 'workbench.editor.chatSession' | 'workbench.editorinputs.searchEditorInput' | 'agentSessionsWelcomePage' | 'notebookOutputEditor' | 'repl' | 'workbench.editors.gettingStartedInput' | 'jupyter-notebook' | 'vscode.markdown.preview.editor' | 'vscode.markdown.editor' | 'imagePreview.previewEditor' | 'vscode.audioPreview' | 'vscode.videoPreview' | 'jsProfileVisualizer.cpuprofile.table' | 'jsProfileVisualizer.heapprofile.table' | 'jsProfileVisualizer.heapsnapshot.table' | '';
11430
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
11431
+ }, 'chat.agentHost.defaultChatProvider' | 'settingsSync.ignoredExtensions' | 'settingsSync.ignoredSettings' | 'settingsSync.keybindingsPerPlatform'>;
11432
+
11433
+ // ── 1.126.0-insider+2026061720: +1, ~17 ──
11434
+ export type VscodeSettings_1_126_0_insider_2026061720 = Patch<VscodeSettings_1_126_0_insider_2026061617, {
11435
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11436
+ readonly 'chat.agentHost.clientTools'?: (string)[];
11437
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11438
+ readonly 'chat.experimental.collectInstructionsInExtension'?: boolean;
11439
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11440
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11441
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11442
+ readonly 'security.workspace.trust.startupPrompt'?: 'always' | 'once' | 'never';
11443
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11444
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11445
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11446
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11447
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11448
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11449
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11450
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11451
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11452
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11453
+ }, never>;
11454
+
11455
+ // ── 1.126.0-insider+2026061820: +1, ~5, -1 ──
11456
+ export type VscodeSettings_1_126_0_insider_2026061820 = Patch<VscodeSettings_1_126_0_insider_2026061720, {
11457
+ readonly 'chat.agentHost.enabled'?: boolean;
11458
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11459
+ readonly 'editor.defaultFormatter'?: string | null;
11460
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
11461
+ readonly 'notebook.defaultFormatter'?: string | null;
11462
+ readonly 'workbench.experimental.floatingPanels'?: boolean;
11463
+ }, 'chat.agent.maxRequests'>;
11464
+
11465
+ // ── 1.126.0-insider+2026061917: +3, ~6, -4 ──
11466
+ export type VscodeSettings_1_126_0_insider_2026061917 = Patch<VscodeSettings_1_126_0_insider_2026061820, {
11467
+ readonly 'chat.agent.maxRequests'?: number;
11468
+ readonly 'chat.agentSessions.defaultConfiguration'?: Record<string, unknown>;
11469
+ readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
11470
+ readonly 'chat.plugins.strictMarketplaces'?: (Record<string, unknown>)[] | null;
11471
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11472
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11473
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11474
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11475
+ readonly 'workbench.experimental.modernUI'?: boolean;
11476
+ }, 'chat.agent.sandbox.autoApproveUnsandboxedCommands' | 'chat.editMode.hidden' | 'workbench.experimental.floatingPanels' | 'workbench.experimental.styleOverrides'>;
11477
+
11478
+ // ── 1.125.1: ~3, -1 ──
11479
+ export type VscodeSettings_1_125_1 = Patch<VscodeSettings_1_125_0, {
11480
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11481
+ readonly 'editor.defaultFormatter'?: string | null;
11482
+ readonly 'notebook.defaultFormatter'?: string | null;
11483
+ }, 'chat.agent.maxRequests'>;
11484
+
11485
+ // ── 1.126.0-insider+2026062301: +3, ~28, -3 ──
11486
+ export type VscodeSettings_1_126_0_insider_2026062301 = Patch<VscodeSettings_1_126_0_insider_2026061917, {
11487
+ readonly 'accessibility.verbosity.survey'?: boolean;
11488
+ readonly 'chat.agentHost.opus48Prompt.enabled'?: boolean;
11489
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11490
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11491
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11492
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11493
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11494
+ readonly 'chat.agentHost.otel.outfile'?: string;
11495
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
11496
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11497
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11498
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11499
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11500
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
11501
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11502
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11503
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11504
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11505
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11506
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11507
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11508
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11509
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11510
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11511
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11512
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11513
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11514
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11515
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11516
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11517
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11518
+ }, 'chat.agentSessions.defaultConfiguration' | 'github.copilot.chat.gpt55EconomicalSearchAndEdit.enabled' | 'github.copilot.chat.gpt55LargePromptSections.enabled'>;
11519
+
11520
+ // ── 1.127.0-insider+2026062317: +3, ~3, -1 ──
11521
+ export type VscodeSettings_1_127_0_insider_2026062317 = Patch<VscodeSettings_1_126_0_insider_2026062301, {
11522
+ readonly 'agents.voice.microphoneDevice'?: string;
11523
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11524
+ readonly 'editor.defaultFormatter'?: string | null;
11525
+ readonly 'notebook.defaultFormatter'?: string | null;
11526
+ readonly 'onboarding.developerMode'?: boolean;
11527
+ readonly 'onboarding.enabled'?: boolean;
11528
+ }, 'chat.agent.maxRequests'>;
11529
+
11530
+ // ── 1.126.0: +7, ~38, -4 ──
11531
+ export type VscodeSettings_1_126_0 = Patch<VscodeSettings_1_125_0, {
11532
+ readonly 'accessibility.verbosity.survey'?: boolean;
11533
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11534
+ readonly 'chat.agentHost.clientTools'?: (string)[];
11535
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11536
+ readonly 'chat.agentHost.enabled'?: boolean;
11537
+ readonly 'chat.agentHost.opus48Prompt.enabled'?: boolean;
11538
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11539
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
11540
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11541
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11542
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11543
+ readonly 'chat.agentHost.otel.outfile'?: string;
11544
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
11545
+ readonly 'chat.editor.localAgent.enabled'?: boolean;
11546
+ readonly 'chat.experimental.collectInstructionsInExtension'?: boolean;
11547
+ readonly 'chat.permissions.default'?: 'default' | 'autoApprove' | 'autopilot';
11548
+ readonly 'chat.plugins.enabled'?: boolean;
11549
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
11550
+ readonly 'chat.plugins.strictMarketplaces'?: (Record<string, unknown>)[] | null;
11551
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11552
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11553
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11554
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11555
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
11556
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11557
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11558
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11559
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11560
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11561
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11562
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11563
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
11564
+ readonly 'security.workspace.trust.startupPrompt'?: 'always' | 'once' | 'never';
11565
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11566
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11567
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11568
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11569
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11570
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11571
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
11572
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11573
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11574
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11575
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11576
+ readonly 'workbench.experimental.modernUI'?: boolean;
11577
+ }, 'chat.agent.sandbox.autoApproveUnsandboxedCommands' | 'chat.editMode.hidden' | 'github.copilot.chat.gpt55EconomicalSearchAndEdit.enabled' | 'github.copilot.chat.gpt55LargePromptSections.enabled'>;
11578
+
11579
+ // ── 1.127.0-insider+2026062521: +2, ~210, -3 ──
11580
+ export type VscodeSettings_1_127_0_insider_2026062521 = Patch<VscodeSettings_1_127_0_insider_2026062317, {
11581
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11582
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11583
+ readonly 'chat.agentHost.enabled'?: boolean;
11584
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
11585
+ readonly 'chat.defaultModel'?: string;
11586
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11587
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11588
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11589
+ readonly 'github.copilot.chat.additionalReadAccessPaths'?: (string)[];
11590
+ readonly 'github.copilot.chat.agent.autoFix'?: boolean;
11591
+ readonly 'github.copilot.chat.agent.backgroundTodoAgent.enabled'?: boolean;
11592
+ readonly 'github.copilot.chat.agent.currentEditorContext.enabled'?: boolean;
11593
+ readonly 'github.copilot.chat.agent.largeToolResultsToDisk.enabled'?: boolean;
11594
+ readonly 'github.copilot.chat.agent.largeToolResultsToDisk.thresholdBytes'?: number;
11595
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
11596
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
11597
+ readonly 'github.copilot.chat.agent.modelDetails.enabled'?: boolean;
11598
+ readonly 'github.copilot.chat.agent.omitFileAttachmentContents'?: boolean;
11599
+ readonly 'github.copilot.chat.agent.temperature'?: number | null;
11600
+ readonly 'github.copilot.chat.agentDebugLog.enabled'?: boolean;
11601
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.enabled'?: boolean;
11602
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.flushIntervalMs'?: number;
11603
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxRetainedSessionLogs'?: number;
11604
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxSessionLogSizeMB'?: number;
11605
+ readonly 'github.copilot.chat.agentHistorySummarizationMode'?: string | null;
11606
+ readonly 'github.copilot.chat.alternateGeminiModelFPrompt.enabled'?: boolean;
11607
+ readonly 'github.copilot.chat.alternateGptPrompt.enabled'?: boolean;
11608
+ readonly 'github.copilot.chat.anthropic.contextEditing.mode'?: 'off' | 'clear-thinking' | 'clear-tooluse' | 'clear-both';
11609
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
11610
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
11611
+ readonly 'github.copilot.chat.anthropic.tools.websearch.allowedDomains'?: (string)[];
11612
+ readonly 'github.copilot.chat.anthropic.tools.websearch.blockedDomains'?: (string)[];
11613
+ readonly 'github.copilot.chat.anthropic.tools.websearch.enabled'?: boolean;
11614
+ readonly 'github.copilot.chat.anthropic.tools.websearch.maxUses'?: number;
11615
+ readonly 'github.copilot.chat.anthropic.tools.websearch.userLocation'?: Record<string, unknown> | null;
11616
+ readonly 'github.copilot.chat.anthropic.useMessagesApi'?: boolean;
11617
+ readonly 'github.copilot.chat.askAgent.additionalTools'?: (string)[];
11618
+ readonly 'github.copilot.chat.askAgent.model'?: string;
11619
+ readonly 'github.copilot.chat.backgroundAgent.enabled'?: boolean;
11620
+ readonly 'github.copilot.chat.claude47OpusPrompt.enabled'?: boolean;
11621
+ readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
11622
+ readonly 'github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions'?: boolean;
11623
+ readonly 'github.copilot.chat.claudeAgent.enabled'?: boolean;
11624
+ readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
11625
+ readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
11626
+ readonly 'github.copilot.chat.cli.aiGenerateBranchNames.enabled'?: boolean;
11627
+ readonly 'github.copilot.chat.cli.autoCommit.enabled'?: boolean;
11628
+ readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
11629
+ readonly 'github.copilot.chat.cli.branchSupport.enabled'?: boolean;
11630
+ readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
11631
+ readonly 'github.copilot.chat.cli.isolationOption.enabled'?: boolean;
11632
+ readonly 'github.copilot.chat.cli.lazyLoadSessionItem.enabled'?: boolean;
11633
+ readonly 'github.copilot.chat.cli.mcp.enabled'?: boolean;
11634
+ readonly 'github.copilot.chat.cli.planCommand.enabled'?: boolean;
11635
+ readonly 'github.copilot.chat.cli.planExitMode.enabled'?: boolean;
11636
+ readonly 'github.copilot.chat.cli.remote.enabled'?: boolean;
11637
+ readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11638
+ readonly 'github.copilot.chat.cli.sessionController.enabled'?: boolean;
11639
+ readonly 'github.copilot.chat.cli.sessionControllerForSessionsApp.enabled'?: boolean;
11640
+ readonly 'github.copilot.chat.cli.showExternalSessions'?: boolean;
11641
+ readonly 'github.copilot.chat.cli.terminalLinks.enabled'?: boolean;
11642
+ readonly 'github.copilot.chat.cli.thinkingEffort.enabled'?: boolean;
11643
+ readonly 'github.copilot.chat.cloudAgent.enabled'?: boolean;
11644
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
11645
+ readonly 'github.copilot.chat.codeGeneration.instructions'?: (unknown)[];
11646
+ readonly 'github.copilot.chat.codeGeneration.useInstructionFiles'?: boolean;
11647
+ readonly 'github.copilot.chat.codesearch.agent.enabled'?: boolean;
11648
+ readonly 'github.copilot.chat.codesearch.enabled'?: boolean;
11649
+ readonly 'github.copilot.chat.commitMessageGeneration.instructions'?: (unknown)[];
11650
+ readonly 'github.copilot.chat.completionsFetcher'?: 'electron-fetch' | 'node-fetch';
11651
+ readonly 'github.copilot.chat.conversationCompaction.model'?: string;
11652
+ readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
11653
+ readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
11654
+ readonly 'github.copilot.chat.copilotDebugCommand.enabled'?: boolean;
11655
+ readonly 'github.copilot.chat.customInstructionsInSystemMessage'?: boolean;
11656
+ readonly 'github.copilot.chat.debug.promptOverrideFile'?: string | null;
11657
+ readonly 'github.copilot.chat.debug.promptOverrideString'?: string | null;
11658
+ readonly 'github.copilot.chat.debug.requestLogger.maxEntries'?: number;
11659
+ readonly 'github.copilot.chat.debugTerminalCommandPatterns'?: (string)[];
11660
+ readonly 'github.copilot.chat.editRecording.enabled'?: boolean;
11661
+ readonly 'github.copilot.chat.edits.batchReplaceStringDescriptions'?: boolean;
11662
+ readonly 'github.copilot.chat.edits.gemini3MultiReplaceString'?: boolean;
11663
+ readonly 'github.copilot.chat.enableUserPreferences'?: boolean;
11664
+ readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
11665
+ readonly 'github.copilot.chat.executionSubagent.model'?: string;
11666
+ readonly 'github.copilot.chat.executionSubagent.toolCallLimit'?: number;
11667
+ readonly 'github.copilot.chat.executionSubagent.useAgenticProxy'?: boolean;
11668
+ readonly 'github.copilot.chat.exploreAgent.enabled'?: boolean;
11669
+ readonly 'github.copilot.chat.exploreAgent.model'?: string;
11670
+ readonly 'github.copilot.chat.feedback.onChange'?: boolean;
11671
+ readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
11672
+ readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
11673
+ readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
11674
+ readonly 'github.copilot.chat.getChangedFilesTool.enabled'?: boolean;
11675
+ readonly 'github.copilot.chat.githubMcpServer.channel'?: 'stable' | 'insiders';
11676
+ readonly 'github.copilot.chat.githubMcpServer.enabled'?: boolean;
11677
+ readonly 'github.copilot.chat.githubMcpServer.lockdown'?: boolean;
11678
+ readonly 'github.copilot.chat.githubMcpServer.readonly'?: boolean;
11679
+ readonly 'github.copilot.chat.githubMcpServer.toolsets'?: (string)[];
11680
+ readonly 'github.copilot.chat.gpt55GetChangedFilesTool.enabled'?: boolean;
11681
+ readonly 'github.copilot.chat.gpt55ReadFileTool.enabled'?: boolean;
11682
+ readonly 'github.copilot.chat.gpt5AlternativePatch'?: boolean;
11683
+ readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
11684
+ readonly 'github.copilot.chat.implementAgent.model'?: string;
11685
+ readonly 'github.copilot.chat.inlineChat.enableThinking'?: boolean;
11686
+ readonly 'github.copilot.chat.inlineChat.reasoningEffort'?: 'none' | 'minimal' | 'low' | 'medium' | 'high';
11687
+ readonly 'github.copilot.chat.inlineEdits.chatSessionContextProvider.enabled'?: boolean;
11688
+ readonly 'github.copilot.chat.inlineEdits.diagnosticsContextProvider.enabled'?: boolean;
11689
+ readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.currentFileMaxTokens'?: number;
11690
+ readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.displayLine'?: boolean;
11691
+ readonly 'github.copilot.chat.inlineEdits.renameSymbolSuggestions'?: boolean;
11692
+ readonly 'github.copilot.chat.inlineEdits.triggerOnEditorChangeAfterSeconds'?: number | null;
11693
+ readonly 'github.copilot.chat.inlineEdits.xtabProvider.modelConfiguration'?: Record<string, unknown> | null;
11694
+ readonly 'github.copilot.chat.installExtensionSkill.enabled'?: boolean;
11695
+ readonly 'github.copilot.chat.instantApply.shortContextLimit'?: number;
11696
+ readonly 'github.copilot.chat.instantApply.shortContextModelName'?: string;
11697
+ readonly 'github.copilot.chat.languageContext.fix.typescript.enabled'?: boolean;
11698
+ readonly 'github.copilot.chat.languageContext.inline.typescript.enabled'?: boolean;
11699
+ readonly 'github.copilot.chat.languageContext.typescript.cacheTimeout'?: number;
11700
+ readonly 'github.copilot.chat.languageContext.typescript.enabled'?: boolean;
11701
+ readonly 'github.copilot.chat.languageContext.typescript.includeDocumentation'?: boolean;
11702
+ readonly 'github.copilot.chat.languageContext.typescript.items'?: 'minimal' | 'double' | 'fillHalf' | 'fill';
11703
+ readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
11704
+ readonly 'github.copilot.chat.localWorkspaceRecording.enabled'?: boolean;
11705
+ readonly 'github.copilot.chat.localeOverride'?: 'auto' | 'en' | 'fr' | 'it' | 'de' | 'es' | 'ru' | 'zh-CN' | 'zh-TW' | 'ja' | 'ko' | 'cs' | 'pt-br' | 'tr' | 'pl';
11706
+ readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
11707
+ readonly 'github.copilot.chat.nesFetcher'?: 'electron-fetch' | 'node-fetch';
11708
+ readonly 'github.copilot.chat.newWorkspace.useContext7'?: boolean;
11709
+ readonly 'github.copilot.chat.newWorkspaceCreation.enabled'?: boolean;
11710
+ readonly 'github.copilot.chat.notebook.alternativeFormat'?: 'xml' | 'markdown';
11711
+ readonly 'github.copilot.chat.notebook.alternativeNESFormat.enabled'?: boolean;
11712
+ readonly 'github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled'?: boolean;
11713
+ readonly 'github.copilot.chat.notebook.followCellExecution.enabled'?: boolean;
11714
+ readonly 'github.copilot.chat.notebook.summaryExperimentEnabled'?: boolean;
11715
+ readonly 'github.copilot.chat.notebook.variableFilteringEnabled'?: boolean;
11716
+ readonly 'github.copilot.chat.omitBaseAgentInstructions'?: boolean;
11717
+ readonly 'github.copilot.chat.organizationCustomAgents.enabled'?: boolean;
11718
+ readonly 'github.copilot.chat.organizationInstructions.enabled'?: boolean;
11719
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11720
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
11721
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11722
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11723
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
11724
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11725
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11726
+ readonly 'github.copilot.chat.planAgent.additionalTools'?: (string)[];
11727
+ readonly 'github.copilot.chat.projectLabels.chat'?: boolean;
11728
+ readonly 'github.copilot.chat.projectLabels.expanded'?: boolean;
11729
+ readonly 'github.copilot.chat.projectLabels.inline'?: boolean;
11730
+ readonly 'github.copilot.chat.promptFileContextProvider.enabled'?: boolean;
11731
+ readonly 'github.copilot.chat.pullRequestDescriptionGeneration.instructions'?: (unknown)[];
11732
+ readonly 'github.copilot.chat.rateLimitAutoSwitchToAuto'?: boolean;
11733
+ readonly 'github.copilot.chat.reasoningEffortOverride'?: string | null;
11734
+ readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
11735
+ readonly 'github.copilot.chat.responsesApi.promptCacheKey.enabled'?: boolean;
11736
+ readonly 'github.copilot.chat.responsesApiContextManagement.enabled'?: boolean;
11737
+ readonly 'github.copilot.chat.responsesApiReasoningSummary'?: 'off' | 'detailed';
11738
+ readonly 'github.copilot.chat.review.intent'?: boolean;
11739
+ readonly 'github.copilot.chat.reviewAgent.enabled'?: boolean;
11740
+ readonly 'github.copilot.chat.reviewSelection.enabled'?: boolean;
11741
+ readonly 'github.copilot.chat.reviewSelection.instructions'?: (unknown)[];
11742
+ readonly 'github.copilot.chat.scopeSelection'?: boolean;
11743
+ readonly 'github.copilot.chat.searchSubagent.enabled'?: boolean;
11744
+ readonly 'github.copilot.chat.searchSubagent.model'?: string;
11745
+ readonly 'github.copilot.chat.searchSubagent.thoroughnessEnabled'?: boolean;
11746
+ readonly 'github.copilot.chat.searchSubagent.toolCallLimit'?: number;
11747
+ readonly 'github.copilot.chat.searchSubagent.useAgenticProxy'?: boolean;
11748
+ readonly 'github.copilot.chat.setupTests.enabled'?: boolean;
11749
+ readonly 'github.copilot.chat.skillTool.enabled'?: boolean;
11750
+ readonly 'github.copilot.chat.summarizeAgentConversationHistory.enabled'?: boolean;
11751
+ readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
11752
+ readonly 'github.copilot.chat.switchAgent.enabled'?: boolean;
11753
+ readonly 'github.copilot.chat.terminalChatLocation'?: 'chatView' | 'quickChat' | 'terminal';
11754
+ readonly 'github.copilot.chat.testGeneration.instructions'?: (unknown)[];
11755
+ readonly 'github.copilot.chat.tools.defaultToolsGrouped'?: boolean;
11756
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
11757
+ readonly 'github.copilot.chat.tools.viewImage.enabled'?: boolean;
11758
+ readonly 'github.copilot.chat.updated53CodexPrompt.enabled'?: boolean;
11759
+ readonly 'github.copilot.chat.useProjectTemplates'?: boolean;
11760
+ readonly 'github.copilot.chat.useResponsesApiTruncation'?: boolean;
11761
+ readonly 'github.copilot.chat.virtualTools.threshold'?: number;
11762
+ readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
11763
+ readonly 'github.copilot.chat.workspace.enableCodeSearch'?: boolean;
11764
+ readonly 'github.copilot.chat.workspace.maxLocalIndexSize'?: number;
11765
+ readonly 'github.copilot.chat.workspace.preferredEmbeddingsModel'?: string;
11766
+ readonly 'github.copilot.chat.workspace.prototypeAdoCodeSearchEndpointOverride'?: string;
11767
+ readonly 'github.copilot.completions.chat.enabled'?: boolean;
11768
+ readonly 'github.copilot.editor.enableCodeActions'?: boolean;
11769
+ readonly 'github.copilot.enable'?: Record<string, unknown>;
11770
+ readonly 'github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges'?: boolean;
11771
+ readonly 'github.copilot.nextEditSuggestions.eagerness'?: 'auto' | 'low' | 'medium' | 'high';
11772
+ readonly 'github.copilot.nextEditSuggestions.enabled'?: boolean;
11773
+ readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
11774
+ readonly 'github.copilot.nextEditSuggestions.fixes'?: boolean;
11775
+ readonly 'github.copilot.nextEditSuggestions.preferredModel'?: string;
11776
+ readonly 'github.copilot.renameSuggestions.triggerAutomatically'?: boolean;
11777
+ readonly 'github.copilot.selectedCompletionModel'?: string;
11778
+ readonly 'onboarding.developerMode'?: boolean;
11779
+ readonly 'remote.tunnels.access.enableMicrosoftAuth'?: boolean;
11780
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
11781
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
11782
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
11783
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
11784
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
11785
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
11786
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
11787
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
11788
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
11789
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'voice-mode-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
11790
+ readonly 'update.showPostInstallInfo'?: boolean;
11791
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
11792
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
11793
+ }, 'agents.voice.microphoneDevice' | 'chat.agentHost.clientTools' | 'chat.customizations.harnessSelector.enabled'>;
11794
+
11795
+ // ── 1.127.0-insider+2026062621: +2, ~8 ──
11796
+ export type VscodeSettings_1_127_0_insider_2026062621 = Patch<VscodeSettings_1_127_0_insider_2026062521, {
11797
+ readonly 'chat.agent.maxRequests'?: number;
11798
+ readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11799
+ readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
11800
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11801
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11802
+ readonly 'extensions.autoUpdate'?: 'on' | 'off';
11803
+ readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11804
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
11805
+ readonly 'onboarding.developerMode'?: Record<string, unknown>;
11806
+ readonly 'workbench.browser.enableChatTools'?: boolean;
11807
+ }, never>;
11808
+
11809
+ // ── 1.127.0-insider+2026062905: +5, ~20 ──
11810
+ export type VscodeSettings_1_127_0_insider_2026062905 = Patch<VscodeSettings_1_127_0_insider_2026062621, {
11811
+ readonly 'chat.agent.allowedNetworkDomains'?: (string)[];
11812
+ readonly 'chat.agent.deniedNetworkDomains'?: (string)[];
11813
+ readonly 'chat.agent.sandbox.allowNetwork'?: boolean;
11814
+ readonly 'chat.agent.sandbox.enabled'?: 'off' | 'on';
11815
+ readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'on';
11816
+ readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
11817
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11818
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11819
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11820
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11821
+ readonly 'chat.agentHost.otel.outfile'?: string;
11822
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11823
+ readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
11824
+ readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
11825
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
11826
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
11827
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
11828
+ readonly 'github.copilot.chat.otel.headers'?: Record<string, unknown>;
11829
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
11830
+ readonly 'github.copilot.chat.otel.outfile'?: string;
11831
+ readonly 'github.copilot.chat.otel.protocol'?: '' | 'http/json' | 'http/protobuf' | 'grpc';
11832
+ readonly 'github.copilot.chat.otel.resourceAttributes'?: Record<string, unknown>;
11833
+ readonly 'github.copilot.chat.otel.serviceName'?: string;
11834
+ readonly 'terminal.integrated.commandsToSkipShell'?: (string)[];
11835
+ readonly 'workbench.browser.agentHostChatToolsEnabled'?: boolean;
11836
+ }, never>;
11837
+
11838
+ // ── 1.128.0-insider+2026063019: +5, ~5, -2 ──
11839
+ export type VscodeSettings_1_128_0_insider_2026063019 = Patch<VscodeSettings_1_127_0_insider_2026062905, {
11840
+ readonly 'accessibility.verbosity.sessionsChanges'?: boolean;
11841
+ readonly 'chat.agents.claude.preferAgentHost'?: boolean;
11842
+ readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
11843
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
11844
+ readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
11845
+ readonly 'github.copilot.chat.tools.grepSearch.maxResultsCap'?: number;
11846
+ readonly 'onboarding.developerMode'?: Record<string, unknown>;
11847
+ readonly 'workbench.browser.sendElementsToChat.attachImages'?: boolean;
11848
+ readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
11849
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
11850
+ }, 'chat.sendElementsToChat.attachImages' | 'github.copilot.chat.responsesApiReasoningSummary'>;
11851
+
11852
+ // ── 1.127.0: +12, ~227, -3 ──
11853
+ export type VscodeSettings_1_127_0 = Patch<VscodeSettings_1_126_0, {
11854
+ readonly 'chat.agent.allowedNetworkDomains'?: (string)[];
11855
+ readonly 'chat.agent.deniedNetworkDomains'?: (string)[];
11856
+ readonly 'chat.agent.sandbox.allowNetwork'?: boolean;
11857
+ readonly 'chat.agent.sandbox.enabled'?: 'off' | 'on';
11858
+ readonly 'chat.agent.sandbox.enabledWindows'?: 'off' | 'on';
11859
+ readonly 'chat.agent.sandbox.retryWithAllowNetworkRequests'?: boolean;
11860
+ readonly 'chat.agentHost.claudeAgent.enabled'?: boolean;
11861
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
11862
+ readonly 'chat.agentHost.enabled'?: boolean;
11863
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
11864
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
11865
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
11866
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
11867
+ readonly 'chat.agentHost.otel.outfile'?: string;
11868
+ readonly 'chat.agentHost.sdkSandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11869
+ readonly 'chat.agents.claude.preferAgentHost'?: boolean;
11870
+ readonly 'chat.agents.copilotCli.hideExtensionHost'?: boolean;
11871
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
11872
+ readonly 'chat.defaultModel'?: string;
11873
+ readonly 'chat.experimental.permissionsSandboxToggle.enabled'?: boolean;
11874
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
11875
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
11876
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
11877
+ readonly 'editor.defaultFormatter'?: string | null;
11878
+ readonly 'extensions.autoUpdate'?: 'on' | 'off';
11879
+ readonly 'github.copilot.chat.additionalReadAccessPaths'?: (string)[];
11880
+ readonly 'github.copilot.chat.agent.autoFix'?: boolean;
11881
+ readonly 'github.copilot.chat.agent.backgroundTodoAgent.enabled'?: boolean;
11882
+ readonly 'github.copilot.chat.agent.currentEditorContext.enabled'?: boolean;
11883
+ readonly 'github.copilot.chat.agent.largeToolResultsToDisk.enabled'?: boolean;
11884
+ readonly 'github.copilot.chat.agent.largeToolResultsToDisk.thresholdBytes'?: number;
11885
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.enabled'?: boolean;
11886
+ readonly 'github.copilot.chat.agent.longToolCallCachePreservation.maxProbes'?: number;
11887
+ readonly 'github.copilot.chat.agent.modelDetails.enabled'?: boolean;
11888
+ readonly 'github.copilot.chat.agent.omitFileAttachmentContents'?: boolean;
11889
+ readonly 'github.copilot.chat.agent.temperature'?: number | null;
11890
+ readonly 'github.copilot.chat.agentDebugLog.enabled'?: boolean;
11891
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.enabled'?: boolean;
11892
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.flushIntervalMs'?: number;
11893
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxRetainedSessionLogs'?: number;
11894
+ readonly 'github.copilot.chat.agentDebugLog.fileLogging.maxSessionLogSizeMB'?: number;
11895
+ readonly 'github.copilot.chat.agentHistorySummarizationMode'?: string | null;
11896
+ readonly 'github.copilot.chat.alternateGeminiModelFPrompt.enabled'?: boolean;
11897
+ readonly 'github.copilot.chat.alternateGptPrompt.enabled'?: boolean;
11898
+ readonly 'github.copilot.chat.anthropic.contextEditing.mode'?: 'off' | 'clear-thinking' | 'clear-tooluse' | 'clear-both';
11899
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
11900
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
11901
+ readonly 'github.copilot.chat.anthropic.tools.websearch.allowedDomains'?: (string)[];
11902
+ readonly 'github.copilot.chat.anthropic.tools.websearch.blockedDomains'?: (string)[];
11903
+ readonly 'github.copilot.chat.anthropic.tools.websearch.enabled'?: boolean;
11904
+ readonly 'github.copilot.chat.anthropic.tools.websearch.maxUses'?: number;
11905
+ readonly 'github.copilot.chat.anthropic.tools.websearch.userLocation'?: Record<string, unknown> | null;
11906
+ readonly 'github.copilot.chat.anthropic.useMessagesApi'?: boolean;
11907
+ readonly 'github.copilot.chat.askAgent.additionalTools'?: (string)[];
11908
+ readonly 'github.copilot.chat.askAgent.model'?: string;
11909
+ readonly 'github.copilot.chat.backgroundAgent.enabled'?: boolean;
11910
+ readonly 'github.copilot.chat.claude47OpusPrompt.enabled'?: boolean;
11911
+ readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
11912
+ readonly 'github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions'?: boolean;
11913
+ readonly 'github.copilot.chat.claudeAgent.enabled'?: boolean;
11914
+ readonly 'github.copilot.chat.claudeAgent.sdkExtensionInstallTimeout'?: number;
11915
+ readonly 'github.copilot.chat.claudeAgent.useSdkExtension'?: boolean;
11916
+ readonly 'github.copilot.chat.cli.aiGenerateBranchNames.enabled'?: boolean;
11917
+ readonly 'github.copilot.chat.cli.autoCommit.enabled'?: boolean;
11918
+ readonly 'github.copilot.chat.cli.autoModel.enabled'?: boolean;
11919
+ readonly 'github.copilot.chat.cli.branchSupport.enabled'?: boolean;
11920
+ readonly 'github.copilot.chat.cli.forkSessions.enabled'?: boolean;
11921
+ readonly 'github.copilot.chat.cli.isolationOption.enabled'?: boolean;
11922
+ readonly 'github.copilot.chat.cli.lazyLoadSessionItem.enabled'?: boolean;
11923
+ readonly 'github.copilot.chat.cli.mcp.enabled'?: boolean;
11924
+ readonly 'github.copilot.chat.cli.planCommand.enabled'?: boolean;
11925
+ readonly 'github.copilot.chat.cli.planExitMode.enabled'?: boolean;
11926
+ readonly 'github.copilot.chat.cli.remote.enabled'?: boolean;
11927
+ readonly 'github.copilot.chat.cli.sandbox.enabled'?: 'off' | 'on' | 'allowNetwork';
11928
+ readonly 'github.copilot.chat.cli.sessionController.enabled'?: boolean;
11929
+ readonly 'github.copilot.chat.cli.sessionControllerForSessionsApp.enabled'?: boolean;
11930
+ readonly 'github.copilot.chat.cli.showExternalSessions'?: boolean;
11931
+ readonly 'github.copilot.chat.cli.terminalLinks.enabled'?: boolean;
11932
+ readonly 'github.copilot.chat.cli.thinkingEffort.enabled'?: boolean;
11933
+ readonly 'github.copilot.chat.cloudAgent.enabled'?: boolean;
11934
+ readonly 'github.copilot.chat.cloudAgentBackend.version'?: 'v1' | 'v2';
11935
+ readonly 'github.copilot.chat.codeGeneration.instructions'?: (unknown)[];
11936
+ readonly 'github.copilot.chat.codeGeneration.useInstructionFiles'?: boolean;
11937
+ readonly 'github.copilot.chat.codesearch.agent.enabled'?: boolean;
11938
+ readonly 'github.copilot.chat.codesearch.enabled'?: boolean;
11939
+ readonly 'github.copilot.chat.commitMessageGeneration.instructions'?: (unknown)[];
11940
+ readonly 'github.copilot.chat.completionsFetcher'?: 'electron-fetch' | 'node-fetch';
11941
+ readonly 'github.copilot.chat.conversationCompaction.model'?: string;
11942
+ readonly 'github.copilot.chat.conversationCompaction.prismModelFilter'?: string;
11943
+ readonly 'github.copilot.chat.conversationCompaction.usePrismCompaction'?: boolean;
11944
+ readonly 'github.copilot.chat.copilotDebugCommand.enabled'?: boolean;
11945
+ readonly 'github.copilot.chat.customInstructionsInSystemMessage'?: boolean;
11946
+ readonly 'github.copilot.chat.debug.promptOverrideFile'?: string | null;
11947
+ readonly 'github.copilot.chat.debug.promptOverrideString'?: string | null;
11948
+ readonly 'github.copilot.chat.debug.requestLogger.maxEntries'?: number;
11949
+ readonly 'github.copilot.chat.debugTerminalCommandPatterns'?: (string)[];
11950
+ readonly 'github.copilot.chat.editRecording.enabled'?: boolean;
11951
+ readonly 'github.copilot.chat.edits.batchReplaceStringDescriptions'?: boolean;
11952
+ readonly 'github.copilot.chat.edits.gemini3MultiReplaceString'?: boolean;
11953
+ readonly 'github.copilot.chat.enableUserPreferences'?: boolean;
11954
+ readonly 'github.copilot.chat.executionSubagent.enabled'?: boolean;
11955
+ readonly 'github.copilot.chat.executionSubagent.model'?: string;
11956
+ readonly 'github.copilot.chat.executionSubagent.toolCallLimit'?: number;
11957
+ readonly 'github.copilot.chat.executionSubagent.useAgenticProxy'?: boolean;
11958
+ readonly 'github.copilot.chat.exploreAgent.enabled'?: boolean;
11959
+ readonly 'github.copilot.chat.exploreAgent.model'?: string;
11960
+ readonly 'github.copilot.chat.feedback.onChange'?: boolean;
11961
+ readonly 'github.copilot.chat.gemini35FlashReducedToolUsePrompt.enabled'?: boolean;
11962
+ readonly 'github.copilot.chat.gemini3GetChangedFilesTool.enabled'?: boolean;
11963
+ readonly 'github.copilot.chat.gemini3LowReasoningEffort.enabled'?: boolean;
11964
+ readonly 'github.copilot.chat.getChangedFilesTool.enabled'?: boolean;
11965
+ readonly 'github.copilot.chat.githubMcpServer.channel'?: 'stable' | 'insiders';
11966
+ readonly 'github.copilot.chat.githubMcpServer.enabled'?: boolean;
11967
+ readonly 'github.copilot.chat.githubMcpServer.lockdown'?: boolean;
11968
+ readonly 'github.copilot.chat.githubMcpServer.readonly'?: boolean;
11969
+ readonly 'github.copilot.chat.githubMcpServer.toolsets'?: (string)[];
11970
+ readonly 'github.copilot.chat.gpt55GetChangedFilesTool.enabled'?: boolean;
11971
+ readonly 'github.copilot.chat.gpt55ReadFileTool.enabled'?: boolean;
11972
+ readonly 'github.copilot.chat.gpt5AlternativePatch'?: boolean;
11973
+ readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
11974
+ readonly 'github.copilot.chat.implementAgent.model'?: string;
11975
+ readonly 'github.copilot.chat.inlineChat.enableThinking'?: boolean;
11976
+ readonly 'github.copilot.chat.inlineChat.reasoningEffort'?: 'none' | 'minimal' | 'low' | 'medium' | 'high';
11977
+ readonly 'github.copilot.chat.inlineEdits.chatSessionContextProvider.enabled'?: boolean;
11978
+ readonly 'github.copilot.chat.inlineEdits.diagnosticsContextProvider.enabled'?: boolean;
11979
+ readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.currentFileMaxTokens'?: number;
11980
+ readonly 'github.copilot.chat.inlineEdits.nextCursorPrediction.displayLine'?: boolean;
11981
+ readonly 'github.copilot.chat.inlineEdits.renameSymbolSuggestions'?: boolean;
11982
+ readonly 'github.copilot.chat.inlineEdits.triggerOnEditorChangeAfterSeconds'?: number | null;
11983
+ readonly 'github.copilot.chat.inlineEdits.xtabProvider.modelConfiguration'?: Record<string, unknown> | null;
11984
+ readonly 'github.copilot.chat.installExtensionSkill.enabled'?: boolean;
11985
+ readonly 'github.copilot.chat.instantApply.shortContextLimit'?: number;
11986
+ readonly 'github.copilot.chat.instantApply.shortContextModelName'?: string;
11987
+ readonly 'github.copilot.chat.languageContext.fix.typescript.enabled'?: boolean;
11988
+ readonly 'github.copilot.chat.languageContext.inline.typescript.enabled'?: boolean;
11989
+ readonly 'github.copilot.chat.languageContext.typescript.cacheTimeout'?: number;
11990
+ readonly 'github.copilot.chat.languageContext.typescript.enabled'?: boolean;
11991
+ readonly 'github.copilot.chat.languageContext.typescript.includeDocumentation'?: boolean;
11992
+ readonly 'github.copilot.chat.languageContext.typescript.items'?: 'minimal' | 'double' | 'fillHalf' | 'fill';
11993
+ readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
11994
+ readonly 'github.copilot.chat.localWorkspaceRecording.enabled'?: boolean;
11995
+ readonly 'github.copilot.chat.localeOverride'?: 'auto' | 'en' | 'fr' | 'it' | 'de' | 'es' | 'ru' | 'zh-CN' | 'zh-TW' | 'ja' | 'ko' | 'cs' | 'pt-br' | 'tr' | 'pl';
11996
+ readonly 'github.copilot.chat.modelCapabilityOverrides'?: Record<string, unknown>;
11997
+ readonly 'github.copilot.chat.nesFetcher'?: 'electron-fetch' | 'node-fetch';
11998
+ readonly 'github.copilot.chat.newWorkspace.useContext7'?: boolean;
11999
+ readonly 'github.copilot.chat.newWorkspaceCreation.enabled'?: boolean;
12000
+ readonly 'github.copilot.chat.notebook.alternativeFormat'?: 'xml' | 'markdown';
12001
+ readonly 'github.copilot.chat.notebook.alternativeNESFormat.enabled'?: boolean;
12002
+ readonly 'github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled'?: boolean;
12003
+ readonly 'github.copilot.chat.notebook.followCellExecution.enabled'?: boolean;
12004
+ readonly 'github.copilot.chat.notebook.summaryExperimentEnabled'?: boolean;
12005
+ readonly 'github.copilot.chat.notebook.variableFilteringEnabled'?: boolean;
12006
+ readonly 'github.copilot.chat.omitBaseAgentInstructions'?: boolean;
12007
+ readonly 'github.copilot.chat.organizationCustomAgents.enabled'?: boolean;
12008
+ readonly 'github.copilot.chat.organizationInstructions.enabled'?: boolean;
12009
+ readonly 'github.copilot.chat.otel.captureContent'?: boolean;
12010
+ readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
12011
+ readonly 'github.copilot.chat.otel.enabled'?: boolean;
12012
+ readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
12013
+ readonly 'github.copilot.chat.otel.headers'?: Record<string, unknown>;
12014
+ readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
12015
+ readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
12016
+ readonly 'github.copilot.chat.otel.outfile'?: string;
12017
+ readonly 'github.copilot.chat.otel.protocol'?: '' | 'http/json' | 'http/protobuf' | 'grpc';
12018
+ readonly 'github.copilot.chat.otel.resourceAttributes'?: Record<string, unknown>;
12019
+ readonly 'github.copilot.chat.otel.serviceName'?: string;
12020
+ readonly 'github.copilot.chat.planAgent.additionalTools'?: (string)[];
12021
+ readonly 'github.copilot.chat.projectLabels.chat'?: boolean;
12022
+ readonly 'github.copilot.chat.projectLabels.expanded'?: boolean;
12023
+ readonly 'github.copilot.chat.projectLabels.inline'?: boolean;
12024
+ readonly 'github.copilot.chat.promptFileContextProvider.enabled'?: boolean;
12025
+ readonly 'github.copilot.chat.pullRequestDescriptionGeneration.instructions'?: (unknown)[];
12026
+ readonly 'github.copilot.chat.rateLimitAutoSwitchToAuto'?: boolean;
12027
+ readonly 'github.copilot.chat.reasoningEffortOverride'?: string | null;
12028
+ readonly 'github.copilot.chat.responsesApi.persistentCoT.enabled'?: boolean;
12029
+ readonly 'github.copilot.chat.responsesApi.promptCacheKey.enabled'?: boolean;
12030
+ readonly 'github.copilot.chat.responsesApiContextManagement.enabled'?: boolean;
12031
+ readonly 'github.copilot.chat.responsesApiReasoningSummary'?: 'off' | 'detailed';
12032
+ readonly 'github.copilot.chat.review.intent'?: boolean;
12033
+ readonly 'github.copilot.chat.reviewAgent.enabled'?: boolean;
12034
+ readonly 'github.copilot.chat.reviewSelection.enabled'?: boolean;
12035
+ readonly 'github.copilot.chat.reviewSelection.instructions'?: (unknown)[];
12036
+ readonly 'github.copilot.chat.scopeSelection'?: boolean;
12037
+ readonly 'github.copilot.chat.searchSubagent.enabled'?: boolean;
12038
+ readonly 'github.copilot.chat.searchSubagent.model'?: string;
12039
+ readonly 'github.copilot.chat.searchSubagent.thoroughnessEnabled'?: boolean;
12040
+ readonly 'github.copilot.chat.searchSubagent.toolCallLimit'?: number;
12041
+ readonly 'github.copilot.chat.searchSubagent.useAgenticProxy'?: boolean;
12042
+ readonly 'github.copilot.chat.setupTests.enabled'?: boolean;
12043
+ readonly 'github.copilot.chat.skillTool.enabled'?: boolean;
12044
+ readonly 'github.copilot.chat.summarizeAgentConversationHistory.enabled'?: boolean;
12045
+ readonly 'github.copilot.chat.summarizeAgentConversationHistoryThreshold'?: number | null;
12046
+ readonly 'github.copilot.chat.switchAgent.enabled'?: boolean;
12047
+ readonly 'github.copilot.chat.terminalChatLocation'?: 'chatView' | 'quickChat' | 'terminal';
12048
+ readonly 'github.copilot.chat.testGeneration.instructions'?: (unknown)[];
12049
+ readonly 'github.copilot.chat.tools.defaultToolsGrouped'?: boolean;
12050
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
12051
+ readonly 'github.copilot.chat.tools.viewImage.enabled'?: boolean;
12052
+ readonly 'github.copilot.chat.updated53CodexPrompt.enabled'?: boolean;
12053
+ readonly 'github.copilot.chat.useProjectTemplates'?: boolean;
12054
+ readonly 'github.copilot.chat.useResponsesApiTruncation'?: boolean;
12055
+ readonly 'github.copilot.chat.virtualTools.threshold'?: number;
12056
+ readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
12057
+ readonly 'github.copilot.chat.workspace.enableCodeSearch'?: boolean;
12058
+ readonly 'github.copilot.chat.workspace.maxLocalIndexSize'?: number;
12059
+ readonly 'github.copilot.chat.workspace.preferredEmbeddingsModel'?: string;
12060
+ readonly 'github.copilot.chat.workspace.prototypeAdoCodeSearchEndpointOverride'?: string;
12061
+ readonly 'github.copilot.completions.chat.enabled'?: boolean;
12062
+ readonly 'github.copilot.editor.enableCodeActions'?: boolean;
12063
+ readonly 'github.copilot.enable'?: Record<string, unknown>;
12064
+ readonly 'github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges'?: boolean;
12065
+ readonly 'github.copilot.nextEditSuggestions.eagerness'?: 'auto' | 'low' | 'medium' | 'high';
12066
+ readonly 'github.copilot.nextEditSuggestions.enabled'?: boolean;
12067
+ readonly 'github.copilot.nextEditSuggestions.extendedRange'?: boolean;
12068
+ readonly 'github.copilot.nextEditSuggestions.fixes'?: boolean;
12069
+ readonly 'github.copilot.nextEditSuggestions.preferredModel'?: string;
12070
+ readonly 'github.copilot.renameSuggestions.triggerAutomatically'?: boolean;
12071
+ readonly 'github.copilot.selectedCompletionModel'?: string;
12072
+ readonly 'notebook.defaultFormatter'?: string | null;
12073
+ readonly 'onboarding.developerMode'?: Record<string, unknown>;
12074
+ readonly 'onboarding.enabled'?: boolean;
12075
+ readonly 'remote.tunnels.access.enableMicrosoftAuth'?: boolean;
12076
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
12077
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
12078
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
12079
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
12080
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
12081
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
12082
+ readonly 'terminal.integrated.commandsToSkipShell'?: (string)[];
12083
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
12084
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
12085
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
12086
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
12087
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'voice-mode-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
12088
+ readonly 'update.showPostInstallInfo'?: boolean;
12089
+ readonly 'workbench.browser.agentHostChatToolsEnabled'?: boolean;
12090
+ readonly 'workbench.browser.enableChatTools'?: boolean;
12091
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
12092
+ readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
12093
+ }, 'chat.agent.maxRequests' | 'chat.agentHost.clientTools' | 'chat.customizations.harnessSelector.enabled'>;
12094
+
12095
+ // ── 1.128.0-insider+2026070121: +4, ~4, -1 ──
12096
+ export type VscodeSettings_1_128_0_insider_2026070121 = Patch<VscodeSettings_1_128_0_insider_2026063019, {
12097
+ readonly 'chat.agentHost.byokModels.enabled'?: boolean;
12098
+ readonly 'chat.cacheBreakHint.enabled'?: boolean;
12099
+ readonly 'chat.useCopilotModelsForUtilityModels'?: boolean;
12100
+ readonly 'chat.utilityModel'?: '';
12101
+ readonly 'chat.utilitySmallModel'?: '';
12102
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12103
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
12104
+ readonly 'workbench.browser.newTabPlacement'?: 'activeGroup' | 'sideGroup' | 'window';
12105
+ }, 'github.copilot.chat.responsesApi.persistentCoT.enabled'>;
12106
+
12107
+ // ── 1.128.0-insider+2026070217: +1, ~6, -2 ──
12108
+ export type VscodeSettings_1_128_0_insider_2026070217 = Patch<VscodeSettings_1_128_0_insider_2026070121, {
12109
+ readonly 'chat.implicitContext.includeActiveEditor'?: boolean;
12110
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12111
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12112
+ readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
12113
+ readonly 'imageCarousel.chat.enabled'?: boolean;
12114
+ readonly 'onboarding.enabled'?: boolean;
12115
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
12116
+ }, 'chat.cacheBreakHint.enabled' | 'workbench.browser.agentHostChatToolsEnabled'>;
12117
+
12118
+ // ── 1.128.0-insider+2026070317: +2, ~6 ──
12119
+ export type VscodeSettings_1_128_0_insider_2026070317 = Patch<VscodeSettings_1_128_0_insider_2026070217, {
12120
+ readonly 'accessibility.verbosity.automations'?: boolean;
12121
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12122
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12123
+ readonly 'github.copilot.chat.responsesApi.promptCacheBreakpoint.enabled'?: boolean;
12124
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
12125
+ readonly 'update.channel'?: string;
12126
+ readonly 'update.mode'?: 'none' | 'manual' | 'start' | 'default';
12127
+ readonly 'workbench.browser.enableRemoteProxy'?: boolean;
12128
+ }, never>;
12129
+
12130
+ // ── 1.128.0-insider+2026070704: +2, ~6, -2 ──
12131
+ export type VscodeSettings_1_128_0_insider_2026070704 = Patch<VscodeSettings_1_128_0_insider_2026070317, {
12132
+ readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
12133
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12134
+ readonly 'chat.turnStatusPills'?: Record<string, unknown>;
12135
+ readonly 'chat.utilityModel'?: '';
12136
+ readonly 'chat.utilitySmallModel'?: '';
12137
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12138
+ readonly 'editor.defaultFormatter'?: string | null;
12139
+ readonly 'notebook.defaultFormatter'?: string | null;
12140
+ }, 'chat.agent.maxRequests' | 'chat.useCopilotModelsForUtilityModels'>;
12141
+
12142
+ // ── 1.128.0-insider+2026070711: +1, ~4 ──
12143
+ export type VscodeSettings_1_128_0_insider_2026070711 = Patch<VscodeSettings_1_128_0_insider_2026070704, {
12144
+ readonly 'chat.agent.maxRequests'?: number;
12145
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12146
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12147
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12148
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
12149
+ }, never>;
12150
+
12151
+ // ── 1.128.0: +12, ~14, -4 ──
12152
+ export type VscodeSettings_1_128_0 = Patch<VscodeSettings_1_127_0, {
12153
+ readonly 'accessibility.verbosity.automations'?: boolean;
12154
+ readonly 'accessibility.verbosity.sessionsChanges'?: boolean;
12155
+ readonly 'chat.agent.maxRequests'?: number;
12156
+ readonly 'chat.agentHost.byokModels.enabled'?: boolean;
12157
+ readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
12158
+ readonly 'chat.implicitContext.includeActiveEditor'?: boolean;
12159
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12160
+ readonly 'chat.turnStatusPills'?: Record<string, unknown>;
12161
+ readonly 'chat.utilityModel'?: '';
12162
+ readonly 'chat.utilitySmallModel'?: '';
12163
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12164
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12165
+ readonly 'github.copilot.chat.imageUpload.enabled'?: boolean;
12166
+ readonly 'github.copilot.chat.responsesApi.promptCacheBreakpoint.enabled'?: boolean;
12167
+ readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
12168
+ readonly 'github.copilot.chat.tools.grepSearch.maxResultsCap'?: number;
12169
+ readonly 'github.copilot.chat.tools.grepSearch.outputFormat'?: 'grep' | 'tag';
12170
+ readonly 'imageCarousel.chat.enabled'?: boolean;
12171
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12172
+ readonly 'onboarding.developerMode'?: Record<string, unknown>;
12173
+ readonly 'onboarding.enabled'?: boolean;
12174
+ readonly 'update.channel'?: string;
12175
+ readonly 'update.mode'?: 'none' | 'manual' | 'start' | 'default';
12176
+ readonly 'workbench.browser.newTabPlacement'?: 'activeGroup' | 'sideGroup' | 'window';
12177
+ readonly 'workbench.browser.searchEngine'?: 'none' | 'bing' | 'google' | 'yahoo' | 'duckduckgo';
12178
+ readonly 'workbench.browser.sendElementsToChat.attachImages'?: boolean;
12179
+ }, 'chat.sendElementsToChat.attachImages' | 'github.copilot.chat.responsesApi.persistentCoT.enabled' | 'github.copilot.chat.responsesApiReasoningSummary' | 'workbench.browser.agentHostChatToolsEnabled'>;
12180
+
12181
+ // ── 1.129.0-insider+2026070910: +14, ~14, -1 ──
12182
+ export type VscodeSettings_1_129_0_insider_2026070910 = Patch<VscodeSettings_1_128_0_insider_2026070711, {
12183
+ readonly 'agents.voice.handsFree'?: boolean;
12184
+ readonly 'agents.voice.showTranscript'?: boolean;
12185
+ readonly 'agents.voice.textToSpeech'?: boolean;
12186
+ readonly 'agents.voice.turn.autoEndMode'?: 'off' | 'vad' | 'phrase' | 'both';
12187
+ readonly 'agents.voice.turn.silenceMs'?: number;
12188
+ readonly 'agents.voice.turn.stopPhrases'?: (string)[];
12189
+ readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
12190
+ readonly 'breadcrumbs.showEditorType'?: boolean;
12191
+ readonly 'chat.agentHost.byokModels.enabled'?: boolean;
12192
+ readonly 'chat.agentHost.modelCapabilityOverrides'?: Record<string, unknown>;
12193
+ readonly 'chat.agentHost.reasoningEffortOverride'?: string;
12194
+ readonly 'chat.defaultModel'?: string;
12195
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
12196
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12197
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12198
+ readonly 'editor.inlineSuggest.edits.longDistanceHintContextLineCount'?: number;
12199
+ readonly 'github.copilot.chat.claude48OpusPrompt.enabled'?: boolean;
12200
+ readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
12201
+ readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
12202
+ readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
12203
+ readonly 'microsoft-sovereign-cloud.customEnvironment'?: Record<string, unknown>;
12204
+ readonly 'microsoft-sovereign-cloud.environment'?: 'ChinaCloud' | 'USGovernment' | 'custom';
12205
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
12206
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
12207
+ readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
12208
+ readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
12209
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
12210
+ readonly 'workbench.experimental.modernUI'?: boolean;
12211
+ }, 'github.copilot.chat.claude47OpusPrompt.enabled'>;
12212
+
12213
+ // ── 1.129.0-insider+2026071020: ~4, -1 ──
12214
+ export type VscodeSettings_1_129_0_insider_2026071020 = Patch<VscodeSettings_1_129_0_insider_2026070910, {
12215
+ readonly 'agents.voice.handsFree'?: boolean;
12216
+ readonly 'agents.voice.turn.silenceMs'?: number;
12217
+ readonly 'agents.voice.turn.stopPhrases'?: (string)[];
12218
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
12219
+ }, 'agents.voice.turn.autoEndMode'>;
12220
+
12221
+ // ── 1.129.0-insider+2026071317: +4, ~8, -3 ──
12222
+ export type VscodeSettings_1_129_0_insider_2026071317 = Patch<VscodeSettings_1_129_0_insider_2026071020, {
12223
+ readonly 'agents.voice.showTranscript'?: boolean;
12224
+ readonly 'agents.voice.speakResponses'?: boolean;
12225
+ readonly 'breadcrumbs.showEditorType'?: boolean;
12226
+ readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
12227
+ readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
12228
+ readonly 'chat.customizations.promptMigration.enabled'?: boolean;
12229
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12230
+ readonly 'chat.turnStatusPills'?: Record<string, unknown>;
12231
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12232
+ readonly 'editor.defaultFormatter'?: string | null;
12233
+ readonly 'notebook.defaultFormatter'?: string | null;
12234
+ readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
12235
+ }, 'agents.voice.textToSpeech' | 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled'>;
12236
+
12237
+ // ── 1.128.1: ~2 ──
12238
+ export type VscodeSettings_1_128_1 = Patch<VscodeSettings_1_128_0, {
12239
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12240
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
12241
+ }, never>;
12242
+
12243
+ // ── 1.129.0: +16, ~14, -3 ──
12244
+ export type VscodeSettings_1_129_0 = Patch<VscodeSettings_1_128_0, {
12245
+ readonly 'agents.voice.handsFree'?: boolean;
12246
+ readonly 'agents.voice.showTranscript'?: boolean;
12247
+ readonly 'agents.voice.speakResponses'?: boolean;
12248
+ readonly 'agents.voice.turn.silenceMs'?: number;
12249
+ readonly 'agents.voice.turn.stopPhrases'?: (string)[];
12250
+ readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
12251
+ readonly 'breadcrumbs.showEditorType'?: boolean;
12252
+ readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
12253
+ readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
12254
+ readonly 'chat.agentHost.byokModels.enabled'?: boolean;
12255
+ readonly 'chat.agentHost.modelCapabilityOverrides'?: Record<string, unknown>;
12256
+ readonly 'chat.agentHost.reasoningEffortOverride'?: string;
12257
+ readonly 'chat.customizations.promptMigration.enabled'?: boolean;
12258
+ readonly 'chat.defaultModel'?: string;
12259
+ readonly 'chat.plugins.enabledPlugins'?: Record<string, unknown>;
12260
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12261
+ readonly 'chat.turnStatusPills'?: Record<string, unknown>;
12262
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12263
+ readonly 'editor.defaultFormatter'?: string | null;
12264
+ readonly 'editor.inlineSuggest.edits.longDistanceHintContextLineCount'?: number;
12265
+ readonly 'github.copilot.chat.claude48OpusPrompt.enabled'?: boolean;
12266
+ readonly 'github.copilot.chat.claudeSonnet5Prompt.enabled'?: boolean;
12267
+ readonly 'github.copilot.chat.localIndex.enabled'?: boolean;
12268
+ readonly 'github.copilot.chat.preferLongContext.enabled'?: boolean;
12269
+ readonly 'microsoft-sovereign-cloud.customEnvironment'?: Record<string, unknown>;
12270
+ readonly 'microsoft-sovereign-cloud.environment'?: 'ChinaCloud' | 'USGovernment' | 'custom';
12271
+ readonly 'notebook.defaultFormatter'?: string | null;
12272
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
12273
+ readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
12274
+ readonly 'workbench.experimental.modernUI'?: boolean;
12275
+ }, 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled' | 'github.copilot.chat.claude47OpusPrompt.enabled'>;
12276
+
12277
+ // ── 1.130.0-insider+2026071611: +6, ~21, -1 ──
12278
+ export type VscodeSettings_1_130_0_insider_2026071611 = Patch<VscodeSettings_1_129_0_insider_2026071317, {
12279
+ readonly 'agents.voice.enabled'?: boolean;
12280
+ readonly 'agents.voice.handsFree'?: boolean;
12281
+ readonly 'chat.agent.maxRequests'?: number;
12282
+ readonly 'chat.agentHost.copilotSdk.logLevel'?: 'info' | 'trace';
12283
+ readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
12284
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
12285
+ readonly 'chat.editor.codex.preferAgentHost'?: boolean;
12286
+ readonly 'chat.editor.localAgent.enabled'?: boolean;
12287
+ readonly 'chat.experimental.autoApprovals.enabled'?: boolean;
12288
+ readonly 'chat.tools.terminal.outputCompaction'?: boolean;
12289
+ readonly 'chat.turnStatusPills'?: unknown;
12290
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12291
+ readonly 'javascript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12292
+ readonly 'js/ts.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12293
+ readonly 'js/ts.tsdk.path'?: string;
12294
+ readonly 'js/ts.tsserver.diagnosticDir'?: string;
12295
+ readonly 'js/ts.tsserver.heapProfile'?: Record<string, unknown>;
12296
+ readonly 'js/ts.tsserver.node.path'?: string;
12297
+ readonly 'js/ts.tsserver.npm.path'?: string;
12298
+ readonly 'js/ts.tsserver.pluginPaths'?: (string)[];
12299
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12300
+ readonly 'terminal.integrated.tabs.allowAgentCliTitle'?: boolean;
12301
+ readonly 'typescript.npm'?: string;
12302
+ readonly 'typescript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12303
+ readonly 'typescript.tsdk'?: string;
12304
+ readonly 'typescript.tsserver.nodePath'?: string;
12305
+ readonly 'typescript.tsserver.pluginPaths'?: (string)[];
12306
+ }, 'terminal.integrated.initialHintCopilotCli'>;
12307
+
12308
+ // ── 1.129.1: +1, ~3 ──
12309
+ export type VscodeSettings_1_129_1 = Patch<VscodeSettings_1_129_0, {
12310
+ readonly 'chat.agent.maxRequests'?: number;
12311
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12312
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12313
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12314
+ }, never>;
12315
+
12316
+ // ── 1.130.0-insider+2026071716: +9, ~3, -2 ──
12317
+ export type VscodeSettings_1_130_0_insider_2026071716 = Patch<VscodeSettings_1_130_0_insider_2026071611, {
12318
+ readonly 'accessibility.signals.voiceRecordingStopped'?: Record<string, unknown>;
12319
+ readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
12320
+ readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
12321
+ readonly 'chat.assistedPermissions.enabled'?: boolean;
12322
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
12323
+ readonly 'chat.defaultToCopilotHarness'?: boolean;
12324
+ readonly 'chat.editor.preferCopilotHarness'?: boolean;
12325
+ readonly 'chat.speechToText.enabled'?: boolean;
12326
+ readonly 'chat.speechToText.mode'?: 'auto' | 'toggle' | 'pushToTalk';
12327
+ readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small';
12328
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12329
+ readonly 'chat.verbose'?: boolean;
12330
+ }, 'chat.editor.defaultProvider' | 'chat.experimental.autoApprovals.enabled'>;
12331
+
12332
+ // ── 1.130.0-insider+2026072017: +3, ~3, -5 ──
12333
+ export type VscodeSettings_1_130_0_insider_2026072017 = Patch<VscodeSettings_1_130_0_insider_2026071716, {
12334
+ readonly 'accessibility.signals.voiceModeStarted'?: Record<string, unknown>;
12335
+ readonly 'accessibility.signals.voiceModeStopped'?: Record<string, unknown>;
12336
+ readonly 'agents.voice.liveTranscript'?: boolean;
12337
+ readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small' | 'onnx-community/nemotron-3.5-asr-streaming-0.6b-onnx-int4';
12338
+ readonly 'chat.tools.terminal.outputCompaction'?: boolean;
12339
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
12340
+ }, 'editor.suggest.maxVisibleSuggestions' | 'search.location' | 'search.maintainFileSearchCache' | 'search.usePCRE2' | 'search.useRipgrep'>;
12341
+
12342
+ // ── 1.131.0-insider+2026072117: +2, ~2 ──
12343
+ export type VscodeSettings_1_131_0_insider_2026072117 = Patch<VscodeSettings_1_130_0_insider_2026072017, {
12344
+ readonly 'chat.speechToText.enabled'?: boolean;
12345
+ readonly 'github.copilot.chat.gpt56Verbosity.enabled'?: boolean;
12346
+ readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
12347
+ readonly 'terminal.integrated.resizeDimensionsOverlay.enabled'?: boolean;
12348
+ }, never>;
12349
+
12350
+ // ── 1.130.0: +17, ~26, -7 ──
12351
+ export type VscodeSettings_1_130_0 = Patch<VscodeSettings_1_129_0, {
12352
+ readonly 'accessibility.signals.voiceModeStarted'?: Record<string, unknown>;
12353
+ readonly 'accessibility.signals.voiceModeStopped'?: Record<string, unknown>;
12354
+ readonly 'accessibility.signals.voiceRecordingStopped'?: Record<string, unknown>;
12355
+ readonly 'agents.voice.enabled'?: boolean;
12356
+ readonly 'agents.voice.handsFree'?: boolean;
12357
+ readonly 'agents.voice.language'?: 'auto' | 'en' | 'de' | 'es' | 'fr' | 'it' | 'pt' | 'ja' | 'ko' | 'zh';
12358
+ readonly 'agents.voice.liveTranscript'?: boolean;
12359
+ readonly 'chat.agent.maxRequests'?: number;
12360
+ readonly 'chat.agentHost.copilotSdk.logLevel'?: 'info' | 'trace';
12361
+ readonly 'chat.agentHost.systemProxy.enabled'?: boolean;
12362
+ readonly 'chat.assistedPermissions.enabled'?: boolean;
12363
+ readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
12364
+ readonly 'chat.defaultConfiguration'?: Record<string, unknown>;
12365
+ readonly 'chat.defaultToCopilotHarness'?: boolean;
12366
+ readonly 'chat.editor.codex.preferAgentHost'?: boolean;
12367
+ readonly 'chat.editor.localAgent.enabled'?: boolean;
12368
+ readonly 'chat.editor.preferCopilotHarness'?: boolean;
12369
+ readonly 'chat.speechToText.enabled'?: boolean;
12370
+ readonly 'chat.speechToText.mode'?: 'auto' | 'toggle' | 'pushToTalk';
12371
+ readonly 'chat.speechToText.model'?: 'onnx-community/whisper-tiny' | 'onnx-community/whisper-base' | 'onnx-community/whisper-small' | 'onnx-community/nemotron-3.5-asr-streaming-0.6b-onnx-int4';
12372
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
12373
+ readonly 'chat.tools.terminal.outputCompaction'?: boolean;
12374
+ readonly 'chat.turnStatusPills'?: unknown;
12375
+ readonly 'chat.verbose'?: boolean;
12376
+ readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12377
+ readonly 'javascript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12378
+ readonly 'js/ts.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12379
+ readonly 'js/ts.tsdk.path'?: string;
12380
+ readonly 'js/ts.tsserver.diagnosticDir'?: string;
12381
+ readonly 'js/ts.tsserver.heapProfile'?: Record<string, unknown>;
12382
+ readonly 'js/ts.tsserver.node.path'?: string;
12383
+ readonly 'js/ts.tsserver.npm.path'?: string;
12384
+ readonly 'js/ts.tsserver.pluginPaths'?: (string)[];
12385
+ readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12386
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
12387
+ readonly 'terminal.integrated.tabs.allowAgentCliTitle'?: boolean;
12388
+ readonly 'typescript.npm'?: string;
12389
+ readonly 'typescript.preferences.autoImportSpecifierExcludeRegexes'?: (string)[];
12390
+ readonly 'typescript.tsdk'?: string;
12391
+ readonly 'typescript.tsserver.nodePath'?: string;
12392
+ readonly 'typescript.tsserver.pluginPaths'?: (string)[];
12393
+ readonly 'workbench.editor.markdownDefaultEditorInAgentsWindow'?: boolean;
12394
+ readonly 'workbench.editorAssociations'?: Record<string, unknown>;
12395
+ }, 'chat.editor.defaultProvider' | 'editor.suggest.maxVisibleSuggestions' | 'search.location' | 'search.maintainFileSearchCache' | 'search.usePCRE2' | 'search.useRipgrep' | 'terminal.integrated.initialHintCopilotCli'>;
12396
+
12397
+ // ── 1.131.0-insider+2026072217: ~17, -1 ──
12398
+ export type VscodeSettings_1_131_0_insider_2026072217 = Patch<VscodeSettings_1_131_0_insider_2026072117, {
12399
+ readonly 'chat.defaultModel'?: string;
12400
+ readonly 'chat.progressBorder.enabled'?: boolean;
12401
+ readonly 'chat.speechToText.model'?: 'nemotron-speech-streaming-en-0.6b';
12402
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
12403
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
12404
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
12405
+ readonly 'editor.defaultFoldingRangeProvider'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
12406
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
12407
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
12408
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
12409
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
12410
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
12411
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
12412
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
12413
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
12414
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
12415
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'voice-mode-compact' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
12416
+ }, 'chat.persistentProgress.enabled'>;
12417
+
12418
+ // ── 1.131.0-insider+2026072305: ~2 ──
12419
+ export type VscodeSettings_1_131_0_insider_2026072305 = Patch<VscodeSettings_1_131_0_insider_2026072217, {
12420
+ readonly 'agents.voice.handsFree'?: boolean;
12421
+ readonly 'editor.defaultFoldingRangeProvider'?: string | null;
12422
+ }, never>;
12423
+
12424
+ // ── 1.131.0-insider+2026072417: +4, ~18, -3 ──
12425
+ export type VscodeSettings_1_131_0_insider_2026072417 = Patch<VscodeSettings_1_131_0_insider_2026072305, {
12426
+ readonly 'agents.voice.enabled'?: boolean;
12427
+ readonly 'agents.voice.handsFree'?: boolean;
12428
+ readonly 'agents.voice.turn.silenceMs'?: number;
12429
+ readonly 'agents.voice.turn.stopPhrases'?: (string)[];
12430
+ readonly 'chat.agentHost.codexAgent.enabled'?: boolean;
12431
+ readonly 'chat.agentHost.copilot.toolSearch.enabled'?: boolean;
12432
+ readonly 'chat.tools.terminal.terminalProfile.linux'?: Record<string, unknown> | null;
12433
+ readonly 'chat.tools.terminal.terminalProfile.osx'?: Record<string, unknown> | null;
12434
+ readonly 'chat.tools.terminal.terminalProfile.windows'?: Record<string, unknown> | null;
12435
+ readonly 'dictation.enabled'?: boolean;
12436
+ readonly 'dictation.experimental.llmCleanup'?: boolean;
12437
+ readonly 'dictation.model'?: 'nemotron-speech-streaming-en-0.6b' | 'mai';
12438
+ readonly 'terminal.integrated.agentHostProfile.linux'?: string | Record<string, unknown> | null;
12439
+ readonly 'terminal.integrated.agentHostProfile.osx'?: string | Record<string, unknown> | null;
12440
+ readonly 'terminal.integrated.agentHostProfile.windows'?: string | Record<string, unknown> | null;
12441
+ readonly 'terminal.integrated.automationProfile.linux'?: Record<string, unknown> | null;
12442
+ readonly 'terminal.integrated.automationProfile.osx'?: Record<string, unknown> | null;
12443
+ readonly 'terminal.integrated.automationProfile.windows'?: Record<string, unknown> | null;
12444
+ readonly 'terminal.integrated.profiles.linux'?: Record<string, unknown>;
12445
+ readonly 'terminal.integrated.profiles.osx'?: Record<string, unknown>;
12446
+ readonly 'terminal.integrated.profiles.windows'?: Record<string, unknown>;
12447
+ readonly 'terminal.integrated.tabs.defaultIcon'?: 'add' | 'plus' | 'gist-new' | 'repo-create' | 'lightbulb' | 'light-bulb' | 'repo' | 'repo-delete' | 'gist-fork' | 'repo-forked' | 'git-pull-request' | 'git-pull-request-abandoned' | 'record-keys' | 'keyboard' | 'tag' | 'git-pull-request-label' | 'tag-add' | 'tag-remove' | 'person' | 'person-follow' | 'person-outline' | 'person-filled' | 'source-control' | 'mirror' | 'mirror-public' | 'star' | 'star-add' | 'star-delete' | 'star-empty' | 'comment' | 'comment-add' | 'alert' | 'warning' | 'search' | 'search-save' | 'log-out' | 'sign-out' | 'log-in' | 'sign-in' | 'eye' | 'eye-unwatch' | 'eye-watch' | 'circle-filled' | 'primitive-dot' | 'close-dirty' | 'debug-breakpoint' | 'debug-breakpoint-disabled' | 'debug-hint' | 'terminal-decoration-success' | 'primitive-square' | 'edit' | 'pencil' | 'info' | 'issue-opened' | 'gist-private' | 'git-fork-private' | 'lock' | 'mirror-private' | 'close' | 'remove-close' | 'x' | 'repo-sync' | 'sync' | 'clone' | 'desktop-download' | 'beaker' | 'microscope' | 'vm' | 'device-desktop' | 'file' | 'more' | 'ellipsis' | 'kebab-horizontal' | 'mail-reply' | 'reply' | 'organization' | 'organization-filled' | 'organization-outline' | 'new-file' | 'file-add' | 'new-folder' | 'file-directory-create' | 'trash' | 'trashcan' | 'history' | 'clock' | 'folder' | 'file-directory' | 'symbol-folder' | 'logo-github' | 'mark-github' | 'github' | 'terminal' | 'console' | 'repl' | 'zap' | 'symbol-event' | 'error' | 'stop' | 'variable' | 'symbol-variable' | 'array' | 'symbol-array' | 'symbol-module' | 'symbol-package' | 'symbol-namespace' | 'symbol-object' | 'symbol-method' | 'symbol-function' | 'symbol-constructor' | 'symbol-boolean' | 'symbol-null' | 'symbol-numeric' | 'symbol-number' | 'symbol-structure' | 'symbol-struct' | 'symbol-parameter' | 'symbol-type-parameter' | 'symbol-key' | 'symbol-text' | 'symbol-reference' | 'go-to-file' | 'symbol-enum' | 'symbol-value' | 'symbol-ruler' | 'symbol-unit' | 'activate-breakpoints' | 'archive' | 'arrow-both' | 'arrow-down' | 'arrow-left' | 'arrow-right' | 'arrow-small-down' | 'arrow-small-left' | 'arrow-small-right' | 'arrow-small-up' | 'arrow-up' | 'bell' | 'bold' | 'book' | 'bookmark' | 'debug-breakpoint-conditional-unverified' | 'debug-breakpoint-conditional' | 'debug-breakpoint-conditional-disabled' | 'debug-breakpoint-data-unverified' | 'debug-breakpoint-data' | 'debug-breakpoint-data-disabled' | 'debug-breakpoint-log-unverified' | 'debug-breakpoint-log' | 'debug-breakpoint-log-disabled' | 'briefcase' | 'broadcast' | 'browser' | 'bug' | 'calendar' | 'case-sensitive' | 'check' | 'checklist' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'chrome-close' | 'chrome-maximize' | 'chrome-minimize' | 'chrome-restore' | 'circle-outline' | 'circle' | 'debug-breakpoint-unverified' | 'terminal-decoration-incomplete' | 'circle-slash' | 'circuit-board' | 'clear-all' | 'clippy' | 'close-all' | 'cloud-download' | 'cloud-upload' | 'code' | 'collapse-all' | 'color-mode' | 'comment-discussion' | 'credit-card' | 'dash' | 'dashboard' | 'database' | 'debug-continue' | 'debug-disconnect' | 'debug-pause' | 'debug-restart' | 'debug-start' | 'debug-step-into' | 'debug-step-out' | 'debug-step-over' | 'debug-stop' | 'debug' | 'device-camera-video' | 'device-camera' | 'device-mobile' | 'diff-added' | 'diff-ignored' | 'diff-modified' | 'diff-removed' | 'diff-renamed' | 'diff' | 'diff-sidebyside' | 'discard' | 'editor-layout' | 'empty-window' | 'exclude' | 'extensions' | 'eye-closed' | 'file-binary' | 'file-code' | 'file-media' | 'file-pdf' | 'file-submodule' | 'file-symlink-directory' | 'file-symlink-file' | 'file-zip' | 'files' | 'filter' | 'flame' | 'fold-down' | 'fold-up' | 'fold' | 'folder-active' | 'folder-opened' | 'gear' | 'gift' | 'gist-secret' | 'gist' | 'git-commit' | 'git-compare' | 'compare-changes' | 'git-merge' | 'github-action' | 'github-alt' | 'globe' | 'grabber' | 'graph' | 'gripper' | 'heart' | 'home' | 'horizontal-rule' | 'hubot' | 'inbox' | 'issue-reopened' | 'issues' | 'italic' | 'jersey' | 'json' | 'bracket' | 'kebab-vertical' | 'key' | 'law' | 'lightbulb-autofix' | 'link-external' | 'link' | 'list-ordered' | 'list-unordered' | 'live-share' | 'loading' | 'location' | 'mail-read' | 'mail' | 'markdown' | 'megaphone' | 'mention' | 'milestone' | 'git-pull-request-milestone' | 'mortar-board' | 'move' | 'multiple-windows' | 'mute' | 'no-newline' | 'note' | 'octoface' | 'open-preview' | 'package' | 'paintcan' | 'pin' | 'play' | 'run' | 'plug' | 'preserve-case' | 'preview' | 'project' | 'pulse' | 'question' | 'quote' | 'radio-tower' | 'reactions' | 'references' | 'refresh' | 'regex' | 'remote-explorer' | 'remote' | 'remove' | 'replace-all' | 'replace' | 'repo-clone' | 'repo-force-push' | 'repo-pull' | 'repo-push' | 'report' | 'request-changes' | 'rocket' | 'root-folder-opened' | 'root-folder' | 'rss' | 'ruby' | 'save-all' | 'save-as' | 'save' | 'screen-full' | 'screen-normal' | 'search-stop' | 'server' | 'settings-gear' | 'settings' | 'shield' | 'smiley' | 'sort-precedence' | 'split-horizontal' | 'split-vertical' | 'squirrel' | 'star-full' | 'star-half' | 'symbol-class' | 'symbol-color' | 'symbol-constant' | 'symbol-enum-member' | 'symbol-field' | 'symbol-file' | 'symbol-interface' | 'symbol-keyword' | 'symbol-misc' | 'symbol-operator' | 'symbol-property' | 'wrench' | 'wrench-subaction' | 'symbol-snippet' | 'tasklist' | 'telescope' | 'text-size' | 'three-bars' | 'thumbsdown' | 'thumbsup' | 'tools' | 'triangle-down' | 'triangle-left' | 'triangle-right' | 'triangle-up' | 'twitter' | 'unfold' | 'unlock' | 'unmute' | 'unverified' | 'verified' | 'versions' | 'vm-active' | 'vm-outline' | 'vm-running' | 'watch' | 'whitespace' | 'whole-word' | 'window' | 'word-wrap' | 'zoom-in' | 'zoom-out' | 'list-filter' | 'list-flat' | 'list-selection' | 'selection' | 'list-tree' | 'debug-breakpoint-function-unverified' | 'debug-breakpoint-function' | 'debug-breakpoint-function-disabled' | 'debug-stackframe-active' | 'circle-small-filled' | 'debug-stackframe-dot' | 'terminal-decoration-mark' | 'debug-stackframe' | 'debug-stackframe-focused' | 'debug-breakpoint-unsupported' | 'symbol-string' | 'debug-reverse-continue' | 'debug-step-back' | 'debug-restart-frame' | 'debug-alt' | 'call-incoming' | 'call-outgoing' | 'menu' | 'expand-all' | 'feedback' | 'git-pull-request-reviewer' | 'group-by-ref-type' | 'ungroup-by-ref-type' | 'account' | 'git-pull-request-assignee' | 'bell-dot' | 'debug-console' | 'library' | 'output' | 'run-all' | 'sync-ignored' | 'pinned' | 'github-inverted' | 'server-process' | 'server-environment' | 'pass' | 'issue-closed' | 'stop-circle' | 'play-circle' | 'record' | 'debug-alt-small' | 'vm-connect' | 'cloud' | 'merge' | 'export' | 'graph-left' | 'magnet' | 'notebook' | 'redo' | 'check-all' | 'pinned-dirty' | 'pass-filled' | 'circle-large-filled' | 'circle-large' | 'circle-large-outline' | 'combine' | 'gather' | 'table' | 'variable-group' | 'type-hierarchy' | 'type-hierarchy-sub' | 'type-hierarchy-super' | 'git-pull-request-create' | 'run-above' | 'run-below' | 'notebook-template' | 'debug-rerun' | 'workspace-trusted' | 'workspace-untrusted' | 'workspace-unknown' | 'terminal-cmd' | 'terminal-debian' | 'terminal-linux' | 'terminal-powershell' | 'terminal-tmux' | 'terminal-ubuntu' | 'terminal-bash' | 'arrow-swap' | 'copy' | 'person-add' | 'filter-filled' | 'wand' | 'debug-line-by-line' | 'inspect' | 'layers' | 'layers-dot' | 'layers-active' | 'compass' | 'compass-dot' | 'compass-active' | 'azure' | 'issue-draft' | 'git-pull-request-closed' | 'git-pull-request-draft' | 'debug-all' | 'debug-coverage' | 'run-errors' | 'folder-library' | 'debug-continue-small' | 'beaker-stop' | 'graph-line' | 'graph-scatter' | 'pie-chart' | 'bracket-dot' | 'bracket-error' | 'lock-small' | 'azure-devops' | 'verified-filled' | 'newline' | 'layout' | 'layout-activitybar-left' | 'layout-activitybar-right' | 'layout-panel-left' | 'layout-panel-center' | 'layout-panel-justify' | 'layout-panel-right' | 'layout-panel' | 'layout-sidebar-left' | 'layout-sidebar-right' | 'layout-statusbar' | 'layout-menubar' | 'layout-centered' | 'target' | 'indent' | 'record-small' | 'error-small' | 'terminal-decoration-error' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-right' | 'arrow-circle-up' | 'layout-sidebar-right-off' | 'layout-panel-off' | 'layout-sidebar-left-off' | 'blank' | 'heart-filled' | 'map' | 'map-horizontal' | 'fold-horizontal' | 'map-filled' | 'map-horizontal-filled' | 'fold-horizontal-filled' | 'circle-small' | 'bell-slash' | 'bell-slash-dot' | 'comment-unresolved' | 'git-pull-request-go-to-changes' | 'git-pull-request-new-changes' | 'search-fuzzy' | 'comment-draft' | 'send' | 'sparkle' | 'insert' | 'mic' | 'thumbsdown-filled' | 'thumbsup-filled' | 'coffee' | 'snake' | 'game' | 'vr' | 'chip' | 'piano' | 'music' | 'mic-filled' | 'repo-fetch' | 'copilot' | 'lightbulb-sparkle' | 'robot' | 'sparkle-filled' | 'diff-single' | 'diff-multiple' | 'surround-with' | 'share' | 'git-stash' | 'git-stash-apply' | 'git-stash-pop' | 'vscode' | 'vscode-insiders' | 'code-oss' | 'run-coverage' | 'run-all-coverage' | 'coverage' | 'github-project' | 'map-vertical' | 'fold-vertical' | 'map-vertical-filled' | 'fold-vertical-filled' | 'go-to-search' | 'percentage' | 'sort-percentage' | 'attach' | 'go-to-editing-session' | 'edit-session' | 'code-review' | 'copilot-warning' | 'python' | 'copilot-large' | 'copilot-warning-large' | 'keyboard-tab' | 'copilot-blocked' | 'copilot-not-connected' | 'flag' | 'lightbulb-empty' | 'symbol-method-arrow' | 'copilot-unavailable' | 'repo-pinned' | 'keyboard-tab-above' | 'keyboard-tab-below' | 'git-pull-request-done' | 'mcp' | 'extensions-large' | 'layout-panel-dock' | 'layout-sidebar-left-dock' | 'layout-sidebar-right-dock' | 'copilot-in-progress' | 'copilot-error' | 'copilot-success' | 'chat-sparkle' | 'search-sparkle' | 'edit-sparkle' | 'copilot-snooze' | 'send-to-remote-agent' | 'comment-discussion-sparkle' | 'chat-sparkle-warning' | 'chat-sparkle-error' | 'collection' | 'new-collection' | 'thinking' | 'build' | 'comment-discussion-quote' | 'cursor' | 'eraser' | 'file-text' | 'quotes' | 'rename' | 'run-with-deps' | 'debug-connected' | 'strikethrough' | 'open-in-product' | 'index-zero' | 'agent' | 'edit-code' | 'repo-selected' | 'skip' | 'merge-into' | 'git-branch-changes' | 'git-branch-staged-changes' | 'git-branch-conflicts' | 'git-branch' | 'git-branch-create' | 'git-branch-delete' | 'search-large' | 'terminal-git-bash' | 'window-active' | 'forward' | 'download' | 'clockface' | 'unarchive' | 'session-in-progress' | 'collection-small' | 'vm-small' | 'cloud-small' | 'add-small' | 'remove-small' | 'worktree-small' | 'worktree' | 'screen-cut' | 'ask' | 'openai' | 'claude' | 'open-in-window' | 'new-session' | 'terminal-secure' | 'chat-import' | 'chat-export' | 'share-window' | 'circle-slash-compact' | 'copilot-compact' | 'folder-opened-compact' | 'folder-compact' | 'gear-compact' | 'git-branch-compact' | 'library-compact' | 'record-keys-compact' | 'remote-compact' | 'repo-forked-compact' | 'repo-compact' | 'shield-compact' | 'sparkle-compact' | 'symbol-color-compact' | 'window-compact' | 'error-compact' | 'warning-compact' | 'pass-compact' | 'important' | 'important-compact' | 'rocket-compact' | 'unpin' | 'add-compact' | 'attach-compact' | 'beaker-compact' | 'check-compact' | 'checklist-compact' | 'chevron-down-compact' | 'chevron-left-compact' | 'chevron-right-compact' | 'chevron-up-compact' | 'circle-filled-compact' | 'circle-small-filled-compact' | 'close-compact' | 'collapse-all-compact' | 'comment-compact' | 'comment-unresolved-compact' | 'debug-connected-compact' | 'debug-disconnect-compact' | 'edit-compact' | 'file-media-compact' | 'git-fetch' | 'lightbulb-compact' | 'loading-compact' | 'pass-filled-compact' | 'project-compact' | 'refresh-compact' | 'search-compact' | 'session-in-progress-compact' | 'sync-compact' | 'terminal-compact' | 'vm-pending' | 'worktree-compact' | 'developer-tools' | 'cloud-compact' | 'agent-compact' | 'ask-compact' | 'settings-compact' | 'vm-compact' | 'run-compact' | 'git-pull-request-comment' | 'git-pull-request-error' | 'right-panel-hide' | 'right-panel-show' | 'vscode-insiders-outline' | 'vscode-outline' | 'voice-mode' | 'voice-mode-compact' | 'mic-download' | 'mic-download-compact' | 'voice-mode-download' | 'voice-mode-download-compact' | 'google-gemini' | 'kimi' | 'microsoft' | 'fish1-happy' | 'fish1-neutral' | 'fish1-sad' | 'fish1-very-sad' | 'fish2-happy' | 'fish2-neutral' | 'fish2-sad' | 'fish2-very-sad' | 'fish3-happy' | 'fish3-neutral' | 'fish3-sad' | 'fish3-very-sad' | 'fish4-happy' | 'fish4-neutral' | 'fish4-sad' | 'fish4-very-sad' | 'person-voice' | 'person-voice-compact' | 'person-voice-filled' | 'person-voice-filled-compact' | 'dialog-error' | 'dialog-warning' | 'dialog-info' | 'dialog-close' | 'tree-item-expanded' | 'tree-filter-on-type-on' | 'tree-filter-on-type-off' | 'tree-filter-clear' | 'tree-item-loading' | 'menu-selection' | 'menu-submenu' | 'menubar-more' | 'scrollbar-button-left' | 'scrollbar-button-right' | 'scrollbar-button-up' | 'scrollbar-button-down' | 'toolbar-more' | 'quick-input-back' | 'drop-down-button' | 'symbol-customcolor' | 'export' | 'workspace-unspecified' | 'newline' | 'thumbsdown-filled' | 'thumbsup-filled' | 'lightbulb-sparkle-autofix' | 'debug-breakpoint-pending';
12448
+ }, 'chat.speechToText.enabled' | 'chat.speechToText.mode' | 'chat.speechToText.model'>;
12449
+
12450
+ // ── 1.131.0-insider+2026072801: +3, ~21, -5 ──
12451
+ export type VscodeSettings_1_131_0_insider_2026072801 = Patch<VscodeSettings_1_131_0_insider_2026072417, {
12452
+ readonly 'agents.voice.handsFree'?: boolean;
12453
+ readonly 'chat.agentFilesLocations'?: Record<string, unknown>;
12454
+ readonly 'chat.agentHost.byokModels.enabled'?: boolean;
12455
+ readonly 'chat.agentSkillsLocations'?: Record<string, unknown>;
12456
+ readonly 'chat.experimental.sessionArchiveActionWording'?: 'archive' | 'done';
12457
+ readonly 'chat.experimental.useSkillAdherencePrompt'?: boolean;
12458
+ readonly 'chat.hookFilesLocations'?: Record<string, unknown>;
12459
+ readonly 'chat.includeApplyingInstructions'?: boolean;
12460
+ readonly 'chat.includeReferencedInstructions'?: boolean;
12461
+ readonly 'chat.instructionsFilesLocations'?: Record<string, unknown>;
12462
+ readonly 'chat.modeFilesLocations'?: Record<string, unknown>;
12463
+ readonly 'chat.promptFilesLocations'?: Record<string, unknown>;
12464
+ readonly 'chat.useAgentSkills'?: boolean;
12465
+ readonly 'chat.useAgentsMdFile'?: boolean;
12466
+ readonly 'chat.useClaudeHooks'?: boolean;
12467
+ readonly 'chat.useClaudeMdFile'?: boolean;
12468
+ readonly 'chat.useCustomizationsInParentRepositories'?: boolean;
12469
+ readonly 'chat.useHooks'?: boolean;
12470
+ readonly 'chat.useNestedAgentsMdFiles'?: boolean;
12471
+ readonly 'dictation.enabled'?: boolean;
12472
+ readonly 'github.copilot.chat.claudeOpus5Prompt.enabled'?: boolean;
12473
+ readonly 'github.copilot.chat.semanticSearchTool.disabled'?: boolean;
12474
+ readonly 'terminal.integrated.accessibleViewPreserveCursorPosition'?: false | true | 'always';
12475
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
12476
+ }, 'github.copilot.chat.claude48OpusPrompt.enabled' | 'github.copilot.chat.claudeSonnet5Prompt.enabled' | 'github.copilot.chat.conversationCompaction.model' | 'github.copilot.chat.conversationCompaction.prismModelFilter' | 'github.copilot.chat.conversationCompaction.usePrismCompaction'>;
12477
+
12478
+ // ── 1.132.0-insider+2026072817: +1, ~4 ──
12479
+ export type VscodeSettings_1_132_0_insider_2026072817 = Patch<VscodeSettings_1_131_0_insider_2026072801, {
12480
+ readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
12481
+ readonly 'chat.turnStatusPills'?: unknown;
12482
+ readonly 'dictation.experimental.llmCleanup'?: boolean;
12483
+ readonly 'dictation.showTranscript'?: boolean;
12484
+ readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
12485
+ }, never>;
12486
+
10849
12487
  // ── Version map ──
10850
12488
  // Stable entries map directly to their settings type.
10851
12489
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -10882,24 +12520,107 @@ interface VscodeVersionMap {
10882
12520
  '1.115.0': VscodeSettings_1_115_0;
10883
12521
  '1.116.0': VscodeSettings_1_116_0;
10884
12522
  '1.120.0': VscodeSettings_1_120_0;
10885
- '1.121.0-insider': {
12523
+ '1.121.0': VscodeSettings_1_121_0;
12524
+ '1.122.0': VscodeSettings_1_122_0;
12525
+ '1.122.1': VscodeSettings_1_122_1;
12526
+ '1.123.0': VscodeSettings_1_123_0;
12527
+ '1.123.1': VscodeSettings_1_123_1;
12528
+ '1.123.2': VscodeSettings_1_123_2;
12529
+ '1.124.0': VscodeSettings_1_124_0;
12530
+ '1.124.1': VscodeSettings_1_124_1;
12531
+ '1.124.2': VscodeSettings_1_124_2;
12532
+ '1.125.0': VscodeSettings_1_125_0;
12533
+ '1.125.1': VscodeSettings_1_125_1;
12534
+ '1.126.0': VscodeSettings_1_126_0;
12535
+ '1.127.0': VscodeSettings_1_127_0;
12536
+ '1.128.0': VscodeSettings_1_128_0;
12537
+ '1.128.1': VscodeSettings_1_128_1;
12538
+ '1.129.0': VscodeSettings_1_129_0;
12539
+ '1.129.1': VscodeSettings_1_129_1;
12540
+ '1.130.0': VscodeSettings_1_130_0;
12541
+ '1.121.0-insider': InsiderBuilds<{
10886
12542
  '2026051305': VscodeSettings_1_121_0_insider_2026051305;
10887
12543
  '2026051505': VscodeSettings_1_121_0_insider_2026051505;
10888
12544
  '2026051517': VscodeSettings_1_121_0_insider_2026051517;
10889
12545
  '2026051823': VscodeSettings_1_121_0_insider_2026051823;
10890
- };
12546
+ '2026051910': VscodeSettings_1_121_0_insider_2026051910;
12547
+ }>;
12548
+ '1.122.0-insider': InsiderBuilds<{
12549
+ '2026052017': VscodeSettings_1_122_0_insider_2026052017;
12550
+ '2026052105': VscodeSettings_1_122_0_insider_2026052105;
12551
+ '2026052217': VscodeSettings_1_122_0_insider_2026052217;
12552
+ '2026052517': VscodeSettings_1_122_0_insider_2026052517;
12553
+ '2026052623': VscodeSettings_1_122_0_insider_2026052623;
12554
+ }>;
12555
+ '1.123.0-insider': InsiderBuilds<{
12556
+ '2026060105': VscodeSettings_1_123_0_insider_2026060105;
12557
+ }>;
12558
+ '1.124.0-insider': InsiderBuilds<{
12559
+ '2026060217': VscodeSettings_1_124_0_insider_2026060217;
12560
+ '2026060321': VscodeSettings_1_124_0_insider_2026060321;
12561
+ '2026060513': VscodeSettings_1_124_0_insider_2026060513;
12562
+ '2026060900': VscodeSettings_1_124_0_insider_2026060900;
12563
+ }>;
12564
+ '1.125.0-insider': InsiderBuilds<{
12565
+ '2026061105': VscodeSettings_1_125_0_insider_2026061105;
12566
+ '2026061205': VscodeSettings_1_125_0_insider_2026061205;
12567
+ '2026061217': VscodeSettings_1_125_0_insider_2026061217;
12568
+ '2026061505': VscodeSettings_1_125_0_insider_2026061505;
12569
+ '2026061523': VscodeSettings_1_125_0_insider_2026061523;
12570
+ }>;
12571
+ '1.126.0-insider': InsiderBuilds<{
12572
+ '2026061617': VscodeSettings_1_126_0_insider_2026061617;
12573
+ '2026061720': VscodeSettings_1_126_0_insider_2026061720;
12574
+ '2026061820': VscodeSettings_1_126_0_insider_2026061820;
12575
+ '2026061917': VscodeSettings_1_126_0_insider_2026061917;
12576
+ '2026062301': VscodeSettings_1_126_0_insider_2026062301;
12577
+ }>;
12578
+ '1.127.0-insider': InsiderBuilds<{
12579
+ '2026062317': VscodeSettings_1_127_0_insider_2026062317;
12580
+ '2026062521': VscodeSettings_1_127_0_insider_2026062521;
12581
+ '2026062621': VscodeSettings_1_127_0_insider_2026062621;
12582
+ '2026062905': VscodeSettings_1_127_0_insider_2026062905;
12583
+ }>;
12584
+ '1.128.0-insider': InsiderBuilds<{
12585
+ '2026063019': VscodeSettings_1_128_0_insider_2026063019;
12586
+ '2026070121': VscodeSettings_1_128_0_insider_2026070121;
12587
+ '2026070217': VscodeSettings_1_128_0_insider_2026070217;
12588
+ '2026070317': VscodeSettings_1_128_0_insider_2026070317;
12589
+ '2026070704': VscodeSettings_1_128_0_insider_2026070704;
12590
+ '2026070711': VscodeSettings_1_128_0_insider_2026070711;
12591
+ }>;
12592
+ '1.129.0-insider': InsiderBuilds<{
12593
+ '2026070910': VscodeSettings_1_129_0_insider_2026070910;
12594
+ '2026071020': VscodeSettings_1_129_0_insider_2026071020;
12595
+ '2026071317': VscodeSettings_1_129_0_insider_2026071317;
12596
+ }>;
12597
+ '1.130.0-insider': InsiderBuilds<{
12598
+ '2026071611': VscodeSettings_1_130_0_insider_2026071611;
12599
+ '2026071716': VscodeSettings_1_130_0_insider_2026071716;
12600
+ '2026072017': VscodeSettings_1_130_0_insider_2026072017;
12601
+ }>;
12602
+ '1.131.0-insider': InsiderBuilds<{
12603
+ '2026072117': VscodeSettings_1_131_0_insider_2026072117;
12604
+ '2026072217': VscodeSettings_1_131_0_insider_2026072217;
12605
+ '2026072305': VscodeSettings_1_131_0_insider_2026072305;
12606
+ '2026072417': VscodeSettings_1_131_0_insider_2026072417;
12607
+ '2026072801': VscodeSettings_1_131_0_insider_2026072801;
12608
+ }>;
12609
+ '1.132.0-insider': InsiderBuilds<{
12610
+ '2026072817': VscodeSettings_1_132_0_insider_2026072817;
12611
+ }>;
10891
12612
  }
10892
12613
 
10893
- export type LatestVscodeSettings = VscodeSettings_1_120_0;
12614
+ export type LatestVscodeSettings = VscodeSettings_1_130_0;
10894
12615
 
10895
- export type LatestInsiderVscodeSettings = VscodeSettings_1_121_0_insider_2026051823;
12616
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_132_0_insider_2026072817;
10896
12617
 
10897
12618
  export type VscodeVersion = keyof VscodeVersionMap;
10898
12619
 
10899
12620
  /** Build release dates available for a given version (`never` for stable). */
10900
12621
  export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
10901
- VscodeVersionMap[V] extends Record<string, unknown>
10902
- ? Extract<keyof VscodeVersionMap[V], string>
12622
+ VscodeVersionMap[V] extends InsiderBuilds<infer B>
12623
+ ? Extract<keyof B, string>
10903
12624
  : never;
10904
12625
 
10905
12626
  /**
@@ -10911,6 +12632,6 @@ export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
10911
12632
  export type VscodeSettingsFor<
10912
12633
  V extends VscodeVersion,
10913
12634
  R extends VscodeBuildReleaseDateFor<V> = VscodeBuildReleaseDateFor<V>,
10914
- > = VscodeVersionMap[V] extends Record<string, unknown>
10915
- ? VscodeVersionMap[V][R & keyof VscodeVersionMap[V]]
12635
+ > = VscodeVersionMap[V] extends InsiderBuilds<infer B>
12636
+ ? B[R & keyof B]
10916
12637
  : VscodeVersionMap[V];