@codingame/monaco-vscode-chat-service-override 36.2.7 → 37.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -0
- package/index.js +92 -10
- package/package.json +5 -5
- package/vscode/src/vs/platform/agentHost/browser/agentHostConnectionsService.d.ts +10 -3
- package/vscode/src/vs/platform/agentHost/browser/agentHostConnectionsService.js +54 -17
- package/vscode/src/vs/platform/agentHost/browser/agentHostEnablementService.d.ts +14 -0
- package/vscode/src/vs/platform/agentHost/browser/agentHostEnablementService.js +46 -0
- package/vscode/src/vs/platform/agentHost/browser/agentHostIpcChannelTransport.d.ts +7 -2
- package/vscode/src/vs/platform/agentHost/browser/agentHostIpcChannelTransport.js +34 -2
- package/vscode/src/vs/platform/agentHost/browser/{remoteAgentHostProtocolClient.d.ts → agentHostProtocolClient.d.ts} +240 -60
- package/vscode/src/vs/platform/agentHost/browser/agentHostProtocolClient.js +1911 -0
- package/vscode/src/vs/platform/agentHost/browser/remoteAgentHostServiceImpl.d.ts +30 -33
- package/vscode/src/vs/platform/agentHost/browser/remoteAgentHostServiceImpl.js +381 -315
- package/vscode/src/vs/platform/agentHost/browser/webSocketClientTransport.d.ts +3 -1
- package/vscode/src/vs/platform/agentHost/browser/webSocketClientTransport.js +2 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostClientInfo.d.ts +9 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostClientInfo.js +20 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostExtensionProtocol.d.ts +144 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostExtensionProtocol.js +20 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostFileSystemProvider.d.ts +14 -6
- package/vscode/src/vs/platform/agentHost/common/agentHostFileSystemProvider.js +14 -10
- package/vscode/src/vs/platform/agentHost/common/agentHostFileSystemService.js +1 -1
- package/vscode/src/vs/platform/agentHost/common/agentHostManagedRules.d.ts +47 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostManagedRules.js +75 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostManagedSettings.d.ts +68 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostManagedSettings.js +161 -0
- package/vscode/src/vs/platform/agentHost/common/agentHostStarter.config.contribution.js +288 -45
- package/vscode/src/vs/platform/agentHost/common/agentMerge.d.ts +261 -0
- package/vscode/src/vs/platform/agentHost/common/agentMerge.js +67 -0
- package/vscode/src/vs/platform/agentHost/common/agentSdkSetup.d.ts +53 -0
- package/vscode/src/vs/platform/agentHost/common/agentSdkSetup.js +45 -0
- package/vscode/src/vs/platform/agentHost/common/changesetUri.d.ts +130 -0
- package/vscode/src/vs/platform/agentHost/common/changesetUri.js +27 -0
- package/vscode/src/vs/platform/agentHost/common/customAgents.d.ts +8 -2
- package/vscode/src/vs/platform/agentHost/common/customAgents.js +7 -0
- package/vscode/src/vs/platform/agentHost/common/meta/agentChatSurfaceMeta.d.ts +39 -0
- package/vscode/src/vs/platform/agentHost/common/meta/agentChatSurfaceMeta.js +25 -0
- package/vscode/src/vs/platform/agentHost/common/meta/agentCompletionAttachmentMeta.d.ts +110 -0
- package/vscode/src/vs/platform/agentHost/common/meta/agentCompletionAttachmentMeta.js +38 -0
- package/vscode/src/vs/platform/agentHost/common/meta/agentHostArtifactRemovalMeta.d.ts +4 -0
- package/vscode/src/vs/platform/agentHost/common/meta/clientPluginCustomizationMeta.d.ts +7 -0
- package/vscode/src/vs/platform/agentHost/common/meta/clientPluginCustomizationMeta.js +14 -0
- package/vscode/src/vs/platform/agentHost/common/sandboxConfigSchema.d.ts +3 -3
- package/vscode/src/vs/platform/agentHost/common/sandboxConfigSchema.js +16 -24
- package/vscode/src/vs/platform/agentHost/common/semanticSearchConstants.d.ts +8 -0
- package/vscode/src/vs/platform/agentHost/common/semanticSearchConstants.js +8 -0
- package/vscode/src/vs/platform/agentHost/common/sessionArtifacts.d.ts +75 -0
- package/vscode/src/vs/platform/agentHost/common/sessionArtifacts.js +84 -0
- package/vscode/src/vs/platform/agentHost/common/shellInitScript.d.ts +24 -0
- package/vscode/src/vs/platform/agentHost/common/shellInitScript.js +63 -0
- package/vscode/src/vs/platform/agentHost/common/state/agentSubscription.d.ts +71 -20
- package/vscode/src/vs/platform/agentHost/common/state/agentSubscription.js +187 -26
- package/vscode/src/vs/platform/agentHost/common/state/legacyProtocolCompatibility.d.ts +30 -0
- package/vscode/src/vs/platform/agentHost/common/state/legacyProtocolCompatibility.js +87 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-annotations/reducer.js +2 -2
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-automation/reducer.d.ts +4 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-automation/reducer.js +37 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-automation-run/reducer.d.ts +4 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-automation-run/reducer.js +45 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-changeset/reducer.d.ts +5 -4
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-changeset/reducer.js +100 -35
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-chat/reducer.js +193 -49
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-session/reducer.js +161 -40
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-terminal/reducer.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/channels-terminal/reducer.js +5 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/common/reducer-helpers.d.ts +2 -2
- package/vscode/src/vs/platform/agentHost/common/state/protocol/common/timestamps.d.ts +1 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/common/timestamps.js +7 -0
- package/vscode/src/vs/platform/agentHost/common/state/protocol/version/registry.d.ts +1 -1
- package/vscode/src/vs/platform/agentHost/common/state/protocol/version/registry.js +114 -3
- package/vscode/src/vs/platform/agentHost/common/state/sessionActions.d.ts +28 -5
- package/vscode/src/vs/platform/agentHost/common/state/sessionActions.js +4 -2
- package/vscode/src/vs/platform/agentHost/common/state/sessionWorkingDirectories.d.ts +34 -0
- package/vscode/src/vs/platform/agentHost/common/state/sessionWorkingDirectories.js +28 -0
- package/vscode/src/vs/platform/agentHost/common/worktreePaths.d.ts +24 -0
- package/vscode/src/vs/platform/agentHost/common/worktreePaths.js +15 -0
- package/vscode/src/vs/platform/browserView/common/browserChatToolReferenceNames.d.ts +1 -1
- package/vscode/src/vs/platform/chat/common/aiAgentEnv.d.ts +18 -0
- package/vscode/src/vs/platform/chat/common/aiAgentEnv.js +6 -0
- package/vscode/src/vs/platform/networkFilter/common/domainMatcher.d.ts +5 -1
- package/vscode/src/vs/platform/networkFilter/common/domainMatcher.js +77 -5
- package/vscode/src/vs/platform/networkFilter/common/networkFilterService.d.ts +1 -1
- package/vscode/src/vs/platform/networkFilter/common/networkFilterService.js +9 -5
- package/vscode/src/vs/platform/networkFilter/common/settings.d.ts +1 -5
- package/vscode/src/vs/platform/networkFilter/common/settings.js +0 -4
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxEngine.d.ts +19 -7
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxEngine.js +49 -37
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxReadAllowList.d.ts +2 -1
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxReadAllowList.js +12 -0
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxRuntimeConfigurationPerOperation.js +1 -2
- package/vscode/src/vs/platform/sandbox/common/terminalSandboxService.d.ts +1 -0
- package/vscode/src/vs/platform/terminal/common/autoApprove/autoApproveParseSafety.d.ts +5 -0
- package/vscode/src/vs/platform/terminal/common/autoApprove/autoApproveParseSafety.js +7 -0
- package/vscode/src/vs/platform/terminal/common/autoApprove/cmdDelayedExpansion.d.ts +5 -0
- package/vscode/src/vs/platform/terminal/common/autoApprove/cmdDelayedExpansion.js +8 -0
- package/vscode/src/vs/{workbench/contrib/terminalContrib/chatAgentTools/browser/commandParsers → platform/terminal/common/autoApprove}/sedFileWriteParser.d.ts +1 -2
- package/vscode/src/vs/workbench/browser/chatChangesPill.d.ts +29 -0
- package/vscode/src/vs/workbench/browser/chatChangesPill.js +84 -0
- package/vscode/src/vs/workbench/common/chatPullRequest.d.ts +19 -0
- package/vscode/src/vs/workbench/common/chatPullRequest.js +53 -0
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoice.contribution.js +342 -155
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceSessionsPicker.js +2 -2
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWidget.d.ts +25 -2
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWidget.js +150 -67
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWidgetBinding.js +5 -3
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/agentsVoiceWindowService.js +39 -9
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/confirmationComponent.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/confirmationComponent.js +3 -3
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/feedbackDialog.js +6 -6
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/headerComponent.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/headerComponent.js +54 -17
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/onboardingComponent.js +11 -11
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/sessionListComponent.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/sessionListComponent.js +9 -9
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/statusRowsComponent.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/statusRowsComponent.js +5 -5
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/tokens.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/tokens.js +5 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/transcriptComponent.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/voiceBarComponent.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/components/voiceBarComponent.js +2 -2
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/media/voiceModeOnboarding.css +252 -0
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/transcriptsView/voiceTranscripts.contribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/transcriptsView/voiceTranscriptsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/voiceModeOnboarding.d.ts +146 -0
- package/vscode/src/vs/workbench/contrib/agentsVoice/browser/voiceModeOnboarding.js +889 -0
- package/vscode/src/vs/workbench/contrib/agentsVoice/common/voiceTranscriptStore.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatAccessibilityService.d.ts +2 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatAccessibilityService.js +3 -54
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatResponseAccessibleView.d.ts +32 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/accessibility/chatResponseAccessibleView.js +214 -161
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityActions.js +10 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAccessibilityHelp.js +256 -72
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatAgentRecommendationActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +11 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.js +19 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatContextActions.js +30 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCopyActions.js +19 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatDeveloperActions.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatFileTreeActions.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatFindActions.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatFindActions.js +237 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatImportExport.js +7 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatLanguageModelActions.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatNewActions.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatNewActions.js +68 -61
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatOpenAgentDebugPanelAction.js +17 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatPluginActions.js +17 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatPromptNavigationActions.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatQueueActions.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatQueueActions.js +68 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatQuickInputActions.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/codeBlockOperations.js +21 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/createPluginAction.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/createPluginAction.js +222 -72
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.d.ts +64 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/exportAgentHostDebugLogsAction.js +530 -305
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/openAgentHostStateFileAction.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/openAgentHostStateFileAction.js +63 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentHostCompletionAction.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentHostCompletionAction.js +37 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginCommands.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginCommands.js +95 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginEditor/agentPluginEditor.js +10 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginEditor/agentPluginEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginEditor/agentPluginItems.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginRepositoryService.d.ts +18 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginRepositoryService.js +86 -47
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginsView.js +61 -47
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostActiveClientService.d.ts +43 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostActiveClientService.js +326 -76
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostCustomizationService.d.ts +112 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostCustomizationService.js +33 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostImportConversationStore.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostImportConversationStore.js +26 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostLocalCustomizations.d.ts +28 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostLocalCustomizations.js +110 -126
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostMcpServerSupport.d.ts +131 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostMcpServerSupport.js +638 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostMcpServerSupportScope.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostMcpServerSupportScope.js +202 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostModeSynchronizer.d.ts +24 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostModeSynchronizer.js +26 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostPermissionUiContribution.js +10 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostProtectedResourcesService.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostProtectedResourcesService.js +55 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostResponseFileChanges.d.ts +62 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostResponseFileChanges.js +40 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionInputPills.d.ts +59 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionInputPills.js +624 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionWorkingDirectorySynchronizer.d.ts +90 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostSessionWorkingDirectorySynchronizer.js +207 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostShellInitSynchronizer.d.ts +31 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostShellInitSynchronizer.js +140 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostToolSetEnablementService.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostToolSetEnablementService.js +5 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostToolUtils.js +5 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.d.ts +74 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostUntitledProvisionalSessionService.js +511 -171
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/applyAgentHostSessionConfig.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/applyAgentHostSessionConfig.js +48 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/syncedCustomizationBundler.d.ts +55 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/syncedCustomizationBundler.js +210 -20
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.contribution.js +43 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions.d.ts +46 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsActions.js +216 -110
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsPicker.d.ts +9 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsPicker.js +26 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjection.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjectionActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionProjectionService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentSessionsExperiments.contribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/agentTitleBarStatusWidget.js +30 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/media/agenttitlebarstatuswidget.css +5 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/media/unifiedQuickAccess.css +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/unifiedQuickAccess.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/experiments/unifiedQuickAccessActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/externalSessionsFilterMenu.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/externalSessionsFilterMenu.js +62 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/media/sessionSummaryHover.css +104 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/sessionSummaryHover.d.ts +115 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/sessionSummaryHover.js +168 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/sessionSummaryHoverService.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/sessionSummaryHoverService.js +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessionsConfiguration.js +56 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationIcons.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationIcons.js +16 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemSource.d.ts +7 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemSource.js +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemsModel.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationItemsModel.js +10 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationListWidget.d.ts +48 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationListWidget.js +913 -220
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.contribution.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagement.contribution.js +148 -84
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditor.d.ts +161 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditor.js +2367 -247
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditorInput.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementEditorInput.js +21 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementSectionRegistry.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationManagementSectionRegistry.js +34 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationPresentation.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationPresentation.js +23 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWelcomePage.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWelcomePage.js +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWelcomePagePromptLaunchers.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWelcomePagePromptLaunchers.js +143 -68
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWorkspaceService.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/aiCustomizationWorkspaceService.js +10 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationCardList.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationCardList.js +302 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationCreatorService.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationCreatorService.js +49 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationGroupHeaderRenderer.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigration.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigration.js +240 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationAccessibility.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationAccessibility.js +53 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationCategories.d.ts +82 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationCategories.js +762 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationDashboard.d.ts +80 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationDashboard.js +279 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationServiceImpl.d.ts +44 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/customizationMigrationServiceImpl.js +437 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedAgentPluginDetail.d.ts +85 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedAgentPluginDetail.js +697 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedExtensionToolsDetail.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedMcpServerDetail.d.ts +40 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedMcpServerDetail.js +164 -42
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/galleryItemRenderer.js +6 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpListWidget.d.ts +260 -31
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpListWidget.js +2097 -589
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpServerCustomizationMigration.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/mcpServerCustomizationMigration.js +860 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/media/aiCustomizationManagement.css +2229 -1338
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/media/aiCustomizationWelcomePromptLaunchers.css +79 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/media/customizationMigrationDashboard.css +354 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/pluginListWidget.d.ts +85 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/pluginListWidget.js +1550 -357
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/promptsServiceCustomizationItemProvider.d.ts +2 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/promptsServiceCustomizationItemProvider.js +13 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/toolsListWidget.d.ts +38 -26
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/toolsListWidget.js +637 -319
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentResolveService.js +28 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatPasteTargetService.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatPasteTargetService.js +22 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatReferenceAttachmentWidget.contribution.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatReferenceAttachmentWidget.contribution.js +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/transcriptContextAttachmentWidget.contribution.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/transcriptContextAttachmentWidget.contribution.js +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.contribution.js +4 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.shared.contribution.js +1675 -633
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostChatDebugProvider.d.ts +93 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostChatDebugProvider.js +823 -52
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostLogSources.d.ts +132 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostLogSources.js +446 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostUsageSidecar.d.ts +183 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/agentHostUsageSidecar.js +218 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatCustomizationDiscoveryRenderer.js +45 -42
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugCacheExplorerView.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugCacheExplorerView.js +163 -136
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugCacheInsights.js +72 -72
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugDetailPanel.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEditor.d.ts +22 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEditor.js +105 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEnablement.d.ts +32 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEnablement.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEventDetailRenderer.js +20 -20
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugEventList.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFilters.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFlowChartView.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugFlowGraph.js +27 -22
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHomeView.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHomeView.js +22 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugHookContentRenderer.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugLogsView.js +25 -25
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugMessageContentRenderer.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugModelTurnContentRenderer.js +23 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugOverviewView.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugOverviewView.js +76 -43
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugToolCallContentRenderer.js +11 -11
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugTypes.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugTypes.js +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugWireLogView.d.ts +145 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/chatDebugWireLogView.js +839 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatDebug/media/chatDebug.css +277 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingCodeEditorIntegration.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions.d.ts +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorActions.js +14 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorOverlay.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationModelManager.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingExplanationWidget.js +16 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedDocumentEntry.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedFileEntry.js +8 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingModifiedNotebookEntry.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl.d.ts +6 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingServiceImpl.js +35 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingSession.js +16 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingSessionStorage.js +4 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingTextModelChangeService.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/media/chatEditingEditorOverlay.css +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/media/chatEditingExplanationWidget.css +7 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/notebook/chatEditingNotebookEditorIntegration.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/notebook/notebookCellChanges.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatImageCarouselService.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPills.d.ts +86 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatInputPills.js +282 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatManagement.contribution.js +14 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatManagementEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsViewModel.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsViewModel.js +37 -25
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget.d.ts +7 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/chatModelsWidget.js +135 -82
- package/vscode/src/vs/workbench/contrib/chat/browser/chatManagement/media/chatModelsWidget.css +22 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutlineCreator.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutlineCreator.js +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatOutputItemRenderer.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatParticipant.contribution.js +32 -32
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementPreview.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementPreview.js +114 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievements.contribution.d.ts +45 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievements.contribution.js +326 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsEditor.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsEditor.js +99 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsEditorInput.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsEditorInput.js +46 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsWidget.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPetAchievementsWidget.js +301 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPromoNotification.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatPromoNotification.js +103 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotaNotification.d.ts +9 -36
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotaNotification.js +103 -196
- package/vscode/src/vs/workbench/contrib/chat/browser/chatRepoInfo.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupContributions.js +36 -30
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupController.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupController.js +51 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupGrowthSession.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupProviders.js +31 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupRunner.d.ts +65 -20
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/chatSetupRunner.js +291 -138
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/media/chatSetup.css +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/media/microsoft-dark.svg +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSetup/media/microsoft-light.svg +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSideChat.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSideChat.js +24 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSlashCommands.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSlashCommands.js +59 -35
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusDashboard.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusDashboard.js +221 -145
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/chatStatusEntry.js +15 -29
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatus/media/chatStatus.css +21 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSubmitRequestHandlerService.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatSubmitRequestHandlerService.js +27 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipCatalog.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipCatalog.js +23 -21
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipService.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipService.js +62 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/chatWindowNotifier.d.ts +15 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatWindowNotifier.js +97 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/claudePluginRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContext.contribution.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContextService.d.ts +11 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContextService.js +24 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/defaultModelContribution.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/enablementStatusWidget.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/expNotification/chatExpNotificationConfig.d.ts +44 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/expNotification/chatExpNotificationConfig.js +232 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/expNotification/chatExpNotificationContribution.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/expNotification/chatExpNotificationContribution.js +127 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/exploreAgentDefaultModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/feedbackSurvey/chatModelFeedbackSurveyPromptContribution.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/feedbackSurvey/chatModelFeedbackSurveyPromptContribution.js +55 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/hasByokModelsContribution.js +4 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/languageModelsConfigurationService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatPetAchievements.css +236 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/planAgentDefaultModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorOverlay.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorOverlay.js +260 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackService.d.ts +39 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackService.js +155 -56
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginAutoUpdate.d.ts +10 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginAutoUpdate.js +29 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginGitCommandService.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginGitCommandService.js +76 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginInstallService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginInstallService.js +53 -32
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginSources.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginSources.js +17 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/pluginUrlHandler.js +8 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/chatModeActions.js +29 -71
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookActions.js +36 -40
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookUtils.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/hookUtils.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptCodingAgentActionOverlay.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptToolSetsCodeLensProvider.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptToolsCodeLensProvider.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptUrlHandler.js +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/runPromptAction.js +9 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/saveAsPromptFileActions.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/skillActions.js +5 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/media/promptTimeline.css +820 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptBucketing.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptBucketing.js +100 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimeline.contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimeline.contribution.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineCard.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineCard.js +113 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineGutterRail.d.ts +146 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineGutterRail.js +440 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineLayout.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineLayout.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineModel.d.ts +194 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineModel.js +525 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineRail.d.ts +33 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineRulerRail.d.ts +128 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineRulerRail.js +460 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineStickyHeader.d.ts +38 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineStickyHeader.js +120 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineWidgetContrib.d.ts +53 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptTimeline/promptTimelineWidgetContrib.js +160 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/promptsDebugContribution.js +25 -22
- package/vscode/src/vs/workbench/contrib/chat/browser/sessionChatPillOptions.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/sessionChatPillOptions.js +52 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/sessionPullRequestPill.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/sessionPullRequestPill.js +58 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/speechToText/voiceCodeTranscriptionClient.d.ts +63 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/speechToText/voiceCodeTranscriptionClient.js +361 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/telemetry/chatEditorTopologyTelemetry.d.ts +35 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/telemetry/chatEditorTopologyTelemetry.js +90 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/clientToolSetsContribution.js +25 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/languageModelToolsConfirmationService.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/languageModelToolsConfirmationService.js +77 -41
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/languageModelToolsService.js +60 -43
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/renameTool.d.ts +4 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/renameTool.js +60 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/toolHelpers.d.ts +10 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/toolHelpers.js +13 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/usagesTool.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/tools/usagesTool.js +44 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/utilityModelContribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/viewsWelcome/chatViewsWelcomeHandler.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceClientService.d.ts +52 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceClientService.js +446 -79
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceInputUtils.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceInputUtils.js +13 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceInputMode/voiceInputMode.d.ts +66 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceInputMode/voiceInputMode.js +297 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentOpenChat.d.ts +137 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatSubagentOpenChat.js +714 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/media/chatSubagentOpenChat.css +379 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatFind/chatFindAccessibilityHelp.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatFind/chatFindAccessibilityHelp.js +78 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatPetWidgetService.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatPetWidgetService.js +172 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidgetService.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidgetService.js +8 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputNoticeHub.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatInputNoticeHub.js +30 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatQueuePickerActionItem.d.ts +11 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/chatQueuePickerActionItem.js +41 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/agentHostInputCompletions.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/agentHostInputCompletions.js +133 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/agentHostInputCompletionsBase.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/agentHostInputCompletionsBase.js +11 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatEditorInputContentProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCommandArgumentHint.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCommandArgumentHint.js +96 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletionUtils.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletionUtils.js +36 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputCompletions.js +67 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputEditorContrib.js +23 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputEditorHover.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputEditorHover.js +72 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputPlaceholderDecoration.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/{agentsVoice/common/agentsVoiceColors.js → chat/browser/widget/input/editor/chatInputPlaceholderDecoration.js} +17 -15
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputReferenceDecorations.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/input/editor/chatInputReferenceDecorations.js +16 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/chatQuick.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditor.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditor.js +21 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewPane.d.ts +48 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewPane.js +457 -142
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewTitleControl.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/chatViewTitleControl.js +22 -14
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/viewPane/media/chatViewPane.css +6 -22
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationBlueprint.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationBlueprint.js +163 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatDebugServiceImpl.d.ts +27 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatDebugServiceImpl.js +79 -32
- package/vscode/src/vs/workbench/contrib/chat/common/chatNotification.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatNotification.js +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceImpl.d.ts +44 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceImpl.js +404 -51
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceTelemetry.d.ts +64 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatServiceTelemetry.js +33 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatSideChatService.d.ts +68 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSideChatService.js +70 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModelStore.d.ts +5 -2
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatSessionOperationLog.js +18 -5
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatSessionStore.js +43 -14
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatSlashCommands.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginServiceImpl.d.ts +4 -9
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginServiceImpl.js +164 -71
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/workspacePluginSettingsService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/chatPromptFilesContribution.js +18 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptCodeActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHeaderAutocompletion.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptHovers.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptLinkProvider.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptLinkProvider.js +19 -10
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptValidator.js +172 -159
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/customizationMigrationService.d.ts +115 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/customizationMigrationService.js +69 -0
- package/vscode/src/vs/workbench/contrib/chat/common/sessionChatPills.d.ts +60 -0
- package/vscode/src/vs/workbench/contrib/chat/common/sessionChatPills.js +139 -0
- package/vscode/src/vs/workbench/contrib/chat/common/voiceChatService.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/voicePlaybackService.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/voicePlaybackService.js +21 -1
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.d.ts +25 -2
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.js +55 -18
- package/vscode/src/vs/workbench/contrib/imageCarousel/browser/imageCarousel.contribution.js +10 -10
- package/vscode/src/vs/workbench/contrib/imageCarousel/browser/imageCarouselEditor.js +10 -10
- package/vscode/src/vs/workbench/contrib/imageCarousel/browser/imageCarouselEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution.js +1 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatActions.js +15 -15
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatDefaultModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditReviewSession.d.ts +59 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatEditReviewSession.js +323 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionResolver.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionResolver.js +79 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl.js +118 -13
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpPromptArgumentPick.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chat/notebookChatUtils.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +10 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/remoteCodingAgents/browser/remoteCodingAgents.contribution.js +8 -8
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminal.chat.contribution.js +1 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.d.ts +81 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChat.js +85 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibilityHelp.js +17 -17
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatAccessibleView.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatActions.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatEnabler.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatService.d.ts +17 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatService.js +81 -7
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatSessionResolver.d.ts +30 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatSessionResolver.js +86 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminalChatWidget.js +97 -18
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/agentHostSandboxForwarder.d.ts +2 -22
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/agentHostSandboxForwarder.js +10 -8
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/largeOutputFileWriter.js +2 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalHelpers.js +42 -36
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalToolTelemetry.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/runInTerminalToolTelemetry.js +10 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/toolTerminalCreator.js +2 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/autoApprove/npmScriptAutoApprover.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineAutoApproveAnalyzer.js +25 -16
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/commandLineAnalyzer/commandLineFileWriteAnalyzer.js +4 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/consoleCompactor/consoleCompactor.d.ts +70 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/consoleCompactor/consoleCompactor.js +4316 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalLastCommandTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalOutputTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/getTerminalSelectionTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/killTerminalTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/monitoring/outputMonitor.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalConfirmationTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/runInTerminalTool.js +188 -148
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/sendToTerminalTool.js +10 -10
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/createAndRunTaskTool.js +14 -14
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/getTaskOutputTool.js +7 -7
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/runTaskTool.js +14 -14
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/tools/task/taskHelpers.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/treeSitterCommandParser.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/treeSitterCommandParser.js +82 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/sandboxSettingsReader.d.ts +5 -6
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/sandboxSettingsReader.js +5 -42
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalOutput.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalOutput.js +8 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalSandboxService.js +27 -8
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +205 -0
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +1580 -0
- package/vscode/src/vs/workbench/services/agentEditorComments/browser/agentEditorCommentsOverlayWidget.d.ts +30 -0
- package/vscode/src/vs/workbench/services/agentEditorComments/browser/agentEditorCommentsOverlayWidget.js +175 -0
- package/vscode/src/vs/workbench/services/agentEditorComments/browser/media/agentEditorCommentsOverlayWidget.css +65 -0
- package/vscode/src/vs/workbench/services/agentHost/browser/agentSdkSetupService.d.ts +47 -0
- package/vscode/src/vs/workbench/services/agentHost/browser/agentSdkSetupService.js +129 -0
- package/vscode/src/vs/workbench/services/agentHost/browser/editorRemoteAgentHostServiceClient.d.ts +26 -8
- package/vscode/src/vs/workbench/services/agentHost/browser/editorRemoteAgentHostServiceClient.js +89 -27
- package/vscode/src/vs/workbench/services/agentHost/browser/webAgentHostEnablementService.d.ts +8 -0
- package/vscode/src/vs/workbench/services/agentHost/browser/webAgentHostEnablementService.js +28 -0
- package/vscode/src/vs/workbench/services/agentHost/common/agentHostFileSystemService.js +5 -1
- package/vscode/src/vs/workbench/services/agentHost/common/agentHostResourceService.d.ts +18 -18
- package/vscode/src/vs/workbench/services/agentHost/common/agentHostResourceService.js +159 -60
- package/vscode/src/vs/workbench/services/agentHost/common/editorRemoteAgentHostTransport.d.ts +47 -0
- package/vscode/src/vs/workbench/services/agentHost/common/editorRemoteAgentHostTransport.js +362 -0
- package/vscode/src/vs/platform/agentHost/browser/agentHost.config.contribution.d.ts +0 -1
- package/vscode/src/vs/platform/agentHost/browser/agentHost.config.contribution.js +0 -40
- package/vscode/src/vs/platform/agentHost/browser/remoteAgentHostProtocolClient.js +0 -1110
- package/vscode/src/vs/platform/agentHost/common/agentHost.config.contribution.js +0 -76
- package/vscode/src/vs/platform/agentHost/common/agentHostResourceService.d.ts +0 -63
- package/vscode/src/vs/platform/agentHost/common/agentHostResourceService.js +0 -25
- package/vscode/src/vs/platform/agentHost/common/agentHostSchema.d.ts +0 -254
- package/vscode/src/vs/platform/agentHost/common/agentHostSchema.js +0 -451
- package/vscode/src/vs/platform/agentHost/common/agentService.d.ts +0 -1294
- package/vscode/src/vs/platform/agentHost/common/agentService.js +0 -92
- package/vscode/src/vs/platform/agentHost/common/state/protocol/common/errors.d.ts +0 -186
- package/vscode/src/vs/platform/agentHost/common/state/protocol/common/errors.js +0 -10
- package/vscode/src/vs/platform/agentHost/common/state/sessionTransport.d.ts +0 -42
- package/vscode/src/vs/platform/agentHost/common/state/sessionTransport.js +0 -7
- package/vscode/src/vs/workbench/contrib/agentsVoice/common/agentsVoice.d.ts +0 -15
- package/vscode/src/vs/workbench/contrib/agentsVoice/common/agentsVoice.js +0 -15
- package/vscode/src/vs/workbench/contrib/agentsVoice/common/agentsVoiceColors.d.ts +0 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatForkActions.d.ts +0 -19
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatForkActions.js +0 -243
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/openCopilotCliStateFileAction.d.ts +0 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/openCopilotCliStateFileAction.js +0 -77
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginActions.d.ts +0 -92
- package/vscode/src/vs/workbench/contrib/chat/browser/agentPluginActions.js +0 -224
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostNewSessionFolderService.d.ts +0 -23
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentHost/agentHostNewSessionFolderService.js +0 -52
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsQuickAccess.d.ts +0 -16
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsQuickAccess.js +0 -96
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/localAgentDisabledInputTipContribution.d.ts +0 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/localAgentDisabledInputTipContribution.js +0 -152
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/automationsListWidget.d.ts +0 -87
- package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/automationsListWidget.js +0 -772
- package/vscode/src/vs/workbench/contrib/chat/browser/chatResponseFileChangesService.d.ts +0 -30
- package/vscode/src/vs/workbench/contrib/chat/browser/chatResponseFileChangesService.js +0 -29
- package/vscode/src/vs/workbench/contrib/chat/browser/enablementActions.d.ts +0 -20
- package/vscode/src/vs/workbench/contrib/chat/browser/enablementActions.js +0 -40
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/media/planReviewFeedback.css +0 -160
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorActions.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorActions.js +0 -123
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorContribution.d.ts +0 -37
- package/vscode/src/vs/workbench/contrib/chat/browser/planReviewFeedback/planReviewFeedbackEditorContribution.js +0 -572
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/micCaptureService.d.ts +0 -125
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/micCaptureService.js +0 -399
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceSessionController.d.ts +0 -321
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceSessionController.js +0 -2117
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceToolDispatchService.d.ts +0 -57
- package/vscode/src/vs/workbench/contrib/chat/browser/voiceClient/voiceToolDispatchService.js +0 -367
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automation.d.ts +0 -78
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationDialogService.d.ts +0 -13
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationDialogService.service.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationDialogService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationRunner.service.d.ts +0 -16
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationRunner.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationService.d.ts +0 -46
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationService.service.d.ts +0 -36
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationsEnabled.d.ts +0 -12
- package/vscode/src/vs/workbench/contrib/chat/common/automations/automationsEnabled.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/automations/schedule.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/chat/common/automations/schedule.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginEnablement.d.ts +0 -15
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginEnablement.js +0 -177
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/fileBackedInstalledPluginsStore.d.ts +0 -67
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/fileBackedInstalledPluginsStore.js +0 -195
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/marketplaceReference.d.ts +0 -65
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/marketplaceReference.js +0 -264
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.d.ts +0 -190
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.js +0 -865
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/strictKnownMarketplaces.d.ts +0 -31
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/strictKnownMarketplaces.js +0 -122
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/commandParsers/commandFileWriteParser.d.ts +0 -24
- /package/vscode/src/vs/{workbench/contrib/terminalContrib/chatAgentTools/browser/commandParsers → platform/terminal/common/autoApprove}/sedFileWriteParser.js +0 -0
- /package/vscode/src/vs/{platform/agentHost/common/agentHost.config.contribution.d.ts → workbench/contrib/chat/browser/agentSessionsConfiguration.d.ts} +0 -0
package/vscode/src/vs/workbench/contrib/chat/browser/aiCustomization/embeddedAgentPluginDetail.js
CHANGED
|
@@ -1,24 +1,200 @@
|
|
|
1
1
|
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { __decorate, __param } from '@codingame/monaco-vscode-api/external/tslib/tslib.es6';
|
|
3
|
+
import { $ as $$1, append, getWindow, DisposableResizeObserver, scheduleAtNextAnimationFrame, clearNode, addDisposableListener } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/dom';
|
|
4
|
+
import { Button, ButtonWithDropdown } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/button/button';
|
|
5
|
+
import { getDefaultHoverDelegate } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/hover/hoverDelegateFactory';
|
|
6
|
+
import { status } from '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/aria/aria';
|
|
7
|
+
import { disposableTimeout } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
|
|
8
|
+
import { CancellationToken, CancellationTokenSource } from '@codingame/monaco-vscode-api/vscode/vs/base/common/cancellation';
|
|
9
|
+
import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
|
|
10
|
+
import { isCancellationError, getErrorMessage } from '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
|
|
11
|
+
import { Emitter } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
|
|
12
|
+
import { MarkdownString } from '@codingame/monaco-vscode-api/vscode/vs/base/common/htmlContent';
|
|
13
|
+
import { Disposable, DisposableStore, MutableDisposable } from '@codingame/monaco-vscode-api/vscode/vs/base/common/lifecycle';
|
|
14
|
+
import { Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
|
|
15
|
+
import { asTextOrError } from '@codingame/monaco-vscode-api/vscode/vs/platform/request/common/request';
|
|
16
|
+
import { IRequestService } from '@codingame/monaco-vscode-api/vscode/vs/platform/request/common/request.service';
|
|
4
17
|
import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
|
|
5
18
|
import { AgentPluginItemKind } from '../agentPluginEditor/agentPluginItems.js';
|
|
19
|
+
import { IPluginInstallService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service';
|
|
20
|
+
import { isContributionEnabled, ContributionEnablementState } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/enablement';
|
|
21
|
+
import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
|
|
22
|
+
import { defaultButtonStyles, getButtonStyles } from '@codingame/monaco-vscode-api/vscode/vs/platform/theme/browser/defaultStyles';
|
|
23
|
+
import { IClipboardService } from '@codingame/monaco-vscode-api/vscode/vs/platform/clipboard/common/clipboardService.service';
|
|
24
|
+
import { IOpenerService } from '@codingame/monaco-vscode-api/vscode/vs/platform/opener/common/opener.service';
|
|
25
|
+
import { IAgentPluginService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/plugins/agentPluginService.service';
|
|
26
|
+
import { isPluginPolicyBlocked, createUninstallPluginAction, createPolicyBlockedEnableAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/agentPluginActions';
|
|
27
|
+
import { INotificationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/notification/common/notification.service';
|
|
28
|
+
import { URI } from '@codingame/monaco-vscode-api/vscode/vs/base/common/uri';
|
|
29
|
+
import { joinPath, isEqual, basename, dirname } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
|
|
30
|
+
import { AICustomizationManagementSection } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService';
|
|
31
|
+
import { FileOperationError, FileOperationResult } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files';
|
|
32
|
+
import { IFileService } from '@codingame/monaco-vscode-api/vscode/vs/platform/files/common/files.service';
|
|
33
|
+
import { IMarkdownRendererService } from '@codingame/monaco-vscode-api/vscode/vs/platform/markdown/browser/markdownRenderer.service';
|
|
34
|
+
import { IContextMenuService } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextview/browser/contextView.service';
|
|
35
|
+
import { Action } from '@codingame/monaco-vscode-api/vscode/vs/base/common/actions';
|
|
36
|
+
import { ICommandService } from '@codingame/monaco-vscode-api/vscode/vs/platform/commands/common/commands.service';
|
|
37
|
+
import { IHoverService } from '@codingame/monaco-vscode-api/vscode/vs/platform/hover/browser/hover.service';
|
|
38
|
+
import '@codingame/monaco-vscode-api/vscode/vs/base/browser/ui/contextview/contextview';
|
|
39
|
+
import { getPluginInclusionLabel } from './aiCustomizationPresentation.js';
|
|
40
|
+
import '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/index';
|
|
41
|
+
import { autorun } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/reactions/autorun';
|
|
42
|
+
import { AnchorAlignment } from '@codingame/monaco-vscode-api/vscode/vs/base/common/layout';
|
|
43
|
+
import { waitForState } from '@codingame/monaco-vscode-api/vscode/vs/base/common/observableInternal/utils/utilsCancellation';
|
|
6
44
|
|
|
7
45
|
const $ = $$1;
|
|
8
|
-
|
|
9
|
-
|
|
46
|
+
const INSTALL_REGISTRATION_TIMEOUT = 10_000;
|
|
47
|
+
class PluginReadmeRenderGuard {
|
|
48
|
+
constructor() {
|
|
49
|
+
this.generation = 0;
|
|
50
|
+
}
|
|
51
|
+
begin() {
|
|
52
|
+
return ++this.generation;
|
|
53
|
+
}
|
|
54
|
+
isCurrent(generation) {
|
|
55
|
+
return this.generation === generation;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
async function loadPluginReadme(item, fileService, requestService) {
|
|
59
|
+
const readmeUri = item.kind === AgentPluginItemKind.Installed ? joinPath(item.plugin.uri, "README.md") : item.readmeUri;
|
|
60
|
+
if (!readmeUri) {
|
|
61
|
+
return undefined;
|
|
62
|
+
}
|
|
63
|
+
if (readmeUri.scheme === Schemas.file || readmeUri.scheme === Schemas.vscodeRemote) {
|
|
64
|
+
try {
|
|
65
|
+
const content = await fileService.readFile(readmeUri);
|
|
66
|
+
return {
|
|
67
|
+
content: ( content.value.toString()),
|
|
68
|
+
baseUri: readmeUri
|
|
69
|
+
};
|
|
70
|
+
} catch (error) {
|
|
71
|
+
if (error instanceof FileOperationError && error.fileOperationResult === FileOperationResult.FILE_NOT_FOUND) {
|
|
72
|
+
return undefined;
|
|
73
|
+
}
|
|
74
|
+
throw error;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
if (readmeUri.scheme === Schemas.https) {
|
|
78
|
+
let fetchedUri = readmeUri;
|
|
79
|
+
const githubBlobMatch = ( readmeUri.toString()).match(
|
|
80
|
+
/^https:\/\/github\.com\/(?<owner>[^/]+)\/(?<repo>[^/]+)\/blob\/(?<rest>.+)$/
|
|
81
|
+
);
|
|
82
|
+
if (githubBlobMatch?.groups) {
|
|
83
|
+
fetchedUri = ( URI.parse(
|
|
84
|
+
`https://raw.githubusercontent.com/${githubBlobMatch.groups["owner"]}/${githubBlobMatch.groups["repo"]}/${githubBlobMatch.groups["rest"]}`
|
|
85
|
+
));
|
|
86
|
+
}
|
|
87
|
+
const context = await requestService.request({
|
|
88
|
+
type: "GET",
|
|
89
|
+
url: ( fetchedUri.toString()),
|
|
90
|
+
callSite: "aiCustomizationPluginDetail.fetchReadme"
|
|
91
|
+
}, CancellationToken.None);
|
|
92
|
+
return {
|
|
93
|
+
content: (await asTextOrError(context)) ?? "",
|
|
94
|
+
baseUri: fetchedUri
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
throw ( new Error(`Unsupported plugin README URI scheme: ${readmeUri.scheme}`));
|
|
98
|
+
}
|
|
99
|
+
async function waitForInstalledPlugin(agentPluginService, expectedUri, token) {
|
|
100
|
+
try {
|
|
101
|
+
const plugins = await waitForState(agentPluginService.plugins, plugins => ( plugins.some(plugin => isEqual(plugin.uri, expectedUri))), undefined, token);
|
|
102
|
+
return plugins.find(plugin => isEqual(plugin.uri, expectedUri));
|
|
103
|
+
} catch (error) {
|
|
104
|
+
if (isCancellationError(error)) {
|
|
105
|
+
return undefined;
|
|
106
|
+
}
|
|
107
|
+
throw error;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
let EmbeddedAgentPluginDetail = class EmbeddedAgentPluginDetail extends Disposable {
|
|
111
|
+
constructor(
|
|
112
|
+
parent,
|
|
113
|
+
labelService,
|
|
114
|
+
clipboardService,
|
|
115
|
+
openerService,
|
|
116
|
+
agentPluginService,
|
|
117
|
+
pluginInstallService,
|
|
118
|
+
notificationService,
|
|
119
|
+
contextMenuService,
|
|
120
|
+
commandService,
|
|
121
|
+
hoverService,
|
|
122
|
+
fileService,
|
|
123
|
+
requestService,
|
|
124
|
+
markdownRendererService
|
|
125
|
+
) {
|
|
10
126
|
super();
|
|
127
|
+
this.labelService = labelService;
|
|
128
|
+
this.clipboardService = clipboardService;
|
|
129
|
+
this.openerService = openerService;
|
|
130
|
+
this.agentPluginService = agentPluginService;
|
|
131
|
+
this.pluginInstallService = pluginInstallService;
|
|
132
|
+
this.notificationService = notificationService;
|
|
133
|
+
this.contextMenuService = contextMenuService;
|
|
134
|
+
this.commandService = commandService;
|
|
135
|
+
this.hoverService = hoverService;
|
|
136
|
+
this.fileService = fileService;
|
|
137
|
+
this.requestService = requestService;
|
|
138
|
+
this.markdownRendererService = markdownRendererService;
|
|
139
|
+
this._onDidRequestOpenSkill = this._register(( new Emitter()));
|
|
140
|
+
this.onDidRequestOpenSkill = this._onDidRequestOpenSkill.event;
|
|
141
|
+
this._onDidRequestOpenAgent = this._register(( new Emitter()));
|
|
142
|
+
this.onDidRequestOpenAgent = this._onDidRequestOpenAgent.event;
|
|
143
|
+
this._onDidRequestOpenSection = this._register(( new Emitter()));
|
|
144
|
+
this.onDidRequestOpenSection = this._onDidRequestOpenSection.event;
|
|
145
|
+
this._onDidUninstall = this._register(( new Emitter()));
|
|
146
|
+
this.onDidUninstall = this._onDidUninstall.event;
|
|
147
|
+
this.renderDisposables = this._register(( new DisposableStore()));
|
|
148
|
+
this.copyStateReset = this._register(( new MutableDisposable()));
|
|
149
|
+
this.narrowLayoutUpdate = this._register(( new MutableDisposable()));
|
|
150
|
+
this.inputStateAutorun = this._register(( new MutableDisposable()));
|
|
151
|
+
this.installWaitDisposables = this._register(( new MutableDisposable()));
|
|
152
|
+
this.narrowLayout = false;
|
|
153
|
+
this.readmeRenderGuard = ( new PluginReadmeRenderGuard());
|
|
154
|
+
this.renderedPolicyBlocked = false;
|
|
11
155
|
this.root = append(parent, $(".ai-customization-embedded-detail.embedded-plugin-detail"));
|
|
156
|
+
const targetWindow = getWindow(this.root);
|
|
157
|
+
const resizeObserver = this._register(new DisposableResizeObserver("EmbeddedAgentPluginDetail", () => {
|
|
158
|
+
const narrow = this.root.offsetWidth < 520;
|
|
159
|
+
if (this.narrowLayout !== narrow) {
|
|
160
|
+
this.narrowLayoutUpdate.value = scheduleAtNextAnimationFrame(targetWindow, () => this.updateNarrowLayout(narrow));
|
|
161
|
+
}
|
|
162
|
+
}, targetWindow));
|
|
163
|
+
this._register(resizeObserver.observe(this.root));
|
|
12
164
|
this.headerEl = append(this.root, $(".embedded-detail-header"));
|
|
13
165
|
this.leadingSlotEl = append(this.headerEl, $(".embedded-detail-leading-slot"));
|
|
14
166
|
const headerText = append(this.headerEl, $(".embedded-detail-header-text"));
|
|
15
|
-
this.
|
|
167
|
+
this.nameRowEl = append(headerText, $(".embedded-detail-name-row"));
|
|
168
|
+
this.nameEl = append(this.nameRowEl, $("h2.embedded-detail-name"));
|
|
16
169
|
this.nameEl.setAttribute("role", "heading");
|
|
17
|
-
this.
|
|
170
|
+
this.statusBadgeEl = append(this.nameRowEl, $(".inline-badge.embedded-detail-status-badge"));
|
|
171
|
+
this.titleActionsEl = append(this.headerEl, $(".embedded-detail-title-actions"));
|
|
18
172
|
this.descriptionEl = append(this.root, $(".embedded-detail-description"));
|
|
173
|
+
this.sourceFactsEl = append(this.root, $(".embedded-detail-section.plugin-detail-source-facts"));
|
|
174
|
+
const sourceFactsTitle = append(this.sourceFactsEl, $("h3.embedded-detail-section-title"));
|
|
175
|
+
sourceFactsTitle.textContent = ( localize(6804, "Details"));
|
|
176
|
+
this.factsEl = append(this.sourceFactsEl, $(".embedded-detail-facts.plugin-detail-flat-list"));
|
|
177
|
+
this.contributionsEl = append(this.root, $(".embedded-detail-section.plugin-detail-contributions"));
|
|
178
|
+
const contributionsTitle = append(this.contributionsEl, $("h3.embedded-detail-section-title"));
|
|
179
|
+
contributionsTitle.textContent = ( localize(6805, "Contains"));
|
|
180
|
+
this.contributionsListEl = append(
|
|
181
|
+
this.contributionsEl,
|
|
182
|
+
$(".embedded-detail-chip-list.plugin-detail-flat-list")
|
|
183
|
+
);
|
|
184
|
+
this.readmeEl = append(this.root, $(".embedded-detail-section.plugin-detail-readme"));
|
|
185
|
+
const readmeTitle = append(this.readmeEl, $("h3.plugin-detail-contribution-group-title"));
|
|
186
|
+
const readmeLabel = append(readmeTitle, $("span.plugin-detail-contribution-title-label"));
|
|
187
|
+
readmeLabel.textContent = ( localize(6806, "Plugin README"));
|
|
188
|
+
this.readmeContentEl = append(this.readmeEl, $(".plugin-detail-readme-content"));
|
|
19
189
|
this.emptyEl = append(this.root, $(".embedded-detail-empty"));
|
|
20
|
-
this.emptyEl.textContent = ( localize(
|
|
21
|
-
|
|
190
|
+
this.emptyEl.textContent = ( localize(6807, "No plugin selected."));
|
|
191
|
+
}
|
|
192
|
+
updateNarrowLayout(narrow) {
|
|
193
|
+
if (this.narrowLayout === narrow) {
|
|
194
|
+
return;
|
|
195
|
+
}
|
|
196
|
+
this.narrowLayout = narrow;
|
|
197
|
+
this.root.classList.toggle("narrow-layout", narrow);
|
|
22
198
|
}
|
|
23
199
|
get element() {
|
|
24
200
|
return this.root;
|
|
@@ -30,32 +206,538 @@ class EmbeddedAgentPluginDetail extends Disposable {
|
|
|
30
206
|
return this.leadingSlotEl;
|
|
31
207
|
}
|
|
32
208
|
setInput(item) {
|
|
209
|
+
this.installWaitDisposables.clear();
|
|
33
210
|
this.current = item;
|
|
34
211
|
this.renderItem();
|
|
212
|
+
if (item.kind === AgentPluginItemKind.Installed) {
|
|
213
|
+
this.renderedPolicyBlocked = isPluginPolicyBlocked(item.plugin);
|
|
214
|
+
this.inputStateAutorun.value = autorun(reader => {
|
|
215
|
+
item.plugin.enablement.read(reader);
|
|
216
|
+
item.plugin.policyBlocked?.read(reader);
|
|
217
|
+
item.plugin.version?.read(reader);
|
|
218
|
+
if (this._store.isDisposed || this.current !== item) {
|
|
219
|
+
return;
|
|
220
|
+
}
|
|
221
|
+
const policyBlocked = isPluginPolicyBlocked(item.plugin);
|
|
222
|
+
if (policyBlocked !== this.renderedPolicyBlocked) {
|
|
223
|
+
this.renderedPolicyBlocked = policyBlocked;
|
|
224
|
+
this.renderItem();
|
|
225
|
+
return;
|
|
226
|
+
}
|
|
227
|
+
this.updateInstalledState(item);
|
|
228
|
+
});
|
|
229
|
+
} else {
|
|
230
|
+
this.inputStateAutorun.clear();
|
|
231
|
+
}
|
|
35
232
|
}
|
|
36
233
|
clearInput() {
|
|
234
|
+
this.installWaitDisposables.clear();
|
|
37
235
|
this.current = undefined;
|
|
236
|
+
this.inputStateAutorun.clear();
|
|
38
237
|
this.renderItem();
|
|
39
238
|
}
|
|
40
239
|
renderItem() {
|
|
240
|
+
const readmeRenderGeneration = this.readmeRenderGuard.begin();
|
|
241
|
+
this.renderDisposables.clear();
|
|
242
|
+
this.updateEnablementAction = undefined;
|
|
243
|
+
this.pluginVersionRowEl = undefined;
|
|
244
|
+
this.pluginVersionValueEl = undefined;
|
|
41
245
|
const item = this.current;
|
|
42
246
|
const hasItem = !!item;
|
|
43
247
|
this.emptyEl.style.display = hasItem ? "none" : "";
|
|
44
248
|
this.root.classList.toggle("is-empty", !hasItem);
|
|
45
249
|
if (!item) {
|
|
46
250
|
this.nameEl.textContent = "";
|
|
47
|
-
this.
|
|
251
|
+
this.statusBadgeEl.textContent = "";
|
|
252
|
+
this.statusBadgeEl.style.display = "none";
|
|
253
|
+
clearNode(this.titleActionsEl);
|
|
48
254
|
this.descriptionEl.textContent = "";
|
|
255
|
+
clearNode(this.factsEl);
|
|
256
|
+
this.sourceFactsEl.style.display = "none";
|
|
257
|
+
clearNode(this.contributionsListEl);
|
|
258
|
+
this.contributionsEl.style.display = "none";
|
|
259
|
+
clearNode(this.readmeContentEl);
|
|
260
|
+
this.readmeEl.style.display = "none";
|
|
49
261
|
return;
|
|
50
262
|
}
|
|
51
263
|
this.nameEl.textContent = item.name;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
264
|
+
if (item.kind === AgentPluginItemKind.Installed && (!isContributionEnabled(item.plugin.enablement.get()) || isPluginPolicyBlocked(item.plugin))) {
|
|
265
|
+
this.statusBadgeEl.textContent = getPluginInclusionLabel(item.plugin);
|
|
266
|
+
this.statusBadgeEl.style.display = "";
|
|
267
|
+
} else {
|
|
268
|
+
this.statusBadgeEl.textContent = "";
|
|
269
|
+
this.statusBadgeEl.style.display = "none";
|
|
270
|
+
}
|
|
271
|
+
clearNode(this.titleActionsEl);
|
|
272
|
+
clearNode(this.factsEl);
|
|
273
|
+
clearNode(this.contributionsListEl);
|
|
274
|
+
this.renderTitleActions(item);
|
|
275
|
+
this.renderFacts(item);
|
|
276
|
+
this.renderContributions(item);
|
|
277
|
+
this.renderReadme(item, readmeRenderGeneration);
|
|
55
278
|
const description = (item.description || "").trim();
|
|
56
|
-
this.descriptionEl.textContent = description;
|
|
57
|
-
this.descriptionEl.style.display =
|
|
279
|
+
this.descriptionEl.textContent = description || ( localize(6808, "No description provided."));
|
|
280
|
+
this.descriptionEl.style.display = "";
|
|
281
|
+
}
|
|
282
|
+
updateInstalledState(item) {
|
|
283
|
+
if (!isContributionEnabled(item.plugin.enablement.get()) || isPluginPolicyBlocked(item.plugin)) {
|
|
284
|
+
this.statusBadgeEl.textContent = getPluginInclusionLabel(item.plugin);
|
|
285
|
+
this.statusBadgeEl.style.display = "";
|
|
286
|
+
} else {
|
|
287
|
+
this.statusBadgeEl.textContent = "";
|
|
288
|
+
this.statusBadgeEl.style.display = "none";
|
|
289
|
+
}
|
|
290
|
+
this.updateEnablementAction?.();
|
|
291
|
+
this.updatePluginVersionFact(item);
|
|
292
|
+
}
|
|
293
|
+
renderTitleActions(item) {
|
|
294
|
+
if (item.kind === AgentPluginItemKind.Marketplace) {
|
|
295
|
+
const installButton = this.renderDisposables.add(( new Button(this.titleActionsEl, {
|
|
296
|
+
...defaultButtonStyles,
|
|
297
|
+
ariaLabel: ( localize(6809, "Install {0}", item.name))
|
|
298
|
+
})));
|
|
299
|
+
installButton.label = ( localize(6810, "Install"));
|
|
300
|
+
this.renderDisposables.add(installButton.onDidClick(async () => {
|
|
301
|
+
installButton.label = ( localize(6811, "Installing..."));
|
|
302
|
+
installButton.enabled = false;
|
|
303
|
+
const marketplacePlugin = {
|
|
304
|
+
name: item.name,
|
|
305
|
+
description: item.description,
|
|
306
|
+
version: item.version ?? "",
|
|
307
|
+
source: item.source,
|
|
308
|
+
sourceDescriptor: item.sourceDescriptor,
|
|
309
|
+
marketplace: item.marketplace,
|
|
310
|
+
marketplaceReference: item.marketplaceReference,
|
|
311
|
+
marketplaceType: item.marketplaceType,
|
|
312
|
+
readmeUri: item.readmeUri
|
|
313
|
+
};
|
|
314
|
+
try {
|
|
315
|
+
await this.pluginInstallService.installPlugin(marketplacePlugin);
|
|
316
|
+
if (this._store.isDisposed || this.current !== item) {
|
|
317
|
+
return;
|
|
318
|
+
}
|
|
319
|
+
const waitDisposables = ( new DisposableStore());
|
|
320
|
+
this.installWaitDisposables.value = waitDisposables;
|
|
321
|
+
const waitCts = ( new CancellationTokenSource());
|
|
322
|
+
waitDisposables.add({
|
|
323
|
+
dispose: () => waitCts.dispose(true)
|
|
324
|
+
});
|
|
325
|
+
waitDisposables.add(disposableTimeout(() => waitCts.cancel(), INSTALL_REGISTRATION_TIMEOUT));
|
|
326
|
+
const expectedUri = this.pluginInstallService.getPluginInstallUri(marketplacePlugin);
|
|
327
|
+
const plugin = await waitForInstalledPlugin(this.agentPluginService, expectedUri, waitCts.token);
|
|
328
|
+
if (this.installWaitDisposables.value === waitDisposables) {
|
|
329
|
+
this.installWaitDisposables.clear();
|
|
330
|
+
}
|
|
331
|
+
if (this._store.isDisposed || this.current !== item) {
|
|
332
|
+
return;
|
|
333
|
+
}
|
|
334
|
+
if (plugin) {
|
|
335
|
+
installButton.label = ( localize(6812, "Installed"));
|
|
336
|
+
this.setInput(this.toInstalledPluginItem(plugin));
|
|
337
|
+
} else {
|
|
338
|
+
installButton.label = ( localize(6810, "Install"));
|
|
339
|
+
installButton.enabled = true;
|
|
340
|
+
}
|
|
341
|
+
} catch (error) {
|
|
342
|
+
this.installWaitDisposables.clear();
|
|
343
|
+
if (this._store.isDisposed || this.current !== item) {
|
|
344
|
+
return;
|
|
345
|
+
}
|
|
346
|
+
installButton.label = ( localize(6810, "Install"));
|
|
347
|
+
installButton.enabled = true;
|
|
348
|
+
this.notificationService.error(( localize(6813, "Unable to install plugin: {0}", getErrorMessage(error))));
|
|
349
|
+
}
|
|
350
|
+
}));
|
|
351
|
+
return;
|
|
352
|
+
}
|
|
353
|
+
const uninstallAction = createUninstallPluginAction(item.plugin);
|
|
354
|
+
if (uninstallAction) {
|
|
355
|
+
this.renderDisposables.add(uninstallAction);
|
|
356
|
+
const uninstallButton = this.renderDisposables.add(( new Button(this.titleActionsEl, {
|
|
357
|
+
...getButtonStyles({
|
|
358
|
+
buttonSecondaryBackground: undefined,
|
|
359
|
+
buttonSecondaryForeground: undefined,
|
|
360
|
+
buttonSecondaryHoverBackground: undefined,
|
|
361
|
+
buttonSecondaryBorder: undefined
|
|
362
|
+
}),
|
|
363
|
+
secondary: true,
|
|
364
|
+
supportIcons: true,
|
|
365
|
+
ariaLabel: uninstallAction.label
|
|
366
|
+
})));
|
|
367
|
+
uninstallButton.element.classList.add("embedded-detail-uninstall-button");
|
|
368
|
+
uninstallButton.label = uninstallAction.label;
|
|
369
|
+
uninstallButton.enabled = uninstallAction.enabled;
|
|
370
|
+
this.renderDisposables.add(uninstallButton.onDidClick(async () => {
|
|
371
|
+
try {
|
|
372
|
+
const removed = await uninstallAction.runAndGetResult();
|
|
373
|
+
if (removed && !this._store.isDisposed && this.current === item) {
|
|
374
|
+
this._onDidUninstall.fire();
|
|
375
|
+
}
|
|
376
|
+
} catch (error) {
|
|
377
|
+
if (!this._store.isDisposed && this.current === item) {
|
|
378
|
+
this.notificationService.error(( localize(6814, "Unable to uninstall plugin: {0}", getErrorMessage(error))));
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
}));
|
|
382
|
+
}
|
|
383
|
+
this.renderEnablementSplitButton(item);
|
|
384
|
+
}
|
|
385
|
+
renderEnablementSplitButton(item) {
|
|
386
|
+
if (isPluginPolicyBlocked(item.plugin)) {
|
|
387
|
+
const action = createPolicyBlockedEnableAction(item.plugin, this.notificationService);
|
|
388
|
+
const policyLabel = ( localize(6815, "Managed by Organization"));
|
|
389
|
+
const button = this.renderDisposables.add(( new Button(this.titleActionsEl, {
|
|
390
|
+
...defaultButtonStyles,
|
|
391
|
+
secondary: true,
|
|
392
|
+
supportIcons: true,
|
|
393
|
+
ariaLabel: policyLabel
|
|
394
|
+
})));
|
|
395
|
+
button.label = policyLabel;
|
|
396
|
+
this.renderDisposables.add(button.onDidClick(() => action.run()));
|
|
397
|
+
this.renderDisposables.add(action);
|
|
398
|
+
return;
|
|
399
|
+
}
|
|
400
|
+
const key = ( item.plugin.uri.toString());
|
|
401
|
+
const setEnablement = state => {
|
|
402
|
+
this.agentPluginService.enablementModel.setEnabled(key, state);
|
|
403
|
+
status(( localize(6816, "{0}. {1}.", item.name, getPluginInclusionLabel(item.plugin))));
|
|
404
|
+
};
|
|
405
|
+
const contextMenuProvider = {
|
|
406
|
+
showContextMenu: delegate => this.contextMenuService.showContextMenu({
|
|
407
|
+
...delegate,
|
|
408
|
+
anchorAlignment: AnchorAlignment.RIGHT
|
|
409
|
+
})
|
|
410
|
+
};
|
|
411
|
+
const alternateAction = this.renderDisposables.add(( new Action("plugin.alternateScope", "", undefined, true, async () => {
|
|
412
|
+
const state = getPluginEnablementActionState(item.plugin.enablement.get());
|
|
413
|
+
setEnablement(state.alternateState);
|
|
414
|
+
})));
|
|
415
|
+
const splitButton = this.renderDisposables.add(( new ButtonWithDropdown(this.titleActionsEl, {
|
|
416
|
+
...defaultButtonStyles,
|
|
417
|
+
secondary: true,
|
|
418
|
+
supportIcons: true,
|
|
419
|
+
contextMenuProvider,
|
|
420
|
+
addPrimaryActionToDropdown: false,
|
|
421
|
+
actions: {
|
|
422
|
+
getActions: () => {
|
|
423
|
+
const state = getPluginEnablementActionState(item.plugin.enablement.get());
|
|
424
|
+
alternateAction.label = state.alternateLabel;
|
|
425
|
+
return [alternateAction];
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
ariaLabel: ""
|
|
429
|
+
})));
|
|
430
|
+
this.updateEnablementAction = () => {
|
|
431
|
+
const state = getPluginEnablementActionState(item.plugin.enablement.get());
|
|
432
|
+
splitButton.element.classList.toggle("embedded-detail-disable-button", state.isEnabled);
|
|
433
|
+
splitButton.element.classList.toggle("embedded-detail-enable-button", !state.isEnabled);
|
|
434
|
+
splitButton.label = state.primaryLabel;
|
|
435
|
+
splitButton.element.setAttribute("aria-label", state.primaryLabel);
|
|
436
|
+
};
|
|
437
|
+
this.updateEnablementAction();
|
|
438
|
+
this.renderDisposables.add(splitButton.onDidClick(
|
|
439
|
+
() => setEnablement(getPluginEnablementActionState(item.plugin.enablement.get()).primaryState)
|
|
440
|
+
));
|
|
441
|
+
}
|
|
442
|
+
toInstalledPluginItem(plugin) {
|
|
443
|
+
return {
|
|
444
|
+
kind: AgentPluginItemKind.Installed,
|
|
445
|
+
name: plugin.label || basename(plugin.uri),
|
|
446
|
+
description: plugin.fromMarketplace?.description ?? this.labelService.getUriLabel(plugin.uri, {
|
|
447
|
+
relative: true
|
|
448
|
+
}),
|
|
449
|
+
marketplace: plugin.fromMarketplace?.marketplace,
|
|
450
|
+
plugin
|
|
451
|
+
};
|
|
452
|
+
}
|
|
453
|
+
renderMarketplaceLink(label, uri) {
|
|
454
|
+
if (uri) {
|
|
455
|
+
const link = $("a.embedded-detail-fact-link");
|
|
456
|
+
link.href = ( uri.toString());
|
|
457
|
+
link.textContent = label;
|
|
458
|
+
this.renderDisposables.add(addDisposableListener(link, "click", e => {
|
|
459
|
+
e.preventDefault();
|
|
460
|
+
this.openerService.open(uri);
|
|
461
|
+
}));
|
|
462
|
+
return link;
|
|
463
|
+
} else {
|
|
464
|
+
const value = $("span");
|
|
465
|
+
value.textContent = label;
|
|
466
|
+
return value;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
renderFacts(item) {
|
|
470
|
+
this.sourceFactsEl.style.display = "";
|
|
471
|
+
if (item.kind === AgentPluginItemKind.Marketplace) {
|
|
472
|
+
this.appendPluginVersionFact(item);
|
|
473
|
+
this.appendFact(this.factsEl, ( localize(6817, "Marketplace")), this.renderMarketplaceLink(item.marketplace, getMarketplaceUri(item)));
|
|
474
|
+
return;
|
|
475
|
+
}
|
|
476
|
+
this.appendPluginVersionFact(item);
|
|
477
|
+
if (item.marketplace) {
|
|
478
|
+
this.appendFact(this.factsEl, ( localize(6817, "Marketplace")), this.renderMarketplaceLink(
|
|
479
|
+
item.marketplace,
|
|
480
|
+
item.plugin.fromMarketplace ? getMarketplaceUri(item.plugin.fromMarketplace) : undefined
|
|
481
|
+
));
|
|
482
|
+
}
|
|
483
|
+
this.appendFact(this.factsEl, ( localize(6818, "Location")), this.createLocationValue(item.plugin.uri));
|
|
484
|
+
}
|
|
485
|
+
appendPluginVersionFact(item) {
|
|
486
|
+
const row = append(this.factsEl, $(".embedded-detail-fact-row"));
|
|
487
|
+
append(row, $(".embedded-detail-fact-label")).textContent = ( localize(6819, "Version"));
|
|
488
|
+
this.pluginVersionValueEl = append(row, $(".embedded-detail-fact-value"));
|
|
489
|
+
this.pluginVersionRowEl = row;
|
|
490
|
+
this.updatePluginVersionFact(item);
|
|
491
|
+
}
|
|
492
|
+
updatePluginVersionFact(item) {
|
|
493
|
+
const version = getPluginVersion(item);
|
|
494
|
+
if (this.pluginVersionRowEl && this.pluginVersionValueEl) {
|
|
495
|
+
this.pluginVersionRowEl.style.display = version ? "" : "none";
|
|
496
|
+
this.pluginVersionValueEl.textContent = version ?? "";
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
appendFact(parent, label, value) {
|
|
500
|
+
const row = append(parent, $(".embedded-detail-fact-row"));
|
|
501
|
+
const labelEl = append(row, $(".embedded-detail-fact-label"));
|
|
502
|
+
labelEl.textContent = label;
|
|
503
|
+
const valueEl = append(row, $(".embedded-detail-fact-value"));
|
|
504
|
+
if (typeof value === "string") {
|
|
505
|
+
valueEl.textContent = value;
|
|
506
|
+
} else {
|
|
507
|
+
valueEl.classList.add("has-actions");
|
|
508
|
+
valueEl.appendChild(value);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
createLocationValue(uri) {
|
|
512
|
+
const container = $(".embedded-detail-location-value");
|
|
513
|
+
const label = append(container, $("span.embedded-detail-location-label"));
|
|
514
|
+
label.textContent = this.labelService.getUriLabel(uri, {
|
|
515
|
+
relative: true
|
|
516
|
+
});
|
|
517
|
+
label.title = uri.fsPath || ( uri.toString());
|
|
518
|
+
const copyPluginPathLabel = ( localize(6820, "Copy Plugin Path"));
|
|
519
|
+
let copyPluginPathTooltip = copyPluginPathLabel;
|
|
520
|
+
const inlineButtonStyles = getButtonStyles({
|
|
521
|
+
buttonSecondaryBackground: undefined,
|
|
522
|
+
buttonSecondaryForeground: undefined,
|
|
523
|
+
buttonSecondaryHoverBackground: undefined,
|
|
524
|
+
buttonSecondaryBorder: undefined
|
|
525
|
+
});
|
|
526
|
+
const copyButton = this.renderDisposables.add(( new Button(container, {
|
|
527
|
+
...inlineButtonStyles,
|
|
528
|
+
secondary: true,
|
|
529
|
+
supportIcons: true,
|
|
530
|
+
title: copyPluginPathLabel,
|
|
531
|
+
ariaLabel: copyPluginPathLabel
|
|
532
|
+
})));
|
|
533
|
+
copyButton.element.classList.add("embedded-detail-copy-button");
|
|
534
|
+
copyButton.label = `$(${Codicon.copy.id})`;
|
|
535
|
+
this.renderDisposables.add(this.hoverService.setupManagedHover(
|
|
536
|
+
getDefaultHoverDelegate("element"),
|
|
537
|
+
copyButton.element,
|
|
538
|
+
() => copyPluginPathTooltip
|
|
539
|
+
));
|
|
540
|
+
this.renderDisposables.add(copyButton.onDidClick(async () => {
|
|
541
|
+
await this.clipboardService.writeText(uri.fsPath || ( uri.toString()));
|
|
542
|
+
copyButton.label = `$(${Codicon.check.id})`;
|
|
543
|
+
copyPluginPathTooltip = ( localize(6821, "Copied"));
|
|
544
|
+
copyButton.setTitle(copyPluginPathTooltip);
|
|
545
|
+
status(( localize(6822, "Copied plugin path to clipboard")));
|
|
546
|
+
this.copyStateReset.value = disposableTimeout(() => {
|
|
547
|
+
copyButton.label = `$(${Codicon.copy.id})`;
|
|
548
|
+
copyPluginPathTooltip = copyPluginPathLabel;
|
|
549
|
+
copyButton.setTitle(copyPluginPathTooltip);
|
|
550
|
+
}, 1200);
|
|
551
|
+
}));
|
|
552
|
+
const openPluginFolderLabel = ( localize(6823, "Open Plugin Folder"));
|
|
553
|
+
const openButton = this.renderDisposables.add(( new Button(container, {
|
|
554
|
+
...inlineButtonStyles,
|
|
555
|
+
secondary: true,
|
|
556
|
+
supportIcons: true,
|
|
557
|
+
title: openPluginFolderLabel,
|
|
558
|
+
ariaLabel: openPluginFolderLabel
|
|
559
|
+
})));
|
|
560
|
+
openButton.element.classList.add("embedded-detail-copy-button");
|
|
561
|
+
openButton.label = `$(${Codicon.folderOpened.id})`;
|
|
562
|
+
this.renderDisposables.add(this.hoverService.setupManagedHover(
|
|
563
|
+
getDefaultHoverDelegate("element"),
|
|
564
|
+
openButton.element,
|
|
565
|
+
openPluginFolderLabel
|
|
566
|
+
));
|
|
567
|
+
this.renderDisposables.add(openButton.onDidClick(async () => {
|
|
568
|
+
try {
|
|
569
|
+
await this.commandService.executeCommand("revealFileInOS", uri);
|
|
570
|
+
} catch {
|
|
571
|
+
await this.openerService.open(dirname(uri));
|
|
572
|
+
}
|
|
573
|
+
}));
|
|
574
|
+
return container;
|
|
575
|
+
}
|
|
576
|
+
async renderReadme(item, renderGeneration) {
|
|
577
|
+
clearNode(this.readmeContentEl);
|
|
578
|
+
this.readmeEl.style.display = "";
|
|
579
|
+
let readme;
|
|
580
|
+
try {
|
|
581
|
+
readme = await loadPluginReadme(item, this.fileService, this.requestService);
|
|
582
|
+
} catch {
|
|
583
|
+
if (!this._store.isDisposed && this.current === item && this.readmeRenderGuard.isCurrent(renderGeneration)) {
|
|
584
|
+
const message = append(this.readmeContentEl, $(".plugin-detail-readme-message"));
|
|
585
|
+
message.textContent = ( localize(6824, "The plugin README could not be loaded."));
|
|
586
|
+
}
|
|
587
|
+
return;
|
|
588
|
+
}
|
|
589
|
+
if (this._store.isDisposed || this.current !== item || !this.readmeRenderGuard.isCurrent(renderGeneration)) {
|
|
590
|
+
return;
|
|
591
|
+
}
|
|
592
|
+
if (readme === undefined) {
|
|
593
|
+
const message = append(this.readmeContentEl, $(".plugin-detail-readme-message"));
|
|
594
|
+
message.textContent = ( localize(6825, "No README was provided for this plugin."));
|
|
595
|
+
return;
|
|
596
|
+
}
|
|
597
|
+
if (!readme.content.trim()) {
|
|
598
|
+
const message = append(this.readmeContentEl, $(".plugin-detail-readme-message"));
|
|
599
|
+
message.textContent = ( localize(6826, "The plugin README is empty."));
|
|
600
|
+
return;
|
|
601
|
+
}
|
|
602
|
+
const markdown = ( new MarkdownString(readme.content, {
|
|
603
|
+
supportHtml: false
|
|
604
|
+
}));
|
|
605
|
+
markdown.baseUri = readme.baseUri;
|
|
606
|
+
const rendered = this.renderDisposables.add(this.markdownRendererService.render(markdown));
|
|
607
|
+
this.readmeContentEl.appendChild(rendered.element);
|
|
608
|
+
}
|
|
609
|
+
dispose() {
|
|
610
|
+
this.current = undefined;
|
|
611
|
+
this.readmeRenderGuard.begin();
|
|
612
|
+
super.dispose();
|
|
613
|
+
}
|
|
614
|
+
renderContributions(item) {
|
|
615
|
+
if (item.kind === AgentPluginItemKind.Marketplace) {
|
|
616
|
+
this.contributionsEl.style.display = "";
|
|
617
|
+
const empty = append(this.contributionsListEl, $(".plugin-detail-contribution-empty"));
|
|
618
|
+
empty.textContent = ( localize(
|
|
619
|
+
6827,
|
|
620
|
+
"Contribution details are available after install when the plugin can be inspected locally."
|
|
621
|
+
));
|
|
622
|
+
return;
|
|
623
|
+
}
|
|
624
|
+
const entries = getInstalledPluginContributionEntries(item);
|
|
625
|
+
this.contributionsEl.style.display = entries.length > 0 ? "" : "none";
|
|
626
|
+
for (const entry of entries) {
|
|
627
|
+
const section = append(this.contributionsListEl, $(".plugin-detail-contribution-section"));
|
|
628
|
+
const header = append(section, $(".plugin-detail-contribution-group-title"));
|
|
629
|
+
const label = append(header, $("span.plugin-detail-contribution-title-label"));
|
|
630
|
+
label.textContent = entry.label;
|
|
631
|
+
const count = append(header, $("span.plugin-detail-contribution-title-count"));
|
|
632
|
+
count.textContent = String(entry.items.length);
|
|
633
|
+
const group = append(section, $(".plugin-detail-contribution-group"));
|
|
634
|
+
const list = append(group, $(".plugin-detail-contribution-list"));
|
|
635
|
+
for (const contribution of entry.items) {
|
|
636
|
+
const row = append(list, $(".plugin-detail-contribution-row"));
|
|
637
|
+
if (entry.kind === "skills" && contribution.uri) {
|
|
638
|
+
const button = append(
|
|
639
|
+
row,
|
|
640
|
+
$("button.plugin-detail-contribution-name.plugin-detail-contribution-link")
|
|
641
|
+
);
|
|
642
|
+
button.type = "button";
|
|
643
|
+
button.textContent = contribution.name;
|
|
644
|
+
button.setAttribute("aria-label", ( localize(6828, "Open skill {0}", contribution.name)));
|
|
645
|
+
this.renderDisposables.add(
|
|
646
|
+
addDisposableListener(button, "click", () => this._onDidRequestOpenSkill.fire(contribution.uri))
|
|
647
|
+
);
|
|
648
|
+
} else if (entry.kind === "agents" && contribution.uri) {
|
|
649
|
+
const button = append(
|
|
650
|
+
row,
|
|
651
|
+
$("button.plugin-detail-contribution-name.plugin-detail-contribution-link")
|
|
652
|
+
);
|
|
653
|
+
button.type = "button";
|
|
654
|
+
button.textContent = contribution.name;
|
|
655
|
+
button.setAttribute("aria-label", ( localize(6829, "Open agent {0}", contribution.name)));
|
|
656
|
+
this.renderDisposables.add(
|
|
657
|
+
addDisposableListener(button, "click", () => this._onDidRequestOpenAgent.fire(contribution.uri))
|
|
658
|
+
);
|
|
659
|
+
} else if (entry.kind === "mcp") {
|
|
660
|
+
const button = append(
|
|
661
|
+
row,
|
|
662
|
+
$("button.plugin-detail-contribution-name.plugin-detail-contribution-link")
|
|
663
|
+
);
|
|
664
|
+
button.type = "button";
|
|
665
|
+
button.textContent = contribution.name;
|
|
666
|
+
button.setAttribute("aria-label", ( localize(6830, "Open MCP Servers")));
|
|
667
|
+
this.renderDisposables.add(addDisposableListener(
|
|
668
|
+
button,
|
|
669
|
+
"click",
|
|
670
|
+
() => this._onDidRequestOpenSection.fire(AICustomizationManagementSection.McpServers)
|
|
671
|
+
));
|
|
672
|
+
} else {
|
|
673
|
+
const name = append(row, $(".plugin-detail-contribution-name"));
|
|
674
|
+
name.textContent = contribution.name;
|
|
675
|
+
}
|
|
676
|
+
if (contribution.description && entry.kind !== "skills") {
|
|
677
|
+
const description = append(row, $(".plugin-detail-contribution-description"));
|
|
678
|
+
description.textContent = contribution.description;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
};
|
|
684
|
+
EmbeddedAgentPluginDetail = ( __decorate([( __param(1, ILabelService)), ( __param(2, IClipboardService)), ( __param(3, IOpenerService)), ( __param(4, IAgentPluginService)), ( __param(5, IPluginInstallService)), ( __param(6, INotificationService)), ( __param(7, IContextMenuService)), ( __param(8, ICommandService)), ( __param(9, IHoverService)), ( __param(10, IFileService)), ( __param(11, IRequestService)), ( __param(12, IMarkdownRendererService))], EmbeddedAgentPluginDetail));
|
|
685
|
+
function getInstalledPluginContributionEntries(item) {
|
|
686
|
+
const plugin = item.plugin;
|
|
687
|
+
const entries = [];
|
|
688
|
+
appendContributionEntry(entries, "agents", ( localize(6831, "Agents")), plugin.agents.get());
|
|
689
|
+
appendContributionEntry(entries, "skills", ( localize(6832, "Skills")), plugin.skills.get());
|
|
690
|
+
appendContributionEntry(entries, "commands", ( localize(6833, "Commands")), plugin.commands.get());
|
|
691
|
+
appendContributionEntry(entries, "instructions", ( localize(6834, "Instructions")), plugin.instructions.get());
|
|
692
|
+
appendContributionEntry(entries, "mcp", ( localize(6835, "MCP Servers")), ( plugin.mcpServerDefinitions.get().map(server => ({
|
|
693
|
+
name: server.name
|
|
694
|
+
}))));
|
|
695
|
+
appendContributionEntry(entries, "hooks", ( localize(6836, "Hooks")), ( plugin.hooks.get().map(hook => ({
|
|
696
|
+
name: hook.originalId,
|
|
697
|
+
description: ( localize(6837, "{0} commands", hook.hooks.length))
|
|
698
|
+
}))));
|
|
699
|
+
appendContributionEntry(entries, "automations", ( localize(6838, "Automations")), ( plugin.automations.get().map(automation => ({
|
|
700
|
+
name: automation.blueprint.name,
|
|
701
|
+
description: automation.blueprint.description
|
|
702
|
+
}))));
|
|
703
|
+
return entries;
|
|
704
|
+
}
|
|
705
|
+
function appendContributionEntry(entries, kind, label, items) {
|
|
706
|
+
if (label && items.length > 0) {
|
|
707
|
+
entries.push({
|
|
708
|
+
kind,
|
|
709
|
+
label,
|
|
710
|
+
items
|
|
711
|
+
});
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
function getPluginVersion(item) {
|
|
715
|
+
const version = item.kind === AgentPluginItemKind.Marketplace ? item.version : item.plugin.version?.get() ?? item.plugin.fromMarketplace?.version;
|
|
716
|
+
return version?.trim() || undefined;
|
|
717
|
+
}
|
|
718
|
+
function getPluginEnablementActionState(current) {
|
|
719
|
+
const isEnabled = isContributionEnabled(current);
|
|
720
|
+
const isWorkspaceScope = current === ContributionEnablementState.EnabledWorkspace || current === ContributionEnablementState.DisabledWorkspace;
|
|
721
|
+
const profileLabel = isEnabled ? ( localize(6839, "Disable")) : ( localize(6840, "Enable"));
|
|
722
|
+
const workspaceLabel = isEnabled ? ( localize(6841, "Disable (Workspace)")) : ( localize(6842, "Enable (Workspace)"));
|
|
723
|
+
const profileState = isEnabled ? ContributionEnablementState.DisabledProfile : ContributionEnablementState.EnabledProfile;
|
|
724
|
+
const workspaceState = isEnabled ? ContributionEnablementState.DisabledWorkspace : ContributionEnablementState.EnabledWorkspace;
|
|
725
|
+
return {
|
|
726
|
+
isEnabled,
|
|
727
|
+
primaryLabel: isWorkspaceScope ? workspaceLabel : profileLabel,
|
|
728
|
+
primaryState: isWorkspaceScope ? workspaceState : profileState,
|
|
729
|
+
alternateLabel: isWorkspaceScope ? profileLabel : workspaceLabel,
|
|
730
|
+
alternateState: isWorkspaceScope ? profileState : workspaceState
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
function getMarketplaceUri(item) {
|
|
734
|
+
if (item.marketplaceReference.githubRepo) {
|
|
735
|
+
return ( URI.parse(`https://github.com/${item.marketplaceReference.githubRepo}`));
|
|
736
|
+
}
|
|
737
|
+
if (item.marketplaceReference.cloneUrl) {
|
|
738
|
+
return (URI.parse(item.marketplaceReference.cloneUrl.replace(/\.git$/, "")));
|
|
58
739
|
}
|
|
740
|
+
return undefined;
|
|
59
741
|
}
|
|
60
742
|
|
|
61
|
-
export { EmbeddedAgentPluginDetail };
|
|
743
|
+
export { EmbeddedAgentPluginDetail, PluginReadmeRenderGuard, getPluginVersion, loadPluginReadme, waitForInstalledPlugin };
|