@blackbox_ai/blackbox-cli 0.0.7 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -183
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/dist/package.json +13 -3
- package/dist/src/built-in-extensions/conductor/README.md +242 -0
- package/dist/src/built-in-extensions/conductor/blackbox-extension.json +5 -0
- package/dist/src/built-in-extensions/conductor/commands/conductor/implement.toml +170 -0
- package/dist/src/built-in-extensions/conductor/commands/conductor/newTrack.toml +142 -0
- package/dist/src/built-in-extensions/conductor/commands/conductor/revert.toml +122 -0
- package/dist/src/built-in-extensions/conductor/commands/conductor/setup.toml +424 -0
- package/dist/src/built-in-extensions/conductor/commands/conductor/status.toml +57 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/general.md +23 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/go.md +48 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/html-css.md +49 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/javascript.md +51 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/python.md +37 -0
- package/dist/src/built-in-extensions/conductor/templates/code_styleguides/typescript.md +43 -0
- package/dist/src/built-in-extensions/conductor/templates/workflow.md +333 -0
- package/dist/src/built-in-extensions-data.d.ts +15 -0
- package/dist/src/built-in-extensions-data.js +61 -0
- package/dist/src/built-in-extensions-data.js.map +1 -0
- package/dist/src/commands/configure/ConfigureUI.d.ts +14 -0
- package/dist/src/commands/configure/ConfigureUI.js +556 -0
- package/dist/src/commands/configure/ConfigureUI.js.map +1 -0
- package/dist/src/commands/configure/index.d.ts +7 -0
- package/dist/src/commands/configure/index.js +62 -0
- package/dist/src/commands/configure/index.js.map +1 -0
- package/dist/src/commands/configure.d.ts +7 -0
- package/dist/src/commands/configure.js +276 -0
- package/dist/src/commands/configure.js.map +1 -0
- package/dist/src/commands/configure.test.d.ts +6 -0
- package/dist/src/commands/configure.test.js +32 -0
- package/dist/src/commands/configure.test.js.map +1 -0
- package/dist/src/commands/extensions/enable.js +1 -1
- package/dist/src/commands/extensions/enable.js.map +1 -1
- package/dist/src/commands/extensions/examples/context/CONTEXT.md +16 -0
- package/dist/src/commands/extensions/examples/context/blackbox-extension.json +5 -0
- package/dist/src/commands/extensions/examples/custom-commands/blackbox-extension.json +4 -0
- package/dist/src/commands/extensions/examples/custom-commands/commands/deploy.toml +12 -0
- package/dist/src/commands/extensions/examples/exclude-tools/README.md +28 -0
- package/dist/src/commands/extensions/examples/exclude-tools/blackbox-extension.json +5 -0
- package/dist/src/commands/extensions/install.d.ts +6 -2
- package/dist/src/commands/extensions/install.js +109 -15
- package/dist/src/commands/extensions/install.js.map +1 -1
- package/dist/src/commands/extensions/link.d.ts +12 -0
- package/dist/src/commands/extensions/link.js +53 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/list.js +2 -2
- package/dist/src/commands/extensions/list.js.map +1 -1
- package/dist/src/commands/extensions/new.d.ts +13 -0
- package/dist/src/commands/extensions/new.js +145 -0
- package/dist/src/commands/extensions/new.js.map +1 -0
- package/dist/src/commands/extensions/settings.d.ts +18 -0
- package/dist/src/commands/extensions/settings.js +98 -0
- package/dist/src/commands/extensions/settings.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +2 -1
- package/dist/src/commands/extensions/update.js +59 -10
- package/dist/src/commands/extensions/update.js.map +1 -1
- package/dist/src/commands/extensions/validate.d.ts +12 -0
- package/dist/src/commands/extensions/validate.js +72 -0
- package/dist/src/commands/extensions/validate.js.map +1 -0
- package/dist/src/commands/extensions.js +10 -1
- package/dist/src/commands/extensions.js.map +1 -1
- package/dist/src/commands/mcp/add.d.ts +11 -0
- package/dist/src/commands/mcp/add.js +61 -7
- package/dist/src/commands/mcp/add.js.map +1 -1
- package/dist/src/commands/update.d.ts +7 -0
- package/dist/src/commands/update.js +103 -0
- package/dist/src/commands/update.js.map +1 -0
- package/dist/src/commands/voice.d.ts +7 -0
- package/dist/src/commands/voice.js +510 -0
- package/dist/src/commands/voice.js.map +1 -0
- package/dist/src/config/auth.d.ts +32 -1
- package/dist/src/config/auth.js +317 -2
- package/dist/src/config/auth.js.map +1 -1
- package/dist/src/config/config.d.ts +7 -1
- package/dist/src/config/config.js +71 -10
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extension.d.ts +6 -1
- package/dist/src/config/extension.js +137 -11
- package/dist/src/config/extension.js.map +1 -1
- package/dist/src/config/extensions/github.d.ts +48 -0
- package/dist/src/config/extensions/github.js +308 -0
- package/dist/src/config/extensions/github.js.map +1 -0
- package/dist/src/config/keyBindings.d.ts +1 -0
- package/dist/src/config/keyBindings.js +3 -0
- package/dist/src/config/keyBindings.js.map +1 -1
- package/dist/src/config/modelFetcher.d.ts +21 -0
- package/dist/src/config/modelFetcher.js +226 -0
- package/dist/src/config/modelFetcher.js.map +1 -0
- package/dist/src/config/settings.js +101 -0
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +626 -0
- package/dist/src/config/settingsSchema.js +626 -0
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/config/voice.d.ts +31 -0
- package/dist/src/config/voice.js +82 -0
- package/dist/src/config/voice.js.map +1 -0
- package/dist/src/encrypt/attestation.d.ts +5 -0
- package/dist/src/encrypt/attestation.js +100 -0
- package/dist/src/encrypt/attestation.js.map +1 -0
- package/dist/src/encrypt/bridge.d.ts +30 -0
- package/dist/src/encrypt/bridge.js +32 -0
- package/dist/src/encrypt/bridge.js.map +1 -0
- package/dist/src/encrypt/client.d.ts +14 -0
- package/dist/src/encrypt/client.js +133 -0
- package/dist/src/encrypt/client.js.map +1 -0
- package/dist/src/encrypt/config.d.ts +26 -0
- package/dist/src/encrypt/config.js +51 -0
- package/dist/src/encrypt/config.js.map +1 -0
- package/dist/src/encrypt/crypto-utils.d.ts +57 -0
- package/dist/src/encrypt/crypto-utils.js +257 -0
- package/dist/src/encrypt/crypto-utils.js.map +1 -0
- package/dist/src/encrypt/index.d.ts +12 -0
- package/dist/src/encrypt/index.js +13 -0
- package/dist/src/encrypt/index.js.map +1 -0
- package/dist/src/encrypt/retry-utils.d.ts +20 -0
- package/dist/src/encrypt/retry-utils.js +60 -0
- package/dist/src/encrypt/retry-utils.js.map +1 -0
- package/dist/src/encrypt/sessions.d.ts +17 -0
- package/dist/src/encrypt/sessions.js +221 -0
- package/dist/src/encrypt/sessions.js.map +1 -0
- package/dist/src/encrypt/streaming-client.d.ts +29 -0
- package/dist/src/encrypt/streaming-client.js +226 -0
- package/dist/src/encrypt/streaming-client.js.map +1 -0
- package/dist/src/encrypt/types.d.ts +81 -0
- package/dist/src/encrypt/types.js +2 -0
- package/dist/src/encrypt/types.js.map +1 -0
- package/dist/src/gemini.d.ts +1 -1
- package/dist/src/gemini.js +61 -28
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +3 -3
- package/dist/src/generated/git-commit.js +3 -3
- package/dist/src/nonInteractiveCli.d.ts +4 -0
- package/dist/src/nonInteractiveCli.js +563 -6
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/on-demand-extensions/README.md +266 -0
- package/dist/src/on-demand-extensions/git-helper/README.md +16 -0
- package/dist/src/on-demand-extensions/git-helper/blackbox-extension.json +5 -0
- package/dist/src/on-demand-extensions/git-helper/commands/git/branch-cleanup.toml +18 -0
- package/dist/src/on-demand-extensions/git-helper/commands/git/smart-commit.toml +22 -0
- package/dist/src/on-demand-extensions/greet/README.md +76 -0
- package/dist/src/on-demand-extensions/greet/blackbox-extension.json +5 -0
- package/dist/src/on-demand-extensions/greet/commands/greet/hello.toml +9 -0
- package/dist/src/on-demand-extensions/registry.json +251 -0
- package/dist/src/services/BuiltinCommandLoader.js +20 -2
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/services/EncryptedContentGenerator.d.ts +63 -0
- package/dist/src/services/EncryptedContentGenerator.js +426 -0
- package/dist/src/services/EncryptedContentGenerator.js.map +1 -0
- package/dist/src/services/McpCommandLoader.d.ts +24 -0
- package/dist/src/services/McpCommandLoader.js +50 -0
- package/dist/src/services/McpCommandLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.js +17 -2
- package/dist/src/services/McpPromptLoader.js.map +1 -1
- package/dist/src/services/ReleaseNotesCache.d.ts +57 -0
- package/dist/src/services/ReleaseNotesCache.js +186 -0
- package/dist/src/services/ReleaseNotesCache.js.map +1 -0
- package/dist/src/services/elevenLabsErrors.d.ts +65 -0
- package/dist/src/services/elevenLabsErrors.js +233 -0
- package/dist/src/services/elevenLabsErrors.js.map +1 -0
- package/dist/src/services/elevenLabsService.d.ts +62 -0
- package/dist/src/services/elevenLabsService.js +186 -0
- package/dist/src/services/elevenLabsService.js.map +1 -0
- package/dist/src/services/elevenLabsStreamingService.d.ts +59 -0
- package/dist/src/services/elevenLabsStreamingService.js +202 -0
- package/dist/src/services/elevenLabsStreamingService.js.map +1 -0
- package/dist/src/services/elevenLabsTokenService.d.ts +21 -0
- package/dist/src/services/elevenLabsTokenService.js +42 -0
- package/dist/src/services/elevenLabsTokenService.js.map +1 -0
- package/dist/src/services/voiceInputHandler.d.ts +26 -0
- package/dist/src/services/voiceInputHandler.js +209 -0
- package/dist/src/services/voiceInputHandler.js.map +1 -0
- package/dist/src/services/voiceRecordingService.d.ts +69 -0
- package/dist/src/services/voiceRecordingService.js +397 -0
- package/dist/src/services/voiceRecordingService.js.map +1 -0
- package/dist/src/ui/App.d.ts +1 -0
- package/dist/src/ui/App.js +412 -63
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/commands/browseExtensionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/browseExtensionsCommand.js +16 -0
- package/dist/src/ui/commands/browseExtensionsCommand.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.js +356 -16
- package/dist/src/ui/commands/chatCommand.js.map +1 -1
- package/dist/src/ui/commands/dbCommand.d.ts +7 -0
- package/dist/src/ui/commands/dbCommand.js +37 -0
- package/dist/src/ui/commands/dbCommand.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.js +1 -1
- package/dist/src/ui/commands/docsCommand.js.map +1 -1
- package/dist/src/ui/commands/mcpCommand.js +3 -2
- package/dist/src/ui/commands/mcpCommand.js.map +1 -1
- package/dist/src/ui/commands/mcpInvokeCommand.d.ts +16 -0
- package/dist/src/ui/commands/mcpInvokeCommand.js +263 -0
- package/dist/src/ui/commands/mcpInvokeCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.js +79 -5
- package/dist/src/ui/commands/modelCommand.js.map +1 -1
- package/dist/src/ui/commands/multiAgentCommand.d.ts +7 -0
- package/dist/src/ui/commands/multiAgentCommand.js +833 -0
- package/dist/src/ui/commands/multiAgentCommand.js.map +1 -0
- package/dist/src/ui/commands/multiAgentConfigureCommand.d.ts +7 -0
- package/dist/src/ui/commands/multiAgentConfigureCommand.js +17 -0
- package/dist/src/ui/commands/multiAgentConfigureCommand.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.js +71 -2
- package/dist/src/ui/commands/quitCommand.js.map +1 -1
- package/dist/src/ui/commands/releasesCommand.d.ts +7 -0
- package/dist/src/ui/commands/releasesCommand.js +16 -0
- package/dist/src/ui/commands/releasesCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
- package/dist/src/ui/commands/shellPermissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/shellPermissionsCommand.js +109 -0
- package/dist/src/ui/commands/shellPermissionsCommand.js.map +1 -0
- package/dist/src/ui/commands/skillCommand.d.ts +7 -0
- package/dist/src/ui/commands/skillCommand.js +240 -0
- package/dist/src/ui/commands/skillCommand.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.js +243 -1
- package/dist/src/ui/commands/statsCommand.js.map +1 -1
- package/dist/src/ui/commands/tasksCommand.d.ts +7 -0
- package/dist/src/ui/commands/tasksCommand.js +535 -0
- package/dist/src/ui/commands/tasksCommand.js.map +1 -0
- package/dist/src/ui/commands/toolPermissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/toolPermissionsCommand.js +408 -0
- package/dist/src/ui/commands/toolPermissionsCommand.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +10 -2
- package/dist/src/ui/commands/types.js.map +1 -1
- package/dist/src/ui/commands/voiceCommand.d.ts +7 -0
- package/dist/src/ui/commands/voiceCommand.js +525 -0
- package/dist/src/ui/commands/voiceCommand.js.map +1 -0
- package/dist/src/ui/components/AuthDialog.d.ts +4 -2
- package/dist/src/ui/components/AuthDialog.js +349 -64
- package/dist/src/ui/components/AuthDialog.js.map +1 -1
- package/dist/src/ui/components/AuthInProgress.js +3 -1
- package/dist/src/ui/components/AuthInProgress.js.map +1 -1
- package/dist/src/ui/components/ExtensionsDialog.d.ts +11 -0
- package/dist/src/ui/components/ExtensionsDialog.js +303 -0
- package/dist/src/ui/components/ExtensionsDialog.js.map +1 -0
- package/dist/src/ui/components/GenericProviderKeyPrompt.d.ts +24 -0
- package/dist/src/ui/components/GenericProviderKeyPrompt.js +99 -0
- package/dist/src/ui/components/GenericProviderKeyPrompt.js.map +1 -0
- package/dist/src/ui/components/Header.js +10 -1
- package/dist/src/ui/components/Header.js.map +1 -1
- package/dist/src/ui/components/HistoryBrowserDialog.d.ts +15 -0
- package/dist/src/ui/components/HistoryBrowserDialog.js +166 -0
- package/dist/src/ui/components/HistoryBrowserDialog.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.js +13 -1
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.js +22 -8
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/LoadingIndicator.d.ts +4 -0
- package/dist/src/ui/components/LoadingIndicator.js +16 -4
- package/dist/src/ui/components/LoadingIndicator.js.map +1 -1
- package/dist/src/ui/components/LoadingIndicator.test.js +108 -16
- package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -1
- package/dist/src/ui/components/ModelSelectionDialog.d.ts +2 -0
- package/dist/src/ui/components/ModelSelectionDialog.js +33 -4
- package/dist/src/ui/components/ModelSelectionDialog.js.map +1 -1
- package/dist/src/ui/components/ModelSelectionDialog.test.js +41 -4
- package/dist/src/ui/components/ModelSelectionDialog.test.js.map +1 -1
- package/dist/src/ui/components/ReleaseNotesDialog.d.ts +23 -0
- package/dist/src/ui/components/ReleaseNotesDialog.js +150 -0
- package/dist/src/ui/components/ReleaseNotesDialog.js.map +1 -0
- package/dist/src/ui/components/ReleaseNotesDisplay.d.ts +18 -0
- package/dist/src/ui/components/ReleaseNotesDisplay.js +14 -0
- package/dist/src/ui/components/ReleaseNotesDisplay.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +2 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +1 -1
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -1
- package/dist/src/ui/components/SettingsDialog.d.ts +3 -1
- package/dist/src/ui/components/SettingsDialog.js +17 -7
- package/dist/src/ui/components/SettingsDialog.js.map +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.d.ts +2 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js +7 -3
- package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -1
- package/dist/src/ui/components/StatsDisplay.d.ts +2 -0
- package/dist/src/ui/components/StatsDisplay.js +92 -7
- package/dist/src/ui/components/StatsDisplay.js.map +1 -1
- package/dist/src/ui/components/SuggestionsDisplay.js +6 -1
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
- package/dist/src/ui/components/ThemeDialog.d.ts +3 -1
- package/dist/src/ui/components/ThemeDialog.js +5 -2
- package/dist/src/ui/components/ThemeDialog.js.map +1 -1
- package/dist/src/ui/components/Tips.js +1 -4
- package/dist/src/ui/components/Tips.js.map +1 -1
- package/dist/src/ui/components/TodoListDialog.d.ts +13 -0
- package/dist/src/ui/components/TodoListDialog.js +29 -0
- package/dist/src/ui/components/TodoListDialog.js.map +1 -0
- package/dist/src/ui/components/TodoListDialog.test.d.ts +6 -0
- package/dist/src/ui/components/TodoListDialog.test.js +60 -0
- package/dist/src/ui/components/TodoListDialog.test.js.map +1 -0
- package/dist/src/ui/components/VoiceConfigDialog.d.ts +17 -0
- package/dist/src/ui/components/VoiceConfigDialog.js +47 -0
- package/dist/src/ui/components/VoiceConfigDialog.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessage.js +4 -0
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -1
- package/dist/src/ui/components/messages/GeminiMessageContent.js +4 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +2 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +96 -9
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +3 -3
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolMessage.js +1 -1
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolMessage.test.js +9 -12
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -1
- package/dist/src/ui/components/multiagent/MultiAgentConfigDialog.d.ts +25 -0
- package/dist/src/ui/components/multiagent/MultiAgentConfigDialog.js +179 -0
- package/dist/src/ui/components/multiagent/MultiAgentConfigDialog.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +3 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.js +57 -18
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -1
- package/dist/src/ui/components/shared/TextInput.d.ts +2 -1
- package/dist/src/ui/components/shared/TextInput.js +5 -2
- package/dist/src/ui/components/shared/TextInput.js.map +1 -1
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js +3 -3
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js.map +1 -1
- package/dist/src/ui/constants.d.ts +3 -3
- package/dist/src/ui/constants.js +3 -3
- package/dist/src/ui/constants.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +6 -0
- package/dist/src/ui/contexts/SessionContext.js +24 -2
- package/dist/src/ui/contexts/SessionContext.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js +139 -57
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +2 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +189 -17
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useAdaptiveStream.d.ts +42 -0
- package/dist/src/ui/hooks/useAdaptiveStream.js +31 -0
- package/dist/src/ui/hooks/useAdaptiveStream.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.js +20 -4
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useAuthCommand.d.ts +2 -2
- package/dist/src/ui/hooks/useAuthCommand.js +99 -5
- package/dist/src/ui/hooks/useAuthCommand.js.map +1 -1
- package/dist/src/ui/hooks/useCommandCompletion.js +14 -10
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useDialogClose.d.ts +10 -0
- package/dist/src/ui/hooks/useDialogClose.js +25 -0
- package/dist/src/ui/hooks/useDialogClose.js.map +1 -1
- package/dist/src/ui/hooks/useDialogCloseAnimation.d.ts +22 -0
- package/dist/src/ui/hooks/useDialogCloseAnimation.js +68 -0
- package/dist/src/ui/hooks/useDialogCloseAnimation.js.map +1 -0
- package/dist/src/ui/hooks/useEncryptedStream.d.ts +22 -0
- package/dist/src/ui/hooks/useEncryptedStream.js +378 -0
- package/dist/src/ui/hooks/useEncryptedStream.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionsDialog.d.ts +10 -0
- package/dist/src/ui/hooks/useExtensionsDialog.js +21 -0
- package/dist/src/ui/hooks/useExtensionsDialog.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.js +6 -2
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.js +3 -2
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +27 -5
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -1
- package/dist/src/ui/hooks/useMultiAgentConfigCommand.d.ts +10 -0
- package/dist/src/ui/hooks/useMultiAgentConfigCommand.js +21 -0
- package/dist/src/ui/hooks/useMultiAgentConfigCommand.js.map +1 -0
- package/dist/src/ui/hooks/useReleasesDialog.d.ts +20 -0
- package/dist/src/ui/hooks/useReleasesDialog.js +214 -0
- package/dist/src/ui/hooks/useReleasesDialog.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +10 -8
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useTodoList.d.ts +17 -0
- package/dist/src/ui/hooks/useTodoList.js +51 -0
- package/dist/src/ui/hooks/useTodoList.js.map +1 -0
- package/dist/src/ui/keyMatchers.test.js +6 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -1
- package/dist/src/ui/themes/blackbox-dark.js +1 -1
- package/dist/src/ui/themes/blackbox-dark.js.map +1 -1
- package/dist/src/ui/themes/blackbox-light.js +1 -1
- package/dist/src/ui/themes/blackbox-light.js.map +1 -1
- package/dist/src/ui/types.d.ts +15 -2
- package/dist/src/ui/types.js +1 -0
- package/dist/src/ui/types.js.map +1 -1
- package/dist/src/ui/utils/computeStats.d.ts +25 -1
- package/dist/src/ui/utils/computeStats.js +58 -1
- package/dist/src/ui/utils/computeStats.js.map +1 -1
- package/dist/src/ui/utils/updateCheck.js +37 -54
- package/dist/src/ui/utils/updateCheck.js.map +1 -1
- package/dist/src/utils/backgroundUpdateCheck.d.ts +15 -0
- package/dist/src/utils/backgroundUpdateCheck.js +48 -0
- package/dist/src/utils/backgroundUpdateCheck.js.map +1 -0
- package/dist/src/utils/gitAutoDetect.d.ts +16 -0
- package/dist/src/utils/gitAutoDetect.js +45 -0
- package/dist/src/utils/gitAutoDetect.js.map +1 -0
- package/dist/src/utils/installationInfo.d.ts +1 -0
- package/dist/src/utils/installationInfo.js +24 -4
- package/dist/src/utils/installationInfo.js.map +1 -1
- package/dist/src/utils/preLaunchUpdateCheck.d.ts +17 -0
- package/dist/src/utils/preLaunchUpdateCheck.js +75 -0
- package/dist/src/utils/preLaunchUpdateCheck.js.map +1 -0
- package/dist/src/utils/version.js +12 -1
- package/dist/src/utils/version.js.map +1 -1
- package/dist/src/utils/versionStorage.d.ts +50 -0
- package/dist/src/utils/versionStorage.js +224 -0
- package/dist/src/utils/versionStorage.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.js +10 -3
- package/dist/src/validateNonInterActiveAuth.js.map +1 -1
- package/dist/src/virtual-extensions.d.ts +14 -0
- package/dist/src/virtual-extensions.js +56 -0
- package/dist/src/virtual-extensions.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.d.ts +3 -3
- package/dist/src/zed-integration/fileSystemService.js +5 -7
- package/dist/src/zed-integration/fileSystemService.js.map +1 -1
- package/dist/src/zed-integration/zedIntegration.js +62 -17
- package/dist/src/zed-integration/zedIntegration.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -3
- package/dist/src/utils/handleAutoUpdate.d.ts +0 -11
- package/dist/src/utils/handleAutoUpdate.js +0 -102
- package/dist/src/utils/handleAutoUpdate.js.map +0 -1
- package/dist/src/utils/updateEventEmitter.d.ts +0 -11
- package/dist/src/utils/updateEventEmitter.js +0 -12
- package/dist/src/utils/updateEventEmitter.js.map +0 -1
- package/dist/src/zed-integration/acp.d.ts +0 -63
- package/dist/src/zed-integration/acp.js +0 -226
- package/dist/src/zed-integration/acp.js.map +0 -1
- package/dist/src/zed-integration/schema.d.ts +0 -11782
- package/dist/src/zed-integration/schema.js +0 -311
- package/dist/src/zed-integration/schema.js.map +0 -1
|
@@ -514,6 +514,69 @@ export const SETTINGS_SCHEMA = {
|
|
|
514
514
|
description: 'Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.',
|
|
515
515
|
showInDialog: true,
|
|
516
516
|
},
|
|
517
|
+
approvedShellCommands: {
|
|
518
|
+
type: 'array',
|
|
519
|
+
label: 'Approved Shell Commands',
|
|
520
|
+
category: 'Tools',
|
|
521
|
+
requiresRestart: false,
|
|
522
|
+
default: [],
|
|
523
|
+
description: 'List of shell command roots that have been permanently approved for execution without confirmation.',
|
|
524
|
+
showInDialog: false,
|
|
525
|
+
},
|
|
526
|
+
approvedMemoryScopes: {
|
|
527
|
+
type: 'array',
|
|
528
|
+
label: 'Approved Memory Scopes',
|
|
529
|
+
category: 'Tools',
|
|
530
|
+
requiresRestart: false,
|
|
531
|
+
default: [],
|
|
532
|
+
description: 'List of memory scopes (e.g., "global", "project", or file paths) that have been permanently approved for saving memories without confirmation.',
|
|
533
|
+
showInDialog: false,
|
|
534
|
+
},
|
|
535
|
+
approvedFileOperations: {
|
|
536
|
+
type: 'array',
|
|
537
|
+
label: 'Approved File Operations',
|
|
538
|
+
category: 'Tools',
|
|
539
|
+
requiresRestart: false,
|
|
540
|
+
default: [],
|
|
541
|
+
description: 'List of file paths that have been permanently approved for edit/write operations without confirmation.',
|
|
542
|
+
showInDialog: false,
|
|
543
|
+
},
|
|
544
|
+
approvedExternalPaths: {
|
|
545
|
+
type: 'array',
|
|
546
|
+
label: 'Approved External Paths',
|
|
547
|
+
category: 'Tools',
|
|
548
|
+
requiresRestart: false,
|
|
549
|
+
default: [],
|
|
550
|
+
description: 'List of external directory paths that have been permanently approved for read operations without confirmation.',
|
|
551
|
+
showInDialog: false,
|
|
552
|
+
},
|
|
553
|
+
approvedMcpServers: {
|
|
554
|
+
type: 'array',
|
|
555
|
+
label: 'Approved MCP Servers',
|
|
556
|
+
category: 'Tools',
|
|
557
|
+
requiresRestart: false,
|
|
558
|
+
default: [],
|
|
559
|
+
description: 'List of MCP server names that have been permanently approved for all tool executions without confirmation.',
|
|
560
|
+
showInDialog: false,
|
|
561
|
+
},
|
|
562
|
+
approvedMcpTools: {
|
|
563
|
+
type: 'array',
|
|
564
|
+
label: 'Approved MCP Tools',
|
|
565
|
+
category: 'Tools',
|
|
566
|
+
requiresRestart: false,
|
|
567
|
+
default: [],
|
|
568
|
+
description: 'List of specific MCP tools (format: "server-name.tool-name") that have been permanently approved for execution without confirmation.',
|
|
569
|
+
showInDialog: false,
|
|
570
|
+
},
|
|
571
|
+
webSearchAlwaysAllow: {
|
|
572
|
+
type: 'boolean',
|
|
573
|
+
label: 'Web Search Always Allow',
|
|
574
|
+
category: 'Tools',
|
|
575
|
+
requiresRestart: false,
|
|
576
|
+
default: false,
|
|
577
|
+
description: 'When enabled, web search operations will execute without confirmation prompts.',
|
|
578
|
+
showInDialog: false,
|
|
579
|
+
},
|
|
517
580
|
},
|
|
518
581
|
},
|
|
519
582
|
mcp: {
|
|
@@ -610,6 +673,15 @@ export const SETTINGS_SCHEMA = {
|
|
|
610
673
|
description: 'The currently selected authentication type.',
|
|
611
674
|
showInDialog: false,
|
|
612
675
|
},
|
|
676
|
+
selectedProvider: {
|
|
677
|
+
type: 'string',
|
|
678
|
+
label: 'Selected Provider',
|
|
679
|
+
category: 'Security',
|
|
680
|
+
requiresRestart: true,
|
|
681
|
+
default: undefined,
|
|
682
|
+
description: 'The currently selected provider name (e.g., openai, openrouter, blackbox).',
|
|
683
|
+
showInDialog: false,
|
|
684
|
+
},
|
|
613
685
|
useExternal: {
|
|
614
686
|
type: 'boolean',
|
|
615
687
|
label: 'Use External Auth',
|
|
@@ -619,8 +691,424 @@ export const SETTINGS_SCHEMA = {
|
|
|
619
691
|
description: 'Whether to use an external authentication flow.',
|
|
620
692
|
showInDialog: false,
|
|
621
693
|
},
|
|
694
|
+
openai: {
|
|
695
|
+
type: 'object',
|
|
696
|
+
label: 'OpenAI Credentials',
|
|
697
|
+
category: 'Security',
|
|
698
|
+
requiresRestart: true,
|
|
699
|
+
default: {},
|
|
700
|
+
description: 'OpenAI provider credentials.',
|
|
701
|
+
showInDialog: false,
|
|
702
|
+
properties: {
|
|
703
|
+
apiKey: {
|
|
704
|
+
type: 'string',
|
|
705
|
+
label: 'OpenAI API Key',
|
|
706
|
+
category: 'Security',
|
|
707
|
+
requiresRestart: true,
|
|
708
|
+
default: undefined,
|
|
709
|
+
description: 'API key for OpenAI.',
|
|
710
|
+
showInDialog: false,
|
|
711
|
+
},
|
|
712
|
+
baseUrl: {
|
|
713
|
+
type: 'string',
|
|
714
|
+
label: 'OpenAI Base URL',
|
|
715
|
+
category: 'Security',
|
|
716
|
+
requiresRestart: true,
|
|
717
|
+
default: undefined,
|
|
718
|
+
description: 'Base URL for OpenAI API.',
|
|
719
|
+
showInDialog: false,
|
|
720
|
+
},
|
|
721
|
+
model: {
|
|
722
|
+
type: 'string',
|
|
723
|
+
label: 'OpenAI Model',
|
|
724
|
+
category: 'Security',
|
|
725
|
+
requiresRestart: true,
|
|
726
|
+
default: undefined,
|
|
727
|
+
description: 'Model name for OpenAI.',
|
|
728
|
+
showInDialog: false,
|
|
729
|
+
},
|
|
730
|
+
},
|
|
731
|
+
},
|
|
732
|
+
blackbox: {
|
|
733
|
+
type: 'object',
|
|
734
|
+
label: 'Blackbox Credentials',
|
|
735
|
+
category: 'Security',
|
|
736
|
+
requiresRestart: true,
|
|
737
|
+
default: {},
|
|
738
|
+
description: 'Blackbox provider credentials.',
|
|
739
|
+
showInDialog: false,
|
|
740
|
+
properties: {
|
|
741
|
+
apiKey: {
|
|
742
|
+
type: 'string',
|
|
743
|
+
label: 'Blackbox API Key',
|
|
744
|
+
category: 'Security',
|
|
745
|
+
requiresRestart: true,
|
|
746
|
+
default: undefined,
|
|
747
|
+
description: 'API key for Blackbox.',
|
|
748
|
+
showInDialog: false,
|
|
749
|
+
},
|
|
750
|
+
baseUrl: {
|
|
751
|
+
type: 'string',
|
|
752
|
+
label: 'Blackbox Base URL',
|
|
753
|
+
category: 'Security',
|
|
754
|
+
requiresRestart: true,
|
|
755
|
+
default: undefined,
|
|
756
|
+
description: 'Base URL for Blackbox API.',
|
|
757
|
+
showInDialog: false,
|
|
758
|
+
},
|
|
759
|
+
model: {
|
|
760
|
+
type: 'string',
|
|
761
|
+
label: 'Blackbox Model',
|
|
762
|
+
category: 'Security',
|
|
763
|
+
requiresRestart: true,
|
|
764
|
+
default: undefined,
|
|
765
|
+
description: 'Model name for Blackbox.',
|
|
766
|
+
showInDialog: false,
|
|
767
|
+
},
|
|
768
|
+
},
|
|
769
|
+
},
|
|
770
|
+
openrouter: {
|
|
771
|
+
type: 'object',
|
|
772
|
+
label: 'OpenRouter Credentials',
|
|
773
|
+
category: 'Security',
|
|
774
|
+
requiresRestart: true,
|
|
775
|
+
default: {},
|
|
776
|
+
description: 'OpenRouter provider credentials.',
|
|
777
|
+
showInDialog: false,
|
|
778
|
+
properties: {
|
|
779
|
+
apiKey: {
|
|
780
|
+
type: 'string',
|
|
781
|
+
label: 'OpenRouter API Key',
|
|
782
|
+
category: 'Security',
|
|
783
|
+
requiresRestart: true,
|
|
784
|
+
default: undefined,
|
|
785
|
+
description: 'API key for OpenRouter.',
|
|
786
|
+
showInDialog: false,
|
|
787
|
+
},
|
|
788
|
+
baseUrl: {
|
|
789
|
+
type: 'string',
|
|
790
|
+
label: 'OpenRouter Base URL',
|
|
791
|
+
category: 'Security',
|
|
792
|
+
requiresRestart: true,
|
|
793
|
+
default: undefined,
|
|
794
|
+
description: 'Base URL for OpenRouter API.',
|
|
795
|
+
showInDialog: false,
|
|
796
|
+
},
|
|
797
|
+
model: {
|
|
798
|
+
type: 'string',
|
|
799
|
+
label: 'OpenRouter Model',
|
|
800
|
+
category: 'Security',
|
|
801
|
+
requiresRestart: true,
|
|
802
|
+
default: undefined,
|
|
803
|
+
description: 'Model name for OpenRouter.',
|
|
804
|
+
showInDialog: false,
|
|
805
|
+
},
|
|
806
|
+
},
|
|
807
|
+
},
|
|
808
|
+
custom: {
|
|
809
|
+
type: 'object',
|
|
810
|
+
label: 'Custom Provider Credentials',
|
|
811
|
+
category: 'Security',
|
|
812
|
+
requiresRestart: true,
|
|
813
|
+
default: {},
|
|
814
|
+
description: 'Custom provider credentials.',
|
|
815
|
+
showInDialog: false,
|
|
816
|
+
properties: {
|
|
817
|
+
apiKey: {
|
|
818
|
+
type: 'string',
|
|
819
|
+
label: 'Custom Provider API Key',
|
|
820
|
+
category: 'Security',
|
|
821
|
+
requiresRestart: true,
|
|
822
|
+
default: undefined,
|
|
823
|
+
description: 'API key for custom provider.',
|
|
824
|
+
showInDialog: false,
|
|
825
|
+
},
|
|
826
|
+
baseUrl: {
|
|
827
|
+
type: 'string',
|
|
828
|
+
label: 'Custom Provider Base URL',
|
|
829
|
+
category: 'Security',
|
|
830
|
+
requiresRestart: true,
|
|
831
|
+
default: undefined,
|
|
832
|
+
description: 'Base URL for custom provider API.',
|
|
833
|
+
showInDialog: false,
|
|
834
|
+
},
|
|
835
|
+
model: {
|
|
836
|
+
type: 'string',
|
|
837
|
+
label: 'Custom Provider Model',
|
|
838
|
+
category: 'Security',
|
|
839
|
+
requiresRestart: true,
|
|
840
|
+
default: undefined,
|
|
841
|
+
description: 'Model name for custom provider.',
|
|
842
|
+
showInDialog: false,
|
|
843
|
+
},
|
|
844
|
+
},
|
|
845
|
+
},
|
|
846
|
+
anthropic: {
|
|
847
|
+
type: 'object',
|
|
848
|
+
label: 'Anthropic Credentials',
|
|
849
|
+
category: 'Security',
|
|
850
|
+
requiresRestart: true,
|
|
851
|
+
default: {},
|
|
852
|
+
description: 'Anthropic provider credentials.',
|
|
853
|
+
showInDialog: false,
|
|
854
|
+
properties: {
|
|
855
|
+
apiKey: {
|
|
856
|
+
type: 'string',
|
|
857
|
+
label: 'Anthropic API Key',
|
|
858
|
+
category: 'Security',
|
|
859
|
+
requiresRestart: true,
|
|
860
|
+
default: undefined,
|
|
861
|
+
description: 'API key for Anthropic.',
|
|
862
|
+
showInDialog: false,
|
|
863
|
+
},
|
|
864
|
+
baseUrl: {
|
|
865
|
+
type: 'string',
|
|
866
|
+
label: 'Anthropic Base URL',
|
|
867
|
+
category: 'Security',
|
|
868
|
+
requiresRestart: true,
|
|
869
|
+
default: undefined,
|
|
870
|
+
description: 'Base URL for Anthropic API.',
|
|
871
|
+
showInDialog: false,
|
|
872
|
+
},
|
|
873
|
+
model: {
|
|
874
|
+
type: 'string',
|
|
875
|
+
label: 'Anthropic Model',
|
|
876
|
+
category: 'Security',
|
|
877
|
+
requiresRestart: true,
|
|
878
|
+
default: undefined,
|
|
879
|
+
description: 'Model name for Anthropic.',
|
|
880
|
+
showInDialog: false,
|
|
881
|
+
},
|
|
882
|
+
},
|
|
883
|
+
},
|
|
884
|
+
google: {
|
|
885
|
+
type: 'object',
|
|
886
|
+
label: 'Google Credentials',
|
|
887
|
+
category: 'Security',
|
|
888
|
+
requiresRestart: true,
|
|
889
|
+
default: {},
|
|
890
|
+
description: 'Google Gemini provider credentials.',
|
|
891
|
+
showInDialog: false,
|
|
892
|
+
properties: {
|
|
893
|
+
apiKey: {
|
|
894
|
+
type: 'string',
|
|
895
|
+
label: 'Google API Key',
|
|
896
|
+
category: 'Security',
|
|
897
|
+
requiresRestart: true,
|
|
898
|
+
default: undefined,
|
|
899
|
+
description: 'API key for Google Gemini.',
|
|
900
|
+
showInDialog: false,
|
|
901
|
+
},
|
|
902
|
+
baseUrl: {
|
|
903
|
+
type: 'string',
|
|
904
|
+
label: 'Google Base URL',
|
|
905
|
+
category: 'Security',
|
|
906
|
+
requiresRestart: true,
|
|
907
|
+
default: undefined,
|
|
908
|
+
description: 'Base URL for Google Gemini API.',
|
|
909
|
+
showInDialog: false,
|
|
910
|
+
},
|
|
911
|
+
model: {
|
|
912
|
+
type: 'string',
|
|
913
|
+
label: 'Google Model',
|
|
914
|
+
category: 'Security',
|
|
915
|
+
requiresRestart: true,
|
|
916
|
+
default: undefined,
|
|
917
|
+
description: 'Model name for Google Gemini.',
|
|
918
|
+
showInDialog: false,
|
|
919
|
+
},
|
|
920
|
+
},
|
|
921
|
+
},
|
|
922
|
+
xai: {
|
|
923
|
+
type: 'object',
|
|
924
|
+
label: 'xAI Credentials',
|
|
925
|
+
category: 'Security',
|
|
926
|
+
requiresRestart: true,
|
|
927
|
+
default: {},
|
|
928
|
+
description: 'xAI Grok provider credentials.',
|
|
929
|
+
showInDialog: false,
|
|
930
|
+
properties: {
|
|
931
|
+
apiKey: {
|
|
932
|
+
type: 'string',
|
|
933
|
+
label: 'xAI API Key',
|
|
934
|
+
category: 'Security',
|
|
935
|
+
requiresRestart: true,
|
|
936
|
+
default: undefined,
|
|
937
|
+
description: 'API key for xAI.',
|
|
938
|
+
showInDialog: false,
|
|
939
|
+
},
|
|
940
|
+
baseUrl: {
|
|
941
|
+
type: 'string',
|
|
942
|
+
label: 'xAI Base URL',
|
|
943
|
+
category: 'Security',
|
|
944
|
+
requiresRestart: true,
|
|
945
|
+
default: undefined,
|
|
946
|
+
description: 'Base URL for xAI API.',
|
|
947
|
+
showInDialog: false,
|
|
948
|
+
},
|
|
949
|
+
model: {
|
|
950
|
+
type: 'string',
|
|
951
|
+
label: 'xAI Model',
|
|
952
|
+
category: 'Security',
|
|
953
|
+
requiresRestart: true,
|
|
954
|
+
default: undefined,
|
|
955
|
+
description: 'Model name for xAI.',
|
|
956
|
+
showInDialog: false,
|
|
957
|
+
},
|
|
958
|
+
},
|
|
959
|
+
},
|
|
960
|
+
'blackbox-encrypted': {
|
|
961
|
+
type: 'object',
|
|
962
|
+
label: 'BlackboxAI Encrypted Credentials',
|
|
963
|
+
category: 'Security',
|
|
964
|
+
requiresRestart: true,
|
|
965
|
+
default: {},
|
|
966
|
+
description: 'BlackboxAI Encrypted provider credentials.',
|
|
967
|
+
showInDialog: false,
|
|
968
|
+
properties: {
|
|
969
|
+
apiKey: {
|
|
970
|
+
type: 'string',
|
|
971
|
+
label: 'BlackboxAI Encrypted API Key',
|
|
972
|
+
category: 'Security',
|
|
973
|
+
requiresRestart: true,
|
|
974
|
+
default: undefined,
|
|
975
|
+
description: 'API key for BlackboxAI Encrypted.',
|
|
976
|
+
showInDialog: false,
|
|
977
|
+
},
|
|
978
|
+
baseUrl: {
|
|
979
|
+
type: 'string',
|
|
980
|
+
label: 'BlackboxAI Encrypted Base URL',
|
|
981
|
+
category: 'Security',
|
|
982
|
+
requiresRestart: true,
|
|
983
|
+
default: undefined,
|
|
984
|
+
description: 'Base URL for BlackboxAI Encrypted API.',
|
|
985
|
+
showInDialog: false,
|
|
986
|
+
},
|
|
987
|
+
model: {
|
|
988
|
+
type: 'string',
|
|
989
|
+
label: 'BlackboxAI Encrypted Model',
|
|
990
|
+
category: 'Security',
|
|
991
|
+
requiresRestart: true,
|
|
992
|
+
default: undefined,
|
|
993
|
+
description: 'Model name for BlackboxAI Encrypted.',
|
|
994
|
+
showInDialog: false,
|
|
995
|
+
},
|
|
996
|
+
},
|
|
997
|
+
},
|
|
998
|
+
},
|
|
999
|
+
},
|
|
1000
|
+
},
|
|
1001
|
+
},
|
|
1002
|
+
voice: {
|
|
1003
|
+
type: 'object',
|
|
1004
|
+
label: 'Voice',
|
|
1005
|
+
category: 'Voice',
|
|
1006
|
+
requiresRestart: false,
|
|
1007
|
+
default: {},
|
|
1008
|
+
description: 'Voice input settings for speech-to-text.',
|
|
1009
|
+
showInDialog: false,
|
|
1010
|
+
properties: {
|
|
1011
|
+
enabled: {
|
|
1012
|
+
type: 'boolean',
|
|
1013
|
+
label: 'Enable Voice Input',
|
|
1014
|
+
category: 'Voice',
|
|
1015
|
+
requiresRestart: false,
|
|
1016
|
+
default: false,
|
|
1017
|
+
description: 'Enable voice input for hands-free coding',
|
|
1018
|
+
showInDialog: true,
|
|
1019
|
+
},
|
|
1020
|
+
provider: {
|
|
1021
|
+
type: 'string',
|
|
1022
|
+
label: 'Voice Provider',
|
|
1023
|
+
category: 'Voice',
|
|
1024
|
+
requiresRestart: false,
|
|
1025
|
+
default: 'elevenlabs',
|
|
1026
|
+
description: 'Speech-to-text provider (elevenlabs, openai-whisper, google)',
|
|
1027
|
+
showInDialog: true,
|
|
1028
|
+
},
|
|
1029
|
+
elevenLabs: {
|
|
1030
|
+
type: 'object',
|
|
1031
|
+
label: 'ElevenLabs Settings',
|
|
1032
|
+
category: 'Voice',
|
|
1033
|
+
requiresRestart: false,
|
|
1034
|
+
default: {},
|
|
1035
|
+
description: 'ElevenLabs API configuration.',
|
|
1036
|
+
showInDialog: false,
|
|
1037
|
+
properties: {
|
|
1038
|
+
apiKey: {
|
|
1039
|
+
type: 'string',
|
|
1040
|
+
label: 'ElevenLabs API Key',
|
|
1041
|
+
category: 'Voice',
|
|
1042
|
+
requiresRestart: false,
|
|
1043
|
+
default: undefined,
|
|
1044
|
+
description: 'API key for ElevenLabs speech-to-text',
|
|
1045
|
+
showInDialog: false,
|
|
1046
|
+
},
|
|
1047
|
+
agentId: {
|
|
1048
|
+
type: 'string',
|
|
1049
|
+
label: 'ElevenLabs Agent ID',
|
|
1050
|
+
category: 'Voice',
|
|
1051
|
+
requiresRestart: false,
|
|
1052
|
+
default: undefined,
|
|
1053
|
+
description: 'Agent ID for ElevenLabs conversational AI',
|
|
1054
|
+
showInDialog: false,
|
|
1055
|
+
},
|
|
1056
|
+
model: {
|
|
1057
|
+
type: 'string',
|
|
1058
|
+
label: 'ElevenLabs Model',
|
|
1059
|
+
category: 'Voice',
|
|
1060
|
+
requiresRestart: false,
|
|
1061
|
+
default: 'scribe_v2',
|
|
1062
|
+
description: 'Model to use for speech-to-text transcription. Available: scribe_v1, scribe_v1_experimental, scribe_v2 (recommended)',
|
|
1063
|
+
showInDialog: true,
|
|
1064
|
+
},
|
|
622
1065
|
},
|
|
623
1066
|
},
|
|
1067
|
+
audioFormat: {
|
|
1068
|
+
type: 'string',
|
|
1069
|
+
label: 'Audio Format',
|
|
1070
|
+
category: 'Voice',
|
|
1071
|
+
requiresRestart: false,
|
|
1072
|
+
default: 'wav',
|
|
1073
|
+
description: 'Audio format for recording (wav, mp3)',
|
|
1074
|
+
showInDialog: true,
|
|
1075
|
+
},
|
|
1076
|
+
sampleRate: {
|
|
1077
|
+
type: 'number',
|
|
1078
|
+
label: 'Sample Rate',
|
|
1079
|
+
category: 'Voice',
|
|
1080
|
+
requiresRestart: false,
|
|
1081
|
+
default: 16000,
|
|
1082
|
+
description: 'Audio sample rate in Hz',
|
|
1083
|
+
showInDialog: true,
|
|
1084
|
+
},
|
|
1085
|
+
language: {
|
|
1086
|
+
type: 'string',
|
|
1087
|
+
label: 'Language',
|
|
1088
|
+
category: 'Voice',
|
|
1089
|
+
requiresRestart: false,
|
|
1090
|
+
default: 'en',
|
|
1091
|
+
description: 'Language code for speech recognition (e.g., en, es, fr)',
|
|
1092
|
+
showInDialog: true,
|
|
1093
|
+
},
|
|
1094
|
+
silenceThreshold: {
|
|
1095
|
+
type: 'number',
|
|
1096
|
+
label: 'Silence Threshold',
|
|
1097
|
+
category: 'Voice',
|
|
1098
|
+
requiresRestart: false,
|
|
1099
|
+
default: 2,
|
|
1100
|
+
description: 'Silence detection threshold percentage (1-10)',
|
|
1101
|
+
showInDialog: true,
|
|
1102
|
+
},
|
|
1103
|
+
silenceDuration: {
|
|
1104
|
+
type: 'number',
|
|
1105
|
+
label: 'Silence Duration',
|
|
1106
|
+
category: 'Voice',
|
|
1107
|
+
requiresRestart: false,
|
|
1108
|
+
default: 2,
|
|
1109
|
+
description: 'Duration of silence in seconds to stop recording',
|
|
1110
|
+
showInDialog: true,
|
|
1111
|
+
},
|
|
624
1112
|
},
|
|
625
1113
|
},
|
|
626
1114
|
advanced: {
|
|
@@ -779,6 +1267,17 @@ export const SETTINGS_SCHEMA = {
|
|
|
779
1267
|
childKey: 'disableCacheControl',
|
|
780
1268
|
showInDialog: true,
|
|
781
1269
|
},
|
|
1270
|
+
customHeaders: {
|
|
1271
|
+
type: 'object',
|
|
1272
|
+
label: 'Custom Headers',
|
|
1273
|
+
category: 'Content Generator',
|
|
1274
|
+
requiresRestart: false,
|
|
1275
|
+
default: undefined,
|
|
1276
|
+
description: 'Custom HTTP headers to include in API requests. Supports environment variable substitution (e.g., "${AGENT_TAGS}").',
|
|
1277
|
+
parentKey: 'contentGenerator',
|
|
1278
|
+
childKey: 'customHeaders',
|
|
1279
|
+
showInDialog: false,
|
|
1280
|
+
},
|
|
782
1281
|
},
|
|
783
1282
|
},
|
|
784
1283
|
enableOpenAILogging: {
|
|
@@ -853,5 +1352,132 @@ export const SETTINGS_SCHEMA = {
|
|
|
853
1352
|
description: 'Show welcome back dialog when returning to a project with conversation history.',
|
|
854
1353
|
showInDialog: true,
|
|
855
1354
|
},
|
|
1355
|
+
multiAgent: {
|
|
1356
|
+
type: 'object',
|
|
1357
|
+
label: 'Multi-Agent',
|
|
1358
|
+
category: 'Multi-Agent',
|
|
1359
|
+
requiresRestart: false,
|
|
1360
|
+
default: {},
|
|
1361
|
+
description: 'Configuration for multi-agent parallel execution.',
|
|
1362
|
+
showInDialog: false,
|
|
1363
|
+
properties: {
|
|
1364
|
+
blackbox: {
|
|
1365
|
+
type: 'object',
|
|
1366
|
+
label: 'Blackbox Agent',
|
|
1367
|
+
category: 'Multi-Agent',
|
|
1368
|
+
requiresRestart: false,
|
|
1369
|
+
default: {},
|
|
1370
|
+
description: 'Configuration for Blackbox agent.',
|
|
1371
|
+
showInDialog: false,
|
|
1372
|
+
properties: {
|
|
1373
|
+
enabled: {
|
|
1374
|
+
type: 'boolean',
|
|
1375
|
+
label: 'Enable Blackbox Agent',
|
|
1376
|
+
category: 'Multi-Agent',
|
|
1377
|
+
requiresRestart: false,
|
|
1378
|
+
default: true,
|
|
1379
|
+
description: 'Enable Blackbox agent in multi-agent execution.',
|
|
1380
|
+
showInDialog: true,
|
|
1381
|
+
},
|
|
1382
|
+
model: {
|
|
1383
|
+
type: 'string',
|
|
1384
|
+
label: 'Blackbox Model',
|
|
1385
|
+
category: 'Multi-Agent',
|
|
1386
|
+
requiresRestart: false,
|
|
1387
|
+
default: 'coder-model',
|
|
1388
|
+
description: 'Model to use for Blackbox agent.',
|
|
1389
|
+
showInDialog: true,
|
|
1390
|
+
},
|
|
1391
|
+
},
|
|
1392
|
+
},
|
|
1393
|
+
claude: {
|
|
1394
|
+
type: 'object',
|
|
1395
|
+
label: 'Claude Agent',
|
|
1396
|
+
category: 'Multi-Agent',
|
|
1397
|
+
requiresRestart: false,
|
|
1398
|
+
default: {},
|
|
1399
|
+
description: 'Configuration for Claude agent.',
|
|
1400
|
+
showInDialog: false,
|
|
1401
|
+
properties: {
|
|
1402
|
+
enabled: {
|
|
1403
|
+
type: 'boolean',
|
|
1404
|
+
label: 'Enable Claude Agent',
|
|
1405
|
+
category: 'Multi-Agent',
|
|
1406
|
+
requiresRestart: false,
|
|
1407
|
+
default: true,
|
|
1408
|
+
description: 'Enable Claude agent in multi-agent execution.',
|
|
1409
|
+
showInDialog: true,
|
|
1410
|
+
},
|
|
1411
|
+
model: {
|
|
1412
|
+
type: 'string',
|
|
1413
|
+
label: 'Claude Model',
|
|
1414
|
+
category: 'Multi-Agent',
|
|
1415
|
+
requiresRestart: false,
|
|
1416
|
+
default: 'blackboxai/anthropic/claude-sonnet-4.5',
|
|
1417
|
+
description: 'Model to use for Claude agent (e.g., blackboxai/anthropic/claude-sonnet-4.5).',
|
|
1418
|
+
showInDialog: true,
|
|
1419
|
+
},
|
|
1420
|
+
},
|
|
1421
|
+
},
|
|
1422
|
+
codex: {
|
|
1423
|
+
type: 'object',
|
|
1424
|
+
label: 'Codex Agent',
|
|
1425
|
+
category: 'Multi-Agent',
|
|
1426
|
+
requiresRestart: false,
|
|
1427
|
+
default: {},
|
|
1428
|
+
description: 'Configuration for Codex agent.',
|
|
1429
|
+
showInDialog: false,
|
|
1430
|
+
properties: {
|
|
1431
|
+
enabled: {
|
|
1432
|
+
type: 'boolean',
|
|
1433
|
+
label: 'Enable Codex Agent',
|
|
1434
|
+
category: 'Multi-Agent',
|
|
1435
|
+
requiresRestart: false,
|
|
1436
|
+
default: true,
|
|
1437
|
+
description: 'Enable Codex agent in multi-agent execution (requires OPENAI_API_KEY).',
|
|
1438
|
+
showInDialog: true,
|
|
1439
|
+
},
|
|
1440
|
+
model: {
|
|
1441
|
+
type: 'string',
|
|
1442
|
+
label: 'Codex Model',
|
|
1443
|
+
category: 'Multi-Agent',
|
|
1444
|
+
requiresRestart: false,
|
|
1445
|
+
default: 'gpt-5-codex',
|
|
1446
|
+
description: 'Model to use for Codex agent (e.g., gpt-5-codex).',
|
|
1447
|
+
showInDialog: true,
|
|
1448
|
+
},
|
|
1449
|
+
},
|
|
1450
|
+
},
|
|
1451
|
+
gemini: {
|
|
1452
|
+
type: 'object',
|
|
1453
|
+
label: 'Gemini Agent',
|
|
1454
|
+
category: 'Multi-Agent',
|
|
1455
|
+
requiresRestart: false,
|
|
1456
|
+
default: {},
|
|
1457
|
+
description: 'Configuration for Gemini agent.',
|
|
1458
|
+
showInDialog: false,
|
|
1459
|
+
properties: {
|
|
1460
|
+
enabled: {
|
|
1461
|
+
type: 'boolean',
|
|
1462
|
+
label: 'Enable Gemini Agent',
|
|
1463
|
+
category: 'Multi-Agent',
|
|
1464
|
+
requiresRestart: false,
|
|
1465
|
+
default: true,
|
|
1466
|
+
description: 'Enable Gemini agent in multi-agent execution (requires GEMINI_API_KEY).',
|
|
1467
|
+
showInDialog: true,
|
|
1468
|
+
},
|
|
1469
|
+
model: {
|
|
1470
|
+
type: 'string',
|
|
1471
|
+
label: 'Gemini Model',
|
|
1472
|
+
category: 'Multi-Agent',
|
|
1473
|
+
requiresRestart: false,
|
|
1474
|
+
default: 'gemini-2.5-pro',
|
|
1475
|
+
description: 'Model to use for Gemini agent (e.g., gemini-2.5-pro, gemini-2.5-flash).',
|
|
1476
|
+
showInDialog: true,
|
|
1477
|
+
},
|
|
1478
|
+
},
|
|
1479
|
+
},
|
|
1480
|
+
},
|
|
1481
|
+
},
|
|
856
1482
|
};
|
|
857
1483
|
//# sourceMappingURL=settingsSchema.js.map
|