@vscode/chat-lib 0.0.1
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/LICENSE.txt +21 -0
- package/README.md +13 -0
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts +32 -0
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.d.ts.map +1 -0
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js +159 -0
- package/dist/src/_internal/extension/byok/node/openAIEndpoint.js.map +1 -0
- package/dist/src/_internal/extension/common/constants.d.ts +37 -0
- package/dist/src/_internal/extension/common/constants.d.ts.map +1 -0
- package/dist/src/_internal/extension/common/constants.js +59 -0
- package/dist/src/_internal/extension/common/constants.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/delayer.d.ts +24 -0
- package/dist/src/_internal/extension/inlineEdits/common/delayer.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/delayer.js +100 -0
- package/dist/src/_internal/extension/inlineEdits/common/delayer.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.d.ts +19 -0
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.js +275 -0
- package/dist/src/_internal/extension/inlineEdits/common/editRebase.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/ghNearbyNesProvider.d.ts +16 -0
- package/dist/src/_internal/extension/inlineEdits/common/ghNearbyNesProvider.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/ghNearbyNesProvider.js +147 -0
- package/dist/src/_internal/extension/inlineEdits/common/ghNearbyNesProvider.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/nearbyCursorInlineEditProvider.d.ts +47 -0
- package/dist/src/_internal/extension/inlineEdits/common/nearbyCursorInlineEditProvider.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/nearbyCursorInlineEditProvider.js +189 -0
- package/dist/src/_internal/extension/inlineEdits/common/nearbyCursorInlineEditProvider.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/rejectionCollector.d.ts +15 -0
- package/dist/src/_internal/extension/inlineEdits/common/rejectionCollector.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/common/rejectionCollector.js +137 -0
- package/dist/src/_internal/extension/inlineEdits/common/rejectionCollector.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/debugRecorder.d.ts +18 -0
- package/dist/src/_internal/extension/inlineEdits/node/debugRecorder.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/debugRecorder.js +156 -0
- package/dist/src/_internal/extension/inlineEdits/node/debugRecorder.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/importFiltering.d.ts +7 -0
- package/dist/src/_internal/extension/inlineEdits/node/importFiltering.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/importFiltering.js +24 -0
- package/dist/src/_internal/extension/inlineEdits/node/importFiltering.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nesConfigs.d.ts +8 -0
- package/dist/src/_internal/extension/inlineEdits/node/nesConfigs.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nesConfigs.js +7 -0
- package/dist/src/_internal/extension/inlineEdits/node/nesConfigs.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts +47 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.js +230 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditCache.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts +73 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js +629 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProvider.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts +241 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js +680 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.js.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.d.ts +38 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.d.ts.map +1 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.js +16 -0
- package/dist/src/_internal/extension/inlineEdits/node/nextEditResult.js.map +1 -0
- package/dist/src/_internal/extension/prompt/common/importStatement.d.ts +2 -0
- package/dist/src/_internal/extension/prompt/common/importStatement.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompt/common/importStatement.js +28 -0
- package/dist/src/_internal/extension/prompt/common/importStatement.js.map +1 -0
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts +62 -0
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js +639 -0
- package/dist/src/_internal/extension/prompt/node/chatMLFetcher.js.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/fragments.d.ts +42 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/fragments.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/fragments.js +125 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/fragments.js.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/implementation.d.ts +60 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/implementation.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/implementation.js +416 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/implementation.js.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/projectedText.d.ts +30 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/projectedText.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/projectedText.js +64 -0
- package/dist/src/_internal/extension/prompts/node/inline/summarizedDocument/projectedText.js.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/visualization.d.ts +26 -0
- package/dist/src/_internal/extension/prompts/node/inline/visualization.d.ts.map +1 -0
- package/dist/src/_internal/extension/prompts/node/inline/visualization.js +41 -0
- package/dist/src/_internal/extension/prompts/node/inline/visualization.js.map +1 -0
- package/dist/src/_internal/extension/xtab/common/promptCrafting.d.ts +51 -0
- package/dist/src/_internal/extension/xtab/common/promptCrafting.d.ts.map +1 -0
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js +517 -0
- package/dist/src/_internal/extension/xtab/common/promptCrafting.js.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.d.ts +23 -0
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.d.ts.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.js +96 -0
- package/dist/src/_internal/extension/xtab/node/xtabEndpoint.js.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabProvider.d.ts +75 -0
- package/dist/src/_internal/extension/xtab/node/xtabProvider.d.ts.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js +796 -0
- package/dist/src/_internal/extension/xtab/node/xtabProvider.js.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabUtils.d.ts +8 -0
- package/dist/src/_internal/extension/xtab/node/xtabUtils.d.ts.map +1 -0
- package/dist/src/_internal/extension/xtab/node/xtabUtils.js +55 -0
- package/dist/src/_internal/extension/xtab/node/xtabUtils.js.map +1 -0
- package/dist/src/_internal/platform/authentication/common/authentication.d.ts +145 -0
- package/dist/src/_internal/platform/authentication/common/authentication.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/common/authentication.js +156 -0
- package/dist/src/_internal/platform/authentication/common/authentication.js.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts +190 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.js +181 -0
- package/dist/src/_internal/platform/authentication/common/copilotToken.js.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenManager.d.ts +50 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenManager.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenManager.js +14 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenManager.js.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenStore.d.ts +23 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenStore.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenStore.js +30 -0
- package/dist/src/_internal/platform/authentication/common/copilotTokenStore.js.map +1 -0
- package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.d.ts +23 -0
- package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.js +92 -0
- package/dist/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.js.map +1 -0
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.d.ts +80 -0
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.d.ts.map +1 -0
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js +274 -0
- package/dist/src/_internal/platform/authentication/node/copilotTokenManager.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatMLFetcher.d.ts +48 -0
- package/dist/src/_internal/platform/chat/common/chatMLFetcher.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatMLFetcher.js +77 -0
- package/dist/src/_internal/platform/chat/common/chatMLFetcher.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts +54 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaService.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaService.js +10 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaService.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts +16 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js +99 -0
- package/dist/src/_internal/platform/chat/common/chatQuotaServiceImpl.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts +264 -0
- package/dist/src/_internal/platform/chat/common/commonTypes.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/commonTypes.js +299 -0
- package/dist/src/_internal/platform/chat/common/commonTypes.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/conversationOptions.d.ts +9 -0
- package/dist/src/_internal/platform/chat/common/conversationOptions.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/conversationOptions.js +10 -0
- package/dist/src/_internal/platform/chat/common/conversationOptions.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/globalStringUtils.d.ts +10 -0
- package/dist/src/_internal/platform/chat/common/globalStringUtils.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/globalStringUtils.js +52 -0
- package/dist/src/_internal/platform/chat/common/globalStringUtils.js.map +1 -0
- package/dist/src/_internal/platform/chat/common/interactionService.d.ts +18 -0
- package/dist/src/_internal/platform/chat/common/interactionService.d.ts.map +1 -0
- package/dist/src/_internal/platform/chat/common/interactionService.js +28 -0
- package/dist/src/_internal/platform/chat/common/interactionService.js.map +1 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts +513 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.js +529 -0
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -0
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.d.ts +15 -0
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.d.ts.map +1 -0
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.js +33 -0
- package/dist/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.js.map +1 -0
- package/dist/src/_internal/platform/configuration/common/jsonSchema.d.ts +94 -0
- package/dist/src/_internal/platform/configuration/common/jsonSchema.d.ts.map +1 -0
- package/dist/src/_internal/platform/configuration/common/jsonSchema.js +36 -0
- package/dist/src/_internal/platform/configuration/common/jsonSchema.js.map +1 -0
- package/dist/src/_internal/platform/configuration/common/validator.d.ts +35 -0
- package/dist/src/_internal/platform/configuration/common/validator.d.ts.map +1 -0
- package/dist/src/_internal/platform/configuration/common/validator.js +195 -0
- package/dist/src/_internal/platform/configuration/common/validator.js.map +1 -0
- package/dist/src/_internal/platform/diff/common/diffService.d.ts +27 -0
- package/dist/src/_internal/platform/diff/common/diffService.d.ts.map +1 -0
- package/dist/src/_internal/platform/diff/common/diffService.js +10 -0
- package/dist/src/_internal/platform/diff/common/diffService.js.map +1 -0
- package/dist/src/_internal/platform/diff/common/diffWorker.d.ts +34 -0
- package/dist/src/_internal/platform/diff/common/diffWorker.d.ts.map +1 -0
- package/dist/src/_internal/platform/diff/common/diffWorker.js +44 -0
- package/dist/src/_internal/platform/diff/common/diffWorker.js.map +1 -0
- package/dist/src/_internal/platform/diff/node/diffServiceImpl.d.ts +14 -0
- package/dist/src/_internal/platform/diff/node/diffServiceImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/diff/node/diffServiceImpl.js +95 -0
- package/dist/src/_internal/platform/diff/node/diffServiceImpl.js.map +1 -0
- package/dist/src/_internal/platform/editing/common/abstractText.d.ts +58 -0
- package/dist/src/_internal/platform/editing/common/abstractText.d.ts.map +1 -0
- package/dist/src/_internal/platform/editing/common/abstractText.js +129 -0
- package/dist/src/_internal/platform/editing/common/abstractText.js.map +1 -0
- package/dist/src/_internal/platform/editing/common/notebookDocumentSnapshot.d.ts +38 -0
- package/dist/src/_internal/platform/editing/common/notebookDocumentSnapshot.d.ts.map +1 -0
- package/dist/src/_internal/platform/editing/common/notebookDocumentSnapshot.js +96 -0
- package/dist/src/_internal/platform/editing/common/notebookDocumentSnapshot.js.map +1 -0
- package/dist/src/_internal/platform/editing/common/positionOffsetTransformer.d.ts +28 -0
- package/dist/src/_internal/platform/editing/common/positionOffsetTransformer.d.ts.map +1 -0
- package/dist/src/_internal/platform/editing/common/positionOffsetTransformer.js +158 -0
- package/dist/src/_internal/platform/editing/common/positionOffsetTransformer.js.map +1 -0
- package/dist/src/_internal/platform/editing/common/textDocumentSnapshot.d.ts +55 -0
- package/dist/src/_internal/platform/editing/common/textDocumentSnapshot.d.ts.map +1 -0
- package/dist/src/_internal/platform/editing/common/textDocumentSnapshot.js +195 -0
- package/dist/src/_internal/platform/editing/common/textDocumentSnapshot.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/capiClient.d.ts +15 -0
- package/dist/src/_internal/platform/endpoint/common/capiClient.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/capiClient.js +25 -0
- package/dist/src/_internal/platform/endpoint/common/capiClient.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +55 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +111 -0
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/domainService.d.ts +18 -0
- package/dist/src/_internal/platform/endpoint/common/domainService.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/domainService.js +12 -0
- package/dist/src/_internal/platform/endpoint/common/domainService.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts +83 -0
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.js +23 -0
- package/dist/src/_internal/platform/endpoint/common/endpointProvider.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/endpointTypes.d.ts +7 -0
- package/dist/src/_internal/platform/endpoint/common/endpointTypes.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/endpointTypes.js +15 -0
- package/dist/src/_internal/platform/endpoint/common/endpointTypes.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/licenseAgreement.d.ts +7 -0
- package/dist/src/_internal/platform/endpoint/common/licenseAgreement.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/licenseAgreement.js +14 -0
- package/dist/src/_internal/platform/endpoint/common/licenseAgreement.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/statefulMarkerContainer.d.ts +31 -0
- package/dist/src/_internal/platform/endpoint/common/statefulMarkerContainer.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/statefulMarkerContainer.js +73 -0
- package/dist/src/_internal/platform/endpoint/common/statefulMarkerContainer.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.d.ts +17 -0
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.js +37 -0
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/capiClientImpl.d.ts +7 -0
- package/dist/src/_internal/platform/endpoint/node/capiClientImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/capiClientImpl.js +30 -0
- package/dist/src/_internal/platform/endpoint/node/capiClientImpl.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts +90 -0
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js +349 -0
- package/dist/src/_internal/platform/endpoint/node/chatEndpoint.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/domainServiceImpl.d.ts +19 -0
- package/dist/src/_internal/platform/endpoint/node/domainServiceImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/domainServiceImpl.js +80 -0
- package/dist/src/_internal/platform/endpoint/node/domainServiceImpl.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.d.ts +4 -0
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.js +39 -0
- package/dist/src/_internal/platform/endpoint/node/proxyXtabEndpoint.js.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts +13 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts.map +1 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js +308 -0
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js.map +1 -0
- package/dist/src/_internal/platform/env/common/envService.d.ts +84 -0
- package/dist/src/_internal/platform/env/common/envService.d.ts.map +1 -0
- package/dist/src/_internal/platform/env/common/envService.js +64 -0
- package/dist/src/_internal/platform/env/common/envService.js.map +1 -0
- package/dist/src/_internal/platform/env/common/nullEnvService.d.ts +21 -0
- package/dist/src/_internal/platform/env/common/nullEnvService.d.ts.map +1 -0
- package/dist/src/_internal/platform/env/common/nullEnvService.js +57 -0
- package/dist/src/_internal/platform/env/common/nullEnvService.js.map +1 -0
- package/dist/src/_internal/platform/env/common/packagejson.d.ts +42 -0
- package/dist/src/_internal/platform/env/common/packagejson.d.ts.map +1 -0
- package/dist/src/_internal/platform/env/common/packagejson.js +12 -0
- package/dist/src/_internal/platform/env/common/packagejson.js.map +1 -0
- package/dist/src/_internal/platform/git/common/gitExtensionService.d.ts +12 -0
- package/dist/src/_internal/platform/git/common/gitExtensionService.d.ts.map +1 -0
- package/dist/src/_internal/platform/git/common/gitExtensionService.js +10 -0
- package/dist/src/_internal/platform/git/common/gitExtensionService.js.map +1 -0
- package/dist/src/_internal/platform/git/common/nullGitExtensionService.d.ts +11 -0
- package/dist/src/_internal/platform/git/common/nullGitExtensionService.d.ts.map +1 -0
- package/dist/src/_internal/platform/git/common/nullGitExtensionService.js +19 -0
- package/dist/src/_internal/platform/git/common/nullGitExtensionService.js.map +1 -0
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts +7 -0
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts.map +1 -0
- package/dist/src/_internal/platform/github/common/githubAPI.js +42 -0
- package/dist/src/_internal/platform/github/common/githubAPI.js.map +1 -0
- package/dist/src/_internal/platform/github/common/githubService.d.ts +63 -0
- package/dist/src/_internal/platform/github/common/githubService.d.ts.map +1 -0
- package/dist/src/_internal/platform/github/common/githubService.js +37 -0
- package/dist/src/_internal/platform/github/common/githubService.js.map +1 -0
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts +9 -0
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js +21 -0
- package/dist/src/_internal/platform/github/common/nullOctokitServiceImpl.js.map +1 -0
- package/dist/src/_internal/platform/ignore/common/ignoreService.d.ts +30 -0
- package/dist/src/_internal/platform/ignore/common/ignoreService.d.ts.map +1 -0
- package/dist/src/_internal/platform/ignore/common/ignoreService.js +73 -0
- package/dist/src/_internal/platform/ignore/common/ignoreService.js.map +1 -0
- package/dist/src/_internal/platform/inlineCompletions/common/api.d.ts +162 -0
- package/dist/src/_internal/platform/inlineCompletions/common/api.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineCompletions/common/api.js +3 -0
- package/dist/src/_internal/platform/inlineCompletions/common/api.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/diagnosticData.d.ts +14 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/diagnosticData.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/diagnosticData.js +31 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/diagnosticData.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/documentId.d.ts +20 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/documentId.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/documentId.js +44 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/documentId.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/edit.d.ts +73 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/edit.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/edit.js +142 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/edit.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/editUtils.d.ts +14 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/editUtils.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/editUtils.js +59 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/editUtils.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/fetchCancellationError.d.ts +6 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/fetchCancellationError.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/fetchCancellationError.js +16 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/fetchCancellationError.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageContext.d.ts +44 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageContext.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageContext.js +57 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageContext.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageId.d.ts +8 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageId.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageId.js +16 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/languageId.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/permutation.d.ts +36 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/permutation.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/permutation.js +68 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/permutation.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/rootedLineEdit.d.ts +16 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/rootedLineEdit.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/rootedLineEdit.js +42 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/rootedLineEdit.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLength.d.ts +24 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLength.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLength.js +62 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLength.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/combineTextEditInfos.d.ts +3 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/combineTextEditInfos.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/combineTextEditInfos.js +125 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/combineTextEditInfos.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/length.d.ts +46 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/length.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/length.js +171 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/length.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/textEditInfo.d.ts +9 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/textEditInfo.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/textEditInfo.js +32 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/textEditInfo.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.d.ts +50 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.js +54 -0
- package/dist/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/debugRecorderBookmark.d.ts +5 -0
- package/dist/src/_internal/platform/inlineEdits/common/debugRecorderBookmark.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/debugRecorderBookmark.js +14 -0
- package/dist/src/_internal/platform/inlineEdits/common/debugRecorderBookmark.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/editReason.d.ts +98 -0
- package/dist/src/_internal/platform/inlineEdits/common/editReason.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/editReason.js +111 -0
- package/dist/src/_internal/platform/inlineEdits/common/editReason.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts +132 -0
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js +398 -0
- package/dist/src/_internal/platform/inlineEdits/common/inlineEditLogContext.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableGit.d.ts +11 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableGit.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableGit.js +50 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableGit.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableWorkspace.d.ts +90 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableWorkspace.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableWorkspace.js +169 -0
- package/dist/src/_internal/platform/inlineEdits/common/observableWorkspace.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/responseProcessor.d.ts +34 -0
- package/dist/src/_internal/platform/inlineEdits/common/responseProcessor.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/responseProcessor.js +185 -0
- package/dist/src/_internal/platform/inlineEdits/common/responseProcessor.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts +223 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.js +315 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProviders.d.ts +14 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProviders.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProviders.js +53 -0
- package/dist/src/_internal/platform/inlineEdits/common/statelessNextEditProviders.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/observable.d.ts +16 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/observable.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/observable.js +38 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/observable.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/stringifyChatMessages.d.ts +3 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/stringifyChatMessages.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/stringifyChatMessages.js +26 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/stringifyChatMessages.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/utils.d.ts +19 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/utils.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/utils.js +44 -0
- package/dist/src/_internal/platform/inlineEdits/common/utils/utils.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/historyContextProvider.d.ts +45 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/historyContextProvider.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/historyContextProvider.js +49 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/historyContextProvider.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesHistoryContextProvider.d.ts +17 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesHistoryContextProvider.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesHistoryContextProvider.js +300 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesHistoryContextProvider.js.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesXtabHistoryTracker.d.ts +37 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesXtabHistoryTracker.d.ts.map +1 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesXtabHistoryTracker.js +116 -0
- package/dist/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesXtabHistoryTracker.js.map +1 -0
- package/dist/src/_internal/platform/languageContextProvider/common/languageContextProviderService.d.ts +13 -0
- package/dist/src/_internal/platform/languageContextProvider/common/languageContextProviderService.d.ts.map +1 -0
- package/dist/src/_internal/platform/languageContextProvider/common/languageContextProviderService.js +10 -0
- package/dist/src/_internal/platform/languageContextProvider/common/languageContextProviderService.js.map +1 -0
- package/dist/src/_internal/platform/languageContextProvider/common/nullLanguageContextProviderService.d.ts +13 -0
- package/dist/src/_internal/platform/languageContextProvider/common/nullLanguageContextProviderService.d.ts.map +1 -0
- package/dist/src/_internal/platform/languageContextProvider/common/nullLanguageContextProviderService.js +31 -0
- package/dist/src/_internal/platform/languageContextProvider/common/nullLanguageContextProviderService.js.map +1 -0
- package/dist/src/_internal/platform/languageServer/common/languageContextService.d.ts +146 -0
- package/dist/src/_internal/platform/languageServer/common/languageContextService.d.ts.map +1 -0
- package/dist/src/_internal/platform/languageServer/common/languageContextService.js +42 -0
- package/dist/src/_internal/platform/languageServer/common/languageContextService.js.map +1 -0
- package/dist/src/_internal/platform/languages/common/languageDiagnosticsService.d.ts +26 -0
- package/dist/src/_internal/platform/languages/common/languageDiagnosticsService.d.ts.map +1 -0
- package/dist/src/_internal/platform/languages/common/languageDiagnosticsService.js +53 -0
- package/dist/src/_internal/platform/languages/common/languageDiagnosticsService.js.map +1 -0
- package/dist/src/_internal/platform/languages/common/testLanguageDiagnosticsService.d.ts +11 -0
- package/dist/src/_internal/platform/languages/common/testLanguageDiagnosticsService.d.ts.map +1 -0
- package/dist/src/_internal/platform/languages/common/testLanguageDiagnosticsService.js +30 -0
- package/dist/src/_internal/platform/languages/common/testLanguageDiagnosticsService.js.map +1 -0
- package/dist/src/_internal/platform/log/common/logService.d.ts +100 -0
- package/dist/src/_internal/platform/log/common/logService.d.ts.map +1 -0
- package/dist/src/_internal/platform/log/common/logService.js +178 -0
- package/dist/src/_internal/platform/log/common/logService.js.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsAPI.d.ts +69 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsAPI.d.ts.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsAPI.js +23 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsAPI.js.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsFetchService.d.ts +80 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsFetchService.d.ts.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsFetchService.js +77 -0
- package/dist/src/_internal/platform/nesFetch/common/completionsFetchService.js.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/responseStream.d.ts +26 -0
- package/dist/src/_internal/platform/nesFetch/common/responseStream.d.ts.map +1 -0
- package/dist/src/_internal/platform/nesFetch/common/responseStream.js +125 -0
- package/dist/src/_internal/platform/nesFetch/common/responseStream.js.map +1 -0
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.d.ts +27 -0
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.js +222 -0
- package/dist/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.js.map +1 -0
- package/dist/src/_internal/platform/nesFetch/node/streamTransformer.d.ts +10 -0
- package/dist/src/_internal/platform/nesFetch/node/streamTransformer.d.ts.map +1 -0
- package/dist/src/_internal/platform/nesFetch/node/streamTransformer.js +86 -0
- package/dist/src/_internal/platform/nesFetch/node/streamTransformer.js.map +1 -0
- package/dist/src/_internal/platform/networking/common/fetch.d.ts +256 -0
- package/dist/src/_internal/platform/networking/common/fetch.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/common/fetch.js +51 -0
- package/dist/src/_internal/platform/networking/common/fetch.js.map +1 -0
- package/dist/src/_internal/platform/networking/common/fetcherService.d.ts +53 -0
- package/dist/src/_internal/platform/networking/common/fetcherService.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/common/fetcherService.js +46 -0
- package/dist/src/_internal/platform/networking/common/fetcherService.js.map +1 -0
- package/dist/src/_internal/platform/networking/common/networking.d.ts +213 -0
- package/dist/src/_internal/platform/networking/common/networking.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/common/networking.js +148 -0
- package/dist/src/_internal/platform/networking/common/networking.js.map +1 -0
- package/dist/src/_internal/platform/networking/common/openai.d.ts +202 -0
- package/dist/src/_internal/platform/networking/common/openai.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/common/openai.js +144 -0
- package/dist/src/_internal/platform/networking/common/openai.js.map +1 -0
- package/dist/src/_internal/platform/networking/node/chatStream.d.ts +9 -0
- package/dist/src/_internal/platform/networking/node/chatStream.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/node/chatStream.js +117 -0
- package/dist/src/_internal/platform/networking/node/chatStream.js.map +1 -0
- package/dist/src/_internal/platform/networking/node/stream.d.ts +145 -0
- package/dist/src/_internal/platform/networking/node/stream.d.ts.map +1 -0
- package/dist/src/_internal/platform/networking/node/stream.js +595 -0
- package/dist/src/_internal/platform/networking/node/stream.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContent.d.ts +28 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContent.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContent.js +85 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContent.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentFormat.d.ts +6 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentFormat.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentFormat.js +14 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentFormat.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.d.ts +31 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.js +14 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.json.d.ts +15 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.json.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.json.js +232 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.json.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.text.d.ts +16 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.text.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.text.js +231 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.text.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.xml.d.ts +13 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.xml.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.xml.js +191 -0
- package/dist/src/_internal/platform/notebook/common/alternativeContentProvider.xml.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeNotebookDocument.d.ts +34 -0
- package/dist/src/_internal/platform/notebook/common/alternativeNotebookDocument.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/alternativeNotebookDocument.js +123 -0
- package/dist/src/_internal/platform/notebook/common/alternativeNotebookDocument.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/helpers.d.ts +79 -0
- package/dist/src/_internal/platform/notebook/common/helpers.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/helpers.js +157 -0
- package/dist/src/_internal/platform/notebook/common/helpers.js.map +1 -0
- package/dist/src/_internal/platform/notebook/common/notebookService.d.ts +34 -0
- package/dist/src/_internal/platform/notebook/common/notebookService.d.ts.map +1 -0
- package/dist/src/_internal/platform/notebook/common/notebookService.js +10 -0
- package/dist/src/_internal/platform/notebook/common/notebookService.js.map +1 -0
- package/dist/src/_internal/platform/openai/node/fetch.d.ts +77 -0
- package/dist/src/_internal/platform/openai/node/fetch.d.ts.map +1 -0
- package/dist/src/_internal/platform/openai/node/fetch.js +408 -0
- package/dist/src/_internal/platform/openai/node/fetch.js.map +1 -0
- package/dist/src/_internal/platform/parser/node/nodes.d.ts +93 -0
- package/dist/src/_internal/platform/parser/node/nodes.d.ts.map +1 -0
- package/dist/src/_internal/platform/parser/node/nodes.js +133 -0
- package/dist/src/_internal/platform/parser/node/nodes.js.map +1 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.d.ts +14 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.d.ts.map +1 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.js +28 -0
- package/dist/src/_internal/platform/requestLogger/node/nullRequestLogger.js.map +1 -0
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.d.ts +198 -0
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.d.ts.map +1 -0
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.js +177 -0
- package/dist/src/_internal/platform/requestLogger/node/requestLogger.js.map +1 -0
- package/dist/src/_internal/platform/simulationTestContext/common/simulationTestContext.d.ts +12 -0
- package/dist/src/_internal/platform/simulationTestContext/common/simulationTestContext.d.ts.map +1 -0
- package/dist/src/_internal/platform/simulationTestContext/common/simulationTestContext.js +19 -0
- package/dist/src/_internal/platform/simulationTestContext/common/simulationTestContext.js.map +1 -0
- package/dist/src/_internal/platform/snippy/common/snippyService.d.ts +13 -0
- package/dist/src/_internal/platform/snippy/common/snippyService.d.ts.map +1 -0
- package/dist/src/_internal/platform/snippy/common/snippyService.js +16 -0
- package/dist/src/_internal/platform/snippy/common/snippyService.js.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/nullExperimentationService.d.ts +46 -0
- package/dist/src/_internal/platform/telemetry/common/nullExperimentationService.d.ts.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/nullExperimentationService.js +23 -0
- package/dist/src/_internal/platform/telemetry/common/nullExperimentationService.js.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/nullTelemetryService.d.ts +18 -0
- package/dist/src/_internal/platform/telemetry/common/nullTelemetryService.d.ts.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/nullTelemetryService.js +50 -0
- package/dist/src/_internal/platform/telemetry/common/nullTelemetryService.js.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/telemetry.d.ts +145 -0
- package/dist/src/_internal/platform/telemetry/common/telemetry.d.ts.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/telemetry.js +87 -0
- package/dist/src/_internal/platform/telemetry/common/telemetry.js.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/telemetryData.d.ts +60 -0
- package/dist/src/_internal/platform/telemetry/common/telemetryData.d.ts.map +1 -0
- package/dist/src/_internal/platform/telemetry/common/telemetryData.js +169 -0
- package/dist/src/_internal/platform/telemetry/common/telemetryData.js.map +1 -0
- package/dist/src/_internal/platform/thinking/common/thinking.d.ts +49 -0
- package/dist/src/_internal/platform/thinking/common/thinking.d.ts.map +1 -0
- package/dist/src/_internal/platform/thinking/common/thinking.js +11 -0
- package/dist/src/_internal/platform/thinking/common/thinking.js.map +1 -0
- package/dist/src/_internal/platform/thinking/common/thinkingUtils.d.ts +6 -0
- package/dist/src/_internal/platform/thinking/common/thinkingUtils.d.ts.map +1 -0
- package/dist/src/_internal/platform/thinking/common/thinkingUtils.js +56 -0
- package/dist/src/_internal/platform/thinking/common/thinkingUtils.js.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/cl100k_base.tiktoken +100256 -0
- package/dist/src/_internal/platform/tokenizer/node/o200k_base.tiktoken +199998 -0
- package/dist/src/_internal/platform/tokenizer/node/parseTikTokens.d.ts +3 -0
- package/dist/src/_internal/platform/tokenizer/node/parseTikTokens.d.ts.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/parseTikTokens.js +24 -0
- package/dist/src/_internal/platform/tokenizer/node/parseTikTokens.js.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerImpl.d.ts +17 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerImpl.d.ts.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerImpl.js +58 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerImpl.js.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerWorker.d.ts +2 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerWorker.d.ts.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerWorker.js +25 -0
- package/dist/src/_internal/platform/tokenizer/node/tikTokenizerWorker.js.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tokenizer.d.ts +32 -0
- package/dist/src/_internal/platform/tokenizer/node/tokenizer.d.ts.map +1 -0
- package/dist/src/_internal/platform/tokenizer/node/tokenizer.js +308 -0
- package/dist/src/_internal/platform/tokenizer/node/tokenizer.js.map +1 -0
- package/dist/src/_internal/platform/workspace/common/workspaceService.d.ts +104 -0
- package/dist/src/_internal/platform/workspace/common/workspaceService.d.ts.map +1 -0
- package/dist/src/_internal/platform/workspace/common/workspaceService.js +176 -0
- package/dist/src/_internal/platform/workspace/common/workspaceService.js.map +1 -0
- package/dist/src/_internal/platform/workspaceRecorder/common/workspaceLog.d.ts +115 -0
- package/dist/src/_internal/platform/workspaceRecorder/common/workspaceLog.d.ts.map +1 -0
- package/dist/src/_internal/platform/workspaceRecorder/common/workspaceLog.js +33 -0
- package/dist/src/_internal/platform/workspaceRecorder/common/workspaceLog.js.map +1 -0
- package/dist/src/_internal/util/common/anomalyDetection.d.ts +16 -0
- package/dist/src/_internal/util/common/anomalyDetection.d.ts.map +1 -0
- package/dist/src/_internal/util/common/anomalyDetection.js +100 -0
- package/dist/src/_internal/util/common/anomalyDetection.js.map +1 -0
- package/dist/src/_internal/util/common/arrays.d.ts +18 -0
- package/dist/src/_internal/util/common/arrays.d.ts.map +1 -0
- package/dist/src/_internal/util/common/arrays.js +80 -0
- package/dist/src/_internal/util/common/arrays.js.map +1 -0
- package/dist/src/_internal/util/common/async.d.ts +35 -0
- package/dist/src/_internal/util/common/async.d.ts.map +1 -0
- package/dist/src/_internal/util/common/async.js +146 -0
- package/dist/src/_internal/util/common/async.js.map +1 -0
- package/dist/src/_internal/util/common/cache.d.ts +42 -0
- package/dist/src/_internal/util/common/cache.d.ts.map +1 -0
- package/dist/src/_internal/util/common/cache.js +157 -0
- package/dist/src/_internal/util/common/cache.js.map +1 -0
- package/dist/src/_internal/util/common/crypto.d.ts +3 -0
- package/dist/src/_internal/util/common/crypto.d.ts.map +1 -0
- package/dist/src/_internal/util/common/crypto.js +33 -0
- package/dist/src/_internal/util/common/crypto.js.map +1 -0
- package/dist/src/_internal/util/common/errors.d.ts +3 -0
- package/dist/src/_internal/util/common/errors.d.ts.map +1 -0
- package/dist/src/_internal/util/common/errors.js +22 -0
- package/dist/src/_internal/util/common/errors.js.map +1 -0
- package/dist/src/_internal/util/common/imageUtils.d.ts +23 -0
- package/dist/src/_internal/util/common/imageUtils.d.ts.map +1 -0
- package/dist/src/_internal/util/common/imageUtils.js +148 -0
- package/dist/src/_internal/util/common/imageUtils.js.map +1 -0
- package/dist/src/_internal/util/common/languages.d.ts +560 -0
- package/dist/src/_internal/util/common/languages.d.ts.map +1 -0
- package/dist/src/_internal/util/common/languages.js +901 -0
- package/dist/src/_internal/util/common/languages.js.map +1 -0
- package/dist/src/_internal/util/common/notebooks.d.ts +88 -0
- package/dist/src/_internal/util/common/notebooks.d.ts.map +1 -0
- package/dist/src/_internal/util/common/notebooks.js +270 -0
- package/dist/src/_internal/util/common/notebooks.js.map +1 -0
- package/dist/src/_internal/util/common/result.d.ts +32 -0
- package/dist/src/_internal/util/common/result.d.ts.map +1 -0
- package/dist/src/_internal/util/common/result.js +65 -0
- package/dist/src/_internal/util/common/result.js.map +1 -0
- package/dist/src/_internal/util/common/services.d.ts +17 -0
- package/dist/src/_internal/util/common/services.d.ts.map +1 -0
- package/dist/src/_internal/util/common/services.js +32 -0
- package/dist/src/_internal/util/common/services.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/chatTypes.d.ts +301 -0
- package/dist/src/_internal/util/common/test/shims/chatTypes.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/chatTypes.js +380 -0
- package/dist/src/_internal/util/common/test/shims/chatTypes.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/editing.d.ts +101 -0
- package/dist/src/_internal/util/common/test/shims/editing.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/editing.js +149 -0
- package/dist/src/_internal/util/common/test/shims/editing.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/enums.d.ts +50 -0
- package/dist/src/_internal/util/common/test/shims/enums.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/enums.js +65 -0
- package/dist/src/_internal/util/common/test/shims/enums.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/l10n.d.ts +8 -0
- package/dist/src/_internal/util/common/test/shims/l10n.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/l10n.js +26 -0
- package/dist/src/_internal/util/common/test/shims/l10n.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/newSymbolName.d.ts +13 -0
- package/dist/src/_internal/util/common/test/shims/newSymbolName.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/newSymbolName.js +24 -0
- package/dist/src/_internal/util/common/test/shims/newSymbolName.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/terminal.d.ts +26 -0
- package/dist/src/_internal/util/common/test/shims/terminal.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/terminal.js +34 -0
- package/dist/src/_internal/util/common/test/shims/terminal.js.map +1 -0
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.d.ts +4 -0
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.d.ts.map +1 -0
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.js +113 -0
- package/dist/src/_internal/util/common/test/shims/vscodeTypesShim.js.map +1 -0
- package/dist/src/_internal/util/common/time.d.ts +8 -0
- package/dist/src/_internal/util/common/time.d.ts.map +1 -0
- package/dist/src/_internal/util/common/time.js +30 -0
- package/dist/src/_internal/util/common/time.js.map +1 -0
- package/dist/src/_internal/util/common/tokenizer.d.ts +19 -0
- package/dist/src/_internal/util/common/tokenizer.d.ts.map +1 -0
- package/dist/src/_internal/util/common/tokenizer.js +14 -0
- package/dist/src/_internal/util/common/tokenizer.js.map +1 -0
- package/dist/src/_internal/util/common/tracing.d.ts +8 -0
- package/dist/src/_internal/util/common/tracing.d.ts.map +1 -0
- package/dist/src/_internal/util/common/tracing.js +49 -0
- package/dist/src/_internal/util/common/tracing.js.map +1 -0
- package/dist/src/_internal/util/common/types.d.ts +7 -0
- package/dist/src/_internal/util/common/types.d.ts.map +1 -0
- package/dist/src/_internal/util/common/types.js +35 -0
- package/dist/src/_internal/util/common/types.js.map +1 -0
- package/dist/src/_internal/util/common/variableLengthQuantity.d.ts +9 -0
- package/dist/src/_internal/util/common/variableLengthQuantity.d.ts.map +1 -0
- package/dist/src/_internal/util/common/variableLengthQuantity.js +38 -0
- package/dist/src/_internal/util/common/variableLengthQuantity.js.map +1 -0
- package/dist/src/_internal/util/node/worker.d.ts +44 -0
- package/dist/src/_internal/util/node/worker.d.ts.map +1 -0
- package/dist/src/_internal/util/node/worker.js +115 -0
- package/dist/src/_internal/util/node/worker.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/arrays.d.ts +299 -0
- package/dist/src/_internal/util/vs/base/common/arrays.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/arrays.js +836 -0
- package/dist/src/_internal/util/vs/base/common/arrays.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/arraysFind.d.ts +69 -0
- package/dist/src/_internal/util/vs/base/common/arraysFind.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/arraysFind.js +193 -0
- package/dist/src/_internal/util/vs/base/common/arraysFind.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/assert.d.ts +35 -0
- package/dist/src/_internal/util/vs/base/common/assert.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/assert.js +86 -0
- package/dist/src/_internal/util/vs/base/common/assert.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/async.d.ts +764 -0
- package/dist/src/_internal/util/vs/base/common/async.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/async.js +2037 -0
- package/dist/src/_internal/util/vs/base/common/async.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/buffer.d.ts +92 -0
- package/dist/src/_internal/util/vs/base/common/buffer.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/buffer.js +480 -0
- package/dist/src/_internal/util/vs/base/common/buffer.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/cache.d.ts +47 -0
- package/dist/src/_internal/util/vs/base/common/cache.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/cache.js +95 -0
- package/dist/src/_internal/util/vs/base/common/cache.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/cancellation.d.ts +31 -0
- package/dist/src/_internal/util/vs/base/common/cancellation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/cancellation.js +120 -0
- package/dist/src/_internal/util/vs/base/common/cancellation.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/charCode.d.ts +428 -0
- package/dist/src/_internal/util/vs/base/common/charCode.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/charCode.js +4 -0
- package/dist/src/_internal/util/vs/base/common/charCode.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codicons.d.ts +681 -0
- package/dist/src/_internal/util/vs/base/common/codicons.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codicons.js +59 -0
- package/dist/src/_internal/util/vs/base/common/codicons.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codiconsLibrary.d.ts +607 -0
- package/dist/src/_internal/util/vs/base/common/codiconsLibrary.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codiconsLibrary.js +619 -0
- package/dist/src/_internal/util/vs/base/common/codiconsLibrary.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codiconsUtil.d.ts +9 -0
- package/dist/src/_internal/util/vs/base/common/codiconsUtil.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/codiconsUtil.js +25 -0
- package/dist/src/_internal/util/vs/base/common/codiconsUtil.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/collections.d.ts +49 -0
- package/dist/src/_internal/util/vs/base/common/collections.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/collections.js +134 -0
- package/dist/src/_internal/util/vs/base/common/collections.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/diff/diff.d.ts +151 -0
- package/dist/src/_internal/util/vs/base/common/diff/diff.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/diff/diff.js +1064 -0
- package/dist/src/_internal/util/vs/base/common/diff/diff.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/diff/diffChange.d.ts +39 -0
- package/dist/src/_internal/util/vs/base/common/diff/diffChange.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/diff/diffChange.js +38 -0
- package/dist/src/_internal/util/vs/base/common/diff/diffChange.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/equals.d.ts +38 -0
- package/dist/src/_internal/util/vs/base/common/equals.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/equals.js +166 -0
- package/dist/src/_internal/util/vs/base/common/equals.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/errors.d.ts +114 -0
- package/dist/src/_internal/util/vs/base/common/errors.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/errors.js +274 -0
- package/dist/src/_internal/util/vs/base/common/errors.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/event.d.ts +567 -0
- package/dist/src/_internal/util/vs/base/common/event.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/event.js +1405 -0
- package/dist/src/_internal/util/vs/base/common/event.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/extpath.d.ts +58 -0
- package/dist/src/_internal/util/vs/base/common/extpath.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/extpath.js +363 -0
- package/dist/src/_internal/util/vs/base/common/extpath.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/filters.d.ts +63 -0
- package/dist/src/_internal/util/vs/base/common/filters.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/filters.js +821 -0
- package/dist/src/_internal/util/vs/base/common/filters.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/functional.d.ts +5 -0
- package/dist/src/_internal/util/vs/base/common/functional.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/functional.js +35 -0
- package/dist/src/_internal/util/vs/base/common/functional.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/glob.d.ts +72 -0
- package/dist/src/_internal/util/vs/base/common/glob.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/glob.js +622 -0
- package/dist/src/_internal/util/vs/base/common/glob.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/hash.d.ts +41 -0
- package/dist/src/_internal/util/vs/base/common/hash.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/hash.js +320 -0
- package/dist/src/_internal/util/vs/base/common/hash.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/htmlContent.d.ts +59 -0
- package/dist/src/_internal/util/vs/base/common/htmlContent.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/htmlContent.js +179 -0
- package/dist/src/_internal/util/vs/base/common/htmlContent.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/iconLabels.d.ts +21 -0
- package/dist/src/_internal/util/vs/base/common/iconLabels.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/iconLabels.js +95 -0
- package/dist/src/_internal/util/vs/base/common/iconLabels.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/iterator.d.ts +33 -0
- package/dist/src/_internal/util/vs/base/common/iterator.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/iterator.js +188 -0
- package/dist/src/_internal/util/vs/base/common/iterator.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/lazy.d.ts +23 -0
- package/dist/src/_internal/util/vs/base/common/lazy.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/lazy.js +57 -0
- package/dist/src/_internal/util/vs/base/common/lazy.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/lifecycle.d.ts +262 -0
- package/dist/src/_internal/util/vs/base/common/lifecycle.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/lifecycle.js +703 -0
- package/dist/src/_internal/util/vs/base/common/lifecycle.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/linkedList.d.ts +16 -0
- package/dist/src/_internal/util/vs/base/common/linkedList.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/linkedList.js +130 -0
- package/dist/src/_internal/util/vs/base/common/linkedList.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/map.d.ts +175 -0
- package/dist/src/_internal/util/vs/base/common/map.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/map.js +796 -0
- package/dist/src/_internal/util/vs/base/common/map.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/marshallingIds.d.ts +29 -0
- package/dist/src/_internal/util/vs/base/common/marshallingIds.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/marshallingIds.js +4 -0
- package/dist/src/_internal/util/vs/base/common/marshallingIds.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/mime.d.ts +19 -0
- package/dist/src/_internal/util/vs/base/common/mime.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/mime.js +127 -0
- package/dist/src/_internal/util/vs/base/common/mime.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/naturalLanguage/korean.d.ts +10 -0
- package/dist/src/_internal/util/vs/base/common/naturalLanguage/korean.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/naturalLanguage/korean.js +324 -0
- package/dist/src/_internal/util/vs/base/common/naturalLanguage/korean.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/network.d.ts +189 -0
- package/dist/src/_internal/util/vs/base/common/network.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/network.js +386 -0
- package/dist/src/_internal/util/vs/base/common/network.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/numbers.d.ts +71 -0
- package/dist/src/_internal/util/vs/base/common/numbers.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/numbers.js +148 -0
- package/dist/src/_internal/util/vs/base/common/numbers.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/objects.d.ts +36 -0
- package/dist/src/_internal/util/vs/base/common/objects.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/objects.js +231 -0
- package/dist/src/_internal/util/vs/base/common/objects.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observable.d.ts +2 -0
- package/dist/src/_internal/util/vs/base/common/observable.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observable.js +24 -0
- package/dist/src/_internal/util/vs/base/common/observable.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/base.d.ts +169 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/base.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/base.js +18 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/base.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/changeTracker.d.ts +45 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/changeTracker.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/changeTracker.js +76 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/changeTracker.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/cancellation.d.ts +3 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/cancellation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/cancellation.js +15 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/cancellation.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/deps.d.ts +6 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/deps.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/deps.js +24 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/commonFacade/deps.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugLocation.d.ts +21 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugLocation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugLocation.js +64 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugLocation.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugName.d.ts +34 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugName.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugName.js +112 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/debugName.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/experimental/utils.d.ts +16 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/experimental/utils.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/experimental/utils.js +57 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/experimental/utils.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/index.d.ts +25 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/index.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/index.js +101 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/index.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/consoleObservableLogger.d.ts +41 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/consoleObservableLogger.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/consoleObservableLogger.js +346 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/consoleObservableLogger.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerRpc.d.ts +5 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerRpc.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerRpc.js +68 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerRpc.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +44 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +445 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/rpc.d.ts +42 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/rpc.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/rpc.js +59 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/rpc.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/utils.d.ts +14 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/utils.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/utils.js +69 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/debugger/utils.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/logging.d.ts +31 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/logging.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/logging.js +97 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/logging/logging.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/map.d.ts +19 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/map.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/map.js +65 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/map.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/baseObservable.d.ts +55 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/baseObservable.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/baseObservable.js +133 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/baseObservable.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/constObservable.d.ts +6 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/constObservable.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/constObservable.js +36 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/constObservable.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derived.d.ts +47 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derived.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derived.js +99 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derived.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derivedImpl.d.ts +83 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derivedImpl.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derivedImpl.js +355 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/derivedImpl.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +28 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/lazyObservableValue.js +124 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/lazyObservableValue.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +34 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableFromEvent.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableFromEvent.js +118 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableFromEvent.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignal.d.ts +12 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignal.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignal.js +45 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignal.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignalFromEvent.d.ts +6 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignalFromEvent.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignalFromEvent.js +39 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableSignalFromEvent.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValue.d.ts +38 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValue.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValue.js +105 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValue.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValueOpts.d.ts +9 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValueOpts.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValueOpts.js +16 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/observables/observableValueOpts.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorun.d.ts +57 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorun.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorun.js +139 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorun.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +53 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorunImpl.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorunImpl.js +212 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/reactions/autorunImpl.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/set.d.ts +18 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/set.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/set.js +63 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/set.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/transaction.d.ts +28 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/transaction.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/transaction.js +116 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/transaction.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/promise.d.ts +76 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/promise.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/promise.js +113 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/promise.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/runOnChange.d.ts +8 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/runOnChange.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/runOnChange.js +59 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/runOnChange.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utils.d.ts +44 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utils.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utils.js +256 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utils.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utilsCancellation.d.ts +11 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utilsCancellation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utilsCancellation.js +85 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/utilsCancellation.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/valueWithChangeEvent.d.ts +11 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/valueWithChangeEvent.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/valueWithChangeEvent.js +26 -0
- package/dist/src/_internal/util/vs/base/common/observableInternal/utils/valueWithChangeEvent.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/path.d.ts +40 -0
- package/dist/src/_internal/util/vs/base/common/path.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/path.js +1494 -0
- package/dist/src/_internal/util/vs/base/common/path.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/platform.d.ts +100 -0
- package/dist/src/_internal/util/vs/base/common/platform.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/platform.js +254 -0
- package/dist/src/_internal/util/vs/base/common/platform.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/process.d.ts +28 -0
- package/dist/src/_internal/util/vs/base/common/process.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/process.js +69 -0
- package/dist/src/_internal/util/vs/base/common/process.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/resources.d.ts +188 -0
- package/dist/src/_internal/util/vs/base/common/resources.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/resources.js +324 -0
- package/dist/src/_internal/util/vs/base/common/resources.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/sequence.d.ts +20 -0
- package/dist/src/_internal/util/vs/base/common/sequence.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/sequence.js +22 -0
- package/dist/src/_internal/util/vs/base/common/sequence.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/sseParser.d.ts +78 -0
- package/dist/src/_internal/util/vs/base/common/sseParser.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/sseParser.js +175 -0
- package/dist/src/_internal/util/vs/base/common/sseParser.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/stopwatch.d.ts +11 -0
- package/dist/src/_internal/util/vs/base/common/stopwatch.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/stopwatch.js +30 -0
- package/dist/src/_internal/util/vs/base/common/stopwatch.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/stream.d.ts +212 -0
- package/dist/src/_internal/util/vs/base/common/stream.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/stream.js +495 -0
- package/dist/src/_internal/util/vs/base/common/stream.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/strings.d.ts +264 -0
- package/dist/src/_internal/util/vs/base/common/strings.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/strings.js +1162 -0
- package/dist/src/_internal/util/vs/base/common/strings.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/symbols.d.ts +5 -0
- package/dist/src/_internal/util/vs/base/common/symbols.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/symbols.js +13 -0
- package/dist/src/_internal/util/vs/base/common/symbols.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/themables.d.ts +31 -0
- package/dist/src/_internal/util/vs/base/common/themables.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/themables.js +92 -0
- package/dist/src/_internal/util/vs/base/common/themables.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/types.d.ts +184 -0
- package/dist/src/_internal/util/vs/base/common/types.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/types.js +265 -0
- package/dist/src/_internal/util/vs/base/common/types.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uint.d.ts +32 -0
- package/dist/src/_internal/util/vs/base/common/uint.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uint.js +24 -0
- package/dist/src/_internal/util/vs/base/common/uint.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uri.d.ts +172 -0
- package/dist/src/_internal/util/vs/base/common/uri.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uri.js +653 -0
- package/dist/src/_internal/util/vs/base/common/uri.js.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uuid.d.ts +5 -0
- package/dist/src/_internal/util/vs/base/common/uuid.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/base/common/uuid.js +66 -0
- package/dist/src/_internal/util/vs/base/common/uuid.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/editOperation.d.ts +28 -0
- package/dist/src/_internal/util/vs/editor/common/core/editOperation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/editOperation.js +35 -0
- package/dist/src/_internal/util/vs/editor/common/core/editOperation.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/edit.d.ts +109 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/edit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/edit.js +341 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/edit.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/lineEdit.d.ts +53 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/lineEdit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/lineEdit.js +322 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/lineEdit.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/stringEdit.d.ts +135 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/stringEdit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/stringEdit.js +437 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/stringEdit.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/textEdit.d.ts +50 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/textEdit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/textEdit.js +348 -0
- package/dist/src/_internal/util/vs/editor/common/core/edits/textEdit.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/position.d.ts +91 -0
- package/dist/src/_internal/util/vs/editor/common/core/position.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/position.js +142 -0
- package/dist/src/_internal/util/vs/editor/common/core/position.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/range.d.ts +195 -0
- package/dist/src/_internal/util/vs/editor/common/core/range.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/range.js +424 -0
- package/dist/src/_internal/util/vs/editor/common/core/range.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/lineRange.d.ts +108 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/lineRange.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/lineRange.js +357 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/lineRange.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/offsetRange.d.ts +79 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/offsetRange.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/offsetRange.js +242 -0
- package/dist/src/_internal/util/vs/editor/common/core/ranges/offsetRange.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/abstractText.d.ts +40 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/abstractText.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/abstractText.js +105 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/abstractText.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffset.d.ts +3 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffset.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffset.js +28 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffset.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffsetImpl.d.ts +39 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffsetImpl.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffsetImpl.js +110 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/positionToOffsetImpl.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/textLength.d.ts +34 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/textLength.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/textLength.js +134 -0
- package/dist/src/_internal/util/vs/editor/common/core/text/textLength.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/wordHelper.d.ts +28 -0
- package/dist/src/_internal/util/vs/editor/common/core/wordHelper.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/core/wordHelper.js +137 -0
- package/dist/src/_internal/util/vs/editor/common/core/wordHelper.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts +83 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.js +154 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.d.ts +9 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.js +104 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.d.ts +8 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.js +165 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.d.ts +4 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.js +251 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.d.ts +9 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +213 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts +10 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js +380 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.d.ts +13 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.js +36 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +32 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js +208 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/utils.d.ts +23 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/utils.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/utils.js +64 -0
- package/dist/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/utils.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/legacyLinesDiffComputer.d.ts +70 -0
- package/dist/src/_internal/util/vs/editor/common/diff/legacyLinesDiffComputer.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/legacyLinesDiffComputer.js +501 -0
- package/dist/src/_internal/util/vs/editor/common/diff/legacyLinesDiffComputer.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/linesDiffComputer.d.ts +46 -0
- package/dist/src/_internal/util/vs/editor/common/diff/linesDiffComputer.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/linesDiffComputer.js +33 -0
- package/dist/src/_internal/util/vs/editor/common/diff/linesDiffComputer.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/rangeMapping.d.ts +84 -0
- package/dist/src/_internal/util/vs/editor/common/diff/rangeMapping.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/diff/rangeMapping.js +287 -0
- package/dist/src/_internal/util/vs/editor/common/diff/rangeMapping.js.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/model/prefixSumComputer.d.ts +71 -0
- package/dist/src/_internal/util/vs/editor/common/model/prefixSumComputer.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/editor/common/model/prefixSumComputer.js +234 -0
- package/dist/src/_internal/util/vs/editor/common/model/prefixSumComputer.js.map +1 -0
- package/dist/src/_internal/util/vs/nls.d.ts +143 -0
- package/dist/src/_internal/util/vs/nls.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/nls.js +84 -0
- package/dist/src/_internal/util/vs/nls.js.map +1 -0
- package/dist/src/_internal/util/vs/nls.messages.d.ts +3 -0
- package/dist/src/_internal/util/vs/nls.messages.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/nls.messages.js +22 -0
- package/dist/src/_internal/util/vs/nls.messages.js.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/descriptors.d.ts +10 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/descriptors.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/descriptors.js +17 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/descriptors.js.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/graph.d.ts +26 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/graph.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/graph.js +99 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/graph.js.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiation.d.ts +70 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiation.js +48 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiation.js.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiationService.d.ts +56 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiationService.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiationService.js +406 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/instantiationService.js.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/serviceCollection.d.ts +10 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/serviceCollection.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/serviceCollection.js +25 -0
- package/dist/src/_internal/util/vs/platform/instantiation/common/serviceCollection.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/diagnostic.d.ts +32 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/diagnostic.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/diagnostic.js +103 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/diagnostic.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/es5ClassCompat.d.ts +8 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/es5ClassCompat.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/es5ClassCompat.js +38 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/es5ClassCompat.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/location.d.ts +12 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/location.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/location.js +53 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/location.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/markdownString.d.ts +21 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/markdownString.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/markdownString.js +72 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/markdownString.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/notebooks.d.ts +85 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/notebooks.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/notebooks.js +243 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/notebooks.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/position.d.ts +30 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/position.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/position.js +178 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/position.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/range.d.ts +27 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/range.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/range.js +148 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/range.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/selection.d.ts +21 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/selection.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/selection.js +84 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/selection.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetString.d.ts +13 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetString.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetString.js +95 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetString.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetTextEdit.d.ts +14 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetTextEdit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetTextEdit.js +30 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetTextEdit.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/symbolInformation.d.ts +46 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/symbolInformation.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/symbolInformation.js +82 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/symbolInformation.js.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/textEdit.d.ts +25 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/textEdit.d.ts.map +1 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/textEdit.js +93 -0
- package/dist/src/_internal/util/vs/workbench/api/common/extHostTypes/textEdit.js.map +1 -0
- package/dist/src/_internal/vscodeTypes.d.ts +95 -0
- package/dist/src/_internal/vscodeTypes.d.ts.map +1 -0
- package/dist/src/_internal/vscodeTypes.js +133 -0
- package/dist/src/_internal/vscodeTypes.js.map +1 -0
- package/dist/src/main.d.ts +13 -0
- package/dist/src/main.d.ts.map +1 -0
- package/dist/src/main.js +190 -0
- package/dist/src/main.js.map +1 -0
- package/dist/src/package.json +4063 -0
- package/package.json +64 -0
- package/src/_internal/extension/byok/node/openAIEndpoint.ts +171 -0
- package/src/_internal/extension/common/constants.ts +90 -0
- package/src/_internal/extension/inlineEdits/common/delayer.ts +108 -0
- package/src/_internal/extension/inlineEdits/common/editRebase.ts +268 -0
- package/src/_internal/extension/inlineEdits/common/ghNearbyNesProvider.tsx +163 -0
- package/src/_internal/extension/inlineEdits/common/nearbyCursorInlineEditProvider.ts +225 -0
- package/src/_internal/extension/inlineEdits/common/rejectionCollector.ts +164 -0
- package/src/_internal/extension/inlineEdits/node/debugRecorder.ts +205 -0
- package/src/_internal/extension/inlineEdits/node/importFiltering.ts +25 -0
- package/src/_internal/extension/inlineEdits/node/nesConfigs.ts +12 -0
- package/src/_internal/extension/inlineEdits/node/nextEditCache.ts +278 -0
- package/src/_internal/extension/inlineEdits/node/nextEditProvider.ts +778 -0
- package/src/_internal/extension/inlineEdits/node/nextEditProviderTelemetry.ts +983 -0
- package/src/_internal/extension/inlineEdits/node/nextEditResult.ts +40 -0
- package/src/_internal/extension/prompt/common/importStatement.ts +25 -0
- package/src/_internal/extension/prompt/node/chatMLFetcher.ts +706 -0
- package/src/_internal/extension/prompts/node/inline/summarizedDocument/fragments.ts +146 -0
- package/src/_internal/extension/prompts/node/inline/summarizedDocument/implementation.ts +527 -0
- package/src/_internal/extension/prompts/node/inline/summarizedDocument/projectedText.ts +76 -0
- package/src/_internal/extension/prompts/node/inline/visualization.ts +65 -0
- package/src/_internal/extension/vscode.proposed.activeComment.d.ts +23 -0
- package/src/_internal/extension/vscode.proposed.aiRelatedInformation.d.ts +49 -0
- package/src/_internal/extension/vscode.proposed.aiSettingsSearch.d.ts +31 -0
- package/src/_internal/extension/vscode.proposed.aiTextSearchProvider.d.ts +41 -0
- package/src/_internal/extension/vscode.proposed.authLearnMore.d.ts +16 -0
- package/src/_internal/extension/vscode.proposed.chatBinaryReferenceData.d.ts +41 -0
- package/src/_internal/extension/vscode.proposed.chatEditing.d.ts +29 -0
- package/src/_internal/extension/vscode.proposed.chatParticipantAdditions.d.ts +636 -0
- package/src/_internal/extension/vscode.proposed.chatParticipantPrivate.d.ts +276 -0
- package/src/_internal/extension/vscode.proposed.chatProvider.d.ts +62 -0
- package/src/_internal/extension/vscode.proposed.chatReadonlyPromptReference.d.ts +17 -0
- package/src/_internal/extension/vscode.proposed.chatReferenceDiagnostic.d.ts +23 -0
- package/src/_internal/extension/vscode.proposed.chatSessionsProvider.d.ts +218 -0
- package/src/_internal/extension/vscode.proposed.chatStatusItem.d.ts +61 -0
- package/src/_internal/extension/vscode.proposed.codeActionAI.d.ts +16 -0
- package/src/_internal/extension/vscode.proposed.commentReveal.d.ts +32 -0
- package/src/_internal/extension/vscode.proposed.contribCommentThreadAdditionalMenu.d.ts +8 -0
- package/src/_internal/extension/vscode.proposed.contribCommentsViewThreadMenus.d.ts +6 -0
- package/src/_internal/extension/vscode.proposed.contribSourceControlInputBoxMenu.d.ts +7 -0
- package/src/_internal/extension/vscode.proposed.dataChannels.d.ts +19 -0
- package/src/_internal/extension/vscode.proposed.defaultChatParticipant.d.ts +52 -0
- package/src/_internal/extension/vscode.proposed.documentFiltersExclusive.d.ts +13 -0
- package/src/_internal/extension/vscode.proposed.embeddings.d.ts +33 -0
- package/src/_internal/extension/vscode.proposed.extensionsAny.d.ts +40 -0
- package/src/_internal/extension/vscode.proposed.findFiles2.d.ts +125 -0
- package/src/_internal/extension/vscode.proposed.findTextInFiles.d.ts +104 -0
- package/src/_internal/extension/vscode.proposed.findTextInFiles2.d.ts +144 -0
- package/src/_internal/extension/vscode.proposed.inlineCompletionsAdditions.d.ts +202 -0
- package/src/_internal/extension/vscode.proposed.interactive.d.ts +11 -0
- package/src/_internal/extension/vscode.proposed.languageModelCapabilities.d.ts +25 -0
- package/src/_internal/extension/vscode.proposed.languageModelDataPart.d.ts +163 -0
- package/src/_internal/extension/vscode.proposed.languageModelSystem.d.ts +17 -0
- package/src/_internal/extension/vscode.proposed.languageModelThinkingPart.d.ts +49 -0
- package/src/_internal/extension/vscode.proposed.languageModelToolResultAudience.d.ts +36 -0
- package/src/_internal/extension/vscode.proposed.mappedEditsProvider.d.ts +110 -0
- package/src/_internal/extension/vscode.proposed.newSymbolNamesProvider.d.ts +47 -0
- package/src/_internal/extension/vscode.proposed.readonlyMessage.d.ts +14 -0
- package/src/_internal/extension/vscode.proposed.resolvers.d.ts +475 -0
- package/src/_internal/extension/vscode.proposed.scmInputBoxValueProvider.d.ts +25 -0
- package/src/_internal/extension/vscode.proposed.taskProblemMatcherStatus.d.ts +42 -0
- package/src/_internal/extension/vscode.proposed.terminalDataWriteEvent.d.ts +32 -0
- package/src/_internal/extension/vscode.proposed.terminalExecuteCommandEvent.d.ts +48 -0
- package/src/_internal/extension/vscode.proposed.terminalQuickFixProvider.d.ts +87 -0
- package/src/_internal/extension/vscode.proposed.terminalSelection.d.ts +16 -0
- package/src/_internal/extension/vscode.proposed.testObserver.d.ts +199 -0
- package/src/_internal/extension/vscode.proposed.textDocumentChangeReason.d.ts +30 -0
- package/src/_internal/extension/vscode.proposed.textSearchProvider.d.ts +281 -0
- package/src/_internal/extension/vscode.proposed.textSearchProvider2.d.ts +297 -0
- package/src/_internal/extension/xtab/common/promptCrafting.ts +670 -0
- package/src/_internal/extension/xtab/node/xtabEndpoint.ts +102 -0
- package/src/_internal/extension/xtab/node/xtabProvider.ts +976 -0
- package/src/_internal/extension/xtab/node/xtabUtils.ts +62 -0
- package/src/_internal/platform/authentication/common/authentication.ts +309 -0
- package/src/_internal/platform/authentication/common/copilotToken.ts +300 -0
- package/src/_internal/platform/authentication/common/copilotTokenManager.ts +59 -0
- package/src/_internal/platform/authentication/common/copilotTokenStore.ts +40 -0
- package/src/_internal/platform/authentication/common/staticGitHubAuthenticationService.ts +96 -0
- package/src/_internal/platform/authentication/node/copilotTokenManager.ts +303 -0
- package/src/_internal/platform/chat/common/chatMLFetcher.ts +124 -0
- package/src/_internal/platform/chat/common/chatQuotaService.ts +63 -0
- package/src/_internal/platform/chat/common/chatQuotaServiceImpl.ts +96 -0
- package/src/_internal/platform/chat/common/commonTypes.ts +353 -0
- package/src/_internal/platform/chat/common/conversationOptions.ts +16 -0
- package/src/_internal/platform/chat/common/globalStringUtils.ts +54 -0
- package/src/_internal/platform/chat/common/interactionService.ts +35 -0
- package/src/_internal/platform/configuration/common/configurationService.ts +803 -0
- package/src/_internal/platform/configuration/common/defaultsOnlyConfigurationService.ts +39 -0
- package/src/_internal/platform/configuration/common/jsonSchema.ts +139 -0
- package/src/_internal/platform/configuration/common/validator.ts +242 -0
- package/src/_internal/platform/diff/common/diffService.ts +41 -0
- package/src/_internal/platform/diff/common/diffWorker.ts +83 -0
- package/src/_internal/platform/diff/node/diffServiceImpl.ts +85 -0
- package/src/_internal/platform/editing/common/abstractText.ts +177 -0
- package/src/_internal/platform/editing/common/notebookDocumentSnapshot.ts +122 -0
- package/src/_internal/platform/editing/common/positionOffsetTransformer.ts +202 -0
- package/src/_internal/platform/editing/common/textDocumentSnapshot.ts +274 -0
- package/src/_internal/platform/endpoint/common/capiClient.ts +37 -0
- package/src/_internal/platform/endpoint/common/chatModelCapabilities.ts +115 -0
- package/src/_internal/platform/endpoint/common/domainService.ts +27 -0
- package/src/_internal/platform/endpoint/common/endpointProvider.ts +104 -0
- package/src/_internal/platform/endpoint/common/endpointTypes.ts +12 -0
- package/src/_internal/platform/endpoint/common/licenseAgreement.ts +11 -0
- package/src/_internal/platform/endpoint/common/statefulMarkerContainer.tsx +85 -0
- package/src/_internal/platform/endpoint/common/thinkingDataContainer.tsx +44 -0
- package/src/_internal/platform/endpoint/node/capiClientImpl.ts +18 -0
- package/src/_internal/platform/endpoint/node/chatEndpoint.ts +435 -0
- package/src/_internal/platform/endpoint/node/domainServiceImpl.ts +80 -0
- package/src/_internal/platform/endpoint/node/proxyXtabEndpoint.ts +43 -0
- package/src/_internal/platform/endpoint/node/responsesApi.ts +326 -0
- package/src/_internal/platform/env/common/envService.ts +134 -0
- package/src/_internal/platform/env/common/nullEnvService.ts +68 -0
- package/src/_internal/platform/env/common/packagejson.ts +49 -0
- package/src/_internal/platform/git/common/gitExtensionService.ts +21 -0
- package/src/_internal/platform/git/common/nullGitExtensionService.ts +20 -0
- package/src/_internal/platform/git/vscode/git.d.ts +414 -0
- package/src/_internal/platform/github/common/githubAPI.ts +44 -0
- package/src/_internal/platform/github/common/githubService.ts +87 -0
- package/src/_internal/platform/github/common/nullOctokitServiceImpl.ts +21 -0
- package/src/_internal/platform/ignore/common/ignoreService.ts +72 -0
- package/src/_internal/platform/inlineCompletions/common/api.ts +198 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/diagnosticData.ts +32 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/documentId.ts +52 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/edit.ts +165 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/editUtils.ts +74 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/fetchCancellationError.ts +14 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/languageContext.ts +107 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/languageId.ts +14 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/permutation.ts +69 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/rootedLineEdit.ts +49 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/textEditLength.ts +74 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/combineTextEditInfos.ts +132 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/length.ts +184 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/textEditLengthHelper/textEditInfo.ts +32 -0
- package/src/_internal/platform/inlineEdits/common/dataTypes/xtabPromptOptions.ts +89 -0
- package/src/_internal/platform/inlineEdits/common/debugRecorderBookmark.ts +10 -0
- package/src/_internal/platform/inlineEdits/common/editReason.ts +134 -0
- package/src/_internal/platform/inlineEdits/common/inlineEditLogContext.ts +490 -0
- package/src/_internal/platform/inlineEdits/common/observableGit.ts +49 -0
- package/src/_internal/platform/inlineEdits/common/observableWorkspace.ts +239 -0
- package/src/_internal/platform/inlineEdits/common/responseProcessor.ts +249 -0
- package/src/_internal/platform/inlineEdits/common/statelessNextEditProvider.ts +468 -0
- package/src/_internal/platform/inlineEdits/common/statelessNextEditProviders.ts +59 -0
- package/src/_internal/platform/inlineEdits/common/utils/observable.ts +54 -0
- package/src/_internal/platform/inlineEdits/common/utils/stringifyChatMessages.ts +29 -0
- package/src/_internal/platform/inlineEdits/common/utils/utils.ts +56 -0
- package/src/_internal/platform/inlineEdits/common/workspaceEditTracker/historyContextProvider.ts +60 -0
- package/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesHistoryContextProvider.ts +353 -0
- package/src/_internal/platform/inlineEdits/common/workspaceEditTracker/nesXtabHistoryTracker.ts +176 -0
- package/src/_internal/platform/languageContextProvider/common/languageContextProviderService.ts +25 -0
- package/src/_internal/platform/languageContextProvider/common/nullLanguageContextProviderService.ts +38 -0
- package/src/_internal/platform/languageServer/common/languageContextService.ts +186 -0
- package/src/_internal/platform/languages/common/languageDiagnosticsService.ts +67 -0
- package/src/_internal/platform/languages/common/testLanguageDiagnosticsService.ts +28 -0
- package/src/_internal/platform/log/common/logService.ts +232 -0
- package/src/_internal/platform/nesFetch/common/completionsAPI.ts +78 -0
- package/src/_internal/platform/nesFetch/common/completionsFetchService.ts +118 -0
- package/src/_internal/platform/nesFetch/common/responseStream.ts +151 -0
- package/src/_internal/platform/nesFetch/node/completionsFetchServiceImpl.ts +236 -0
- package/src/_internal/platform/nesFetch/node/streamTransformer.ts +95 -0
- package/src/_internal/platform/networking/common/fetch.ts +349 -0
- package/src/_internal/platform/networking/common/fetcherService.ts +84 -0
- package/src/_internal/platform/networking/common/networking.ts +442 -0
- package/src/_internal/platform/networking/common/openai.ts +273 -0
- package/src/_internal/platform/networking/node/chatStream.ts +137 -0
- package/src/_internal/platform/networking/node/stream.ts +749 -0
- package/src/_internal/platform/notebook/common/alternativeContent.ts +89 -0
- package/src/_internal/platform/notebook/common/alternativeContentFormat.ts +10 -0
- package/src/_internal/platform/notebook/common/alternativeContentProvider.json.ts +262 -0
- package/src/_internal/platform/notebook/common/alternativeContentProvider.text.ts +243 -0
- package/src/_internal/platform/notebook/common/alternativeContentProvider.ts +41 -0
- package/src/_internal/platform/notebook/common/alternativeContentProvider.xml.ts +205 -0
- package/src/_internal/platform/notebook/common/alternativeNotebookDocument.ts +155 -0
- package/src/_internal/platform/notebook/common/helpers.ts +212 -0
- package/src/_internal/platform/notebook/common/notebookService.ts +43 -0
- package/src/_internal/platform/openai/node/fetch.ts +596 -0
- package/src/_internal/platform/parser/node/nodes.ts +190 -0
- package/src/_internal/platform/requestLogger/node/nullRequestLogger.ts +26 -0
- package/src/_internal/platform/requestLogger/node/requestLogger.ts +383 -0
- package/src/_internal/platform/simulationTestContext/common/simulationTestContext.ts +29 -0
- package/src/_internal/platform/snippy/common/snippyService.ts +25 -0
- package/src/_internal/platform/telemetry/common/nullExperimentationService.ts +64 -0
- package/src/_internal/platform/telemetry/common/nullTelemetryService.ts +53 -0
- package/src/_internal/platform/telemetry/common/telemetry.ts +215 -0
- package/src/_internal/platform/telemetry/common/telemetryData.ts +205 -0
- package/src/_internal/platform/thinking/common/thinking.ts +61 -0
- package/src/_internal/platform/thinking/common/thinkingUtils.ts +57 -0
- package/src/_internal/platform/tokenizer/node/parseTikTokens.ts +23 -0
- package/src/_internal/platform/tokenizer/node/tikTokenizerImpl.ts +74 -0
- package/src/_internal/platform/tokenizer/node/tikTokenizerWorker.ts +24 -0
- package/src/_internal/platform/tokenizer/node/tokenizer.ts +357 -0
- package/src/_internal/platform/workspace/common/workspaceService.ts +226 -0
- package/src/_internal/platform/workspaceRecorder/common/workspaceLog.ts +118 -0
- package/src/_internal/util/common/anomalyDetection.ts +112 -0
- package/src/_internal/util/common/arrays.ts +81 -0
- package/src/_internal/util/common/async.ts +155 -0
- package/src/_internal/util/common/cache.ts +183 -0
- package/src/_internal/util/common/crypto.ts +41 -0
- package/src/_internal/util/common/errors.ts +22 -0
- package/src/_internal/util/common/globals.d.ts +12 -0
- package/src/_internal/util/common/imageUtils.ts +154 -0
- package/src/_internal/util/common/languages.ts +940 -0
- package/src/_internal/util/common/notebooks.ts +286 -0
- package/src/_internal/util/common/result.ts +71 -0
- package/src/_internal/util/common/services.ts +43 -0
- package/src/_internal/util/common/test/shims/chatTypes.ts +448 -0
- package/src/_internal/util/common/test/shims/editing.ts +233 -0
- package/src/_internal/util/common/test/shims/enums.ts +61 -0
- package/src/_internal/util/common/test/shims/l10n.ts +37 -0
- package/src/_internal/util/common/test/shims/newSymbolName.ts +23 -0
- package/src/_internal/util/common/test/shims/terminal.ts +33 -0
- package/src/_internal/util/common/test/shims/vscodeTypesShim.ts +115 -0
- package/src/_internal/util/common/time.ts +31 -0
- package/src/_internal/util/common/tokenizer.ts +30 -0
- package/src/_internal/util/common/tracing.ts +52 -0
- package/src/_internal/util/common/types.ts +33 -0
- package/src/_internal/util/common/variableLengthQuantity.ts +40 -0
- package/src/_internal/util/node/worker.ts +130 -0
- package/src/_internal/util/vs/base/common/arrays.ts +926 -0
- package/src/_internal/util/vs/base/common/arraysFind.ts +206 -0
- package/src/_internal/util/vs/base/common/assert.ts +89 -0
- package/src/_internal/util/vs/base/common/async.ts +2582 -0
- package/src/_internal/util/vs/base/common/buffer.ts +501 -0
- package/src/_internal/util/vs/base/common/cache.ts +122 -0
- package/src/_internal/util/vs/base/common/cancellation.ts +150 -0
- package/src/_internal/util/vs/base/common/charCode.ts +452 -0
- package/src/_internal/util/vs/base/common/codicons.ts +66 -0
- package/src/_internal/util/vs/base/common/codiconsLibrary.ts +618 -0
- package/src/_internal/util/vs/base/common/codiconsUtil.ts +30 -0
- package/src/_internal/util/vs/base/common/collections.ts +156 -0
- package/src/_internal/util/vs/base/common/diff/diff.ts +1317 -0
- package/src/_internal/util/vs/base/common/diff/diffChange.ts +62 -0
- package/src/_internal/util/vs/base/common/equals.ts +148 -0
- package/src/_internal/util/vs/base/common/errors.ts +342 -0
- package/src/_internal/util/vs/base/common/event.ts +1782 -0
- package/src/_internal/util/vs/base/common/extpath.ts +425 -0
- package/src/_internal/util/vs/base/common/filters.ts +928 -0
- package/src/_internal/util/vs/base/common/functional.ts +34 -0
- package/src/_internal/util/vs/base/common/glob.ts +839 -0
- package/src/_internal/util/vs/base/common/hash.ts +326 -0
- package/src/_internal/util/vs/base/common/htmlContent.ts +212 -0
- package/src/_internal/util/vs/base/common/iconLabels.ts +118 -0
- package/src/_internal/util/vs/base/common/iterator.ts +196 -0
- package/src/_internal/util/vs/base/common/lazy.ts +59 -0
- package/src/_internal/util/vs/base/common/lifecycle.ts +845 -0
- package/src/_internal/util/vs/base/common/linkedList.ts +144 -0
- package/src/_internal/util/vs/base/common/map.ts +954 -0
- package/src/_internal/util/vs/base/common/marshallingIds.ts +35 -0
- package/src/_internal/util/vs/base/common/mime.ts +136 -0
- package/src/_internal/util/vs/base/common/naturalLanguage/korean.ts +425 -0
- package/src/_internal/util/vs/base/common/network.ts +429 -0
- package/src/_internal/util/vs/base/common/numbers.ts +166 -0
- package/src/_internal/util/vs/base/common/objects.ts +242 -0
- package/src/_internal/util/vs/base/common/observable.ts +10 -0
- package/src/_internal/util/vs/base/common/observableInternal/base.ts +208 -0
- package/src/_internal/util/vs/base/common/observableInternal/changeTracker.ts +96 -0
- package/src/_internal/util/vs/base/common/observableInternal/commonFacade/cancellation.ts +9 -0
- package/src/_internal/util/vs/base/common/observableInternal/commonFacade/deps.ts +12 -0
- package/src/_internal/util/vs/base/common/observableInternal/debugLocation.ts +88 -0
- package/src/_internal/util/vs/base/common/observableInternal/debugName.ts +150 -0
- package/src/_internal/util/vs/base/common/observableInternal/experimental/utils.ts +62 -0
- package/src/_internal/util/vs/base/common/observableInternal/index.ts +61 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/consoleObservableLogger.ts +388 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerApi.d.ts +154 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/debugger/debuggerRpc.ts +80 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/debugger/devToolsLogger.ts +485 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/debugger/rpc.ts +103 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/debugger/utils.ts +69 -0
- package/src/_internal/util/vs/base/common/observableInternal/logging/logging.ts +133 -0
- package/src/_internal/util/vs/base/common/observableInternal/map.ts +81 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/baseObservable.ts +172 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/constObservable.ts +44 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/derived.ts +190 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/derivedImpl.ts +445 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/lazyObservableValue.ts +154 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/observableFromEvent.ts +174 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/observableSignal.ts +67 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/observableSignalFromEvent.ts +62 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/observableValue.ts +131 -0
- package/src/_internal/util/vs/base/common/observableInternal/observables/observableValueOpts.ts +37 -0
- package/src/_internal/util/vs/base/common/observableInternal/reactions/autorun.ts +188 -0
- package/src/_internal/util/vs/base/common/observableInternal/reactions/autorunImpl.ts +256 -0
- package/src/_internal/util/vs/base/common/observableInternal/set.ts +78 -0
- package/src/_internal/util/vs/base/common/observableInternal/transaction.ts +115 -0
- package/src/_internal/util/vs/base/common/observableInternal/utils/promise.ts +129 -0
- package/src/_internal/util/vs/base/common/observableInternal/utils/runOnChange.ts +65 -0
- package/src/_internal/util/vs/base/common/observableInternal/utils/utils.ts +281 -0
- package/src/_internal/util/vs/base/common/observableInternal/utils/utilsCancellation.ts +101 -0
- package/src/_internal/util/vs/base/common/observableInternal/utils/valueWithChangeEvent.ts +31 -0
- package/src/_internal/util/vs/base/common/path.ts +1591 -0
- package/src/_internal/util/vs/base/common/platform.ts +282 -0
- package/src/_internal/util/vs/base/common/process.ts +78 -0
- package/src/_internal/util/vs/base/common/resources.ts +446 -0
- package/src/_internal/util/vs/base/common/sequence.ts +36 -0
- package/src/_internal/util/vs/base/common/sseParser.ts +247 -0
- package/src/_internal/util/vs/base/common/stopwatch.ts +43 -0
- package/src/_internal/util/vs/base/common/stream.ts +792 -0
- package/src/_internal/util/vs/base/common/strings.ts +1364 -0
- package/src/_internal/util/vs/base/common/symbols.ts +11 -0
- package/src/_internal/util/vs/base/common/themables.ts +106 -0
- package/src/_internal/util/vs/base/common/types.ts +345 -0
- package/src/_internal/util/vs/base/common/uint.ts +61 -0
- package/src/_internal/util/vs/base/common/uri.ts +752 -0
- package/src/_internal/util/vs/base/common/uuid.ts +72 -0
- package/src/_internal/util/vs/base-common.d.ts +42 -0
- package/src/_internal/util/vs/editor/common/core/editOperation.ts +62 -0
- package/src/_internal/util/vs/editor/common/core/edits/edit.ts +399 -0
- package/src/_internal/util/vs/editor/common/core/edits/lineEdit.ts +414 -0
- package/src/_internal/util/vs/editor/common/core/edits/stringEdit.ts +568 -0
- package/src/_internal/util/vs/editor/common/core/edits/textEdit.ts +411 -0
- package/src/_internal/util/vs/editor/common/core/position.ts +186 -0
- package/src/_internal/util/vs/editor/common/core/range.ts +519 -0
- package/src/_internal/util/vs/editor/common/core/ranges/lineRange.ts +416 -0
- package/src/_internal/util/vs/editor/common/core/ranges/offsetRange.ts +275 -0
- package/src/_internal/util/vs/editor/common/core/text/abstractText.ts +127 -0
- package/src/_internal/util/vs/editor/common/core/text/positionToOffset.ts +26 -0
- package/src/_internal/util/vs/editor/common/core/text/positionToOffsetImpl.ts +144 -0
- package/src/_internal/util/vs/editor/common/core/text/textLength.ts +150 -0
- package/src/_internal/util/vs/editor/common/core/wordHelper.ts +177 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/diffAlgorithm.ts +210 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/dynamicProgrammingDiffing.ts +109 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/algorithms/myersDiffAlgorithm.ts +178 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/computeMovedLines.ts +331 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.ts +273 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.ts +475 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/lineSequence.ts +47 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.ts +248 -0
- package/src/_internal/util/vs/editor/common/diff/defaultLinesDiffComputer/utils.ts +76 -0
- package/src/_internal/util/vs/editor/common/diff/legacyLinesDiffComputer.ts +693 -0
- package/src/_internal/util/vs/editor/common/diff/linesDiffComputer.ts +61 -0
- package/src/_internal/util/vs/editor/common/diff/rangeMapping.ts +418 -0
- package/src/_internal/util/vs/editor/common/model/prefixSumComputer.ts +304 -0
- package/src/_internal/util/vs/nls.messages.ts +21 -0
- package/src/_internal/util/vs/nls.ts +243 -0
- package/src/_internal/util/vs/platform/instantiation/common/descriptors.ts +23 -0
- package/src/_internal/util/vs/platform/instantiation/common/graph.ts +113 -0
- package/src/_internal/util/vs/platform/instantiation/common/instantiation.ts +127 -0
- package/src/_internal/util/vs/platform/instantiation/common/instantiationService.ts +483 -0
- package/src/_internal/util/vs/platform/instantiation/common/serviceCollection.ts +34 -0
- package/src/_internal/util/vs/vscode-globals-nls.d.ts +42 -0
- package/src/_internal/util/vs/vscode-globals-product.d.ts +35 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/diagnostic.ts +109 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/es5ClassCompat.ts +34 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/location.ts +51 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/markdownString.ts +83 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/notebooks.ts +296 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/position.ts +195 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/range.ts +167 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/selection.ts +94 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetString.ts +103 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/snippetTextEdit.ts +44 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/symbolInformation.ts +89 -0
- package/src/_internal/util/vs/workbench/api/common/extHostTypes/textEdit.ts +99 -0
- package/src/_internal/vscodeTypes.ts +100 -0
- package/src/main.ts +207 -0
- package/src/package.json +4063 -0
|
@@ -0,0 +1,4063 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "copilot-chat",
|
|
3
|
+
"displayName": "GitHub Copilot Chat",
|
|
4
|
+
"description": "AI chat features powered by Copilot",
|
|
5
|
+
"version": "0.31.0",
|
|
6
|
+
"build": "1",
|
|
7
|
+
"internalAIKey": "1058ec22-3c95-4951-8443-f26c1f325911",
|
|
8
|
+
"completionsCore": "1861b81c7d0b77b81849dc580b20b0df035b7577",
|
|
9
|
+
"completionsCoreVersion": "1.363.1764",
|
|
10
|
+
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
|
|
11
|
+
"ariaKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
12
|
+
"buildType": "dev",
|
|
13
|
+
"publisher": "GitHub",
|
|
14
|
+
"homepage": "https://github.com/features/copilot?editor=vscode",
|
|
15
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/microsoft/vscode-copilot-chat"
|
|
19
|
+
},
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/microsoft/vscode/issues"
|
|
22
|
+
},
|
|
23
|
+
"qna": "https://github.com/github-community/community/discussions/categories/copilot",
|
|
24
|
+
"icon": "assets/copilot.png",
|
|
25
|
+
"pricing": "Trial",
|
|
26
|
+
"engines": {
|
|
27
|
+
"vscode": "^1.104.0-20250828",
|
|
28
|
+
"npm": ">=9.0.0",
|
|
29
|
+
"node": ">=22.14.0"
|
|
30
|
+
},
|
|
31
|
+
"categories": [
|
|
32
|
+
"AI",
|
|
33
|
+
"Chat",
|
|
34
|
+
"Programming Languages",
|
|
35
|
+
"Machine Learning"
|
|
36
|
+
],
|
|
37
|
+
"keywords": [
|
|
38
|
+
"ai",
|
|
39
|
+
"openai",
|
|
40
|
+
"codex",
|
|
41
|
+
"pilot",
|
|
42
|
+
"snippets",
|
|
43
|
+
"documentation",
|
|
44
|
+
"autocomplete",
|
|
45
|
+
"intellisense",
|
|
46
|
+
"refactor",
|
|
47
|
+
"javascript",
|
|
48
|
+
"python",
|
|
49
|
+
"typescript",
|
|
50
|
+
"php",
|
|
51
|
+
"go",
|
|
52
|
+
"golang",
|
|
53
|
+
"ruby",
|
|
54
|
+
"c++",
|
|
55
|
+
"c#",
|
|
56
|
+
"java",
|
|
57
|
+
"kotlin",
|
|
58
|
+
"co-pilot"
|
|
59
|
+
],
|
|
60
|
+
"badges": [
|
|
61
|
+
{
|
|
62
|
+
"url": "https://img.shields.io/badge/GitHub%20Copilot-Subscription%20Required-orange",
|
|
63
|
+
"href": "https://github.com/github-copilot/signup?editor=vscode",
|
|
64
|
+
"description": "%github.copilot.badge.signUp%"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"url": "https://img.shields.io/github/stars/github/copilot-docs?style=social",
|
|
68
|
+
"href": "https://github.com/github/copilot-docs",
|
|
69
|
+
"description": "%github.copilot.badge.star%"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"url": "https://img.shields.io/youtube/channel/views/UC7c3Kb6jYCRj4JOHHZTxKsQ?style=social",
|
|
73
|
+
"href": "https://www.youtube.com/@GitHub/search?query=copilot",
|
|
74
|
+
"description": "%github.copilot.badge.youtube%"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"url": "https://img.shields.io/twitter/follow/github?style=social",
|
|
78
|
+
"href": "https://twitter.com/github",
|
|
79
|
+
"description": "%github.copilot.badge.twitter%"
|
|
80
|
+
}
|
|
81
|
+
],
|
|
82
|
+
"activationEvents": [
|
|
83
|
+
"onStartupFinished",
|
|
84
|
+
"onLanguageModelChat:copilot",
|
|
85
|
+
"onUri",
|
|
86
|
+
"onFileSystem:ccreq",
|
|
87
|
+
"onFileSystem:ccsettings"
|
|
88
|
+
],
|
|
89
|
+
"main": "./dist/extension",
|
|
90
|
+
"l10n": "./l10n",
|
|
91
|
+
"enabledApiProposals": [
|
|
92
|
+
"extensionsAny",
|
|
93
|
+
"newSymbolNamesProvider",
|
|
94
|
+
"interactive",
|
|
95
|
+
"codeActionAI",
|
|
96
|
+
"activeComment",
|
|
97
|
+
"commentReveal",
|
|
98
|
+
"contribCommentThreadAdditionalMenu",
|
|
99
|
+
"contribCommentsViewThreadMenus",
|
|
100
|
+
"documentFiltersExclusive",
|
|
101
|
+
"embeddings",
|
|
102
|
+
"findTextInFiles",
|
|
103
|
+
"findTextInFiles2",
|
|
104
|
+
"findFiles2@2",
|
|
105
|
+
"textSearchProvider",
|
|
106
|
+
"terminalDataWriteEvent",
|
|
107
|
+
"terminalExecuteCommandEvent",
|
|
108
|
+
"terminalSelection",
|
|
109
|
+
"terminalQuickFixProvider",
|
|
110
|
+
"mappedEditsProvider",
|
|
111
|
+
"aiRelatedInformation",
|
|
112
|
+
"aiSettingsSearch",
|
|
113
|
+
"chatParticipantAdditions",
|
|
114
|
+
"chatEditing",
|
|
115
|
+
"defaultChatParticipant@4",
|
|
116
|
+
"contribSourceControlInputBoxMenu",
|
|
117
|
+
"authLearnMore",
|
|
118
|
+
"testObserver",
|
|
119
|
+
"aiTextSearchProvider@2",
|
|
120
|
+
"chatParticipantPrivate@10",
|
|
121
|
+
"chatProvider@3",
|
|
122
|
+
"contribDebugCreateConfiguration",
|
|
123
|
+
"chatReferenceDiagnostic",
|
|
124
|
+
"textSearchProvider2",
|
|
125
|
+
"chatReferenceBinaryData",
|
|
126
|
+
"languageModelSystem",
|
|
127
|
+
"languageModelCapabilities",
|
|
128
|
+
"inlineCompletionsAdditions",
|
|
129
|
+
"languageModelDataPart@3",
|
|
130
|
+
"chatStatusItem",
|
|
131
|
+
"taskProblemMatcherStatus",
|
|
132
|
+
"contribLanguageModelToolSets",
|
|
133
|
+
"textDocumentChangeReason",
|
|
134
|
+
"resolvers",
|
|
135
|
+
"taskExecutionTerminal",
|
|
136
|
+
"dataChannels",
|
|
137
|
+
"languageModelThinkingPart",
|
|
138
|
+
"chatSessionsProvider"
|
|
139
|
+
],
|
|
140
|
+
"contributes": {
|
|
141
|
+
"languageModelTools": [
|
|
142
|
+
{
|
|
143
|
+
"name": "copilot_searchCodebase",
|
|
144
|
+
"toolReferenceName": "codebase",
|
|
145
|
+
"displayName": "%copilot.tools.searchCodebase.name%",
|
|
146
|
+
"icon": "$(folder)",
|
|
147
|
+
"userDescription": "%copilot.codebase.tool.description%",
|
|
148
|
+
"modelDescription": "Run a natural language search for relevant code or documentation comments from the user's current workspace. Returns relevant code snippets from the user's current workspace if it is large, or the full contents of the workspace if it is small.",
|
|
149
|
+
"tags": [
|
|
150
|
+
"codesearch",
|
|
151
|
+
"vscode_codesearch"
|
|
152
|
+
],
|
|
153
|
+
"inputSchema": {
|
|
154
|
+
"type": "object",
|
|
155
|
+
"properties": {
|
|
156
|
+
"query": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"description": "The query to search the codebase for. Should contain all relevant context. Should ideally be text that might appear in the codebase, such as function names, variable names, or comments."
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"required": [
|
|
162
|
+
"query"
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "execute_task",
|
|
168
|
+
"toolReferenceName": "executeTask",
|
|
169
|
+
"displayName": "Execute Task",
|
|
170
|
+
"when": "config.github.copilot.chat.advanced.taskTools.enabled",
|
|
171
|
+
"canBeReferencedInPrompt": true,
|
|
172
|
+
"modelDescription": "Launch a new agent to handle complex, multi-step tasks autonomously. This tool is good at researching complex questions, searching for code, and executing multi-step tasks. When you are searching for a keyword or file and are not confident that you will find the right match in the first few tries, use this agent to perform the search for you.\n\n- When the agent is done, it will return a single message back to you. The result returned by the agent is not visible to the user. To show the user the result, you should send a text message back to the user with a concise summary of the result.\n - Each agent invocation is stateless. You will not be able to send additional messages to the agent, nor will the agent be able to communicate with you outside of its final report. Therefore, your prompt should contain a highly detailed task description for the agent to perform autonomously and you should specify exactly what information the agent should return back to you in its final and only message to you.\n - The agent's outputs should generally be trusted\n - Clearly tell the agent whether you expect it to write code or just to do research (search, file reads, web fetches, etc.), since it is not aware of the user's intent",
|
|
173
|
+
"tags": [],
|
|
174
|
+
"inputSchema": {
|
|
175
|
+
"type": "object",
|
|
176
|
+
"properties": {
|
|
177
|
+
"prompt": {
|
|
178
|
+
"type": "string",
|
|
179
|
+
"description": "A detailed description of the task for the agent to perform"
|
|
180
|
+
},
|
|
181
|
+
"description": {
|
|
182
|
+
"type": "string",
|
|
183
|
+
"description": "A short (3-5 word) description of the task"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"required": [
|
|
187
|
+
"prompt",
|
|
188
|
+
"description"
|
|
189
|
+
]
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "execute_prompt",
|
|
194
|
+
"toolReferenceName": "executePrompt",
|
|
195
|
+
"displayName": "Execute Prompt",
|
|
196
|
+
"when": "config.github.copilot.chat.advanced.taskTools.enabled",
|
|
197
|
+
"canBeReferencedInPrompt": true,
|
|
198
|
+
"modelDescription": "This tool can take a path to a user's prompt file as input, and execute it autonomously. If the user's prompt includes multiple references to .prompt.md files, then you should use this tool to execute those prompts in sequence.\n\n- When the agent is done, it will return a single message back to you. The result returned by the agent is not visible to the user. To show the user the result, you should send a text message back to the user with a concise summary of the result.\n - The agent's outputs should generally be trusted",
|
|
199
|
+
"tags": [],
|
|
200
|
+
"inputSchema": {
|
|
201
|
+
"type": "object",
|
|
202
|
+
"properties": {
|
|
203
|
+
"filePath": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"description": "The absolute path to the prompt file to execute"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"required": [
|
|
209
|
+
"filePath"
|
|
210
|
+
]
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"name": "copilot_searchWorkspaceSymbols",
|
|
215
|
+
"toolReferenceName": "symbols",
|
|
216
|
+
"displayName": "%copilot.tools.searchWorkspaceSymbols.name%",
|
|
217
|
+
"icon": "$(symbol)",
|
|
218
|
+
"userDescription": "%copilot.workspaceSymbols.tool.description%",
|
|
219
|
+
"modelDescription": "Search the user's workspace for code symbols using language services. Use this tool when the user is looking for a specific symbol in their workspace.",
|
|
220
|
+
"tags": [
|
|
221
|
+
"vscode_codesearch"
|
|
222
|
+
],
|
|
223
|
+
"inputSchema": {
|
|
224
|
+
"type": "object",
|
|
225
|
+
"properties": {
|
|
226
|
+
"symbolName": {
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "The symbol to search for, such as a function name, class name, or variable name."
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"required": [
|
|
232
|
+
"symbolName"
|
|
233
|
+
]
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"name": "copilot_listCodeUsages",
|
|
238
|
+
"toolReferenceName": "usages",
|
|
239
|
+
"displayName": "%copilot.tools.listCodeUsages.name%",
|
|
240
|
+
"icon": "$(references)",
|
|
241
|
+
"canBeReferencedInPrompt": true,
|
|
242
|
+
"userDescription": "%copilot.listCodeUsages.tool.description%",
|
|
243
|
+
"modelDescription": "Request to list all usages (references, definitions, implementations etc) of a function, class, method, variable etc. Use this tool when \n1. Looking for a sample implementation of an interface or class\n2. Checking how a function is used throughout the codebase.\n3. Including and updating all usages when changing a function, method, or constructor",
|
|
244
|
+
"tags": [
|
|
245
|
+
"vscode_codesearch"
|
|
246
|
+
],
|
|
247
|
+
"inputSchema": {
|
|
248
|
+
"type": "object",
|
|
249
|
+
"properties": {
|
|
250
|
+
"symbolName": {
|
|
251
|
+
"type": "string",
|
|
252
|
+
"description": "The name of the symbol, such as a function name, class name, method name, variable name, etc."
|
|
253
|
+
},
|
|
254
|
+
"filePaths": {
|
|
255
|
+
"type": "array",
|
|
256
|
+
"description": "One or more file paths which likely contain the definition of the symbol. For instance the file which declares a class or function. This is optional but will speed up the invocation of this tool and improve the quality of its output.",
|
|
257
|
+
"items": {
|
|
258
|
+
"type": "string"
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"required": [
|
|
263
|
+
"symbolName"
|
|
264
|
+
]
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "copilot_getVSCodeAPI",
|
|
269
|
+
"toolReferenceName": "vscodeAPI",
|
|
270
|
+
"displayName": "%copilot.tools.getVSCodeAPI.name%",
|
|
271
|
+
"icon": "$(references)",
|
|
272
|
+
"userDescription": "%copilot.vscode.tool.description%",
|
|
273
|
+
"modelDescription": "Get comprehensive VS Code API documentation and references for extension development. This tool provides authoritative documentation for VS Code's extensive API surface, including proposed APIs, contribution points, and best practices. Use this tool for understanding complex VS Code API interactions.\n\nWhen to use this tool:\n- User asks about specific VS Code APIs, interfaces, or extension capabilities\n- Need documentation for VS Code extension contribution points (commands, views, settings, etc.)\n- Questions about proposed APIs and their usage patterns\n- Understanding VS Code extension lifecycle, activation events, and packaging\n- Best practices for VS Code extension development architecture\n- API examples and code patterns for extension features\n- Troubleshooting extension-specific issues or API limitations\n\nWhen NOT to use this tool:\n- Creating simple standalone files or scripts unrelated to VS Code extensions\n- General programming questions not specific to VS Code extension development\n- Questions about using VS Code as an editor (user-facing features)\n- Non-extension related development tasks\n- File creation or editing that doesn't involve VS Code extension APIs\n\nCRITICAL usage guidelines:\n1. Always include specific API names, interfaces, or concepts in your query\n2. Mention the extension feature you're trying to implement\n3. Include context about proposed vs stable APIs when relevant\n4. Reference specific contribution points when asking about extension manifest\n5. Be specific about the VS Code version or API version when known\n\nScope: This tool is for EXTENSION DEVELOPMENT ONLY - building tools that extend VS Code itself, not for general file creation or non-extension programming tasks.",
|
|
274
|
+
"inputSchema": {
|
|
275
|
+
"type": "object",
|
|
276
|
+
"properties": {
|
|
277
|
+
"query": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"description": "The query to search vscode documentation for. Should contain all relevant context."
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
"required": [
|
|
283
|
+
"query"
|
|
284
|
+
]
|
|
285
|
+
},
|
|
286
|
+
"tags": [],
|
|
287
|
+
"canBeReferencedInPrompt": true
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"displayName": "%copilot.tools.think.name%",
|
|
291
|
+
"name": "copilot_think",
|
|
292
|
+
"tags": [],
|
|
293
|
+
"canBeReferencedInPrompt": true,
|
|
294
|
+
"toolReferenceName": "think",
|
|
295
|
+
"when": "config.github.copilot.chat.agent.thinkingTool",
|
|
296
|
+
"modelDescription": "Use this tool to think deeply about the user's request and organize your thoughts. This tool helps improve response quality by allowing the model to consider the request carefully, brainstorm solutions, and plan complex tasks. It's particularly useful for:\n\n1. Exploring repository issues and brainstorming bug fixes\n2. Analyzing test results and planning fixes\n3. Planning complex refactoring approaches\n4. Designing new features and architecture\n5. Organizing debugging hypotheses\n\nThe tool logs your thought process for transparency but doesn't execute any code or make changes.",
|
|
297
|
+
"inputSchema": {
|
|
298
|
+
"type": "object",
|
|
299
|
+
"properties": {
|
|
300
|
+
"thoughts": {
|
|
301
|
+
"type": "string",
|
|
302
|
+
"description": "Your thoughts about the current task or problem. This should be a clear, structured explanation of your reasoning, analysis, or planning process."
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"required": [
|
|
306
|
+
"thoughts"
|
|
307
|
+
]
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "copilot_findFiles",
|
|
312
|
+
"toolReferenceName": "fileSearch",
|
|
313
|
+
"displayName": "%copilot.tools.findFiles.name%",
|
|
314
|
+
"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.",
|
|
315
|
+
"tags": [
|
|
316
|
+
"vscode_codesearch"
|
|
317
|
+
],
|
|
318
|
+
"inputSchema": {
|
|
319
|
+
"type": "object",
|
|
320
|
+
"properties": {
|
|
321
|
+
"query": {
|
|
322
|
+
"type": "string",
|
|
323
|
+
"description": "Search for files with names or paths matching this glob pattern."
|
|
324
|
+
},
|
|
325
|
+
"maxResults": {
|
|
326
|
+
"type": "number",
|
|
327
|
+
"description": "The maximum number of results to return. Do not use this unless necessary, it can slow things down. By default, only some matches are returned. If you use this and don't see what you're looking for, you can try again with a more specific query or a larger maxResults."
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"required": [
|
|
331
|
+
"query"
|
|
332
|
+
]
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "copilot_findTextInFiles",
|
|
337
|
+
"toolReferenceName": "textSearch",
|
|
338
|
+
"displayName": "%copilot.tools.findTextInFiles.name%",
|
|
339
|
+
"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 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.",
|
|
340
|
+
"tags": [
|
|
341
|
+
"vscode_codesearch"
|
|
342
|
+
],
|
|
343
|
+
"inputSchema": {
|
|
344
|
+
"type": "object",
|
|
345
|
+
"properties": {
|
|
346
|
+
"query": {
|
|
347
|
+
"type": "string",
|
|
348
|
+
"description": "The pattern to search for in files in the workspace. Use regex with alternation (e.g., 'word1|word2|word3') or character classes to find multiple potential words in a single search. Be sure to set the isRegexp property properly to declare whether it's a regex or plain text pattern. Is case-insensitive."
|
|
349
|
+
},
|
|
350
|
+
"isRegexp": {
|
|
351
|
+
"type": "boolean",
|
|
352
|
+
"description": "Whether the pattern is a regex."
|
|
353
|
+
},
|
|
354
|
+
"includePattern": {
|
|
355
|
+
"type": "string",
|
|
356
|
+
"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."
|
|
357
|
+
},
|
|
358
|
+
"maxResults": {
|
|
359
|
+
"type": "number",
|
|
360
|
+
"description": "The maximum number of results to return. Do not use this unless necessary, it can slow things down. By default, only some matches are returned. If you use this and don't see what you're looking for, you can try again with a more specific query or a larger maxResults."
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"required": [
|
|
364
|
+
"query",
|
|
365
|
+
"isRegexp"
|
|
366
|
+
]
|
|
367
|
+
}
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "copilot_applyPatch",
|
|
371
|
+
"displayName": "%copilot.tools.applyPatch.name%",
|
|
372
|
+
"toolReferenceName": "applyPatch",
|
|
373
|
+
"userDescription": "%copilot.tools.applyPatch.description%",
|
|
374
|
+
"modelDescription": "Edit text files. Do not use this tool to edit Jupyter notebooks. `apply_patch` allows you to execute a diff/patch against a text file, but the format of the diff specification is unique to this task, so pay careful attention to these instructions. To use the `apply_patch` command, you should pass a message of the following structure as \"input\":\n\n*** Begin Patch\n[YOUR_PATCH]\n*** End Patch\n\nWhere [YOUR_PATCH] is the actual content of your patch, specified in the following V4A diff format.\n\n*** [ACTION] File: [/absolute/path/to/file] -> ACTION can be one of Add, Update, or Delete.\nAn example of a message that you might pass as \"input\" to this function, in order to apply a patch, is shown below.\n\n*** Begin Patch\n*** Update File: /Users/someone/pygorithm/searching/binary_search.py\n@@class BaseClass\n@@ def search():\n- pass\n+ raise NotImplementedError()\n\n@@class Subclass\n@@ def search():\n- pass\n+ raise NotImplementedError()\n\n*** End Patch\nDo not use line numbers in this diff format.",
|
|
375
|
+
"inputSchema": {
|
|
376
|
+
"type": "object",
|
|
377
|
+
"properties": {
|
|
378
|
+
"input": {
|
|
379
|
+
"type": "string",
|
|
380
|
+
"description": "The edit patch to apply."
|
|
381
|
+
},
|
|
382
|
+
"explanation": {
|
|
383
|
+
"type": "string",
|
|
384
|
+
"description": "A short description of what the tool call is aiming to achieve."
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"required": [
|
|
388
|
+
"input",
|
|
389
|
+
"explanation"
|
|
390
|
+
]
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"name": "copilot_readFile",
|
|
395
|
+
"toolReferenceName": "readFile",
|
|
396
|
+
"displayName": "%copilot.tools.readFile.name%",
|
|
397
|
+
"modelDescription": "Read the contents of a file.\n\nYou must specify the line range you're interested in. Line numbers are 1-indexed. If the file contents returned are insufficient for your task, you may call this tool again to retrieve more content. Prefer reading larger ranges over doing many small reads.",
|
|
398
|
+
"tags": [
|
|
399
|
+
"vscode_codesearch"
|
|
400
|
+
],
|
|
401
|
+
"inputSchema": {
|
|
402
|
+
"type": "object",
|
|
403
|
+
"properties": {
|
|
404
|
+
"filePath": {
|
|
405
|
+
"description": "The absolute path of the file to read.",
|
|
406
|
+
"type": "string"
|
|
407
|
+
},
|
|
408
|
+
"startLine": {
|
|
409
|
+
"type": "number",
|
|
410
|
+
"description": "The line number to start reading from, 1-based."
|
|
411
|
+
},
|
|
412
|
+
"endLine": {
|
|
413
|
+
"type": "number",
|
|
414
|
+
"description": "The inclusive line number to end reading at, 1-based."
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"required": [
|
|
418
|
+
"filePath",
|
|
419
|
+
"startLine",
|
|
420
|
+
"endLine"
|
|
421
|
+
]
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "copilot_listDirectory",
|
|
426
|
+
"toolReferenceName": "listDirectory",
|
|
427
|
+
"displayName": "%copilot.tools.listDirectory.name%",
|
|
428
|
+
"modelDescription": "List the contents of a directory. Result will have the name of the child. If the name ends in /, it's a folder, otherwise a file",
|
|
429
|
+
"tags": [
|
|
430
|
+
"vscode_codesearch"
|
|
431
|
+
],
|
|
432
|
+
"inputSchema": {
|
|
433
|
+
"type": "object",
|
|
434
|
+
"properties": {
|
|
435
|
+
"path": {
|
|
436
|
+
"type": "string",
|
|
437
|
+
"description": "The absolute path to the directory to list."
|
|
438
|
+
}
|
|
439
|
+
},
|
|
440
|
+
"required": [
|
|
441
|
+
"path"
|
|
442
|
+
]
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"name": "copilot_getErrors",
|
|
447
|
+
"displayName": "%copilot.tools.getErrors.name%",
|
|
448
|
+
"toolReferenceName": "problems",
|
|
449
|
+
"canBeReferencedInPrompt": true,
|
|
450
|
+
"icon": "$(error)",
|
|
451
|
+
"userDescription": "%copilot.tools.errors.description%",
|
|
452
|
+
"modelDescription": "Get any compile or lint errors in a specific file or across all files. If the user mentions errors or problems in a file, they may be referring to these. Use the tool to see the same errors that the user is seeing. If the user asks you to analyze all errors, or does not specify a file, use this tool to gather errors for all files. Also use this tool after editing a file to validate the change.",
|
|
453
|
+
"tags": [],
|
|
454
|
+
"inputSchema": {
|
|
455
|
+
"type": "object",
|
|
456
|
+
"properties": {
|
|
457
|
+
"filePaths": {
|
|
458
|
+
"description": "The absolute paths to the files to check for errors. Omit 'filePaths' when retrieving all errors.",
|
|
459
|
+
"type": "array",
|
|
460
|
+
"items": {
|
|
461
|
+
"type": "string"
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"name": "copilot_readProjectStructure",
|
|
469
|
+
"displayName": "%copilot.tools.readProjectStructure.name%",
|
|
470
|
+
"modelDescription": "Get a file tree representation of the workspace.",
|
|
471
|
+
"tags": []
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"name": "copilot_getChangedFiles",
|
|
475
|
+
"displayName": "%copilot.tools.getChangedFiles.name%",
|
|
476
|
+
"toolReferenceName": "changes",
|
|
477
|
+
"icon": "$(diff)",
|
|
478
|
+
"canBeReferencedInPrompt": true,
|
|
479
|
+
"userDescription": "%copilot.tools.changes.description%",
|
|
480
|
+
"modelDescription": "Get git diffs of current file changes in a git repository. Don't forget that you can use run_in_terminal to run git commands in a terminal as well.",
|
|
481
|
+
"tags": [
|
|
482
|
+
"vscode_codesearch"
|
|
483
|
+
],
|
|
484
|
+
"inputSchema": {
|
|
485
|
+
"type": "object",
|
|
486
|
+
"properties": {
|
|
487
|
+
"repositoryPath": {
|
|
488
|
+
"type": "string",
|
|
489
|
+
"description": "The absolute path to the git repository to look for changes in. If not provided, the active git repository will be used."
|
|
490
|
+
},
|
|
491
|
+
"sourceControlState": {
|
|
492
|
+
"type": "array",
|
|
493
|
+
"items": {
|
|
494
|
+
"type": "string",
|
|
495
|
+
"enum": [
|
|
496
|
+
"staged",
|
|
497
|
+
"unstaged",
|
|
498
|
+
"merge-conflicts"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
"description": "The kinds of git state to filter by. Allowed values are: 'staged', 'unstaged', and 'merge-conflicts'. If not provided, all states will be included."
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"name": "copilot_testFailure",
|
|
508
|
+
"toolReferenceName": "testFailure",
|
|
509
|
+
"displayName": "%copilot.tools.testFailure.name%",
|
|
510
|
+
"icon": "$(beaker)",
|
|
511
|
+
"userDescription": "%copilot.testFailure.tool.description%",
|
|
512
|
+
"modelDescription": "Includes test failure information in the prompt.",
|
|
513
|
+
"inputSchema": {},
|
|
514
|
+
"tags": [
|
|
515
|
+
"vscode_editing_with_tests",
|
|
516
|
+
"enable_other_tool_copilot_readFile",
|
|
517
|
+
"enable_other_tool_copilot_listDirectory",
|
|
518
|
+
"enable_other_tool_copilot_findFiles",
|
|
519
|
+
"enable_other_tool_copilot_runTests"
|
|
520
|
+
],
|
|
521
|
+
"canBeReferencedInPrompt": true
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
"name": "copilot_updateUserPreferences",
|
|
525
|
+
"toolReferenceName": "updateUserPreferences",
|
|
526
|
+
"displayName": "%copilot.tools.updateUserPreferences.name%",
|
|
527
|
+
"modelDescription": "Update the user's preferences file with new information about the user and their coding preferences, based on the current chat history.",
|
|
528
|
+
"canBeReferencedInPrompt": true,
|
|
529
|
+
"tags": [],
|
|
530
|
+
"inputSchema": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"facts": {
|
|
534
|
+
"type": "array",
|
|
535
|
+
"items": {
|
|
536
|
+
"type": "string"
|
|
537
|
+
},
|
|
538
|
+
"description": "An array of new user preferences to remember."
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"required": [
|
|
542
|
+
"facts"
|
|
543
|
+
]
|
|
544
|
+
},
|
|
545
|
+
"when": "config.github.copilot.chat.enableUserPreferences"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"name": "copilot_createNewWorkspace",
|
|
549
|
+
"displayName": "%github.copilot.tools.createNewWorkspace.name%",
|
|
550
|
+
"toolReferenceName": "newWorkspace",
|
|
551
|
+
"icon": "$(new-folder)",
|
|
552
|
+
"userDescription": "%github.copilot.tools.createNewWorkspace.userDescription%",
|
|
553
|
+
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
|
|
554
|
+
"modelDescription": "Get comprehensive setup steps to help the user create complete project structures in a VS Code workspace. This tool is designed for full project initialization and scaffolding, not for creating individual files.\n\nWhen to use this tool:\n- User wants to create a new complete project from scratch\n- Setting up entire project frameworks (TypeScript projects, React apps, Node.js servers, etc.)\n- Initializing Model Context Protocol (MCP) servers with full structure\n- Creating VS Code extensions with proper scaffolding\n- Setting up Next.js, Vite, or other framework-based projects\n- User asks for \"new project\", \"create a workspace\", \"set up a [framework] project\"\n- Need to establish complete development environment with dependencies, config files, and folder structure\n\nWhen NOT to use this tool:\n- Creating single files or small code snippets\n- Adding individual files to existing projects\n- Making modifications to existing codebases\n- User asks to \"create a file\" or \"add a component\"\n- Simple code examples or demonstrations\n- Debugging or fixing existing code\n\nThis tool provides complete project setup including:\n- Folder structure creation\n- Package.json and dependency management\n- Configuration files (tsconfig, eslint, etc.)\n- Initial boilerplate code\n- Development environment setup\n- Build and run instructions\n\nUse other file creation tools for individual files within existing projects.",
|
|
555
|
+
"inputSchema": {
|
|
556
|
+
"type": "object",
|
|
557
|
+
"properties": {
|
|
558
|
+
"query": {
|
|
559
|
+
"type": "string",
|
|
560
|
+
"description": "The query to use to generate the new workspace. This should be a clear and concise description of the workspace the user wants to create."
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
"required": [
|
|
564
|
+
"query"
|
|
565
|
+
]
|
|
566
|
+
},
|
|
567
|
+
"tags": [
|
|
568
|
+
"enable_other_tool_install_extension",
|
|
569
|
+
"enable_other_tool_get_project_setup_info"
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
"name": "copilot_getProjectSetupInfo",
|
|
574
|
+
"displayName": "%github.copilot.tools.getProjectSetupInfo.name%",
|
|
575
|
+
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
|
|
576
|
+
"toolReferenceName": "getProjectSetupInfo",
|
|
577
|
+
"modelDescription": "Do not call this tool without first calling the tool to create a workspace. This tool provides a project setup information for a Visual Studio Code workspace based on a project type and programming language.",
|
|
578
|
+
"inputSchema": {
|
|
579
|
+
"type": "object",
|
|
580
|
+
"properties": {
|
|
581
|
+
"projectType": {
|
|
582
|
+
"type": "string",
|
|
583
|
+
"description": "The type of project to create. Supported values are: 'python-script', 'python-project', 'mcp-server', 'model-context-protocol-server', 'vscode-extension', 'next-js', 'vite' and 'other'"
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"required": [
|
|
587
|
+
"projectType"
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
"tags": []
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"name": "copilot_installExtension",
|
|
594
|
+
"displayName": "Install Extension in VS Code",
|
|
595
|
+
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
|
|
596
|
+
"toolReferenceName": "installExtension",
|
|
597
|
+
"modelDescription": "Install an extension in VS Code. Use this tool to install an extension in Visual Studio Code as part of a new workspace creation process only.",
|
|
598
|
+
"inputSchema": {
|
|
599
|
+
"type": "object",
|
|
600
|
+
"properties": {
|
|
601
|
+
"id": {
|
|
602
|
+
"type": "string",
|
|
603
|
+
"description": "The ID of the extension to install. This should be in the format <publisher>.<extension>."
|
|
604
|
+
},
|
|
605
|
+
"name": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "The name of the extension to install. This should be a clear and concise description of the extension."
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": [
|
|
611
|
+
"id",
|
|
612
|
+
"name"
|
|
613
|
+
]
|
|
614
|
+
},
|
|
615
|
+
"tags": []
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"name": "copilot_runVscodeCommand",
|
|
619
|
+
"displayName": "Run VS Code Command",
|
|
620
|
+
"when": "config.github.copilot.chat.newWorkspaceCreation.enabled",
|
|
621
|
+
"toolReferenceName": "runVscodeCommand",
|
|
622
|
+
"modelDescription": "Run a command in VS Code. Use this tool to run a command in Visual Studio Code as part of a new workspace creation process only.",
|
|
623
|
+
"inputSchema": {
|
|
624
|
+
"type": "object",
|
|
625
|
+
"properties": {
|
|
626
|
+
"commandId": {
|
|
627
|
+
"type": "string",
|
|
628
|
+
"description": "The ID of the command to execute. This should be in the format <command>."
|
|
629
|
+
},
|
|
630
|
+
"name": {
|
|
631
|
+
"type": "string",
|
|
632
|
+
"description": "The name of the command to execute. This should be a clear and concise description of the command."
|
|
633
|
+
},
|
|
634
|
+
"args": {
|
|
635
|
+
"type": "array",
|
|
636
|
+
"description": "The arguments to pass to the command. This should be an array of strings.",
|
|
637
|
+
"items": {
|
|
638
|
+
"type": "string"
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
},
|
|
642
|
+
"required": [
|
|
643
|
+
"commandId",
|
|
644
|
+
"name"
|
|
645
|
+
]
|
|
646
|
+
},
|
|
647
|
+
"tags": []
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"name": "copilot_createNewJupyterNotebook",
|
|
651
|
+
"displayName": "Create New Jupyter Notebook",
|
|
652
|
+
"icon": "$(notebook)",
|
|
653
|
+
"toolReferenceName": "newJupyterNotebook",
|
|
654
|
+
"modelDescription": "Generates a new Jupyter Notebook (.ipynb) in VS Code. Jupyter Notebooks are interactive documents commonly used for data exploration, analysis, visualization, and combining code with narrative text. Prefer creating plain Python files or similar unless a user explicitly requests creating a new Jupyter Notebook or already has a Jupyter Notebook opened or exists in the workspace.",
|
|
655
|
+
"userDescription": "%copilot.tools.newJupyterNotebook.description%",
|
|
656
|
+
"inputSchema": {
|
|
657
|
+
"type": "object",
|
|
658
|
+
"properties": {
|
|
659
|
+
"query": {
|
|
660
|
+
"type": "string",
|
|
661
|
+
"description": "The query to use to generate the jupyter notebook. This should be a clear and concise description of the notebook the user wants to create."
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"required": [
|
|
665
|
+
"query"
|
|
666
|
+
]
|
|
667
|
+
},
|
|
668
|
+
"tags": []
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "copilot_insertEdit",
|
|
672
|
+
"toolReferenceName": "insertEdit",
|
|
673
|
+
"displayName": "%copilot.tools.insertEdit.name%",
|
|
674
|
+
"modelDescription": "Insert new code into an existing file in the workspace. Use this tool once per file that needs to be modified, even if there are multiple changes for a file. Generate the \"explanation\" property first.\nThe system is very smart and can understand how to apply your edits to the files, you just need to provide minimal hints.\nAvoid repeating existing code, instead use comments to represent regions of unchanged code. Be as concise as possible. For example:\n// ...existing code...\n{ changed code }\n// ...existing code...\n{ changed code }\n// ...existing code...\n\nHere is an example of how you should use format an edit to an existing Person class:\nclass Person {\n\t// ...existing code...\n\tage: number;\n\t// ...existing code...\n\tgetAge() {\n\treturn this.age;\n\t}\n}",
|
|
675
|
+
"tags": [],
|
|
676
|
+
"inputSchema": {
|
|
677
|
+
"type": "object",
|
|
678
|
+
"properties": {
|
|
679
|
+
"explanation": {
|
|
680
|
+
"type": "string",
|
|
681
|
+
"description": "A short explanation of the edit being made."
|
|
682
|
+
},
|
|
683
|
+
"filePath": {
|
|
684
|
+
"type": "string",
|
|
685
|
+
"description": "An absolute path to the file to edit."
|
|
686
|
+
},
|
|
687
|
+
"code": {
|
|
688
|
+
"type": "string",
|
|
689
|
+
"description": "The code change to apply to the file.\nThe system is very smart and can understand how to apply your edits to the files, you just need to provide minimal hints.\nAvoid repeating existing code, instead use comments to represent regions of unchanged code. Be as concise as possible. For example:\n// ...existing code...\n{ changed code }\n// ...existing code...\n{ changed code }\n// ...existing code...\n\nHere is an example of how you should use format an edit to an existing Person class:\nclass Person {\n\t// ...existing code...\n\tage: number;\n\t// ...existing code...\n\tgetAge() {\n\t\treturn this.age;\n\t}\n}"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
692
|
+
"required": [
|
|
693
|
+
"explanation",
|
|
694
|
+
"filePath",
|
|
695
|
+
"code"
|
|
696
|
+
]
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"name": "copilot_createFile",
|
|
701
|
+
"toolReferenceName": "createFile",
|
|
702
|
+
"displayName": "%copilot.tools.createFile.name%",
|
|
703
|
+
"userDescription": "%copilot.tools.createFile.description%",
|
|
704
|
+
"modelDescription": "This is a tool for creating a new file in the workspace. The file will be created with the specified content. The directory will be created if it does not already exist. Never use this tool to edit a file that already exists.",
|
|
705
|
+
"tags": [],
|
|
706
|
+
"inputSchema": {
|
|
707
|
+
"type": "object",
|
|
708
|
+
"properties": {
|
|
709
|
+
"filePath": {
|
|
710
|
+
"type": "string",
|
|
711
|
+
"description": "The absolute path to the file to create."
|
|
712
|
+
},
|
|
713
|
+
"content": {
|
|
714
|
+
"type": "string",
|
|
715
|
+
"description": "The content to write to the file."
|
|
716
|
+
}
|
|
717
|
+
},
|
|
718
|
+
"required": [
|
|
719
|
+
"filePath",
|
|
720
|
+
"content"
|
|
721
|
+
]
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
"name": "copilot_createDirectory",
|
|
726
|
+
"toolReferenceName": "createDirectory",
|
|
727
|
+
"displayName": "%copilot.tools.createDirectory.name%",
|
|
728
|
+
"userDescription": "%copilot.tools.createDirectory.description%",
|
|
729
|
+
"modelDescription": "Create a new directory structure in the workspace. Will recursively create all directories in the path, like mkdir -p. You do not need to use this tool before using create_file, that tool will automatically create the needed directories.",
|
|
730
|
+
"tags": [],
|
|
731
|
+
"inputSchema": {
|
|
732
|
+
"type": "object",
|
|
733
|
+
"properties": {
|
|
734
|
+
"dirPath": {
|
|
735
|
+
"type": "string",
|
|
736
|
+
"description": "The absolute path to the directory to create."
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"required": [
|
|
740
|
+
"dirPath"
|
|
741
|
+
]
|
|
742
|
+
}
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"name": "copilot_openSimpleBrowser",
|
|
746
|
+
"displayName": "%copilot.tools.openSimpleBrowser.name%",
|
|
747
|
+
"modelDescription": "Preview a website or open a URL in the editor's Simple Browser. Useful for quickly viewing locally hosted websites, demos, or resources without leaving the coding environment.",
|
|
748
|
+
"userDescription": "%copilot.tools.openSimpleBrowser.description%",
|
|
749
|
+
"toolReferenceName": "openSimpleBrowser",
|
|
750
|
+
"canBeReferencedInPrompt": true,
|
|
751
|
+
"tags": [],
|
|
752
|
+
"inputSchema": {
|
|
753
|
+
"type": "object",
|
|
754
|
+
"properties": {
|
|
755
|
+
"url": {
|
|
756
|
+
"type": "string",
|
|
757
|
+
"description": "The website URL to preview or open in the Simple Browser inside the editor. Must be either an http or https URL"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
"required": [
|
|
761
|
+
"url"
|
|
762
|
+
]
|
|
763
|
+
}
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "copilot_replaceString",
|
|
767
|
+
"toolReferenceName": "replaceString",
|
|
768
|
+
"displayName": "%copilot.tools.replaceString.name%",
|
|
769
|
+
"modelDescription": "This is a tool for making edits in an existing file in the workspace. For moving or renaming files, use run in terminal tool with the 'mv' command instead. For larger edits, split them into smaller edits and call the edit tool multiple times to ensure accuracy. Before editing, always ensure you have the context to understand the file's contents and context. To edit a file, provide: 1) filePath (absolute path), 2) oldString (MUST be the exact literal text to replace including all whitespace, indentation, newlines, and surrounding code etc), and 3) newString (MUST be the exact literal text to replace \\`oldString\\` with (also including all whitespace, indentation, newlines, and surrounding code etc.). Ensure the resulting code is correct and idiomatic.). Each use of this tool replaces exactly ONE occurrence of oldString.\n\nCRITICAL for \\`oldString\\`: Must uniquely identify the single instance to change. Include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. If this string matches multiple locations, or does not match exactly, the tool will fail. Never use 'Lines 123-456 omitted' from summarized documents or ...existing code... comments in the oldString or newString.",
|
|
770
|
+
"when": "!config.github.copilot.chat.disableReplaceTool",
|
|
771
|
+
"inputSchema": {
|
|
772
|
+
"type": "object",
|
|
773
|
+
"properties": {
|
|
774
|
+
"filePath": {
|
|
775
|
+
"type": "string",
|
|
776
|
+
"description": "An absolute path to the file to edit."
|
|
777
|
+
},
|
|
778
|
+
"oldString": {
|
|
779
|
+
"type": "string",
|
|
780
|
+
"description": "The exact literal text to replace, preferably unescaped. For single replacements (default), include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. For multiple replacements, specify expected_replacements parameter. If this string is not the exact literal text (i.e. you escaped it) or does not match exactly, the tool will fail."
|
|
781
|
+
},
|
|
782
|
+
"newString": {
|
|
783
|
+
"type": "string",
|
|
784
|
+
"description": "The exact literal text to replace `old_string` with, preferably unescaped. Provide the EXACT text. Ensure the resulting code is correct and idiomatic."
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
"required": [
|
|
788
|
+
"filePath",
|
|
789
|
+
"oldString",
|
|
790
|
+
"newString"
|
|
791
|
+
]
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"name": "copilot_multiReplaceString",
|
|
796
|
+
"toolReferenceName": "multiReplaceString",
|
|
797
|
+
"displayName": "%copilot.tools.multiReplaceString.name%",
|
|
798
|
+
"modelDescription": "This tool allows you to apply multiple replace_string_in_file operations in a single call, which is more efficient than calling replace_string_in_file multiple times. It takes an array of replacement operations and applies them sequentially. Each replacement operation has the same parameters as replace_string_in_file: filePath, oldString, newString, and explanation. This tool is ideal when you need to make multiple edits across different files or multiple edits in the same file. The tool will provide a summary of successful and failed operations.",
|
|
799
|
+
"when": "!config.github.copilot.chat.disableReplaceTool",
|
|
800
|
+
"inputSchema": {
|
|
801
|
+
"type": "object",
|
|
802
|
+
"properties": {
|
|
803
|
+
"explanation": {
|
|
804
|
+
"type": "string",
|
|
805
|
+
"description": "A brief explanation of what the multi-replace operation will accomplish."
|
|
806
|
+
},
|
|
807
|
+
"replacements": {
|
|
808
|
+
"type": "array",
|
|
809
|
+
"description": "An array of replacement operations to apply sequentially.",
|
|
810
|
+
"items": {
|
|
811
|
+
"type": "object",
|
|
812
|
+
"properties": {
|
|
813
|
+
"explanation": {
|
|
814
|
+
"type": "string",
|
|
815
|
+
"description": "A brief explanation of this specific replacement operation."
|
|
816
|
+
},
|
|
817
|
+
"filePath": {
|
|
818
|
+
"type": "string",
|
|
819
|
+
"description": "An absolute path to the file to edit."
|
|
820
|
+
},
|
|
821
|
+
"oldString": {
|
|
822
|
+
"type": "string",
|
|
823
|
+
"description": "The exact literal text to replace, preferably unescaped. Include at least 3 lines of context BEFORE and AFTER the target text, matching whitespace and indentation precisely. If this string is not the exact literal text or does not match exactly, this replacement will fail."
|
|
824
|
+
},
|
|
825
|
+
"newString": {
|
|
826
|
+
"type": "string",
|
|
827
|
+
"description": "The exact literal text to replace `oldString` with, preferably unescaped. Provide the EXACT text. Ensure the resulting code is correct and idiomatic."
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
"required": [
|
|
831
|
+
"explanation",
|
|
832
|
+
"filePath",
|
|
833
|
+
"oldString",
|
|
834
|
+
"newString"
|
|
835
|
+
]
|
|
836
|
+
},
|
|
837
|
+
"minItems": 1
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
"required": [
|
|
841
|
+
"explanation",
|
|
842
|
+
"replacements"
|
|
843
|
+
]
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"name": "copilot_editNotebook",
|
|
848
|
+
"toolReferenceName": "editNotebook",
|
|
849
|
+
"displayName": "%copilot.tools.editNotebook.name%",
|
|
850
|
+
"modelDescription": "This is a tool for editing an existing Notebook file in the workspace. Generate the \"explanation\" property first.\nThe system is very smart and can understand how to apply your edits to the notebooks.\nWhen updating the content of an existing cell, ensure newCode preserves whitespace and indentation exactly and does NOT include any code markers such as (...existing code...).",
|
|
851
|
+
"tags": [
|
|
852
|
+
"enable_other_tool_copilot_getNotebookSummary"
|
|
853
|
+
],
|
|
854
|
+
"inputSchema": {
|
|
855
|
+
"type": "object",
|
|
856
|
+
"properties": {
|
|
857
|
+
"filePath": {
|
|
858
|
+
"type": "string",
|
|
859
|
+
"description": "An absolute path to the notebook file to edit, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1."
|
|
860
|
+
},
|
|
861
|
+
"cellId": {
|
|
862
|
+
"type": "string",
|
|
863
|
+
"description": "Id of the cell that needs to be deleted or edited. Use the value `TOP`, `BOTTOM` when inserting a cell at the top or bottom of the notebook, else provide the id of the cell after which a new cell is to be inserted. Remember, if a cellId is provided and editType=insert, then a cell will be inserted after the cell with the provided cellId."
|
|
864
|
+
},
|
|
865
|
+
"newCode": {
|
|
866
|
+
"anyOf": [
|
|
867
|
+
{
|
|
868
|
+
"type": "string",
|
|
869
|
+
"description": "The code for the new or existing cell to be edited. Code should not be wrapped within <VSCode.Cell> tags. Do NOT include code markers such as (...existing code...) to indicate existing code."
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"type": "array",
|
|
873
|
+
"items": {
|
|
874
|
+
"type": "string",
|
|
875
|
+
"description": "The code for the new or existing cell to be edited. Code should not be wrapped within <VSCode.Cell> tags"
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
]
|
|
879
|
+
},
|
|
880
|
+
"language": {
|
|
881
|
+
"type": "string",
|
|
882
|
+
"description": "The language of the cell. `markdown`, `python`, `javascript`, `julia`, etc."
|
|
883
|
+
},
|
|
884
|
+
"editType": {
|
|
885
|
+
"type": "string",
|
|
886
|
+
"enum": [
|
|
887
|
+
"insert",
|
|
888
|
+
"delete",
|
|
889
|
+
"edit"
|
|
890
|
+
],
|
|
891
|
+
"description": "The operation peformed on the cell, whether `insert`, `delete` or `edit`.\nUse the `editType` field to specify the operation: `insert` to add a new cell, `edit` to modify an existing cell's content, and `delete` to remove a cell."
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"required": [
|
|
895
|
+
"filePath",
|
|
896
|
+
"editType",
|
|
897
|
+
"cellId"
|
|
898
|
+
]
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"name": "copilot_runNotebookCell",
|
|
903
|
+
"displayName": "%copilot.tools.runNotebookCell.name%",
|
|
904
|
+
"toolReferenceName": "runCell",
|
|
905
|
+
"icon": "$(play)",
|
|
906
|
+
"modelDescription": "This is a tool for running a code cell in a notebook file directly in the notebook editor. The output from the execution will be returned. Code cells should be run as they are added or edited when working through a problem to bring the kernel state up to date and ensure the code executes successfully. Code cells are ready to run and don't require any pre-processing. If asked to run the first cell in a notebook, you should run the first code cell since markdown cells cannot be executed. NOTE: Avoid executing Markdown cells or providing Markdown cell IDs, as Markdown cells cannot be executed.",
|
|
907
|
+
"userDescription": "%copilot.tools.runNotebookCell.description%",
|
|
908
|
+
"tags": [
|
|
909
|
+
"enable_other_tool_copilot_getNotebookSummary"
|
|
910
|
+
],
|
|
911
|
+
"inputSchema": {
|
|
912
|
+
"type": "object",
|
|
913
|
+
"properties": {
|
|
914
|
+
"filePath": {
|
|
915
|
+
"type": "string",
|
|
916
|
+
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
|
|
917
|
+
},
|
|
918
|
+
"reason": {
|
|
919
|
+
"type": "string",
|
|
920
|
+
"description": "An optional explanation of why the cell is being run. This will be shown to the user before the tool is run and is not necessary if it's self-explanatory."
|
|
921
|
+
},
|
|
922
|
+
"cellId": {
|
|
923
|
+
"type": "string",
|
|
924
|
+
"description": "The ID for the code cell to execute. Avoid providing markdown cell IDs as nothing will be executed."
|
|
925
|
+
},
|
|
926
|
+
"continueOnError": {
|
|
927
|
+
"type": "boolean",
|
|
928
|
+
"description": "Whether or not execution should continue for remaining cells if an error is encountered. Default to false unless instructed otherwise."
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
"required": [
|
|
932
|
+
"filePath",
|
|
933
|
+
"cellId"
|
|
934
|
+
]
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"name": "copilot_getNotebookSummary",
|
|
939
|
+
"toolReferenceName": "getNotebookSummary",
|
|
940
|
+
"displayName": "Get the structure of a notebook",
|
|
941
|
+
"modelDescription": "This is a tool returns the list of the Notebook cells along with the id, cell types, line ranges, language, execution information and output mime types for each cell. This is useful to get Cell Ids when executing a notebook or determine what cells have been executed and what order, or what cells have outputs. If required to read contents of a cell use this to determine the line range of a cells, and then use read_file tool to read a specific line range. Requery this tool if the contents of the notebook change.",
|
|
942
|
+
"tags": [],
|
|
943
|
+
"inputSchema": {
|
|
944
|
+
"type": "object",
|
|
945
|
+
"properties": {
|
|
946
|
+
"filePath": {
|
|
947
|
+
"type": "string",
|
|
948
|
+
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"required": [
|
|
952
|
+
"filePath"
|
|
953
|
+
]
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"name": "copilot_readNotebookCellOutput",
|
|
958
|
+
"displayName": "%copilot.tools.getNotebookCellOutput.name%",
|
|
959
|
+
"toolReferenceName": "readNotebookCellOutput",
|
|
960
|
+
"icon": "$(notebook-render-output)",
|
|
961
|
+
"modelDescription": "This tool will retrieve the output for a notebook cell from its most recent execution or restored from disk. The cell may have output even when it has not been run in the current kernel session. This tool has a higher token limit for output length than the runNotebookCell tool.",
|
|
962
|
+
"userDescription": "%copilot.tools.getNotebookCellOutput.description%",
|
|
963
|
+
"when": "userHasOpenedNotebook",
|
|
964
|
+
"tags": [],
|
|
965
|
+
"inputSchema": {
|
|
966
|
+
"type": "object",
|
|
967
|
+
"properties": {
|
|
968
|
+
"filePath": {
|
|
969
|
+
"type": "string",
|
|
970
|
+
"description": "An absolute path to the notebook file with the cell to run, or the URI of a untitled, not yet named, file, such as `untitled:Untitled-1.ipynb"
|
|
971
|
+
},
|
|
972
|
+
"cellId": {
|
|
973
|
+
"type": "string",
|
|
974
|
+
"description": "The ID of the cell for which output should be retrieved."
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
"required": [
|
|
978
|
+
"filePath",
|
|
979
|
+
"cellId"
|
|
980
|
+
]
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"name": "copilot_fetchWebPage",
|
|
985
|
+
"displayName": "%copilot.tools.fetchWebPage.name%",
|
|
986
|
+
"toolReferenceName": "fetch",
|
|
987
|
+
"when": "!isWeb",
|
|
988
|
+
"canBeReferencedInPrompt": true,
|
|
989
|
+
"icon": "$(globe)",
|
|
990
|
+
"userDescription": "%copilot.tools.fetchWebPage.description%",
|
|
991
|
+
"modelDescription": "Fetches the main content from a web page. This tool is useful for summarizing or analyzing the content of a webpage. You should use this tool when you think the user is looking for information from a specific webpage.",
|
|
992
|
+
"tags": [],
|
|
993
|
+
"inputSchema": {
|
|
994
|
+
"type": "object",
|
|
995
|
+
"properties": {
|
|
996
|
+
"urls": {
|
|
997
|
+
"type": "array",
|
|
998
|
+
"items": {
|
|
999
|
+
"type": "string"
|
|
1000
|
+
},
|
|
1001
|
+
"description": "An array of URLs to fetch content from."
|
|
1002
|
+
},
|
|
1003
|
+
"query": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"description": "The query to search for in the web page's content. This should be a clear and concise description of the content you want to find."
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"required": [
|
|
1009
|
+
"urls",
|
|
1010
|
+
"query"
|
|
1011
|
+
]
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"name": "copilot_findTestFiles",
|
|
1016
|
+
"displayName": "%copilot.tools.findTestFiles.name%",
|
|
1017
|
+
"icon": "$(beaker)",
|
|
1018
|
+
"canBeReferencedInPrompt": false,
|
|
1019
|
+
"toolReferenceName": "findTestFiles",
|
|
1020
|
+
"userDescription": "%copilot.tools.findTestFiles.description%",
|
|
1021
|
+
"modelDescription": "For a source code file, find the file that contains the tests. For a test file find the file that contains the code under test.",
|
|
1022
|
+
"tags": [],
|
|
1023
|
+
"inputSchema": {
|
|
1024
|
+
"type": "object",
|
|
1025
|
+
"properties": {
|
|
1026
|
+
"filePaths": {
|
|
1027
|
+
"type": "array",
|
|
1028
|
+
"items": {
|
|
1029
|
+
"type": "string"
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"required": [
|
|
1034
|
+
"filePaths"
|
|
1035
|
+
]
|
|
1036
|
+
}
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"name": "copilot_getDocInfo",
|
|
1040
|
+
"displayName": "%copilot.tools.getDocInfo.name%",
|
|
1041
|
+
"icon": "$(beaker)",
|
|
1042
|
+
"canBeReferencedInPrompt": false,
|
|
1043
|
+
"toolReferenceName": "docInfo",
|
|
1044
|
+
"userDescription": "%copilot.tools.getDocInfo.description%",
|
|
1045
|
+
"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.",
|
|
1046
|
+
"tags": [],
|
|
1047
|
+
"inputSchema": {
|
|
1048
|
+
"type": "object",
|
|
1049
|
+
"properties": {
|
|
1050
|
+
"filePaths": {
|
|
1051
|
+
"type": "array",
|
|
1052
|
+
"items": {
|
|
1053
|
+
"type": "string"
|
|
1054
|
+
},
|
|
1055
|
+
"description": "The file paths for which documentation information is needed."
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
1058
|
+
"required": [
|
|
1059
|
+
"filePaths"
|
|
1060
|
+
]
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
{
|
|
1064
|
+
"name": "copilot_getSearchResults",
|
|
1065
|
+
"toolReferenceName": "searchResults",
|
|
1066
|
+
"displayName": "%github.copilot.tools.searchResults.name%",
|
|
1067
|
+
"icon": "$(search)",
|
|
1068
|
+
"userDescription": "%github.copilot.tools.searchResults.description%",
|
|
1069
|
+
"modelDescription": "The results from the search view"
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"name": "copilot_githubRepo",
|
|
1073
|
+
"toolReferenceName": "githubRepo",
|
|
1074
|
+
"displayName": "%github.copilot.tools.githubRepo.name%",
|
|
1075
|
+
"modelDescription": "Searches a GitHub repository for relevant source code snippets. Only use this tool if the user is very clearly asking for code snippets from a specific GitHub repository. Do not use this tool for Github repos that the user has open in their workspace.",
|
|
1076
|
+
"userDescription": "%github.copilot.tools.githubRepo.userDescription%",
|
|
1077
|
+
"icon": "$(repo)",
|
|
1078
|
+
"canBeReferencedInPrompt": true,
|
|
1079
|
+
"inputSchema": {
|
|
1080
|
+
"type": "object",
|
|
1081
|
+
"properties": {
|
|
1082
|
+
"repo": {
|
|
1083
|
+
"type": "string",
|
|
1084
|
+
"description": "The name of the Github repository to search for code in. Should must be formatted as '<owner>/<repo>'."
|
|
1085
|
+
},
|
|
1086
|
+
"query": {
|
|
1087
|
+
"type": "string",
|
|
1088
|
+
"description": "The query to search for repo. Should contain all relevant context."
|
|
1089
|
+
}
|
|
1090
|
+
},
|
|
1091
|
+
"required": [
|
|
1092
|
+
"repo",
|
|
1093
|
+
"query"
|
|
1094
|
+
]
|
|
1095
|
+
}
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "copilot_toolReplay",
|
|
1099
|
+
"modelDescription": "Replays a tool call from a previous chat session.",
|
|
1100
|
+
"displayName": "tool replay",
|
|
1101
|
+
"when": "false",
|
|
1102
|
+
"inputSchema": {
|
|
1103
|
+
"type": "object",
|
|
1104
|
+
"properties": {
|
|
1105
|
+
"toolCallId": {
|
|
1106
|
+
"type": "string",
|
|
1107
|
+
"description": "the id of the tool original tool call"
|
|
1108
|
+
},
|
|
1109
|
+
"toolName": {
|
|
1110
|
+
"type": "string",
|
|
1111
|
+
"description": "the name of the tool being replayed"
|
|
1112
|
+
},
|
|
1113
|
+
"toolCallArgs": {
|
|
1114
|
+
"type": "object",
|
|
1115
|
+
"description": "the arguments of the tool call"
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
{
|
|
1121
|
+
"name": "copilot_editFiles",
|
|
1122
|
+
"modelDescription": "This is a placeholder tool, do not use",
|
|
1123
|
+
"userDescription": "Edit files",
|
|
1124
|
+
"icon": "$(pencil)",
|
|
1125
|
+
"displayName": "Edit Files",
|
|
1126
|
+
"toolReferenceName": "editFiles"
|
|
1127
|
+
}
|
|
1128
|
+
],
|
|
1129
|
+
"languageModelToolSets": [
|
|
1130
|
+
{
|
|
1131
|
+
"name": "edit",
|
|
1132
|
+
"description": "%copilot.toolSet.editing.description%",
|
|
1133
|
+
"icon": "$(pencil)",
|
|
1134
|
+
"tools": [
|
|
1135
|
+
"createFile",
|
|
1136
|
+
"createDirectory",
|
|
1137
|
+
"editFiles"
|
|
1138
|
+
]
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"name": "notebooks",
|
|
1142
|
+
"description": "%copilot.toolSet.notebooks.description%",
|
|
1143
|
+
"icon": "$(notebook)",
|
|
1144
|
+
"tools": [
|
|
1145
|
+
"newJupyterNotebook",
|
|
1146
|
+
"editNotebook",
|
|
1147
|
+
"runCell",
|
|
1148
|
+
"getNotebookSummary",
|
|
1149
|
+
"readNotebookCellOutput"
|
|
1150
|
+
]
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"name": "search",
|
|
1154
|
+
"description": "%copilot.toolSet.search.description%",
|
|
1155
|
+
"icon": "$(search)",
|
|
1156
|
+
"tools": [
|
|
1157
|
+
"fileSearch",
|
|
1158
|
+
"textSearch",
|
|
1159
|
+
"listDirectory",
|
|
1160
|
+
"readFile",
|
|
1161
|
+
"codebase",
|
|
1162
|
+
"searchResults"
|
|
1163
|
+
]
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"name": "new",
|
|
1167
|
+
"description": "%copilot.toolSet.new.description%",
|
|
1168
|
+
"icon": "$(new-folder)",
|
|
1169
|
+
"tools": [
|
|
1170
|
+
"newWorkspace",
|
|
1171
|
+
"runVscodeCommand",
|
|
1172
|
+
"getProjectSetupInfo",
|
|
1173
|
+
"installExtension"
|
|
1174
|
+
]
|
|
1175
|
+
}
|
|
1176
|
+
],
|
|
1177
|
+
"chatParticipants": [
|
|
1178
|
+
{
|
|
1179
|
+
"id": "github.copilot.default",
|
|
1180
|
+
"name": "GitHubCopilot",
|
|
1181
|
+
"fullName": "GitHub Copilot",
|
|
1182
|
+
"description": "%copilot.description%",
|
|
1183
|
+
"isDefault": true,
|
|
1184
|
+
"locations": [
|
|
1185
|
+
"panel"
|
|
1186
|
+
],
|
|
1187
|
+
"modes": [
|
|
1188
|
+
"ask"
|
|
1189
|
+
],
|
|
1190
|
+
"disambiguation": [
|
|
1191
|
+
{
|
|
1192
|
+
"category": "generate_code_sample",
|
|
1193
|
+
"description": "The user wants to generate code snippets without referencing the contents of the current workspace. This category does not include generating entire projects.",
|
|
1194
|
+
"examples": [
|
|
1195
|
+
"Write an example of computing a SHA256 hash."
|
|
1196
|
+
]
|
|
1197
|
+
},
|
|
1198
|
+
{
|
|
1199
|
+
"category": "add_feature_to_file",
|
|
1200
|
+
"description": "The user wants to change code in a file that is provided in their request, without referencing the contents of the current workspace. This category does not include generating entire projects.",
|
|
1201
|
+
"examples": [
|
|
1202
|
+
"Add a refresh button to the table widget."
|
|
1203
|
+
]
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
"category": "question_about_specific_files",
|
|
1207
|
+
"description": "The user has a question about a specific file or code snippet that they have provided as part of their query, and the question does not require additional workspace context to answer.",
|
|
1208
|
+
"examples": [
|
|
1209
|
+
"What does this file do?"
|
|
1210
|
+
]
|
|
1211
|
+
}
|
|
1212
|
+
]
|
|
1213
|
+
},
|
|
1214
|
+
{
|
|
1215
|
+
"id": "github.copilot.editingSession",
|
|
1216
|
+
"name": "GitHubCopilot",
|
|
1217
|
+
"fullName": "GitHub Copilot",
|
|
1218
|
+
"description": "%copilot.edits.description%",
|
|
1219
|
+
"isDefault": true,
|
|
1220
|
+
"locations": [
|
|
1221
|
+
"panel"
|
|
1222
|
+
],
|
|
1223
|
+
"modes": [
|
|
1224
|
+
"edit"
|
|
1225
|
+
],
|
|
1226
|
+
"when": "!config.chat.edits2.enabled"
|
|
1227
|
+
},
|
|
1228
|
+
{
|
|
1229
|
+
"id": "github.copilot.editingSessionEditor",
|
|
1230
|
+
"name": "GitHubCopilot",
|
|
1231
|
+
"fullName": "GitHub Copilot",
|
|
1232
|
+
"description": "%copilot.edits.description%",
|
|
1233
|
+
"isDefault": true,
|
|
1234
|
+
"when": "config.inlineChat.enableV2 || config.github.copilot.chat.advanced.inlineChat2",
|
|
1235
|
+
"locations": [
|
|
1236
|
+
"editor",
|
|
1237
|
+
"notebook"
|
|
1238
|
+
],
|
|
1239
|
+
"commands": [
|
|
1240
|
+
{
|
|
1241
|
+
"name": "fix",
|
|
1242
|
+
"description": "%copilot.workspace.fix.description%",
|
|
1243
|
+
"when": "config.inlineChat.enableV2 || config.github.copilot.chat.advanced.inlineChat2",
|
|
1244
|
+
"disambiguation": [
|
|
1245
|
+
{
|
|
1246
|
+
"category": "fix",
|
|
1247
|
+
"description": "Propose a fix for the problems in the selected code",
|
|
1248
|
+
"examples": [
|
|
1249
|
+
"There is a problem in this code. Rewrite the code to show it with the bug fixed."
|
|
1250
|
+
]
|
|
1251
|
+
}
|
|
1252
|
+
]
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
"name": "tests",
|
|
1256
|
+
"description": "%copilot.workspace.tests.description%",
|
|
1257
|
+
"when": "config.inlineChat.enableV2 || config.github.copilot.chat.advanced.inlineChat2",
|
|
1258
|
+
"disambiguation": [
|
|
1259
|
+
{
|
|
1260
|
+
"category": "tests",
|
|
1261
|
+
"description": "Help writing tests for the selected code",
|
|
1262
|
+
"examples": [
|
|
1263
|
+
"Help me write tests for the selected code."
|
|
1264
|
+
]
|
|
1265
|
+
}
|
|
1266
|
+
]
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
"name": "doc",
|
|
1270
|
+
"description": "%copilot.workspace.doc.description%",
|
|
1271
|
+
"when": "config.inlineChat.enableV2 || config.github.copilot.chat.advanced.inlineChat2",
|
|
1272
|
+
"disambiguation": [
|
|
1273
|
+
{
|
|
1274
|
+
"category": "doc",
|
|
1275
|
+
"description": "Add documentation comment for this symbol",
|
|
1276
|
+
"examples": [
|
|
1277
|
+
"Add jsdoc to this method"
|
|
1278
|
+
]
|
|
1279
|
+
}
|
|
1280
|
+
]
|
|
1281
|
+
}
|
|
1282
|
+
]
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"id": "github.copilot.editingSession2",
|
|
1286
|
+
"name": "GitHubCopilot",
|
|
1287
|
+
"fullName": "GitHub Copilot",
|
|
1288
|
+
"description": "%copilot.edits.description%",
|
|
1289
|
+
"isDefault": true,
|
|
1290
|
+
"locations": [
|
|
1291
|
+
"panel"
|
|
1292
|
+
],
|
|
1293
|
+
"modes": [
|
|
1294
|
+
"edit"
|
|
1295
|
+
],
|
|
1296
|
+
"when": "config.chat.edits2.enabled"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"id": "github.copilot.editsAgent",
|
|
1300
|
+
"name": "agent",
|
|
1301
|
+
"fullName": "GitHub Copilot",
|
|
1302
|
+
"description": "%copilot.agent.description%",
|
|
1303
|
+
"locations": [
|
|
1304
|
+
"panel"
|
|
1305
|
+
],
|
|
1306
|
+
"modes": [
|
|
1307
|
+
"agent"
|
|
1308
|
+
],
|
|
1309
|
+
"isEngine": true,
|
|
1310
|
+
"isDefault": true,
|
|
1311
|
+
"isAgent": true,
|
|
1312
|
+
"when": "config.chat.agent.enabled",
|
|
1313
|
+
"commands": [
|
|
1314
|
+
{
|
|
1315
|
+
"name": "list"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
"name": "error",
|
|
1319
|
+
"description": "Make a model request which will result in an error",
|
|
1320
|
+
"when": "github.copilot.chat.debug"
|
|
1321
|
+
}
|
|
1322
|
+
]
|
|
1323
|
+
},
|
|
1324
|
+
{
|
|
1325
|
+
"id": "github.copilot.editor",
|
|
1326
|
+
"name": "Copilot",
|
|
1327
|
+
"fullName": "GitHub Copilot",
|
|
1328
|
+
"description": "%copilot.description%",
|
|
1329
|
+
"isDefault": true,
|
|
1330
|
+
"locations": [
|
|
1331
|
+
"editor"
|
|
1332
|
+
],
|
|
1333
|
+
"when": "!config.inlineChat.enableV2 && !config.github.copilot.chat.advanced.inlineChat2",
|
|
1334
|
+
"disambiguation": [
|
|
1335
|
+
{
|
|
1336
|
+
"category": "unknown",
|
|
1337
|
+
"description": "Intent of this command is unclear or is not related to information technologies",
|
|
1338
|
+
"examples": [
|
|
1339
|
+
"Add a dog to this comment."
|
|
1340
|
+
]
|
|
1341
|
+
}
|
|
1342
|
+
],
|
|
1343
|
+
"commands": [
|
|
1344
|
+
{
|
|
1345
|
+
"name": "generate",
|
|
1346
|
+
"description": "%copilot.workspace.generate.description%",
|
|
1347
|
+
"disambiguation": [
|
|
1348
|
+
{
|
|
1349
|
+
"category": "generate",
|
|
1350
|
+
"description": "Generate new code",
|
|
1351
|
+
"examples": [
|
|
1352
|
+
"Add a function that returns the sum of two numbers"
|
|
1353
|
+
]
|
|
1354
|
+
}
|
|
1355
|
+
]
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"name": "edit",
|
|
1359
|
+
"description": "%copilot.workspace.edit.inline.description%",
|
|
1360
|
+
"disambiguation": [
|
|
1361
|
+
{
|
|
1362
|
+
"category": "edit",
|
|
1363
|
+
"description": "Make changes to existing code",
|
|
1364
|
+
"examples": [
|
|
1365
|
+
"Change this method to use async/await"
|
|
1366
|
+
]
|
|
1367
|
+
}
|
|
1368
|
+
]
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"name": "doc",
|
|
1372
|
+
"description": "%copilot.workspace.doc.description%",
|
|
1373
|
+
"disambiguation": [
|
|
1374
|
+
{
|
|
1375
|
+
"category": "doc",
|
|
1376
|
+
"description": "Add documentation comment for this symbol",
|
|
1377
|
+
"examples": [
|
|
1378
|
+
"Add jsdoc to this method"
|
|
1379
|
+
]
|
|
1380
|
+
}
|
|
1381
|
+
]
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"name": "fix",
|
|
1385
|
+
"description": "%copilot.workspace.fix.description%",
|
|
1386
|
+
"disambiguation": [
|
|
1387
|
+
{
|
|
1388
|
+
"category": "fix",
|
|
1389
|
+
"description": "Propose a fix for the problems in the selected code",
|
|
1390
|
+
"examples": [
|
|
1391
|
+
"There is a problem in this code. Rewrite the code to show it with the bug fixed."
|
|
1392
|
+
]
|
|
1393
|
+
}
|
|
1394
|
+
]
|
|
1395
|
+
},
|
|
1396
|
+
{
|
|
1397
|
+
"name": "explain",
|
|
1398
|
+
"description": "%copilot.workspace.explain.description%",
|
|
1399
|
+
"disambiguation": [
|
|
1400
|
+
{
|
|
1401
|
+
"category": "explain",
|
|
1402
|
+
"description": "Explain how the code in your active editor works",
|
|
1403
|
+
"examples": [
|
|
1404
|
+
"Write an explanation for the code above as paragraphs of text."
|
|
1405
|
+
]
|
|
1406
|
+
}
|
|
1407
|
+
]
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
"name": "review",
|
|
1411
|
+
"description": "%copilot.workspace.review.description%",
|
|
1412
|
+
"when": "github.copilot.advanced.review.intent"
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
"name": "tests",
|
|
1416
|
+
"description": "%copilot.workspace.tests.description%",
|
|
1417
|
+
"disambiguation": [
|
|
1418
|
+
{
|
|
1419
|
+
"category": "tests",
|
|
1420
|
+
"description": "Generate unit tests for the selected code. The user does not want to fix their existing tests.",
|
|
1421
|
+
"examples": [
|
|
1422
|
+
"Write a set of detailed unit test functions for the code above."
|
|
1423
|
+
]
|
|
1424
|
+
}
|
|
1425
|
+
]
|
|
1426
|
+
}
|
|
1427
|
+
]
|
|
1428
|
+
},
|
|
1429
|
+
{
|
|
1430
|
+
"id": "github.copilot.notebook",
|
|
1431
|
+
"name": "GitHubCopilot",
|
|
1432
|
+
"fullName": "GitHub Copilot",
|
|
1433
|
+
"description": "%copilot.description%",
|
|
1434
|
+
"isDefault": true,
|
|
1435
|
+
"locations": [
|
|
1436
|
+
"notebook"
|
|
1437
|
+
],
|
|
1438
|
+
"when": "!config.inlineChat.enableV2 && !config.github.copilot.chat.advanced.inlineChat2",
|
|
1439
|
+
"commands": [
|
|
1440
|
+
{
|
|
1441
|
+
"name": "fix",
|
|
1442
|
+
"description": "%copilot.workspace.fix.description%"
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
"name": "explain",
|
|
1446
|
+
"description": "%copilot.workspace.explain.description%"
|
|
1447
|
+
}
|
|
1448
|
+
]
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"id": "github.copilot.notebookEditorAgent",
|
|
1452
|
+
"name": "GitHubCopilot",
|
|
1453
|
+
"fullName": "GitHub Copilot",
|
|
1454
|
+
"description": "%copilot.description%",
|
|
1455
|
+
"isDefault": true,
|
|
1456
|
+
"locations": [
|
|
1457
|
+
"notebook"
|
|
1458
|
+
],
|
|
1459
|
+
"when": "config.inlineChat.enableV2",
|
|
1460
|
+
"commands": [
|
|
1461
|
+
{
|
|
1462
|
+
"name": "fix",
|
|
1463
|
+
"description": "%copilot.workspace.fix.description%"
|
|
1464
|
+
},
|
|
1465
|
+
{
|
|
1466
|
+
"name": "explain",
|
|
1467
|
+
"description": "%copilot.workspace.explain.description%"
|
|
1468
|
+
}
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1471
|
+
{
|
|
1472
|
+
"id": "github.copilot.workspace",
|
|
1473
|
+
"name": "workspace",
|
|
1474
|
+
"fullName": "Workspace",
|
|
1475
|
+
"description": "%copilot.workspace.description%",
|
|
1476
|
+
"when": "!github.copilot.interactiveSession.disabled",
|
|
1477
|
+
"sampleRequest": "%copilot.workspace.sampleRequest%",
|
|
1478
|
+
"locations": [
|
|
1479
|
+
"panel"
|
|
1480
|
+
],
|
|
1481
|
+
"disambiguation": [
|
|
1482
|
+
{
|
|
1483
|
+
"category": "workspace_project_questions",
|
|
1484
|
+
"description": "The user wants to learn about or update the code or files in their current workspace. Questions in this category may be about understanding what the whole workspace does or locating the implementation of some code. This does not include generating or updating tests.",
|
|
1485
|
+
"examples": [
|
|
1486
|
+
"What does this project do?"
|
|
1487
|
+
]
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"category": "find_code_in_workspace",
|
|
1491
|
+
"description": "The user wants to locate the implementation of some functionality in their current workspace.",
|
|
1492
|
+
"examples": [
|
|
1493
|
+
"Where is the tree widget implemented?"
|
|
1494
|
+
]
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"category": "generate_with_workspace_context",
|
|
1498
|
+
"description": "The user wants to generate code based on multiple files in the workspace and did not specify which files to reference.",
|
|
1499
|
+
"examples": [
|
|
1500
|
+
"Create a README for this project."
|
|
1501
|
+
]
|
|
1502
|
+
}
|
|
1503
|
+
],
|
|
1504
|
+
"commands": [
|
|
1505
|
+
{
|
|
1506
|
+
"name": "explain",
|
|
1507
|
+
"description": "%copilot.workspace.explain.description%"
|
|
1508
|
+
},
|
|
1509
|
+
{
|
|
1510
|
+
"name": "review",
|
|
1511
|
+
"description": "%copilot.workspace.review.description%",
|
|
1512
|
+
"when": "github.copilot.advanced.review.intent"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"name": "tests",
|
|
1516
|
+
"description": "%copilot.workspace.tests.description%",
|
|
1517
|
+
"disambiguation": [
|
|
1518
|
+
{
|
|
1519
|
+
"category": "create_tests",
|
|
1520
|
+
"description": "The user wants to generate unit tests.",
|
|
1521
|
+
"examples": [
|
|
1522
|
+
"Generate tests for my selection using pytest."
|
|
1523
|
+
]
|
|
1524
|
+
}
|
|
1525
|
+
]
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"name": "fix",
|
|
1529
|
+
"description": "%copilot.workspace.fix.description%",
|
|
1530
|
+
"sampleRequest": "%copilot.workspace.fix.sampleRequest%"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"name": "new",
|
|
1534
|
+
"description": "%copilot.workspace.new.description%",
|
|
1535
|
+
"sampleRequest": "%copilot.workspace.new.sampleRequest%",
|
|
1536
|
+
"isSticky": true,
|
|
1537
|
+
"disambiguation": [
|
|
1538
|
+
{
|
|
1539
|
+
"category": "create_new_workspace_or_extension",
|
|
1540
|
+
"description": "The user wants to create a complete Visual Studio Code workspace from scratch, such as a new application or a Visual Studio Code extension. Use this category only if the question relates to generating or creating new workspaces in Visual Studio Code. Do not use this category for updating existing code or generating sample code snippets",
|
|
1541
|
+
"examples": [
|
|
1542
|
+
"Scaffold a Node server.",
|
|
1543
|
+
"Create a sample project which uses the fileSystemProvider API.",
|
|
1544
|
+
"react application"
|
|
1545
|
+
]
|
|
1546
|
+
}
|
|
1547
|
+
]
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"name": "newNotebook",
|
|
1551
|
+
"description": "%copilot.workspace.newNotebook.description%",
|
|
1552
|
+
"sampleRequest": "%copilot.workspace.newNotebook.sampleRequest%",
|
|
1553
|
+
"disambiguation": [
|
|
1554
|
+
{
|
|
1555
|
+
"category": "create_jupyter_notebook",
|
|
1556
|
+
"description": "The user wants to create a new Jupyter notebook in Visual Studio Code.",
|
|
1557
|
+
"examples": [
|
|
1558
|
+
"Create a notebook to analyze this CSV file."
|
|
1559
|
+
]
|
|
1560
|
+
}
|
|
1561
|
+
]
|
|
1562
|
+
},
|
|
1563
|
+
{
|
|
1564
|
+
"name": "semanticSearch",
|
|
1565
|
+
"description": "%copilot.workspace.semanticSearch.description%",
|
|
1566
|
+
"sampleRequest": "%copilot.workspace.semanticSearch.sampleRequest%",
|
|
1567
|
+
"when": "config.github.copilot.semanticSearch.enabled"
|
|
1568
|
+
},
|
|
1569
|
+
{
|
|
1570
|
+
"name": "setupTests",
|
|
1571
|
+
"description": "%copilot.vscode.setupTests.description%",
|
|
1572
|
+
"sampleRequest": "%copilot.vscode.setupTests.sampleRequest%",
|
|
1573
|
+
"when": "config.github.copilot.chat.setupTests.enabled",
|
|
1574
|
+
"disambiguation": [
|
|
1575
|
+
{
|
|
1576
|
+
"category": "set_up_tests",
|
|
1577
|
+
"description": "The user wants to configure project test setup, framework, or test runner. The user does not want to fix their existing tests.",
|
|
1578
|
+
"examples": [
|
|
1579
|
+
"Set up tests for this project."
|
|
1580
|
+
]
|
|
1581
|
+
}
|
|
1582
|
+
]
|
|
1583
|
+
}
|
|
1584
|
+
]
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
"id": "github.copilot.vscode",
|
|
1588
|
+
"name": "vscode",
|
|
1589
|
+
"fullName": "VS Code",
|
|
1590
|
+
"description": "%copilot.vscode.description%",
|
|
1591
|
+
"when": "!github.copilot.interactiveSession.disabled",
|
|
1592
|
+
"sampleRequest": "%copilot.vscode.sampleRequest%",
|
|
1593
|
+
"locations": [
|
|
1594
|
+
"panel"
|
|
1595
|
+
],
|
|
1596
|
+
"disambiguation": [
|
|
1597
|
+
{
|
|
1598
|
+
"category": "vscode_configuration_questions",
|
|
1599
|
+
"description": "The user wants to learn about, use, or configure the Visual Studio Code. Use this category if the users question is specifically about commands, settings, keybindings, extensions and other features available in Visual Studio Code. Do not use this category to answer questions about generating code or creating new projects including Visual Studio Code extensions.",
|
|
1600
|
+
"examples": [
|
|
1601
|
+
"Switch to light mode.",
|
|
1602
|
+
"Keyboard shortcut to toggle terminal visibility.",
|
|
1603
|
+
"Settings to enable minimap.",
|
|
1604
|
+
"Whats new in the latest release?"
|
|
1605
|
+
]
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
"category": "configure_python_environment",
|
|
1609
|
+
"description": "The user wants to set up their Python environment.",
|
|
1610
|
+
"examples": [
|
|
1611
|
+
"Create a virtual environment for my project."
|
|
1612
|
+
]
|
|
1613
|
+
}
|
|
1614
|
+
],
|
|
1615
|
+
"commands": [
|
|
1616
|
+
{
|
|
1617
|
+
"name": "search",
|
|
1618
|
+
"description": "%copilot.vscode.search.description%",
|
|
1619
|
+
"sampleRequest": "%copilot.vscode.search.sampleRequest%"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"name": "startDebugging",
|
|
1623
|
+
"description": "%copilot.vscode.startDebugging.description%",
|
|
1624
|
+
"sampleRequest": "%copilot.vscode.startDebugging.sampleRequest%",
|
|
1625
|
+
"when": "config.github.copilot.chat.startDebugging.enabled"
|
|
1626
|
+
}
|
|
1627
|
+
]
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
"id": "github.copilot.terminal",
|
|
1631
|
+
"name": "terminal",
|
|
1632
|
+
"fullName": "Terminal",
|
|
1633
|
+
"description": "%copilot.terminal.description%",
|
|
1634
|
+
"when": "!github.copilot.interactiveSession.disabled",
|
|
1635
|
+
"sampleRequest": "%copilot.terminal.sampleRequest%",
|
|
1636
|
+
"isDefault": true,
|
|
1637
|
+
"locations": [
|
|
1638
|
+
"terminal"
|
|
1639
|
+
],
|
|
1640
|
+
"commands": [
|
|
1641
|
+
{
|
|
1642
|
+
"name": "explain",
|
|
1643
|
+
"description": "%copilot.terminal.explain.description%",
|
|
1644
|
+
"sampleRequest": "%copilot.terminal.explain.sampleRequest%"
|
|
1645
|
+
}
|
|
1646
|
+
]
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"id": "github.copilot.terminalPanel",
|
|
1650
|
+
"name": "terminal",
|
|
1651
|
+
"fullName": "Terminal",
|
|
1652
|
+
"description": "%copilot.terminalPanel.description%",
|
|
1653
|
+
"when": "!github.copilot.interactiveSession.disabled",
|
|
1654
|
+
"sampleRequest": "%copilot.terminal.sampleRequest%",
|
|
1655
|
+
"locations": [
|
|
1656
|
+
"panel"
|
|
1657
|
+
],
|
|
1658
|
+
"commands": [
|
|
1659
|
+
{
|
|
1660
|
+
"name": "explain",
|
|
1661
|
+
"description": "%copilot.terminal.explain.description%",
|
|
1662
|
+
"sampleRequest": "%copilot.terminal.explain.sampleRequest%",
|
|
1663
|
+
"disambiguation": [
|
|
1664
|
+
{
|
|
1665
|
+
"category": "terminal_state_questions",
|
|
1666
|
+
"description": "The user wants to learn about specific state such as the selection, command, or failed command in the integrated terminal in Visual Studio Code.",
|
|
1667
|
+
"examples": [
|
|
1668
|
+
"Why did the latest terminal command fail?"
|
|
1669
|
+
]
|
|
1670
|
+
}
|
|
1671
|
+
]
|
|
1672
|
+
}
|
|
1673
|
+
]
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"id": "github.copilot.chatReplay",
|
|
1677
|
+
"name": "chatReplay",
|
|
1678
|
+
"fullName": "Chat Replay",
|
|
1679
|
+
"when": "debugType == 'vscode-chat-replay'",
|
|
1680
|
+
"locations": [
|
|
1681
|
+
"panel"
|
|
1682
|
+
]
|
|
1683
|
+
}
|
|
1684
|
+
],
|
|
1685
|
+
"languageModelChatProviders": [
|
|
1686
|
+
{
|
|
1687
|
+
"vendor": "copilot",
|
|
1688
|
+
"displayName": "Copilot"
|
|
1689
|
+
},
|
|
1690
|
+
{
|
|
1691
|
+
"vendor": "azure",
|
|
1692
|
+
"displayName": "Azure",
|
|
1693
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1694
|
+
},
|
|
1695
|
+
{
|
|
1696
|
+
"vendor": "anthropic",
|
|
1697
|
+
"displayName": "Anthropic",
|
|
1698
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"vendor": "xai",
|
|
1702
|
+
"displayName": "xAI",
|
|
1703
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
"vendor": "ollama",
|
|
1707
|
+
"displayName": "Ollama"
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"vendor": "openai",
|
|
1711
|
+
"displayName": "OpenAI",
|
|
1712
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
"vendor": "gemini",
|
|
1716
|
+
"displayName": "Google",
|
|
1717
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"vendor": "groq",
|
|
1721
|
+
"displayName": "Groq",
|
|
1722
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
"vendor": "openrouter",
|
|
1726
|
+
"displayName": "OpenRouter",
|
|
1727
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"vendor": "customoai",
|
|
1731
|
+
"displayName": "OpenAI Compatible",
|
|
1732
|
+
"managementCommand": "github.copilot.chat.manageBYOK"
|
|
1733
|
+
}
|
|
1734
|
+
],
|
|
1735
|
+
"interactiveSession": [
|
|
1736
|
+
{
|
|
1737
|
+
"label": "GitHub Copilot",
|
|
1738
|
+
"id": "copilot",
|
|
1739
|
+
"icon": "",
|
|
1740
|
+
"when": "!github.copilot.interactiveSession.disabled"
|
|
1741
|
+
}
|
|
1742
|
+
],
|
|
1743
|
+
"viewsWelcome": [
|
|
1744
|
+
{
|
|
1745
|
+
"view": "debug",
|
|
1746
|
+
"when": "github.copilot-chat.activated",
|
|
1747
|
+
"contents": "%github.copilot.viewsWelcome.debug%"
|
|
1748
|
+
}
|
|
1749
|
+
],
|
|
1750
|
+
"chatViewsWelcome": [
|
|
1751
|
+
{
|
|
1752
|
+
"icon": "$(copilot-large)",
|
|
1753
|
+
"title": "Ask Copilot",
|
|
1754
|
+
"content": "%github.copilot.viewsWelcome.signIn%",
|
|
1755
|
+
"when": "!github.copilot-chat.activated && !github.copilot.offline && !github.copilot.interactiveSession.individual.expired && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport && !github.copilot.interactiveSession.chatDisabled && !github.copilot.interactiveSession.switchToReleaseChannel"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
"icon": "$(copilot-large)",
|
|
1759
|
+
"title": "Ask Copilot",
|
|
1760
|
+
"content": "%github.copilot.viewsWelcome.individual.expired%",
|
|
1761
|
+
"when": "github.copilot.interactiveSession.individual.expired"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"icon": "$(copilot-large)",
|
|
1765
|
+
"title": "Ask Copilot",
|
|
1766
|
+
"content": "%github.copilot.viewsWelcome.enterprise%",
|
|
1767
|
+
"when": "github.copilot.interactiveSession.enterprise.disabled"
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"icon": "$(copilot-large)",
|
|
1771
|
+
"title": "Ask Copilot",
|
|
1772
|
+
"content": "%github.copilot.viewsWelcome.offline%",
|
|
1773
|
+
"when": "github.copilot.offline"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"icon": "$(copilot-large)",
|
|
1777
|
+
"title": "Ask Copilot",
|
|
1778
|
+
"content": "%github.copilot.viewsWelcome.contactSupport%",
|
|
1779
|
+
"when": "github.copilot.interactiveSession.contactSupport"
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"icon": "$(copilot-large)",
|
|
1783
|
+
"title": "Ask Copilot",
|
|
1784
|
+
"content": "%github.copilot.viewsWelcome.chatDisabled%",
|
|
1785
|
+
"when": "github.copilot.interactiveSession.chatDisabled"
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
"icon": "$(copilot-large)",
|
|
1789
|
+
"title": "Ask Copilot",
|
|
1790
|
+
"content": "%github.copilot.viewsWelcome.switchToReleaseChannel%",
|
|
1791
|
+
"when": "github.copilot.interactiveSession.switchToReleaseChannel"
|
|
1792
|
+
}
|
|
1793
|
+
],
|
|
1794
|
+
"commands": [
|
|
1795
|
+
{
|
|
1796
|
+
"command": "github.copilot.chat.replay",
|
|
1797
|
+
"title": "Start Chat Replay",
|
|
1798
|
+
"icon": "$(debug-line-by-line)"
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
"command": "github.copilot.chat.replay.enableWorkspaceEditTracing",
|
|
1802
|
+
"title": "%github.copilot.command.enableEditTracing%",
|
|
1803
|
+
"category": "Developer",
|
|
1804
|
+
"enablement": "!github.copilot.chat.replay.workspaceEditTracing"
|
|
1805
|
+
},
|
|
1806
|
+
{
|
|
1807
|
+
"command": "github.copilot.chat.replay.disableWorkspaceEditTracing",
|
|
1808
|
+
"title": "%github.copilot.command.disableEditTracing%",
|
|
1809
|
+
"category": "Developer",
|
|
1810
|
+
"enablement": "github.copilot.chat.replay.workspaceEditTracing"
|
|
1811
|
+
},
|
|
1812
|
+
{
|
|
1813
|
+
"command": "github.copilot.chat.explain",
|
|
1814
|
+
"title": "%github.copilot.command.explainThis%",
|
|
1815
|
+
"enablement": "!github.copilot.interactiveSession.disabled",
|
|
1816
|
+
"category": "GitHub Copilot"
|
|
1817
|
+
},
|
|
1818
|
+
{
|
|
1819
|
+
"command": "github.copilot.chat.explain.palette",
|
|
1820
|
+
"title": "%github.copilot.command.explainThis%",
|
|
1821
|
+
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
1822
|
+
"category": "GitHub Copilot"
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"command": "github.copilot.chat.review",
|
|
1826
|
+
"title": "%github.copilot.command.reviewAndComment%",
|
|
1827
|
+
"enablement": "github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled",
|
|
1828
|
+
"category": "GitHub Copilot"
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"command": "github.copilot.chat.review.apply",
|
|
1832
|
+
"title": "%github.copilot.command.applyReviewSuggestion%",
|
|
1833
|
+
"icon": "$(sparkle)",
|
|
1834
|
+
"enablement": "commentThread =~ /hasSuggestion/",
|
|
1835
|
+
"category": "GitHub Copilot"
|
|
1836
|
+
},
|
|
1837
|
+
{
|
|
1838
|
+
"command": "github.copilot.chat.review.applyAndNext",
|
|
1839
|
+
"title": "%github.copilot.command.applyReviewSuggestionAndNext%",
|
|
1840
|
+
"icon": "$(sparkle)",
|
|
1841
|
+
"enablement": "commentThread =~ /hasSuggestion/",
|
|
1842
|
+
"category": "GitHub Copilot"
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"command": "github.copilot.chat.review.discard",
|
|
1846
|
+
"title": "%github.copilot.command.discardReviewSuggestion%",
|
|
1847
|
+
"icon": "$(close)",
|
|
1848
|
+
"category": "GitHub Copilot"
|
|
1849
|
+
},
|
|
1850
|
+
{
|
|
1851
|
+
"command": "github.copilot.chat.review.discardAndNext",
|
|
1852
|
+
"title": "%github.copilot.command.discardReviewSuggestionAndNext%",
|
|
1853
|
+
"icon": "$(close)",
|
|
1854
|
+
"category": "GitHub Copilot"
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
"command": "github.copilot.chat.review.discardAll",
|
|
1858
|
+
"title": "%github.copilot.command.discardAllReviewSuggestion%",
|
|
1859
|
+
"icon": "$(close-all)",
|
|
1860
|
+
"category": "GitHub Copilot"
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"command": "github.copilot.chat.review.stagedChanges",
|
|
1864
|
+
"title": "%github.copilot.command.reviewStagedChanges%",
|
|
1865
|
+
"icon": "$(code-review)",
|
|
1866
|
+
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
1867
|
+
"category": "GitHub Copilot"
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"command": "github.copilot.chat.review.unstagedChanges",
|
|
1871
|
+
"title": "%github.copilot.command.reviewUnstagedChanges%",
|
|
1872
|
+
"icon": "$(code-review)",
|
|
1873
|
+
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
1874
|
+
"category": "GitHub Copilot"
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
"command": "github.copilot.chat.review.changes",
|
|
1878
|
+
"title": "%github.copilot.command.reviewChanges%",
|
|
1879
|
+
"icon": "$(code-review)",
|
|
1880
|
+
"enablement": "github.copilot.chat.reviewDiff.enabled && !github.copilot.interactiveSession.disabled",
|
|
1881
|
+
"category": "GitHub Copilot"
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"command": "github.copilot.chat.review.changes.cancel",
|
|
1885
|
+
"title": "%github.copilot.command.reviewChanges.cancel%",
|
|
1886
|
+
"icon": "$(stop-circle)",
|
|
1887
|
+
"category": "GitHub Copilot"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"command": "github.copilot.chat.review.previous",
|
|
1891
|
+
"title": "%github.copilot.command.gotoPreviousReviewSuggestion%",
|
|
1892
|
+
"icon": "$(arrow-up)",
|
|
1893
|
+
"category": "GitHub Copilot"
|
|
1894
|
+
},
|
|
1895
|
+
{
|
|
1896
|
+
"command": "github.copilot.chat.review.next",
|
|
1897
|
+
"title": "%github.copilot.command.gotoNextReviewSuggestion%",
|
|
1898
|
+
"icon": "$(arrow-down)",
|
|
1899
|
+
"category": "GitHub Copilot"
|
|
1900
|
+
},
|
|
1901
|
+
{
|
|
1902
|
+
"command": "github.copilot.chat.review.continueInInlineChat",
|
|
1903
|
+
"title": "%github.copilot.command.continueReviewInInlineChat%",
|
|
1904
|
+
"icon": "$(comment-discussion)",
|
|
1905
|
+
"category": "GitHub Copilot"
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"command": "github.copilot.chat.review.continueInChat",
|
|
1909
|
+
"title": "%github.copilot.command.continueReviewInChat%",
|
|
1910
|
+
"icon": "$(comment-discussion)",
|
|
1911
|
+
"category": "GitHub Copilot"
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
"command": "github.copilot.chat.review.markHelpful",
|
|
1915
|
+
"title": "%github.copilot.command.helpfulReviewSuggestion%",
|
|
1916
|
+
"icon": "$(thumbsup)",
|
|
1917
|
+
"enablement": "!(commentThread =~ /markedAsHelpful/)",
|
|
1918
|
+
"category": "GitHub Copilot"
|
|
1919
|
+
},
|
|
1920
|
+
{
|
|
1921
|
+
"command": "github.copilot.chat.openUserPreferences",
|
|
1922
|
+
"title": "%github.copilot.command.openUserPreferences%",
|
|
1923
|
+
"category": "GitHub Copilot",
|
|
1924
|
+
"enablement": "config.github.copilot.chat.enableUserPreferences"
|
|
1925
|
+
},
|
|
1926
|
+
{
|
|
1927
|
+
"command": "github.copilot.chat.review.markUnhelpful",
|
|
1928
|
+
"title": "%github.copilot.command.unhelpfulReviewSuggestion%",
|
|
1929
|
+
"icon": "$(thumbsdown)",
|
|
1930
|
+
"enablement": "!(commentThread =~ /markedAsUnhelpful/)",
|
|
1931
|
+
"category": "GitHub Copilot"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
"command": "github.copilot.chat.generate",
|
|
1935
|
+
"title": "%github.copilot.command.generateThis%",
|
|
1936
|
+
"icon": "$(sparkle)",
|
|
1937
|
+
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
1938
|
+
"category": "GitHub Copilot"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"command": "github.copilot.chat.generateDocs",
|
|
1942
|
+
"title": "%github.copilot.command.generateDocs%",
|
|
1943
|
+
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
1944
|
+
"category": "GitHub Copilot"
|
|
1945
|
+
},
|
|
1946
|
+
{
|
|
1947
|
+
"command": "github.copilot.chat.generateTests",
|
|
1948
|
+
"title": "%github.copilot.command.generateTests%",
|
|
1949
|
+
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
1950
|
+
"category": "GitHub Copilot"
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"command": "github.copilot.chat.fix",
|
|
1954
|
+
"title": "%github.copilot.command.fixThis%",
|
|
1955
|
+
"enablement": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
1956
|
+
"category": "GitHub Copilot"
|
|
1957
|
+
},
|
|
1958
|
+
{
|
|
1959
|
+
"command": "github.copilot.interactiveSession.feedback",
|
|
1960
|
+
"title": "%github.copilot.command.sendChatFeedback%",
|
|
1961
|
+
"enablement": "github.copilot-chat.activated && !github.copilot.interactiveSession.disabled",
|
|
1962
|
+
"icon": "$(feedback)",
|
|
1963
|
+
"category": "GitHub Copilot"
|
|
1964
|
+
},
|
|
1965
|
+
{
|
|
1966
|
+
"command": "github.copilot.debug.workbenchState",
|
|
1967
|
+
"title": "%github.copilot.command.logWorkbenchState%",
|
|
1968
|
+
"category": "Developer"
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"command": "github.copilot.debug.showChatLogView",
|
|
1972
|
+
"title": "%github.copilot.command.showChatLogView%",
|
|
1973
|
+
"category": "Developer"
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"command": "github.copilot.debug.showContextInspectorView",
|
|
1977
|
+
"title": "%github.copilot.command.showContextInspectorView%",
|
|
1978
|
+
"icon": "$(inspect)",
|
|
1979
|
+
"category": "Developer"
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
"command": "github.copilot.debug.resetVirtualToolGroups",
|
|
1983
|
+
"title": "%github.copilot.command.resetVirtualToolGroups%",
|
|
1984
|
+
"icon": "$(inspect)",
|
|
1985
|
+
"category": "Developer"
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"command": "github.copilot.terminal.explainTerminalLastCommand",
|
|
1989
|
+
"title": "%github.copilot.command.explainTerminalLastCommand%",
|
|
1990
|
+
"category": "GitHub Copilot"
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
"command": "github.copilot.git.generateCommitMessage",
|
|
1994
|
+
"title": "%github.copilot.git.generateCommitMessage%",
|
|
1995
|
+
"icon": "$(sparkle)",
|
|
1996
|
+
"enablement": "!github.copilot.interactiveSession.disabled",
|
|
1997
|
+
"category": "GitHub Copilot"
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
"command": "github.copilot.devcontainer.generateDevContainerConfig",
|
|
2001
|
+
"title": "%github.copilot.devcontainer.generateDevContainerConfig%",
|
|
2002
|
+
"category": "GitHub Copilot"
|
|
2003
|
+
},
|
|
2004
|
+
{
|
|
2005
|
+
"command": "github.copilot.tests.fixTestFailure",
|
|
2006
|
+
"icon": "$(sparkle)",
|
|
2007
|
+
"title": "%github.copilot.command.fixTestFailure%",
|
|
2008
|
+
"category": "GitHub Copilot"
|
|
2009
|
+
},
|
|
2010
|
+
{
|
|
2011
|
+
"command": "github.copilot.tests.fixTestFailure.fromInline",
|
|
2012
|
+
"icon": "$(sparkle)",
|
|
2013
|
+
"title": "%github.copilot.command.fixTestFailure%"
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"command": "github.copilot.chat.attachSelection",
|
|
2017
|
+
"title": "%github.copilot.chat.attachSelection%",
|
|
2018
|
+
"icon": "$(comment-discussion)",
|
|
2019
|
+
"category": "GitHub Copilot"
|
|
2020
|
+
},
|
|
2021
|
+
{
|
|
2022
|
+
"command": "github.copilot.debug.collectDiagnostics",
|
|
2023
|
+
"title": "%github.copilot.command.collectDiagnostics%",
|
|
2024
|
+
"category": "Developer"
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
"command": "github.copilot.debug.inlineEdit.clearCache",
|
|
2028
|
+
"title": "%github.copilot.command.inlineEdit.clearCache%",
|
|
2029
|
+
"category": "Developer"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
"command": "github.copilot.debug.inlineEdit.reportNotebookNESIssue",
|
|
2033
|
+
"title": "%github.copilot.command.inlineEdit.reportNotebookNESIssue%",
|
|
2034
|
+
"enablement": "config.github.copilot.chat.advanced.notebook.alternativeNESFormat.enabled || github.copilot.chat.enableEnhancedNotebookNES",
|
|
2035
|
+
"category": "GitHub Copilot Developer"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"command": "github.copilot.debug.generateSTest",
|
|
2039
|
+
"title": "%github.copilot.command.generateSTest%",
|
|
2040
|
+
"enablement": "github.copilot.debugReportFeedback",
|
|
2041
|
+
"category": "GitHub Copilot Developer"
|
|
2042
|
+
},
|
|
2043
|
+
{
|
|
2044
|
+
"command": "github.copilot.debug.generateConfiguration",
|
|
2045
|
+
"title": "%github.copilot.command.generateConfiguration%",
|
|
2046
|
+
"category": "GitHub Copilot",
|
|
2047
|
+
"enablement": "config.github.copilot.chat.startDebugging.enabled",
|
|
2048
|
+
"tags": [
|
|
2049
|
+
"experimental"
|
|
2050
|
+
]
|
|
2051
|
+
},
|
|
2052
|
+
{
|
|
2053
|
+
"command": "github.copilot.open.walkthrough",
|
|
2054
|
+
"title": "%github.copilot.command.openWalkthrough%",
|
|
2055
|
+
"category": "GitHub Copilot"
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"command": "github.copilot.debug.generateInlineEditTests",
|
|
2059
|
+
"title": "Generate Inline Edit Tests",
|
|
2060
|
+
"category": "GitHub Copilot",
|
|
2061
|
+
"enablement": "resourceScheme == 'ccreq'"
|
|
2062
|
+
},
|
|
2063
|
+
{
|
|
2064
|
+
"command": "github.copilot.buildLocalWorkspaceIndex",
|
|
2065
|
+
"title": "%github.copilot.command.buildLocalWorkspaceIndex%",
|
|
2066
|
+
"category": "GitHub Copilot",
|
|
2067
|
+
"enablement": "github.copilot-chat.activated"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"command": "github.copilot.buildRemoteWorkspaceIndex",
|
|
2071
|
+
"title": "%github.copilot.command.buildRemoteWorkspaceIndex%",
|
|
2072
|
+
"category": "GitHub Copilot",
|
|
2073
|
+
"enablement": "github.copilot-chat.activated"
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"command": "github.copilot.report",
|
|
2077
|
+
"title": "Report Issue",
|
|
2078
|
+
"category": "GitHub Copilot"
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"command": "github.copilot.chat.rerunWithCopilotDebug",
|
|
2082
|
+
"title": "%github.copilot.command.rerunWithCopilotDebug%",
|
|
2083
|
+
"category": "GitHub Copilot"
|
|
2084
|
+
},
|
|
2085
|
+
{
|
|
2086
|
+
"command": "github.copilot.chat.startCopilotDebugCommand",
|
|
2087
|
+
"title": "Start Copilot Debug"
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"command": "github.copilot.chat.clearTemporalContext",
|
|
2091
|
+
"title": "Clear Temporal Context",
|
|
2092
|
+
"category": "GitHub Copilot (Developer)"
|
|
2093
|
+
},
|
|
2094
|
+
{
|
|
2095
|
+
"command": "github.copilot.search.markHelpful",
|
|
2096
|
+
"title": "Helpful",
|
|
2097
|
+
"icon": "$(thumbsup)",
|
|
2098
|
+
"enablement": "!github.copilot.search.feedback.sent"
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"command": "github.copilot.search.markUnhelpful",
|
|
2102
|
+
"title": "Unhelpful",
|
|
2103
|
+
"icon": "$(thumbsdown)",
|
|
2104
|
+
"enablement": "!github.copilot.search.feedback.sent"
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"command": "github.copilot.search.feedback",
|
|
2108
|
+
"title": "Feedback",
|
|
2109
|
+
"icon": "$(feedback)",
|
|
2110
|
+
"enablement": "!github.copilot.search.feedback.sent"
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"command": "github.copilot.chat.debug.showElements",
|
|
2114
|
+
"title": "Show Rendered Elements"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
"command": "github.copilot.chat.debug.hideElements",
|
|
2118
|
+
"title": "Hide Rendered Elements"
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
"command": "github.copilot.chat.debug.showTools",
|
|
2122
|
+
"title": "Show Tools"
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"command": "github.copilot.chat.debug.hideTools",
|
|
2126
|
+
"title": "Hide Tools"
|
|
2127
|
+
},
|
|
2128
|
+
{
|
|
2129
|
+
"command": "github.copilot.chat.debug.showNesRequests",
|
|
2130
|
+
"title": "Show NES Requests"
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
"command": "github.copilot.chat.debug.hideNesRequests",
|
|
2134
|
+
"title": "Hide NES Requests"
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
"command": "github.copilot.chat.debug.exportLogItem",
|
|
2138
|
+
"title": "Export as...",
|
|
2139
|
+
"icon": "$(export)"
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"command": "github.copilot.chat.debug.exportPromptArchive",
|
|
2143
|
+
"title": "Export All as Archive...",
|
|
2144
|
+
"icon": "$(archive)"
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
|
|
2148
|
+
"title": "Export All as JSON...",
|
|
2149
|
+
"icon": "$(export)"
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
|
|
2153
|
+
"title": "Export All Prompt Logs as JSON...",
|
|
2154
|
+
"icon": "$(export)"
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
"command": "github.copilot.debug.collectWorkspaceIndexDiagnostics",
|
|
2158
|
+
"title": "%github.copilot.command.collectWorkspaceIndexDiagnostics%",
|
|
2159
|
+
"category": "Developer"
|
|
2160
|
+
},
|
|
2161
|
+
{
|
|
2162
|
+
"command": "github.copilot.chat.mcp.setup.check",
|
|
2163
|
+
"title": "MCP Check: is supported"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"command": "github.copilot.chat.mcp.setup.validatePackage",
|
|
2167
|
+
"title": "MCP Check: validate package"
|
|
2168
|
+
},
|
|
2169
|
+
{
|
|
2170
|
+
"command": "github.copilot.chat.mcp.setup.flow",
|
|
2171
|
+
"title": "MCP Check: do prompts"
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"command": "github.copilot.chat.generateAltText",
|
|
2175
|
+
"title": "Generate/Refine Alt Text"
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
|
|
2179
|
+
"title": "Enable Follow Cell Execution from Chat",
|
|
2180
|
+
"shortTitle": "Follow",
|
|
2181
|
+
"icon": "$(pinned)"
|
|
2182
|
+
},
|
|
2183
|
+
{
|
|
2184
|
+
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
|
|
2185
|
+
"title": "Disable Follow Cell Execution from Chat",
|
|
2186
|
+
"shortTitle": "Unfollow",
|
|
2187
|
+
"icon": "$(pinned-dirty)"
|
|
2188
|
+
},
|
|
2189
|
+
{
|
|
2190
|
+
"command": "github.copilot.chat.manageBYOK",
|
|
2191
|
+
"title": "Manage Bring Your Own Key Vendor",
|
|
2192
|
+
"enablement": "false"
|
|
2193
|
+
},
|
|
2194
|
+
{
|
|
2195
|
+
"command": "github.copilot.chat.configureCustomOAIModels",
|
|
2196
|
+
"title": "Configure Custom OpenAI-Compatible Models",
|
|
2197
|
+
"category": "GitHub Copilot"
|
|
2198
|
+
}
|
|
2199
|
+
],
|
|
2200
|
+
"configuration": [
|
|
2201
|
+
{
|
|
2202
|
+
"title": "GitHub Copilot Chat",
|
|
2203
|
+
"id": "stable",
|
|
2204
|
+
"properties": {
|
|
2205
|
+
"github.copilot.chat.codeGeneration.useInstructionFiles": {
|
|
2206
|
+
"type": "boolean",
|
|
2207
|
+
"default": true,
|
|
2208
|
+
"markdownDescription": "%github.copilot.config.codeGeneration.useInstructionFiles%"
|
|
2209
|
+
},
|
|
2210
|
+
"github.copilot.editor.enableCodeActions": {
|
|
2211
|
+
"type": "boolean",
|
|
2212
|
+
"default": true,
|
|
2213
|
+
"description": "%github.copilot.config.enableCodeActions%"
|
|
2214
|
+
},
|
|
2215
|
+
"github.copilot.renameSuggestions.triggerAutomatically": {
|
|
2216
|
+
"type": "boolean",
|
|
2217
|
+
"default": true,
|
|
2218
|
+
"description": "%github.copilot.config.renameSuggestions.triggerAutomatically%"
|
|
2219
|
+
},
|
|
2220
|
+
"github.copilot.chat.localeOverride": {
|
|
2221
|
+
"type": "string",
|
|
2222
|
+
"enum": [
|
|
2223
|
+
"auto",
|
|
2224
|
+
"en",
|
|
2225
|
+
"fr",
|
|
2226
|
+
"it",
|
|
2227
|
+
"de",
|
|
2228
|
+
"es",
|
|
2229
|
+
"ru",
|
|
2230
|
+
"zh-CN",
|
|
2231
|
+
"zh-TW",
|
|
2232
|
+
"ja",
|
|
2233
|
+
"ko",
|
|
2234
|
+
"cs",
|
|
2235
|
+
"pt-br",
|
|
2236
|
+
"tr",
|
|
2237
|
+
"pl"
|
|
2238
|
+
],
|
|
2239
|
+
"enumDescriptions": [
|
|
2240
|
+
"Use VS Code's configured display language",
|
|
2241
|
+
"English",
|
|
2242
|
+
"français",
|
|
2243
|
+
"italiano",
|
|
2244
|
+
"Deutsch",
|
|
2245
|
+
"español",
|
|
2246
|
+
"русский",
|
|
2247
|
+
"中文(简体)",
|
|
2248
|
+
"中文(繁體)",
|
|
2249
|
+
"日本語",
|
|
2250
|
+
"한국어",
|
|
2251
|
+
"čeština",
|
|
2252
|
+
"português",
|
|
2253
|
+
"Türkçe",
|
|
2254
|
+
"polski"
|
|
2255
|
+
],
|
|
2256
|
+
"default": "auto",
|
|
2257
|
+
"markdownDescription": "%github.copilot.config.localeOverride%"
|
|
2258
|
+
},
|
|
2259
|
+
"github.copilot.chat.terminalChatLocation": {
|
|
2260
|
+
"type": "string",
|
|
2261
|
+
"default": "chatView",
|
|
2262
|
+
"markdownDescription": "%github.copilot.config.terminalChatLocation%",
|
|
2263
|
+
"markdownEnumDescriptions": [
|
|
2264
|
+
"%github.copilot.config.terminalChatLocation.chatView%",
|
|
2265
|
+
"%github.copilot.config.terminalChatLocation.quickChat%",
|
|
2266
|
+
"%github.copilot.config.terminalChatLocation.terminal%"
|
|
2267
|
+
],
|
|
2268
|
+
"enum": [
|
|
2269
|
+
"chatView",
|
|
2270
|
+
"quickChat",
|
|
2271
|
+
"terminal"
|
|
2272
|
+
]
|
|
2273
|
+
},
|
|
2274
|
+
"github.copilot.chat.scopeSelection": {
|
|
2275
|
+
"type": "boolean",
|
|
2276
|
+
"default": false,
|
|
2277
|
+
"markdownDescription": "%github.copilot.config.scopeSelection%"
|
|
2278
|
+
},
|
|
2279
|
+
"github.copilot.chat.useProjectTemplates": {
|
|
2280
|
+
"type": "boolean",
|
|
2281
|
+
"default": true,
|
|
2282
|
+
"markdownDescription": "%github.copilot.config.useProjectTemplates%"
|
|
2283
|
+
},
|
|
2284
|
+
"github.copilot.nextEditSuggestions.enabled": {
|
|
2285
|
+
"type": "boolean",
|
|
2286
|
+
"default": false,
|
|
2287
|
+
"tags": [
|
|
2288
|
+
"nextEditSuggestions",
|
|
2289
|
+
"onExp"
|
|
2290
|
+
],
|
|
2291
|
+
"markdownDescription": "%github.copilot.nextEditSuggestions.enabled%",
|
|
2292
|
+
"scope": "language-overridable"
|
|
2293
|
+
},
|
|
2294
|
+
"github.copilot.nextEditSuggestions.fixes": {
|
|
2295
|
+
"type": "boolean",
|
|
2296
|
+
"default": true,
|
|
2297
|
+
"tags": [
|
|
2298
|
+
"nextEditSuggestions",
|
|
2299
|
+
"onExp"
|
|
2300
|
+
],
|
|
2301
|
+
"markdownDescription": "%github.copilot.nextEditSuggestions.fixes%",
|
|
2302
|
+
"scope": "language-overridable"
|
|
2303
|
+
},
|
|
2304
|
+
"github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges": {
|
|
2305
|
+
"type": "boolean",
|
|
2306
|
+
"default": true,
|
|
2307
|
+
"tags": [
|
|
2308
|
+
"nextEditSuggestions",
|
|
2309
|
+
"onExp"
|
|
2310
|
+
],
|
|
2311
|
+
"markdownDescription": "%github.copilot.nextEditSuggestions.allowWhitespaceOnlyChanges%",
|
|
2312
|
+
"scope": "language-overridable"
|
|
2313
|
+
},
|
|
2314
|
+
"github.copilot.chat.agent.autoFix": {
|
|
2315
|
+
"type": "boolean",
|
|
2316
|
+
"default": true,
|
|
2317
|
+
"description": "%github.copilot.config.autoFix%"
|
|
2318
|
+
},
|
|
2319
|
+
"github.copilot.chat.customInstructionsInSystemMessage": {
|
|
2320
|
+
"type": "boolean",
|
|
2321
|
+
"default": true,
|
|
2322
|
+
"description": "%github.copilot.config.customInstructionsInSystemMessage%"
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
"title": "Preview",
|
|
2328
|
+
"id": "preview",
|
|
2329
|
+
"properties": {
|
|
2330
|
+
"github.copilot.chat.startDebugging.enabled": {
|
|
2331
|
+
"type": "boolean",
|
|
2332
|
+
"default": true,
|
|
2333
|
+
"markdownDescription": "%github.copilot.config.startDebugging.enabled%",
|
|
2334
|
+
"tags": [
|
|
2335
|
+
"preview"
|
|
2336
|
+
]
|
|
2337
|
+
},
|
|
2338
|
+
"github.copilot.chat.reviewSelection.enabled": {
|
|
2339
|
+
"type": "boolean",
|
|
2340
|
+
"default": true,
|
|
2341
|
+
"description": "%github.copilot.config.reviewSelection.enabled%",
|
|
2342
|
+
"tags": [
|
|
2343
|
+
"preview"
|
|
2344
|
+
]
|
|
2345
|
+
},
|
|
2346
|
+
"github.copilot.chat.reviewSelection.instructions": {
|
|
2347
|
+
"type": "array",
|
|
2348
|
+
"items": {
|
|
2349
|
+
"oneOf": [
|
|
2350
|
+
{
|
|
2351
|
+
"type": "object",
|
|
2352
|
+
"markdownDescription": "%github.copilot.config.reviewSelection.instruction.file%",
|
|
2353
|
+
"properties": {
|
|
2354
|
+
"file": {
|
|
2355
|
+
"type": "string",
|
|
2356
|
+
"examples": [
|
|
2357
|
+
".copilot-review-instructions.md"
|
|
2358
|
+
]
|
|
2359
|
+
},
|
|
2360
|
+
"language": {
|
|
2361
|
+
"type": "string"
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2364
|
+
"examples": [
|
|
2365
|
+
{
|
|
2366
|
+
"file": ".copilot-review-instructions.md"
|
|
2367
|
+
}
|
|
2368
|
+
],
|
|
2369
|
+
"required": [
|
|
2370
|
+
"file"
|
|
2371
|
+
]
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
"type": "object",
|
|
2375
|
+
"markdownDescription": "%github.copilot.config.reviewSelection.instruction.text%",
|
|
2376
|
+
"properties": {
|
|
2377
|
+
"text": {
|
|
2378
|
+
"type": "string",
|
|
2379
|
+
"examples": [
|
|
2380
|
+
"Use underscore for field names."
|
|
2381
|
+
]
|
|
2382
|
+
},
|
|
2383
|
+
"language": {
|
|
2384
|
+
"type": "string"
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
"required": [
|
|
2388
|
+
"text"
|
|
2389
|
+
],
|
|
2390
|
+
"examples": [
|
|
2391
|
+
{
|
|
2392
|
+
"text": "Use underscore for field names."
|
|
2393
|
+
},
|
|
2394
|
+
{
|
|
2395
|
+
"text": "Resolve all TODO tasks."
|
|
2396
|
+
}
|
|
2397
|
+
]
|
|
2398
|
+
}
|
|
2399
|
+
]
|
|
2400
|
+
},
|
|
2401
|
+
"default": [],
|
|
2402
|
+
"markdownDescription": "%github.copilot.config.reviewSelection.instructions%",
|
|
2403
|
+
"examples": [
|
|
2404
|
+
[
|
|
2405
|
+
{
|
|
2406
|
+
"file": ".copilot-review-instructions.md"
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
"text": "Resolve all TODO tasks."
|
|
2410
|
+
}
|
|
2411
|
+
]
|
|
2412
|
+
],
|
|
2413
|
+
"tags": [
|
|
2414
|
+
"preview"
|
|
2415
|
+
]
|
|
2416
|
+
},
|
|
2417
|
+
"github.copilot.chat.copilotDebugCommand.enabled": {
|
|
2418
|
+
"type": "boolean",
|
|
2419
|
+
"default": true,
|
|
2420
|
+
"tags": [
|
|
2421
|
+
"preview"
|
|
2422
|
+
],
|
|
2423
|
+
"description": "%github.copilot.chat.copilotDebugCommand.enabled%"
|
|
2424
|
+
},
|
|
2425
|
+
"github.copilot.chat.codesearch.enabled": {
|
|
2426
|
+
"type": "boolean",
|
|
2427
|
+
"default": false,
|
|
2428
|
+
"tags": [
|
|
2429
|
+
"preview"
|
|
2430
|
+
],
|
|
2431
|
+
"markdownDescription": "%github.copilot.config.codesearch.enabled%"
|
|
2432
|
+
},
|
|
2433
|
+
"github.copilot.chat.byok.ollamaEndpoint": {
|
|
2434
|
+
"type": "string",
|
|
2435
|
+
"default": "http://localhost:11434",
|
|
2436
|
+
"tags": [
|
|
2437
|
+
"preview"
|
|
2438
|
+
],
|
|
2439
|
+
"markdownDescription": "%github.copilot.config.byok.ollamaEndpoint%"
|
|
2440
|
+
}
|
|
2441
|
+
}
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
"title": "Experimental",
|
|
2445
|
+
"id": "experimental",
|
|
2446
|
+
"properties": {
|
|
2447
|
+
"github.copilot.chat.agent.thinkingTool": {
|
|
2448
|
+
"type": "boolean",
|
|
2449
|
+
"default": false,
|
|
2450
|
+
"tags": [
|
|
2451
|
+
"experimental"
|
|
2452
|
+
],
|
|
2453
|
+
"markdownDescription": "%github.copilot.config.agent.thinkingTool%"
|
|
2454
|
+
},
|
|
2455
|
+
"github.copilot.chat.edits.suggestRelatedFilesFromGitHistory": {
|
|
2456
|
+
"type": "boolean",
|
|
2457
|
+
"default": true,
|
|
2458
|
+
"tags": [
|
|
2459
|
+
"experimental"
|
|
2460
|
+
],
|
|
2461
|
+
"markdownDescription": "%github.copilot.config.edits.suggestRelatedFilesFromGitHistory%"
|
|
2462
|
+
},
|
|
2463
|
+
"github.copilot.chat.edits.suggestRelatedFilesForTests": {
|
|
2464
|
+
"type": "boolean",
|
|
2465
|
+
"default": true,
|
|
2466
|
+
"tags": [
|
|
2467
|
+
"experimental"
|
|
2468
|
+
],
|
|
2469
|
+
"markdownDescription": "%github.copilot.chat.edits.suggestRelatedFilesForTests%"
|
|
2470
|
+
},
|
|
2471
|
+
"github.copilot.chat.codeGeneration.instructions": {
|
|
2472
|
+
"markdownDeprecationMessage": "%github.copilot.config.codeGeneration.instructions.deprecated%",
|
|
2473
|
+
"type": "array",
|
|
2474
|
+
"items": {
|
|
2475
|
+
"oneOf": [
|
|
2476
|
+
{
|
|
2477
|
+
"type": "object",
|
|
2478
|
+
"markdownDescription": "%github.copilot.config.codeGeneration.instruction.file%",
|
|
2479
|
+
"properties": {
|
|
2480
|
+
"file": {
|
|
2481
|
+
"type": "string",
|
|
2482
|
+
"examples": [
|
|
2483
|
+
".copilot-codeGeneration-instructions.md"
|
|
2484
|
+
]
|
|
2485
|
+
},
|
|
2486
|
+
"language": {
|
|
2487
|
+
"type": "string"
|
|
2488
|
+
}
|
|
2489
|
+
},
|
|
2490
|
+
"examples": [
|
|
2491
|
+
{
|
|
2492
|
+
"file": ".copilot-codeGeneration-instructions.md"
|
|
2493
|
+
}
|
|
2494
|
+
],
|
|
2495
|
+
"required": [
|
|
2496
|
+
"file"
|
|
2497
|
+
]
|
|
2498
|
+
},
|
|
2499
|
+
{
|
|
2500
|
+
"type": "object",
|
|
2501
|
+
"markdownDescription": "%github.copilot.config.codeGeneration.instruction.text%",
|
|
2502
|
+
"properties": {
|
|
2503
|
+
"text": {
|
|
2504
|
+
"type": "string",
|
|
2505
|
+
"examples": [
|
|
2506
|
+
"Use underscore for field names."
|
|
2507
|
+
]
|
|
2508
|
+
},
|
|
2509
|
+
"language": {
|
|
2510
|
+
"type": "string"
|
|
2511
|
+
}
|
|
2512
|
+
},
|
|
2513
|
+
"required": [
|
|
2514
|
+
"text"
|
|
2515
|
+
],
|
|
2516
|
+
"examples": [
|
|
2517
|
+
{
|
|
2518
|
+
"text": "Use underscore for field names."
|
|
2519
|
+
},
|
|
2520
|
+
{
|
|
2521
|
+
"text": "Always add a comment: 'Generated by Copilot'."
|
|
2522
|
+
}
|
|
2523
|
+
]
|
|
2524
|
+
}
|
|
2525
|
+
]
|
|
2526
|
+
},
|
|
2527
|
+
"default": [],
|
|
2528
|
+
"markdownDescription": "%github.copilot.config.codeGeneration.instructions%",
|
|
2529
|
+
"examples": [
|
|
2530
|
+
[
|
|
2531
|
+
{
|
|
2532
|
+
"file": ".copilot-codeGeneration-instructions.md"
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"text": "Always add a comment: 'Generated by Copilot'."
|
|
2536
|
+
}
|
|
2537
|
+
]
|
|
2538
|
+
],
|
|
2539
|
+
"tags": [
|
|
2540
|
+
"experimental"
|
|
2541
|
+
]
|
|
2542
|
+
},
|
|
2543
|
+
"github.copilot.chat.testGeneration.instructions": {
|
|
2544
|
+
"markdownDeprecationMessage": "%github.copilot.config.testGeneration.instructions.deprecated%",
|
|
2545
|
+
"type": "array",
|
|
2546
|
+
"items": {
|
|
2547
|
+
"oneOf": [
|
|
2548
|
+
{
|
|
2549
|
+
"type": "object",
|
|
2550
|
+
"markdownDescription": "%github.copilot.config.experimental.testGeneration.instruction.file%",
|
|
2551
|
+
"properties": {
|
|
2552
|
+
"file": {
|
|
2553
|
+
"type": "string",
|
|
2554
|
+
"examples": [
|
|
2555
|
+
".copilot-test-instructions.md"
|
|
2556
|
+
]
|
|
2557
|
+
},
|
|
2558
|
+
"language": {
|
|
2559
|
+
"type": "string"
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2562
|
+
"examples": [
|
|
2563
|
+
{
|
|
2564
|
+
"file": ".copilot-test-instructions.md"
|
|
2565
|
+
}
|
|
2566
|
+
],
|
|
2567
|
+
"required": [
|
|
2568
|
+
"file"
|
|
2569
|
+
]
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
"type": "object",
|
|
2573
|
+
"markdownDescription": "%github.copilot.config.experimental.testGeneration.instruction.text%",
|
|
2574
|
+
"properties": {
|
|
2575
|
+
"text": {
|
|
2576
|
+
"type": "string",
|
|
2577
|
+
"examples": [
|
|
2578
|
+
"Use suite and test instead of describe and it."
|
|
2579
|
+
]
|
|
2580
|
+
},
|
|
2581
|
+
"language": {
|
|
2582
|
+
"type": "string"
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
"required": [
|
|
2586
|
+
"text"
|
|
2587
|
+
],
|
|
2588
|
+
"examples": [
|
|
2589
|
+
{
|
|
2590
|
+
"text": "Always try uniting related tests in a suite."
|
|
2591
|
+
}
|
|
2592
|
+
]
|
|
2593
|
+
}
|
|
2594
|
+
]
|
|
2595
|
+
},
|
|
2596
|
+
"default": [],
|
|
2597
|
+
"markdownDescription": "%github.copilot.config.testGeneration.instructions%",
|
|
2598
|
+
"examples": [
|
|
2599
|
+
[
|
|
2600
|
+
{
|
|
2601
|
+
"file": ".copilot-test-instructions.md"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"text": "Always try uniting related tests in a suite."
|
|
2605
|
+
}
|
|
2606
|
+
]
|
|
2607
|
+
],
|
|
2608
|
+
"tags": [
|
|
2609
|
+
"experimental"
|
|
2610
|
+
]
|
|
2611
|
+
},
|
|
2612
|
+
"github.copilot.chat.commitMessageGeneration.instructions": {
|
|
2613
|
+
"type": "array",
|
|
2614
|
+
"items": {
|
|
2615
|
+
"oneOf": [
|
|
2616
|
+
{
|
|
2617
|
+
"type": "object",
|
|
2618
|
+
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instruction.file%",
|
|
2619
|
+
"properties": {
|
|
2620
|
+
"file": {
|
|
2621
|
+
"type": "string",
|
|
2622
|
+
"examples": [
|
|
2623
|
+
".copilot-commit-message-instructions.md"
|
|
2624
|
+
]
|
|
2625
|
+
}
|
|
2626
|
+
},
|
|
2627
|
+
"examples": [
|
|
2628
|
+
{
|
|
2629
|
+
"file": ".copilot-commit-message-instructions.md"
|
|
2630
|
+
}
|
|
2631
|
+
],
|
|
2632
|
+
"required": [
|
|
2633
|
+
"file"
|
|
2634
|
+
]
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
"type": "object",
|
|
2638
|
+
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instruction.text%",
|
|
2639
|
+
"properties": {
|
|
2640
|
+
"text": {
|
|
2641
|
+
"type": "string",
|
|
2642
|
+
"examples": [
|
|
2643
|
+
"Use conventional commit message format."
|
|
2644
|
+
]
|
|
2645
|
+
}
|
|
2646
|
+
},
|
|
2647
|
+
"required": [
|
|
2648
|
+
"text"
|
|
2649
|
+
],
|
|
2650
|
+
"examples": [
|
|
2651
|
+
{
|
|
2652
|
+
"text": "Use conventional commit message format."
|
|
2653
|
+
}
|
|
2654
|
+
]
|
|
2655
|
+
}
|
|
2656
|
+
]
|
|
2657
|
+
},
|
|
2658
|
+
"default": [],
|
|
2659
|
+
"markdownDescription": "%github.copilot.config.commitMessageGeneration.instructions%",
|
|
2660
|
+
"examples": [
|
|
2661
|
+
[
|
|
2662
|
+
{
|
|
2663
|
+
"file": ".copilot-commit-message-instructions.md"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
"text": "Use conventional commit message format."
|
|
2667
|
+
}
|
|
2668
|
+
]
|
|
2669
|
+
],
|
|
2670
|
+
"tags": [
|
|
2671
|
+
"experimental"
|
|
2672
|
+
]
|
|
2673
|
+
},
|
|
2674
|
+
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": {
|
|
2675
|
+
"type": "array",
|
|
2676
|
+
"items": {
|
|
2677
|
+
"oneOf": [
|
|
2678
|
+
{
|
|
2679
|
+
"type": "object",
|
|
2680
|
+
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instruction.file%",
|
|
2681
|
+
"properties": {
|
|
2682
|
+
"file": {
|
|
2683
|
+
"type": "string",
|
|
2684
|
+
"examples": [
|
|
2685
|
+
".copilot-pull-request-description-instructions.md"
|
|
2686
|
+
]
|
|
2687
|
+
}
|
|
2688
|
+
},
|
|
2689
|
+
"examples": [
|
|
2690
|
+
{
|
|
2691
|
+
"file": ".copilot-pull-request-description-instructions.md"
|
|
2692
|
+
}
|
|
2693
|
+
],
|
|
2694
|
+
"required": [
|
|
2695
|
+
"file"
|
|
2696
|
+
]
|
|
2697
|
+
},
|
|
2698
|
+
{
|
|
2699
|
+
"type": "object",
|
|
2700
|
+
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instruction.text%",
|
|
2701
|
+
"properties": {
|
|
2702
|
+
"text": {
|
|
2703
|
+
"type": "string",
|
|
2704
|
+
"examples": [
|
|
2705
|
+
"Include every commit message in the pull request description."
|
|
2706
|
+
]
|
|
2707
|
+
}
|
|
2708
|
+
},
|
|
2709
|
+
"required": [
|
|
2710
|
+
"text"
|
|
2711
|
+
],
|
|
2712
|
+
"examples": [
|
|
2713
|
+
{
|
|
2714
|
+
"text": "Include every commit message in the pull request description."
|
|
2715
|
+
}
|
|
2716
|
+
]
|
|
2717
|
+
}
|
|
2718
|
+
]
|
|
2719
|
+
},
|
|
2720
|
+
"default": [],
|
|
2721
|
+
"markdownDescription": "%github.copilot.config.pullRequestDescriptionGeneration.instructions%",
|
|
2722
|
+
"examples": [
|
|
2723
|
+
[
|
|
2724
|
+
{
|
|
2725
|
+
"file": ".copilot-pull-request-description-instructions.md"
|
|
2726
|
+
},
|
|
2727
|
+
{
|
|
2728
|
+
"text": "Use conventional commit message format."
|
|
2729
|
+
}
|
|
2730
|
+
]
|
|
2731
|
+
],
|
|
2732
|
+
"tags": [
|
|
2733
|
+
"experimental"
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
"github.copilot.chat.generateTests.codeLens": {
|
|
2737
|
+
"type": "boolean",
|
|
2738
|
+
"default": false,
|
|
2739
|
+
"description": "%github.copilot.config.generateTests.codeLens%",
|
|
2740
|
+
"tags": [
|
|
2741
|
+
"experimental"
|
|
2742
|
+
]
|
|
2743
|
+
},
|
|
2744
|
+
"github.copilot.chat.edits.temporalContext.enabled": {
|
|
2745
|
+
"type": "boolean",
|
|
2746
|
+
"default": false,
|
|
2747
|
+
"description": "%github.copilot.chat.edits.temporalContext.enabled%",
|
|
2748
|
+
"tags": [
|
|
2749
|
+
"experimental",
|
|
2750
|
+
"onExp"
|
|
2751
|
+
]
|
|
2752
|
+
},
|
|
2753
|
+
"github.copilot.chat.editor.temporalContext.enabled": {
|
|
2754
|
+
"type": "boolean",
|
|
2755
|
+
"default": false,
|
|
2756
|
+
"description": "%github.copilot.chat.editor.temporalContext.enabled%",
|
|
2757
|
+
"tags": [
|
|
2758
|
+
"experimental",
|
|
2759
|
+
"onExp"
|
|
2760
|
+
]
|
|
2761
|
+
},
|
|
2762
|
+
"github.copilot.chat.setupTests.enabled": {
|
|
2763
|
+
"type": "boolean",
|
|
2764
|
+
"default": true,
|
|
2765
|
+
"markdownDescription": "%github.copilot.config.setupTests.enabled%",
|
|
2766
|
+
"tags": [
|
|
2767
|
+
"experimental"
|
|
2768
|
+
]
|
|
2769
|
+
},
|
|
2770
|
+
"github.copilot.chat.languageContext.typescript.enabled": {
|
|
2771
|
+
"type": "boolean",
|
|
2772
|
+
"default": false,
|
|
2773
|
+
"scope": "resource",
|
|
2774
|
+
"tags": [
|
|
2775
|
+
"experimental",
|
|
2776
|
+
"onExP"
|
|
2777
|
+
],
|
|
2778
|
+
"markdownDescription": "%github.copilot.chat.languageContext.typescript.enabled%"
|
|
2779
|
+
},
|
|
2780
|
+
"github.copilot.chat.languageContext.typescript.cacheTimeout": {
|
|
2781
|
+
"type": "number",
|
|
2782
|
+
"default": 500,
|
|
2783
|
+
"scope": "resource",
|
|
2784
|
+
"tags": [
|
|
2785
|
+
"experimental",
|
|
2786
|
+
"onExP"
|
|
2787
|
+
],
|
|
2788
|
+
"markdownDescription": "%github.copilot.chat.languageContext.typescript.cacheTimeout%"
|
|
2789
|
+
},
|
|
2790
|
+
"github.copilot.chat.languageContext.fix.typescript.enabled": {
|
|
2791
|
+
"type": "boolean",
|
|
2792
|
+
"default": false,
|
|
2793
|
+
"scope": "resource",
|
|
2794
|
+
"tags": [
|
|
2795
|
+
"experimental",
|
|
2796
|
+
"onExP"
|
|
2797
|
+
],
|
|
2798
|
+
"markdownDescription": "%github.copilot.chat.languageContext.fix.typescript.enabled%"
|
|
2799
|
+
},
|
|
2800
|
+
"github.copilot.chat.languageContext.inline.typescript.enabled": {
|
|
2801
|
+
"type": "boolean",
|
|
2802
|
+
"default": false,
|
|
2803
|
+
"scope": "resource",
|
|
2804
|
+
"tags": [
|
|
2805
|
+
"experimental",
|
|
2806
|
+
"onExP"
|
|
2807
|
+
],
|
|
2808
|
+
"markdownDescription": "%github.copilot.chat.languageContext.inline.typescript.enabled%"
|
|
2809
|
+
},
|
|
2810
|
+
"github.copilot.chat.newWorkspaceCreation.enabled": {
|
|
2811
|
+
"type": "boolean",
|
|
2812
|
+
"default": true,
|
|
2813
|
+
"tags": [
|
|
2814
|
+
"experimental"
|
|
2815
|
+
],
|
|
2816
|
+
"description": "%github.copilot.config.newWorkspaceCreation.enabled%"
|
|
2817
|
+
},
|
|
2818
|
+
"github.copilot.chat.newWorkspace.useContext7": {
|
|
2819
|
+
"type": "boolean",
|
|
2820
|
+
"default": false,
|
|
2821
|
+
"tags": [
|
|
2822
|
+
"experimental"
|
|
2823
|
+
],
|
|
2824
|
+
"markdownDescription": "%github.copilot.config.newWorkspace.useContext7%"
|
|
2825
|
+
},
|
|
2826
|
+
"github.copilot.chat.agent.currentEditorContext.enabled": {
|
|
2827
|
+
"type": "boolean",
|
|
2828
|
+
"default": true,
|
|
2829
|
+
"tags": [
|
|
2830
|
+
"experimental"
|
|
2831
|
+
],
|
|
2832
|
+
"description": "%github.copilot.config.agent.currentEditorContext.enabled%"
|
|
2833
|
+
},
|
|
2834
|
+
"github.copilot.chat.notebook.followCellExecution.enabled": {
|
|
2835
|
+
"type": "boolean",
|
|
2836
|
+
"default": false,
|
|
2837
|
+
"tags": [
|
|
2838
|
+
"experimental"
|
|
2839
|
+
],
|
|
2840
|
+
"description": "%github.copilot.config.notebook.followCellExecution%"
|
|
2841
|
+
},
|
|
2842
|
+
"github.copilot.chat.notebook.enhancedNextEditSuggestions.enabled": {
|
|
2843
|
+
"type": "boolean",
|
|
2844
|
+
"default": false,
|
|
2845
|
+
"tags": [
|
|
2846
|
+
"experimental",
|
|
2847
|
+
"onExp"
|
|
2848
|
+
],
|
|
2849
|
+
"description": "%github.copilot.config.notebook.enhancedNextEditSuggestions%"
|
|
2850
|
+
},
|
|
2851
|
+
"github.copilot.chat.summarizeAgentConversationHistory.enabled": {
|
|
2852
|
+
"type": "boolean",
|
|
2853
|
+
"default": true,
|
|
2854
|
+
"tags": [
|
|
2855
|
+
"experimental",
|
|
2856
|
+
"onExp"
|
|
2857
|
+
],
|
|
2858
|
+
"description": "%github.copilot.config.summarizeAgentConversationHistory.enabled%"
|
|
2859
|
+
},
|
|
2860
|
+
"github.copilot.chat.virtualTools.threshold": {
|
|
2861
|
+
"type": "number",
|
|
2862
|
+
"minimum": 0,
|
|
2863
|
+
"maximum": 128,
|
|
2864
|
+
"default": 128,
|
|
2865
|
+
"tags": [
|
|
2866
|
+
"experimental"
|
|
2867
|
+
],
|
|
2868
|
+
"markdownDescription": "%github.copilot.config.virtualTools.threshold%"
|
|
2869
|
+
},
|
|
2870
|
+
"github.copilot.chat.azureModels": {
|
|
2871
|
+
"type": "object",
|
|
2872
|
+
"default": {},
|
|
2873
|
+
"tags": [
|
|
2874
|
+
"experimental"
|
|
2875
|
+
],
|
|
2876
|
+
"additionalProperties": {
|
|
2877
|
+
"type": "object",
|
|
2878
|
+
"properties": {
|
|
2879
|
+
"name": {
|
|
2880
|
+
"type": "string",
|
|
2881
|
+
"description": "Display name of the Azure model"
|
|
2882
|
+
},
|
|
2883
|
+
"url": {
|
|
2884
|
+
"type": "string",
|
|
2885
|
+
"description": "URL endpoint for the Azure model"
|
|
2886
|
+
},
|
|
2887
|
+
"toolCalling": {
|
|
2888
|
+
"type": "boolean",
|
|
2889
|
+
"description": "Whether the model supports tool calling"
|
|
2890
|
+
},
|
|
2891
|
+
"vision": {
|
|
2892
|
+
"type": "boolean",
|
|
2893
|
+
"description": "Whether the model supports vision capabilities"
|
|
2894
|
+
},
|
|
2895
|
+
"maxInputTokens": {
|
|
2896
|
+
"type": "number",
|
|
2897
|
+
"description": "Maximum number of input tokens supported by the model"
|
|
2898
|
+
},
|
|
2899
|
+
"maxOutputTokens": {
|
|
2900
|
+
"type": "number",
|
|
2901
|
+
"description": "Maximum number of output tokens supported by the model"
|
|
2902
|
+
},
|
|
2903
|
+
"thinking": {
|
|
2904
|
+
"type": "boolean",
|
|
2905
|
+
"default": false,
|
|
2906
|
+
"description": "Whether the model supports thinking capabilities"
|
|
2907
|
+
}
|
|
2908
|
+
},
|
|
2909
|
+
"required": [
|
|
2910
|
+
"name",
|
|
2911
|
+
"url",
|
|
2912
|
+
"toolCalling",
|
|
2913
|
+
"vision",
|
|
2914
|
+
"maxInputTokens",
|
|
2915
|
+
"maxOutputTokens"
|
|
2916
|
+
],
|
|
2917
|
+
"additionalProperties": false
|
|
2918
|
+
},
|
|
2919
|
+
"markdownDescription": "Configure custom Azure OpenAI models. Each key should be a unique model ID, and the value should be an object with model configuration including name, url, toolCalling, vision, maxInputTokens, and maxOutputTokens properties."
|
|
2920
|
+
},
|
|
2921
|
+
"github.copilot.chat.customOAIModels": {
|
|
2922
|
+
"type": "object",
|
|
2923
|
+
"default": {},
|
|
2924
|
+
"tags": [
|
|
2925
|
+
"experimental"
|
|
2926
|
+
],
|
|
2927
|
+
"additionalProperties": {
|
|
2928
|
+
"type": "object",
|
|
2929
|
+
"properties": {
|
|
2930
|
+
"name": {
|
|
2931
|
+
"type": "string",
|
|
2932
|
+
"description": "Display name of the custom OpenAI model"
|
|
2933
|
+
},
|
|
2934
|
+
"url": {
|
|
2935
|
+
"type": "string",
|
|
2936
|
+
"description": "URL endpoint for the custom OpenAI-compatible model"
|
|
2937
|
+
},
|
|
2938
|
+
"toolCalling": {
|
|
2939
|
+
"type": "boolean",
|
|
2940
|
+
"description": "Whether the model supports tool calling"
|
|
2941
|
+
},
|
|
2942
|
+
"vision": {
|
|
2943
|
+
"type": "boolean",
|
|
2944
|
+
"description": "Whether the model supports vision capabilities"
|
|
2945
|
+
},
|
|
2946
|
+
"maxInputTokens": {
|
|
2947
|
+
"type": "number",
|
|
2948
|
+
"description": "Maximum number of input tokens supported by the model"
|
|
2949
|
+
},
|
|
2950
|
+
"maxOutputTokens": {
|
|
2951
|
+
"type": "number",
|
|
2952
|
+
"description": "Maximum number of output tokens supported by the model"
|
|
2953
|
+
},
|
|
2954
|
+
"requiresAPIKey": {
|
|
2955
|
+
"type": "boolean",
|
|
2956
|
+
"description": "Whether the model requires an API key for authentication",
|
|
2957
|
+
"default": true
|
|
2958
|
+
},
|
|
2959
|
+
"thinking": {
|
|
2960
|
+
"type": "boolean",
|
|
2961
|
+
"default": false,
|
|
2962
|
+
"description": "Whether the model supports thinking capabilities"
|
|
2963
|
+
}
|
|
2964
|
+
},
|
|
2965
|
+
"required": [
|
|
2966
|
+
"name",
|
|
2967
|
+
"url",
|
|
2968
|
+
"toolCalling",
|
|
2969
|
+
"vision",
|
|
2970
|
+
"maxInputTokens",
|
|
2971
|
+
"maxOutputTokens",
|
|
2972
|
+
"requiresAPIKey"
|
|
2973
|
+
],
|
|
2974
|
+
"additionalProperties": false
|
|
2975
|
+
},
|
|
2976
|
+
"markdownDescription": "Configure custom OpenAI-compatible models. Each key should be a unique model ID, and the value should be an object with model configuration including name, url, toolCalling, vision, maxInputTokens, and maxOutputTokens properties."
|
|
2977
|
+
},
|
|
2978
|
+
"github.copilot.chat.alternateGptPrompt.enabled": {
|
|
2979
|
+
"type": "boolean",
|
|
2980
|
+
"default": false,
|
|
2981
|
+
"tags": [
|
|
2982
|
+
"experimental"
|
|
2983
|
+
],
|
|
2984
|
+
"description": "%github.copilot.config.alternateGptPrompt.enabled%"
|
|
2985
|
+
},
|
|
2986
|
+
"github.copilot.chat.gpt5AlternatePrompt": {
|
|
2987
|
+
"type": "string",
|
|
2988
|
+
"default": "default",
|
|
2989
|
+
"tags": [
|
|
2990
|
+
"experimental"
|
|
2991
|
+
],
|
|
2992
|
+
"description": "%github.copilot.config.gpt5AlternatePrompt%"
|
|
2993
|
+
},
|
|
2994
|
+
"github.copilot.chat.grokCodeAlternatePrompt": {
|
|
2995
|
+
"type": "string",
|
|
2996
|
+
"default": "default",
|
|
2997
|
+
"tags": [
|
|
2998
|
+
"experimental"
|
|
2999
|
+
],
|
|
3000
|
+
"description": "%github.copilot.config.grokCodeAlternatePrompt%"
|
|
3001
|
+
}
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
],
|
|
3005
|
+
"submenus": [
|
|
3006
|
+
{
|
|
3007
|
+
"id": "copilot/reviewComment/additionalActions/applyAndNext",
|
|
3008
|
+
"label": "%github.copilot.submenu.reviewComment.applyAndNext.label%"
|
|
3009
|
+
},
|
|
3010
|
+
{
|
|
3011
|
+
"id": "copilot/reviewComment/additionalActions/discardAndNext",
|
|
3012
|
+
"label": "%github.copilot.submenu.reviewComment.discardAndNext.label%"
|
|
3013
|
+
},
|
|
3014
|
+
{
|
|
3015
|
+
"id": "copilot/reviewComment/additionalActions/discard",
|
|
3016
|
+
"label": "%github.copilot.submenu.reviewComment.discard.label%"
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"id": "github.copilot.chat.debug.filter",
|
|
3020
|
+
"label": "Filter",
|
|
3021
|
+
"icon": "$(filter)"
|
|
3022
|
+
},
|
|
3023
|
+
{
|
|
3024
|
+
"id": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
|
|
3025
|
+
"label": "Export All Logs as JSON",
|
|
3026
|
+
"icon": "$(file-export)"
|
|
3027
|
+
}
|
|
3028
|
+
],
|
|
3029
|
+
"menus": {
|
|
3030
|
+
"editor/title": [
|
|
3031
|
+
{
|
|
3032
|
+
"command": "github.copilot.debug.generateInlineEditTests",
|
|
3033
|
+
"when": "resourceScheme == 'ccreq'"
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
|
|
3037
|
+
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && !github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && !config.notebook.globalToolbar",
|
|
3038
|
+
"group": "navigation@10"
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
|
|
3042
|
+
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && !config.notebook.globalToolbar",
|
|
3043
|
+
"group": "navigation@10"
|
|
3044
|
+
},
|
|
3045
|
+
{
|
|
3046
|
+
"command": "github.copilot.chat.replay",
|
|
3047
|
+
"group": "navigation@9",
|
|
3048
|
+
"when": "resourceLangId == chatReplay"
|
|
3049
|
+
}
|
|
3050
|
+
],
|
|
3051
|
+
"editor/context": [
|
|
3052
|
+
{
|
|
3053
|
+
"command": "github.copilot.chat.explain",
|
|
3054
|
+
"when": "!github.copilot.interactiveSession.disabled",
|
|
3055
|
+
"group": "1_chat@4"
|
|
3056
|
+
}
|
|
3057
|
+
],
|
|
3058
|
+
"editor/context/chat": [
|
|
3059
|
+
{
|
|
3060
|
+
"command": "github.copilot.chat.fix",
|
|
3061
|
+
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
3062
|
+
"group": "copilotAction@1"
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"command": "github.copilot.chat.review",
|
|
3066
|
+
"when": "github.copilot.chat.reviewSelection.enabled && !github.copilot.interactiveSession.disabled && resourceScheme != 'vscode-chat-code-block'",
|
|
3067
|
+
"group": "copilotAction@2"
|
|
3068
|
+
},
|
|
3069
|
+
{
|
|
3070
|
+
"command": "github.copilot.chat.generateDocs",
|
|
3071
|
+
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
3072
|
+
"group": "copilotGenerate@1"
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
"command": "github.copilot.chat.generateTests",
|
|
3076
|
+
"when": "!github.copilot.interactiveSession.disabled && !editorReadonly",
|
|
3077
|
+
"group": "copilotGenerate@2"
|
|
3078
|
+
}
|
|
3079
|
+
],
|
|
3080
|
+
"testing/item/result": [
|
|
3081
|
+
{
|
|
3082
|
+
"command": "github.copilot.tests.fixTestFailure.fromInline",
|
|
3083
|
+
"when": "testResultState == failed && !testResultOutdated",
|
|
3084
|
+
"group": "inline@2"
|
|
3085
|
+
}
|
|
3086
|
+
],
|
|
3087
|
+
"testing/item/context": [
|
|
3088
|
+
{
|
|
3089
|
+
"command": "github.copilot.tests.fixTestFailure.fromInline",
|
|
3090
|
+
"when": "testResultState == failed && !testResultOutdated",
|
|
3091
|
+
"group": "inline@2"
|
|
3092
|
+
}
|
|
3093
|
+
],
|
|
3094
|
+
"commandPalette": [
|
|
3095
|
+
{
|
|
3096
|
+
"command": "github.copilot.interactiveSession.feedback",
|
|
3097
|
+
"when": "github.copilot-chat.activated && !github.copilot.interactiveSession.disabled"
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"command": "github.copilot.debug.workbenchState",
|
|
3101
|
+
"when": "true"
|
|
3102
|
+
},
|
|
3103
|
+
{
|
|
3104
|
+
"command": "github.copilot.chat.rerunWithCopilotDebug",
|
|
3105
|
+
"when": "false"
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"command": "github.copilot.chat.startCopilotDebugCommand",
|
|
3109
|
+
"when": "false"
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"command": "github.copilot.git.generateCommitMessage",
|
|
3113
|
+
"when": "false"
|
|
3114
|
+
},
|
|
3115
|
+
{
|
|
3116
|
+
"command": "github.copilot.chat.explain",
|
|
3117
|
+
"when": "false"
|
|
3118
|
+
},
|
|
3119
|
+
{
|
|
3120
|
+
"command": "github.copilot.chat.review",
|
|
3121
|
+
"when": "!github.copilot.interactiveSession.disabled"
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"command": "github.copilot.chat.review.apply",
|
|
3125
|
+
"when": "false"
|
|
3126
|
+
},
|
|
3127
|
+
{
|
|
3128
|
+
"command": "github.copilot.chat.review.applyAndNext",
|
|
3129
|
+
"when": "false"
|
|
3130
|
+
},
|
|
3131
|
+
{
|
|
3132
|
+
"command": "github.copilot.chat.review.discard",
|
|
3133
|
+
"when": "false"
|
|
3134
|
+
},
|
|
3135
|
+
{
|
|
3136
|
+
"command": "github.copilot.chat.review.discardAndNext",
|
|
3137
|
+
"when": "false"
|
|
3138
|
+
},
|
|
3139
|
+
{
|
|
3140
|
+
"command": "github.copilot.chat.review.discardAll",
|
|
3141
|
+
"when": "false"
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"command": "github.copilot.chat.review.stagedChanges",
|
|
3145
|
+
"when": "false"
|
|
3146
|
+
},
|
|
3147
|
+
{
|
|
3148
|
+
"command": "github.copilot.chat.review.unstagedChanges",
|
|
3149
|
+
"when": "false"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
"command": "github.copilot.chat.review.changes",
|
|
3153
|
+
"when": "false"
|
|
3154
|
+
},
|
|
3155
|
+
{
|
|
3156
|
+
"command": "github.copilot.chat.review.changes.cancel",
|
|
3157
|
+
"when": "false"
|
|
3158
|
+
},
|
|
3159
|
+
{
|
|
3160
|
+
"command": "github.copilot.chat.review.previous",
|
|
3161
|
+
"when": "false"
|
|
3162
|
+
},
|
|
3163
|
+
{
|
|
3164
|
+
"command": "github.copilot.chat.review.next",
|
|
3165
|
+
"when": "false"
|
|
3166
|
+
},
|
|
3167
|
+
{
|
|
3168
|
+
"command": "github.copilot.chat.review.continueInInlineChat",
|
|
3169
|
+
"when": "false"
|
|
3170
|
+
},
|
|
3171
|
+
{
|
|
3172
|
+
"command": "github.copilot.chat.review.continueInChat",
|
|
3173
|
+
"when": "false"
|
|
3174
|
+
},
|
|
3175
|
+
{
|
|
3176
|
+
"command": "github.copilot.chat.review.markHelpful",
|
|
3177
|
+
"when": "false"
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
"command": "github.copilot.chat.review.markUnhelpful",
|
|
3181
|
+
"when": "false"
|
|
3182
|
+
},
|
|
3183
|
+
{
|
|
3184
|
+
"command": "github.copilot.devcontainer.generateDevContainerConfig",
|
|
3185
|
+
"when": "false"
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"command": "github.copilot.tests.fixTestFailure",
|
|
3189
|
+
"when": "false"
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"command": "github.copilot.tests.fixTestFailure.fromInline",
|
|
3193
|
+
"when": "false"
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"command": "github.copilot.search.markHelpful",
|
|
3197
|
+
"when": "false"
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"command": "github.copilot.search.markUnhelpful",
|
|
3201
|
+
"when": "false"
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"command": "github.copilot.search.feedback",
|
|
3205
|
+
"when": "false"
|
|
3206
|
+
},
|
|
3207
|
+
{
|
|
3208
|
+
"command": "github.copilot.chat.debug.showElements",
|
|
3209
|
+
"when": "false"
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"command": "github.copilot.chat.debug.hideElements",
|
|
3213
|
+
"when": "false"
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"command": "github.copilot.chat.debug.showTools",
|
|
3217
|
+
"when": "false"
|
|
3218
|
+
},
|
|
3219
|
+
{
|
|
3220
|
+
"command": "github.copilot.chat.debug.hideTools",
|
|
3221
|
+
"when": "false"
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"command": "github.copilot.chat.debug.showNesRequests",
|
|
3225
|
+
"when": "false"
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
"command": "github.copilot.chat.debug.hideNesRequests",
|
|
3229
|
+
"when": "false"
|
|
3230
|
+
},
|
|
3231
|
+
{
|
|
3232
|
+
"command": "github.copilot.chat.debug.exportLogItem",
|
|
3233
|
+
"when": "false"
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"command": "github.copilot.chat.debug.exportPromptArchive",
|
|
3237
|
+
"when": "false"
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
|
|
3241
|
+
"when": "false"
|
|
3242
|
+
},
|
|
3243
|
+
{
|
|
3244
|
+
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
|
|
3245
|
+
"when": "false"
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"command": "github.copilot.chat.mcp.setup.check",
|
|
3249
|
+
"when": "false"
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
"command": "github.copilot.chat.mcp.setup.validatePackage",
|
|
3253
|
+
"when": "false"
|
|
3254
|
+
},
|
|
3255
|
+
{
|
|
3256
|
+
"command": "github.copilot.chat.mcp.setup.flow",
|
|
3257
|
+
"when": "false"
|
|
3258
|
+
}
|
|
3259
|
+
],
|
|
3260
|
+
"view/title": [
|
|
3261
|
+
{
|
|
3262
|
+
"submenu": "github.copilot.chat.debug.filter",
|
|
3263
|
+
"when": "view == copilot-chat",
|
|
3264
|
+
"group": "navigation"
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
"command": "github.copilot.chat.debug.exportAllPromptLogsAsJson",
|
|
3268
|
+
"when": "view == copilot-chat",
|
|
3269
|
+
"group": "export@1"
|
|
3270
|
+
},
|
|
3271
|
+
{
|
|
3272
|
+
"command": "github.copilot.debug.showChatLogView",
|
|
3273
|
+
"when": "view == workbench.panel.chat.view.copilot",
|
|
3274
|
+
"group": "3_show"
|
|
3275
|
+
}
|
|
3276
|
+
],
|
|
3277
|
+
"view/item/context": [
|
|
3278
|
+
{
|
|
3279
|
+
"command": "github.copilot.chat.debug.exportLogItem",
|
|
3280
|
+
"when": "view == copilot-chat && (viewItem == toolcall || viewItem == request)",
|
|
3281
|
+
"group": "export@1"
|
|
3282
|
+
},
|
|
3283
|
+
{
|
|
3284
|
+
"command": "github.copilot.chat.debug.exportPromptArchive",
|
|
3285
|
+
"when": "view == copilot-chat && viewItem == chatprompt",
|
|
3286
|
+
"group": "export@2"
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"command": "github.copilot.chat.debug.exportPromptLogsAsJson",
|
|
3290
|
+
"when": "view == copilot-chat && viewItem == chatprompt",
|
|
3291
|
+
"group": "export@3"
|
|
3292
|
+
}
|
|
3293
|
+
],
|
|
3294
|
+
"searchPanel/aiResults/commands": [
|
|
3295
|
+
{
|
|
3296
|
+
"command": "github.copilot.search.markHelpful",
|
|
3297
|
+
"group": "inline@0",
|
|
3298
|
+
"when": "aiResultsTitle && aiResultsRequested"
|
|
3299
|
+
},
|
|
3300
|
+
{
|
|
3301
|
+
"command": "github.copilot.search.markUnhelpful",
|
|
3302
|
+
"group": "inline@1",
|
|
3303
|
+
"when": "aiResultsTitle && aiResultsRequested"
|
|
3304
|
+
},
|
|
3305
|
+
{
|
|
3306
|
+
"command": "github.copilot.search.feedback",
|
|
3307
|
+
"group": "inline@2",
|
|
3308
|
+
"when": "aiResultsTitle && aiResultsRequested && github.copilot.debugReportFeedback"
|
|
3309
|
+
}
|
|
3310
|
+
],
|
|
3311
|
+
"comments/comment/title": [
|
|
3312
|
+
{
|
|
3313
|
+
"command": "github.copilot.chat.review.markHelpful",
|
|
3314
|
+
"group": "inline@0",
|
|
3315
|
+
"when": "commentController == github-copilot-review"
|
|
3316
|
+
},
|
|
3317
|
+
{
|
|
3318
|
+
"command": "github.copilot.chat.review.markUnhelpful",
|
|
3319
|
+
"group": "inline@1",
|
|
3320
|
+
"when": "commentController == github-copilot-review"
|
|
3321
|
+
}
|
|
3322
|
+
],
|
|
3323
|
+
"commentsView/commentThread/context": [
|
|
3324
|
+
{
|
|
3325
|
+
"command": "github.copilot.chat.review.apply",
|
|
3326
|
+
"group": "context@1",
|
|
3327
|
+
"when": "commentController == github-copilot-review"
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"command": "github.copilot.chat.review.discard",
|
|
3331
|
+
"group": "context@2",
|
|
3332
|
+
"when": "commentController == github-copilot-review"
|
|
3333
|
+
},
|
|
3334
|
+
{
|
|
3335
|
+
"command": "github.copilot.chat.review.discardAll",
|
|
3336
|
+
"group": "context@3",
|
|
3337
|
+
"when": "commentController == github-copilot-review"
|
|
3338
|
+
}
|
|
3339
|
+
],
|
|
3340
|
+
"comments/commentThread/additionalActions": [
|
|
3341
|
+
{
|
|
3342
|
+
"submenu": "copilot/reviewComment/additionalActions/applyAndNext",
|
|
3343
|
+
"group": "inline@1",
|
|
3344
|
+
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments > 1"
|
|
3345
|
+
},
|
|
3346
|
+
{
|
|
3347
|
+
"command": "github.copilot.chat.review.apply",
|
|
3348
|
+
"group": "inline@1",
|
|
3349
|
+
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments == 1"
|
|
3350
|
+
},
|
|
3351
|
+
{
|
|
3352
|
+
"submenu": "copilot/reviewComment/additionalActions/discardAndNext",
|
|
3353
|
+
"group": "inline@2",
|
|
3354
|
+
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments > 1"
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
"submenu": "copilot/reviewComment/additionalActions/discard",
|
|
3358
|
+
"group": "inline@2",
|
|
3359
|
+
"when": "commentController == github-copilot-review && github.copilot.chat.review.numberOfComments == 1"
|
|
3360
|
+
}
|
|
3361
|
+
],
|
|
3362
|
+
"copilot/reviewComment/additionalActions/applyAndNext": [
|
|
3363
|
+
{
|
|
3364
|
+
"command": "github.copilot.chat.review.applyAndNext",
|
|
3365
|
+
"group": "inline@1",
|
|
3366
|
+
"when": "commentController == github-copilot-review"
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
"command": "github.copilot.chat.review.apply",
|
|
3370
|
+
"group": "inline@2",
|
|
3371
|
+
"when": "commentController == github-copilot-review"
|
|
3372
|
+
}
|
|
3373
|
+
],
|
|
3374
|
+
"copilot/reviewComment/additionalActions/discardAndNext": [
|
|
3375
|
+
{
|
|
3376
|
+
"command": "github.copilot.chat.review.discardAndNext",
|
|
3377
|
+
"group": "inline@1",
|
|
3378
|
+
"when": "commentController == github-copilot-review"
|
|
3379
|
+
},
|
|
3380
|
+
{
|
|
3381
|
+
"command": "github.copilot.chat.review.discard",
|
|
3382
|
+
"group": "inline@2",
|
|
3383
|
+
"when": "commentController == github-copilot-review"
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"command": "github.copilot.chat.review.continueInInlineChat",
|
|
3387
|
+
"group": "inline@3",
|
|
3388
|
+
"when": "commentController == github-copilot-review"
|
|
3389
|
+
}
|
|
3390
|
+
],
|
|
3391
|
+
"copilot/reviewComment/additionalActions/discard": [
|
|
3392
|
+
{
|
|
3393
|
+
"command": "github.copilot.chat.review.discard",
|
|
3394
|
+
"group": "inline@2",
|
|
3395
|
+
"when": "commentController == github-copilot-review"
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
"command": "github.copilot.chat.review.continueInInlineChat",
|
|
3399
|
+
"group": "inline@3",
|
|
3400
|
+
"when": "commentController == github-copilot-review"
|
|
3401
|
+
}
|
|
3402
|
+
],
|
|
3403
|
+
"comments/commentThread/title": [
|
|
3404
|
+
{
|
|
3405
|
+
"command": "github.copilot.chat.review.previous",
|
|
3406
|
+
"group": "inline@1",
|
|
3407
|
+
"when": "commentController == github-copilot-review"
|
|
3408
|
+
},
|
|
3409
|
+
{
|
|
3410
|
+
"command": "github.copilot.chat.review.next",
|
|
3411
|
+
"group": "inline@2",
|
|
3412
|
+
"when": "commentController == github-copilot-review"
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"command": "github.copilot.chat.review.continueInChat",
|
|
3416
|
+
"group": "inline@3",
|
|
3417
|
+
"when": "commentController == github-copilot-review"
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"command": "github.copilot.chat.review.discardAll",
|
|
3421
|
+
"group": "inline@4",
|
|
3422
|
+
"when": "commentController == github-copilot-review"
|
|
3423
|
+
}
|
|
3424
|
+
],
|
|
3425
|
+
"scm/title": [
|
|
3426
|
+
{
|
|
3427
|
+
"command": "github.copilot.chat.review.changes",
|
|
3428
|
+
"group": "navigation",
|
|
3429
|
+
"when": "github.copilot.chat.reviewDiff.enabled && !github.copilot.chat.review.sourceControlProgress && scmProvider == git && scmProviderRootUri in github.copilot.chat.reviewDiff.enabledRootUris"
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"command": "github.copilot.chat.review.changes.cancel",
|
|
3433
|
+
"group": "navigation",
|
|
3434
|
+
"when": "github.copilot.chat.reviewDiff.enabled && github.copilot.chat.review.sourceControlProgress && scmProvider == git && scmProviderRootUri in github.copilot.chat.reviewDiff.enabledRootUris"
|
|
3435
|
+
}
|
|
3436
|
+
],
|
|
3437
|
+
"scm/resourceGroup/context": [
|
|
3438
|
+
{
|
|
3439
|
+
"command": "github.copilot.chat.review.stagedChanges",
|
|
3440
|
+
"when": "github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == index",
|
|
3441
|
+
"group": "inline@-3"
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
"command": "github.copilot.chat.review.unstagedChanges",
|
|
3445
|
+
"when": "github.copilot.chat.reviewDiff.enabled && scmProvider == git && scmResourceGroup == workingTree",
|
|
3446
|
+
"group": "inline@-3"
|
|
3447
|
+
}
|
|
3448
|
+
],
|
|
3449
|
+
"scm/inputBox": [
|
|
3450
|
+
{
|
|
3451
|
+
"command": "github.copilot.git.generateCommitMessage",
|
|
3452
|
+
"when": "scmProvider == git"
|
|
3453
|
+
}
|
|
3454
|
+
],
|
|
3455
|
+
"testing/message/context": [
|
|
3456
|
+
{
|
|
3457
|
+
"command": "github.copilot.tests.fixTestFailure",
|
|
3458
|
+
"when": "testing.testItemHasUri",
|
|
3459
|
+
"group": "inline@1"
|
|
3460
|
+
}
|
|
3461
|
+
],
|
|
3462
|
+
"debug/createConfiguration": [
|
|
3463
|
+
{
|
|
3464
|
+
"command": "github.copilot.debug.generateConfiguration",
|
|
3465
|
+
"group": "z_commands",
|
|
3466
|
+
"when": "config.github.copilot.chat.startDebugging.enabled"
|
|
3467
|
+
}
|
|
3468
|
+
],
|
|
3469
|
+
"issue/reporter": [
|
|
3470
|
+
{
|
|
3471
|
+
"command": "github.copilot.report"
|
|
3472
|
+
}
|
|
3473
|
+
],
|
|
3474
|
+
"github.copilot.chat.debug.filter": [
|
|
3475
|
+
{
|
|
3476
|
+
"command": "github.copilot.chat.debug.showElements",
|
|
3477
|
+
"when": "github.copilot.chat.debug.elementsHidden",
|
|
3478
|
+
"group": "commands@0"
|
|
3479
|
+
},
|
|
3480
|
+
{
|
|
3481
|
+
"command": "github.copilot.chat.debug.hideElements",
|
|
3482
|
+
"when": "!github.copilot.chat.debug.elementsHidden",
|
|
3483
|
+
"group": "commands@0"
|
|
3484
|
+
},
|
|
3485
|
+
{
|
|
3486
|
+
"command": "github.copilot.chat.debug.showTools",
|
|
3487
|
+
"when": "github.copilot.chat.debug.toolsHidden",
|
|
3488
|
+
"group": "commands@1"
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"command": "github.copilot.chat.debug.hideTools",
|
|
3492
|
+
"when": "!github.copilot.chat.debug.toolsHidden",
|
|
3493
|
+
"group": "commands@1"
|
|
3494
|
+
},
|
|
3495
|
+
{
|
|
3496
|
+
"command": "github.copilot.chat.debug.showNesRequests",
|
|
3497
|
+
"when": "github.copilot.chat.debug.nesRequestsHidden",
|
|
3498
|
+
"group": "commands@2"
|
|
3499
|
+
},
|
|
3500
|
+
{
|
|
3501
|
+
"command": "github.copilot.chat.debug.hideNesRequests",
|
|
3502
|
+
"when": "!github.copilot.chat.debug.nesRequestsHidden",
|
|
3503
|
+
"group": "commands@2"
|
|
3504
|
+
}
|
|
3505
|
+
],
|
|
3506
|
+
"notebook/toolbar": [
|
|
3507
|
+
{
|
|
3508
|
+
"command": "github.copilot.chat.notebook.enableFollowCellExecution",
|
|
3509
|
+
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && !github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && config.notebook.globalToolbar",
|
|
3510
|
+
"group": "navigation/execute@15"
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"command": "github.copilot.chat.notebook.disableFollowCellExecution",
|
|
3514
|
+
"when": "config.github.copilot.chat.notebook.followCellExecution.enabled && github.copilot.notebookFollowInSessionEnabled && github.copilot.notebookAgentModeUsage && config.notebook.globalToolbar",
|
|
3515
|
+
"group": "navigation/execute@15"
|
|
3516
|
+
}
|
|
3517
|
+
]
|
|
3518
|
+
},
|
|
3519
|
+
"icons": {
|
|
3520
|
+
"copilot-logo": {
|
|
3521
|
+
"description": "%github.copilot.icon%",
|
|
3522
|
+
"default": {
|
|
3523
|
+
"fontPath": "assets/copilot.woff",
|
|
3524
|
+
"fontCharacter": "\\0041"
|
|
3525
|
+
}
|
|
3526
|
+
},
|
|
3527
|
+
"copilot-warning": {
|
|
3528
|
+
"description": "%github.copilot.icon%",
|
|
3529
|
+
"default": {
|
|
3530
|
+
"fontPath": "assets/copilot.woff",
|
|
3531
|
+
"fontCharacter": "\\0042"
|
|
3532
|
+
}
|
|
3533
|
+
},
|
|
3534
|
+
"copilot-notconnected": {
|
|
3535
|
+
"description": "%github.copilot.icon%",
|
|
3536
|
+
"default": {
|
|
3537
|
+
"fontPath": "assets/copilot.woff",
|
|
3538
|
+
"fontCharacter": "\\0043"
|
|
3539
|
+
}
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
3542
|
+
"iconFonts": [
|
|
3543
|
+
{
|
|
3544
|
+
"id": "copilot-font",
|
|
3545
|
+
"src": [
|
|
3546
|
+
{
|
|
3547
|
+
"path": "assets/copilot.woff",
|
|
3548
|
+
"format": "woff"
|
|
3549
|
+
}
|
|
3550
|
+
]
|
|
3551
|
+
}
|
|
3552
|
+
],
|
|
3553
|
+
"terminalQuickFixes": [
|
|
3554
|
+
{
|
|
3555
|
+
"id": "copilot-chat.fixWithCopilot",
|
|
3556
|
+
"commandLineMatcher": ".+",
|
|
3557
|
+
"commandExitResult": "error",
|
|
3558
|
+
"outputMatcher": {
|
|
3559
|
+
"anchor": "bottom",
|
|
3560
|
+
"length": 1,
|
|
3561
|
+
"lineMatcher": ".+",
|
|
3562
|
+
"offset": 0
|
|
3563
|
+
},
|
|
3564
|
+
"kind": "explain"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"id": "copilot-chat.generateCommitMessage",
|
|
3568
|
+
"commandLineMatcher": "git add .+",
|
|
3569
|
+
"commandExitResult": "success",
|
|
3570
|
+
"kind": "explain",
|
|
3571
|
+
"outputMatcher": {
|
|
3572
|
+
"anchor": "bottom",
|
|
3573
|
+
"length": 1,
|
|
3574
|
+
"lineMatcher": ".+",
|
|
3575
|
+
"offset": 0
|
|
3576
|
+
}
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"id": "copilot-chat.terminalToDebugging",
|
|
3580
|
+
"commandLineMatcher": ".+",
|
|
3581
|
+
"kind": "explain",
|
|
3582
|
+
"commandExitResult": "error",
|
|
3583
|
+
"outputMatcher": {
|
|
3584
|
+
"anchor": "bottom",
|
|
3585
|
+
"length": 1,
|
|
3586
|
+
"lineMatcher": "",
|
|
3587
|
+
"offset": 0
|
|
3588
|
+
}
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"id": "copilot-chat.terminalToDebuggingSuccess",
|
|
3592
|
+
"commandLineMatcher": ".+",
|
|
3593
|
+
"kind": "explain",
|
|
3594
|
+
"commandExitResult": "success",
|
|
3595
|
+
"outputMatcher": {
|
|
3596
|
+
"anchor": "bottom",
|
|
3597
|
+
"length": 1,
|
|
3598
|
+
"lineMatcher": "",
|
|
3599
|
+
"offset": 0
|
|
3600
|
+
}
|
|
3601
|
+
}
|
|
3602
|
+
],
|
|
3603
|
+
"languages": [
|
|
3604
|
+
{
|
|
3605
|
+
"id": "ignore",
|
|
3606
|
+
"filenamePatterns": [
|
|
3607
|
+
".copilotignore"
|
|
3608
|
+
],
|
|
3609
|
+
"aliases": []
|
|
3610
|
+
},
|
|
3611
|
+
{
|
|
3612
|
+
"id": "markdown",
|
|
3613
|
+
"extensions": [
|
|
3614
|
+
".copilotmd"
|
|
3615
|
+
]
|
|
3616
|
+
},
|
|
3617
|
+
{
|
|
3618
|
+
"id": "chatReplay",
|
|
3619
|
+
"aliases": [
|
|
3620
|
+
"chatReplay",
|
|
3621
|
+
"Chat Replay"
|
|
3622
|
+
],
|
|
3623
|
+
"extensions": [
|
|
3624
|
+
".chatReplay.json",
|
|
3625
|
+
".chatreplay.json"
|
|
3626
|
+
]
|
|
3627
|
+
}
|
|
3628
|
+
],
|
|
3629
|
+
"views": {
|
|
3630
|
+
"copilot-chat": [
|
|
3631
|
+
{
|
|
3632
|
+
"id": "copilot-chat",
|
|
3633
|
+
"name": "Copilot Chat Debug",
|
|
3634
|
+
"icon": "assets/debug-icon.svg",
|
|
3635
|
+
"when": "github.copilot.chat.showLogView"
|
|
3636
|
+
}
|
|
3637
|
+
],
|
|
3638
|
+
"context-inspector": [
|
|
3639
|
+
{
|
|
3640
|
+
"id": "context-inspector",
|
|
3641
|
+
"name": "Language Context Inspector",
|
|
3642
|
+
"icon": "$(inspect)",
|
|
3643
|
+
"when": "github.copilot.chat.showContextInspectorView"
|
|
3644
|
+
}
|
|
3645
|
+
]
|
|
3646
|
+
},
|
|
3647
|
+
"viewsContainers": {
|
|
3648
|
+
"activitybar": [
|
|
3649
|
+
{
|
|
3650
|
+
"id": "copilot-chat",
|
|
3651
|
+
"title": "Copilot Chat Debug",
|
|
3652
|
+
"icon": "assets/debug-icon.svg"
|
|
3653
|
+
},
|
|
3654
|
+
{
|
|
3655
|
+
"id": "context-inspector",
|
|
3656
|
+
"title": "Language Context Inspector",
|
|
3657
|
+
"icon": "$(inspect)"
|
|
3658
|
+
}
|
|
3659
|
+
]
|
|
3660
|
+
},
|
|
3661
|
+
"configurationDefaults": {
|
|
3662
|
+
"workbench.editorAssociations": {
|
|
3663
|
+
"*.copilotmd": "vscode.markdown.preview.editor"
|
|
3664
|
+
}
|
|
3665
|
+
},
|
|
3666
|
+
"keybindings": [
|
|
3667
|
+
{
|
|
3668
|
+
"command": "github.copilot.chat.rerunWithCopilotDebug",
|
|
3669
|
+
"key": "ctrl+alt+.",
|
|
3670
|
+
"mac": "cmd+alt+.",
|
|
3671
|
+
"when": "github.copilot-chat.activated && terminalShellIntegrationEnabled && terminalFocus && !terminalAltBufferActive"
|
|
3672
|
+
}
|
|
3673
|
+
],
|
|
3674
|
+
"walkthroughs": [
|
|
3675
|
+
{
|
|
3676
|
+
"id": "copilotWelcome",
|
|
3677
|
+
"title": "%github.copilot.walkthrough.title%",
|
|
3678
|
+
"description": "%github.copilot.walkthrough.description%",
|
|
3679
|
+
"when": "!isWeb",
|
|
3680
|
+
"steps": [
|
|
3681
|
+
{
|
|
3682
|
+
"id": "copilot.setup.signIn",
|
|
3683
|
+
"title": "%github.copilot.walkthrough.setup.signIn.title%",
|
|
3684
|
+
"description": "%github.copilot.walkthrough.setup.signIn.description%",
|
|
3685
|
+
"when": "chatEntitlementSignedOut && !view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && !github.copilot.interactiveSession.individual.disabled && !github.copilot.interactiveSession.individual.expired && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport",
|
|
3686
|
+
"media": {
|
|
3687
|
+
"video": {
|
|
3688
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
|
|
3689
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
|
|
3690
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
|
|
3691
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
|
|
3692
|
+
},
|
|
3693
|
+
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
|
|
3694
|
+
}
|
|
3695
|
+
},
|
|
3696
|
+
{
|
|
3697
|
+
"id": "copilot.setup.signInNoAction",
|
|
3698
|
+
"title": "%github.copilot.walkthrough.setup.signIn.title%",
|
|
3699
|
+
"description": "%github.copilot.walkthrough.setup.noAction.description%",
|
|
3700
|
+
"when": "chatEntitlementSignedOut && view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && !github.copilot.interactiveSession.individual.disabled && !github.copilot.interactiveSession.individual.expired && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport",
|
|
3701
|
+
"media": {
|
|
3702
|
+
"video": {
|
|
3703
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
|
|
3704
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
|
|
3705
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
|
|
3706
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
|
|
3707
|
+
},
|
|
3708
|
+
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
|
|
3709
|
+
}
|
|
3710
|
+
},
|
|
3711
|
+
{
|
|
3712
|
+
"id": "copilot.setup.signUp",
|
|
3713
|
+
"title": "%github.copilot.walkthrough.setup.signUp.title%",
|
|
3714
|
+
"description": "%github.copilot.walkthrough.setup.signUp.description%",
|
|
3715
|
+
"when": "chatPlanCanSignUp && !view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && (github.copilot.interactiveSession.individual.disabled || github.copilot.interactiveSession.individual.expired) && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport",
|
|
3716
|
+
"media": {
|
|
3717
|
+
"video": {
|
|
3718
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
|
|
3719
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
|
|
3720
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
|
|
3721
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
|
|
3722
|
+
},
|
|
3723
|
+
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
|
|
3724
|
+
}
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
"id": "copilot.setup.signUpNoAction",
|
|
3728
|
+
"title": "%github.copilot.walkthrough.setup.signUp.title%",
|
|
3729
|
+
"description": "%github.copilot.walkthrough.setup.noAction.description%",
|
|
3730
|
+
"when": "chatPlanCanSignUp && view.workbench.panel.chat.view.copilot.visible && !github.copilot-chat.activated && !github.copilot.offline && (github.copilot.interactiveSession.individual.disabled || github.copilot.interactiveSession.individual.expired) && !github.copilot.interactiveSession.enterprise.disabled && !github.copilot.interactiveSession.contactSupport",
|
|
3731
|
+
"media": {
|
|
3732
|
+
"video": {
|
|
3733
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
|
|
3734
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
|
|
3735
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
|
|
3736
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
|
|
3737
|
+
},
|
|
3738
|
+
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
|
|
3739
|
+
}
|
|
3740
|
+
},
|
|
3741
|
+
{
|
|
3742
|
+
"id": "copilot.panelChat",
|
|
3743
|
+
"title": "%github.copilot.walkthrough.panelChat.title%",
|
|
3744
|
+
"description": "%github.copilot.walkthrough.panelChat.description%",
|
|
3745
|
+
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
|
|
3746
|
+
"media": {
|
|
3747
|
+
"video": {
|
|
3748
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace.mp4",
|
|
3749
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-light.mp4",
|
|
3750
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hc.mp4",
|
|
3751
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/workspace-hclight.mp4"
|
|
3752
|
+
},
|
|
3753
|
+
"altText": "%github.copilot.walkthrough.panelChat.media.altText%"
|
|
3754
|
+
}
|
|
3755
|
+
},
|
|
3756
|
+
{
|
|
3757
|
+
"id": "copilot.edits",
|
|
3758
|
+
"title": "%github.copilot.walkthrough.edits.title%",
|
|
3759
|
+
"description": "%github.copilot.walkthrough.edits.description%",
|
|
3760
|
+
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
|
|
3761
|
+
"media": {
|
|
3762
|
+
"video": {
|
|
3763
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits.mp4",
|
|
3764
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-light.mp4",
|
|
3765
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-hc.mp4",
|
|
3766
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/edits-hclight.mp4"
|
|
3767
|
+
},
|
|
3768
|
+
"altText": "%github.copilot.walkthrough.edits.media.altText%"
|
|
3769
|
+
}
|
|
3770
|
+
},
|
|
3771
|
+
{
|
|
3772
|
+
"id": "copilot.firstSuggest",
|
|
3773
|
+
"title": "%github.copilot.walkthrough.firstSuggest.title%",
|
|
3774
|
+
"description": "%github.copilot.walkthrough.firstSuggest.description%",
|
|
3775
|
+
"when": "!chatEntitlementSignedOut || chatIsEnabled ",
|
|
3776
|
+
"media": {
|
|
3777
|
+
"video": {
|
|
3778
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text.mp4",
|
|
3779
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-light.mp4",
|
|
3780
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-hc.mp4",
|
|
3781
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/ghost-text-hclight.mp4"
|
|
3782
|
+
},
|
|
3783
|
+
"altText": "%github.copilot.walkthrough.firstSuggest.media.altText%"
|
|
3784
|
+
}
|
|
3785
|
+
},
|
|
3786
|
+
{
|
|
3787
|
+
"id": "copilot.inlineChatNotMac",
|
|
3788
|
+
"title": "%github.copilot.walkthrough.inlineChatNotMac.title%",
|
|
3789
|
+
"description": "%github.copilot.walkthrough.inlineChatNotMac.description%",
|
|
3790
|
+
"when": "!isMac && (!chatEntitlementSignedOut || chatIsEnabled )",
|
|
3791
|
+
"media": {
|
|
3792
|
+
"video": {
|
|
3793
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline.mp4",
|
|
3794
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-light.mp4",
|
|
3795
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hc.mp4",
|
|
3796
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hclight.mp4"
|
|
3797
|
+
},
|
|
3798
|
+
"altText": "%github.copilot.walkthrough.inlineChatNotMac.media.altText%"
|
|
3799
|
+
}
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
"id": "copilot.inlineChatMac",
|
|
3803
|
+
"title": "%github.copilot.walkthrough.inlineChatMac.title%",
|
|
3804
|
+
"description": "%github.copilot.walkthrough.inlineChatMac.description%",
|
|
3805
|
+
"when": "isMac && (!chatEntitlementSignedOut || chatIsEnabled )",
|
|
3806
|
+
"media": {
|
|
3807
|
+
"video": {
|
|
3808
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline.mp4",
|
|
3809
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-light.mp4",
|
|
3810
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hc.mp4",
|
|
3811
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/inline-hclight.mp4"
|
|
3812
|
+
},
|
|
3813
|
+
"altText": "%github.copilot.walkthrough.inlineChatMac.media.altText%"
|
|
3814
|
+
}
|
|
3815
|
+
},
|
|
3816
|
+
{
|
|
3817
|
+
"id": "copilot.sparkle",
|
|
3818
|
+
"title": "%github.copilot.walkthrough.sparkle.title%",
|
|
3819
|
+
"description": "%github.copilot.walkthrough.sparkle.description%",
|
|
3820
|
+
"when": "!chatEntitlementSignedOut || chatIsEnabled",
|
|
3821
|
+
"media": {
|
|
3822
|
+
"video": {
|
|
3823
|
+
"dark": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit.mp4",
|
|
3824
|
+
"light": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-light.mp4",
|
|
3825
|
+
"hc": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-hc.mp4",
|
|
3826
|
+
"hcLight": "https://vscodewalkthroughs.z1.web.core.windows.net/v0.26/git-commit-hclight.mp4"
|
|
3827
|
+
},
|
|
3828
|
+
"altText": "%github.copilot.walkthrough.sparkle.media.altText%"
|
|
3829
|
+
}
|
|
3830
|
+
}
|
|
3831
|
+
]
|
|
3832
|
+
}
|
|
3833
|
+
],
|
|
3834
|
+
"jsonValidation": [
|
|
3835
|
+
{
|
|
3836
|
+
"fileMatch": "settings.json",
|
|
3837
|
+
"url": "ccsettings://root/schema.json"
|
|
3838
|
+
}
|
|
3839
|
+
],
|
|
3840
|
+
"typescriptServerPlugins": [
|
|
3841
|
+
{
|
|
3842
|
+
"name": "@vscode/copilot-typescript-server-plugin",
|
|
3843
|
+
"enableForWorkspaceTypeScriptVersions": true
|
|
3844
|
+
}
|
|
3845
|
+
],
|
|
3846
|
+
"chatSessions": [
|
|
3847
|
+
{
|
|
3848
|
+
"type": "claude-code",
|
|
3849
|
+
"name": "claude",
|
|
3850
|
+
"displayName": "Claude Code",
|
|
3851
|
+
"description": "The Claude Code agent",
|
|
3852
|
+
"when": "config.github.copilot.chat.advanced.claudeCode.enabled",
|
|
3853
|
+
"capabilities": {
|
|
3854
|
+
"supportsFileAttachments": true,
|
|
3855
|
+
"supportsToolAttachments": false
|
|
3856
|
+
}
|
|
3857
|
+
}
|
|
3858
|
+
],
|
|
3859
|
+
"debuggers": [
|
|
3860
|
+
{
|
|
3861
|
+
"type": "vscode-chat-replay",
|
|
3862
|
+
"label": "vscode-chat-replay",
|
|
3863
|
+
"languages": [
|
|
3864
|
+
"chatReplay"
|
|
3865
|
+
],
|
|
3866
|
+
"configurationAttributes": {
|
|
3867
|
+
"launch": {
|
|
3868
|
+
"properties": {
|
|
3869
|
+
"program": {
|
|
3870
|
+
"type": "string",
|
|
3871
|
+
"description": "Chat replay file to debug (parse for headers)",
|
|
3872
|
+
"default": "${file}"
|
|
3873
|
+
},
|
|
3874
|
+
"stopOnEntry": {
|
|
3875
|
+
"type": "boolean",
|
|
3876
|
+
"default": true,
|
|
3877
|
+
"description": "Break immediately to step through manually."
|
|
3878
|
+
}
|
|
3879
|
+
},
|
|
3880
|
+
"required": [
|
|
3881
|
+
"program"
|
|
3882
|
+
]
|
|
3883
|
+
}
|
|
3884
|
+
},
|
|
3885
|
+
"initialConfigurations": [
|
|
3886
|
+
{
|
|
3887
|
+
"type": "vscode-chat-replay",
|
|
3888
|
+
"request": "launch",
|
|
3889
|
+
"name": "Debug Chat Replay",
|
|
3890
|
+
"program": "${file}",
|
|
3891
|
+
"stopOnEntry": true
|
|
3892
|
+
}
|
|
3893
|
+
]
|
|
3894
|
+
}
|
|
3895
|
+
]
|
|
3896
|
+
},
|
|
3897
|
+
"extensionPack": [
|
|
3898
|
+
"GitHub.copilot"
|
|
3899
|
+
],
|
|
3900
|
+
"prettier": {
|
|
3901
|
+
"useTabs": true,
|
|
3902
|
+
"tabWidth": 4,
|
|
3903
|
+
"singleQuote": true
|
|
3904
|
+
},
|
|
3905
|
+
"scripts": {
|
|
3906
|
+
"postinstall": "tsx ./script/postinstall.ts",
|
|
3907
|
+
"prepare": "husky",
|
|
3908
|
+
"vscode-dts:dev": "node node_modules/@vscode/dts/index.js dev && mv vscode.proposed.*.ts src/extension",
|
|
3909
|
+
"vscode-dts:main": "node node_modules/@vscode/dts/index.js main && mv vscode.d.ts src/extension",
|
|
3910
|
+
"build": "tsx .esbuild.ts",
|
|
3911
|
+
"compile": "tsx .esbuild.ts --dev",
|
|
3912
|
+
"watch": "npm-run-all -p watch:*",
|
|
3913
|
+
"watch:esbuild": "tsx .esbuild.ts --watch --dev",
|
|
3914
|
+
"watch:tsc-extension": "tsc --noEmit --watch --project tsconfig.json",
|
|
3915
|
+
"watch:tsc-extension-web": "tsc --noEmit --watch --project tsconfig.worker.json",
|
|
3916
|
+
"watch:tsc-simulation-workbench": "tsc --noEmit --watch --project test/simulation/workbench/tsconfig.json",
|
|
3917
|
+
"typecheck": "tsc --noEmit --project tsconfig.json && tsc --noEmit --project test/simulation/workbench/tsconfig.json && tsc --noEmit --project tsconfig.worker.json",
|
|
3918
|
+
"lint": "eslint . --max-warnings=0",
|
|
3919
|
+
"lint-staged": "eslint --max-warnings=0",
|
|
3920
|
+
"tsfmt": "npx tsfmt -r --verify",
|
|
3921
|
+
"test": "npm-run-all test:*",
|
|
3922
|
+
"test:extension": "vscode-test",
|
|
3923
|
+
"test:sanity": "vscode-test --sanity",
|
|
3924
|
+
"test:unit": "vitest --run --pool=forks",
|
|
3925
|
+
"vitest": "vitest",
|
|
3926
|
+
"bench": "vitest bench",
|
|
3927
|
+
"get_env": "tsx script/setup/getEnv.mts",
|
|
3928
|
+
"get_token": "tsx script/setup/getToken.mts",
|
|
3929
|
+
"prettier": "prettier --list-different --write --cache .",
|
|
3930
|
+
"simulate": "node dist/simulationMain.js",
|
|
3931
|
+
"simulate-require-cache": "node dist/simulationMain.js --require-cache",
|
|
3932
|
+
"simulate-ci": "node dist/simulationMain.js --ci --require-cache",
|
|
3933
|
+
"simulate-update-baseline": "node dist/simulationMain.js --update-baseline",
|
|
3934
|
+
"simulate-gc": "node dist/simulationMain.js --require-cache --gc",
|
|
3935
|
+
"setup": "npm run get_env && npm run get_token",
|
|
3936
|
+
"setup:dotnet": "run-script-os",
|
|
3937
|
+
"setup:dotnet:darwin:linux": "curl -O https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.sh && chmod u+x dotnet-install.sh && ./dotnet-install.sh --channel 10.0 && rm dotnet-install.sh",
|
|
3938
|
+
"setup:dotnet:win32": "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"Invoke-WebRequest -Uri https://raw.githubusercontent.com/dotnet/install-scripts/main/src/dotnet-install.ps1 -OutFile dotnet-install.ps1; ./dotnet-install.ps1 -channel 10.0; Remove-Item dotnet-install.ps1\"",
|
|
3939
|
+
"extract-chat-lib": "tsx script/build/extractChatLib.ts",
|
|
3940
|
+
"create_venv": "tsx script/setup/createVenv.mts",
|
|
3941
|
+
"package": "vsce package",
|
|
3942
|
+
"web": "vscode-test-web --headless --extensionDevelopmentPath=. ."
|
|
3943
|
+
},
|
|
3944
|
+
"devDependencies": {
|
|
3945
|
+
"@azure/identity": "4.9.1",
|
|
3946
|
+
"@azure/keyvault-secrets": "^4.10.0",
|
|
3947
|
+
"@azure/msal-node": "^3.6.3",
|
|
3948
|
+
"@c4312/scip": "^0.1.0",
|
|
3949
|
+
"@fluentui/react-components": "^9.66.6",
|
|
3950
|
+
"@fluentui/react-icons": "^2.0.305",
|
|
3951
|
+
"@hediet/node-reload": "^0.8.0",
|
|
3952
|
+
"@keyv/sqlite": "^4.0.5",
|
|
3953
|
+
"@nteract/messaging": "^7.0.20",
|
|
3954
|
+
"@parcel/watcher": "^2.5.1",
|
|
3955
|
+
"@stylistic/eslint-plugin": "^3.0.1",
|
|
3956
|
+
"@types/eslint": "^9.0.0",
|
|
3957
|
+
"@types/google-protobuf": "^3.15.12",
|
|
3958
|
+
"@types/js-yaml": "^4.0.9",
|
|
3959
|
+
"@types/markdown-it": "^14.0.0",
|
|
3960
|
+
"@types/minimist": "^1.2.5",
|
|
3961
|
+
"@types/mocha": "^10.0.10",
|
|
3962
|
+
"@types/node": "^22.16.3",
|
|
3963
|
+
"@types/picomatch": "^4.0.0",
|
|
3964
|
+
"@types/react": "17.0.44",
|
|
3965
|
+
"@types/react-dom": "^18.2.17",
|
|
3966
|
+
"@types/sinon": "^17.0.4",
|
|
3967
|
+
"@types/source-map-support": "^0.5.10",
|
|
3968
|
+
"@types/tar": "^6.1.13",
|
|
3969
|
+
"@types/vinyl": "^2.0.12",
|
|
3970
|
+
"@types/vscode": "^1.102.0",
|
|
3971
|
+
"@typescript-eslint/eslint-plugin": "^8.35.0",
|
|
3972
|
+
"@typescript-eslint/parser": "^8.32.0",
|
|
3973
|
+
"@typescript-eslint/typescript-estree": "^8.26.1",
|
|
3974
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
3975
|
+
"@vitest/snapshot": "^1.5.0",
|
|
3976
|
+
"@vscode/debugadapter": "^1.68.0",
|
|
3977
|
+
"@vscode/debugprotocol": "^1.68.0",
|
|
3978
|
+
"@vscode/dts": "^0.4.1",
|
|
3979
|
+
"@vscode/lsif-language-service": "^0.1.0-pre.4",
|
|
3980
|
+
"@vscode/test-cli": "^0.0.11",
|
|
3981
|
+
"@vscode/test-electron": "^2.5.2",
|
|
3982
|
+
"@vscode/test-web": "^0.0.71",
|
|
3983
|
+
"@vscode/vsce": "3.6.0",
|
|
3984
|
+
"@vscode/zeromq": "0.2.7",
|
|
3985
|
+
"copyfiles": "^2.4.1",
|
|
3986
|
+
"csv-parse": "^6.0.0",
|
|
3987
|
+
"dotenv": "^17.2.0",
|
|
3988
|
+
"electron": "^37.2.1",
|
|
3989
|
+
"esbuild": "^0.25.6",
|
|
3990
|
+
"eslint": "^9.30.0",
|
|
3991
|
+
"eslint-import-resolver-typescript": "^4.4.4",
|
|
3992
|
+
"eslint-plugin-header": "^3.1.1",
|
|
3993
|
+
"eslint-plugin-import": "^2.32.0",
|
|
3994
|
+
"eslint-plugin-jsdoc": "^51.3.4",
|
|
3995
|
+
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
3996
|
+
"fastq": "^1.19.1",
|
|
3997
|
+
"glob": "^11.0.3",
|
|
3998
|
+
"husky": "^9.1.7",
|
|
3999
|
+
"js-yaml": "^4.1.0",
|
|
4000
|
+
"keyv": "^5.3.2",
|
|
4001
|
+
"lint-staged": "15.2.9",
|
|
4002
|
+
"minimist": "^1.2.8",
|
|
4003
|
+
"mobx": "^6.13.7",
|
|
4004
|
+
"mobx-react-lite": "^4.1.0",
|
|
4005
|
+
"mocha": "^11.7.1",
|
|
4006
|
+
"monaco-editor": "0.44.0",
|
|
4007
|
+
"npm-run-all": "^4.1.5",
|
|
4008
|
+
"open": "^10.1.2",
|
|
4009
|
+
"openai": "^5.11.0",
|
|
4010
|
+
"outdent": "^0.8.0",
|
|
4011
|
+
"picomatch": "^4.0.2",
|
|
4012
|
+
"playwright": "^1.54.0",
|
|
4013
|
+
"prettier": "^3.6.2",
|
|
4014
|
+
"react": "^17.0.2",
|
|
4015
|
+
"react-dom": "17.0.2",
|
|
4016
|
+
"run-script-os": "^1.1.6",
|
|
4017
|
+
"sinon": "^21.0.0",
|
|
4018
|
+
"source-map-support": "^0.5.21",
|
|
4019
|
+
"tar": "^7.4.3",
|
|
4020
|
+
"ts-dedent": "^2.2.0",
|
|
4021
|
+
"tsx": "^4.20.3",
|
|
4022
|
+
"typescript": "^5.8.3",
|
|
4023
|
+
"typescript-eslint": "^8.36.0",
|
|
4024
|
+
"typescript-formatter": "github:jrieken/typescript-formatter#497efb26bc40b5fa59a350e6eab17bce650a7e4b",
|
|
4025
|
+
"vite-plugin-top-level-await": "^1.5.0",
|
|
4026
|
+
"vite-plugin-wasm": "^3.5.0",
|
|
4027
|
+
"vitest": "^3.0.5",
|
|
4028
|
+
"vscode-languageserver-protocol": "^3.17.5",
|
|
4029
|
+
"vscode-languageserver-textdocument": "^1.0.12",
|
|
4030
|
+
"vscode-languageserver-types": "^3.17.5",
|
|
4031
|
+
"yaml": "^2.8.0",
|
|
4032
|
+
"zeromq": "github:rebornix/zeromq.js#a19e8e373b3abc677f91b936d3f00d49b1b61792"
|
|
4033
|
+
},
|
|
4034
|
+
"dependencies": {
|
|
4035
|
+
"@anthropic-ai/claude-code": "1.0.93",
|
|
4036
|
+
"@anthropic-ai/sdk": "^0.56.0",
|
|
4037
|
+
"@humanwhocodes/gitignore-to-minimatch": "1.0.2",
|
|
4038
|
+
"@microsoft/tiktokenizer": "^1.0.10",
|
|
4039
|
+
"@vscode/copilot-api": "^0.1.6",
|
|
4040
|
+
"@vscode/extension-telemetry": "^1.0.0",
|
|
4041
|
+
"@vscode/l10n": "^0.0.18",
|
|
4042
|
+
"@vscode/prompt-tsx": "^0.4.0-alpha.5",
|
|
4043
|
+
"@vscode/tree-sitter-wasm": "^0.0.5",
|
|
4044
|
+
"@xterm/headless": "^5.5.0",
|
|
4045
|
+
"ajv": "^8.17.1",
|
|
4046
|
+
"applicationinsights": "^2.9.7",
|
|
4047
|
+
"diff": "^8.0.2",
|
|
4048
|
+
"ignore": "^7.0.5",
|
|
4049
|
+
"isbinaryfile": "^5.0.4",
|
|
4050
|
+
"jsonc-parser": "^3.3.1",
|
|
4051
|
+
"lru-cache": "^11.1.0",
|
|
4052
|
+
"markdown-it": "^14.1.0",
|
|
4053
|
+
"minimatch": "^10.0.3",
|
|
4054
|
+
"undici": "^7.11.0",
|
|
4055
|
+
"vscode-tas-client": "^0.1.84",
|
|
4056
|
+
"web-tree-sitter": "^0.23.0"
|
|
4057
|
+
},
|
|
4058
|
+
"overrides": {
|
|
4059
|
+
"@aminya/node-gyp-build": "npm:node-gyp-build@4.8.1",
|
|
4060
|
+
"string_decoder": "npm:string_decoder@1.2.0",
|
|
4061
|
+
"node-gyp": "npm:node-gyp@10.3.1"
|
|
4062
|
+
}
|
|
4063
|
+
}
|