@vybestack/llxprt-code 0.2.25 → 0.3.4-nightly.250912.86a20bc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +5 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -1
- package/dist/package.json +3 -5
- package/dist/src/auth/anthropic-oauth-provider.d.ts +5 -0
- package/dist/src/auth/anthropic-oauth-provider.js +3 -1
- package/dist/src/auth/anthropic-oauth-provider.js.map +1 -1
- package/dist/src/auth/gemini-oauth-provider.d.ts +5 -0
- package/dist/src/auth/gemini-oauth-provider.js +3 -4
- package/dist/src/auth/gemini-oauth-provider.js.map +1 -1
- package/dist/src/auth/qwen-oauth-provider.d.ts +5 -0
- package/dist/src/auth/qwen-oauth-provider.js +3 -2
- package/dist/src/auth/qwen-oauth-provider.js.map +1 -1
- package/dist/src/commands/extensions/disable.d.ts +14 -0
- package/dist/src/commands/extensions/disable.js +40 -0
- package/dist/src/commands/extensions/disable.js.map +1 -0
- package/dist/src/commands/extensions/enable.d.ts +14 -0
- package/dist/src/commands/extensions/enable.js +47 -0
- package/dist/src/commands/extensions/enable.js.map +1 -0
- package/dist/src/commands/extensions/install.d.ts +13 -0
- package/dist/src/commands/extensions/install.js +47 -0
- package/dist/src/commands/extensions/install.js.map +1 -0
- package/dist/src/commands/extensions/install.test.d.ts +6 -0
- package/dist/src/commands/extensions/install.test.js +19 -0
- package/dist/src/commands/extensions/install.test.js.map +1 -0
- package/dist/src/commands/extensions/list.d.ts +8 -0
- package/dist/src/commands/extensions/list.js +31 -0
- package/dist/src/commands/extensions/list.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.d.ts +12 -0
- package/dist/src/commands/extensions/uninstall.js +37 -0
- package/dist/src/commands/extensions/uninstall.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.test.d.ts +6 -0
- package/dist/src/commands/extensions/uninstall.test.js +15 -0
- package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +12 -0
- package/dist/src/commands/extensions/update.js +37 -0
- package/dist/src/commands/extensions/update.js.map +1 -0
- package/dist/src/commands/extensions.d.ts +7 -0
- package/dist/src/commands/extensions.js +29 -0
- package/dist/src/commands/extensions.js.map +1 -0
- package/dist/src/commands/mcp/add.d.ts +1 -1
- package/dist/src/commands/mcp/add.js +1 -1
- package/dist/src/commands/mcp/list.d.ts +1 -1
- package/dist/src/commands/mcp/list.js +1 -1
- package/dist/src/commands/mcp/remove.d.ts +1 -1
- package/dist/src/commands/mcp/remove.js +1 -1
- package/dist/src/commands/mcp.d.ts +1 -1
- package/dist/src/commands/mcp.js +1 -1
- package/dist/src/config/auth.d.ts +1 -1
- package/dist/src/config/auth.js +1 -1
- package/dist/src/config/auth.test.d.ts +1 -1
- package/dist/src/config/auth.test.js +1 -1
- package/dist/src/config/config.d.ts +4 -4
- package/dist/src/config/config.js +39 -24
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extension.d.ts +33 -2
- package/dist/src/config/extension.js +256 -10
- package/dist/src/config/extension.js.map +1 -1
- package/dist/src/config/extensions/variableSchema.d.ts +28 -0
- package/dist/src/config/extensions/variableSchema.js +18 -0
- package/dist/src/config/extensions/variableSchema.js.map +1 -0
- package/dist/src/config/extensions/variables.d.ts +17 -0
- package/dist/src/config/extensions/variables.js +40 -0
- package/dist/src/config/extensions/variables.js.map +1 -0
- package/dist/src/config/extensions/variables.test.d.ts +6 -0
- package/dist/src/config/extensions/variables.test.js +17 -0
- package/dist/src/config/extensions/variables.test.js.map +1 -0
- package/dist/src/config/keyBindings.d.ts +1 -1
- package/dist/src/config/keyBindings.js +1 -1
- package/dist/src/config/keyBindings.test.d.ts +1 -1
- package/dist/src/config/keyBindings.test.js +1 -1
- package/dist/src/config/sandboxConfig.d.ts +2 -2
- package/dist/src/config/sandboxConfig.js +5 -7
- package/dist/src/config/sandboxConfig.js.map +1 -1
- package/dist/src/config/settings.d.ts +9 -5
- package/dist/src/config/settings.js +89 -21
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +94 -2
- package/dist/src/config/settingsSchema.js +94 -2
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/config/settingsSchema.test.d.ts +1 -1
- package/dist/src/config/settingsSchema.test.js +12 -1
- package/dist/src/config/settingsSchema.test.js.map +1 -1
- package/dist/src/config/trustedFolders.d.ts +1 -1
- package/dist/src/config/trustedFolders.js +1 -1
- package/dist/src/config/trustedFolders.test.d.ts +1 -1
- package/dist/src/config/trustedFolders.test.js +1 -1
- package/dist/src/gemini.d.ts +4 -2
- package/dist/src/gemini.js +84 -59
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.d.ts +1 -1
- package/dist/src/gemini.test.js +75 -24
- package/dist/src/gemini.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/integration-tests/retry-settings.integration.test.d.ts +1 -1
- package/dist/src/integration-tests/retry-settings.integration.test.js +1 -1
- package/dist/src/nonInteractiveCli.d.ts +1 -1
- package/dist/src/nonInteractiveCli.js +20 -37
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/patches/is-in-ci.d.ts +1 -1
- package/dist/src/patches/is-in-ci.js +1 -1
- package/dist/src/providers/providerConfigUtils.d.ts +1 -1
- package/dist/src/providers/providerConfigUtils.js +1 -1
- package/dist/src/providers/providerManagerInstance.js +3 -1
- package/dist/src/providers/providerManagerInstance.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.d.ts +1 -1
- package/dist/src/services/BuiltinCommandLoader.js +1 -1
- package/dist/src/services/BuiltinCommandLoader.test.d.ts +1 -1
- package/dist/src/services/BuiltinCommandLoader.test.js +1 -1
- package/dist/src/services/CommandService.d.ts +1 -1
- package/dist/src/services/CommandService.js +1 -1
- package/dist/src/services/CommandService.test.d.ts +1 -1
- package/dist/src/services/CommandService.test.js +1 -1
- package/dist/src/services/FileCommandLoader.d.ts +1 -1
- package/dist/src/services/FileCommandLoader.js +5 -4
- package/dist/src/services/FileCommandLoader.js.map +1 -1
- package/dist/src/services/McpPromptLoader.d.ts +12 -2
- package/dist/src/services/McpPromptLoader.js +43 -17
- package/dist/src/services/McpPromptLoader.js.map +1 -1
- package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
- package/dist/src/services/McpPromptLoader.test.js +114 -0
- package/dist/src/services/McpPromptLoader.test.js.map +1 -0
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +1 -1
- package/dist/src/services/prompt-processors/argumentProcessor.js +1 -1
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +1 -1
- package/dist/src/services/prompt-processors/shellProcessor.js +1 -1
- package/dist/src/services/prompt-processors/types.d.ts +1 -1
- package/dist/src/services/prompt-processors/types.js +1 -1
- package/dist/src/services/types.d.ts +1 -1
- package/dist/src/services/types.js +1 -1
- package/dist/src/test-utils/customMatchers.d.ts +1 -1
- package/dist/src/test-utils/customMatchers.js +1 -1
- package/dist/src/test-utils/mockCommandContext.d.ts +1 -1
- package/dist/src/test-utils/mockCommandContext.js +1 -1
- package/dist/src/test-utils/mockCommandContext.test.d.ts +1 -1
- package/dist/src/test-utils/mockCommandContext.test.js +1 -1
- package/dist/src/test-utils/render.d.ts +1 -1
- package/dist/src/test-utils/render.js +1 -1
- package/dist/src/test-utils/responsive-testing.d.ts +1 -1
- package/dist/src/test-utils/responsive-testing.js +1 -1
- package/dist/src/test-utils/responsive-testing.test.d.ts +1 -1
- package/dist/src/test-utils/responsive-testing.test.js +1 -1
- package/dist/src/ui/App.d.ts +1 -1
- package/dist/src/ui/App.e2e.test.d.ts +2 -2
- package/dist/src/ui/App.e2e.test.js +2 -2
- package/dist/src/ui/App.js +60 -24
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/IdeIntegrationNudge.d.ts +0 -1
- package/dist/src/ui/IdeIntegrationNudge.js +1 -2
- package/dist/src/ui/IdeIntegrationNudge.js.map +1 -1
- package/dist/src/ui/colors.d.ts +33 -1
- package/dist/src/ui/colors.js +65 -1
- package/dist/src/ui/colors.js.map +1 -1
- package/dist/src/ui/commands/aboutCommand.d.ts +1 -1
- package/dist/src/ui/commands/aboutCommand.js +1 -1
- package/dist/src/ui/commands/authCommand.d.ts +6 -1
- package/dist/src/ui/commands/authCommand.js +30 -1
- package/dist/src/ui/commands/authCommand.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.d.ts +1 -1
- package/dist/src/ui/commands/bugCommand.js +1 -1
- package/dist/src/ui/commands/chatCommand.d.ts +1 -1
- package/dist/src/ui/commands/chatCommand.js +21 -4
- package/dist/src/ui/commands/chatCommand.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.d.ts +1 -1
- package/dist/src/ui/commands/clearCommand.js +1 -1
- package/dist/src/ui/commands/compressCommand.d.ts +1 -1
- package/dist/src/ui/commands/compressCommand.js +3 -1
- package/dist/src/ui/commands/compressCommand.js.map +1 -1
- package/dist/src/ui/commands/copyCommand.d.ts +1 -1
- package/dist/src/ui/commands/copyCommand.js +2 -2
- package/dist/src/ui/commands/copyCommand.js.map +1 -1
- package/dist/src/ui/commands/directoryCommand.d.ts +1 -1
- package/dist/src/ui/commands/directoryCommand.js +1 -1
- package/dist/src/ui/commands/docsCommand.d.ts +1 -1
- package/dist/src/ui/commands/docsCommand.js +1 -1
- package/dist/src/ui/commands/editorCommand.d.ts +1 -1
- package/dist/src/ui/commands/editorCommand.js +1 -1
- package/dist/src/ui/commands/extensionsCommand.d.ts +1 -1
- package/dist/src/ui/commands/extensionsCommand.js +1 -1
- package/dist/src/ui/commands/helpCommand.d.ts +1 -1
- package/dist/src/ui/commands/helpCommand.js +1 -1
- package/dist/src/ui/commands/ideCommand.d.ts +1 -1
- package/dist/src/ui/commands/ideCommand.js +2 -2
- package/dist/src/ui/commands/ideCommand.js.map +1 -1
- package/dist/src/ui/commands/initCommand.d.ts +1 -1
- package/dist/src/ui/commands/initCommand.js +1 -1
- package/dist/src/ui/commands/mcpCommand.d.ts +1 -1
- package/dist/src/ui/commands/mcpCommand.js +5 -2
- package/dist/src/ui/commands/mcpCommand.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.d.ts +1 -1
- package/dist/src/ui/commands/memoryCommand.js +1 -1
- package/dist/src/ui/commands/privacyCommand.d.ts +1 -1
- package/dist/src/ui/commands/privacyCommand.js +1 -1
- package/dist/src/ui/commands/providerCommand.js +1 -1
- package/dist/src/ui/commands/providerCommand.js.map +1 -1
- package/dist/src/ui/commands/quitCommand.d.ts +1 -1
- package/dist/src/ui/commands/quitCommand.js +1 -1
- package/dist/src/ui/commands/restoreCommand.d.ts +1 -1
- package/dist/src/ui/commands/restoreCommand.js +3 -7
- package/dist/src/ui/commands/restoreCommand.js.map +1 -1
- package/dist/src/ui/commands/settingsCommand.d.ts +1 -1
- package/dist/src/ui/commands/settingsCommand.js +1 -1
- package/dist/src/ui/commands/setupGithubCommand.d.ts +1 -1
- package/dist/src/ui/commands/setupGithubCommand.js +1 -1
- package/dist/src/ui/commands/setupGithubCommand.test.d.ts +1 -1
- package/dist/src/ui/commands/setupGithubCommand.test.js +1 -1
- package/dist/src/ui/commands/statsCommand.d.ts +1 -1
- package/dist/src/ui/commands/statsCommand.js +1 -1
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +1 -1
- package/dist/src/ui/commands/terminalSetupCommand.js +1 -1
- package/dist/src/ui/commands/themeCommand.d.ts +1 -1
- package/dist/src/ui/commands/themeCommand.js +1 -1
- package/dist/src/ui/commands/toolformatCommand.test.d.ts +5 -0
- package/dist/src/ui/commands/toolformatCommand.test.js.map +1 -1
- package/dist/src/ui/commands/toolsCommand.d.ts +1 -1
- package/dist/src/ui/commands/toolsCommand.js +13 -43
- package/dist/src/ui/commands/toolsCommand.js.map +1 -1
- package/dist/src/ui/commands/types.d.ts +1 -1
- package/dist/src/ui/commands/types.js +1 -1
- package/dist/src/ui/commands/vimCommand.d.ts +1 -1
- package/dist/src/ui/commands/vimCommand.js +1 -1
- package/dist/src/ui/components/AboutBox.d.ts +1 -1
- package/dist/src/ui/components/AsciiArt.d.ts +1 -1
- package/dist/src/ui/components/AsciiArt.js +1 -1
- package/dist/src/ui/components/AuthDialog.d.ts +1 -1
- package/dist/src/ui/components/AuthDialog.js +1 -1
- package/dist/src/ui/components/AuthDialog.test.d.ts +1 -1
- package/dist/src/ui/components/AuthDialog.test.js +41 -11
- package/dist/src/ui/components/AuthDialog.test.js.map +1 -1
- package/dist/src/ui/components/AuthInProgress.d.ts +1 -1
- package/dist/src/ui/components/AuthInProgress.js +1 -1
- package/dist/src/ui/components/AutoAcceptIndicator.d.ts +1 -1
- package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +1 -1
- package/dist/src/ui/components/ContextIndicator.ui.test.d.ts +5 -0
- package/dist/src/ui/components/ContextIndicator.ui.test.js +5 -0
- package/dist/src/ui/components/ContextIndicator.ui.test.js.map +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.js +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.semantic.test.d.ts +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.semantic.test.js +1 -1
- package/dist/src/ui/components/DebugProfiler.d.ts +1 -1
- package/dist/src/ui/components/DebugProfiler.js +1 -1
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +1 -1
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +1 -1
- package/dist/src/ui/components/EditorSettingsDialog.js +1 -1
- package/dist/src/ui/components/ErrorBoundary.d.ts +1 -1
- package/dist/src/ui/components/ErrorBoundary.js +1 -1
- package/dist/src/ui/components/FolderTrustDialog.d.ts +2 -1
- package/dist/src/ui/components/FolderTrustDialog.js +10 -4
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -1
- package/dist/src/ui/components/FolderTrustDialog.test.d.ts +1 -1
- package/dist/src/ui/components/FolderTrustDialog.test.js +41 -4
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -1
- package/dist/src/ui/components/Footer.d.ts +1 -1
- package/dist/src/ui/components/Footer.js +1 -1
- package/dist/src/ui/components/Footer.responsive.test.d.ts +1 -1
- package/dist/src/ui/components/Footer.responsive.test.js +1 -1
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +1 -1
- package/dist/src/ui/components/Header.d.ts +1 -1
- package/dist/src/ui/components/Help.d.ts +1 -1
- package/dist/src/ui/components/Help.js +1 -1
- package/dist/src/ui/components/Help.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +2 -2
- package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.test.js +3 -1
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.d.ts +1 -1
- package/dist/src/ui/components/InputPrompt.js +150 -66
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.paste.test.d.ts +1 -1
- package/dist/src/ui/components/InputPrompt.paste.test.js +37 -12
- package/dist/src/ui/components/InputPrompt.paste.test.js.map +1 -1
- package/dist/src/ui/components/LayoutManager.d.ts +1 -1
- package/dist/src/ui/components/LayoutManager.js +1 -1
- package/dist/src/ui/components/LoadingIndicator.d.ts +1 -1
- package/dist/src/ui/components/LoadingIndicator.test.d.ts +1 -1
- package/dist/src/ui/components/LoadingIndicator.test.js +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.js +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.semantic.test.d.ts +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.semantic.test.js +1 -1
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +1 -1
- package/dist/src/ui/components/OAuthCodeDialog.d.ts +5 -0
- package/dist/src/ui/components/OAuthCodeDialog.js +5 -0
- package/dist/src/ui/components/OAuthCodeDialog.js.map +1 -1
- package/dist/src/ui/components/OAuthCodeDialog.test.d.ts +1 -1
- package/dist/src/ui/components/OAuthCodeDialog.test.js +1 -1
- package/dist/src/ui/components/PrepareLabel.d.ts +1 -1
- package/dist/src/ui/components/ProviderDialog.d.ts +5 -0
- package/dist/src/ui/components/ProviderDialog.js +6 -3
- package/dist/src/ui/components/ProviderDialog.js.map +1 -1
- package/dist/src/ui/components/ProviderDialog.responsive.test.d.ts +1 -1
- package/dist/src/ui/components/ProviderDialog.responsive.test.js +1 -1
- package/dist/src/ui/components/ProviderModelDialog.d.ts +1 -1
- package/dist/src/ui/components/ProviderModelDialog.js +5 -2
- package/dist/src/ui/components/ProviderModelDialog.js.map +1 -1
- package/dist/src/ui/components/ProviderModelDialog.responsive.test.d.ts +1 -1
- package/dist/src/ui/components/ProviderModelDialog.responsive.test.js +1 -1
- package/dist/src/ui/components/ProviderModelDialog.test.d.ts +1 -1
- package/dist/src/ui/components/ProviderModelDialog.test.js +1 -1
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +1 -1
- package/dist/src/ui/components/SettingsDialog.d.ts +1 -1
- package/dist/src/ui/components/SettingsDialog.js +66 -35
- package/dist/src/ui/components/SettingsDialog.js.map +1 -1
- package/dist/src/ui/components/SettingsDialog.test.d.ts +1 -1
- package/dist/src/ui/components/SettingsDialog.test.js +114 -48
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.d.ts +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.js +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.test.js +1 -1
- package/dist/src/ui/components/ShellModeIndicator.d.ts +1 -1
- package/dist/src/ui/components/ShowMoreLines.d.ts +1 -1
- package/dist/src/ui/components/ShowMoreLines.js +1 -1
- package/dist/src/ui/components/StatsDisplay.d.ts +1 -1
- package/dist/src/ui/components/StatsDisplay.js +10 -11
- package/dist/src/ui/components/StatsDisplay.js.map +1 -1
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +1 -1
- package/dist/src/ui/components/SuggestionsDisplay.js +13 -5
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
- package/dist/src/ui/components/ThemeDialog.d.ts +1 -1
- package/dist/src/ui/components/ThemeDialog.js +1 -1
- package/dist/src/ui/components/Tips.d.ts +1 -1
- package/dist/src/ui/components/TodoPanel.responsive.test.d.ts +1 -1
- package/dist/src/ui/components/TodoPanel.responsive.test.js +1 -1
- package/dist/src/ui/components/TodoPanel.semantic.test.d.ts +1 -1
- package/dist/src/ui/components/TodoPanel.semantic.test.js +1 -1
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +1 -1
- package/dist/src/ui/components/UpdateNotification.d.ts +1 -1
- package/dist/src/ui/components/UpdateNotification.js +1 -1
- package/dist/src/ui/components/WorkspaceMigrationDialog.d.ts +11 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js +43 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js.map +1 -0
- package/dist/src/ui/components/__tests__/LayoutManager.test.d.ts +1 -1
- package/dist/src/ui/components/__tests__/LayoutManager.test.js +1 -1
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/CompressionMessage.js +2 -1
- package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.js +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.test.js +1 -1
- package/dist/src/ui/components/messages/ErrorMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/GeminiMessage.js +2 -1
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -1
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +1 -1
- package/dist/src/ui/components/messages/InfoMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +2 -2
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +40 -23
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.responsive.test.d.ts +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.responsive.test.js +16 -12
- package/dist/src/ui/components/messages/ToolConfirmationMessage.responsive.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +88 -3
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +2 -2
- package/dist/src/ui/components/messages/ToolGroupMessage.js +2 -2
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +256 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/ToolMessage.js +2 -2
- package/dist/src/ui/components/messages/ToolMessage.test.d.ts +1 -1
- package/dist/src/ui/components/messages/ToolMessage.test.js +7 -7
- package/dist/src/ui/components/messages/UserMessage.d.ts +1 -1
- package/dist/src/ui/components/messages/UserMessage.js +4 -2
- package/dist/src/ui/components/messages/UserMessage.js.map +1 -1
- package/dist/src/ui/components/messages/UserShellMessage.d.ts +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.js +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.test.js +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.js +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js +1 -1
- package/dist/src/ui/components/shared/text-buffer.d.ts +1 -1
- package/dist/src/ui/components/shared/text-buffer.js +2 -46
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -1
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +1 -1
- package/dist/src/ui/components/shared/vim-buffer-actions.js +1 -1
- package/dist/src/ui/constants.d.ts +3 -1
- package/dist/src/ui/constants.js +3 -1
- package/dist/src/ui/constants.js.map +1 -1
- package/dist/src/ui/containers/SessionController.d.ts +5 -0
- package/dist/src/ui/containers/SessionController.js +5 -0
- package/dist/src/ui/containers/SessionController.js.map +1 -1
- package/dist/src/ui/containers/SessionController.test.d.ts +1 -1
- package/dist/src/ui/containers/SessionController.test.js +1 -1
- package/dist/src/ui/containers/UIStateShell.d.ts +5 -0
- package/dist/src/ui/containers/UIStateShell.js.map +1 -1
- package/dist/src/ui/contexts/AppDispatchContext.d.ts +1 -1
- package/dist/src/ui/contexts/AppDispatchContext.js +1 -1
- package/dist/src/ui/contexts/KeypressContext.d.ts +3 -2
- package/dist/src/ui/contexts/KeypressContext.js +33 -41
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.test.d.ts +1 -1
- package/dist/src/ui/contexts/KeypressContext.test.js +122 -12
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -1
- package/dist/src/ui/contexts/OverflowContext.d.ts +1 -1
- package/dist/src/ui/contexts/OverflowContext.js +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +1 -1
- package/dist/src/ui/contexts/SessionContext.js +1 -1
- package/dist/src/ui/contexts/SessionStateContext.d.ts +1 -1
- package/dist/src/ui/contexts/SessionStateContext.js +1 -1
- package/dist/src/ui/contexts/SettingsContext.d.ts +1 -1
- package/dist/src/ui/contexts/SettingsContext.js +1 -1
- package/dist/src/ui/contexts/StreamingContext.d.ts +1 -1
- package/dist/src/ui/contexts/StreamingContext.js +1 -1
- package/dist/src/ui/contexts/TodoProvider.d.ts +5 -0
- package/dist/src/ui/contexts/TodoProvider.js +5 -0
- package/dist/src/ui/contexts/TodoProvider.js.map +1 -1
- package/dist/src/ui/contexts/VimModeContext.d.ts +1 -1
- package/dist/src/ui/contexts/VimModeContext.js +1 -1
- package/dist/src/ui/editors/editorSettingsManager.d.ts +1 -1
- package/dist/src/ui/editors/editorSettingsManager.js +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js +1 -2
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.test.js +10 -2
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -1
- package/dist/src/ui/hooks/index.d.ts +5 -0
- package/dist/src/ui/hooks/index.js +5 -0
- package/dist/src/ui/hooks/index.js.map +1 -1
- package/dist/src/ui/hooks/shellCommandProcessor.d.ts +1 -1
- package/dist/src/ui/hooks/shellCommandProcessor.js +1 -1
- package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +1 -1
- package/dist/src/ui/hooks/shellCommandProcessor.test.js +27 -16
- package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +8 -5
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useAtCompletion.d.ts +1 -1
- package/dist/src/ui/hooks/useAtCompletion.js +2 -1
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useAuthCommand.d.ts +1 -1
- package/dist/src/ui/hooks/useAuthCommand.js +1 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +4 -2
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +14 -5
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +1 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +123 -3
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -1
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +1 -1
- package/dist/src/ui/hooks/useBracketedPaste.js +1 -1
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +32 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +196 -0
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useCompletion.d.ts +1 -1
- package/dist/src/ui/hooks/useCompletion.js +1 -1
- package/dist/src/ui/hooks/useConsoleMessages.d.ts +1 -1
- package/dist/src/ui/hooks/useConsoleMessages.js +1 -1
- package/dist/src/ui/hooks/useEditorSettings.d.ts +1 -1
- package/dist/src/ui/hooks/useEditorSettings.js +1 -1
- package/dist/src/ui/hooks/useEditorSettings.test.d.ts +1 -1
- package/dist/src/ui/hooks/useEditorSettings.test.js +1 -1
- package/dist/src/ui/hooks/useFocus.d.ts +1 -1
- package/dist/src/ui/hooks/useFocus.js +1 -1
- package/dist/src/ui/hooks/useFolderTrust.d.ts +2 -1
- package/dist/src/ui/hooks/useFolderTrust.js +28 -5
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +2 -2
- package/dist/src/ui/hooks/useGeminiStream.integration.test.d.ts +1 -1
- package/dist/src/ui/hooks/useGeminiStream.integration.test.js +2 -2
- package/dist/src/ui/hooks/useGeminiStream.integration.test.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +77 -348
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useGitBranchName.d.ts +1 -1
- package/dist/src/ui/hooks/useGitBranchName.js +1 -1
- package/dist/src/ui/hooks/useGitBranchName.test.d.ts +1 -1
- package/dist/src/ui/hooks/useGitBranchName.test.js +1 -1
- package/dist/src/ui/hooks/useHistoryManager.d.ts +1 -1
- package/dist/src/ui/hooks/useHistoryManager.js +1 -1
- package/dist/src/ui/hooks/useHistoryManager.test.d.ts +1 -1
- package/dist/src/ui/hooks/useHistoryManager.test.js +1 -1
- package/dist/src/ui/hooks/useInputHistory.d.ts +1 -1
- package/dist/src/ui/hooks/useInputHistory.js +1 -1
- package/dist/src/ui/hooks/useInputHistory.test.d.ts +1 -1
- package/dist/src/ui/hooks/useInputHistory.test.js +1 -1
- package/dist/src/ui/hooks/useKeypress.d.ts +1 -1
- package/dist/src/ui/hooks/useKeypress.js +1 -1
- package/dist/src/ui/hooks/useKeypress.test.d.ts +1 -1
- package/dist/src/ui/hooks/useKeypress.test.js +1 -1
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +1 -1
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.js +1 -1
- package/dist/src/ui/hooks/useLogger.d.ts +3 -3
- package/dist/src/ui/hooks/useLogger.js +4 -4
- package/dist/src/ui/hooks/useLogger.js.map +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.js +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.d.ts +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.js +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.test.d.ts +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.test.js +1 -1
- package/dist/src/ui/hooks/usePromptCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/usePromptCompletion.js +177 -0
- package/dist/src/ui/hooks/usePromptCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useProviderModelDialog.d.ts +1 -1
- package/dist/src/ui/hooks/useProviderModelDialog.js +1 -1
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +1 -1
- package/dist/src/ui/hooks/useReactToolScheduler.js +3 -4
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -1
- package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +1 -1
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js +1 -1
- package/dist/src/ui/hooks/useResponsive.d.ts +1 -1
- package/dist/src/ui/hooks/useResponsive.js +1 -1
- package/dist/src/ui/hooks/useResponsive.test.d.ts +1 -1
- package/dist/src/ui/hooks/useResponsive.test.js +1 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +1 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +1 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +1 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +1 -1
- package/dist/src/ui/hooks/useSession.d.ts +1 -1
- package/dist/src/ui/hooks/useSession.js +1 -1
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +1 -1
- package/dist/src/ui/hooks/useSettingsCommand.js +1 -1
- package/dist/src/ui/hooks/useShellHistory.d.ts +3 -2
- package/dist/src/ui/hooks/useShellHistory.js +8 -9
- package/dist/src/ui/hooks/useShellHistory.js.map +1 -1
- package/dist/src/ui/hooks/useShellHistory.test.d.ts +1 -1
- package/dist/src/ui/hooks/useShellHistory.test.js +32 -2
- package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -1
- package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +1 -1
- package/dist/src/ui/hooks/useShowMemoryCommand.js +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.js +14 -3
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.test.js +1 -1
- package/dist/src/ui/hooks/useStableCallback.d.ts +1 -1
- package/dist/src/ui/hooks/useStableCallback.js +1 -1
- package/dist/src/ui/hooks/useStableCallback.test.d.ts +1 -1
- package/dist/src/ui/hooks/useStableCallback.test.js +1 -1
- package/dist/src/ui/hooks/useStateAndRef.d.ts +1 -1
- package/dist/src/ui/hooks/useStateAndRef.js +1 -1
- package/dist/src/ui/hooks/useTerminalSize.d.ts +1 -1
- package/dist/src/ui/hooks/useTerminalSize.js +1 -1
- package/dist/src/ui/hooks/useThemeCommand.d.ts +1 -1
- package/dist/src/ui/hooks/useThemeCommand.js +1 -1
- package/dist/src/ui/hooks/useTimer.d.ts +1 -1
- package/dist/src/ui/hooks/useTimer.js +1 -1
- package/dist/src/ui/hooks/useToolScheduler.test.d.ts +1 -1
- package/dist/src/ui/hooks/useToolScheduler.test.js +23 -11
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
- package/dist/src/ui/hooks/useWorkspaceMigration.d.ts +13 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js +50 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +1 -1
- package/dist/src/ui/hooks/vim.js +1 -1
- package/dist/src/ui/keyMatchers.d.ts +1 -1
- package/dist/src/ui/keyMatchers.js +1 -1
- package/dist/src/ui/keyMatchers.test.d.ts +1 -1
- package/dist/src/ui/keyMatchers.test.js +1 -1
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.d.ts +1 -1
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +1 -1
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +1 -1
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +1 -1
- package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +1 -1
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js +1 -1
- package/dist/src/ui/privacy/PrivacyNotice.d.ts +1 -1
- package/dist/src/ui/privacy/PrivacyNotice.js +1 -1
- package/dist/src/ui/reducers/appReducer.d.ts +1 -1
- package/dist/src/ui/reducers/appReducer.js +1 -1
- package/dist/src/ui/reducers/appReducer.test.d.ts +1 -1
- package/dist/src/ui/reducers/appReducer.test.js +1 -1
- package/dist/src/ui/reducers/sessionReducer.d.ts +1 -1
- package/dist/src/ui/reducers/sessionReducer.js +1 -1
- package/dist/src/ui/semantic-colors.d.ts +6 -0
- package/dist/src/ui/semantic-colors.js +8 -0
- package/dist/src/ui/semantic-colors.js.map +1 -0
- package/dist/src/ui/themes/ansi-light.d.ts +1 -1
- package/dist/src/ui/themes/ansi-light.js +1 -1
- package/dist/src/ui/themes/ansi.d.ts +1 -1
- package/dist/src/ui/themes/ansi.js +1 -1
- package/dist/src/ui/themes/atom-one-dark.d.ts +1 -1
- package/dist/src/ui/themes/atom-one-dark.js +1 -1
- package/dist/src/ui/themes/ayu-light.d.ts +1 -1
- package/dist/src/ui/themes/ayu-light.js +1 -1
- package/dist/src/ui/themes/ayu.d.ts +1 -1
- package/dist/src/ui/themes/ayu.js +1 -1
- package/dist/src/ui/themes/color-utils.d.ts +1 -1
- package/dist/src/ui/themes/color-utils.js +1 -1
- package/dist/src/ui/themes/color-utils.test.d.ts +1 -1
- package/dist/src/ui/themes/color-utils.test.js +1 -1
- package/dist/src/ui/themes/default-light.d.ts +1 -1
- package/dist/src/ui/themes/default-light.js +1 -1
- package/dist/src/ui/themes/default.d.ts +1 -1
- package/dist/src/ui/themes/default.js +1 -1
- package/dist/src/ui/themes/dracula.d.ts +1 -1
- package/dist/src/ui/themes/dracula.js +1 -1
- package/dist/src/ui/themes/github-dark.d.ts +1 -1
- package/dist/src/ui/themes/github-dark.js +1 -1
- package/dist/src/ui/themes/github-light.d.ts +1 -1
- package/dist/src/ui/themes/github-light.js +1 -1
- package/dist/src/ui/themes/googlecode.d.ts +1 -1
- package/dist/src/ui/themes/googlecode.js +2 -2
- package/dist/src/ui/themes/googlecode.js.map +1 -1
- package/dist/src/ui/themes/green-screen.d.ts +1 -1
- package/dist/src/ui/themes/green-screen.js +1 -1
- package/dist/src/ui/themes/no-color.d.ts +1 -1
- package/dist/src/ui/themes/no-color.js +1 -1
- package/dist/src/ui/themes/semantic-resolver.d.ts +1 -1
- package/dist/src/ui/themes/semantic-resolver.js +1 -1
- package/dist/src/ui/themes/semantic-resolver.test.d.ts +1 -1
- package/dist/src/ui/themes/semantic-resolver.test.js +1 -1
- package/dist/src/ui/themes/semantic-tokens.d.ts +1 -1
- package/dist/src/ui/themes/semantic-tokens.js +1 -1
- package/dist/src/ui/themes/semantic-tokens.test.d.ts +1 -1
- package/dist/src/ui/themes/semantic-tokens.test.js +1 -1
- package/dist/src/ui/themes/shades-of-purple.d.ts +1 -1
- package/dist/src/ui/themes/shades-of-purple.js +1 -1
- package/dist/src/ui/themes/theme-compat.d.ts +1 -1
- package/dist/src/ui/themes/theme-compat.js +1 -1
- package/dist/src/ui/themes/theme-manager.d.ts +3 -1
- package/dist/src/ui/themes/theme-manager.js +73 -6
- package/dist/src/ui/themes/theme-manager.js.map +1 -1
- package/dist/src/ui/themes/theme-manager.test.d.ts +1 -1
- package/dist/src/ui/themes/theme-manager.test.js +61 -2
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -1
- package/dist/src/ui/themes/theme.d.ts +4 -2
- package/dist/src/ui/themes/theme.js +32 -2
- package/dist/src/ui/themes/theme.js.map +1 -1
- package/dist/src/ui/themes/xcode.d.ts +1 -1
- package/dist/src/ui/themes/xcode.js +1 -1
- package/dist/src/ui/types.d.ts +3 -2
- package/dist/src/ui/types.js +1 -1
- package/dist/src/ui/types.js.map +1 -1
- package/dist/src/ui/utils/CodeColorizer.d.ts +1 -1
- package/dist/src/ui/utils/CodeColorizer.js +1 -1
- package/dist/src/ui/utils/ConsolePatcher.d.ts +1 -1
- package/dist/src/ui/utils/ConsolePatcher.js +1 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +1 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.js +9 -11
- package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.test.js +18 -17
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -1
- package/dist/src/ui/utils/TableRenderer.d.ts +1 -1
- package/dist/src/ui/utils/TableRenderer.js +6 -6
- package/dist/src/ui/utils/TableRenderer.js.map +1 -1
- package/dist/src/ui/utils/clipboardUtils.d.ts +1 -1
- package/dist/src/ui/utils/clipboardUtils.js +1 -1
- package/dist/src/ui/utils/clipboardUtils.test.d.ts +1 -1
- package/dist/src/ui/utils/clipboardUtils.test.js +1 -1
- package/dist/src/ui/utils/commandUtils.d.ts +2 -2
- package/dist/src/ui/utils/commandUtils.js +52 -14
- package/dist/src/ui/utils/commandUtils.js.map +1 -1
- package/dist/src/ui/utils/commandUtils.test.d.ts +1 -1
- package/dist/src/ui/utils/commandUtils.test.js +75 -20
- package/dist/src/ui/utils/commandUtils.test.js.map +1 -1
- package/dist/src/ui/utils/computeStats.d.ts +1 -1
- package/dist/src/ui/utils/computeStats.js +1 -1
- package/dist/src/ui/utils/displayUtils.d.ts +1 -1
- package/dist/src/ui/utils/displayUtils.js +1 -1
- package/dist/src/ui/utils/displayUtils.test.d.ts +1 -1
- package/dist/src/ui/utils/displayUtils.test.js +1 -1
- package/dist/src/ui/utils/formatters.d.ts +1 -1
- package/dist/src/ui/utils/formatters.js +1 -1
- package/dist/src/ui/utils/formatters.test.d.ts +1 -1
- package/dist/src/ui/utils/formatters.test.js +1 -1
- package/dist/src/ui/utils/kittyProtocolDetector.d.ts +1 -1
- package/dist/src/ui/utils/kittyProtocolDetector.js +1 -1
- package/dist/src/ui/utils/markdownUtilities.d.ts +1 -1
- package/dist/src/ui/utils/markdownUtilities.js +1 -1
- package/dist/src/ui/utils/markdownUtilities.test.d.ts +1 -1
- package/dist/src/ui/utils/markdownUtilities.test.js +1 -1
- package/dist/src/ui/utils/platformConstants.d.ts +8 -1
- package/dist/src/ui/utils/platformConstants.js +8 -1
- package/dist/src/ui/utils/platformConstants.js.map +1 -1
- package/dist/src/ui/utils/renderLoopDetector.d.ts +1 -1
- package/dist/src/ui/utils/renderLoopDetector.js +1 -1
- package/dist/src/ui/utils/responsive.d.ts +1 -1
- package/dist/src/ui/utils/responsive.js +1 -1
- package/dist/src/ui/utils/responsive.test.d.ts +1 -1
- package/dist/src/ui/utils/responsive.test.js +1 -1
- package/dist/src/ui/utils/terminalSetup.d.ts +1 -1
- package/dist/src/ui/utils/terminalSetup.js +1 -1
- package/dist/src/ui/utils/textUtils.d.ts +19 -1
- package/dist/src/ui/utils/textUtils.js +45 -1
- package/dist/src/ui/utils/textUtils.js.map +1 -1
- package/dist/src/ui/utils/updateCheck.d.ts +1 -1
- package/dist/src/ui/utils/updateCheck.js +1 -1
- package/dist/src/ui/utils/updateCheck.test.d.ts +1 -1
- package/dist/src/ui/utils/updateCheck.test.js +1 -1
- package/dist/src/utils/ConversationContext.d.ts +2 -12
- package/dist/src/utils/ConversationContext.js +2 -12
- package/dist/src/utils/ConversationContext.js.map +1 -1
- package/dist/src/utils/ConversationContext.test.d.ts +1 -1
- package/dist/src/utils/ConversationContext.test.js +1 -1
- package/dist/src/utils/checks.d.ts +1 -1
- package/dist/src/utils/checks.js +1 -1
- package/dist/src/utils/cleanup.d.ts +1 -1
- package/dist/src/utils/cleanup.js +4 -3
- package/dist/src/utils/cleanup.js.map +1 -1
- package/dist/src/utils/dialogScopeUtils.d.ts +1 -1
- package/dist/src/utils/dialogScopeUtils.js +1 -1
- package/dist/src/utils/events.d.ts +1 -1
- package/dist/src/utils/events.js +1 -1
- package/dist/src/utils/gitUtils.d.ts +1 -1
- package/dist/src/utils/gitUtils.js +1 -1
- package/dist/src/utils/gitUtils.test.d.ts +1 -1
- package/dist/src/utils/gitUtils.test.js +4 -4
- package/dist/src/utils/gitUtils.test.js.map +1 -1
- package/dist/src/utils/handleAutoUpdate.d.ts +1 -1
- package/dist/src/utils/handleAutoUpdate.js +1 -1
- package/dist/src/utils/installationInfo.d.ts +1 -1
- package/dist/src/utils/installationInfo.js +1 -1
- package/dist/src/utils/installationInfo.test.d.ts +1 -1
- package/dist/src/utils/installationInfo.test.js +1 -1
- package/dist/src/utils/package.d.ts +1 -1
- package/dist/src/utils/package.js +1 -1
- package/dist/src/utils/readStdin.d.ts +1 -1
- package/dist/src/utils/readStdin.js +16 -1
- package/dist/src/utils/readStdin.js.map +1 -1
- package/dist/src/utils/readStdin.test.d.ts +6 -0
- package/dist/src/utils/readStdin.test.js +88 -0
- package/dist/src/utils/readStdin.test.js.map +1 -0
- package/dist/src/utils/resolvePath.d.ts +1 -1
- package/dist/src/utils/resolvePath.js +1 -1
- package/dist/src/utils/sandbox.d.ts +3 -3
- package/dist/src/utils/sandbox.js +22 -29
- package/dist/src/utils/sandbox.js.map +1 -1
- package/dist/src/utils/settingsUtils.d.ts +1 -1
- package/dist/src/utils/settingsUtils.js +1 -1
- package/dist/src/utils/settingsUtils.test.d.ts +1 -1
- package/dist/src/utils/settingsUtils.test.js +1 -1
- package/dist/src/utils/spawnWrapper.d.ts +1 -1
- package/dist/src/utils/spawnWrapper.js +1 -1
- package/dist/src/utils/startupWarnings.d.ts +1 -1
- package/dist/src/utils/startupWarnings.js +1 -1
- package/dist/src/utils/updateEventEmitter.d.ts +1 -1
- package/dist/src/utils/updateEventEmitter.js +1 -1
- package/dist/src/utils/userStartupWarnings.d.ts +1 -1
- package/dist/src/utils/userStartupWarnings.js +1 -1
- package/dist/src/utils/userStartupWarnings.test.d.ts +1 -1
- package/dist/src/utils/userStartupWarnings.test.js +1 -1
- package/dist/src/utils/version.d.ts +1 -1
- package/dist/src/utils/version.js +1 -1
- package/dist/src/validateNonInterActiveAuth.d.ts +1 -1
- package/dist/src/validateNonInterActiveAuth.js +1 -1
- package/dist/src/zed-integration/acp.d.ts +1 -1
- package/dist/src/zed-integration/acp.js +3 -2
- package/dist/src/zed-integration/acp.js.map +1 -1
- package/dist/src/zed-integration/fileSystemService.d.ts +1 -1
- package/dist/src/zed-integration/fileSystemService.js +1 -1
- package/dist/src/zed-integration/schema.d.ts +79 -79
- package/dist/src/zed-integration/schema.js +1 -1
- package/dist/src/zed-integration/zedIntegration.d.ts +1 -1
- package/dist/src/zed-integration/zedIntegration.js +5 -13
- package/dist/src/zed-integration/zedIntegration.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -5
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"acp.js","sourceRoot":"","sources":["../../../src/zed-integration/acp.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"acp.js","sourceRoot":"","sources":["../../../src/zed-integration/acp.ts"],"names":[],"mappings":"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"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Copyright 2025
|
3
|
+
* Copyright 2025 Vybestack LLC
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
6
|
import { z } from 'zod';
|
@@ -197,11 +197,11 @@ export declare const planEntrySchema: z.ZodObject<{
|
|
197
197
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
198
198
|
}, "strip", z.ZodTypeAny, {
|
199
199
|
content: string;
|
200
|
-
status: "
|
200
|
+
status: "completed" | "in_progress" | "pending";
|
201
201
|
priority: "high" | "medium" | "low";
|
202
202
|
}, {
|
203
203
|
content: string;
|
204
|
-
status: "
|
204
|
+
status: "completed" | "in_progress" | "pending";
|
205
205
|
priority: "high" | "medium" | "low";
|
206
206
|
}>;
|
207
207
|
export declare const permissionOptionSchema: z.ZodObject<{
|
@@ -1581,9 +1581,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1581
1581
|
title: z.ZodString;
|
1582
1582
|
toolCallId: z.ZodString;
|
1583
1583
|
}, "strip", z.ZodTypeAny, {
|
1584
|
-
status: "
|
1584
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
1585
1585
|
title: string;
|
1586
|
-
kind: "search" | "
|
1586
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
1587
1587
|
toolCallId: string;
|
1588
1588
|
content?: ({
|
1589
1589
|
content: {
|
@@ -1655,9 +1655,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1655
1655
|
}[] | undefined;
|
1656
1656
|
rawInput?: unknown;
|
1657
1657
|
}, {
|
1658
|
-
status: "
|
1658
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
1659
1659
|
title: string;
|
1660
|
-
kind: "search" | "
|
1660
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
1661
1661
|
toolCallId: string;
|
1662
1662
|
content?: ({
|
1663
1663
|
content: {
|
@@ -3486,9 +3486,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3486
3486
|
title: z.ZodString;
|
3487
3487
|
toolCallId: z.ZodString;
|
3488
3488
|
}, "strip", z.ZodTypeAny, {
|
3489
|
-
status: "
|
3489
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
3490
3490
|
title: string;
|
3491
|
-
kind: "search" | "
|
3491
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
3492
3492
|
toolCallId: string;
|
3493
3493
|
sessionUpdate: "tool_call";
|
3494
3494
|
content?: ({
|
@@ -3561,9 +3561,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3561
3561
|
}[] | undefined;
|
3562
3562
|
rawInput?: unknown;
|
3563
3563
|
}, {
|
3564
|
-
status: "
|
3564
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
3565
3565
|
title: string;
|
3566
|
-
kind: "search" | "
|
3566
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
3567
3567
|
toolCallId: string;
|
3568
3568
|
sessionUpdate: "tool_call";
|
3569
3569
|
content?: ({
|
@@ -4075,9 +4075,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4075
4075
|
newText: string;
|
4076
4076
|
oldText: string | null;
|
4077
4077
|
})[] | null | undefined;
|
4078
|
-
status?: "
|
4078
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
4079
4079
|
title?: string | null | undefined;
|
4080
|
-
kind?: "search" | "
|
4080
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
4081
4081
|
locations?: {
|
4082
4082
|
path: string;
|
4083
4083
|
line?: number | null | undefined;
|
@@ -4150,9 +4150,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4150
4150
|
newText: string;
|
4151
4151
|
oldText: string | null;
|
4152
4152
|
})[] | null | undefined;
|
4153
|
-
status?: "
|
4153
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
4154
4154
|
title?: string | null | undefined;
|
4155
|
-
kind?: "search" | "
|
4155
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
4156
4156
|
locations?: {
|
4157
4157
|
path: string;
|
4158
4158
|
line?: number | null | undefined;
|
@@ -4165,25 +4165,25 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4165
4165
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
4166
4166
|
}, "strip", z.ZodTypeAny, {
|
4167
4167
|
content: string;
|
4168
|
-
status: "
|
4168
|
+
status: "completed" | "in_progress" | "pending";
|
4169
4169
|
priority: "high" | "medium" | "low";
|
4170
4170
|
}, {
|
4171
4171
|
content: string;
|
4172
|
-
status: "
|
4172
|
+
status: "completed" | "in_progress" | "pending";
|
4173
4173
|
priority: "high" | "medium" | "low";
|
4174
4174
|
}>, "many">;
|
4175
4175
|
sessionUpdate: z.ZodLiteral<"plan">;
|
4176
4176
|
}, "strip", z.ZodTypeAny, {
|
4177
4177
|
entries: {
|
4178
4178
|
content: string;
|
4179
|
-
status: "
|
4179
|
+
status: "completed" | "in_progress" | "pending";
|
4180
4180
|
priority: "high" | "medium" | "low";
|
4181
4181
|
}[];
|
4182
4182
|
sessionUpdate: "plan";
|
4183
4183
|
}, {
|
4184
4184
|
entries: {
|
4185
4185
|
content: string;
|
4186
|
-
status: "
|
4186
|
+
status: "completed" | "in_progress" | "pending";
|
4187
4187
|
priority: "high" | "medium" | "low";
|
4188
4188
|
}[];
|
4189
4189
|
sessionUpdate: "plan";
|
@@ -4664,9 +4664,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4664
4664
|
title: z.ZodString;
|
4665
4665
|
toolCallId: z.ZodString;
|
4666
4666
|
}, "strip", z.ZodTypeAny, {
|
4667
|
-
status: "
|
4667
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
4668
4668
|
title: string;
|
4669
|
-
kind: "search" | "
|
4669
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
4670
4670
|
toolCallId: string;
|
4671
4671
|
content?: ({
|
4672
4672
|
content: {
|
@@ -4738,9 +4738,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4738
4738
|
}[] | undefined;
|
4739
4739
|
rawInput?: unknown;
|
4740
4740
|
}, {
|
4741
|
-
status: "
|
4741
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
4742
4742
|
title: string;
|
4743
|
-
kind: "search" | "
|
4743
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
4744
4744
|
toolCallId: string;
|
4745
4745
|
content?: ({
|
4746
4746
|
content: {
|
@@ -4820,9 +4820,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4820
4820
|
optionId: string;
|
4821
4821
|
}[];
|
4822
4822
|
toolCall: {
|
4823
|
-
status: "
|
4823
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
4824
4824
|
title: string;
|
4825
|
-
kind: "search" | "
|
4825
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
4826
4826
|
toolCallId: string;
|
4827
4827
|
content?: ({
|
4828
4828
|
content: {
|
@@ -4902,9 +4902,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4902
4902
|
optionId: string;
|
4903
4903
|
}[];
|
4904
4904
|
toolCall: {
|
4905
|
-
status: "
|
4905
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
4906
4906
|
title: string;
|
4907
|
-
kind: "search" | "
|
4907
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
4908
4908
|
toolCallId: string;
|
4909
4909
|
content?: ({
|
4910
4910
|
content: {
|
@@ -6414,9 +6414,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6414
6414
|
title: z.ZodString;
|
6415
6415
|
toolCallId: z.ZodString;
|
6416
6416
|
}, "strip", z.ZodTypeAny, {
|
6417
|
-
status: "
|
6417
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
6418
6418
|
title: string;
|
6419
|
-
kind: "search" | "
|
6419
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
6420
6420
|
toolCallId: string;
|
6421
6421
|
sessionUpdate: "tool_call";
|
6422
6422
|
content?: ({
|
@@ -6489,9 +6489,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6489
6489
|
}[] | undefined;
|
6490
6490
|
rawInput?: unknown;
|
6491
6491
|
}, {
|
6492
|
-
status: "
|
6492
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
6493
6493
|
title: string;
|
6494
|
-
kind: "search" | "
|
6494
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
6495
6495
|
toolCallId: string;
|
6496
6496
|
sessionUpdate: "tool_call";
|
6497
6497
|
content?: ({
|
@@ -7003,9 +7003,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7003
7003
|
newText: string;
|
7004
7004
|
oldText: string | null;
|
7005
7005
|
})[] | null | undefined;
|
7006
|
-
status?: "
|
7006
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
7007
7007
|
title?: string | null | undefined;
|
7008
|
-
kind?: "search" | "
|
7008
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
7009
7009
|
locations?: {
|
7010
7010
|
path: string;
|
7011
7011
|
line?: number | null | undefined;
|
@@ -7078,9 +7078,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7078
7078
|
newText: string;
|
7079
7079
|
oldText: string | null;
|
7080
7080
|
})[] | null | undefined;
|
7081
|
-
status?: "
|
7081
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
7082
7082
|
title?: string | null | undefined;
|
7083
|
-
kind?: "search" | "
|
7083
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
7084
7084
|
locations?: {
|
7085
7085
|
path: string;
|
7086
7086
|
line?: number | null | undefined;
|
@@ -7093,25 +7093,25 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7093
7093
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
7094
7094
|
}, "strip", z.ZodTypeAny, {
|
7095
7095
|
content: string;
|
7096
|
-
status: "
|
7096
|
+
status: "completed" | "in_progress" | "pending";
|
7097
7097
|
priority: "high" | "medium" | "low";
|
7098
7098
|
}, {
|
7099
7099
|
content: string;
|
7100
|
-
status: "
|
7100
|
+
status: "completed" | "in_progress" | "pending";
|
7101
7101
|
priority: "high" | "medium" | "low";
|
7102
7102
|
}>, "many">;
|
7103
7103
|
sessionUpdate: z.ZodLiteral<"plan">;
|
7104
7104
|
}, "strip", z.ZodTypeAny, {
|
7105
7105
|
entries: {
|
7106
7106
|
content: string;
|
7107
|
-
status: "
|
7107
|
+
status: "completed" | "in_progress" | "pending";
|
7108
7108
|
priority: "high" | "medium" | "low";
|
7109
7109
|
}[];
|
7110
7110
|
sessionUpdate: "plan";
|
7111
7111
|
}, {
|
7112
7112
|
entries: {
|
7113
7113
|
content: string;
|
7114
|
-
status: "
|
7114
|
+
status: "completed" | "in_progress" | "pending";
|
7115
7115
|
priority: "high" | "medium" | "low";
|
7116
7116
|
}[];
|
7117
7117
|
sessionUpdate: "plan";
|
@@ -7293,9 +7293,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7293
7293
|
};
|
7294
7294
|
sessionUpdate: "agent_thought_chunk";
|
7295
7295
|
} | {
|
7296
|
-
status: "
|
7296
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
7297
7297
|
title: string;
|
7298
|
-
kind: "search" | "
|
7298
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
7299
7299
|
toolCallId: string;
|
7300
7300
|
sessionUpdate: "tool_call";
|
7301
7301
|
content?: ({
|
@@ -7434,9 +7434,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7434
7434
|
newText: string;
|
7435
7435
|
oldText: string | null;
|
7436
7436
|
})[] | null | undefined;
|
7437
|
-
status?: "
|
7437
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
7438
7438
|
title?: string | null | undefined;
|
7439
|
-
kind?: "search" | "
|
7439
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
7440
7440
|
locations?: {
|
7441
7441
|
path: string;
|
7442
7442
|
line?: number | null | undefined;
|
@@ -7445,7 +7445,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7445
7445
|
} | {
|
7446
7446
|
entries: {
|
7447
7447
|
content: string;
|
7448
|
-
status: "
|
7448
|
+
status: "completed" | "in_progress" | "pending";
|
7449
7449
|
priority: "high" | "medium" | "low";
|
7450
7450
|
}[];
|
7451
7451
|
sessionUpdate: "plan";
|
@@ -7627,9 +7627,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7627
7627
|
};
|
7628
7628
|
sessionUpdate: "agent_thought_chunk";
|
7629
7629
|
} | {
|
7630
|
-
status: "
|
7630
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
7631
7631
|
title: string;
|
7632
|
-
kind: "search" | "
|
7632
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
7633
7633
|
toolCallId: string;
|
7634
7634
|
sessionUpdate: "tool_call";
|
7635
7635
|
content?: ({
|
@@ -7768,9 +7768,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7768
7768
|
newText: string;
|
7769
7769
|
oldText: string | null;
|
7770
7770
|
})[] | null | undefined;
|
7771
|
-
status?: "
|
7771
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
7772
7772
|
title?: string | null | undefined;
|
7773
|
-
kind?: "search" | "
|
7773
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
7774
7774
|
locations?: {
|
7775
7775
|
path: string;
|
7776
7776
|
line?: number | null | undefined;
|
@@ -7779,7 +7779,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7779
7779
|
} | {
|
7780
7780
|
entries: {
|
7781
7781
|
content: string;
|
7782
|
-
status: "
|
7782
|
+
status: "completed" | "in_progress" | "pending";
|
7783
7783
|
priority: "high" | "medium" | "low";
|
7784
7784
|
}[];
|
7785
7785
|
sessionUpdate: "plan";
|
@@ -8200,9 +8200,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8200
8200
|
title: z.ZodString;
|
8201
8201
|
toolCallId: z.ZodString;
|
8202
8202
|
}, "strip", z.ZodTypeAny, {
|
8203
|
-
status: "
|
8203
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
8204
8204
|
title: string;
|
8205
|
-
kind: "search" | "
|
8205
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
8206
8206
|
toolCallId: string;
|
8207
8207
|
content?: ({
|
8208
8208
|
content: {
|
@@ -8274,9 +8274,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8274
8274
|
}[] | undefined;
|
8275
8275
|
rawInput?: unknown;
|
8276
8276
|
}, {
|
8277
|
-
status: "
|
8277
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
8278
8278
|
title: string;
|
8279
|
-
kind: "search" | "
|
8279
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
8280
8280
|
toolCallId: string;
|
8281
8281
|
content?: ({
|
8282
8282
|
content: {
|
@@ -8356,9 +8356,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8356
8356
|
optionId: string;
|
8357
8357
|
}[];
|
8358
8358
|
toolCall: {
|
8359
|
-
status: "
|
8359
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
8360
8360
|
title: string;
|
8361
|
-
kind: "search" | "
|
8361
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
8362
8362
|
toolCallId: string;
|
8363
8363
|
content?: ({
|
8364
8364
|
content: {
|
@@ -8438,9 +8438,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8438
8438
|
optionId: string;
|
8439
8439
|
}[];
|
8440
8440
|
toolCall: {
|
8441
|
-
status: "
|
8441
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
8442
8442
|
title: string;
|
8443
|
-
kind: "search" | "
|
8443
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
8444
8444
|
toolCallId: string;
|
8445
8445
|
content?: ({
|
8446
8446
|
content: {
|
@@ -10409,9 +10409,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10409
10409
|
title: z.ZodString;
|
10410
10410
|
toolCallId: z.ZodString;
|
10411
10411
|
}, "strip", z.ZodTypeAny, {
|
10412
|
-
status: "
|
10412
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
10413
10413
|
title: string;
|
10414
|
-
kind: "search" | "
|
10414
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
10415
10415
|
toolCallId: string;
|
10416
10416
|
sessionUpdate: "tool_call";
|
10417
10417
|
content?: ({
|
@@ -10484,9 +10484,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10484
10484
|
}[] | undefined;
|
10485
10485
|
rawInput?: unknown;
|
10486
10486
|
}, {
|
10487
|
-
status: "
|
10487
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
10488
10488
|
title: string;
|
10489
|
-
kind: "search" | "
|
10489
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
10490
10490
|
toolCallId: string;
|
10491
10491
|
sessionUpdate: "tool_call";
|
10492
10492
|
content?: ({
|
@@ -10998,9 +10998,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10998
10998
|
newText: string;
|
10999
10999
|
oldText: string | null;
|
11000
11000
|
})[] | null | undefined;
|
11001
|
-
status?: "
|
11001
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
11002
11002
|
title?: string | null | undefined;
|
11003
|
-
kind?: "search" | "
|
11003
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
11004
11004
|
locations?: {
|
11005
11005
|
path: string;
|
11006
11006
|
line?: number | null | undefined;
|
@@ -11073,9 +11073,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11073
11073
|
newText: string;
|
11074
11074
|
oldText: string | null;
|
11075
11075
|
})[] | null | undefined;
|
11076
|
-
status?: "
|
11076
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
11077
11077
|
title?: string | null | undefined;
|
11078
|
-
kind?: "search" | "
|
11078
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
11079
11079
|
locations?: {
|
11080
11080
|
path: string;
|
11081
11081
|
line?: number | null | undefined;
|
@@ -11088,25 +11088,25 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11088
11088
|
status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
|
11089
11089
|
}, "strip", z.ZodTypeAny, {
|
11090
11090
|
content: string;
|
11091
|
-
status: "
|
11091
|
+
status: "completed" | "in_progress" | "pending";
|
11092
11092
|
priority: "high" | "medium" | "low";
|
11093
11093
|
}, {
|
11094
11094
|
content: string;
|
11095
|
-
status: "
|
11095
|
+
status: "completed" | "in_progress" | "pending";
|
11096
11096
|
priority: "high" | "medium" | "low";
|
11097
11097
|
}>, "many">;
|
11098
11098
|
sessionUpdate: z.ZodLiteral<"plan">;
|
11099
11099
|
}, "strip", z.ZodTypeAny, {
|
11100
11100
|
entries: {
|
11101
11101
|
content: string;
|
11102
|
-
status: "
|
11102
|
+
status: "completed" | "in_progress" | "pending";
|
11103
11103
|
priority: "high" | "medium" | "low";
|
11104
11104
|
}[];
|
11105
11105
|
sessionUpdate: "plan";
|
11106
11106
|
}, {
|
11107
11107
|
entries: {
|
11108
11108
|
content: string;
|
11109
|
-
status: "
|
11109
|
+
status: "completed" | "in_progress" | "pending";
|
11110
11110
|
priority: "high" | "medium" | "low";
|
11111
11111
|
}[];
|
11112
11112
|
sessionUpdate: "plan";
|
@@ -11288,9 +11288,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11288
11288
|
};
|
11289
11289
|
sessionUpdate: "agent_thought_chunk";
|
11290
11290
|
} | {
|
11291
|
-
status: "
|
11291
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
11292
11292
|
title: string;
|
11293
|
-
kind: "search" | "
|
11293
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
11294
11294
|
toolCallId: string;
|
11295
11295
|
sessionUpdate: "tool_call";
|
11296
11296
|
content?: ({
|
@@ -11429,9 +11429,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11429
11429
|
newText: string;
|
11430
11430
|
oldText: string | null;
|
11431
11431
|
})[] | null | undefined;
|
11432
|
-
status?: "
|
11432
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
11433
11433
|
title?: string | null | undefined;
|
11434
|
-
kind?: "search" | "
|
11434
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
11435
11435
|
locations?: {
|
11436
11436
|
path: string;
|
11437
11437
|
line?: number | null | undefined;
|
@@ -11440,7 +11440,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11440
11440
|
} | {
|
11441
11441
|
entries: {
|
11442
11442
|
content: string;
|
11443
|
-
status: "
|
11443
|
+
status: "completed" | "in_progress" | "pending";
|
11444
11444
|
priority: "high" | "medium" | "low";
|
11445
11445
|
}[];
|
11446
11446
|
sessionUpdate: "plan";
|
@@ -11622,9 +11622,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11622
11622
|
};
|
11623
11623
|
sessionUpdate: "agent_thought_chunk";
|
11624
11624
|
} | {
|
11625
|
-
status: "
|
11625
|
+
status: "completed" | "failed" | "in_progress" | "pending";
|
11626
11626
|
title: string;
|
11627
|
-
kind: "search" | "
|
11627
|
+
kind: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think";
|
11628
11628
|
toolCallId: string;
|
11629
11629
|
sessionUpdate: "tool_call";
|
11630
11630
|
content?: ({
|
@@ -11763,9 +11763,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11763
11763
|
newText: string;
|
11764
11764
|
oldText: string | null;
|
11765
11765
|
})[] | null | undefined;
|
11766
|
-
status?: "
|
11766
|
+
status?: "completed" | "failed" | "in_progress" | "pending" | null | undefined;
|
11767
11767
|
title?: string | null | undefined;
|
11768
|
-
kind?: "search" | "
|
11768
|
+
kind?: "search" | "delete" | "move" | "other" | "edit" | "fetch" | "read" | "execute" | "think" | null | undefined;
|
11769
11769
|
locations?: {
|
11770
11770
|
path: string;
|
11771
11771
|
line?: number | null | undefined;
|
@@ -11774,7 +11774,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11774
11774
|
} | {
|
11775
11775
|
entries: {
|
11776
11776
|
content: string;
|
11777
|
-
status: "
|
11777
|
+
status: "completed" | "in_progress" | "pending";
|
11778
11778
|
priority: "high" | "medium" | "low";
|
11779
11779
|
}[];
|
11780
11780
|
sessionUpdate: "plan";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* @license
|
3
|
-
* Copyright 2025
|
3
|
+
* Copyright 2025 Vybestack LLC
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
5
5
|
*/
|
6
6
|
import { AuthType, logToolCall, convertToFunctionResponse, ToolConfirmationOutcome, clearCachedCredentialFile, isNodeError, getErrorMessage, isWithinRoot, getErrorStatus, DiscoveredMCPTool, DebugLogger, getFunctionCalls, EmojiFilter, } from '@vybestack/llxprt-code-core';
|
@@ -394,15 +394,7 @@ class Session {
|
|
394
394
|
return { stopReason: 'cancelled' };
|
395
395
|
}
|
396
396
|
const response = await this.runTool(pendingSend.signal, promptId, fc);
|
397
|
-
|
398
|
-
for (const part of parts) {
|
399
|
-
if (typeof part === 'string') {
|
400
|
-
toolResponseParts.push({ text: part });
|
401
|
-
}
|
402
|
-
else if (part) {
|
403
|
-
toolResponseParts.push(part);
|
404
|
-
}
|
405
|
-
}
|
397
|
+
toolResponseParts.push(...response);
|
406
398
|
}
|
407
399
|
// For multiple tool responses, send them all together as the TUI does
|
408
400
|
// This ensures proper conversation history structure for providers like Anthropic
|
@@ -550,6 +542,7 @@ class Session {
|
|
550
542
|
// Return paired function call and function response like the TUI does
|
551
543
|
// This ensures proper conversation history for providers that need it (like Anthropic)
|
552
544
|
const functionResponseParts = convertToFunctionResponse(fc.name, callId, toolResult.llmContent);
|
545
|
+
// Return atomic pairing of function call and response
|
553
546
|
return [
|
554
547
|
{
|
555
548
|
functionCall: {
|
@@ -558,9 +551,8 @@ class Session {
|
|
558
551
|
args,
|
559
552
|
},
|
560
553
|
},
|
561
|
-
|
562
|
-
|
563
|
-
: [functionResponseParts]),
|
554
|
+
// Spread the response parts since convertToFunctionResponse returns Part[]
|
555
|
+
...functionResponseParts,
|
564
556
|
];
|
565
557
|
}
|
566
558
|
catch (e) {
|