@codingame/monaco-vscode-chat-service-override 29.1.1 → 30.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +5 -2
- package/package.json +5 -5
- package/vscode/src/vs/platform/agentHost/common/agentService.d.ts +37 -39
- package/vscode/src/vs/platform/agentHost/common/agentService.js +3 -1
- package/vscode/src/vs/platform/agentHost/common/agentService.service.d.ts +11 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/action-origin.generated.d.ts +4 -4
- package/vscode/src/vs/platform/agentHost/common/state/protocol/actions.d.ts +132 -42
- package/vscode/src/vs/platform/agentHost/common/state/protocol/commands.d.ts +54 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/errors.d.ts +15 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/messages.d.ts +5 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/state.d.ts +188 -51
- package/vscode/src/vs/platform/agentHost/common/state/sessionActions.d.ts +7 -6
- package/vscode/src/vs/platform/agentHost/common/state/sessionProtocol.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/state/sessionState.d.ts +7 -2
- package/vscode/src/vs/platform/sandbox/browser/sandboxHelperService.d.ts +6 -0
- package/vscode/src/vs/platform/sandbox/browser/sandboxHelperService.js +14 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperIpc.d.ts +18 -0
- package/vscode/src/vs/platform/sandbox/common/sandboxHelperIpc.js +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatAccessibilityService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatResponseAccessibleView.js +37 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp.js +59 -59
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAgentRecommendationActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.js +10 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCopyActions.js +37 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatDeveloperActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatFileTreeActions.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatForkActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatImportExport.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatNewActions.js +20 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.js +14 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatPluginActions.js +18 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatQueueActions.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/codeBlockOperations.js +19 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/createPluginAction.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/createPluginAction.js +482 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginActions.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginEditor/agentPluginEditor.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginEditor/agentPluginEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginRepositoryService.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginRepositoryService.js +43 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginsView.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions.js +74 -76
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsPicker.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsQuickAccess.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjection.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjectionActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjectionService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionsExperiments.contribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentTitleBarStatusWidget.js +27 -35
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/unifiedQuickAccess.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/unifiedQuickAccessActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/localAgentSessionsController.d.ts +5 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/localAgentSessionsController.js +86 -80
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationDebugPanel.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationDebugPanel.js +38 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationIcons.js +14 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationListWidget.d.ts +38 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationListWidget.js +427 -167
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.contribution.js +37 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditor.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditor.js +108 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditorInput.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditorInput.js +28 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWorkspaceService.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWorkspaceService.js +11 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationHarnessService.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationHarnessService.js +3 -20
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpListWidget.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpListWidget.js +65 -68
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/media/aiCustomizationManagement.css +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/pluginListWidget.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/pluginListWidget.js +64 -51
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentResolveService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/simpleBrowserEditorOverlay.js +19 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.contribution.js +288 -195
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatCustomizationDiscoveryRenderer.js +21 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugDetailPanel.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEventDetailRenderer.js +19 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEventList.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFilters.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFlowChartView.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFlowGraph.js +21 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHomeView.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHookContentRenderer.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugLogsView.js +21 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugMessageContentRenderer.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugModelTurnContentRenderer.js +23 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugOverviewView.js +28 -28
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugToolCallContentRenderer.js +11 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingDeletedFileEntry.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingDeletedFileEntry.js +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationModelManager.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry.js +5 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry.js +10 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl.js +19 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession.js +54 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution.js +9 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditor.js +14 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsViewModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget.js +50 -50
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatUsageWidget.js +11 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatParticipant.contribution.js +30 -30
- package/vscode/src/vs/workbench/contrib/chat/browser/chatRepoInfo.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetup.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupContributions.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupContributions.js +86 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupController.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupGrowthSession.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupProviders.js +29 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupRunner.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSlashCommands.js +19 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusDashboard.js +65 -65
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.js +24 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipCatalog.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipService.js +2 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatWindowNotifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/claudePluginRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/defaultModelContribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/enablementActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/enablementStatusWidget.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/languageModelsConfigurationService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginInstallService.d.ts +3 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginInstallService.js +54 -39
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginSources.js +16 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginUrlHandler.d.ts +24 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginUrlHandler.js +72 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.js +26 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileContributions.js +181 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/skillActions.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/promptsDebugContribution.js +8 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/languageModelToolsConfirmationService.js +37 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/languageModelToolsService.js +28 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/renameTool.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/usagesTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatQueuePickerActionItem.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatStatusWidget.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletionUtils.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletionUtils.js +62 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.d.ts +1 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.js +148 -88
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputEditorContrib.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputEditorHover.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/chatQuick.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewPane.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewPane.js +16 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewTitleControl.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatArtifactExtraction.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatArtifactExtraction.js +158 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceImpl.d.ts +8 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceImpl.js +155 -76
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceTelemetry.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatSessionOperationLog.js +5 -4
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatSessionStore.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatSessionStore.js +7 -6
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginServiceImpl.d.ts +31 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginServiceImpl.js +228 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/fileBackedInstalledPluginsStore.d.ts +66 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/fileBackedInstalledPluginsStore.js +190 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.d.ts +25 -3
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.js +130 -107
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution.js +19 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator.d.ts +2 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator.js +169 -266
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.d.ts +12 -10
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsServiceImpl.js +149 -206
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptFilesLocator.js +27 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.d.ts +20 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatArtifactsService.js +183 -43
- package/vscode/src/vs/workbench/contrib/chat/common/voiceChatService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.js +1 -1
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryServiceImpl.js +2 -3
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.js +21 -21
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatDefaultModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.js +11 -11
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +11 -11
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookModifiedCellDecorator.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution.js +7 -7
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp.js +16 -16
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.js +20 -20
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatService.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/executeStrategy/basicExecuteStrategy.js +3 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/executeStrategy/noneExecuteStrategy.js +4 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/executeStrategy/richExecuteStrategy.js +3 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers.js +6 -6
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalToolTelemetry.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalToolTelemetry.js +1 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.js +26 -23
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/awaitTerminalTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/autoApprove/npmScriptAutoApprover.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer.js +12 -12
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineRewriter/commandLineSandboxRewriter.js +4 -9
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool.js +16 -6
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/killTerminalTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor.js +9 -9
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool.js +150 -50
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/sandboxOutputAnalyzer.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool.js +14 -14
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool.js +14 -14
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.d.ts +66 -5
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.js +239 -48
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatToolActions.d.ts +0 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatToolActions.js +0 -208
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatToolPicker.d.ts +0 -22
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatToolPicker.js +0 -637
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/toolSetsContribution.d.ts +0 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/toolSetsContribution.js +0 -384
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/internalCustomizations/internalCustomizations.d.ts +0 -33
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/internalCustomizations/internalCustomizations.js +0 -47
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/internalCustomizations/internalSkill.d.ts +0 -30
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileContributions.js +0 -55
- /package/vscode/src/vs/workbench/contrib/chat/{common → browser}/promptSyntax/promptFileContributions.d.ts +0 -0
|
@@ -5,7 +5,7 @@ import { Disposable, DisposableMap, DisposableStore } from '@codingame/monaco-vs
|
|
|
5
5
|
import { Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
|
|
6
6
|
import { isMacintosh } from '@codingame/monaco-vscode-api/vscode/vs/base/common/platform';
|
|
7
7
|
import { PolicyCategory } from '@codingame/monaco-vscode-api/vscode/vs/base/common/policy';
|
|
8
|
-
import { AgentHostEnabledSettingId } from '../../../../platform/agentHost/common/agentService.js';
|
|
8
|
+
import { AgentHostIpcLoggingSettingId, AgentHostEnabledSettingId } from '../../../../platform/agentHost/common/agentService.js';
|
|
9
9
|
import { registerEditorFeature } from '@codingame/monaco-vscode-api/vscode/vs/editor/common/editorFeatures';
|
|
10
10
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
11
11
|
import { AccessibleViewRegistry } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleViewRegistry';
|
|
@@ -51,9 +51,9 @@ import { ILanguageModelToolsService } from '@codingame/monaco-vscode-api/vscode/
|
|
|
51
51
|
import { agentPluginDiscoveryRegistry } from '../common/plugins/agentPluginService.js';
|
|
52
52
|
import { ChatPromptFilesExtensionPointHandler } from '../common/promptSyntax/chatPromptFilesContribution.js';
|
|
53
53
|
import { PromptsConfig, isTildePath } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/promptSyntax/config/config';
|
|
54
|
-
import { DEFAULT_HOOK_FILE_PATHS, DEFAULT_SKILL_SOURCE_FOLDERS, SKILL_FILENAME, AGENTS_SOURCE_FOLDER, COPILOT_USER_AGENTS_SOURCE_FOLDER, CLAUDE_AGENTS_SOURCE_FOLDER, AGENT_FILE_EXTENSION, LEGACY_MODE_DEFAULT_SOURCE_FOLDER, LEGACY_MODE_FILE_EXTENSION, PROMPT_DEFAULT_SOURCE_FOLDER, PROMPT_FILE_EXTENSION, DEFAULT_INSTRUCTIONS_SOURCE_FOLDERS, INSTRUCTIONS_DEFAULT_SOURCE_FOLDER, INSTRUCTION_FILE_EXTENSION
|
|
55
|
-
import { PromptLanguageFeaturesProvider } from '
|
|
56
|
-
import { HOOK_DOCUMENTATION_URL, SKILL_DOCUMENTATION_URL, AGENT_DOCUMENTATION_URL, PROMPT_DOCUMENTATION_URL, INSTRUCTIONS_DOCUMENTATION_URL, PromptsType } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/promptSyntax/promptTypes';
|
|
54
|
+
import { DEFAULT_HOOK_FILE_PATHS, DEFAULT_SKILL_SOURCE_FOLDERS, SKILL_FILENAME, AGENTS_SOURCE_FOLDER, COPILOT_USER_AGENTS_SOURCE_FOLDER, CLAUDE_AGENTS_SOURCE_FOLDER, AGENT_FILE_EXTENSION, LEGACY_MODE_DEFAULT_SOURCE_FOLDER, LEGACY_MODE_FILE_EXTENSION, PROMPT_DEFAULT_SOURCE_FOLDER, PROMPT_FILE_EXTENSION, DEFAULT_INSTRUCTIONS_SOURCE_FOLDERS, INSTRUCTIONS_DEFAULT_SOURCE_FOLDER, INSTRUCTION_FILE_EXTENSION } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations';
|
|
55
|
+
import { PromptLanguageFeaturesProvider } from './promptSyntax/promptFileContributions.js';
|
|
56
|
+
import { HOOK_DOCUMENTATION_URL, SKILL_DOCUMENTATION_URL, AGENT_DOCUMENTATION_URL, PROMPT_DOCUMENTATION_URL, INSTRUCTIONS_DOCUMENTATION_URL, PromptsType, PromptFileSource } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/promptSyntax/promptTypes';
|
|
57
57
|
import { HOOK_SCHEMA_URI, hookFileSchema } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/promptSyntax/hookSchema';
|
|
58
58
|
import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
|
|
59
59
|
import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
|
|
@@ -86,7 +86,7 @@ import { registerQuickChatActions } from './actions/chatQuickInputActions.js';
|
|
|
86
86
|
import { ChatAgentRecommendation } from './actions/chatAgentRecommendationActions.js';
|
|
87
87
|
import { registerChatTitleActions } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/chat/browser/actions/chatTitleActions';
|
|
88
88
|
import { registerChatElicitationActions } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/chat/browser/actions/chatElicitationActions';
|
|
89
|
-
import { registerChatToolActions } from '
|
|
89
|
+
import { registerChatToolActions } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/chat/browser/actions/chatToolActions';
|
|
90
90
|
import { ChatTransferContribution } from './actions/chatTransfer.js';
|
|
91
91
|
import { registerChatOpenAgentDebugPanelAction } from './actions/chatOpenAgentDebugPanelAction.js';
|
|
92
92
|
import '../common/chatDebugServiceImpl.js';
|
|
@@ -139,7 +139,7 @@ import './widget/input/editor/chatInputEditorContrib.js';
|
|
|
139
139
|
import './widget/input/editor/chatInputEditorHover.js';
|
|
140
140
|
import './tools/languageModelToolsConfirmationService.js';
|
|
141
141
|
import { globalAutoApproveDescription } from './tools/languageModelToolsService.js';
|
|
142
|
-
import { ConfiguredAgentPluginDiscovery, MarketplaceAgentPluginDiscovery } from '../common/plugins/agentPluginServiceImpl.js';
|
|
142
|
+
import { ConfiguredAgentPluginDiscovery, MarketplaceAgentPluginDiscovery, ExtensionAgentPluginDiscovery } from '../common/plugins/agentPluginServiceImpl.js';
|
|
143
143
|
import '../common/plugins/pluginMarketplaceService.js';
|
|
144
144
|
import '../common/plugins/workspacePluginSettingsService.js';
|
|
145
145
|
import { AgentPluginsViewsContribution } from './agentPluginsView.js';
|
|
@@ -153,7 +153,7 @@ import './promptSyntax/promptToolsCodeLensProvider.js';
|
|
|
153
153
|
import { ChatSlashCommandsContribution } from './chatSlashCommands.js';
|
|
154
154
|
import { PluginUrlHandler } from './pluginUrlHandler.js';
|
|
155
155
|
import { PromptUrlHandler } from './promptSyntax/promptUrlHandler.js';
|
|
156
|
-
import { UserToolSetsContributions, ConfigureToolSets } from '
|
|
156
|
+
import { UserToolSetsContributions, ConfigureToolSets } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/chat/browser/tools/toolSetsContribution';
|
|
157
157
|
import { ChatViewsWelcomeHandler } from './viewsWelcome/chatViewsWelcomeHandler.js';
|
|
158
158
|
import './widget/chatWidgetService.js';
|
|
159
159
|
import { ChatWindowNotifier } from './chatWindowNotifier.js';
|
|
@@ -173,13 +173,13 @@ jsonContributionRegistry.registerSchema(HOOK_SCHEMA_URI, hookFileSchema);
|
|
|
173
173
|
const configurationRegistry = ( Registry.as(Extensions$1.Configuration));
|
|
174
174
|
configurationRegistry.registerConfiguration({
|
|
175
175
|
id: "chatSidebar",
|
|
176
|
-
title: ( localize(
|
|
176
|
+
title: ( localize(5581, "Chat")),
|
|
177
177
|
type: "object",
|
|
178
178
|
properties: {
|
|
179
179
|
"chat.experimentalSessionsWindowOverride": {
|
|
180
180
|
type: "boolean",
|
|
181
181
|
description: ( localize(
|
|
182
|
-
|
|
182
|
+
5582,
|
|
183
183
|
"When true, enables sessions-window-specific behavior for extensions."
|
|
184
184
|
)),
|
|
185
185
|
default: false,
|
|
@@ -187,41 +187,41 @@ configurationRegistry.registerConfiguration({
|
|
|
187
187
|
},
|
|
188
188
|
"chat.fontSize": {
|
|
189
189
|
type: "number",
|
|
190
|
-
description: ( localize(
|
|
190
|
+
description: ( localize(5583, "Controls the font size in pixels in chat messages.")),
|
|
191
191
|
default: 13,
|
|
192
192
|
minimum: 6,
|
|
193
193
|
maximum: 100
|
|
194
194
|
},
|
|
195
195
|
"chat.fontFamily": {
|
|
196
196
|
type: "string",
|
|
197
|
-
description: ( localize(
|
|
197
|
+
description: ( localize(5584, "Controls the font family in chat messages.")),
|
|
198
198
|
default: "default"
|
|
199
199
|
},
|
|
200
200
|
"chat.editor.fontSize": {
|
|
201
201
|
type: "number",
|
|
202
|
-
description: ( localize(
|
|
202
|
+
description: ( localize(5585, "Controls the font size in pixels in chat codeblocks.")),
|
|
203
203
|
default: isMacintosh ? 12 : 14
|
|
204
204
|
},
|
|
205
205
|
"chat.editor.fontFamily": {
|
|
206
206
|
type: "string",
|
|
207
|
-
description: ( localize(
|
|
207
|
+
description: ( localize(5586, "Controls the font family in chat codeblocks.")),
|
|
208
208
|
default: "default"
|
|
209
209
|
},
|
|
210
210
|
"chat.editor.fontWeight": {
|
|
211
211
|
type: "string",
|
|
212
|
-
description: ( localize(
|
|
212
|
+
description: ( localize(5587, "Controls the font weight in chat codeblocks.")),
|
|
213
213
|
default: "default"
|
|
214
214
|
},
|
|
215
215
|
"chat.editor.wordWrap": {
|
|
216
216
|
type: "string",
|
|
217
|
-
description: ( localize(
|
|
217
|
+
description: ( localize(5588, "Controls whether lines should wrap in chat codeblocks.")),
|
|
218
218
|
default: "off",
|
|
219
219
|
enum: ["on", "off"]
|
|
220
220
|
},
|
|
221
221
|
"chat.editor.lineHeight": {
|
|
222
222
|
type: "number",
|
|
223
223
|
description: ( localize(
|
|
224
|
-
|
|
224
|
+
5589,
|
|
225
225
|
"Controls the line height in pixels in chat codeblocks. Use 0 to compute the line height from the font size."
|
|
226
226
|
)),
|
|
227
227
|
default: 0
|
|
@@ -229,12 +229,12 @@ configurationRegistry.registerConfiguration({
|
|
|
229
229
|
[ChatConfiguration.AgentStatusEnabled]: {
|
|
230
230
|
type: "string",
|
|
231
231
|
enum: ["hidden", "badge", "compact"],
|
|
232
|
-
enumDescriptions: [( localize(
|
|
233
|
-
|
|
232
|
+
enumDescriptions: [( localize(5590, "The agent status indicator is hidden from the title bar.")), ( localize(5591, "Shows the agent status as a badge next to the command center.")), ( localize(
|
|
233
|
+
5592,
|
|
234
234
|
"Replaces the command center search box with a compact agent status indicator and unified chat widget."
|
|
235
235
|
))],
|
|
236
236
|
markdownDescription: ( localize(
|
|
237
|
-
|
|
237
|
+
5593,
|
|
238
238
|
"Controls how the 'Agent Status' indicator appears in the title bar command center. When set to `hidden`, the indicator is not shown. Other values show the indicator and automatically enable {0}. The unread and in-progress session indicators require {1} to be enabled.",
|
|
239
239
|
"`#window.commandCenter#`",
|
|
240
240
|
"`#chat.viewSessions.enabled#`"
|
|
@@ -245,7 +245,7 @@ configurationRegistry.registerConfiguration({
|
|
|
245
245
|
[ChatConfiguration.UnifiedAgentsBar]: {
|
|
246
246
|
type: "boolean",
|
|
247
247
|
markdownDescription: ( localize(
|
|
248
|
-
|
|
248
|
+
5594,
|
|
249
249
|
"Replaces the command center search box with a unified chat and search widget."
|
|
250
250
|
)),
|
|
251
251
|
default: false,
|
|
@@ -254,7 +254,7 @@ configurationRegistry.registerConfiguration({
|
|
|
254
254
|
[ChatConfiguration.AgentSessionProjectionEnabled]: {
|
|
255
255
|
type: "boolean",
|
|
256
256
|
markdownDescription: ( localize(
|
|
257
|
-
|
|
257
|
+
5595,
|
|
258
258
|
"Controls whether Agent Session Projection mode is enabled for reviewing agent sessions in a focused workspace."
|
|
259
259
|
)),
|
|
260
260
|
default: false,
|
|
@@ -263,14 +263,14 @@ configurationRegistry.registerConfiguration({
|
|
|
263
263
|
"chat.implicitContext.enabled": {
|
|
264
264
|
type: "object",
|
|
265
265
|
description: ( localize(
|
|
266
|
-
|
|
266
|
+
5596,
|
|
267
267
|
"Enables automatically using the active editor as chat context for specified chat locations."
|
|
268
268
|
)),
|
|
269
269
|
additionalProperties: {
|
|
270
270
|
type: "string",
|
|
271
271
|
enum: ["never", "first", "always"],
|
|
272
|
-
description: ( localize(
|
|
273
|
-
enumDescriptions: [( localize(
|
|
272
|
+
description: ( localize(5597, "The value for the implicit context.")),
|
|
273
|
+
enumDescriptions: [( localize(5598, "Implicit context is never enabled.")), ( localize(5599, "Implicit context is enabled for the first interaction.")), ( localize(5600, "Implicit context is always enabled."))]
|
|
274
274
|
},
|
|
275
275
|
default: {
|
|
276
276
|
"panel": "always"
|
|
@@ -283,7 +283,7 @@ configurationRegistry.registerConfiguration({
|
|
|
283
283
|
"chat.implicitContext.suggestedContext": {
|
|
284
284
|
type: "boolean",
|
|
285
285
|
markdownDescription: ( localize(
|
|
286
|
-
|
|
286
|
+
5601,
|
|
287
287
|
"Controls whether the new implicit context flow is shown. In Ask and Edit modes, the context will automatically be included. When using an agent, context will be suggested as an attachment. Selections are always included as context."
|
|
288
288
|
)),
|
|
289
289
|
default: true
|
|
@@ -291,7 +291,7 @@ configurationRegistry.registerConfiguration({
|
|
|
291
291
|
"chat.editing.autoAcceptDelay": {
|
|
292
292
|
type: "number",
|
|
293
293
|
markdownDescription: ( localize(
|
|
294
|
-
|
|
294
|
+
5602,
|
|
295
295
|
"Delay after which changes made by chat are automatically accepted. Values are in seconds, `0` means disabled and `100` seconds is the maximum."
|
|
296
296
|
)),
|
|
297
297
|
default: 0,
|
|
@@ -302,7 +302,7 @@ configurationRegistry.registerConfiguration({
|
|
|
302
302
|
type: "boolean",
|
|
303
303
|
scope: ConfigurationScope.APPLICATION,
|
|
304
304
|
markdownDescription: ( localize(
|
|
305
|
-
|
|
305
|
+
5603,
|
|
306
306
|
"Whether to show a confirmation before removing a request and its associated edits."
|
|
307
307
|
)),
|
|
308
308
|
default: true
|
|
@@ -311,7 +311,7 @@ configurationRegistry.registerConfiguration({
|
|
|
311
311
|
type: "boolean",
|
|
312
312
|
scope: ConfigurationScope.APPLICATION,
|
|
313
313
|
markdownDescription: ( localize(
|
|
314
|
-
|
|
314
|
+
5604,
|
|
315
315
|
"Whether to show a confirmation before retrying a request and its associated edits."
|
|
316
316
|
)),
|
|
317
317
|
default: true
|
|
@@ -319,7 +319,7 @@ configurationRegistry.registerConfiguration({
|
|
|
319
319
|
"chat.editing.explainChanges.enabled": {
|
|
320
320
|
type: "boolean",
|
|
321
321
|
markdownDescription: ( localize(
|
|
322
|
-
|
|
322
|
+
5605,
|
|
323
323
|
"Controls whether the Explain button in the Chat panel and the Explain Changes context menu in the SCM view are shown. This is an experimental feature."
|
|
324
324
|
)),
|
|
325
325
|
default: false,
|
|
@@ -331,7 +331,7 @@ configurationRegistry.registerConfiguration({
|
|
|
331
331
|
[ChatConfiguration.RevealNextChangeOnResolve]: {
|
|
332
332
|
type: "boolean",
|
|
333
333
|
markdownDescription: ( localize(
|
|
334
|
-
|
|
334
|
+
5606,
|
|
335
335
|
"Controls whether the editor automatically reveals the next change after keeping or undoing a chat edit."
|
|
336
336
|
)),
|
|
337
337
|
default: true
|
|
@@ -340,21 +340,17 @@ configurationRegistry.registerConfiguration({
|
|
|
340
340
|
type: "boolean",
|
|
341
341
|
scope: ConfigurationScope.APPLICATION,
|
|
342
342
|
description: ( localize(
|
|
343
|
-
|
|
343
|
+
5607,
|
|
344
344
|
"Controls whether tips are shown above user messages in chat. New tips are added frequently, so this is a helpful way to stay up to date with the latest features."
|
|
345
345
|
)),
|
|
346
|
-
default:
|
|
347
|
-
tags: ["experimental"],
|
|
348
|
-
experiment: {
|
|
349
|
-
mode: "auto"
|
|
350
|
-
}
|
|
346
|
+
default: true
|
|
351
347
|
},
|
|
352
348
|
"chat.upvoteAnimation": {
|
|
353
349
|
type: "string",
|
|
354
350
|
enum: ["off", "confetti", "floatingThumbs", "pulseWave", "radiantLines"],
|
|
355
|
-
enumDescriptions: [( localize(
|
|
351
|
+
enumDescriptions: [( localize(5608, "No animation is shown.")), ( localize(5609, "Shows a confetti burst animation around the thumbs up button.")), ( localize(5610, "Shows floating thumbs up icons rising from the button.")), ( localize(5611, "Shows expanding pulse rings from the button.")), ( localize(5612, "Shows radiant lines emanating from the button."))],
|
|
356
352
|
description: ( localize(
|
|
357
|
-
|
|
353
|
+
5613,
|
|
358
354
|
"Controls whether an animation is shown when clicking the thumbs up button on a chat response."
|
|
359
355
|
)),
|
|
360
356
|
default: "floatingThumbs"
|
|
@@ -362,26 +358,26 @@ configurationRegistry.registerConfiguration({
|
|
|
362
358
|
"chat.experimental.detectParticipant.enabled": {
|
|
363
359
|
type: "boolean",
|
|
364
360
|
deprecationMessage: ( localize(
|
|
365
|
-
|
|
361
|
+
5614,
|
|
366
362
|
"This setting is deprecated. Please use `chat.detectParticipant.enabled` instead."
|
|
367
363
|
)),
|
|
368
|
-
description: ( localize(
|
|
364
|
+
description: ( localize(5615, "Enables chat participant autodetection for panel chat.")),
|
|
369
365
|
default: null
|
|
370
366
|
},
|
|
371
367
|
"chat.detectParticipant.enabled": {
|
|
372
368
|
type: "boolean",
|
|
373
|
-
description: ( localize(
|
|
369
|
+
description: ( localize(5616, "Enables chat participant autodetection for panel chat.")),
|
|
374
370
|
default: true
|
|
375
371
|
},
|
|
376
372
|
[ChatConfiguration.InlineReferencesStyle]: {
|
|
377
373
|
type: "string",
|
|
378
374
|
enum: ["box", "link"],
|
|
379
|
-
enumDescriptions: [( localize(
|
|
380
|
-
|
|
375
|
+
enumDescriptions: [( localize(5617, "Display file and symbol references as boxed widgets with icons.")), ( localize(
|
|
376
|
+
5618,
|
|
381
377
|
"Display file and symbol references as simple blue links without icons."
|
|
382
378
|
))],
|
|
383
379
|
description: ( localize(
|
|
384
|
-
|
|
380
|
+
5619,
|
|
385
381
|
"Controls how file and symbol references are displayed in chat messages."
|
|
386
382
|
)),
|
|
387
383
|
default: "box"
|
|
@@ -389,7 +385,7 @@ configurationRegistry.registerConfiguration({
|
|
|
389
385
|
[ChatConfiguration.EditorAssociations]: {
|
|
390
386
|
type: "object",
|
|
391
387
|
markdownDescription: ( localize(
|
|
392
|
-
|
|
388
|
+
5620,
|
|
393
389
|
"Configure [glob patterns](https://aka.ms/vscode-glob-patterns) to editors for opening files from chat (for example `\"*.md\": \"vscode.markdown.preview.editor\"`)."
|
|
394
390
|
)),
|
|
395
391
|
additionalProperties: {
|
|
@@ -400,15 +396,15 @@ configurationRegistry.registerConfiguration({
|
|
|
400
396
|
[ChatConfiguration.NotifyWindowOnConfirmation]: {
|
|
401
397
|
type: "string",
|
|
402
398
|
enum: ["off", "windowNotFocused", "always"],
|
|
403
|
-
enumDescriptions: [( localize(
|
|
404
|
-
|
|
399
|
+
enumDescriptions: [( localize(5621, "Never show OS notifications for confirmations.")), ( localize(
|
|
400
|
+
5622,
|
|
405
401
|
"Show OS notifications for confirmations when the window is not focused."
|
|
406
402
|
)), ( localize(
|
|
407
|
-
|
|
403
|
+
5623,
|
|
408
404
|
"Always show OS notifications for confirmations, even when the window is focused."
|
|
409
405
|
))],
|
|
410
406
|
description: ( localize(
|
|
411
|
-
|
|
407
|
+
5624,
|
|
412
408
|
"Controls whether a chat session should present the user with an OS notification when a confirmation or question needs input. This includes a window badge as well as notification toast."
|
|
413
409
|
)),
|
|
414
410
|
default: "windowNotFocused"
|
|
@@ -416,7 +412,7 @@ configurationRegistry.registerConfiguration({
|
|
|
416
412
|
[ChatConfiguration.AutoReply]: {
|
|
417
413
|
default: false,
|
|
418
414
|
markdownDescription: ( localize(
|
|
419
|
-
|
|
415
|
+
5625,
|
|
420
416
|
"Automatically skip question carousels by telling the agent that the user is not available and to use its best judgment. This is an advanced setting and can lead to unintended choices or actions based on incomplete context."
|
|
421
417
|
)),
|
|
422
418
|
type: "boolean",
|
|
@@ -426,7 +422,7 @@ configurationRegistry.registerConfiguration({
|
|
|
426
422
|
[ChatConfiguration.AutopilotEnabled]: {
|
|
427
423
|
type: "boolean",
|
|
428
424
|
markdownDescription: ( localize(
|
|
429
|
-
|
|
425
|
+
5626,
|
|
430
426
|
"Controls whether the Autopilot mode is available in the permissions picker. When enabled, Autopilot auto-approves all tool calls and continues until the task is done."
|
|
431
427
|
)),
|
|
432
428
|
default: true,
|
|
@@ -447,7 +443,7 @@ configurationRegistry.registerConfiguration({
|
|
|
447
443
|
description: {
|
|
448
444
|
key: "autoApprove3.description",
|
|
449
445
|
value: ( localize(
|
|
450
|
-
|
|
446
|
+
5627,
|
|
451
447
|
"Global auto approve also known as \"YOLO mode\" disables manual approval completely for all tools in all workspaces, allowing the agent to act fully autonomously. This is extremely dangerous and is *never* recommended, even containerized environments like Codespaces and Dev Containers have user keys forwarded into the container that could be compromised.\n\nThis feature disables critical security protections and makes it much easier for an attacker to compromise the machine.\n\nNote: This setting only controls tool approval and does not prevent the agent from asking questions. To automatically answer agent questions, use the `#chat.autoReply#` setting."
|
|
452
448
|
))
|
|
453
449
|
}
|
|
@@ -465,7 +461,7 @@ configurationRegistry.registerConfiguration({
|
|
|
465
461
|
"**/*-lock.{yaml,json}": false
|
|
466
462
|
},
|
|
467
463
|
markdownDescription: ( localize(
|
|
468
|
-
|
|
464
|
+
5628,
|
|
469
465
|
"Controls whether edits made by the agent are automatically approved. The default is to approve all edits except those made to certain files which have the potential to cause immediate unintended side-effects, such as `**/.vscode/*.json`.\n\nSet to `true` to automatically approve edits to matching files, `false` to always require explicit approval. The last pattern matching a given file will determine whether the edit is automatically approved."
|
|
470
466
|
)),
|
|
471
467
|
type: "object",
|
|
@@ -479,7 +475,7 @@ configurationRegistry.registerConfiguration({
|
|
|
479
475
|
"https://github.com/microsoft/vscode/wiki/*": true
|
|
480
476
|
},
|
|
481
477
|
markdownDescription: ( localize(
|
|
482
|
-
|
|
478
|
+
5629,
|
|
483
479
|
"Controls which URLs are automatically approved when requested by chat tools. Keys are URL patterns and values can be `true` to approve both requests and responses, `false` to deny, or an object with `approveRequest` and `approveResponse` properties for granular control.\n\nExamples:\n- `\"https://example.com\": true` - Approve all requests to example.com\n- `\"https://*.example.com\": true` - Approve all requests to any subdomain of example.com\n- `\"https://example.com/api/*\": { \"approveRequest\": true, \"approveResponse\": false }` - Approve requests but not responses for example.com/api paths"
|
|
484
480
|
)),
|
|
485
481
|
type: "object",
|
|
@@ -502,7 +498,7 @@ configurationRegistry.registerConfiguration({
|
|
|
502
498
|
[ChatConfiguration.EligibleForAutoApproval]: {
|
|
503
499
|
default: {},
|
|
504
500
|
markdownDescription: ( localize(
|
|
505
|
-
|
|
501
|
+
5630,
|
|
506
502
|
"Controls which tools are eligible for automatic approval. Tools set to 'false' will always present a confirmation and will never offer the option to auto-approve. The default behavior (or setting a tool to 'true') may result in the tool offering auto-approval options."
|
|
507
503
|
)),
|
|
508
504
|
type: "object",
|
|
@@ -525,7 +521,7 @@ configurationRegistry.registerConfiguration({
|
|
|
525
521
|
description: {
|
|
526
522
|
key: "chat.tools.eligibleForAutoApproval",
|
|
527
523
|
value: ( localize(
|
|
528
|
-
|
|
524
|
+
5630,
|
|
529
525
|
"Controls which tools are eligible for automatic approval. Tools set to 'false' will always present a confirmation and will never offer the option to auto-approve. The default behavior (or setting a tool to 'true') may result in the tool offering auto-approval options."
|
|
530
526
|
))
|
|
531
527
|
}
|
|
@@ -535,7 +531,7 @@ configurationRegistry.registerConfiguration({
|
|
|
535
531
|
"chat.sendElementsToChat.enabled": {
|
|
536
532
|
default: true,
|
|
537
533
|
description: ( localize(
|
|
538
|
-
|
|
534
|
+
5631,
|
|
539
535
|
"Controls whether elements can be sent to chat from the Simple Browser."
|
|
540
536
|
)),
|
|
541
537
|
type: "boolean",
|
|
@@ -544,7 +540,7 @@ configurationRegistry.registerConfiguration({
|
|
|
544
540
|
"chat.sendElementsToChat.attachCSS": {
|
|
545
541
|
default: true,
|
|
546
542
|
markdownDescription: ( localize(
|
|
547
|
-
|
|
543
|
+
5632,
|
|
548
544
|
"Controls whether CSS of the selected element will be added to the chat. {0} must be enabled.",
|
|
549
545
|
"`#chat.sendElementsToChat.enabled#`"
|
|
550
546
|
)),
|
|
@@ -554,7 +550,7 @@ configurationRegistry.registerConfiguration({
|
|
|
554
550
|
"chat.sendElementsToChat.attachImages": {
|
|
555
551
|
default: true,
|
|
556
552
|
markdownDescription: ( localize(
|
|
557
|
-
|
|
553
|
+
5633,
|
|
558
554
|
"Controls whether a screenshot of the selected element will be added to the chat. {0} must be enabled.",
|
|
559
555
|
"`#chat.sendElementsToChat.enabled#`"
|
|
560
556
|
)),
|
|
@@ -563,21 +559,86 @@ configurationRegistry.registerConfiguration({
|
|
|
563
559
|
},
|
|
564
560
|
[ChatConfiguration.ArtifactsEnabled]: {
|
|
565
561
|
default: false,
|
|
566
|
-
description: ( localize(
|
|
562
|
+
description: ( localize(5634, "Controls whether the artifacts view is available in chat.")),
|
|
567
563
|
type: "boolean",
|
|
568
564
|
tags: ["experimental"]
|
|
569
565
|
},
|
|
566
|
+
[ChatConfiguration.ArtifactsMode]: {
|
|
567
|
+
default: "rules",
|
|
568
|
+
description: ( localize(
|
|
569
|
+
5635,
|
|
570
|
+
"Controls how artifacts are populated. 'rules' extracts artifacts deterministically from the conversation. 'tool' lets the model set artifacts via a tool call."
|
|
571
|
+
)),
|
|
572
|
+
type: "string",
|
|
573
|
+
enum: ["rules", "tool"],
|
|
574
|
+
tags: ["experimental"]
|
|
575
|
+
},
|
|
576
|
+
[ChatConfiguration.ArtifactsRulesByMimeType]: {
|
|
577
|
+
default: {
|
|
578
|
+
"image/*": {
|
|
579
|
+
groupName: "Screenshots",
|
|
580
|
+
onlyShowGroup: true
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
description: ( localize(
|
|
584
|
+
5636,
|
|
585
|
+
"Rules for extracting artifacts from tool results by MIME type. Maps MIME type patterns (e.g. 'image/*') to group configuration."
|
|
586
|
+
)),
|
|
587
|
+
type: "object",
|
|
588
|
+
additionalProperties: {
|
|
589
|
+
type: "object",
|
|
590
|
+
properties: {
|
|
591
|
+
groupName: {
|
|
592
|
+
type: "string",
|
|
593
|
+
description: ( localize(5637, "Display name for the artifact group."))
|
|
594
|
+
},
|
|
595
|
+
onlyShowGroup: {
|
|
596
|
+
type: "boolean",
|
|
597
|
+
description: ( localize(5638, "When true, show only the group header instead of individual items."))
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
required: ["groupName"]
|
|
601
|
+
},
|
|
602
|
+
tags: ["experimental"]
|
|
603
|
+
},
|
|
604
|
+
[ChatConfiguration.ArtifactsRulesByFilePath]: {
|
|
605
|
+
default: {
|
|
606
|
+
"**/*plan*.md": {
|
|
607
|
+
groupName: "Plans"
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
description: ( localize(
|
|
611
|
+
5639,
|
|
612
|
+
"Rules for extracting artifacts from written files by file path pattern. Maps glob patterns to group configuration."
|
|
613
|
+
)),
|
|
614
|
+
type: "object",
|
|
615
|
+
additionalProperties: {
|
|
616
|
+
type: "object",
|
|
617
|
+
properties: {
|
|
618
|
+
groupName: {
|
|
619
|
+
type: "string",
|
|
620
|
+
description: ( localize(5640, "Display name for the artifact group."))
|
|
621
|
+
},
|
|
622
|
+
onlyShowGroup: {
|
|
623
|
+
type: "boolean",
|
|
624
|
+
description: ( localize(5641, "When true, show only the group header instead of individual items."))
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
required: ["groupName"]
|
|
628
|
+
},
|
|
629
|
+
tags: ["experimental"]
|
|
630
|
+
},
|
|
570
631
|
"chat.undoRequests.restoreInput": {
|
|
571
632
|
default: true,
|
|
572
633
|
markdownDescription: ( localize(
|
|
573
|
-
|
|
634
|
+
5642,
|
|
574
635
|
"Controls whether the input of the chat should be restored when an undo request is made. The input will be filled with the text of the request that was restored."
|
|
575
636
|
)),
|
|
576
637
|
type: "boolean"
|
|
577
638
|
},
|
|
578
639
|
"chat.editRequests": {
|
|
579
640
|
markdownDescription: ( localize(
|
|
580
|
-
|
|
641
|
+
5643,
|
|
581
642
|
"Enables editing of requests in the chat. This allows you to change the request content and resubmit it to the model."
|
|
582
643
|
)),
|
|
583
644
|
type: "string",
|
|
@@ -588,7 +649,7 @@ configurationRegistry.registerConfiguration({
|
|
|
588
649
|
type: "boolean",
|
|
589
650
|
default: true,
|
|
590
651
|
description: ( localize(
|
|
591
|
-
|
|
652
|
+
5644,
|
|
592
653
|
"Show chat agent sessions when chat is empty or to the side when chat view is wide enough."
|
|
593
654
|
))
|
|
594
655
|
},
|
|
@@ -596,15 +657,15 @@ configurationRegistry.registerConfiguration({
|
|
|
596
657
|
type: "string",
|
|
597
658
|
enum: ["stacked", "sideBySide"],
|
|
598
659
|
enumDescriptions: [( localize(
|
|
599
|
-
|
|
660
|
+
5645,
|
|
600
661
|
"Display chat sessions vertically stacked above the chat input unless a chat session is visible."
|
|
601
662
|
)), ( localize(
|
|
602
|
-
|
|
663
|
+
5646,
|
|
603
664
|
"Display chat sessions side by side if space is sufficient, otherwise fallback to stacked above the chat input unless a chat session is visible."
|
|
604
665
|
))],
|
|
605
666
|
default: "sideBySide",
|
|
606
667
|
description: ( localize(
|
|
607
|
-
|
|
668
|
+
5647,
|
|
608
669
|
"Controls the orientation of the chat agent sessions view when it is shown alongside the chat."
|
|
609
670
|
))
|
|
610
671
|
},
|
|
@@ -612,28 +673,28 @@ configurationRegistry.registerConfiguration({
|
|
|
612
673
|
type: "boolean",
|
|
613
674
|
default: false,
|
|
614
675
|
description: ( localize(
|
|
615
|
-
|
|
676
|
+
5648,
|
|
616
677
|
"Show a progress badge on the chat view when an agent session is in progress that is opened in that view."
|
|
617
678
|
))
|
|
618
679
|
},
|
|
619
680
|
[ChatConfiguration.ChatContextUsageEnabled]: {
|
|
620
681
|
type: "boolean",
|
|
621
682
|
default: true,
|
|
622
|
-
description: ( localize(
|
|
683
|
+
description: ( localize(5649, "Show the context window usage indicator in the chat input."))
|
|
623
684
|
},
|
|
624
685
|
[ChatConfiguration.NotifyWindowOnResponseReceived]: {
|
|
625
686
|
type: "string",
|
|
626
687
|
enum: ["off", "windowNotFocused", "always"],
|
|
627
|
-
enumDescriptions: [( localize(
|
|
628
|
-
|
|
688
|
+
enumDescriptions: [( localize(5650, "Never show OS notifications for responses.")), ( localize(
|
|
689
|
+
5651,
|
|
629
690
|
"Show OS notifications for responses when the window is not focused."
|
|
630
691
|
)), ( localize(
|
|
631
|
-
|
|
692
|
+
5652,
|
|
632
693
|
"Always show OS notifications for responses, even when the window is focused."
|
|
633
694
|
))],
|
|
634
695
|
default: "windowNotFocused",
|
|
635
696
|
description: ( localize(
|
|
636
|
-
|
|
697
|
+
5653,
|
|
637
698
|
"Controls whether a chat session should present the user with an OS notification when a response is received. This includes a window badge as well as notification toast."
|
|
638
699
|
))
|
|
639
700
|
},
|
|
@@ -641,23 +702,23 @@ configurationRegistry.registerConfiguration({
|
|
|
641
702
|
type: "boolean",
|
|
642
703
|
default: true,
|
|
643
704
|
description: ( localize(
|
|
644
|
-
|
|
705
|
+
5654,
|
|
645
706
|
"Enables checkpoints in chat. Checkpoints allow you to restore the chat to a previous state."
|
|
646
707
|
))
|
|
647
708
|
},
|
|
648
709
|
"chat.checkpoints.showFileChanges": {
|
|
649
710
|
type: "boolean",
|
|
650
|
-
description: ( localize(
|
|
711
|
+
description: ( localize(5655, "Controls whether to show chat checkpoint file changes.")),
|
|
651
712
|
default: false
|
|
652
713
|
},
|
|
653
714
|
[mcpAccessConfig]: {
|
|
654
715
|
type: "string",
|
|
655
|
-
description: ( localize(
|
|
716
|
+
description: ( localize(5656, "Controls access to installed Model Context Protocol servers.")),
|
|
656
717
|
enum: [McpAccessValue.None, McpAccessValue.Registry, McpAccessValue.All],
|
|
657
|
-
enumDescriptions: [( localize(
|
|
658
|
-
|
|
718
|
+
enumDescriptions: [( localize(5657, "No access to MCP servers.")), ( localize(
|
|
719
|
+
5658,
|
|
659
720
|
"Allows access to MCP servers installed from the registry that VS Code is connected to."
|
|
660
|
-
)), ( localize(
|
|
721
|
+
)), ( localize(5659, "Allow access to any installed MCP server."))],
|
|
661
722
|
default: McpAccessValue.All,
|
|
662
723
|
policy: {
|
|
663
724
|
name: "ChatMCP",
|
|
@@ -675,20 +736,20 @@ configurationRegistry.registerConfiguration({
|
|
|
675
736
|
localization: {
|
|
676
737
|
description: {
|
|
677
738
|
key: "chat.mcp.access",
|
|
678
|
-
value: ( localize(
|
|
739
|
+
value: ( localize(5656, "Controls access to installed Model Context Protocol servers."))
|
|
679
740
|
},
|
|
680
741
|
enumDescriptions: [{
|
|
681
742
|
key: "chat.mcp.access.none",
|
|
682
|
-
value: ( localize(
|
|
743
|
+
value: ( localize(5657, "No access to MCP servers."))
|
|
683
744
|
}, {
|
|
684
745
|
key: "chat.mcp.access.registry",
|
|
685
746
|
value: ( localize(
|
|
686
|
-
|
|
747
|
+
5658,
|
|
687
748
|
"Allows access to MCP servers installed from the registry that VS Code is connected to."
|
|
688
749
|
))
|
|
689
750
|
}, {
|
|
690
751
|
key: "chat.mcp.access.any",
|
|
691
|
-
value: ( localize(
|
|
752
|
+
value: ( localize(5659, "Allow access to any installed MCP server."))
|
|
692
753
|
}]
|
|
693
754
|
}
|
|
694
755
|
}
|
|
@@ -696,7 +757,7 @@ configurationRegistry.registerConfiguration({
|
|
|
696
757
|
[mcpAutoStartConfig]: {
|
|
697
758
|
type: "string",
|
|
698
759
|
description: ( localize(
|
|
699
|
-
|
|
760
|
+
5660,
|
|
700
761
|
"Controls whether MCP servers should be automatically started when the chat messages are submitted."
|
|
701
762
|
)),
|
|
702
763
|
default: McpAutoStartValue.NewAndOutdated,
|
|
@@ -705,8 +766,8 @@ configurationRegistry.registerConfiguration({
|
|
|
705
766
|
McpAutoStartValue.OnlyNew,
|
|
706
767
|
McpAutoStartValue.NewAndOutdated
|
|
707
768
|
],
|
|
708
|
-
enumDescriptions: [( localize(
|
|
709
|
-
|
|
769
|
+
enumDescriptions: [( localize(5661, "Never automatically start MCP servers.")), ( localize(5662, "Only automatically start new MCP servers that have never been run.")), ( localize(
|
|
770
|
+
5663,
|
|
710
771
|
"Automatically start new and outdated MCP servers that are not yet running."
|
|
711
772
|
))],
|
|
712
773
|
tags: ["experimental"]
|
|
@@ -714,7 +775,7 @@ configurationRegistry.registerConfiguration({
|
|
|
714
775
|
[mcpAppsEnabledConfig]: {
|
|
715
776
|
type: "boolean",
|
|
716
777
|
description: ( localize(
|
|
717
|
-
|
|
778
|
+
5664,
|
|
718
779
|
"Controls whether MCP servers can provide custom UI for tool invocations."
|
|
719
780
|
)),
|
|
720
781
|
default: true,
|
|
@@ -723,9 +784,9 @@ configurationRegistry.registerConfiguration({
|
|
|
723
784
|
[mcpServerSamplingSection]: {
|
|
724
785
|
type: "object",
|
|
725
786
|
description: ( localize(
|
|
726
|
-
|
|
787
|
+
5665,
|
|
727
788
|
"Configures which models are exposed to MCP servers for sampling (making model requests in the background). This setting can be edited in a graphical way under the `{0}` command.",
|
|
728
|
-
"MCP: " + ( localize(
|
|
789
|
+
"MCP: " + ( localize(5666, "List Servers"))
|
|
729
790
|
)),
|
|
730
791
|
scope: ConfigurationScope.RESOURCE,
|
|
731
792
|
additionalProperties: {
|
|
@@ -734,7 +795,7 @@ configurationRegistry.registerConfiguration({
|
|
|
734
795
|
allowedDuringChat: {
|
|
735
796
|
type: "boolean",
|
|
736
797
|
description: ( localize(
|
|
737
|
-
|
|
798
|
+
5667,
|
|
738
799
|
"Whether this server is make sampling requests during its tool calls in a chat session."
|
|
739
800
|
)),
|
|
740
801
|
default: true
|
|
@@ -742,7 +803,7 @@ configurationRegistry.registerConfiguration({
|
|
|
742
803
|
allowedOutsideChat: {
|
|
743
804
|
type: "boolean",
|
|
744
805
|
description: ( localize(
|
|
745
|
-
|
|
806
|
+
5668,
|
|
746
807
|
"Whether this server is allowed to make sampling requests outside of a chat session."
|
|
747
808
|
)),
|
|
748
809
|
default: false
|
|
@@ -751,7 +812,7 @@ configurationRegistry.registerConfiguration({
|
|
|
751
812
|
type: "array",
|
|
752
813
|
items: {
|
|
753
814
|
type: "string",
|
|
754
|
-
description: ( localize(
|
|
815
|
+
description: ( localize(5669, "A model the MCP server has access to."))
|
|
755
816
|
}
|
|
756
817
|
}
|
|
757
818
|
}
|
|
@@ -760,7 +821,7 @@ configurationRegistry.registerConfiguration({
|
|
|
760
821
|
[AssistedTypes[AddConfigurationType.NuGetPackage].enabledConfigKey]: {
|
|
761
822
|
type: "boolean",
|
|
762
823
|
description: ( localize(
|
|
763
|
-
|
|
824
|
+
5670,
|
|
764
825
|
"Enables NuGet packages for AI-assisted MCP server installation. Used to install MCP servers by name from the central registry for .NET packages (NuGet.org)."
|
|
765
826
|
)),
|
|
766
827
|
default: false,
|
|
@@ -771,7 +832,7 @@ configurationRegistry.registerConfiguration({
|
|
|
771
832
|
},
|
|
772
833
|
[ChatConfiguration.ExtensionToolsEnabled]: {
|
|
773
834
|
type: "boolean",
|
|
774
|
-
description: ( localize(
|
|
835
|
+
description: ( localize(5671, "Enable using tools contributed by third-party extensions.")),
|
|
775
836
|
default: true,
|
|
776
837
|
policy: {
|
|
777
838
|
name: "ChatAgentExtensionTools",
|
|
@@ -780,14 +841,14 @@ configurationRegistry.registerConfiguration({
|
|
|
780
841
|
localization: {
|
|
781
842
|
description: {
|
|
782
843
|
key: "chat.extensionToolsEnabled",
|
|
783
|
-
value: ( localize(
|
|
844
|
+
value: ( localize(5671, "Enable using tools contributed by third-party extensions."))
|
|
784
845
|
}
|
|
785
846
|
}
|
|
786
847
|
}
|
|
787
848
|
},
|
|
788
849
|
[ChatConfiguration.PluginsEnabled]: {
|
|
789
850
|
type: "boolean",
|
|
790
|
-
description: ( localize(
|
|
851
|
+
description: ( localize(5672, "Enable agent plugin integration in chat.")),
|
|
791
852
|
default: true,
|
|
792
853
|
tags: ["preview"]
|
|
793
854
|
},
|
|
@@ -798,7 +859,7 @@ configurationRegistry.registerConfiguration({
|
|
|
798
859
|
},
|
|
799
860
|
restricted: true,
|
|
800
861
|
markdownDescription: ( localize(
|
|
801
|
-
|
|
862
|
+
5673,
|
|
802
863
|
"Plugin directories to discover. Each key is a path that points directly to a plugin folder, and the value enables (`true`) or disables (`false`) it. Paths can be absolute, relative to the workspace root, or start with `~/` for the user's home directory."
|
|
803
864
|
)),
|
|
804
865
|
scope: ConfigurationScope.MACHINE,
|
|
@@ -810,7 +871,7 @@ configurationRegistry.registerConfiguration({
|
|
|
810
871
|
type: "string"
|
|
811
872
|
},
|
|
812
873
|
markdownDescription: ( localize(
|
|
813
|
-
|
|
874
|
+
5674,
|
|
814
875
|
"Plugin marketplaces to query. Entries may be GitHub shorthand (`owner/repo`), direct Git repository URIs (`https://...git`, `ssh://...git`, or `git@host:path.git`), or local repository URIs (`file:///...`). Equivalent GitHub shorthand and URI entries are deduplicated."
|
|
815
876
|
)),
|
|
816
877
|
default: ["github/copilot-plugins", "github/awesome-copilot"],
|
|
@@ -820,7 +881,7 @@ configurationRegistry.registerConfiguration({
|
|
|
820
881
|
[ChatConfiguration.AgentEnabled]: {
|
|
821
882
|
type: "boolean",
|
|
822
883
|
description: ( localize(
|
|
823
|
-
|
|
884
|
+
5675,
|
|
824
885
|
"When enabled, agent mode can be activated from chat and tools in agentic contexts with side effects can be used."
|
|
825
886
|
)),
|
|
826
887
|
default: true,
|
|
@@ -834,7 +895,7 @@ configurationRegistry.registerConfiguration({
|
|
|
834
895
|
description: {
|
|
835
896
|
key: "chat.agent.enabled.description",
|
|
836
897
|
value: ( localize(
|
|
837
|
-
|
|
898
|
+
5675,
|
|
838
899
|
"When enabled, agent mode can be activated from chat and tools in agentic contexts with side effects can be used."
|
|
839
900
|
))
|
|
840
901
|
}
|
|
@@ -843,7 +904,17 @@ configurationRegistry.registerConfiguration({
|
|
|
843
904
|
},
|
|
844
905
|
[AgentHostEnabledSettingId]: {
|
|
845
906
|
type: "boolean",
|
|
846
|
-
description: ( localize(
|
|
907
|
+
description: ( localize(5676, "When enabled, some agents run in a separate agent host process.")),
|
|
908
|
+
default: false,
|
|
909
|
+
tags: ["experimental", "advanced"],
|
|
910
|
+
included: product.quality !== "stable"
|
|
911
|
+
},
|
|
912
|
+
[AgentHostIpcLoggingSettingId]: {
|
|
913
|
+
type: "boolean",
|
|
914
|
+
description: ( localize(
|
|
915
|
+
5677,
|
|
916
|
+
"When enabled, logs all IPC traffic for each agent host to a dedicated output channel."
|
|
917
|
+
)),
|
|
847
918
|
default: false,
|
|
848
919
|
tags: ["experimental", "advanced"],
|
|
849
920
|
included: product.quality !== "stable"
|
|
@@ -851,7 +922,7 @@ configurationRegistry.registerConfiguration({
|
|
|
851
922
|
[ChatConfiguration.PlanAgentDefaultModel]: {
|
|
852
923
|
type: "string",
|
|
853
924
|
description: ( localize(
|
|
854
|
-
|
|
925
|
+
5678,
|
|
855
926
|
"Select the default language model to use for the Plan agent from the available providers."
|
|
856
927
|
)),
|
|
857
928
|
default: "",
|
|
@@ -862,7 +933,7 @@ configurationRegistry.registerConfiguration({
|
|
|
862
933
|
[ChatConfiguration.ExploreAgentDefaultModel]: {
|
|
863
934
|
type: "string",
|
|
864
935
|
description: ( localize(
|
|
865
|
-
|
|
936
|
+
5679,
|
|
866
937
|
"Select the default language model to use for the Explore subagent from the available providers."
|
|
867
938
|
)),
|
|
868
939
|
default: "",
|
|
@@ -873,19 +944,19 @@ configurationRegistry.registerConfiguration({
|
|
|
873
944
|
[ChatConfiguration.RequestQueueingDefaultAction]: {
|
|
874
945
|
type: "string",
|
|
875
946
|
enum: ["queue", "steer"],
|
|
876
|
-
enumDescriptions: [( localize(
|
|
877
|
-
|
|
947
|
+
enumDescriptions: [( localize(5680, "Queue the message to send after the current request completes.")), ( localize(
|
|
948
|
+
5681,
|
|
878
949
|
"Steer the current request by sending the message immediately, signaling the current request to yield."
|
|
879
950
|
))],
|
|
880
951
|
description: ( localize(
|
|
881
|
-
|
|
952
|
+
5682,
|
|
882
953
|
"Controls which action is the default for the queue button when a request is in progress."
|
|
883
954
|
)),
|
|
884
955
|
default: "steer"
|
|
885
956
|
},
|
|
886
957
|
[ChatConfiguration.EditModeHidden]: {
|
|
887
958
|
type: "boolean",
|
|
888
|
-
description: ( localize(
|
|
959
|
+
description: ( localize(5683, "When enabled, hides the Edit mode from the chat mode picker.")),
|
|
889
960
|
default: true,
|
|
890
961
|
tags: ["experimental"],
|
|
891
962
|
experiment: {
|
|
@@ -898,20 +969,20 @@ configurationRegistry.registerConfiguration({
|
|
|
898
969
|
localization: {
|
|
899
970
|
description: {
|
|
900
971
|
key: "chat.editMode.hidden",
|
|
901
|
-
value: ( localize(
|
|
972
|
+
value: ( localize(5683, "When enabled, hides the Edit mode from the chat mode picker."))
|
|
902
973
|
}
|
|
903
974
|
}
|
|
904
975
|
}
|
|
905
976
|
},
|
|
906
977
|
[ChatConfiguration.EnableMath]: {
|
|
907
978
|
type: "boolean",
|
|
908
|
-
description: ( localize(
|
|
979
|
+
description: ( localize(5684, "Enable math rendering in chat responses using KaTeX.")),
|
|
909
980
|
default: true
|
|
910
981
|
},
|
|
911
982
|
[ChatConfiguration.ShowCodeBlockProgressAnimation]: {
|
|
912
983
|
type: "boolean",
|
|
913
984
|
description: ( localize(
|
|
914
|
-
|
|
985
|
+
5685,
|
|
915
986
|
"When applying edits, show a progress animation in the code block pill. If disabled, shows the progress percentage instead."
|
|
916
987
|
)),
|
|
917
988
|
default: true,
|
|
@@ -920,7 +991,7 @@ configurationRegistry.registerConfiguration({
|
|
|
920
991
|
["chat.statusWidget.anonymous"]: {
|
|
921
992
|
type: "boolean",
|
|
922
993
|
description: ( localize(
|
|
923
|
-
|
|
994
|
+
5686,
|
|
924
995
|
"Controls whether anonymous users see the status widget in new chat sessions when rate limited."
|
|
925
996
|
)),
|
|
926
997
|
default: false,
|
|
@@ -938,7 +1009,7 @@ configurationRegistry.registerConfiguration({
|
|
|
938
1009
|
additionalProperties: false,
|
|
939
1010
|
default: Object.fromEntries(( allDiscoverySources.map(k => [k, false]))),
|
|
940
1011
|
markdownDescription: ( localize(
|
|
941
|
-
|
|
1012
|
+
5687,
|
|
942
1013
|
"Configures discovery of Model Context Protocol servers from configuration from various other applications."
|
|
943
1014
|
))
|
|
944
1015
|
},
|
|
@@ -947,14 +1018,14 @@ configurationRegistry.registerConfiguration({
|
|
|
947
1018
|
default: false,
|
|
948
1019
|
tags: ["preview"],
|
|
949
1020
|
description: ( localize(
|
|
950
|
-
|
|
1021
|
+
5688,
|
|
951
1022
|
"Enables the default Marketplace for Model Context Protocol (MCP) servers."
|
|
952
1023
|
)),
|
|
953
1024
|
included: product.quality === "stable"
|
|
954
1025
|
},
|
|
955
1026
|
[mcpGalleryServiceUrlConfig]: {
|
|
956
1027
|
type: "string",
|
|
957
|
-
description: ( localize(
|
|
1028
|
+
description: ( localize(5689, "Configure the MCP Gallery service URL to connect to")),
|
|
958
1029
|
default: "",
|
|
959
1030
|
scope: ConfigurationScope.APPLICATION,
|
|
960
1031
|
tags: ["usesOnlineServices", "advanced"],
|
|
@@ -967,16 +1038,16 @@ configurationRegistry.registerConfiguration({
|
|
|
967
1038
|
localization: {
|
|
968
1039
|
description: {
|
|
969
1040
|
key: "mcp.gallery.serviceUrl",
|
|
970
|
-
value: ( localize(
|
|
1041
|
+
value: ( localize(5689, "Configure the MCP Gallery service URL to connect to"))
|
|
971
1042
|
}
|
|
972
1043
|
}
|
|
973
1044
|
}
|
|
974
1045
|
},
|
|
975
1046
|
[PromptsConfig.INSTRUCTIONS_LOCATION_KEY]: {
|
|
976
1047
|
type: "object",
|
|
977
|
-
title: ( localize(
|
|
1048
|
+
title: ( localize(5690, "Instructions File Locations")),
|
|
978
1049
|
markdownDescription: ( localize(
|
|
979
|
-
|
|
1050
|
+
5691,
|
|
980
1051
|
"Specify location(s) of instructions files (`*{0}`) that can be attached in Chat sessions. [Learn More]({1}).\n\nRelative paths are resolved from the root folder(s) of your workspace.",
|
|
981
1052
|
INSTRUCTION_FILE_EXTENSION,
|
|
982
1053
|
INSTRUCTIONS_DOCUMENTATION_URL
|
|
@@ -995,7 +1066,7 @@ configurationRegistry.registerConfiguration({
|
|
|
995
1066
|
propertyNames: {
|
|
996
1067
|
pattern: VALID_PROMPT_FOLDER_PATTERN,
|
|
997
1068
|
patternErrorMessage: ( localize(
|
|
998
|
-
|
|
1069
|
+
5692,
|
|
999
1070
|
"Paths must be relative or start with '~/'. Absolute paths and '\\' separators are not supported. Glob patterns are deprecated and will be removed in future versions."
|
|
1000
1071
|
))
|
|
1001
1072
|
},
|
|
@@ -1010,9 +1081,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1010
1081
|
},
|
|
1011
1082
|
[PromptsConfig.PROMPT_LOCATIONS_KEY]: {
|
|
1012
1083
|
type: "object",
|
|
1013
|
-
title: ( localize(
|
|
1084
|
+
title: ( localize(5693, "Prompt File Locations")),
|
|
1014
1085
|
markdownDescription: ( localize(
|
|
1015
|
-
|
|
1086
|
+
5694,
|
|
1016
1087
|
"Specify location(s) of reusable prompt files (`*{0}`) that can be run in Chat sessions. [Learn More]({1}).\n\nRelative paths are resolved from the root folder(s) of your workspace.",
|
|
1017
1088
|
PROMPT_FILE_EXTENSION,
|
|
1018
1089
|
PROMPT_DOCUMENTATION_URL
|
|
@@ -1029,7 +1100,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1029
1100
|
propertyNames: {
|
|
1030
1101
|
pattern: VALID_PROMPT_FOLDER_PATTERN,
|
|
1031
1102
|
patternErrorMessage: ( localize(
|
|
1032
|
-
|
|
1103
|
+
5695,
|
|
1033
1104
|
"Paths must be relative or start with '~/'. Absolute paths and '\\' separators are not supported. Glob patterns are deprecated and will be removed in future versions."
|
|
1034
1105
|
))
|
|
1035
1106
|
},
|
|
@@ -1044,9 +1115,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1044
1115
|
},
|
|
1045
1116
|
[PromptsConfig.MODE_LOCATION_KEY]: {
|
|
1046
1117
|
type: "object",
|
|
1047
|
-
title: ( localize(
|
|
1118
|
+
title: ( localize(5696, "Mode File Locations")),
|
|
1048
1119
|
markdownDescription: ( localize(
|
|
1049
|
-
|
|
1120
|
+
5697,
|
|
1050
1121
|
"Specify location(s) of custom chat mode files (`*{0}`). [Learn More]({1}).\n\nRelative paths are resolved from the root folder(s) of your workspace.",
|
|
1051
1122
|
LEGACY_MODE_FILE_EXTENSION,
|
|
1052
1123
|
AGENT_DOCUMENTATION_URL
|
|
@@ -1055,7 +1126,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1055
1126
|
[LEGACY_MODE_DEFAULT_SOURCE_FOLDER]: true
|
|
1056
1127
|
},
|
|
1057
1128
|
deprecationMessage: ( localize(
|
|
1058
|
-
|
|
1129
|
+
5698,
|
|
1059
1130
|
"This setting is deprecated and will be removed in future releases. Chat modes are now called custom agents and are located in `.github/agents`"
|
|
1060
1131
|
)),
|
|
1061
1132
|
additionalProperties: {
|
|
@@ -1081,9 +1152,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1081
1152
|
},
|
|
1082
1153
|
[PromptsConfig.AGENTS_LOCATION_KEY]: {
|
|
1083
1154
|
type: "object",
|
|
1084
|
-
title: ( localize(
|
|
1155
|
+
title: ( localize(5699, "Agent File Locations")),
|
|
1085
1156
|
markdownDescription: ( localize(
|
|
1086
|
-
|
|
1157
|
+
5700,
|
|
1087
1158
|
"Specify location(s) of custom agent files (`*{0}`). [Learn More]({1}).\n\nRelative paths are resolved from the root folder(s) of your workspace.",
|
|
1088
1159
|
AGENT_FILE_EXTENSION,
|
|
1089
1160
|
AGENT_DOCUMENTATION_URL
|
|
@@ -1099,7 +1170,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1099
1170
|
propertyNames: {
|
|
1100
1171
|
pattern: VALID_PROMPT_FOLDER_PATTERN,
|
|
1101
1172
|
patternErrorMessage: ( localize(
|
|
1102
|
-
|
|
1173
|
+
5701,
|
|
1103
1174
|
"Paths must be relative or start with '~/'. Absolute paths and '\\' separators are not supported."
|
|
1104
1175
|
))
|
|
1105
1176
|
},
|
|
@@ -1116,9 +1187,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1116
1187
|
},
|
|
1117
1188
|
[PromptsConfig.USE_AGENT_MD]: {
|
|
1118
1189
|
type: "boolean",
|
|
1119
|
-
title: ( localize(
|
|
1190
|
+
title: ( localize(5702, "Use AGENTS.md file")),
|
|
1120
1191
|
markdownDescription: ( localize(
|
|
1121
|
-
|
|
1192
|
+
5703,
|
|
1122
1193
|
"Controls whether instructions from `AGENTS.md` file found in a workspace roots are attached to all chat requests."
|
|
1123
1194
|
)),
|
|
1124
1195
|
default: true,
|
|
@@ -1128,9 +1199,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1128
1199
|
},
|
|
1129
1200
|
[PromptsConfig.USE_NESTED_AGENT_MD]: {
|
|
1130
1201
|
type: "boolean",
|
|
1131
|
-
title: ( localize(
|
|
1202
|
+
title: ( localize(5704, "Use nested AGENTS.md files")),
|
|
1132
1203
|
markdownDescription: ( localize(
|
|
1133
|
-
|
|
1204
|
+
5705,
|
|
1134
1205
|
"Controls whether instructions from nested `AGENTS.md` files found in the workspace are listed in all chat requests. The language model can load these skills on-demand if the `read` tool is available."
|
|
1135
1206
|
)),
|
|
1136
1207
|
default: false,
|
|
@@ -1146,9 +1217,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1146
1217
|
},
|
|
1147
1218
|
[PromptsConfig.USE_CLAUDE_MD]: {
|
|
1148
1219
|
type: "boolean",
|
|
1149
|
-
title: ( localize(
|
|
1220
|
+
title: ( localize(5706, "Use CLAUDE.md file")),
|
|
1150
1221
|
markdownDescription: ( localize(
|
|
1151
|
-
|
|
1222
|
+
5707,
|
|
1152
1223
|
"Controls whether instructions from `CLAUDE.md` file found in workspace roots, .claude and ~/.claude folder are attached to all chat requests."
|
|
1153
1224
|
)),
|
|
1154
1225
|
default: true,
|
|
@@ -1158,9 +1229,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1158
1229
|
},
|
|
1159
1230
|
[PromptsConfig.USE_AGENT_SKILLS]: {
|
|
1160
1231
|
type: "boolean",
|
|
1161
|
-
title: ( localize(
|
|
1232
|
+
title: ( localize(5708, "Use Agent skills")),
|
|
1162
1233
|
markdownDescription: ( localize(
|
|
1163
|
-
|
|
1234
|
+
5709,
|
|
1164
1235
|
"Controls whether skills are provided as specialized capabilities to the chat requests. Skills are loaded from the folders configured in `#chat.agentSkillsLocations#`. The language model can load these skills on-demand if the `read` tool is available. Learn more about [Agent Skills](https://aka.ms/vscode-agent-skills)."
|
|
1165
1236
|
)),
|
|
1166
1237
|
default: true,
|
|
@@ -1170,9 +1241,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1170
1241
|
},
|
|
1171
1242
|
[PromptsConfig.USE_SKILL_ADHERENCE_PROMPT]: {
|
|
1172
1243
|
type: "boolean",
|
|
1173
|
-
title: ( localize(
|
|
1244
|
+
title: ( localize(5710, "Use Skill Adherence Prompt")),
|
|
1174
1245
|
markdownDescription: ( localize(
|
|
1175
|
-
|
|
1246
|
+
5711,
|
|
1176
1247
|
"Controls whether a stronger skill adherence prompt is used that encourages the model to immediately invoke skills when relevant rather than just announcing them."
|
|
1177
1248
|
)),
|
|
1178
1249
|
default: false,
|
|
@@ -1191,9 +1262,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1191
1262
|
},
|
|
1192
1263
|
[PromptsConfig.INCLUDE_APPLYING_INSTRUCTIONS]: {
|
|
1193
1264
|
type: "boolean",
|
|
1194
|
-
title: ( localize(
|
|
1265
|
+
title: ( localize(5712, "Include Applying Instructions")),
|
|
1195
1266
|
markdownDescription: ( localize(
|
|
1196
|
-
|
|
1267
|
+
5713,
|
|
1197
1268
|
"Controls whether instructions with a matching 'applyTo' attribute are automatically included in chat requests."
|
|
1198
1269
|
)),
|
|
1199
1270
|
default: true,
|
|
@@ -1203,9 +1274,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1203
1274
|
},
|
|
1204
1275
|
[PromptsConfig.INCLUDE_REFERENCED_INSTRUCTIONS]: {
|
|
1205
1276
|
type: "boolean",
|
|
1206
|
-
title: ( localize(
|
|
1277
|
+
title: ( localize(5714, "Include Referenced Instructions")),
|
|
1207
1278
|
markdownDescription: ( localize(
|
|
1208
|
-
|
|
1279
|
+
5715,
|
|
1209
1280
|
"Controls whether referenced instructions are automatically included in chat requests."
|
|
1210
1281
|
)),
|
|
1211
1282
|
default: false,
|
|
@@ -1215,9 +1286,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1215
1286
|
},
|
|
1216
1287
|
[PromptsConfig.USE_CUSTOMIZATIONS_IN_PARENT_REPOS]: {
|
|
1217
1288
|
type: "boolean",
|
|
1218
|
-
title: ( localize(
|
|
1289
|
+
title: ( localize(5716, "Use Customizations in Parent Repositories")),
|
|
1219
1290
|
markdownDescription: ( localize(
|
|
1220
|
-
|
|
1291
|
+
5717,
|
|
1221
1292
|
"Controls whether to use chat customization files in parent repositories."
|
|
1222
1293
|
)),
|
|
1223
1294
|
default: false,
|
|
@@ -1227,9 +1298,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1227
1298
|
},
|
|
1228
1299
|
[PromptsConfig.SKILLS_LOCATION_KEY]: {
|
|
1229
1300
|
type: "object",
|
|
1230
|
-
title: ( localize(
|
|
1301
|
+
title: ( localize(5718, "Agent Skills Locations")),
|
|
1231
1302
|
markdownDescription: ( localize(
|
|
1232
|
-
|
|
1303
|
+
5719,
|
|
1233
1304
|
"Specify location(s) of agent skills (`{0}`) that can be used in Chat Sessions. [Learn More]({1}).\n\nEach path should contain skill subfolders with SKILL.md files (e.g., add `my-skills` if you have `my-skills/skillA/SKILL.md`). Relative paths are resolved from the root folder(s) of your workspace.",
|
|
1234
1305
|
SKILL_FILENAME,
|
|
1235
1306
|
SKILL_DOCUMENTATION_URL
|
|
@@ -1248,7 +1319,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1248
1319
|
propertyNames: {
|
|
1249
1320
|
pattern: VALID_PROMPT_FOLDER_PATTERN,
|
|
1250
1321
|
patternErrorMessage: ( localize(
|
|
1251
|
-
|
|
1322
|
+
5720,
|
|
1252
1323
|
"Paths must be relative or start with '~/'. Absolute paths and '\\' separators are not supported."
|
|
1253
1324
|
))
|
|
1254
1325
|
},
|
|
@@ -1265,9 +1336,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1265
1336
|
},
|
|
1266
1337
|
[PromptsConfig.HOOKS_LOCATION_KEY]: {
|
|
1267
1338
|
type: "object",
|
|
1268
|
-
title: ( localize(
|
|
1339
|
+
title: ( localize(5721, "Hook File Locations")),
|
|
1269
1340
|
markdownDescription: ( localize(
|
|
1270
|
-
|
|
1341
|
+
5722,
|
|
1271
1342
|
"Specify paths to hook configuration files that define custom shell commands to execute at strategic points in an agent's workflow. [Learn More]({0}).\n\nRelative paths are resolved from the root folder(s) of your workspace. Supports Copilot hooks (`*.json`) and Claude Code hooks (`settings.json`, `settings.local.json`).",
|
|
1272
1343
|
HOOK_DOCUMENTATION_URL
|
|
1273
1344
|
)),
|
|
@@ -1285,7 +1356,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1285
1356
|
propertyNames: {
|
|
1286
1357
|
pattern: VALID_PROMPT_FOLDER_PATTERN,
|
|
1287
1358
|
patternErrorMessage: ( localize(
|
|
1288
|
-
|
|
1359
|
+
5723,
|
|
1289
1360
|
"Paths must be relative or start with '~/'. Absolute paths and '\\' separators are not supported."
|
|
1290
1361
|
))
|
|
1291
1362
|
},
|
|
@@ -1300,9 +1371,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1300
1371
|
},
|
|
1301
1372
|
[PromptsConfig.USE_CHAT_HOOKS]: {
|
|
1302
1373
|
type: "boolean",
|
|
1303
|
-
title: ( localize(
|
|
1374
|
+
title: ( localize(5724, "Use Chat Hooks")),
|
|
1304
1375
|
markdownDescription: ( localize(
|
|
1305
|
-
|
|
1376
|
+
5725,
|
|
1306
1377
|
"Controls whether chat hooks are executed at strategic points during an agent's workflow. Hooks are loaded from the files configured in `#chat.hookFilesLocations#`."
|
|
1307
1378
|
)),
|
|
1308
1379
|
default: true,
|
|
@@ -1318,7 +1389,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1318
1389
|
description: {
|
|
1319
1390
|
key: "chat.useHooks.description",
|
|
1320
1391
|
value: ( localize(
|
|
1321
|
-
|
|
1392
|
+
5725,
|
|
1322
1393
|
"Controls whether chat hooks are executed at strategic points during an agent's workflow. Hooks are loaded from the files configured in `#chat.hookFilesLocations#`."
|
|
1323
1394
|
))
|
|
1324
1395
|
}
|
|
@@ -1327,9 +1398,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1327
1398
|
},
|
|
1328
1399
|
[PromptsConfig.USE_CLAUDE_HOOKS]: {
|
|
1329
1400
|
type: "boolean",
|
|
1330
|
-
title: ( localize(
|
|
1401
|
+
title: ( localize(5726, "Use Claude Hooks")),
|
|
1331
1402
|
markdownDescription: ( localize(
|
|
1332
|
-
|
|
1403
|
+
5727,
|
|
1333
1404
|
"Controls whether hooks from Claude configuration files can execute. When disabled, only Copilot-format hooks are used. Hooks are loaded from the files configured in `#chat.hookFilesLocations#`."
|
|
1334
1405
|
)),
|
|
1335
1406
|
default: false,
|
|
@@ -1339,9 +1410,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1339
1410
|
},
|
|
1340
1411
|
[PromptsConfig.USE_CUSTOM_AGENT_HOOKS]: {
|
|
1341
1412
|
type: "boolean",
|
|
1342
|
-
title: ( localize(
|
|
1413
|
+
title: ( localize(5728, "Use Custom Agent Hooks")),
|
|
1343
1414
|
markdownDescription: ( localize(
|
|
1344
|
-
|
|
1415
|
+
5729,
|
|
1345
1416
|
"Controls whether hooks defined in custom agent frontmatter are parsed and executed. When disabled, hooks from agent files are ignored."
|
|
1346
1417
|
)),
|
|
1347
1418
|
default: false,
|
|
@@ -1352,9 +1423,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1352
1423
|
[PromptsConfig.PROMPT_FILES_SUGGEST_KEY]: {
|
|
1353
1424
|
type: "object",
|
|
1354
1425
|
scope: ConfigurationScope.RESOURCE,
|
|
1355
|
-
title: ( localize(
|
|
1426
|
+
title: ( localize(5730, "Prompt File Recommendations")),
|
|
1356
1427
|
markdownDescription: ( localize(
|
|
1357
|
-
|
|
1428
|
+
5731,
|
|
1358
1429
|
"Configure which prompt files to recommend in the chat welcome view. Each key is a prompt file name, and the value can be `true` to always recommend, `false` to never recommend, or a [when clause](https://aka.ms/vscode-when-clause) expression like `resourceExtname == .js` or `resourceLangId == markdown`."
|
|
1359
1430
|
)),
|
|
1360
1431
|
default: {},
|
|
@@ -1376,7 +1447,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1376
1447
|
type: "boolean",
|
|
1377
1448
|
default: true,
|
|
1378
1449
|
description: ( localize(
|
|
1379
|
-
|
|
1450
|
+
5732,
|
|
1380
1451
|
"Controls whether to show the todo list widget above the chat input. When enabled, the widget displays todo items created by the agent and updates as progress is made."
|
|
1381
1452
|
))
|
|
1382
1453
|
},
|
|
@@ -1384,21 +1455,21 @@ configurationRegistry.registerConfiguration({
|
|
|
1384
1455
|
type: "string",
|
|
1385
1456
|
default: "fixedScrolling",
|
|
1386
1457
|
enum: ["collapsed", "collapsedPreview", "fixedScrolling"],
|
|
1387
|
-
enumDescriptions: [( localize(
|
|
1388
|
-
|
|
1458
|
+
enumDescriptions: [( localize(5733, "Thinking parts will be collapsed by default.")), ( localize(
|
|
1459
|
+
5734,
|
|
1389
1460
|
"Thinking parts will be expanded first, then collapse once we reach a part that is not thinking."
|
|
1390
1461
|
)), ( localize(
|
|
1391
|
-
|
|
1462
|
+
5735,
|
|
1392
1463
|
"Show thinking in a fixed-height streaming panel that auto-scrolls; click header to expand to full height."
|
|
1393
1464
|
))],
|
|
1394
|
-
description: ( localize(
|
|
1465
|
+
description: ( localize(5736, "Controls how thinking is rendered.")),
|
|
1395
1466
|
tags: ["experimental"]
|
|
1396
1467
|
},
|
|
1397
1468
|
[ChatConfiguration.ThinkingGenerateTitles]: {
|
|
1398
1469
|
type: "boolean",
|
|
1399
1470
|
default: true,
|
|
1400
1471
|
description: ( localize(
|
|
1401
|
-
|
|
1472
|
+
5737,
|
|
1402
1473
|
"Controls whether to use an LLM to generate summary titles for thinking sections."
|
|
1403
1474
|
)),
|
|
1404
1475
|
tags: ["experimental"]
|
|
@@ -1407,12 +1478,12 @@ configurationRegistry.registerConfiguration({
|
|
|
1407
1478
|
type: "string",
|
|
1408
1479
|
default: "always",
|
|
1409
1480
|
enum: ["off", "withThinking", "always"],
|
|
1410
|
-
enumDescriptions: [( localize(
|
|
1411
|
-
|
|
1481
|
+
enumDescriptions: [( localize(5738, "Tool calls are shown separately, not collapsed into thinking.")), ( localize(
|
|
1482
|
+
5739,
|
|
1412
1483
|
"Tool calls are collapsed into thinking sections when thinking is present."
|
|
1413
|
-
)), ( localize(
|
|
1484
|
+
)), ( localize(5740, "Tool calls are always collapsed, even without thinking."))],
|
|
1414
1485
|
markdownDescription: ( localize(
|
|
1415
|
-
|
|
1486
|
+
5741,
|
|
1416
1487
|
"Controls how tool calls are displayed in relation to thinking sections."
|
|
1417
1488
|
)),
|
|
1418
1489
|
tags: ["experimental"]
|
|
@@ -1421,7 +1492,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1421
1492
|
type: "boolean",
|
|
1422
1493
|
default: true,
|
|
1423
1494
|
markdownDescription: ( localize(
|
|
1424
|
-
|
|
1495
|
+
5742,
|
|
1425
1496
|
"When enabled, terminal tool calls are displayed inside the thinking dropdown with a simplified view."
|
|
1426
1497
|
)),
|
|
1427
1498
|
tags: ["experimental"]
|
|
@@ -1430,7 +1501,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1430
1501
|
type: "boolean",
|
|
1431
1502
|
default: true,
|
|
1432
1503
|
markdownDescription: ( localize(
|
|
1433
|
-
|
|
1504
|
+
5743,
|
|
1434
1505
|
"When enabled, terminal tool calls are always displayed in a collapsible container with a simplified view."
|
|
1435
1506
|
)),
|
|
1436
1507
|
tags: ["experimental"]
|
|
@@ -1439,7 +1510,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1439
1510
|
type: "boolean",
|
|
1440
1511
|
default: true,
|
|
1441
1512
|
markdownDescription: ( localize(
|
|
1442
|
-
|
|
1513
|
+
5744,
|
|
1443
1514
|
"Controls whether the usages tool is available for finding references, definitions, and implementations of code symbols."
|
|
1444
1515
|
)),
|
|
1445
1516
|
tags: ["preview"],
|
|
@@ -1451,7 +1522,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1451
1522
|
type: "boolean",
|
|
1452
1523
|
default: true,
|
|
1453
1524
|
markdownDescription: ( localize(
|
|
1454
|
-
|
|
1525
|
+
5745,
|
|
1455
1526
|
"Controls whether the rename tool is available for renaming code symbols across the workspace."
|
|
1456
1527
|
)),
|
|
1457
1528
|
tags: ["preview"],
|
|
@@ -1471,7 +1542,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1471
1542
|
enum: ["replace", "append"],
|
|
1472
1543
|
default: "append",
|
|
1473
1544
|
description: ( localize(
|
|
1474
|
-
|
|
1545
|
+
5746,
|
|
1475
1546
|
"'replace' replaces all default phrases entirely; 'append' adds your phrases to all default categories."
|
|
1476
1547
|
))
|
|
1477
1548
|
},
|
|
@@ -1482,14 +1553,14 @@ configurationRegistry.registerConfiguration({
|
|
|
1482
1553
|
},
|
|
1483
1554
|
default: [],
|
|
1484
1555
|
description: ( localize(
|
|
1485
|
-
|
|
1556
|
+
5747,
|
|
1486
1557
|
"Custom loading messages to show during thinking, working progress, terminal, and tool operations."
|
|
1487
1558
|
))
|
|
1488
1559
|
}
|
|
1489
1560
|
},
|
|
1490
1561
|
additionalProperties: false,
|
|
1491
1562
|
markdownDescription: ( localize(
|
|
1492
|
-
|
|
1563
|
+
5748,
|
|
1493
1564
|
"Customize the loading messages shown during agent thinking and progress indicators. Use `\"mode\": \"replace\"` to use only your phrases, or `\"mode\": \"append\"` to add them to the defaults."
|
|
1494
1565
|
)),
|
|
1495
1566
|
tags: ["experimental"]
|
|
@@ -1498,14 +1569,14 @@ configurationRegistry.registerConfiguration({
|
|
|
1498
1569
|
type: "boolean",
|
|
1499
1570
|
default: true,
|
|
1500
1571
|
markdownDescription: ( localize(
|
|
1501
|
-
|
|
1572
|
+
5749,
|
|
1502
1573
|
"When enabled, tool failures are automatically expanded in the chat UI to show error details."
|
|
1503
1574
|
))
|
|
1504
1575
|
},
|
|
1505
1576
|
[ChatConfiguration.AIDisabled]: {
|
|
1506
1577
|
type: "boolean",
|
|
1507
1578
|
description: ( localize(
|
|
1508
|
-
|
|
1579
|
+
5750,
|
|
1509
1580
|
"Disable and hide built-in AI features provided by GitHub Copilot, including chat and inline suggestions."
|
|
1510
1581
|
)),
|
|
1511
1582
|
default: false,
|
|
@@ -1518,7 +1589,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1518
1589
|
description: {
|
|
1519
1590
|
key: "chat.disableAIFeatures",
|
|
1520
1591
|
value: ( localize(
|
|
1521
|
-
|
|
1592
|
+
5750,
|
|
1522
1593
|
"Disable and hide built-in AI features provided by GitHub Copilot, including chat and inline suggestions."
|
|
1523
1594
|
))
|
|
1524
1595
|
}
|
|
@@ -1527,7 +1598,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1527
1598
|
},
|
|
1528
1599
|
"chat.allowAnonymousAccess": {
|
|
1529
1600
|
type: "boolean",
|
|
1530
|
-
description: ( localize(
|
|
1601
|
+
description: ( localize(5751, "Controls whether anonymous access is allowed in chat.")),
|
|
1531
1602
|
default: false,
|
|
1532
1603
|
tags: ["experimental"],
|
|
1533
1604
|
experiment: {
|
|
@@ -1537,7 +1608,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1537
1608
|
[ChatConfiguration.GrowthNotificationEnabled]: {
|
|
1538
1609
|
type: "boolean",
|
|
1539
1610
|
description: ( localize(
|
|
1540
|
-
|
|
1611
|
+
5752,
|
|
1541
1612
|
"Controls whether to show a growth notification in the agent sessions view to encourage new users to try Copilot."
|
|
1542
1613
|
)),
|
|
1543
1614
|
default: false,
|
|
@@ -1546,10 +1617,22 @@ configurationRegistry.registerConfiguration({
|
|
|
1546
1617
|
mode: "auto"
|
|
1547
1618
|
}
|
|
1548
1619
|
},
|
|
1620
|
+
[ChatConfiguration.SignInTitleBarEnabled]: {
|
|
1621
|
+
type: "boolean",
|
|
1622
|
+
description: ( localize(
|
|
1623
|
+
5753,
|
|
1624
|
+
"Controls whether to show a sign-in button in the title bar for users who are not signed in."
|
|
1625
|
+
)),
|
|
1626
|
+
default: false,
|
|
1627
|
+
tags: ["experimental"],
|
|
1628
|
+
experiment: {
|
|
1629
|
+
mode: "auto"
|
|
1630
|
+
}
|
|
1631
|
+
},
|
|
1549
1632
|
[ChatConfiguration.RestoreLastPanelSession]: {
|
|
1550
1633
|
type: "boolean",
|
|
1551
1634
|
description: ( localize(
|
|
1552
|
-
|
|
1635
|
+
5754,
|
|
1553
1636
|
"Controls whether the last session is restored in panel after restart."
|
|
1554
1637
|
)),
|
|
1555
1638
|
default: false
|
|
@@ -1557,7 +1640,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1557
1640
|
[ChatConfiguration.ExitAfterDelegation]: {
|
|
1558
1641
|
type: "boolean",
|
|
1559
1642
|
description: ( localize(
|
|
1560
|
-
|
|
1643
|
+
5755,
|
|
1561
1644
|
"Controls whether the chat panel automatically exits after delegating a request to another session."
|
|
1562
1645
|
)),
|
|
1563
1646
|
default: false,
|
|
@@ -1566,7 +1649,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1566
1649
|
"chat.extensionUnification.enabled": {
|
|
1567
1650
|
type: "boolean",
|
|
1568
1651
|
description: ( localize(
|
|
1569
|
-
|
|
1652
|
+
5756,
|
|
1570
1653
|
"Enables the unification of GitHub Copilot extensions. When enabled, all GitHub Copilot functionality is served from the GitHub Copilot Chat extension. When disabled, the GitHub Copilot and GitHub Copilot Chat extensions operate independently."
|
|
1571
1654
|
)),
|
|
1572
1655
|
default: true,
|
|
@@ -1578,7 +1661,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1578
1661
|
[ChatConfiguration.SubagentToolCustomAgents]: {
|
|
1579
1662
|
type: "boolean",
|
|
1580
1663
|
description: ( localize(
|
|
1581
|
-
|
|
1664
|
+
5757,
|
|
1582
1665
|
"Whether the runSubagent tool is able to use custom agents. When enabled, the tool can take the name of a custom agent, but it must be given the exact name of the agent."
|
|
1583
1666
|
)),
|
|
1584
1667
|
default: true,
|
|
@@ -1588,9 +1671,9 @@ configurationRegistry.registerConfiguration({
|
|
|
1588
1671
|
},
|
|
1589
1672
|
[ChatConfiguration.SubagentsAllowInvocationsFromSubagents]: {
|
|
1590
1673
|
type: "boolean",
|
|
1591
|
-
description: ( localize(
|
|
1674
|
+
description: ( localize(5758, "Allow subagents to invoke subagents.")),
|
|
1592
1675
|
markdownDescription: ( localize(
|
|
1593
|
-
|
|
1676
|
+
5759,
|
|
1594
1677
|
"Controls whether subagents can invoke other subagents. When enabled, nesting is limited to a maximum depth of 5."
|
|
1595
1678
|
)),
|
|
1596
1679
|
default: false,
|
|
@@ -1602,7 +1685,7 @@ configurationRegistry.registerConfiguration({
|
|
|
1602
1685
|
type: "boolean",
|
|
1603
1686
|
tags: ["preview"],
|
|
1604
1687
|
description: ( localize(
|
|
1605
|
-
|
|
1688
|
+
5760,
|
|
1606
1689
|
"Controls whether the Chat Customizations editor is enabled. When enabled, the gear icon in the Chat view opens the Customizations editor directly and additional actions are moved to the overflow menu. When disabled, the gear icon shows the legacy configuration dropdown."
|
|
1607
1690
|
)),
|
|
1608
1691
|
default: true
|
|
@@ -1611,23 +1694,32 @@ configurationRegistry.registerConfiguration({
|
|
|
1611
1694
|
type: "boolean",
|
|
1612
1695
|
tags: ["preview"],
|
|
1613
1696
|
description: ( localize(
|
|
1614
|
-
|
|
1697
|
+
5761,
|
|
1615
1698
|
"Controls whether the harness selector (Local, Copilot CLI, Claude) is shown in the Chat Customizations editor sidebar. When disabled, the editor always shows all customizations without filtering."
|
|
1616
1699
|
)),
|
|
1617
1700
|
default: true
|
|
1701
|
+
},
|
|
1702
|
+
[ChatConfiguration.CustomizationsProviderApi]: {
|
|
1703
|
+
type: "boolean",
|
|
1704
|
+
description: ( localize(
|
|
1705
|
+
5762,
|
|
1706
|
+
"When enabled, the Customizations management UI reads items from the session type's customizations provider instead of built-in discovery."
|
|
1707
|
+
)),
|
|
1708
|
+
default: false,
|
|
1709
|
+
tags: ["experimental"]
|
|
1618
1710
|
}
|
|
1619
1711
|
}
|
|
1620
1712
|
});
|
|
1621
1713
|
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
|
|
1622
|
-
EditorPaneDescriptor.create(ChatEditor, ChatEditorInput.EditorID, ( localize(
|
|
1714
|
+
EditorPaneDescriptor.create(ChatEditor, ChatEditorInput.EditorID, ( localize(5763, "Chat"))),
|
|
1623
1715
|
[( new SyncDescriptor(ChatEditorInput))]
|
|
1624
1716
|
);
|
|
1625
1717
|
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
|
|
1626
|
-
EditorPaneDescriptor.create(ChatDebugEditor, ChatDebugEditorInput.ID, ( localize(
|
|
1718
|
+
EditorPaneDescriptor.create(ChatDebugEditor, ChatDebugEditorInput.ID, ( localize(5764, "Debug View"))),
|
|
1627
1719
|
[( new SyncDescriptor(ChatDebugEditorInput))]
|
|
1628
1720
|
);
|
|
1629
1721
|
( Registry.as(EditorExtensions.EditorPane)).registerEditorPane(
|
|
1630
|
-
EditorPaneDescriptor.create(AgentPluginEditor, AgentPluginEditor.ID, ( localize(
|
|
1722
|
+
EditorPaneDescriptor.create(AgentPluginEditor, AgentPluginEditor.ID, ( localize(5765, "Agent Plugin"))),
|
|
1631
1723
|
[( new SyncDescriptor(AgentPluginEditorInput))]
|
|
1632
1724
|
);
|
|
1633
1725
|
( Registry.as(Extensions$2.ConfigurationMigration)).registerConfigurationMigrations([{
|
|
@@ -1718,7 +1810,7 @@ let ChatResolverContribution = class ChatResolverContribution extends Disposable
|
|
|
1718
1810
|
_registerEditor(scheme) {
|
|
1719
1811
|
this._editorRegistrations.set(scheme, this.editorResolverService.registerEditor(`${scheme}:**/**`, {
|
|
1720
1812
|
id: ChatEditorInput.EditorID,
|
|
1721
|
-
label: ( localize(
|
|
1813
|
+
label: ( localize(5763, "Chat")),
|
|
1722
1814
|
priority: RegisteredEditorPriority.builtin
|
|
1723
1815
|
}, {
|
|
1724
1816
|
singlePerResource: true,
|
|
@@ -1746,7 +1838,7 @@ let ChatDebugResolverContribution = class ChatDebugResolverContribution {
|
|
|
1746
1838
|
constructor(editorResolverService) {
|
|
1747
1839
|
editorResolverService.registerEditor(`${ChatDebugEditorInput.RESOURCE.scheme}:**/**`, {
|
|
1748
1840
|
id: ChatDebugEditorInput.ID,
|
|
1749
|
-
label: ( localize(
|
|
1841
|
+
label: ( localize(5764, "Debug View")),
|
|
1750
1842
|
priority: RegisteredEditorPriority.exclusive
|
|
1751
1843
|
}, {
|
|
1752
1844
|
singlePerResource: true,
|
|
@@ -1784,13 +1876,13 @@ let ChatAgentSettingContribution = class ChatAgentSettingContribution extends Di
|
|
|
1784
1876
|
this.experimentService.getTreatment(treatmentId).then(value => {
|
|
1785
1877
|
const node = {
|
|
1786
1878
|
id: "chatSidebar",
|
|
1787
|
-
title: ( localize(
|
|
1879
|
+
title: ( localize(5581, "Chat")),
|
|
1788
1880
|
type: "object",
|
|
1789
1881
|
properties: {
|
|
1790
1882
|
"chat.agent.maxRequests": {
|
|
1791
1883
|
type: "number",
|
|
1792
1884
|
markdownDescription: ( localize(
|
|
1793
|
-
|
|
1885
|
+
5766,
|
|
1794
1886
|
"The maximum number of requests to allow per-turn when using an agent. When the limit is reached, will ask to confirm to continue."
|
|
1795
1887
|
)),
|
|
1796
1888
|
default: value ?? 50,
|
|
@@ -1980,7 +2072,7 @@ let ToolReferenceNamesContribution = class ToolReferenceNamesContribution extend
|
|
|
1980
2072
|
for (const tool of tools) {
|
|
1981
2073
|
toolReferenceNameEnumValues.push(tool.toolReferenceName);
|
|
1982
2074
|
toolReferenceNameEnumDescriptions.push(( localize(
|
|
1983
|
-
|
|
2075
|
+
5767,
|
|
1984
2076
|
"{0} - {1}",
|
|
1985
2077
|
tool.toolReferenceName,
|
|
1986
2078
|
tool.userDescription || tool.displayName
|
|
@@ -2225,4 +2317,5 @@ registerAction2(ConfigureToolSets);
|
|
|
2225
2317
|
registerEditorFeature(ChatPasteProvidersFeature);
|
|
2226
2318
|
agentPluginDiscoveryRegistry.register(( new SyncDescriptor(ConfiguredAgentPluginDiscovery)));
|
|
2227
2319
|
agentPluginDiscoveryRegistry.register(( new SyncDescriptor(MarketplaceAgentPluginDiscovery)));
|
|
2320
|
+
agentPluginDiscoveryRegistry.register(( new SyncDescriptor(ExtensionAgentPluginDiscovery)));
|
|
2228
2321
|
ChatWidget.CONTRIBS.push(ChatDynamicVariableModel);
|