@vscode/vscode-settings-history 0.0.2-2 → 0.0.2-20

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, {
@@ -7412,8 +7427,8 @@ export type VscodeSettings_1_120_0 = Patch<VscodeSettings_1_119_0, {
7412
7427
  readonly 'explorer.confirmDragAndDrop'?: boolean;
7413
7428
  readonly 'explorer.confirmPasteNative'?: boolean;
7414
7429
  readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
7415
- readonly 'explorer.copyPathSeparator'?: '/' | '\' | 'auto';
7416
- readonly 'explorer.copyRelativePathSeparator'?: '/' | '\' | 'auto';
7430
+ readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
7431
+ readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
7417
7432
  readonly 'explorer.decorations.badges'?: boolean;
7418
7433
  readonly 'explorer.decorations.colors'?: boolean;
7419
7434
  readonly 'explorer.enableDragAndDrop'?: boolean;
@@ -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;
@@ -9461,8 +9474,8 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
9461
9474
  readonly 'explorer.confirmDragAndDrop'?: boolean;
9462
9475
  readonly 'explorer.confirmPasteNative'?: boolean;
9463
9476
  readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
9464
- readonly 'explorer.copyPathSeparator'?: '/' | '\' | 'auto';
9465
- readonly 'explorer.copyRelativePathSeparator'?: '/' | '\' | 'auto';
9477
+ readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
9478
+ readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
9466
9479
  readonly 'explorer.decorations.badges'?: boolean;
9467
9480
  readonly 'explorer.decorations.colors'?: boolean;
9468
9481
  readonly 'explorer.enableDragAndDrop'?: 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,6 +10810,544 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
10799
10810
  readonly 'zenMode.silentNotifications'?: boolean;
10800
10811
  }
10801
10812
 
10813
+ // ── 1.121.0-insider+2026051505: +13, ~2 ──
10814
+ export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_121_0_insider_2026051305, {
10815
+ readonly 'chat.agentHost.customTerminalTool.enabled'?: boolean;
10816
+ readonly 'chat.agentHost.otel.captureContent'?: boolean;
10817
+ readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
10818
+ readonly 'chat.agentHost.otel.enabled'?: boolean;
10819
+ readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
10820
+ readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
10821
+ readonly 'chat.agentHost.otel.outfile'?: string;
10822
+ readonly 'chat.sessionSync.enabled'?: boolean;
10823
+ readonly 'chat.tools.riskAssessment.model'?: string;
10824
+ readonly 'chat.tools.terminal.idleSilenceTimeoutMs'?: number;
10825
+ readonly 'chat.tools.terminal.outputDeltas'?: boolean;
10826
+ readonly 'github.copilot.chat.claudeAgent.allowAutoPermissions'?: boolean;
10827
+ readonly 'github.copilot.chat.freezeCustomizationsIndex'?: boolean;
10828
+ readonly 'markdown.preview.frontMatter'?: 'hide' | 'codeBlock' | 'table';
10829
+ readonly 'search.experimental.useIgnoreFilesInFindFiles'?: boolean;
10830
+ }, never>;
10831
+
10832
+ // ── 1.121.0-insider+2026051517: -2 ──
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'>;
10834
+
10835
+ // ── 1.121.0-insider+2026051823: +11, ~10, -3 ──
10836
+ export type VscodeSettings_1_121_0_insider_2026051823 = Patch<VscodeSettings_1_121_0_insider_2026051517, {
10837
+ readonly 'chat.sessionSync.enabled'?: boolean;
10838
+ readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
10839
+ readonly 'chat.utilityModel'?: '';
10840
+ readonly 'chat.utilitySmallModel'?: '';
10841
+ 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';
10842
+ readonly 'editor.quickSuggestions'?: unknown;
10843
+ readonly 'git.enabled'?: boolean;
10844
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtl'?: boolean;
10845
+ readonly 'github.copilot.chat.anthropic.promptCaching.extendedTtlMessages'?: boolean;
10846
+ readonly 'github.copilot.chat.workspace.codeSearchExternalIngest.enabled'?: boolean;
10847
+ readonly 'markdown-mermaid.controls.show'?: 'never' | 'onHoverOrFocus' | 'always';
10848
+ readonly 'markdown-mermaid.darkModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10849
+ readonly 'markdown-mermaid.languages'?: unknown[];
10850
+ readonly 'markdown-mermaid.lightModeTheme'?: 'base' | 'forest' | 'dark' | 'default' | 'neutral';
10851
+ readonly 'markdown-mermaid.maxHeight'?: string;
10852
+ readonly 'markdown-mermaid.maxTextSize'?: number;
10853
+ readonly 'markdown-mermaid.mouseNavigation.enabled'?: 'always' | 'alt' | 'never';
10854
+ readonly 'markdown-mermaid.resizable'?: boolean;
10855
+ readonly 'markdown.preview.frontMatter'?: 'hide' | 'codeBlock' | 'table';
10856
+ 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';
10857
+ readonly 'notebook.editorOptionsCustomizations'?: unknown;
10858
+ }, 'chat.tools.renameTool.enabled' | 'chat.tools.usagesTool.enabled' | 'mermaid-chat.enabled'>;
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
+
10802
11351
  // ── Version map ──
10803
11352
  // Stable entries map directly to their settings type.
10804
11353
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -10835,21 +11384,55 @@ interface VscodeVersionMap {
10835
11384
  '1.115.0': VscodeSettings_1_115_0;
10836
11385
  '1.116.0': VscodeSettings_1_116_0;
10837
11386
  '1.120.0': VscodeSettings_1_120_0;
10838
- '1.121.0-insider': {
11387
+ '1.121.0': VscodeSettings_1_121_0;
11388
+ '1.122.0': VscodeSettings_1_122_0;
11389
+ '1.122.1': VscodeSettings_1_122_1;
11390
+ '1.123.0': VscodeSettings_1_123_0;
11391
+ '1.123.1': VscodeSettings_1_123_1;
11392
+ '1.123.2': VscodeSettings_1_123_2;
11393
+ '1.124.0': VscodeSettings_1_124_0;
11394
+ '1.124.1': VscodeSettings_1_124_1;
11395
+ '1.124.2': VscodeSettings_1_124_2;
11396
+ '1.121.0-insider': InsiderBuilds<{
10839
11397
  '2026051305': VscodeSettings_1_121_0_insider_2026051305;
10840
- };
11398
+ '2026051505': VscodeSettings_1_121_0_insider_2026051505;
11399
+ '2026051517': VscodeSettings_1_121_0_insider_2026051517;
11400
+ '2026051823': VscodeSettings_1_121_0_insider_2026051823;
11401
+ '2026051910': VscodeSettings_1_121_0_insider_2026051910;
11402
+ }>;
11403
+ '1.122.0-insider': InsiderBuilds<{
11404
+ '2026052017': VscodeSettings_1_122_0_insider_2026052017;
11405
+ '2026052105': VscodeSettings_1_122_0_insider_2026052105;
11406
+ '2026052217': VscodeSettings_1_122_0_insider_2026052217;
11407
+ '2026052517': VscodeSettings_1_122_0_insider_2026052517;
11408
+ '2026052623': VscodeSettings_1_122_0_insider_2026052623;
11409
+ }>;
11410
+ '1.123.0-insider': InsiderBuilds<{
11411
+ '2026060105': VscodeSettings_1_123_0_insider_2026060105;
11412
+ }>;
11413
+ '1.124.0-insider': InsiderBuilds<{
11414
+ '2026060217': VscodeSettings_1_124_0_insider_2026060217;
11415
+ '2026060321': VscodeSettings_1_124_0_insider_2026060321;
11416
+ '2026060513': VscodeSettings_1_124_0_insider_2026060513;
11417
+ '2026060900': VscodeSettings_1_124_0_insider_2026060900;
11418
+ }>;
11419
+ '1.125.0-insider': InsiderBuilds<{
11420
+ '2026061105': VscodeSettings_1_125_0_insider_2026061105;
11421
+ '2026061205': VscodeSettings_1_125_0_insider_2026061205;
11422
+ '2026061217': VscodeSettings_1_125_0_insider_2026061217;
11423
+ }>;
10841
11424
  }
10842
11425
 
10843
- export type LatestVscodeSettings = VscodeSettings_1_120_0;
11426
+ export type LatestVscodeSettings = VscodeSettings_1_124_2;
10844
11427
 
10845
- export type LatestInsiderVscodeSettings = VscodeSettings_1_121_0_insider_2026051305;
11428
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_125_0_insider_2026061217;
10846
11429
 
10847
11430
  export type VscodeVersion = keyof VscodeVersionMap;
10848
11431
 
10849
11432
  /** Build release dates available for a given version (`never` for stable). */
10850
11433
  export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
10851
- VscodeVersionMap[V] extends Record<string, unknown>
10852
- ? Extract<keyof VscodeVersionMap[V], string>
11434
+ VscodeVersionMap[V] extends InsiderBuilds<infer B>
11435
+ ? Extract<keyof B, string>
10853
11436
  : never;
10854
11437
 
10855
11438
  /**
@@ -10861,6 +11444,6 @@ export type VscodeBuildReleaseDateFor<V extends VscodeVersion> =
10861
11444
  export type VscodeSettingsFor<
10862
11445
  V extends VscodeVersion,
10863
11446
  R extends VscodeBuildReleaseDateFor<V> = VscodeBuildReleaseDateFor<V>,
10864
- > = VscodeVersionMap[V] extends Record<string, unknown>
10865
- ? VscodeVersionMap[V][R & keyof VscodeVersionMap[V]]
11447
+ > = VscodeVersionMap[V] extends InsiderBuilds<infer B>
11448
+ ? B[R & keyof B]
10866
11449
  : VscodeVersionMap[V];