@vscode/chat-lib 0.4.1-2 → 0.4.1-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts +2 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js +6 -7
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js.map +1 -1
- package/dist/src/_internal/extension/common/constants.d.ts +0 -1
- package/dist/src/_internal/extension/common/constants.d.ts.map +1 -1
- package/dist/src/_internal/extension/common/constants.js.map +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/ghostText/completionsFromNetwork.js +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/ghostText/completionsFromNetwork.js.map +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/openai/model.d.ts +4 -0
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/openai/model.d.ts.map +1 -1
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/openai/model.js +4 -0
- package/dist/src/_internal/extension/completions-core/vscode-node/lib/src/openai/model.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/delay.d.ts +3 -1
- package/dist/src/_internal/extension/inlineEdits/common/delay.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/delay.js +6 -0
- package/dist/src/_internal/extension/inlineEdits/common/delay.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.js +2 -35
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/userInteractionMonitor.d.ts +6 -0
- package/dist/src/_internal/extension/inlineEdits/common/userInteractionMonitor.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/common/userInteractionMonitor.js +19 -35
- package/dist/src/_internal/extension/inlineEdits/common/userInteractionMonitor.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts +21 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js +218 -106
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts +7 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js +18 -3
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.d.ts +2 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.d.ts.map +1 -1
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.js.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts +19 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +367 -98
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcherTelemetry.d.ts +6 -3
- package/dist/src/_internal/extension/prompt/node/chatMLFetcherTelemetry.d.ts.map +1 -1
- package/dist/src/_internal/extension/prompt/node/chatMLFetcherTelemetry.js +9 -3
- package/dist/src/_internal/extension/prompt/node/chatMLFetcherTelemetry.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/diffHistoryForPrompt.d.ts +6 -1
- package/dist/src/_internal/extension/xtab/common/diffHistoryForPrompt.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/common/diffHistoryForPrompt.js +3 -1
- package/dist/src/_internal/extension/xtab/common/diffHistoryForPrompt.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/lintErrors.js +2 -1
- package/dist/src/_internal/extension/xtab/common/lintErrors.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/promptCrafting.d.ts +6 -1
- package/dist/src/_internal/extension/xtab/common/promptCrafting.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js +43 -6
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.d.ts +22 -0
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.js +116 -17
- package/dist/src/_internal/extension/xtab/common/recentFilesForPrompt.js.map +1 -1
- package/dist/src/_internal/extension/xtab/common/similarFilesContextService.d.ts +10 -0
- package/dist/src/_internal/extension/xtab/common/similarFilesContextService.d.ts.map +1 -0
- package/dist/src/_internal/extension/xtab/common/similarFilesContextService.js +10 -0
- package/dist/src/_internal/extension/xtab/common/similarFilesContextService.js.map +1 -0
- package/dist/src/_internal/extension/xtab/common/tags.d.ts +1 -0
- package/dist/src/_internal/extension/xtab/common/tags.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/common/tags.js +1 -0
- package/dist/src/_internal/extension/xtab/common/tags.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabCustomDiffPatchResponseHandler.js +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabCustomDiffPatchResponseHandler.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.d.ts +2 -1
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.js +6 -3
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabNextCursorPredictor.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabNextCursorPredictor.js +3 -2
- package/dist/src/_internal/extension/xtab/node/xtabNextCursorPredictor.js.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabProvider.d.ts +6 -1
- package/dist/src/_internal/extension/xtab/node/xtabProvider.d.ts.map +1 -1
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js +105 -20
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js.map +1 -1
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts +4 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts.map +1 -1
- package/dist/src/_internal/platform/authentication/common/copilotToken.js +6 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.js.map +1 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts +2 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts.map +1 -1
- package/dist/src/_internal/platform/chat/common/commonTypes.js +61 -17
- package/dist/src/_internal/platform/chat/common/commonTypes.js.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +35 -48
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js +57 -66
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/capiClient.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/capiClient.js +1 -0
- package/dist/src/_internal/platform/endpoint/common/capiClient.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +2 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +32 -5
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts +3 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.js +1 -0
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/autoChatEndpoint.d.ts +2 -1
- package/dist/src/_internal/platform/endpoint/node/autoChatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/autoChatEndpoint.js +6 -3
- package/dist/src/_internal/platform/endpoint/node/autoChatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts +6 -2
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +36 -14
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.d.ts +2 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.js +5 -3
- package/dist/src/_internal/platform/endpoint/node/copilotChatEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js +62 -13
- package/dist/src/_internal/platform/endpoint/node/messagesApi.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.js +1 -0
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts +1 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js +14 -10
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js.map +1 -1
- package/dist/src/_internal/platform/git/common/gitService.d.ts +4 -0
- package/dist/src/_internal/platform/git/common/gitService.d.ts.map +1 -1
- package/dist/src/_internal/platform/git/common/gitService.js.map +1 -1
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts +1 -0
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts.map +1 -1
- package/dist/src/_internal/platform/github/common/githubAPI.js +2 -0
- package/dist/src/_internal/platform/github/common/githubAPI.js.map +1 -1
- package/dist/src/_internal/platform/github/common/githubService.d.ts +10 -0
- package/dist/src/_internal/platform/github/common/githubService.d.ts.map +1 -1
- package/dist/src/_internal/platform/github/common/githubService.js +38 -0
- package/dist/src/_internal/platform/github/common/githubService.js.map +1 -1
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts +2 -1
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts.map +1 -1
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js +3 -0
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/triggerOptions.d.ts +8 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/triggerOptions.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/triggerOptions.js +17 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/triggerOptions.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.d.ts +44 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.d.ts.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.js +71 -2
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js +5 -5
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts +15 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.js +22 -1
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.js.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/node/inlineEditsModelService.d.ts.map +1 -1
- package/dist/src/_internal/platform/inlineEdits/node/inlineEditsModelService.js +9 -44
- package/dist/src/_internal/platform/inlineEdits/node/inlineEditsModelService.js.map +1 -1
- package/dist/src/_internal/platform/nesFetch/common/responseStream.js +2 -35
- package/dist/src/_internal/platform/nesFetch/common/responseStream.js.map +1 -1
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.js +3 -36
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts +14 -12
- package/dist/src/_internal/platform/networking/common/anthropic.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/anthropic.js +38 -23
- package/dist/src/_internal/platform/networking/common/anthropic.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/fetcherService.d.ts +60 -1
- package/dist/src/_internal/platform/networking/common/fetcherService.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/fetcherService.js +56 -5
- package/dist/src/_internal/platform/networking/common/fetcherService.js.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.d.ts +42 -4
- package/dist/src/_internal/platform/networking/common/networking.d.ts.map +1 -1
- package/dist/src/_internal/platform/networking/common/networking.js +20 -6
- package/dist/src/_internal/platform/networking/common/networking.js.map +1 -1
- package/dist/src/_internal/platform/networking/node/chatWebSocketManager.d.ts +83 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketManager.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketManager.js +496 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketManager.js.map +1 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.d.ts +89 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.js +269 -0
- package/dist/src/_internal/platform/networking/node/chatWebSocketTelemetry.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiAttributes.d.ts +85 -0
- package/dist/src/_internal/platform/otel/common/genAiAttributes.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiAttributes.js +105 -0
- package/dist/src/_internal/platform/otel/common/genAiAttributes.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiEvents.d.ts +28 -0
- package/dist/src/_internal/platform/otel/common/genAiEvents.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiEvents.js +91 -0
- package/dist/src/_internal/platform/otel/common/genAiEvents.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiMetrics.d.ts +30 -0
- package/dist/src/_internal/platform/otel/common/genAiMetrics.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/genAiMetrics.js +68 -0
- package/dist/src/_internal/platform/otel/common/genAiMetrics.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/index.d.ts +8 -0
- package/dist/src/_internal/platform/otel/common/index.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/index.js +35 -0
- package/dist/src/_internal/platform/otel/common/index.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/messageFormatters.d.ts +85 -0
- package/dist/src/_internal/platform/otel/common/messageFormatters.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/messageFormatters.js +122 -0
- package/dist/src/_internal/platform/otel/common/messageFormatters.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/noopOtelService.d.ts +23 -0
- package/dist/src/_internal/platform/otel/common/noopOtelService.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/noopOtelService.js +46 -0
- package/dist/src/_internal/platform/otel/common/noopOtelService.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/otelConfig.d.ts +35 -0
- package/dist/src/_internal/platform/otel/common/otelConfig.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/otelConfig.js +140 -0
- package/dist/src/_internal/platform/otel/common/otelConfig.js.map +1 -0
- package/dist/src/_internal/platform/otel/common/otelService.d.ts +100 -0
- package/dist/src/_internal/platform/otel/common/otelService.d.ts.map +1 -0
- package/dist/src/_internal/platform/otel/common/otelService.js +10 -0
- package/dist/src/_internal/platform/otel/common/otelService.js.map +1 -0
- package/dist/src/_internal/platform/proxyModels/node/proxyModelsService.js +4 -37
- package/dist/src/_internal/platform/proxyModels/node/proxyModelsService.js.map +1 -1
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.d.ts +1 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.d.ts.map +1 -1
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.js +3 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.js.map +1 -1
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.d.ts +2 -0
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.d.ts.map +1 -1
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.js.map +1 -1
- package/dist/src/_internal/platform/telemetry/common/telemetry.d.ts +9 -1
- package/dist/src/_internal/platform/telemetry/common/telemetry.d.ts.map +1 -1
- package/dist/src/_internal/platform/telemetry/common/telemetry.js +33 -15
- package/dist/src/_internal/platform/telemetry/common/telemetry.js.map +1 -1
- package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.d.ts +1 -1
- package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.d.ts.map +1 -1
- package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.js +3 -2
- package/dist/src/_internal/platform/telemetry/node/azureInsightsReporter.js.map +1 -1
- package/dist/src/_internal/util/common/errors.d.ts +4 -2
- package/dist/src/_internal/util/common/errors.d.ts.map +1 -1
- package/dist/src/_internal/util/common/errors.js +16 -12
- package/dist/src/_internal/util/common/errors.js.map +1 -1
- package/dist/src/_internal/util/common/result.js +4 -37
- package/dist/src/_internal/util/common/result.js.map +1 -1
- package/dist/src/_internal/util/common/test/shims/chatTypes.d.ts +14 -2
- package/dist/src/_internal/util/common/test/shims/chatTypes.d.ts.map +1 -1
- package/dist/src/_internal/util/common/test/shims/chatTypes.js +17 -3
- package/dist/src/_internal/util/common/test/shims/chatTypes.js.map +1 -1
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.js +1 -1
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.js.map +1 -1
- package/dist/src/main.d.ts.map +1 -1
- package/dist/src/main.js +17 -0
- package/dist/src/main.js.map +1 -1
- package/dist/src/package.json +385 -234
- package/package.json +5 -4
package/dist/src/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "copilot-chat",
|
|
3
3
|
"displayName": "GitHub Copilot Chat",
|
|
4
4
|
"description": "AI chat features powered by Copilot",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.40.0",
|
|
6
6
|
"build": "1",
|
|
7
7
|
"internalAIKey": "1058ec22-3c95-4951-8443-f26c1f325911",
|
|
8
8
|
"completionsCoreVersion": "1.378.1799",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"icon": "assets/copilot.png",
|
|
24
24
|
"pricing": "Trial",
|
|
25
25
|
"engines": {
|
|
26
|
-
"vscode": "^1.
|
|
26
|
+
"vscode": "^1.111.0",
|
|
27
27
|
"npm": ">=9.0.0",
|
|
28
28
|
"node": ">=22.14.0"
|
|
29
29
|
},
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"onLanguageModelChat:copilot",
|
|
84
84
|
"onUri",
|
|
85
85
|
"onFileSystem:ccreq",
|
|
86
|
-
"onFileSystem:ccsettings"
|
|
87
|
-
"onCustomAgentProvider"
|
|
86
|
+
"onFileSystem:ccsettings"
|
|
88
87
|
],
|
|
89
88
|
"main": "./dist/extension",
|
|
90
89
|
"l10n": "./l10n",
|
|
91
90
|
"enabledApiProposals": [
|
|
92
91
|
"agentSessionsWorkspace",
|
|
92
|
+
"chatDebug@2",
|
|
93
93
|
"chatHooks@6",
|
|
94
94
|
"extensionsAny",
|
|
95
95
|
"newSymbolNamesProvider",
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"authLearnMore",
|
|
121
121
|
"testObserver",
|
|
122
122
|
"aiTextSearchProvider@2",
|
|
123
|
-
"chatParticipantPrivate@
|
|
123
|
+
"chatParticipantPrivate@15",
|
|
124
124
|
"chatProvider@4",
|
|
125
125
|
"contribDebugCreateConfiguration",
|
|
126
126
|
"chatReferenceDiagnostic",
|
|
@@ -144,7 +144,8 @@
|
|
|
144
144
|
"mcpServerDefinitions",
|
|
145
145
|
"tabInputMultiDiff",
|
|
146
146
|
"workspaceTrust",
|
|
147
|
-
"environmentPower"
|
|
147
|
+
"environmentPower",
|
|
148
|
+
"terminalTitle"
|
|
148
149
|
],
|
|
149
150
|
"contributes": {
|
|
150
151
|
"languageModelTools": [
|
|
@@ -178,7 +179,7 @@
|
|
|
178
179
|
"displayName": "%copilot.tools.searchSubagent.name%",
|
|
179
180
|
"icon": "$(search)",
|
|
180
181
|
"userDescription": "%copilot.tools.searchSubagent.description%",
|
|
181
|
-
"modelDescription": "Launch
|
|
182
|
+
"modelDescription": "Launch a fast agent specialized for exploring codebases. Use this when you need to quickly find files by patterns (eg. \"src/components/**/*.tsx\"), search code for keywords (eg. \"API endpoints\"), or answer questions about the codebase (eg. \"how do API endpoints work?\").\nReturns: A list of relevant files/snippet locations in the workspace.\n\nInput fields:\n- query: Natural language description of what to search for.\n- description: Short user-visible invocation message. \n- details: 2-3 sentences detailing the objective of the search agent.",
|
|
182
183
|
"when": "config.github.copilot.chat.searchSubagent.enabled",
|
|
183
184
|
"tags": [
|
|
184
185
|
"vscode_codesearch"
|
|
@@ -255,7 +256,7 @@
|
|
|
255
256
|
"toolReferenceName": "fileSearch",
|
|
256
257
|
"displayName": "%copilot.tools.findFiles.name%",
|
|
257
258
|
"userDescription": "%copilot.tools.findFiles.userDescription%",
|
|
258
|
-
"modelDescription": "Search for files in the workspace by glob pattern. This only returns the paths of matching files. Use this tool when you know the exact filename pattern of the files you're searching for. Glob patterns match from the root of the workspace folder. Examples:\n- **/*.{js,ts} to match all js/ts files in the workspace.\n- src/** to match all files under the top-level src folder.\n- **/foo/**/*.js to match all js files under any foo folder in the workspace.",
|
|
259
|
+
"modelDescription": "Search for files in the workspace by glob pattern. This only returns the paths of matching files. Use this tool when you know the exact filename pattern of the files you're searching for. Glob patterns match from the root of the workspace folder. Examples:\n- **/*.{js,ts} to match all js/ts files in the workspace.\n- src/** to match all files under the top-level src folder.\n- **/foo/**/*.js to match all js files under any foo folder in the workspace.\n\nIn a multi-root workspace, you can scope the search to a specific workspace folder by using the absolute path to the folder as the query, e.g. /path/to/folder/**/*.ts.",
|
|
259
260
|
"tags": [
|
|
260
261
|
"vscode_codesearch"
|
|
261
262
|
],
|
|
@@ -264,7 +265,7 @@
|
|
|
264
265
|
"properties": {
|
|
265
266
|
"query": {
|
|
266
267
|
"type": "string",
|
|
267
|
-
"description": "Search for files with names or paths matching this glob pattern."
|
|
268
|
+
"description": "Search for files with names or paths matching this glob pattern. Can also be an absolute path to a workspace folder to scope the search in a multi-root workspace."
|
|
268
269
|
},
|
|
269
270
|
"maxResults": {
|
|
270
271
|
"type": "number",
|
|
@@ -281,7 +282,7 @@
|
|
|
281
282
|
"toolReferenceName": "textSearch",
|
|
282
283
|
"displayName": "%copilot.tools.findTextInFiles.name%",
|
|
283
284
|
"userDescription": "%copilot.tools.findTextInFiles.userDescription%",
|
|
284
|
-
"modelDescription": "Do a fast text search in the workspace. Use this tool when you want to search with an exact string or regex. If you are not sure what words will appear in the workspace, prefer using regex patterns with alternation (|) or character classes to search for multiple potential words at once instead of making separate searches. For example, use 'function|method|procedure' to look for all of those words at once. Use includePattern to search within files matching a specific pattern, or in a specific file, using a relative path. Use 'includeIgnoredFiles' to include files normally ignored by .gitignore, other ignore files, and `files.exclude` and `search.exclude` settings. Warning: using this may cause the search to be slower, only set it when you want to search in ignored folders like node_modules or build outputs. Use this tool when you want to see an overview of a particular file, instead of using read_file many times to look for code within a file.",
|
|
285
|
+
"modelDescription": "Do a fast text search in the workspace. Use this tool when you want to search with an exact string or regex. If you are not sure what words will appear in the workspace, prefer using regex patterns with alternation (|) or character classes to search for multiple potential words at once instead of making separate searches. For example, use 'function|method|procedure' to look for all of those words at once. Use includePattern to search within files matching a specific pattern, or in a specific file, using a relative path. Use 'includeIgnoredFiles' to include files normally ignored by .gitignore, other ignore files, and `files.exclude` and `search.exclude` settings. Warning: using this may cause the search to be slower, only set it when you want to search in ignored folders like node_modules or build outputs. Use this tool when you want to see an overview of a particular file, instead of using read_file many times to look for code within a file.\n\nIn a multi-root workspace, you can scope the search to a specific workspace folder by using the absolute path to the folder as the includePattern, e.g. /path/to/folder.",
|
|
285
286
|
"tags": [
|
|
286
287
|
"vscode_codesearch"
|
|
287
288
|
],
|
|
@@ -298,7 +299,7 @@
|
|
|
298
299
|
},
|
|
299
300
|
"includePattern": {
|
|
300
301
|
"type": "string",
|
|
301
|
-
"description": "Search files matching this glob pattern. Will be applied to the relative path of files within the workspace. To search recursively inside a folder, use a proper glob pattern like \"src/folder/**\". Do not use | in includePattern."
|
|
302
|
+
"description": "Search files matching this glob pattern. Will be applied to the relative path of files within the workspace. To search recursively inside a folder, use a proper glob pattern like \"src/folder/**\". Do not use | in includePattern. Can also be an absolute path to a workspace folder to scope the search in a multi-root workspace."
|
|
302
303
|
},
|
|
303
304
|
"maxResults": {
|
|
304
305
|
"type": "number",
|
|
@@ -511,7 +512,7 @@
|
|
|
511
512
|
{
|
|
512
513
|
"name": "copilot_getProjectSetupInfo",
|
|
513
514
|
"displayName": "%github.copilot.tools.getProjectSetupInfo.name%",
|
|
514
|
-
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
|
|
515
|
+
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled && !config.github.copilot.chat.projectSetupInfoSkill.enabled",
|
|
515
516
|
"toolReferenceName": "getProjectSetupInfo",
|
|
516
517
|
"legacyToolReferenceFullNames": [
|
|
517
518
|
"new/getProjectSetupInfo"
|
|
@@ -534,7 +535,7 @@
|
|
|
534
535
|
{
|
|
535
536
|
"name": "copilot_installExtension",
|
|
536
537
|
"displayName": "Install Extension in VS Code",
|
|
537
|
-
"when": "config.github.copilot.chat.
|
|
538
|
+
"when": "!config.github.copilot.chat.installExtensionSkill.enabled",
|
|
538
539
|
"toolReferenceName": "installExtension",
|
|
539
540
|
"legacyToolReferenceFullNames": [
|
|
540
541
|
"new/installExtension"
|
|
@@ -585,6 +586,10 @@
|
|
|
585
586
|
"items": {
|
|
586
587
|
"type": "string"
|
|
587
588
|
}
|
|
589
|
+
},
|
|
590
|
+
"skipCheck": {
|
|
591
|
+
"type": "boolean",
|
|
592
|
+
"description": "If true, skip checking whether the command exists before executing it."
|
|
588
593
|
}
|
|
589
594
|
},
|
|
590
595
|
"required": [
|
|
@@ -698,29 +703,6 @@
|
|
|
698
703
|
]
|
|
699
704
|
}
|
|
700
705
|
},
|
|
701
|
-
{
|
|
702
|
-
"name": "copilot_openIntegratedBrowser",
|
|
703
|
-
"displayName": "%copilot.tools.openIntegratedBrowser.name%",
|
|
704
|
-
"modelDescription": "Preview a website or open a URL in the editor's Integrated Browser. Useful for quickly viewing locally hosted websites, demos, or resources without leaving the coding environment.",
|
|
705
|
-
"userDescription": "%copilot.tools.openIntegratedBrowser.description%",
|
|
706
|
-
"toolReferenceName": "openIntegratedBrowser",
|
|
707
|
-
"legacyToolReferenceFullNames": [
|
|
708
|
-
"openSimpleBrowser"
|
|
709
|
-
],
|
|
710
|
-
"tags": [],
|
|
711
|
-
"inputSchema": {
|
|
712
|
-
"type": "object",
|
|
713
|
-
"properties": {
|
|
714
|
-
"url": {
|
|
715
|
-
"type": "string",
|
|
716
|
-
"description": "The website URL to preview or open in the Integrated Browser inside the editor. Must be either an http or https URL"
|
|
717
|
-
}
|
|
718
|
-
},
|
|
719
|
-
"required": [
|
|
720
|
-
"url"
|
|
721
|
-
]
|
|
722
|
-
}
|
|
723
|
-
},
|
|
724
706
|
{
|
|
725
707
|
"name": "copilot_replaceString",
|
|
726
708
|
"toolReferenceName": "replaceString",
|
|
@@ -1002,38 +984,14 @@
|
|
|
1002
984
|
]
|
|
1003
985
|
}
|
|
1004
986
|
},
|
|
1005
|
-
{
|
|
1006
|
-
"name": "copilot_getDocInfo",
|
|
1007
|
-
"displayName": "%copilot.tools.getDocInfo.name%",
|
|
1008
|
-
"icon": "$(beaker)",
|
|
1009
|
-
"canBeReferencedInPrompt": false,
|
|
1010
|
-
"toolReferenceName": "docInfo",
|
|
1011
|
-
"userDescription": "%copilot.tools.getDocInfo.description%",
|
|
1012
|
-
"modelDescription": "Find information about how to document it a symbol like a class or function. This tool is useful for generating documentation comments for code symbols. You should use this tool when you think the user is looking for information about how to document a specific code symbol.",
|
|
1013
|
-
"tags": [],
|
|
1014
|
-
"inputSchema": {
|
|
1015
|
-
"type": "object",
|
|
1016
|
-
"properties": {
|
|
1017
|
-
"filePaths": {
|
|
1018
|
-
"type": "array",
|
|
1019
|
-
"items": {
|
|
1020
|
-
"type": "string"
|
|
1021
|
-
},
|
|
1022
|
-
"description": "The file paths for which documentation information is needed."
|
|
1023
|
-
}
|
|
1024
|
-
},
|
|
1025
|
-
"required": [
|
|
1026
|
-
"filePaths"
|
|
1027
|
-
]
|
|
1028
|
-
}
|
|
1029
|
-
},
|
|
1030
987
|
{
|
|
1031
988
|
"name": "copilot_getSearchResults",
|
|
1032
989
|
"toolReferenceName": "searchResults",
|
|
1033
990
|
"displayName": "%github.copilot.tools.searchResults.name%",
|
|
1034
991
|
"icon": "$(search)",
|
|
1035
992
|
"userDescription": "%github.copilot.tools.searchResults.description%",
|
|
1036
|
-
"modelDescription": "The results from the search view"
|
|
993
|
+
"modelDescription": "The results from the search view",
|
|
994
|
+
"when": "!config.github.copilot.chat.getSearchViewResultsSkill.enabled"
|
|
1037
995
|
},
|
|
1038
996
|
{
|
|
1039
997
|
"name": "copilot_githubRepo",
|
|
@@ -1092,7 +1050,7 @@
|
|
|
1092
1050
|
"toolReferenceName": "switchAgent",
|
|
1093
1051
|
"displayName": "%copilot.tools.switchAgent.name%",
|
|
1094
1052
|
"userDescription": "%copilot.tools.switchAgent.description%",
|
|
1095
|
-
"modelDescription": "Switch to the Plan agent
|
|
1053
|
+
"modelDescription": "Switch to the Plan agent to align on approach before implementing. Plan will explore the codebase, gathers context, clarifies requirements with the user, and creates an actionable implementation plan.\n\nSWITCH TO PLAN when ANY of these apply:\n1. Adding new functionality - where should it go? What patterns to follow?\n2. Multiple valid approaches exist - choosing between technologies, patterns, or strategies\n3. Modifying existing behavior - unclear what should change or what side effects exist\n4. Architectural decisions required - choosing between design patterns or integration approaches\n5. Changes span multiple files - refactoring, migrations, or cross-cutting concerns\n6. Requirements are underspecified - need to explore before understanding scope\n\nEXAMPLES:\n✓ Switch to Plan:\n- \"Add authentication to the app\" → architectural decisions needed (session vs JWT, middleware)\n- \"Refactor this data flow\" → must understand component dependencies first\n- \"Migrate from X to Y\" → requires understanding current structure\n\n✗ Do NOT switch to Plan:\n- User attached a detailed spec, plan, or requirements doc → context already provided\n- You already started editing files in this conversation → too late to switch\n- Single obvious change like fixing a typo or renaming → just do it\n- User gave explicit step-by-step instructions → follow them directly",
|
|
1096
1054
|
"when": "config.github.copilot.chat.switchAgent.enabled",
|
|
1097
1055
|
"icon": "$(arrow-swap)",
|
|
1098
1056
|
"inputSchema": {
|
|
@@ -1115,7 +1073,6 @@
|
|
|
1115
1073
|
"name": "copilot_memory",
|
|
1116
1074
|
"displayName": "Memory",
|
|
1117
1075
|
"toolReferenceName": "memory",
|
|
1118
|
-
"canBeReferencedInPrompt": true,
|
|
1119
1076
|
"userDescription": "Manage persistent memory across conversations",
|
|
1120
1077
|
"when": "config.github.copilot.chat.tools.memory.enabled",
|
|
1121
1078
|
"modelDescription": "Manage a persistent memory system with three scopes for storing notes and information across conversations.\n\nMemory is organized under /memories/ with three tiers:\n- `/memories/` — User memory: persistent notes that survive across all workspaces and conversations. Store preferences, patterns, and general insights here.\n- `/memories/session/` — Session memory: notes scoped to the current conversation. Store task-specific context and in-progress notes here. Cleared after the conversation ends.\n- `/memories/repo/` — Repository memory: repository-scoped facts stored via Copilot. Only the `create` command is supported for this path.\n\nIMPORTANT: Before creating new memory files, first view the /memories/ directory to understand what already exists. This helps avoid duplicates and maintain organized notes.\n\nCommands:\n- `view`: View contents of a file or list directory contents. Can be used on files or directories (e.g., \"/memories/\" to see all top-level items).\n- `create`: Create a new file at the specified path with the given content. Fails if the file already exists.\n- `str_replace`: Replace an exact string in a file with a new string. The old_str must appear exactly once in the file.\n- `insert`: Insert text at a specific line number in a file. Line 0 inserts at the beginning.\n- `delete`: Delete a file or directory (and all its contents).\n- `rename`: Rename or move a file or directory from path to new_path. Cannot rename across scopes.",
|
|
@@ -1249,9 +1206,7 @@
|
|
|
1249
1206
|
"installExtension",
|
|
1250
1207
|
"memory",
|
|
1251
1208
|
"newWorkspace",
|
|
1252
|
-
"openIntegratedBrowser",
|
|
1253
1209
|
"runCommand",
|
|
1254
|
-
"askQuestions",
|
|
1255
1210
|
"switchAgent",
|
|
1256
1211
|
"vscodeAPI"
|
|
1257
1212
|
]
|
|
@@ -1395,8 +1350,7 @@
|
|
|
1395
1350
|
],
|
|
1396
1351
|
"modes": [
|
|
1397
1352
|
"edit"
|
|
1398
|
-
]
|
|
1399
|
-
"when": "!config.chat.edits2.enabled"
|
|
1353
|
+
]
|
|
1400
1354
|
},
|
|
1401
1355
|
{
|
|
1402
1356
|
"id": "github.copilot.editingSessionEditor",
|
|
@@ -1480,20 +1434,6 @@
|
|
|
1480
1434
|
}
|
|
1481
1435
|
]
|
|
1482
1436
|
},
|
|
1483
|
-
{
|
|
1484
|
-
"id": "github.copilot.editingSession2",
|
|
1485
|
-
"name": "GitHubCopilot",
|
|
1486
|
-
"fullName": "GitHub Copilot",
|
|
1487
|
-
"description": "%copilot.edits.description%",
|
|
1488
|
-
"isDefault": true,
|
|
1489
|
-
"locations": [
|
|
1490
|
-
"panel"
|
|
1491
|
-
],
|
|
1492
|
-
"modes": [
|
|
1493
|
-
"edit"
|
|
1494
|
-
],
|
|
1495
|
-
"when": "config.chat.edits2.enabled"
|
|
1496
|
-
},
|
|
1497
1437
|
{
|
|
1498
1438
|
"id": "github.copilot.editsAgent",
|
|
1499
1439
|
"name": "agent",
|
|
@@ -1745,6 +1685,11 @@
|
|
|
1745
1685
|
"displayName": "Copilot CLI",
|
|
1746
1686
|
"when": "false"
|
|
1747
1687
|
},
|
|
1688
|
+
{
|
|
1689
|
+
"vendor": "claude-code",
|
|
1690
|
+
"displayName": "Claude Code",
|
|
1691
|
+
"when": "false"
|
|
1692
|
+
},
|
|
1748
1693
|
{
|
|
1749
1694
|
"vendor": "anthropic",
|
|
1750
1695
|
"displayName": "Anthropic",
|
|
@@ -2176,6 +2121,12 @@
|
|
|
2176
2121
|
"icon": "$(edit)",
|
|
2177
2122
|
"category": "Copilot CLI"
|
|
2178
2123
|
},
|
|
2124
|
+
{
|
|
2125
|
+
"command": "github.copilot.claude.sessions.rename",
|
|
2126
|
+
"title": "%github.copilot.command.claude.sessions.rename%",
|
|
2127
|
+
"icon": "$(edit)",
|
|
2128
|
+
"category": "Claude"
|
|
2129
|
+
},
|
|
2179
2130
|
{
|
|
2180
2131
|
"command": "github.copilot.cli.sessions.openRepository",
|
|
2181
2132
|
"title": "%github.copilot.command.cli.sessions.openRepository%",
|
|
@@ -2194,12 +2145,24 @@
|
|
|
2194
2145
|
"icon": "$(terminal)",
|
|
2195
2146
|
"category": "Copilot CLI"
|
|
2196
2147
|
},
|
|
2148
|
+
{
|
|
2149
|
+
"command": "github.copilot.cli.sessions.copyWorktreeBranchName",
|
|
2150
|
+
"title": "%github.copilot.command.cli.sessions.copyWorktreeBranchName%",
|
|
2151
|
+
"icon": "$(copy)",
|
|
2152
|
+
"category": "Copilot CLI"
|
|
2153
|
+
},
|
|
2197
2154
|
{
|
|
2198
2155
|
"command": "github.copilot.cli.sessions.commitToWorktree",
|
|
2199
2156
|
"title": "%github.copilot.command.cli.sessions.commitToWorktree%",
|
|
2200
2157
|
"icon": "$(git-commit)",
|
|
2201
2158
|
"category": "Copilot CLI"
|
|
2202
2159
|
},
|
|
2160
|
+
{
|
|
2161
|
+
"command": "github.copilot.cli.sessions.commitToRepository",
|
|
2162
|
+
"title": "%github.copilot.command.cli.sessions.commitToRepository%",
|
|
2163
|
+
"icon": "$(git-commit)",
|
|
2164
|
+
"category": "Copilot CLI"
|
|
2165
|
+
},
|
|
2203
2166
|
{
|
|
2204
2167
|
"command": "github.copilot.cli.newSession",
|
|
2205
2168
|
"title": "%github.copilot.command.cli.newSession%",
|
|
@@ -2212,6 +2175,12 @@
|
|
|
2212
2175
|
"icon": "$(terminal)",
|
|
2213
2176
|
"category": "Chat"
|
|
2214
2177
|
},
|
|
2178
|
+
{
|
|
2179
|
+
"command": "github.copilot.cli.openInCopilotCLI",
|
|
2180
|
+
"title": "%github.copilot.command.cli.openInCopilotCLI%",
|
|
2181
|
+
"icon": "$(terminal)",
|
|
2182
|
+
"category": "Copilot CLI"
|
|
2183
|
+
},
|
|
2215
2184
|
{
|
|
2216
2185
|
"command": "github.copilot.chat.replay",
|
|
2217
2186
|
"title": "Start Chat Replay",
|
|
@@ -2319,6 +2288,12 @@
|
|
|
2319
2288
|
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
2320
2289
|
"category": "Chat"
|
|
2321
2290
|
},
|
|
2291
|
+
{
|
|
2292
|
+
"command": "github.copilot.chat.codeReview.run",
|
|
2293
|
+
"title": "%github.copilot.command.codeReviewRun%",
|
|
2294
|
+
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
2295
|
+
"category": "Chat"
|
|
2296
|
+
},
|
|
2322
2297
|
{
|
|
2323
2298
|
"command": "github.copilot.chat.review.previous",
|
|
2324
2299
|
"title": "%github.copilot.command.gotoPreviousReviewSuggestion%",
|
|
@@ -2370,18 +2345,6 @@
|
|
|
2370
2345
|
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
2371
2346
|
"category": "Chat"
|
|
2372
2347
|
},
|
|
2373
|
-
{
|
|
2374
|
-
"command": "github.copilot.chat.generateDocs",
|
|
2375
|
-
"title": "%github.copilot.command.generateDocs%",
|
|
2376
|
-
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
2377
|
-
"category": "Chat"
|
|
2378
|
-
},
|
|
2379
|
-
{
|
|
2380
|
-
"command": "github.copilot.chat.generateTests",
|
|
2381
|
-
"title": "%github.copilot.command.generateTests%",
|
|
2382
|
-
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
2383
|
-
"category": "Chat"
|
|
2384
|
-
},
|
|
2385
2348
|
{
|
|
2386
2349
|
"command": "github.copilot.chat.fix",
|
|
2387
2350
|
"title": "%github.copilot.command.fixThis%",
|
|
@@ -2757,7 +2720,7 @@
|
|
|
2757
2720
|
"command": "github.copilot.chat.openModelPicker",
|
|
2758
2721
|
"title": "Change Completions Model",
|
|
2759
2722
|
"category": "GitHub Copilot",
|
|
2760
|
-
"enablement": "github.copilot.extensionUnification.activated && !isWeb"
|
|
2723
|
+
"enablement": "github.copilot.extensionUnification.activated && !isWeb && github.copilot.completions.hasMultipleModels"
|
|
2761
2724
|
},
|
|
2762
2725
|
{
|
|
2763
2726
|
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
|
|
@@ -2772,6 +2735,34 @@
|
|
|
2772
2735
|
"icon": "$(git-stash-pop)",
|
|
2773
2736
|
"category": "GitHub Copilot"
|
|
2774
2737
|
},
|
|
2738
|
+
{
|
|
2739
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
2740
|
+
"title": "%github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge%",
|
|
2741
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2742
|
+
"icon": "$(git-merge)",
|
|
2743
|
+
"category": "GitHub Copilot"
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
2747
|
+
"title": "%github.copilot.chat.updateCopilotCLIAgentSessionChanges.update%",
|
|
2748
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2749
|
+
"icon": "$(download)",
|
|
2750
|
+
"category": "GitHub Copilot"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
2754
|
+
"title": "%github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR%",
|
|
2755
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2756
|
+
"icon": "$(git-pull-request-create)",
|
|
2757
|
+
"category": "GitHub Copilot"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
2761
|
+
"title": "%github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR%",
|
|
2762
|
+
"enablement": "!chatSessionRequestInProgress",
|
|
2763
|
+
"icon": "$(link-external)",
|
|
2764
|
+
"category": "GitHub Copilot"
|
|
2765
|
+
},
|
|
2775
2766
|
{
|
|
2776
2767
|
"command": "github.copilot.chat.copilotCLI.addFileReference",
|
|
2777
2768
|
"title": "%github.copilot.command.chat.copilotCLI.addFileReference%",
|
|
@@ -3004,27 +2995,26 @@
|
|
|
3004
2995
|
"type": "string",
|
|
3005
2996
|
"default": "",
|
|
3006
2997
|
"markdownDescription": "The currently selected completion model ID. To select from a list of available models, use the __\"Change Completions Model\"__ command or open the model picker (from the Copilot menu in the VS Code title bar, select __\"Configure Code Completions\"__ then __\"Change Completions Model\"__. The value must be a valid model ID. An empty value indicates that the default model will be used."
|
|
3007
|
-
}
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
2998
|
+
},
|
|
2999
|
+
"github.copilot.chat.claudeAgent.enabled": {
|
|
3000
|
+
"type": "boolean",
|
|
3001
|
+
"default": true,
|
|
3002
|
+
"markdownDescription": "%github.copilot.config.claudeAgent.enabled%"
|
|
3003
|
+
},
|
|
3004
|
+
"github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions": {
|
|
3005
|
+
"type": "boolean",
|
|
3006
|
+
"default": false,
|
|
3007
|
+
"markdownDescription": "%github.copilot.config.claudeAgent.allowDangerouslySkipPermissions%"
|
|
3008
|
+
},
|
|
3013
3009
|
"github.copilot.chat.reviewAgent.enabled": {
|
|
3014
3010
|
"type": "boolean",
|
|
3015
3011
|
"default": true,
|
|
3016
|
-
"description": "%github.copilot.config.reviewAgent.enabled%"
|
|
3017
|
-
"tags": [
|
|
3018
|
-
"preview"
|
|
3019
|
-
]
|
|
3012
|
+
"description": "%github.copilot.config.reviewAgent.enabled%"
|
|
3020
3013
|
},
|
|
3021
3014
|
"github.copilot.chat.reviewSelection.enabled": {
|
|
3022
3015
|
"type": "boolean",
|
|
3023
3016
|
"default": true,
|
|
3024
|
-
"description": "%github.copilot.config.reviewSelection.enabled%"
|
|
3025
|
-
"tags": [
|
|
3026
|
-
"preview"
|
|
3027
|
-
]
|
|
3017
|
+
"description": "%github.copilot.config.reviewSelection.enabled%"
|
|
3028
3018
|
},
|
|
3029
3019
|
"github.copilot.chat.reviewSelection.instructions": {
|
|
3030
3020
|
"type": "array",
|
|
@@ -3092,11 +3082,21 @@
|
|
|
3092
3082
|
"text": "Resolve all TODO tasks."
|
|
3093
3083
|
}
|
|
3094
3084
|
]
|
|
3095
|
-
],
|
|
3096
|
-
"tags": [
|
|
3097
|
-
"preview"
|
|
3098
3085
|
]
|
|
3099
3086
|
},
|
|
3087
|
+
"github.copilot.chat.anthropic.useMessagesApi": {
|
|
3088
|
+
"type": "boolean",
|
|
3089
|
+
"default": true,
|
|
3090
|
+
"markdownDescription": "%github.copilot.config.useMessagesApi%",
|
|
3091
|
+
"tags": [
|
|
3092
|
+
"onExp"
|
|
3093
|
+
]
|
|
3094
|
+
}
|
|
3095
|
+
}
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
"id": "preview",
|
|
3099
|
+
"properties": {
|
|
3100
3100
|
"github.copilot.chat.copilotDebugCommand.enabled": {
|
|
3101
3101
|
"type": "boolean",
|
|
3102
3102
|
"default": true,
|
|
@@ -3113,22 +3113,6 @@
|
|
|
3113
3113
|
],
|
|
3114
3114
|
"markdownDescription": "%github.copilot.config.codesearch.enabled%"
|
|
3115
3115
|
},
|
|
3116
|
-
"github.copilot.chat.claudeAgent.enabled": {
|
|
3117
|
-
"type": "boolean",
|
|
3118
|
-
"default": true,
|
|
3119
|
-
"markdownDescription": "%github.copilot.config.claudeAgent.enabled%",
|
|
3120
|
-
"tags": [
|
|
3121
|
-
"preview"
|
|
3122
|
-
]
|
|
3123
|
-
},
|
|
3124
|
-
"github.copilot.chat.claudeAgent.allowDangerouslySkipPermissions": {
|
|
3125
|
-
"type": "boolean",
|
|
3126
|
-
"default": false,
|
|
3127
|
-
"markdownDescription": "%github.copilot.config.claudeAgent.allowDangerouslySkipPermissions%",
|
|
3128
|
-
"tags": [
|
|
3129
|
-
"preview"
|
|
3130
|
-
]
|
|
3131
|
-
},
|
|
3132
3116
|
"github.copilot.chat.copilotMemory.enabled": {
|
|
3133
3117
|
"type": "boolean",
|
|
3134
3118
|
"default": false,
|
|
@@ -3145,15 +3129,6 @@
|
|
|
3145
3129
|
"preview"
|
|
3146
3130
|
]
|
|
3147
3131
|
},
|
|
3148
|
-
"github.copilot.chat.anthropic.useMessagesApi": {
|
|
3149
|
-
"type": "boolean",
|
|
3150
|
-
"default": true,
|
|
3151
|
-
"markdownDescription": "%github.copilot.config.useMessagesApi%",
|
|
3152
|
-
"tags": [
|
|
3153
|
-
"preview",
|
|
3154
|
-
"onExp"
|
|
3155
|
-
]
|
|
3156
|
-
},
|
|
3157
3132
|
"github.copilot.chat.anthropic.thinking.budgetTokens": {
|
|
3158
3133
|
"type": "number",
|
|
3159
3134
|
"markdownDescription": "%github.copilot.config.anthropic.thinking.budgetTokens%",
|
|
@@ -3194,12 +3169,34 @@
|
|
|
3194
3169
|
"tags": [
|
|
3195
3170
|
"preview"
|
|
3196
3171
|
]
|
|
3172
|
+
},
|
|
3173
|
+
"github.copilot.chat.anthropic.toolSearchTool.mode": {
|
|
3174
|
+
"type": "string",
|
|
3175
|
+
"enum": [
|
|
3176
|
+
"server",
|
|
3177
|
+
"client"
|
|
3178
|
+
],
|
|
3179
|
+
"default": "server",
|
|
3180
|
+
"markdownDescription": "%github.copilot.config.anthropic.toolSearchTool.mode%",
|
|
3181
|
+
"tags": [
|
|
3182
|
+
"preview",
|
|
3183
|
+
"onExp"
|
|
3184
|
+
]
|
|
3197
3185
|
}
|
|
3198
3186
|
}
|
|
3199
3187
|
},
|
|
3200
3188
|
{
|
|
3201
3189
|
"id": "experimental",
|
|
3202
3190
|
"properties": {
|
|
3191
|
+
"github.copilot.chat.getSearchViewResultsSkill.enabled": {
|
|
3192
|
+
"type": "boolean",
|
|
3193
|
+
"default": false,
|
|
3194
|
+
"description": "%github.copilot.config.getSearchViewResultsSkill.enabled%",
|
|
3195
|
+
"tags": [
|
|
3196
|
+
"experimental",
|
|
3197
|
+
"onExp"
|
|
3198
|
+
]
|
|
3199
|
+
},
|
|
3203
3200
|
"github.copilot.chat.githubMcpServer.enabled": {
|
|
3204
3201
|
"type": "boolean",
|
|
3205
3202
|
"default": false,
|
|
@@ -3237,21 +3234,13 @@
|
|
|
3237
3234
|
"experimental"
|
|
3238
3235
|
]
|
|
3239
3236
|
},
|
|
3240
|
-
"github.copilot.chat.askQuestions.enabled": {
|
|
3241
|
-
"type": "boolean",
|
|
3242
|
-
"default": true,
|
|
3243
|
-
"markdownDescription": "%github.copilot.config.askQuestions.enabled%",
|
|
3244
|
-
"tags": [
|
|
3245
|
-
"experimental",
|
|
3246
|
-
"onExp"
|
|
3247
|
-
]
|
|
3248
|
-
},
|
|
3249
3237
|
"github.copilot.chat.switchAgent.enabled": {
|
|
3250
3238
|
"type": "boolean",
|
|
3251
3239
|
"default": false,
|
|
3252
3240
|
"markdownDescription": "%github.copilot.config.switchAgent.enabled%",
|
|
3253
3241
|
"tags": [
|
|
3254
|
-
"experimental"
|
|
3242
|
+
"experimental",
|
|
3243
|
+
"onExp"
|
|
3255
3244
|
]
|
|
3256
3245
|
},
|
|
3257
3246
|
"github.copilot.chat.imageUpload.enabled": {
|
|
@@ -3528,14 +3517,6 @@
|
|
|
3528
3517
|
"experimental"
|
|
3529
3518
|
]
|
|
3530
3519
|
},
|
|
3531
|
-
"github.copilot.chat.generateTests.codeLens": {
|
|
3532
|
-
"type": "boolean",
|
|
3533
|
-
"default": false,
|
|
3534
|
-
"description": "%github.copilot.config.generateTests.codeLens%",
|
|
3535
|
-
"tags": [
|
|
3536
|
-
"experimental"
|
|
3537
|
-
]
|
|
3538
|
-
},
|
|
3539
3520
|
"github.copilot.chat.setupTests.enabled": {
|
|
3540
3521
|
"type": "boolean",
|
|
3541
3522
|
"default": true,
|
|
@@ -3678,24 +3659,16 @@
|
|
|
3678
3659
|
],
|
|
3679
3660
|
"description": "%github.copilot.config.alternateGeminiModelFPrompt.enabled%"
|
|
3680
3661
|
},
|
|
3681
|
-
"github.copilot.chat.anthropic.contextEditing.enabled": {
|
|
3682
|
-
"type": "boolean",
|
|
3683
|
-
"default": false,
|
|
3684
|
-
"markdownDescription": "%github.copilot.config.anthropic.contextEditing.enabled%",
|
|
3685
|
-
"tags": [
|
|
3686
|
-
"experimental",
|
|
3687
|
-
"onExp"
|
|
3688
|
-
]
|
|
3689
|
-
},
|
|
3690
3662
|
"github.copilot.chat.anthropic.contextEditing.mode": {
|
|
3691
3663
|
"type": "string",
|
|
3692
|
-
"default": "
|
|
3664
|
+
"default": "off",
|
|
3693
3665
|
"markdownDescription": "%github.copilot.config.anthropic.contextEditing.mode%",
|
|
3694
3666
|
"tags": [
|
|
3695
3667
|
"experimental",
|
|
3696
3668
|
"onExp"
|
|
3697
3669
|
],
|
|
3698
3670
|
"enum": [
|
|
3671
|
+
"off",
|
|
3699
3672
|
"clear-thinking",
|
|
3700
3673
|
"clear-tooluse",
|
|
3701
3674
|
"clear-both"
|
|
@@ -3741,7 +3714,7 @@
|
|
|
3741
3714
|
},
|
|
3742
3715
|
"github.copilot.chat.updated53CodexPrompt.enabled": {
|
|
3743
3716
|
"type": "boolean",
|
|
3744
|
-
"default":
|
|
3717
|
+
"default": true,
|
|
3745
3718
|
"markdownDescription": "%github.copilot.config.updated53CodexPrompt.enabled%",
|
|
3746
3719
|
"tags": [
|
|
3747
3720
|
"experimental",
|
|
@@ -3904,16 +3877,25 @@
|
|
|
3904
3877
|
{
|
|
3905
3878
|
"id": "advanced",
|
|
3906
3879
|
"properties": {
|
|
3907
|
-
"github.copilot.chat.
|
|
3908
|
-
"type":
|
|
3909
|
-
|
|
3910
|
-
|
|
3880
|
+
"github.copilot.chat.installExtensionSkill.enabled": {
|
|
3881
|
+
"type": "boolean",
|
|
3882
|
+
"default": false,
|
|
3883
|
+
"tags": [
|
|
3884
|
+
"advanced",
|
|
3885
|
+
"experimental",
|
|
3886
|
+
"onExp"
|
|
3911
3887
|
],
|
|
3912
|
-
"
|
|
3888
|
+
"description": "%github.copilot.config.installExtensionSkill.enabled%"
|
|
3889
|
+
},
|
|
3890
|
+
"github.copilot.chat.projectSetupInfoSkill.enabled": {
|
|
3891
|
+
"type": "boolean",
|
|
3892
|
+
"default": false,
|
|
3913
3893
|
"tags": [
|
|
3914
3894
|
"advanced",
|
|
3915
|
-
"experimental"
|
|
3916
|
-
|
|
3895
|
+
"experimental",
|
|
3896
|
+
"onExp"
|
|
3897
|
+
],
|
|
3898
|
+
"description": "%github.copilot.config.projectSetupInfoSkill.enabled%"
|
|
3917
3899
|
},
|
|
3918
3900
|
"github.copilot.chat.edits.gemini3MultiReplaceString": {
|
|
3919
3901
|
"type": "boolean",
|
|
@@ -4363,6 +4345,33 @@
|
|
|
4363
4345
|
"onExp"
|
|
4364
4346
|
]
|
|
4365
4347
|
},
|
|
4348
|
+
"github.copilot.nextEditSuggestions.eagerness": {
|
|
4349
|
+
"type": "string",
|
|
4350
|
+
"default": "auto",
|
|
4351
|
+
"enum": [
|
|
4352
|
+
"auto",
|
|
4353
|
+
"low",
|
|
4354
|
+
"medium",
|
|
4355
|
+
"high"
|
|
4356
|
+
],
|
|
4357
|
+
"enumItemLabels": [
|
|
4358
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.auto.label%",
|
|
4359
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.low.label%",
|
|
4360
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.medium.label%",
|
|
4361
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.high.label%"
|
|
4362
|
+
],
|
|
4363
|
+
"enumDescriptions": [
|
|
4364
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.auto%",
|
|
4365
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.low%",
|
|
4366
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.medium%",
|
|
4367
|
+
"%github.copilot.config.nextEditSuggestions.eagerness.high%"
|
|
4368
|
+
],
|
|
4369
|
+
"markdownDescription": "%github.copilot.config.nextEditSuggestions.eagerness%",
|
|
4370
|
+
"tags": [
|
|
4371
|
+
"advanced",
|
|
4372
|
+
"experimental"
|
|
4373
|
+
]
|
|
4374
|
+
},
|
|
4366
4375
|
"github.copilot.chat.cli.customAgents.enabled": {
|
|
4367
4376
|
"type": "boolean",
|
|
4368
4377
|
"default": true,
|
|
@@ -4400,7 +4409,7 @@
|
|
|
4400
4409
|
},
|
|
4401
4410
|
"github.copilot.chat.cli.isolationOption.enabled": {
|
|
4402
4411
|
"type": "boolean",
|
|
4403
|
-
"default":
|
|
4412
|
+
"default": true,
|
|
4404
4413
|
"markdownDescription": "%github.copilot.config.cli.isolationOption.enabled%",
|
|
4405
4414
|
"tags": [
|
|
4406
4415
|
"advanced"
|
|
@@ -4432,14 +4441,6 @@
|
|
|
4432
4441
|
"advanced"
|
|
4433
4442
|
]
|
|
4434
4443
|
},
|
|
4435
|
-
"github.copilot.chat.searchSubagent.agenticProxySearchModelName": {
|
|
4436
|
-
"type": "string",
|
|
4437
|
-
"default": "agentic-search-v1",
|
|
4438
|
-
"markdownDescription": "%github.copilot.config.searchSubagent.agenticProxySearchModelName%",
|
|
4439
|
-
"tags": [
|
|
4440
|
-
"advanced"
|
|
4441
|
-
]
|
|
4442
|
-
},
|
|
4443
4444
|
"github.copilot.chat.searchSubagent.model": {
|
|
4444
4445
|
"type": "string",
|
|
4445
4446
|
"default": "",
|
|
@@ -4459,6 +4460,52 @@
|
|
|
4459
4460
|
"experimental",
|
|
4460
4461
|
"onExp"
|
|
4461
4462
|
]
|
|
4463
|
+
},
|
|
4464
|
+
"github.copilot.chat.otel.enabled": {
|
|
4465
|
+
"type": "boolean",
|
|
4466
|
+
"default": false,
|
|
4467
|
+
"markdownDescription": "Enable OpenTelemetry trace/metric/log emission for Copilot Chat operations. Env var `COPILOT_OTEL_ENABLED` takes precedence.",
|
|
4468
|
+
"tags": [
|
|
4469
|
+
"advanced"
|
|
4470
|
+
]
|
|
4471
|
+
},
|
|
4472
|
+
"github.copilot.chat.otel.exporterType": {
|
|
4473
|
+
"type": "string",
|
|
4474
|
+
"enum": [
|
|
4475
|
+
"otlp-grpc",
|
|
4476
|
+
"otlp-http",
|
|
4477
|
+
"console",
|
|
4478
|
+
"file"
|
|
4479
|
+
],
|
|
4480
|
+
"default": "otlp-http",
|
|
4481
|
+
"markdownDescription": "OTel exporter type for Copilot Chat telemetry.",
|
|
4482
|
+
"tags": [
|
|
4483
|
+
"advanced"
|
|
4484
|
+
]
|
|
4485
|
+
},
|
|
4486
|
+
"github.copilot.chat.otel.otlpEndpoint": {
|
|
4487
|
+
"type": "string",
|
|
4488
|
+
"default": "http://localhost:4318",
|
|
4489
|
+
"markdownDescription": "OTLP collector endpoint URL for Copilot Chat OTel data. Env var `OTEL_EXPORTER_OTLP_ENDPOINT` takes precedence.",
|
|
4490
|
+
"tags": [
|
|
4491
|
+
"advanced"
|
|
4492
|
+
]
|
|
4493
|
+
},
|
|
4494
|
+
"github.copilot.chat.otel.captureContent": {
|
|
4495
|
+
"type": "boolean",
|
|
4496
|
+
"default": false,
|
|
4497
|
+
"markdownDescription": "Capture input/output messages, system instructions, and tool definitions in OTel telemetry. **Contains potentially sensitive data.** Env var `COPILOT_OTEL_CAPTURE_CONTENT` takes precedence.",
|
|
4498
|
+
"tags": [
|
|
4499
|
+
"advanced"
|
|
4500
|
+
]
|
|
4501
|
+
},
|
|
4502
|
+
"github.copilot.chat.otel.outfile": {
|
|
4503
|
+
"type": "string",
|
|
4504
|
+
"default": "",
|
|
4505
|
+
"markdownDescription": "File path for file-based OTel exporter output (JSON-lines). When set, overrides exporter type to `file`.",
|
|
4506
|
+
"tags": [
|
|
4507
|
+
"advanced"
|
|
4508
|
+
]
|
|
4462
4509
|
}
|
|
4463
4510
|
}
|
|
4464
4511
|
}
|
|
@@ -4544,10 +4591,20 @@
|
|
|
4544
4591
|
}
|
|
4545
4592
|
],
|
|
4546
4593
|
"editor/context": [
|
|
4594
|
+
{
|
|
4595
|
+
"command": "github.copilot.chat.fix",
|
|
4596
|
+
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly && editorSelectionHasDiagnostics",
|
|
4597
|
+
"group": "1_chat@4"
|
|
4598
|
+
},
|
|
4547
4599
|
{
|
|
4548
4600
|
"command": "github.copilot.chat.explain",
|
|
4549
4601
|
"when": "!github.copilot.interactiveSession.disabled",
|
|
4550
|
-
"group": "1_chat@
|
|
4602
|
+
"group": "1_chat@5"
|
|
4603
|
+
},
|
|
4604
|
+
{
|
|
4605
|
+
"command": "github.copilot.chat.review",
|
|
4606
|
+
"when": "config.github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled && resourceScheme != 'vscode-chat-code-block'",
|
|
4607
|
+
"group": "1_chat@6"
|
|
4551
4608
|
},
|
|
4552
4609
|
{
|
|
4553
4610
|
"command": "github.copilot.chat.copilotCLI.addFileReference",
|
|
@@ -4560,28 +4617,6 @@
|
|
|
4560
4617
|
"when": "github.copilot.chat.copilotCLI.hasSession && editorHasSelection && !inOutput && resourceScheme != 'vscode-webview' && resourceScheme != 'webview-panel'"
|
|
4561
4618
|
}
|
|
4562
4619
|
],
|
|
4563
|
-
"editor/context/chat": [
|
|
4564
|
-
{
|
|
4565
|
-
"command": "github.copilot.chat.fix",
|
|
4566
|
-
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
4567
|
-
"group": "copilotAction@1"
|
|
4568
|
-
},
|
|
4569
|
-
{
|
|
4570
|
-
"command": "github.copilot.chat.review",
|
|
4571
|
-
"when": "config.github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled && resourceScheme != 'vscode-chat-code-block'",
|
|
4572
|
-
"group": "copilotAction@2"
|
|
4573
|
-
},
|
|
4574
|
-
{
|
|
4575
|
-
"command": "github.copilot.chat.generateDocs",
|
|
4576
|
-
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
4577
|
-
"group": "copilotGenerate@1"
|
|
4578
|
-
},
|
|
4579
|
-
{
|
|
4580
|
-
"command": "github.copilot.chat.generateTests",
|
|
4581
|
-
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
4582
|
-
"group": "copilotGenerate@2"
|
|
4583
|
-
}
|
|
4584
|
-
],
|
|
4585
4620
|
"chat/editor/inlineGutter": [
|
|
4586
4621
|
{
|
|
4587
4622
|
"command": "github.copilot.chat.explain",
|
|
@@ -4606,6 +4641,28 @@
|
|
|
4606
4641
|
"group": "navigation@0"
|
|
4607
4642
|
}
|
|
4608
4643
|
],
|
|
4644
|
+
"chat/input/editing/sessionApplyActions": [
|
|
4645
|
+
{
|
|
4646
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
4647
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow && !sessions.hasOpenPullRequest",
|
|
4648
|
+
"group": "navigation@0"
|
|
4649
|
+
},
|
|
4650
|
+
{
|
|
4651
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
4652
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow && sessions.hasOpenPullRequest",
|
|
4653
|
+
"group": "navigation@0"
|
|
4654
|
+
},
|
|
4655
|
+
{
|
|
4656
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
4657
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow",
|
|
4658
|
+
"group": "base@1"
|
|
4659
|
+
},
|
|
4660
|
+
{
|
|
4661
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
4662
|
+
"when": "chatSessionType == copilotcli && isSessionsWindow",
|
|
4663
|
+
"group": "base@2"
|
|
4664
|
+
}
|
|
4665
|
+
],
|
|
4609
4666
|
"chat/contextUsage/actions": [
|
|
4610
4667
|
{
|
|
4611
4668
|
"command": "github.copilot.chat.compact"
|
|
@@ -4632,6 +4689,10 @@
|
|
|
4632
4689
|
}
|
|
4633
4690
|
],
|
|
4634
4691
|
"commandPalette": [
|
|
4692
|
+
{
|
|
4693
|
+
"command": "github.copilot.cli.openInCopilotCLI",
|
|
4694
|
+
"when": "false"
|
|
4695
|
+
},
|
|
4635
4696
|
{
|
|
4636
4697
|
"command": "github.copilot.debug.extensionState",
|
|
4637
4698
|
"when": "false"
|
|
@@ -4640,6 +4701,10 @@
|
|
|
4640
4701
|
"command": "github.copilot.cli.sessions.commitToWorktree",
|
|
4641
4702
|
"when": "false"
|
|
4642
4703
|
},
|
|
4704
|
+
{
|
|
4705
|
+
"command": "github.copilot.cli.sessions.commitToRepository",
|
|
4706
|
+
"when": "false"
|
|
4707
|
+
},
|
|
4643
4708
|
{
|
|
4644
4709
|
"command": "github.copilot.chat.debug.exportSingleTrajectory",
|
|
4645
4710
|
"when": "false"
|
|
@@ -4848,6 +4913,10 @@
|
|
|
4848
4913
|
"command": "github.copilot.cli.sessions.rename",
|
|
4849
4914
|
"when": "false"
|
|
4850
4915
|
},
|
|
4916
|
+
{
|
|
4917
|
+
"command": "github.copilot.claude.sessions.rename",
|
|
4918
|
+
"when": "false"
|
|
4919
|
+
},
|
|
4851
4920
|
{
|
|
4852
4921
|
"command": "github.copilot.cli.sessions.openRepository",
|
|
4853
4922
|
"when": "false"
|
|
@@ -4860,6 +4929,10 @@
|
|
|
4860
4929
|
"command": "github.copilot.cli.sessions.openWorktreeInTerminal",
|
|
4861
4930
|
"when": "false"
|
|
4862
4931
|
},
|
|
4932
|
+
{
|
|
4933
|
+
"command": "github.copilot.cli.sessions.copyWorktreeBranchName",
|
|
4934
|
+
"when": "false"
|
|
4935
|
+
},
|
|
4863
4936
|
{
|
|
4864
4937
|
"command": "github.copilot.cloud.sessions.openInBrowser",
|
|
4865
4938
|
"when": "false"
|
|
@@ -4880,6 +4953,22 @@
|
|
|
4880
4953
|
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges.apply",
|
|
4881
4954
|
"when": "false"
|
|
4882
4955
|
},
|
|
4956
|
+
{
|
|
4957
|
+
"command": "github.copilot.chat.mergeCopilotCLIAgentSessionChanges.merge",
|
|
4958
|
+
"when": "false"
|
|
4959
|
+
},
|
|
4960
|
+
{
|
|
4961
|
+
"command": "github.copilot.chat.updateCopilotCLIAgentSessionChanges.update",
|
|
4962
|
+
"when": "false"
|
|
4963
|
+
},
|
|
4964
|
+
{
|
|
4965
|
+
"command": "github.copilot.chat.createPullRequestCopilotCLIAgentSession.createPR",
|
|
4966
|
+
"when": "false"
|
|
4967
|
+
},
|
|
4968
|
+
{
|
|
4969
|
+
"command": "github.copilot.chat.openPullRequestCopilotCLIAgentSession.openPR",
|
|
4970
|
+
"when": "false"
|
|
4971
|
+
},
|
|
4883
4972
|
{
|
|
4884
4973
|
"command": "github.copilot.chat.showAsChatSession",
|
|
4885
4974
|
"when": "false"
|
|
@@ -4920,6 +5009,11 @@
|
|
|
4920
5009
|
"when": "view == copilot-chat",
|
|
4921
5010
|
"group": "export@1"
|
|
4922
5011
|
},
|
|
5012
|
+
{
|
|
5013
|
+
"command": "workbench.action.chat.openAgentDebugPanel",
|
|
5014
|
+
"when": "view == copilot-chat",
|
|
5015
|
+
"group": "3_show@0"
|
|
5016
|
+
},
|
|
4923
5017
|
{
|
|
4924
5018
|
"command": "github.copilot.debug.showOutputChannel",
|
|
4925
5019
|
"when": "view == copilot-chat",
|
|
@@ -5096,6 +5190,13 @@
|
|
|
5096
5190
|
"when": "config.github.copilot.chat.reviewAgent.enabled && github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmProviderRootUri in github.copilot.chat.reviewDiff.enabledRootUris"
|
|
5097
5191
|
}
|
|
5098
5192
|
],
|
|
5193
|
+
"scm/sourceControl": [
|
|
5194
|
+
{
|
|
5195
|
+
"command": "github.copilot.cli.openInCopilotCLI",
|
|
5196
|
+
"group": "3_worktree@1",
|
|
5197
|
+
"when": "scmProvider == git"
|
|
5198
|
+
}
|
|
5199
|
+
],
|
|
5099
5200
|
"scm/resourceGroup/context": [
|
|
5100
5201
|
{
|
|
5101
5202
|
"command": "github.copilot.chat.review.stagedChanges",
|
|
@@ -5211,6 +5312,11 @@
|
|
|
5211
5312
|
}
|
|
5212
5313
|
],
|
|
5213
5314
|
"chat/chatSessions": [
|
|
5315
|
+
{
|
|
5316
|
+
"command": "github.copilot.claude.sessions.rename",
|
|
5317
|
+
"when": "chatSessionType == claude-code",
|
|
5318
|
+
"group": "1_edit@4"
|
|
5319
|
+
},
|
|
5214
5320
|
{
|
|
5215
5321
|
"command": "github.copilot.cli.sessions.delete",
|
|
5216
5322
|
"when": "chatSessionType == copilotcli",
|
|
@@ -5232,10 +5338,15 @@
|
|
|
5232
5338
|
"group": "2_open@2"
|
|
5233
5339
|
},
|
|
5234
5340
|
{
|
|
5235
|
-
"command": "github.copilot.cli.sessions.
|
|
5341
|
+
"command": "github.copilot.cli.sessions.copyWorktreeBranchName",
|
|
5236
5342
|
"when": "chatSessionType == copilotcli",
|
|
5237
5343
|
"group": "2_open@3"
|
|
5238
5344
|
},
|
|
5345
|
+
{
|
|
5346
|
+
"command": "github.copilot.cli.sessions.resumeInTerminal",
|
|
5347
|
+
"when": "chatSessionType == copilotcli",
|
|
5348
|
+
"group": "2_open@4"
|
|
5349
|
+
},
|
|
5239
5350
|
{
|
|
5240
5351
|
"command": "github.copilot.chat.applyCopilotCLIAgentSessionChanges",
|
|
5241
5352
|
"when": "chatSessionType == copilotcli && workbenchState != empty && !isSessionsWindow",
|
|
@@ -5420,12 +5531,6 @@
|
|
|
5420
5531
|
"mac": "cmd+alt+.",
|
|
5421
5532
|
"when": "github.copilot-chat.activated && terminalShellIntegrationEnabled && terminalFocus && !terminalAltBufferActive"
|
|
5422
5533
|
},
|
|
5423
|
-
{
|
|
5424
|
-
"command": "github.copilot.nes.captureExpected.start",
|
|
5425
|
-
"key": "ctrl+k ctrl+r",
|
|
5426
|
-
"mac": "cmd+k cmd+r",
|
|
5427
|
-
"when": "editorTextFocus && github.copilot.inlineEditsEnabled"
|
|
5428
|
-
},
|
|
5429
5534
|
{
|
|
5430
5535
|
"command": "github.copilot.nes.captureExpected.confirm",
|
|
5431
5536
|
"key": "ctrl+enter",
|
|
@@ -5621,8 +5726,9 @@
|
|
|
5621
5726
|
"inputPlaceholder": "Run local tasks with Claude, type `#` for adding context",
|
|
5622
5727
|
"order": 3,
|
|
5623
5728
|
"description": "%github.copilot.session.providerDescription.claude%",
|
|
5624
|
-
"when": "config.github.copilot.chat.claudeAgent.enabled
|
|
5729
|
+
"when": "config.github.copilot.chat.claudeAgent.enabled",
|
|
5625
5730
|
"canDelegate": true,
|
|
5731
|
+
"requiresCustomModels": true,
|
|
5626
5732
|
"capabilities": {
|
|
5627
5733
|
"supportsFileAttachments": true,
|
|
5628
5734
|
"supportsImageAttachments": true
|
|
@@ -5665,11 +5771,11 @@
|
|
|
5665
5771
|
{
|
|
5666
5772
|
"type": "copilotcli",
|
|
5667
5773
|
"name": "cli",
|
|
5668
|
-
"displayName": "
|
|
5774
|
+
"displayName": "Copilot CLI",
|
|
5669
5775
|
"icon": "$(worktree)",
|
|
5670
|
-
"welcomeTitle": "
|
|
5671
|
-
"welcomeMessage": "Run tasks in the background",
|
|
5672
|
-
"inputPlaceholder": "Run tasks in the background, type `#` for adding context",
|
|
5776
|
+
"welcomeTitle": "Copilot CLI",
|
|
5777
|
+
"welcomeMessage": "Run tasks in the background with the Copilot CLI",
|
|
5778
|
+
"inputPlaceholder": "Run tasks in the background with the Copilot CLI, type `#` for adding context",
|
|
5673
5779
|
"order": 1,
|
|
5674
5780
|
"canDelegate": true,
|
|
5675
5781
|
"description": "%github.copilot.session.providerDescription.background%",
|
|
@@ -5682,13 +5788,22 @@
|
|
|
5682
5788
|
"supportsSymbolAttachments": true,
|
|
5683
5789
|
"supportsSearchResultAttachments": true,
|
|
5684
5790
|
"supportsSourceControlAttachments": true,
|
|
5685
|
-
"supportsPromptAttachments": true
|
|
5791
|
+
"supportsPromptAttachments": true,
|
|
5792
|
+
"supportsHandOffs": true
|
|
5686
5793
|
},
|
|
5687
5794
|
"commands": [
|
|
5688
5795
|
{
|
|
5689
5796
|
"name": "delegate",
|
|
5690
5797
|
"description": "Delegate chat session to cloud agent and create associated PR",
|
|
5691
5798
|
"when": "config.github.copilot.chat.cloudAgent.enabled"
|
|
5799
|
+
},
|
|
5800
|
+
{
|
|
5801
|
+
"name": "compact",
|
|
5802
|
+
"description": "%github.copilot.command.cli.compact.description%"
|
|
5803
|
+
},
|
|
5804
|
+
{
|
|
5805
|
+
"name": "mcp",
|
|
5806
|
+
"description": "%github.copilot.command.cli.mcp.description%"
|
|
5692
5807
|
}
|
|
5693
5808
|
],
|
|
5694
5809
|
"customAgentTarget": "github-copilot",
|
|
@@ -5755,7 +5870,7 @@
|
|
|
5755
5870
|
"path": "./assets/prompts/create-prompt.prompt.md"
|
|
5756
5871
|
},
|
|
5757
5872
|
{
|
|
5758
|
-
"path": "./assets/prompts/create-
|
|
5873
|
+
"path": "./assets/prompts/create-instructions.prompt.md"
|
|
5759
5874
|
},
|
|
5760
5875
|
{
|
|
5761
5876
|
"path": "./assets/prompts/create-skill.prompt.md"
|
|
@@ -5767,12 +5882,31 @@
|
|
|
5767
5882
|
"path": "./assets/prompts/create-hook.prompt.md"
|
|
5768
5883
|
}
|
|
5769
5884
|
],
|
|
5885
|
+
"chatSkills": [
|
|
5886
|
+
{
|
|
5887
|
+
"path": "./assets/prompts/skills/project-setup-info-local/SKILL.md",
|
|
5888
|
+
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && !config.github.copilot.chat.newWorkspace.useContext7"
|
|
5889
|
+
},
|
|
5890
|
+
{
|
|
5891
|
+
"path": "./assets/prompts/skills/project-setup-info-context7/SKILL.md",
|
|
5892
|
+
"when": "config.github.copilot.chat.projectSetupInfoSkill.enabled && config.github.copilot.chat.newWorkspace.useContext7"
|
|
5893
|
+
},
|
|
5894
|
+
{
|
|
5895
|
+
"path": "./assets/prompts/skills/install-vscode-extension/SKILL.md",
|
|
5896
|
+
"when": "config.github.copilot.chat.installExtensionSkill.enabled && config.github.copilot.chat.newWorkspaceCreation.enabled"
|
|
5897
|
+
},
|
|
5898
|
+
{
|
|
5899
|
+
"path": "./assets/prompts/skills/get-search-view-results/SKILL.md",
|
|
5900
|
+
"when": "config.github.copilot.chat.getSearchViewResultsSkill.enabled"
|
|
5901
|
+
}
|
|
5902
|
+
],
|
|
5770
5903
|
"terminal": {
|
|
5771
5904
|
"profiles": [
|
|
5772
5905
|
{
|
|
5773
5906
|
"icon": "copilot",
|
|
5774
5907
|
"id": "copilot-cli",
|
|
5775
|
-
"title": "GitHub Copilot CLI"
|
|
5908
|
+
"title": "GitHub Copilot CLI",
|
|
5909
|
+
"titleTemplate": "${sequence}"
|
|
5776
5910
|
}
|
|
5777
5911
|
]
|
|
5778
5912
|
}
|
|
@@ -5785,8 +5919,10 @@
|
|
|
5785
5919
|
"scripts": {
|
|
5786
5920
|
"postinstall": "tsx ./script/postinstall.ts",
|
|
5787
5921
|
"prepare": "husky",
|
|
5788
|
-
"vscode-dts:
|
|
5789
|
-
"vscode-dts:
|
|
5922
|
+
"vscode-dts:update": "node script/build/vscodeDtsUpdate.js",
|
|
5923
|
+
"vscode-dts:check": "node script/build/vscodeDtsCheck.js",
|
|
5924
|
+
"vscode-dts:dev": "node node_modules/@vscode/dts/index.js dev && node script/build/moveProposedDts.js",
|
|
5925
|
+
"vscode-dts:main": "node node_modules/@vscode/dts/index.js main && node script/build/moveProposedDts.js",
|
|
5790
5926
|
"build": "node .esbuild.ts --sourcemaps",
|
|
5791
5927
|
"compile": "node .esbuild.ts --dev",
|
|
5792
5928
|
"watch": "npm-run-all -p watch:*",
|
|
@@ -5851,7 +5987,7 @@
|
|
|
5851
5987
|
"@types/source-map-support": "^0.5.10",
|
|
5852
5988
|
"@types/tar": "^6.1.13",
|
|
5853
5989
|
"@types/vinyl": "^2.0.12",
|
|
5854
|
-
"@types/vscode": "^1.
|
|
5990
|
+
"@types/vscode": "^1.109.0",
|
|
5855
5991
|
"@types/vscode-webview": "^1.57.4",
|
|
5856
5992
|
"@types/yargs": "^17.0.24",
|
|
5857
5993
|
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
@@ -5867,6 +6003,7 @@
|
|
|
5867
6003
|
"@vscode/test-electron": "^2.5.2",
|
|
5868
6004
|
"@vscode/test-web": "^0.0.71",
|
|
5869
6005
|
"@vscode/vsce": "3.6.0",
|
|
6006
|
+
"agent-browser": "^0.16.3",
|
|
5870
6007
|
"copyfiles": "^2.4.1",
|
|
5871
6008
|
"csv-parse": "^6.0.0",
|
|
5872
6009
|
"dotenv": "^17.2.0",
|
|
@@ -5896,7 +6033,7 @@
|
|
|
5896
6033
|
"openai": "^6.7.0",
|
|
5897
6034
|
"outdent": "^0.8.0",
|
|
5898
6035
|
"picomatch": "^4.0.2",
|
|
5899
|
-
"playwright": "^1.
|
|
6036
|
+
"playwright": "^1.58.2",
|
|
5900
6037
|
"prettier": "^3.6.2",
|
|
5901
6038
|
"react": "^17.0.2",
|
|
5902
6039
|
"react-dom": "17.0.2",
|
|
@@ -5922,23 +6059,36 @@
|
|
|
5922
6059
|
"zod": "3.25.76"
|
|
5923
6060
|
},
|
|
5924
6061
|
"dependencies": {
|
|
5925
|
-
"@anthropic-ai/claude-agent-sdk": "^0.2.
|
|
5926
|
-
"@anthropic-ai/sdk": "^0.
|
|
6062
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.63",
|
|
6063
|
+
"@anthropic-ai/sdk": "^0.78.0",
|
|
5927
6064
|
"@github/blackbird-external-ingest-utils": "^0.3.0",
|
|
5928
|
-
"@github/copilot": "^
|
|
6065
|
+
"@github/copilot": "^1.0.2",
|
|
5929
6066
|
"@google/genai": "^1.22.0",
|
|
5930
6067
|
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
5931
6068
|
"@microsoft/tiktokenizer": "^1.0.10",
|
|
5932
6069
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
6070
|
+
"@opentelemetry/api": "^1.9.0",
|
|
6071
|
+
"@opentelemetry/api-logs": "^0.212.0",
|
|
6072
|
+
"@opentelemetry/exporter-logs-otlp-grpc": "^0.212.0",
|
|
6073
|
+
"@opentelemetry/exporter-logs-otlp-http": "^0.212.0",
|
|
6074
|
+
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.212.0",
|
|
6075
|
+
"@opentelemetry/exporter-metrics-otlp-http": "^0.212.0",
|
|
6076
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "^0.212.0",
|
|
6077
|
+
"@opentelemetry/exporter-trace-otlp-http": "^0.212.0",
|
|
6078
|
+
"@opentelemetry/resources": "^2.5.1",
|
|
6079
|
+
"@opentelemetry/sdk-logs": "^0.212.0",
|
|
6080
|
+
"@opentelemetry/sdk-metrics": "^2.5.1",
|
|
6081
|
+
"@opentelemetry/sdk-trace-node": "^2.5.1",
|
|
6082
|
+
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
5933
6083
|
"@sinclair/typebox": "^0.34.41",
|
|
5934
|
-
"@vscode/copilot-api": "^0.2.
|
|
5935
|
-
"@vscode/extension-telemetry": "^1.5.
|
|
6084
|
+
"@vscode/copilot-api": "^0.2.15",
|
|
6085
|
+
"@vscode/extension-telemetry": "^1.5.1",
|
|
5936
6086
|
"@vscode/l10n": "^0.0.18",
|
|
5937
6087
|
"@vscode/prompt-tsx": "^0.4.0-alpha.6",
|
|
5938
6088
|
"@vscode/tree-sitter-wasm": "0.0.5-php.2",
|
|
5939
6089
|
"@vscode/webview-ui-toolkit": "^1.3.1",
|
|
5940
6090
|
"@xterm/headless": "^5.5.0",
|
|
5941
|
-
"ajv": "^8.
|
|
6091
|
+
"ajv": "^8.18.0",
|
|
5942
6092
|
"applicationinsights": "^2.9.7",
|
|
5943
6093
|
"best-effort-json-parser": "^1.2.1",
|
|
5944
6094
|
"diff": "^8.0.3",
|
|
@@ -5948,8 +6098,8 @@
|
|
|
5948
6098
|
"isbinaryfile": "^5.0.4",
|
|
5949
6099
|
"jsonc-parser": "^3.3.1",
|
|
5950
6100
|
"lru-cache": "^11.1.0",
|
|
5951
|
-
"markdown-it": "^14.1.
|
|
5952
|
-
"minimatch": "^10.
|
|
6101
|
+
"markdown-it": "^14.1.1",
|
|
6102
|
+
"minimatch": "^10.2.1",
|
|
5953
6103
|
"undici": "^7.18.2",
|
|
5954
6104
|
"vscode-tas-client": "^0.1.84",
|
|
5955
6105
|
"web-tree-sitter": "^0.23.0"
|
|
@@ -5959,5 +6109,6 @@
|
|
|
5959
6109
|
"string_decoder": "npm:string_decoder@1.2.0",
|
|
5960
6110
|
"node-gyp": "npm:node-gyp@10.3.1",
|
|
5961
6111
|
"zod": "3.25.76"
|
|
5962
|
-
}
|
|
5963
|
-
|
|
6112
|
+
},
|
|
6113
|
+
"vscodeCommit": "1eb2581989c23047ff009b68e910e48f51d4d3d7"
|
|
6114
|
+
}
|