@hibanacloud/cli 0.3.15
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/.last_build +0 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +115 -0
- package/dist/src/commands/extensions/disable.d.ts +13 -0
- package/dist/src/commands/extensions/disable.js +56 -0
- package/dist/src/commands/extensions/disable.js.map +1 -0
- package/dist/src/commands/extensions/enable.d.ts +13 -0
- package/dist/src/commands/extensions/enable.js +59 -0
- package/dist/src/commands/extensions/enable.js.map +1 -0
- package/dist/src/commands/extensions/examples/context/QWEN.md +8 -0
- package/dist/src/commands/extensions/examples/context/qwen-extension.json +4 -0
- package/dist/src/commands/extensions/examples/custom-commands/commands/fs/grep-code.toml +6 -0
- package/dist/src/commands/extensions/examples/custom-commands/qwen-extension.json +4 -0
- package/dist/src/commands/extensions/examples/exclude-tools/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
- package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
- package/dist/src/commands/extensions/examples/mcp-server/qwen-extension.json +11 -0
- package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
- package/dist/src/commands/extensions/install.d.ts +14 -0
- package/dist/src/commands/extensions/install.js +78 -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 +102 -0
- package/dist/src/commands/extensions/install.test.js.map +1 -0
- package/dist/src/commands/extensions/link.d.ts +12 -0
- package/dist/src/commands/extensions/link.js +37 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/list.d.ts +8 -0
- package/dist/src/commands/extensions/list.js +32 -0
- package/dist/src/commands/extensions/list.js.map +1 -0
- package/dist/src/commands/extensions/new.d.ts +7 -0
- package/dist/src/commands/extensions/new.js +90 -0
- package/dist/src/commands/extensions/new.js.map +1 -0
- package/dist/src/commands/extensions/new.test.d.ts +6 -0
- package/dist/src/commands/extensions/new.test.js +59 -0
- package/dist/src/commands/extensions/new.test.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.d.ts +12 -0
- package/dist/src/commands/extensions/uninstall.js +38 -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 +18 -0
- package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +13 -0
- package/dist/src/commands/extensions/update.js +104 -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 +33 -0
- package/dist/src/commands/extensions.js.map +1 -0
- package/dist/src/commands/mcp/add.d.ts +7 -0
- package/dist/src/commands/mcp/add.js +171 -0
- package/dist/src/commands/mcp/add.js.map +1 -0
- package/dist/src/commands/mcp/list.d.ts +8 -0
- package/dist/src/commands/mcp/list.js +111 -0
- package/dist/src/commands/mcp/list.js.map +1 -0
- package/dist/src/commands/mcp/remove.d.ts +7 -0
- package/dist/src/commands/mcp/remove.js +44 -0
- package/dist/src/commands/mcp/remove.js.map +1 -0
- package/dist/src/commands/mcp.d.ts +7 -0
- package/dist/src/commands/mcp.js +23 -0
- package/dist/src/commands/mcp.js.map +1 -0
- package/dist/src/config/auth.d.ts +6 -0
- package/dist/src/config/auth.js +28 -0
- package/dist/src/config/auth.js.map +1 -0
- package/dist/src/config/auth.test.d.ts +6 -0
- package/dist/src/config/auth.test.js +37 -0
- package/dist/src/config/auth.test.js.map +1 -0
- package/dist/src/config/config.d.ts +58 -0
- package/dist/src/config/config.js +678 -0
- package/dist/src/config/config.js.map +1 -0
- package/dist/src/config/extension.d.ts +83 -0
- package/dist/src/config/extension.js +534 -0
- package/dist/src/config/extension.js.map +1 -0
- package/dist/src/config/extensions/extensionEnablement.d.ts +47 -0
- package/dist/src/config/extensions/extensionEnablement.js +189 -0
- package/dist/src/config/extensions/extensionEnablement.js.map +1 -0
- package/dist/src/config/extensions/extensionEnablement.test.d.ts +6 -0
- package/dist/src/config/extensions/extensionEnablement.test.js +333 -0
- package/dist/src/config/extensions/extensionEnablement.test.js.map +1 -0
- package/dist/src/config/extensions/github.d.ts +30 -0
- package/dist/src/config/extensions/github.js +322 -0
- package/dist/src/config/extensions/github.js.map +1 -0
- package/dist/src/config/extensions/github.test.d.ts +6 -0
- package/dist/src/config/extensions/github.test.js +334 -0
- package/dist/src/config/extensions/github.test.js.map +1 -0
- package/dist/src/config/extensions/update.d.ts +19 -0
- package/dist/src/config/extensions/update.js +113 -0
- package/dist/src/config/extensions/update.js.map +1 -0
- package/dist/src/config/extensions/update.test.d.ts +6 -0
- package/dist/src/config/extensions/update.test.js +342 -0
- package/dist/src/config/extensions/update.test.js.map +1 -0
- package/dist/src/config/extensions/variableSchema.d.ts +36 -0
- package/dist/src/config/extensions/variableSchema.js +22 -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 +70 -0
- package/dist/src/config/keyBindings.js +130 -0
- package/dist/src/config/keyBindings.js.map +1 -0
- package/dist/src/config/keyBindings.test.d.ts +6 -0
- package/dist/src/config/keyBindings.test.js +51 -0
- package/dist/src/config/keyBindings.test.js.map +1 -0
- package/dist/src/config/migration.d.ts +10 -0
- package/dist/src/config/migration.js +45 -0
- package/dist/src/config/migration.js.map +1 -0
- package/dist/src/config/sandboxConfig.d.ts +13 -0
- package/dist/src/config/sandboxConfig.js +73 -0
- package/dist/src/config/sandboxConfig.js.map +1 -0
- package/dist/src/config/settings.d.ts +72 -0
- package/dist/src/config/settings.js +631 -0
- package/dist/src/config/settings.js.map +1 -0
- package/dist/src/config/settingsSchema.d.ts +1174 -0
- package/dist/src/config/settingsSchema.js +1118 -0
- package/dist/src/config/settingsSchema.js.map +1 -0
- package/dist/src/config/settingsSchema.test.d.ts +6 -0
- package/dist/src/config/settingsSchema.test.js +201 -0
- package/dist/src/config/settingsSchema.test.js.map +1 -0
- package/dist/src/config/trustedFolders.d.ts +56 -0
- package/dist/src/config/trustedFolders.js +168 -0
- package/dist/src/config/trustedFolders.js.map +1 -0
- package/dist/src/config/trustedFolders.test.d.ts +6 -0
- package/dist/src/config/trustedFolders.test.js +340 -0
- package/dist/src/config/trustedFolders.test.js.map +1 -0
- package/dist/src/config/webSearch.d.ts +35 -0
- package/dist/src/config/webSearch.js +87 -0
- package/dist/src/config/webSearch.js.map +1 -0
- package/dist/src/core/auth.d.ts +13 -0
- package/dist/src/core/auth.js +34 -0
- package/dist/src/core/auth.js.map +1 -0
- package/dist/src/core/initializer.d.ts +21 -0
- package/dist/src/core/initializer.js +48 -0
- package/dist/src/core/initializer.js.map +1 -0
- package/dist/src/core/theme.d.ts +12 -0
- package/dist/src/core/theme.js +23 -0
- package/dist/src/core/theme.js.map +1 -0
- package/dist/src/gemini.d.ts +14 -0
- package/dist/src/gemini.js +327 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/gemini.test.d.ts +6 -0
- package/dist/src/gemini.test.js +507 -0
- package/dist/src/gemini.test.js.map +1 -0
- package/dist/src/generated/git-commit.d.ts +7 -0
- package/dist/src/generated/git-commit.js +10 -0
- package/dist/src/generated/git-commit.js.map +1 -0
- package/dist/src/i18n/index.d.ts +18 -0
- package/dist/src/i18n/index.js +184 -0
- package/dist/src/i18n/index.js.map +1 -0
- package/dist/src/i18n/locales/en.js +1129 -0
- package/dist/src/i18n/locales/zh.js +1052 -0
- package/dist/src/nonInteractive/control/ControlContext.d.ts +63 -0
- package/dist/src/nonInteractive/control/ControlContext.js +31 -0
- package/dist/src/nonInteractive/control/ControlContext.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +86 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js +238 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.d.ts +6 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js +549 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlService.d.ts +78 -0
- package/dist/src/nonInteractive/control/ControlService.js +154 -0
- package/dist/src/nonInteractive/control/ControlService.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/baseController.d.ts +50 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js +102 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/hookController.d.ts +25 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js +42 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.d.ts +42 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.js +205 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +78 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js +358 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/systemController.d.ts +56 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js +166 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +120 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js +7 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +446 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +891 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +1197 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.d.ts +29 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js +56 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js +624 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.d.ts +16 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js +54 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js +178 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.d.ts +69 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js +185 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +808 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/session.d.ts +23 -0
- package/dist/src/nonInteractive/session.js +549 -0
- package/dist/src/nonInteractive/session.js.map +1 -0
- package/dist/src/nonInteractive/session.test.d.ts +6 -0
- package/dist/src/nonInteractive/session.test.js +407 -0
- package/dist/src/nonInteractive/session.test.js.map +1 -0
- package/dist/src/nonInteractive/types.d.ts +344 -0
- package/dist/src/nonInteractive/types.js +78 -0
- package/dist/src/nonInteractive/types.js.map +1 -0
- package/dist/src/nonInteractiveCli.d.ts +28 -0
- package/dist/src/nonInteractiveCli.js +268 -0
- package/dist/src/nonInteractiveCli.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.d.ts +35 -0
- package/dist/src/nonInteractiveCliCommands.js +144 -0
- package/dist/src/nonInteractiveCliCommands.js.map +1 -0
- package/dist/src/patches/is-in-ci.d.ts +7 -0
- package/dist/src/patches/is-in-ci.js +15 -0
- package/dist/src/patches/is-in-ci.js.map +1 -0
- package/dist/src/patches/punycode-shim.d.ts +6 -0
- package/dist/src/patches/punycode-shim.js +20 -0
- package/dist/src/patches/punycode-shim.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
- package/dist/src/services/BuiltinCommandLoader.js +99 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
- package/dist/src/services/BuiltinCommandLoader.test.js +167 -0
- package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
- package/dist/src/services/CommandService.d.ts +55 -0
- package/dist/src/services/CommandService.js +90 -0
- package/dist/src/services/CommandService.js.map +1 -0
- package/dist/src/services/CommandService.test.d.ts +6 -0
- package/dist/src/services/CommandService.test.js +233 -0
- package/dist/src/services/CommandService.test.js.map +1 -0
- package/dist/src/services/FileCommandLoader.d.ts +51 -0
- package/dist/src/services/FileCommandLoader.js +230 -0
- package/dist/src/services/FileCommandLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.d.ts +35 -0
- package/dist/src/services/McpPromptLoader.js +254 -0
- package/dist/src/services/McpPromptLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
- package/dist/src/services/McpPromptLoader.test.js +341 -0
- package/dist/src/services/McpPromptLoader.test.js.map +1 -0
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js +21 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js +62 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js +174 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.d.ts +29 -0
- package/dist/src/services/prompt-processors/injectionParser.js +60 -0
- package/dist/src/services/prompt-processors/injectionParser.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js +189 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js.map +1 -0
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +27 -0
- package/dist/src/services/prompt-processors/shellProcessor.js +128 -0
- package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/types.d.ts +45 -0
- package/dist/src/services/prompt-processors/types.js +20 -0
- package/dist/src/services/prompt-processors/types.js.map +1 -0
- package/dist/src/services/types.d.ts +22 -0
- package/dist/src/services/types.js +7 -0
- package/dist/src/services/types.js.map +1 -0
- package/dist/src/test-utils/createExtension.d.ts +15 -0
- package/dist/src/test-utils/createExtension.js +25 -0
- package/dist/src/test-utils/createExtension.js.map +1 -0
- package/dist/src/test-utils/customMatchers.d.ts +14 -0
- package/dist/src/test-utils/customMatchers.js +40 -0
- package/dist/src/test-utils/customMatchers.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
- package/dist/src/test-utils/mockCommandContext.js +93 -0
- package/dist/src/test-utils/mockCommandContext.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
- package/dist/src/test-utils/mockCommandContext.test.js +51 -0
- package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
- package/dist/src/test-utils/render.d.ts +12 -0
- package/dist/src/test-utils/render.js +14 -0
- package/dist/src/test-utils/render.js.map +1 -0
- package/dist/src/ui/App.d.ts +6 -0
- package/dist/src/ui/App.js +37 -0
- package/dist/src/ui/App.js.map +1 -0
- package/dist/src/ui/AppContainer.d.ts +17 -0
- package/dist/src/ui/AppContainer.js +1074 -0
- package/dist/src/ui/AppContainer.js.map +1 -0
- package/dist/src/ui/AppContainer.test.d.ts +6 -0
- package/dist/src/ui/AppContainer.test.js +831 -0
- package/dist/src/ui/AppContainer.test.js.map +1 -0
- package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
- package/dist/src/ui/IdeIntegrationNudge.js +50 -0
- package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.d.ts +7 -0
- package/dist/src/ui/auth/AuthDialog.js +63 -0
- package/dist/src/ui/auth/AuthDialog.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.test.d.ts +6 -0
- package/dist/src/ui/auth/AuthDialog.test.js +391 -0
- package/dist/src/ui/auth/AuthDialog.test.js.map +1 -0
- package/dist/src/ui/auth/AuthInProgress.d.ts +11 -0
- package/dist/src/ui/auth/AuthInProgress.js +24 -0
- package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
- package/dist/src/ui/auth/OAuthFlow.d.ts +14 -0
- package/dist/src/ui/auth/OAuthFlow.js +48 -0
- package/dist/src/ui/auth/OAuthFlow.js.map +1 -0
- package/dist/src/ui/auth/useAuth.d.ts +27 -0
- package/dist/src/ui/auth/useAuth.js +244 -0
- package/dist/src/ui/auth/useAuth.js.map +1 -0
- package/dist/src/ui/colors.d.ts +7 -0
- package/dist/src/ui/colors.js +54 -0
- package/dist/src/ui/colors.js.map +1 -0
- package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
- package/dist/src/ui/commands/aboutCommand.js +25 -0
- package/dist/src/ui/commands/aboutCommand.js.map +1 -0
- package/dist/src/ui/commands/agentsCommand.d.ts +7 -0
- package/dist/src/ui/commands/agentsCommand.js +39 -0
- package/dist/src/ui/commands/agentsCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.d.ts +7 -0
- package/dist/src/ui/commands/approvalModeCommand.js +19 -0
- package/dist/src/ui/commands/approvalModeCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js +49 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.d.ts +7 -0
- package/dist/src/ui/commands/authCommand.js +19 -0
- package/dist/src/ui/commands/authCommand.js.map +1 -0
- package/dist/src/ui/commands/bugCommand.d.ts +7 -0
- package/dist/src/ui/commands/bugCommand.js +51 -0
- package/dist/src/ui/commands/bugCommand.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.d.ts +9 -0
- package/dist/src/ui/commands/chatCommand.js +351 -0
- package/dist/src/ui/commands/chatCommand.js.map +1 -0
- package/dist/src/ui/commands/clearCommand.d.ts +7 -0
- package/dist/src/ui/commands/clearCommand.js +30 -0
- package/dist/src/ui/commands/clearCommand.js.map +1 -0
- package/dist/src/ui/commands/compressCommand.d.ts +7 -0
- package/dist/src/ui/commands/compressCommand.js +71 -0
- package/dist/src/ui/commands/compressCommand.js.map +1 -0
- package/dist/src/ui/commands/copyCommand.d.ts +7 -0
- package/dist/src/ui/commands/copyCommand.js +62 -0
- package/dist/src/ui/commands/copyCommand.js.map +1 -0
- package/dist/src/ui/commands/corgiCommand.d.ts +7 -0
- package/dist/src/ui/commands/corgiCommand.js +16 -0
- package/dist/src/ui/commands/corgiCommand.js.map +1 -0
- package/dist/src/ui/commands/directoryCommand.d.ts +8 -0
- package/dist/src/ui/commands/directoryCommand.js +153 -0
- package/dist/src/ui/commands/directoryCommand.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.d.ts +7 -0
- package/dist/src/ui/commands/docsCommand.js +39 -0
- package/dist/src/ui/commands/docsCommand.js.map +1 -0
- package/dist/src/ui/commands/editorCommand.d.ts +7 -0
- package/dist/src/ui/commands/editorCommand.js +19 -0
- package/dist/src/ui/commands/editorCommand.js.map +1 -0
- package/dist/src/ui/commands/extensionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/extensionsCommand.js +115 -0
- package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
- package/dist/src/ui/commands/helpCommand.d.ts +7 -0
- package/dist/src/ui/commands/helpCommand.js +24 -0
- package/dist/src/ui/commands/helpCommand.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.d.ts +7 -0
- package/dist/src/ui/commands/ideCommand.js +241 -0
- package/dist/src/ui/commands/ideCommand.js.map +1 -0
- package/dist/src/ui/commands/initCommand.d.ts +7 -0
- package/dist/src/ui/commands/initCommand.js +118 -0
- package/dist/src/ui/commands/initCommand.js.map +1 -0
- package/dist/src/ui/commands/languageCommand.d.ts +7 -0
- package/dist/src/ui/commands/languageCommand.js +386 -0
- package/dist/src/ui/commands/languageCommand.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
- package/dist/src/ui/commands/mcpCommand.js +269 -0
- package/dist/src/ui/commands/mcpCommand.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
- package/dist/src/ui/commands/memoryCommand.js +254 -0
- package/dist/src/ui/commands/memoryCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.d.ts +7 -0
- package/dist/src/ui/commands/modelCommand.js +48 -0
- package/dist/src/ui/commands/modelCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/modelCommand.test.js +137 -0
- package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
- package/dist/src/ui/commands/openaiProfileCommand.d.ts +7 -0
- package/dist/src/ui/commands/openaiProfileCommand.js +135 -0
- package/dist/src/ui/commands/openaiProfileCommand.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/permissionsCommand.js +19 -0
- package/dist/src/ui/commands/permissionsCommand.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/permissionsCommand.test.js +30 -0
- package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.d.ts +8 -0
- package/dist/src/ui/commands/quitCommand.js +64 -0
- package/dist/src/ui/commands/quitCommand.js.map +1 -0
- package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
- package/dist/src/ui/commands/restoreCommand.js +124 -0
- package/dist/src/ui/commands/restoreCommand.js.map +1 -0
- package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
- package/dist/src/ui/commands/settingsCommand.js +19 -0
- package/dist/src/ui/commands/settingsCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.d.ts +9 -0
- package/dist/src/ui/commands/setupGithubCommand.js +157 -0
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js +167 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
- package/dist/src/ui/commands/spCommand.d.ts +7 -0
- package/dist/src/ui/commands/spCommand.js +352 -0
- package/dist/src/ui/commands/spCommand.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.d.ts +7 -0
- package/dist/src/ui/commands/statsCommand.js +61 -0
- package/dist/src/ui/commands/statsCommand.js.map +1 -0
- package/dist/src/ui/commands/summaryCommand.d.ts +7 -0
- package/dist/src/ui/commands/summaryCommand.js +156 -0
- package/dist/src/ui/commands/summaryCommand.js.map +1 -0
- package/dist/src/ui/commands/systemPromptCommand.d.ts +7 -0
- package/dist/src/ui/commands/systemPromptCommand.js +322 -0
- package/dist/src/ui/commands/systemPromptCommand.js.map +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
- package/dist/src/ui/commands/terminalSetupCommand.js +47 -0
- package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
- package/dist/src/ui/commands/themeCommand.d.ts +7 -0
- package/dist/src/ui/commands/themeCommand.js +19 -0
- package/dist/src/ui/commands/themeCommand.js.map +1 -0
- package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
- package/dist/src/ui/commands/toolsCommand.js +45 -0
- package/dist/src/ui/commands/toolsCommand.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +160 -0
- package/dist/src/ui/commands/types.js +12 -0
- package/dist/src/ui/commands/types.js.map +1 -0
- package/dist/src/ui/commands/vimCommand.d.ts +7 -0
- package/dist/src/ui/commands/vimCommand.js +26 -0
- package/dist/src/ui/commands/vimCommand.js.map +1 -0
- package/dist/src/ui/components/AboutBox.d.ts +10 -0
- package/dist/src/ui/components/AboutBox.js +10 -0
- package/dist/src/ui/components/AboutBox.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.d.ts +13 -0
- package/dist/src/ui/components/AnsiOutput.js +12 -0
- package/dist/src/ui/components/AnsiOutput.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.test.d.ts +6 -0
- package/dist/src/ui/components/AnsiOutput.test.js +97 -0
- package/dist/src/ui/components/AnsiOutput.test.js.map +1 -0
- package/dist/src/ui/components/AppHeader.d.ts +10 -0
- package/dist/src/ui/components/AppHeader.js +19 -0
- package/dist/src/ui/components/AppHeader.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeDialog.d.ts +21 -0
- package/dist/src/ui/components/ApprovalModeDialog.js +68 -0
- package/dist/src/ui/components/ApprovalModeDialog.js.map +1 -0
- package/dist/src/ui/components/AsciiArt.d.ts +8 -0
- package/dist/src/ui/components/AsciiArt.js +30 -0
- package/dist/src/ui/components/AsciiArt.js.map +1 -0
- package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js +32 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/components/Composer.d.ts +6 -0
- package/dist/src/ui/components/Composer.js +55 -0
- package/dist/src/ui/components/Composer.js.map +1 -0
- package/dist/src/ui/components/Composer.test.d.ts +6 -0
- package/dist/src/ui/components/Composer.test.js +337 -0
- package/dist/src/ui/components/Composer.test.js.map +1 -0
- package/dist/src/ui/components/ConfigInitDisplay.d.ts +6 -0
- package/dist/src/ui/components/ConfigInitDisplay.js +42 -0
- package/dist/src/ui/components/ConfigInitDisplay.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.d.ts +13 -0
- package/dist/src/ui/components/ConsentPrompt.js +19 -0
- package/dist/src/ui/components/ConsentPrompt.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/ConsentPrompt.test.js +67 -0
- package/dist/src/ui/components/ConsentPrompt.test.js.map +1 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +11 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.js +11 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +20 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +90 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
- package/dist/src/ui/components/ContextUsageDisplay.js +16 -0
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/DebugProfiler.d.ts +6 -0
- package/dist/src/ui/components/DebugProfiler.js +27 -0
- package/dist/src/ui/components/DebugProfiler.js.map +1 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +14 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js +34 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -0
- package/dist/src/ui/components/DialogManager.d.ts +12 -0
- package/dist/src/ui/components/DialogManager.js +158 -0
- package/dist/src/ui/components/DialogManager.js.map +1 -0
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +16 -0
- package/dist/src/ui/components/EditorSettingsDialog.js +85 -0
- package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
- package/dist/src/ui/components/ExitWarning.d.ts +7 -0
- package/dist/src/ui/components/ExitWarning.js +9 -0
- package/dist/src/ui/components/ExitWarning.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
- package/dist/src/ui/components/FolderTrustDialog.js +58 -0
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js +88 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/Footer.d.ts +7 -0
- package/dist/src/ui/components/Footer.js +48 -0
- package/dist/src/ui/components/Footer.js.map +1 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +21 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js +23 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
- package/dist/src/ui/components/Header.d.ts +13 -0
- package/dist/src/ui/components/Header.js +28 -0
- package/dist/src/ui/components/Header.js.map +1 -0
- package/dist/src/ui/components/Header.test.d.ts +6 -0
- package/dist/src/ui/components/Header.test.js +37 -0
- package/dist/src/ui/components/Header.test.js.map +1 -0
- package/dist/src/ui/components/Help.d.ts +12 -0
- package/dist/src/ui/components/Help.js +23 -0
- package/dist/src/ui/components/Help.js.map +1 -0
- package/dist/src/ui/components/Help.test.d.ts +6 -0
- package/dist/src/ui/components/Help.test.js +57 -0
- package/dist/src/ui/components/Help.test.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +21 -0
- package/dist/src/ui/components/HistoryItemDisplay.js +31 -0
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js +183 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js +32 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js +57 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -0
- package/dist/src/ui/components/InputPrompt.d.ts +37 -0
- package/dist/src/ui/components/InputPrompt.js +583 -0
- package/dist/src/ui/components/InputPrompt.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.d.ts +15 -0
- package/dist/src/ui/components/LoadingIndicator.js +30 -0
- package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/LoadingIndicator.test.js +194 -0
- package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +13 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js +37 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.d.ts +6 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js +28 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js.map +1 -0
- package/dist/src/ui/components/MainContent.d.ts +6 -0
- package/dist/src/ui/components/MainContent.js +28 -0
- package/dist/src/ui/components/MainContent.js.map +1 -0
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js +24 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.d.ts +11 -0
- package/dist/src/ui/components/ModelDialog.js +99 -0
- package/dist/src/ui/components/ModelDialog.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ModelDialog.test.js +158 -0
- package/dist/src/ui/components/ModelDialog.test.js.map +1 -0
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +7 -0
- package/dist/src/ui/components/ModelStatsDisplay.js +34 -0
- package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelSwitchDialog.d.ts +15 -0
- package/dist/src/ui/components/ModelSwitchDialog.js +40 -0
- package/dist/src/ui/components/ModelSwitchDialog.js.map +1 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.js +128 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.js.map +1 -0
- package/dist/src/ui/components/Notifications.d.ts +6 -0
- package/dist/src/ui/components/Notifications.js +23 -0
- package/dist/src/ui/components/Notifications.js.map +1 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.d.ts +25 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.js +90 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js +51 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js.map +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +13 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +48 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js +154 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/PlanSummaryDisplay.d.ts +14 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js +9 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
- package/dist/src/ui/components/PrepareLabel.js +72 -0
- package/dist/src/ui/components/PrepareLabel.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.test.d.ts +6 -0
- package/dist/src/ui/components/PrepareLabel.test.js +71 -0
- package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.d.ts +13 -0
- package/dist/src/ui/components/ProQuotaDialog.js +24 -0
- package/dist/src/ui/components/ProQuotaDialog.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js +58 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.d.ts +9 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js +20 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js +56 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js.map +1 -0
- package/dist/src/ui/components/QuitConfirmationDialog.d.ts +17 -0
- package/dist/src/ui/components/QuitConfirmationDialog.js +49 -0
- package/dist/src/ui/components/QuitConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/QuittingDisplay.d.ts +6 -0
- package/dist/src/ui/components/QuittingDisplay.js +20 -0
- package/dist/src/ui/components/QuittingDisplay.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.d.ts +16 -0
- package/dist/src/ui/components/QwenOAuthProgress.js +111 -0
- package/dist/src/ui/components/QwenOAuthProgress.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.d.ts +6 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js +364 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +11 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +5 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
- package/dist/src/ui/components/SettingsDialog.js +647 -0
- package/dist/src/ui/components/SettingsDialog.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
- package/dist/src/ui/components/SettingsDialog.test.js +1037 -0
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.d.ts +15 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js +50 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js +40 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellInputPrompt.d.ts +11 -0
- package/dist/src/ui/components/ShellInputPrompt.js +36 -0
- package/dist/src/ui/components/ShellInputPrompt.js.map +1 -0
- package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
- package/dist/src/ui/components/ShellModeIndicator.js +5 -0
- package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
- package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
- package/dist/src/ui/components/ShowMoreLines.js +24 -0
- package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
- package/dist/src/ui/components/StatsDisplay.d.ts +12 -0
- package/dist/src/ui/components/StatsDisplay.js +44 -0
- package/dist/src/ui/components/StatsDisplay.js.map +1 -0
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +27 -0
- package/dist/src/ui/components/SuggestionsDisplay.js +40 -0
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.d.ts +20 -0
- package/dist/src/ui/components/ThemeDialog.js +126 -0
- package/dist/src/ui/components/ThemeDialog.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ThemeDialog.test.js +75 -0
- package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
- package/dist/src/ui/components/Tips.d.ts +12 -0
- package/dist/src/ui/components/Tips.js +10 -0
- package/dist/src/ui/components/Tips.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.d.ts +16 -0
- package/dist/src/ui/components/TodoDisplay.js +27 -0
- package/dist/src/ui/components/TodoDisplay.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/TodoDisplay.test.js +77 -0
- package/dist/src/ui/components/TodoDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +7 -0
- package/dist/src/ui/components/ToolStatsDisplay.js +42 -0
- package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
- package/dist/src/ui/components/UpdateNotification.js +10 -0
- package/dist/src/ui/components/UpdateNotification.js.map +1 -0
- package/dist/src/ui/components/WelcomeBackDialog.d.ts +13 -0
- package/dist/src/ui/components/WelcomeBackDialog.js +43 -0
- package/dist/src/ui/components/WelcomeBackDialog.js.map +1 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.d.ts +11 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js +45 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
- package/dist/src/ui/components/messages/CompressionMessage.js +50 -0
- package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js +160 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +17 -0
- package/dist/src/ui/components/messages/DiffRenderer.js +218 -0
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js +239 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
- package/dist/src/ui/components/messages/ErrorMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/ErrorMessage.js +9 -0
- package/dist/src/ui/components/messages/ErrorMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessage.js +11 -0
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js +15 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -0
- package/dist/src/ui/components/messages/InfoMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/InfoMessage.js +14 -0
- package/dist/src/ui/components/messages/InfoMessage.js.map +1 -0
- package/dist/src/ui/components/messages/SummaryMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/SummaryMessage.js +35 -0
- package/dist/src/ui/components/messages/SummaryMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +16 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +245 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +165 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +19 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js +58 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +261 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.d.ts +19 -0
- package/dist/src/ui/components/messages/ToolMessage.js +180 -0
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js +182 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/UserMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/UserMessage.js +13 -0
- package/dist/src/ui/components/messages/UserMessage.js.map +1 -0
- package/dist/src/ui/components/messages/UserShellMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/UserShellMessage.js +9 -0
- package/dist/src/ui/components/messages/UserShellMessage.js.map +1 -0
- package/dist/src/ui/components/messages/WarningMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/WarningMessage.js +10 -0
- package/dist/src/ui/components/messages/WarningMessage.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.d.ts +38 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js +72 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js +376 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +35 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js +79 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.d.ts +18 -0
- package/dist/src/ui/components/shared/EnumSelector.js +44 -0
- package/dist/src/ui/components/shared/EnumSelector.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.test.d.ts +6 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js +70 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js +451 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js +154 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +45 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js +21 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js +134 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/ScopeSelector.d.ts +19 -0
- package/dist/src/ui/components/shared/ScopeSelector.js +16 -0
- package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.d.ts +16 -0
- package/dist/src/ui/components/shared/TextInput.js +127 -0
- package/dist/src/ui/components/shared/TextInput.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.d.ts +490 -0
- package/dist/src/ui/components/shared/text-buffer.js +1598 -0
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +72 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js +552 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
- package/dist/src/ui/components/subagents/constants.d.ts +23 -0
- package/dist/src/ui/components/subagents/constants.js +67 -0
- package/dist/src/ui/components/subagents/constants.js.map +1 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js +186 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js +43 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js +174 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js.map +1 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js +107 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js.map +1 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.d.ts +26 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js +28 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.d.ts +16 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js +145 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/index.d.ts +8 -0
- package/dist/src/ui/components/subagents/index.js +12 -0
- package/dist/src/ui/components/subagents/index.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js +71 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js +36 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js +73 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.d.ts +12 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +231 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.d.ts +11 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js +20 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js +212 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/components/subagents/reducers.d.ts +14 -0
- package/dist/src/ui/components/subagents/reducers.js +162 -0
- package/dist/src/ui/components/subagents/reducers.js.map +1 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.d.ts +20 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js +193 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js.map +1 -0
- package/dist/src/ui/components/subagents/types.d.ts +137 -0
- package/dist/src/ui/components/subagents/types.js +15 -0
- package/dist/src/ui/components/subagents/types.js.map +1 -0
- package/dist/src/ui/components/subagents/utils.d.ts +15 -0
- package/dist/src/ui/components/subagents/utils.js +79 -0
- package/dist/src/ui/components/subagents/utils.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.js +47 -0
- package/dist/src/ui/components/views/ExtensionsList.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js +97 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
- package/dist/src/ui/components/views/McpStatus.js +90 -0
- package/dist/src/ui/components/views/McpStatus.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.test.d.ts +6 -0
- package/dist/src/ui/components/views/McpStatus.test.js +117 -0
- package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.d.ts +14 -0
- package/dist/src/ui/components/views/ToolsList.js +8 -0
- package/dist/src/ui/components/views/ToolsList.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ToolsList.test.js +45 -0
- package/dist/src/ui/components/views/ToolsList.test.js.map +1 -0
- package/dist/src/ui/constants.d.ts +18 -0
- package/dist/src/ui/constants.js +23 -0
- package/dist/src/ui/constants.js.map +1 -0
- package/dist/src/ui/contexts/AppContext.d.ts +11 -0
- package/dist/src/ui/contexts/AppContext.js +15 -0
- package/dist/src/ui/contexts/AppContext.js.map +1 -0
- package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
- package/dist/src/ui/contexts/ConfigContext.js +16 -0
- package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.d.ts +35 -0
- package/dist/src/ui/contexts/KeypressContext.js +636 -0
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/KeypressContext.test.js +1180 -0
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
- package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
- package/dist/src/ui/contexts/OverflowContext.js +38 -0
- package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.d.ts +45 -0
- package/dist/src/ui/contexts/SessionContext.js +157 -0
- package/dist/src/ui/contexts/SessionContext.js.map +1 -0
- package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
- package/dist/src/ui/contexts/SettingsContext.js +15 -0
- package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
- package/dist/src/ui/contexts/ShellFocusContext.d.ts +7 -0
- package/dist/src/ui/contexts/ShellFocusContext.js +9 -0
- package/dist/src/ui/contexts/ShellFocusContext.js.map +1 -0
- package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
- package/dist/src/ui/contexts/StreamingContext.js +15 -0
- package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
- package/dist/src/ui/contexts/UIActionsContext.d.ts +46 -0
- package/dist/src/ui/contexts/UIActionsContext.js +22 -0
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
- package/dist/src/ui/contexts/UIStateContext.d.ts +117 -0
- package/dist/src/ui/contexts/UIStateContext.js +17 -0
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -0
- package/dist/src/ui/contexts/VimModeContext.d.ts +19 -0
- package/dist/src/ui/contexts/VimModeContext.js +48 -0
- package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
- package/dist/src/ui/editors/editorSettingsManager.d.ts +19 -0
- package/dist/src/ui/editors/editorSettingsManager.js +48 -0
- package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +31 -0
- package/dist/src/ui/hooks/atCommandProcessor.js +364 -0
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js +836 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/keyToAnsi.d.ts +15 -0
- package/dist/src/ui/hooks/keyToAnsi.js +67 -0
- package/dist/src/ui/hooks/keyToAnsi.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.d.ts +18 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js +284 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js +508 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +52 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +503 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js +21 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.d.ts +14 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js +33 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useAtCompletion.js +179 -0
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.d.ts +14 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js +41 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js +113 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +13 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +40 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +306 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
- package/dist/src/ui/hooks/useBracketedPaste.js +32 -0
- package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +29 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +164 -0
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
- package/dist/src/ui/hooks/useCompletion.js +88 -0
- package/dist/src/ui/hooks/useCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useConsoleMessages.d.ts +12 -0
- package/dist/src/ui/hooks/useConsoleMessages.js +76 -0
- package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -0
- package/dist/src/ui/hooks/useDialogClose.d.ts +35 -0
- package/dist/src/ui/hooks/useDialogClose.js +53 -0
- package/dist/src/ui/hooks/useDialogClose.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
- package/dist/src/ui/hooks/useEditorSettings.js +43 -0
- package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js +164 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +21 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js +116 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.d.ts +6 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js +243 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
- package/dist/src/ui/hooks/useFocus.d.ts +10 -0
- package/dist/src/ui/hooks/useFocus.js +51 -0
- package/dist/src/ui/hooks/useFocus.js.map +1 -0
- package/dist/src/ui/hooks/useFolderTrust.d.ts +13 -0
- package/dist/src/ui/hooks/useFolderTrust.js +60 -0
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.d.ts +39 -0
- package/dist/src/ui/hooks/useGeminiStream.js +781 -0
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.js +61 -0
- package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js +189 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.d.ts +22 -0
- package/dist/src/ui/hooks/useHistoryManager.js +72 -0
- package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js +171 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +16 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js +65 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.d.ts +6 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js +183 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
- package/dist/src/ui/hooks/useInitializationAuthError.d.ts +22 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js +40 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistory.js +84 -0
- package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistory.test.js +207 -0
- package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js +81 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js +234 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
- package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
- package/dist/src/ui/hooks/useKeypress.js +27 -0
- package/dist/src/ui/hooks/useKeypress.js.map +1 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +15 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +20 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
- package/dist/src/ui/hooks/useLaunchEditor.d.ts +10 -0
- package/dist/src/ui/hooks/useLaunchEditor.js +70 -0
- package/dist/src/ui/hooks/useLaunchEditor.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +10 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js +44 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +91 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useLogger.d.ts +11 -0
- package/dist/src/ui/hooks/useLogger.js +29 -0
- package/dist/src/ui/hooks/useLogger.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.d.ts +13 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js +28 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js +57 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.d.ts +23 -0
- package/dist/src/ui/hooks/useMessageQueue.js +51 -0
- package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js +167 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.d.ts +12 -0
- package/dist/src/ui/hooks/useModelCommand.js +21 -0
- package/dist/src/ui/hooks/useModelCommand.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useModelCommand.test.js +35 -0
- package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +17 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js +78 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js.map +1 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.d.ts +6 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js +182 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +14 -0
- package/dist/src/ui/hooks/usePhraseCycler.js +192 -0
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
- package/dist/src/ui/hooks/useQuitConfirmation.d.ts +14 -0
- package/dist/src/ui/hooks/useQuitConfirmation.js +36 -0
- package/dist/src/ui/hooks/useQuitConfirmation.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +21 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js +122 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.d.ts +6 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js +269 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.d.ts +15 -0
- package/dist/src/ui/hooks/useQwenAuth.js +74 -0
- package/dist/src/ui/hooks/useQwenAuth.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.test.d.ts +6 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js +266 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +34 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js +192 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +103 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +163 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.d.ts +34 -0
- package/dist/src/ui/hooks/useSelectionList.js +245 -0
- package/dist/src/ui/hooks/useSelectionList.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSelectionList.test.js +701 -0
- package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
- package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
- package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.d.ts +14 -0
- package/dist/src/ui/hooks/useShellHistory.js +111 -0
- package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useShellHistory.test.js +187 -0
- package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js +58 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +20 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +349 -0
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +9 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js +597 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
- package/dist/src/ui/hooks/useStateAndRef.js +26 -0
- package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.d.ts +10 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js +21 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalSize.d.ts +9 -0
- package/dist/src/ui/hooks/useTerminalSize.js +27 -0
- package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
- package/dist/src/ui/hooks/useThemeCommand.d.ts +15 -0
- package/dist/src/ui/hooks/useThemeCommand.js +73 -0
- package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.d.ts +12 -0
- package/dist/src/ui/hooks/useTimer.js +58 -0
- package/dist/src/ui/hooks/useTimer.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTimer.test.js +90 -0
- package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js +623 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.d.ts +47 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.js +262 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.js.map +1 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.d.ts +6 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.js +515 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.js.map +1 -0
- package/dist/src/ui/hooks/useWelcomeBack.d.ts +23 -0
- package/dist/src/ui/hooks/useWelcomeBack.js +79 -0
- package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.d.ts +13 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js +54 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +28 -0
- package/dist/src/ui/hooks/vim.js +639 -0
- package/dist/src/ui/hooks/vim.js.map +1 -0
- package/dist/src/ui/keyMatchers.d.ts +27 -0
- package/dist/src/ui/keyMatchers.js +68 -0
- package/dist/src/ui/keyMatchers.js.map +1 -0
- package/dist/src/ui/keyMatchers.test.d.ts +6 -0
- package/dist/src/ui/keyMatchers.test.js +293 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -0
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +9 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js +13 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js.map +1 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +7 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js +14 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +1 -0
- package/dist/src/ui/models/availableModels.d.ts +49 -0
- package/dist/src/ui/models/availableModels.js +130 -0
- package/dist/src/ui/models/availableModels.js.map +1 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +12 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +29 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -0
- package/dist/src/ui/semantic-colors.d.ts +7 -0
- package/dist/src/ui/semantic-colors.js +24 -0
- package/dist/src/ui/semantic-colors.js.map +1 -0
- package/dist/src/ui/state/extensions.d.ts +42 -0
- package/dist/src/ui/state/extensions.js +62 -0
- package/dist/src/ui/state/extensions.js.map +1 -0
- package/dist/src/ui/textConstants.d.ts +9 -0
- package/dist/src/ui/textConstants.js +10 -0
- package/dist/src/ui/textConstants.js.map +1 -0
- package/dist/src/ui/themes/ansi-light.d.ts +7 -0
- package/dist/src/ui/themes/ansi-light.js +142 -0
- package/dist/src/ui/themes/ansi-light.js.map +1 -0
- package/dist/src/ui/themes/ansi.d.ts +7 -0
- package/dist/src/ui/themes/ansi.js +152 -0
- package/dist/src/ui/themes/ansi.js.map +1 -0
- package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
- package/dist/src/ui/themes/atom-one-dark.js +138 -0
- package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
- package/dist/src/ui/themes/ayu-light.d.ts +7 -0
- package/dist/src/ui/themes/ayu-light.js +130 -0
- package/dist/src/ui/themes/ayu-light.js.map +1 -0
- package/dist/src/ui/themes/ayu.d.ts +7 -0
- package/dist/src/ui/themes/ayu.js +104 -0
- package/dist/src/ui/themes/ayu.js.map +1 -0
- package/dist/src/ui/themes/color-utils.d.ts +21 -0
- package/dist/src/ui/themes/color-utils.js +221 -0
- package/dist/src/ui/themes/color-utils.js.map +1 -0
- package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
- package/dist/src/ui/themes/color-utils.test.js +197 -0
- package/dist/src/ui/themes/color-utils.test.js.map +1 -0
- package/dist/src/ui/themes/default-light.d.ts +7 -0
- package/dist/src/ui/themes/default-light.js +100 -0
- package/dist/src/ui/themes/default-light.js.map +1 -0
- package/dist/src/ui/themes/default.d.ts +7 -0
- package/dist/src/ui/themes/default.js +143 -0
- package/dist/src/ui/themes/default.js.map +1 -0
- package/dist/src/ui/themes/dracula.d.ts +7 -0
- package/dist/src/ui/themes/dracula.js +115 -0
- package/dist/src/ui/themes/dracula.js.map +1 -0
- package/dist/src/ui/themes/github-dark.d.ts +7 -0
- package/dist/src/ui/themes/github-dark.js +138 -0
- package/dist/src/ui/themes/github-dark.js.map +1 -0
- package/dist/src/ui/themes/github-light.d.ts +7 -0
- package/dist/src/ui/themes/github-light.js +140 -0
- package/dist/src/ui/themes/github-light.js.map +1 -0
- package/dist/src/ui/themes/googlecode.d.ts +7 -0
- package/dist/src/ui/themes/googlecode.js +137 -0
- package/dist/src/ui/themes/googlecode.js.map +1 -0
- package/dist/src/ui/themes/hibana-dark.d.ts +7 -0
- package/dist/src/ui/themes/hibana-dark.js +105 -0
- package/dist/src/ui/themes/hibana-dark.js.map +1 -0
- package/dist/src/ui/themes/hibana-light.d.ts +7 -0
- package/dist/src/ui/themes/hibana-light.js +131 -0
- package/dist/src/ui/themes/hibana-light.js.map +1 -0
- package/dist/src/ui/themes/no-color.d.ts +7 -0
- package/dist/src/ui/themes/no-color.js +115 -0
- package/dist/src/ui/themes/no-color.js.map +1 -0
- package/dist/src/ui/themes/qwen-dark.d.ts +7 -0
- package/dist/src/ui/themes/qwen-dark.js +105 -0
- package/dist/src/ui/themes/qwen-dark.js.map +1 -0
- package/dist/src/ui/themes/qwen-light.d.ts +7 -0
- package/dist/src/ui/themes/qwen-light.js +131 -0
- package/dist/src/ui/themes/qwen-light.js.map +1 -0
- package/dist/src/ui/themes/semantic-tokens.d.ts +37 -0
- package/dist/src/ui/themes/semantic-tokens.js +94 -0
- package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
- package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
- package/dist/src/ui/themes/shades-of-purple.js +304 -0
- package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.d.ts +66 -0
- package/dist/src/ui/themes/theme-manager.js +270 -0
- package/dist/src/ui/themes/theme-manager.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
- package/dist/src/ui/themes/theme-manager.test.js +142 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
- package/dist/src/ui/themes/theme.d.ts +130 -0
- package/dist/src/ui/themes/theme.js +379 -0
- package/dist/src/ui/themes/theme.js.map +1 -0
- package/dist/src/ui/themes/xcode.d.ts +7 -0
- package/dist/src/ui/themes/xcode.js +145 -0
- package/dist/src/ui/themes/xcode.js.map +1 -0
- package/dist/src/ui/types.d.ts +311 -0
- package/dist/src/ui/types.js +60 -0
- package/dist/src/ui/types.js.map +1 -0
- package/dist/src/ui/utils/CodeColorizer.d.ts +17 -0
- package/dist/src/ui/utils/CodeColorizer.js +111 -0
- package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
- package/dist/src/ui/utils/ConsolePatcher.d.ts +25 -0
- package/dist/src/ui/utils/ConsolePatcher.js +52 -0
- package/dist/src/ui/utils/ConsolePatcher.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +16 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +111 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +14 -0
- package/dist/src/ui/utils/MarkdownDisplay.js +207 -0
- package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js +169 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
- package/dist/src/ui/utils/TableRenderer.d.ts +17 -0
- package/dist/src/ui/utils/TableRenderer.js +84 -0
- package/dist/src/ui/utils/TableRenderer.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.d.ts +22 -0
- package/dist/src/ui/utils/clipboardUtils.js +126 -0
- package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/clipboardUtils.test.js +65 -0
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.d.ts +40 -0
- package/dist/src/ui/utils/commandUtils.js +146 -0
- package/dist/src/ui/utils/commandUtils.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/commandUtils.test.js +352 -0
- package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
- package/dist/src/ui/utils/computeStats.d.ts +10 -0
- package/dist/src/ui/utils/computeStats.js +57 -0
- package/dist/src/ui/utils/computeStats.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.d.ts +18 -0
- package/dist/src/ui/utils/displayUtils.js +27 -0
- package/dist/src/ui/utils/displayUtils.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/displayUtils.test.js +61 -0
- package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
- package/dist/src/ui/utils/formatters.d.ts +13 -0
- package/dist/src/ui/utils/formatters.js +56 -0
- package/dist/src/ui/utils/formatters.js.map +1 -0
- package/dist/src/ui/utils/formatters.test.d.ts +6 -0
- package/dist/src/ui/utils/formatters.test.js +56 -0
- package/dist/src/ui/utils/formatters.test.js.map +1 -0
- package/dist/src/ui/utils/highlight.d.ts +11 -0
- package/dist/src/ui/utils/highlight.js +78 -0
- package/dist/src/ui/utils/highlight.js.map +1 -0
- package/dist/src/ui/utils/highlight.test.d.ts +6 -0
- package/dist/src/ui/utils/highlight.test.js +120 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -0
- package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
- package/dist/src/ui/utils/isNarrowWidth.js +9 -0
- package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
- package/dist/src/ui/utils/kittyProtocolDetector.d.ts +13 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js +98 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.js +110 -0
- package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
- package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
- package/dist/src/ui/utils/platformConstants.d.ts +75 -0
- package/dist/src/ui/utils/platformConstants.js +78 -0
- package/dist/src/ui/utils/platformConstants.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.d.ts +30 -0
- package/dist/src/ui/utils/terminalSetup.js +308 -0
- package/dist/src/ui/utils/terminalSetup.js.map +1 -0
- package/dist/src/ui/utils/textUtils.d.ts +42 -0
- package/dist/src/ui/utils/textUtils.js +185 -0
- package/dist/src/ui/utils/textUtils.js.map +1 -0
- package/dist/src/ui/utils/textUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/textUtils.test.js +132 -0
- package/dist/src/ui/utils/textUtils.test.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.d.ts +12 -0
- package/dist/src/ui/utils/updateCheck.js +78 -0
- package/dist/src/ui/utils/updateCheck.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
- package/dist/src/ui/utils/updateCheck.test.js +145 -0
- package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
- package/dist/src/utils/attentionNotification.d.ts +20 -0
- package/dist/src/utils/attentionNotification.js +34 -0
- package/dist/src/utils/attentionNotification.js.map +1 -0
- package/dist/src/utils/attentionNotification.test.d.ts +6 -0
- package/dist/src/utils/attentionNotification.test.js +46 -0
- package/dist/src/utils/attentionNotification.test.js.map +1 -0
- package/dist/src/utils/checks.d.ts +19 -0
- package/dist/src/utils/checks.js +24 -0
- package/dist/src/utils/checks.js.map +1 -0
- package/dist/src/utils/cleanup.d.ts +8 -0
- package/dist/src/utils/cleanup.js +35 -0
- package/dist/src/utils/cleanup.js.map +1 -0
- package/dist/src/utils/commands.d.ts +20 -0
- package/dist/src/utils/commands.js +53 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/commands.test.d.ts +6 -0
- package/dist/src/utils/commands.test.js +115 -0
- package/dist/src/utils/commands.test.js.map +1 -0
- package/dist/src/utils/commentJson.d.ts +9 -0
- package/dist/src/utils/commentJson.js +55 -0
- package/dist/src/utils/commentJson.js.map +1 -0
- package/dist/src/utils/commentJson.test.d.ts +6 -0
- package/dist/src/utils/commentJson.test.js +146 -0
- package/dist/src/utils/commentJson.test.js.map +1 -0
- package/dist/src/utils/deepMerge.d.ts +9 -0
- package/dist/src/utils/deepMerge.js +58 -0
- package/dist/src/utils/deepMerge.js.map +1 -0
- package/dist/src/utils/deepMerge.test.d.ts +6 -0
- package/dist/src/utils/deepMerge.test.js +143 -0
- package/dist/src/utils/deepMerge.test.js.map +1 -0
- package/dist/src/utils/dialogScopeUtils.d.ts +28 -0
- package/dist/src/utils/dialogScopeUtils.js +51 -0
- package/dist/src/utils/dialogScopeUtils.js.map +1 -0
- package/dist/src/utils/envVarResolver.d.ts +39 -0
- package/dist/src/utils/envVarResolver.js +97 -0
- package/dist/src/utils/envVarResolver.js.map +1 -0
- package/dist/src/utils/envVarResolver.test.d.ts +6 -0
- package/dist/src/utils/envVarResolver.test.js +221 -0
- package/dist/src/utils/envVarResolver.test.js.map +1 -0
- package/dist/src/utils/errors.d.ts +35 -0
- package/dist/src/utils/errors.js +106 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/errors.test.d.ts +6 -0
- package/dist/src/utils/errors.test.js +340 -0
- package/dist/src/utils/errors.test.js.map +1 -0
- package/dist/src/utils/events.d.ts +12 -0
- package/dist/src/utils/events.js +14 -0
- package/dist/src/utils/events.js.map +1 -0
- package/dist/src/utils/gitUtils.d.ts +30 -0
- package/dist/src/utils/gitUtils.js +89 -0
- package/dist/src/utils/gitUtils.js.map +1 -0
- package/dist/src/utils/gitUtils.test.d.ts +6 -0
- package/dist/src/utils/gitUtils.test.js +113 -0
- package/dist/src/utils/gitUtils.test.js.map +1 -0
- package/dist/src/utils/handleAutoUpdate.d.ts +11 -0
- package/dist/src/utils/handleAutoUpdate.js +102 -0
- package/dist/src/utils/handleAutoUpdate.js.map +1 -0
- package/dist/src/utils/installationInfo.d.ts +23 -0
- package/dist/src/utils/installationInfo.js +153 -0
- package/dist/src/utils/installationInfo.js.map +1 -0
- package/dist/src/utils/installationInfo.test.d.ts +6 -0
- package/dist/src/utils/installationInfo.test.js +242 -0
- package/dist/src/utils/installationInfo.test.js.map +1 -0
- package/dist/src/utils/math.d.ts +13 -0
- package/dist/src/utils/math.js +14 -0
- package/dist/src/utils/math.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.d.ts +88 -0
- package/dist/src/utils/nonInteractiveHelpers.js +470 -0
- package/dist/src/utils/nonInteractiveHelpers.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.test.d.ts +6 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js +945 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -0
- package/dist/src/utils/package.d.ts +12 -0
- package/dist/src/utils/package.js +24 -0
- package/dist/src/utils/package.js.map +1 -0
- package/dist/src/utils/processUtils.d.ts +13 -0
- package/dist/src/utils/processUtils.js +18 -0
- package/dist/src/utils/processUtils.js.map +1 -0
- package/dist/src/utils/processUtils.test.d.ts +6 -0
- package/dist/src/utils/processUtils.test.js +20 -0
- package/dist/src/utils/processUtils.test.js.map +1 -0
- package/dist/src/utils/readStdin.d.ts +6 -0
- package/dist/src/utils/readStdin.js +59 -0
- package/dist/src/utils/readStdin.js.map +1 -0
- 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/relaunch.d.ts +7 -0
- package/dist/src/utils/relaunch.js +57 -0
- package/dist/src/utils/relaunch.js.map +1 -0
- package/dist/src/utils/relaunch.test.d.ts +6 -0
- package/dist/src/utils/relaunch.test.js +273 -0
- package/dist/src/utils/relaunch.test.js.map +1 -0
- package/dist/src/utils/resolvePath.d.ts +6 -0
- package/dist/src/utils/resolvePath.js +21 -0
- package/dist/src/utils/resolvePath.js.map +1 -0
- package/dist/src/utils/sandbox-macos-permissive-closed.sb +32 -0
- package/dist/src/utils/sandbox-macos-permissive-open.sb +25 -0
- package/dist/src/utils/sandbox-macos-permissive-proxied.sb +37 -0
- package/dist/src/utils/sandbox-macos-restrictive-closed.sb +93 -0
- package/dist/src/utils/sandbox-macos-restrictive-open.sb +96 -0
- package/dist/src/utils/sandbox-macos-restrictive-proxied.sb +98 -0
- package/dist/src/utils/sandbox.d.ts +7 -0
- package/dist/src/utils/sandbox.js +763 -0
- package/dist/src/utils/sandbox.js.map +1 -0
- package/dist/src/utils/settingsUtils.d.ts +144 -0
- package/dist/src/utils/settingsUtils.js +346 -0
- package/dist/src/utils/settingsUtils.js.map +1 -0
- package/dist/src/utils/settingsUtils.test.d.ts +6 -0
- package/dist/src/utils/settingsUtils.test.js +808 -0
- package/dist/src/utils/settingsUtils.test.js.map +1 -0
- package/dist/src/utils/spawnWrapper.d.ts +7 -0
- package/dist/src/utils/spawnWrapper.js +8 -0
- package/dist/src/utils/spawnWrapper.js.map +1 -0
- package/dist/src/utils/startupWarnings.d.ts +6 -0
- package/dist/src/utils/startupWarnings.js +40 -0
- package/dist/src/utils/startupWarnings.js.map +1 -0
- package/dist/src/utils/systemInfo.d.ts +66 -0
- package/dist/src/utils/systemInfo.js +125 -0
- package/dist/src/utils/systemInfo.js.map +1 -0
- package/dist/src/utils/systemInfo.test.d.ts +6 -0
- package/dist/src/utils/systemInfo.test.js +259 -0
- package/dist/src/utils/systemInfo.test.js.map +1 -0
- package/dist/src/utils/systemInfoFields.d.ts +22 -0
- package/dist/src/utils/systemInfoFields.js +96 -0
- package/dist/src/utils/systemInfoFields.js.map +1 -0
- package/dist/src/utils/updateEventEmitter.d.ts +11 -0
- package/dist/src/utils/updateEventEmitter.js +12 -0
- package/dist/src/utils/updateEventEmitter.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.d.ts +12 -0
- package/dist/src/utils/userStartupWarnings.js +74 -0
- package/dist/src/utils/userStartupWarnings.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
- package/dist/src/utils/userStartupWarnings.test.js +88 -0
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
- package/dist/src/utils/version.d.ts +6 -0
- package/dist/src/utils/version.js +11 -0
- package/dist/src/utils/version.js.map +1 -0
- package/dist/src/utils/windowTitle.d.ts +12 -0
- package/dist/src/utils/windowTitle.js +19 -0
- package/dist/src/utils/windowTitle.js.map +1 -0
- package/dist/src/utils/windowTitle.test.d.ts +6 -0
- package/dist/src/utils/windowTitle.test.js +49 -0
- package/dist/src/utils/windowTitle.test.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.d.ts +9 -0
- package/dist/src/validateNonInterActiveAuth.js +73 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -0
- package/dist/src/zed-integration/acp.d.ts +63 -0
- package/dist/src/zed-integration/acp.js +225 -0
- package/dist/src/zed-integration/acp.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.d.ts +20 -0
- package/dist/src/zed-integration/fileSystemService.js +46 -0
- package/dist/src/zed-integration/fileSystemService.js.map +1 -0
- package/dist/src/zed-integration/schema.d.ts +12024 -0
- package/dist/src/zed-integration/schema.js +324 -0
- package/dist/src/zed-integration/schema.js.map +1 -0
- package/dist/src/zed-integration/zedIntegration.d.ts +17 -0
- package/dist/src/zed-integration/zedIntegration.js +1135 -0
- package/dist/src/zed-integration/zedIntegration.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,1174 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
import type { MCPServerConfig, BugCommandSettings, TelemetrySettings, AuthType, ChatCompressionSettings } from '@hibanacloud/core';
|
|
7
|
+
import { ApprovalMode } from '@hibanacloud/core';
|
|
8
|
+
import type { CustomTheme } from '../ui/themes/theme.js';
|
|
9
|
+
export type SettingsType = 'boolean' | 'string' | 'number' | 'array' | 'object' | 'enum';
|
|
10
|
+
export type SettingsValue = boolean | string | number | string[] | object | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* Setting datatypes that "toggle" through a fixed list of options
|
|
13
|
+
* (e.g. an enum or true/false) rather than allowing for free form input
|
|
14
|
+
* (like a number or string).
|
|
15
|
+
*/
|
|
16
|
+
export declare const TOGGLE_TYPES: ReadonlySet<SettingsType | undefined>;
|
|
17
|
+
export interface SettingEnumOption {
|
|
18
|
+
value: string | number;
|
|
19
|
+
label: string;
|
|
20
|
+
}
|
|
21
|
+
export declare enum MergeStrategy {
|
|
22
|
+
REPLACE = "replace",
|
|
23
|
+
CONCAT = "concat",
|
|
24
|
+
UNION = "union",
|
|
25
|
+
SHALLOW_MERGE = "shallow_merge"
|
|
26
|
+
}
|
|
27
|
+
export interface SettingDefinition {
|
|
28
|
+
type: SettingsType;
|
|
29
|
+
label: string;
|
|
30
|
+
category: string;
|
|
31
|
+
requiresRestart: boolean;
|
|
32
|
+
default: SettingsValue;
|
|
33
|
+
description?: string;
|
|
34
|
+
parentKey?: string;
|
|
35
|
+
childKey?: string;
|
|
36
|
+
key?: string;
|
|
37
|
+
properties?: SettingsSchema;
|
|
38
|
+
showInDialog?: boolean;
|
|
39
|
+
mergeStrategy?: MergeStrategy;
|
|
40
|
+
/** Enum type options */
|
|
41
|
+
options?: readonly SettingEnumOption[];
|
|
42
|
+
}
|
|
43
|
+
export interface SettingsSchema {
|
|
44
|
+
[key: string]: SettingDefinition;
|
|
45
|
+
}
|
|
46
|
+
export type MemoryImportFormat = 'tree' | 'flat';
|
|
47
|
+
export type DnsResolutionOrder = 'ipv4first' | 'verbatim';
|
|
48
|
+
/**
|
|
49
|
+
* The canonical schema for all settings.
|
|
50
|
+
* The structure of this object defines the structure of the `Settings` type.
|
|
51
|
+
* `as const` is crucial for TypeScript to infer the most specific types possible.
|
|
52
|
+
*/
|
|
53
|
+
declare const SETTINGS_SCHEMA: {
|
|
54
|
+
readonly mcpServers: {
|
|
55
|
+
readonly type: "object";
|
|
56
|
+
readonly label: "MCP Servers";
|
|
57
|
+
readonly category: "Advanced";
|
|
58
|
+
readonly requiresRestart: true;
|
|
59
|
+
readonly default: Record<string, MCPServerConfig>;
|
|
60
|
+
readonly description: "Configuration for MCP servers.";
|
|
61
|
+
readonly showInDialog: false;
|
|
62
|
+
readonly mergeStrategy: MergeStrategy.SHALLOW_MERGE;
|
|
63
|
+
};
|
|
64
|
+
readonly general: {
|
|
65
|
+
readonly type: "object";
|
|
66
|
+
readonly label: "General";
|
|
67
|
+
readonly category: "General";
|
|
68
|
+
readonly requiresRestart: false;
|
|
69
|
+
readonly default: {};
|
|
70
|
+
readonly description: "General application settings.";
|
|
71
|
+
readonly showInDialog: false;
|
|
72
|
+
readonly properties: {
|
|
73
|
+
readonly preferredEditor: {
|
|
74
|
+
readonly type: "string";
|
|
75
|
+
readonly label: "Preferred Editor";
|
|
76
|
+
readonly category: "General";
|
|
77
|
+
readonly requiresRestart: false;
|
|
78
|
+
readonly default: string | undefined;
|
|
79
|
+
readonly description: "The preferred editor to open files in.";
|
|
80
|
+
readonly showInDialog: false;
|
|
81
|
+
};
|
|
82
|
+
readonly vimMode: {
|
|
83
|
+
readonly type: "boolean";
|
|
84
|
+
readonly label: "Vim Mode";
|
|
85
|
+
readonly category: "General";
|
|
86
|
+
readonly requiresRestart: false;
|
|
87
|
+
readonly default: false;
|
|
88
|
+
readonly description: "Enable Vim keybindings";
|
|
89
|
+
readonly showInDialog: true;
|
|
90
|
+
};
|
|
91
|
+
readonly disableAutoUpdate: {
|
|
92
|
+
readonly type: "boolean";
|
|
93
|
+
readonly label: "Disable Auto Update";
|
|
94
|
+
readonly category: "General";
|
|
95
|
+
readonly requiresRestart: false;
|
|
96
|
+
readonly default: false;
|
|
97
|
+
readonly description: "Disable automatic updates";
|
|
98
|
+
readonly showInDialog: true;
|
|
99
|
+
};
|
|
100
|
+
readonly disableUpdateNag: {
|
|
101
|
+
readonly type: "boolean";
|
|
102
|
+
readonly label: "Disable Update Nag";
|
|
103
|
+
readonly category: "General";
|
|
104
|
+
readonly requiresRestart: false;
|
|
105
|
+
readonly default: false;
|
|
106
|
+
readonly description: "Disable update notification prompts.";
|
|
107
|
+
readonly showInDialog: false;
|
|
108
|
+
};
|
|
109
|
+
readonly checkpointing: {
|
|
110
|
+
readonly type: "object";
|
|
111
|
+
readonly label: "Checkpointing";
|
|
112
|
+
readonly category: "General";
|
|
113
|
+
readonly requiresRestart: true;
|
|
114
|
+
readonly default: {};
|
|
115
|
+
readonly description: "Session checkpointing settings.";
|
|
116
|
+
readonly showInDialog: false;
|
|
117
|
+
readonly properties: {
|
|
118
|
+
readonly enabled: {
|
|
119
|
+
readonly type: "boolean";
|
|
120
|
+
readonly label: "Enable Checkpointing";
|
|
121
|
+
readonly category: "General";
|
|
122
|
+
readonly requiresRestart: true;
|
|
123
|
+
readonly default: false;
|
|
124
|
+
readonly description: "Enable session checkpointing for recovery";
|
|
125
|
+
readonly showInDialog: false;
|
|
126
|
+
};
|
|
127
|
+
};
|
|
128
|
+
};
|
|
129
|
+
readonly debugKeystrokeLogging: {
|
|
130
|
+
readonly type: "boolean";
|
|
131
|
+
readonly label: "Debug Keystroke Logging";
|
|
132
|
+
readonly category: "General";
|
|
133
|
+
readonly requiresRestart: false;
|
|
134
|
+
readonly default: false;
|
|
135
|
+
readonly description: "Enable debug logging of keystrokes to the console.";
|
|
136
|
+
readonly showInDialog: true;
|
|
137
|
+
};
|
|
138
|
+
readonly language: {
|
|
139
|
+
readonly type: "enum";
|
|
140
|
+
readonly label: "Language";
|
|
141
|
+
readonly category: "General";
|
|
142
|
+
readonly requiresRestart: false;
|
|
143
|
+
readonly default: "auto";
|
|
144
|
+
readonly description: string;
|
|
145
|
+
readonly showInDialog: true;
|
|
146
|
+
readonly options: readonly [{
|
|
147
|
+
readonly value: "auto";
|
|
148
|
+
readonly label: "Auto (detect from system)";
|
|
149
|
+
}, {
|
|
150
|
+
readonly value: "en";
|
|
151
|
+
readonly label: "English";
|
|
152
|
+
}, {
|
|
153
|
+
readonly value: "zh";
|
|
154
|
+
readonly label: "中文 (Chinese)";
|
|
155
|
+
}];
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
readonly output: {
|
|
160
|
+
readonly type: "object";
|
|
161
|
+
readonly label: "Output";
|
|
162
|
+
readonly category: "General";
|
|
163
|
+
readonly requiresRestart: false;
|
|
164
|
+
readonly default: {};
|
|
165
|
+
readonly description: "Settings for the CLI output.";
|
|
166
|
+
readonly showInDialog: false;
|
|
167
|
+
readonly properties: {
|
|
168
|
+
readonly format: {
|
|
169
|
+
readonly type: "enum";
|
|
170
|
+
readonly label: "Output Format";
|
|
171
|
+
readonly category: "General";
|
|
172
|
+
readonly requiresRestart: false;
|
|
173
|
+
readonly default: "text";
|
|
174
|
+
readonly description: "The format of the CLI output.";
|
|
175
|
+
readonly showInDialog: true;
|
|
176
|
+
readonly options: readonly [{
|
|
177
|
+
readonly value: "text";
|
|
178
|
+
readonly label: "Text";
|
|
179
|
+
}, {
|
|
180
|
+
readonly value: "json";
|
|
181
|
+
readonly label: "JSON";
|
|
182
|
+
}];
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
readonly ui: {
|
|
187
|
+
readonly type: "object";
|
|
188
|
+
readonly label: "UI";
|
|
189
|
+
readonly category: "UI";
|
|
190
|
+
readonly requiresRestart: false;
|
|
191
|
+
readonly default: {};
|
|
192
|
+
readonly description: "User interface settings.";
|
|
193
|
+
readonly showInDialog: false;
|
|
194
|
+
readonly properties: {
|
|
195
|
+
readonly theme: {
|
|
196
|
+
readonly type: "string";
|
|
197
|
+
readonly label: "Theme";
|
|
198
|
+
readonly category: "UI";
|
|
199
|
+
readonly requiresRestart: false;
|
|
200
|
+
readonly default: string | undefined;
|
|
201
|
+
readonly description: "The color theme for the UI.";
|
|
202
|
+
readonly showInDialog: false;
|
|
203
|
+
};
|
|
204
|
+
readonly customThemes: {
|
|
205
|
+
readonly type: "object";
|
|
206
|
+
readonly label: "Custom Themes";
|
|
207
|
+
readonly category: "UI";
|
|
208
|
+
readonly requiresRestart: false;
|
|
209
|
+
readonly default: Record<string, CustomTheme>;
|
|
210
|
+
readonly description: "Custom theme definitions.";
|
|
211
|
+
readonly showInDialog: false;
|
|
212
|
+
};
|
|
213
|
+
readonly hideWindowTitle: {
|
|
214
|
+
readonly type: "boolean";
|
|
215
|
+
readonly label: "Hide Window Title";
|
|
216
|
+
readonly category: "UI";
|
|
217
|
+
readonly requiresRestart: true;
|
|
218
|
+
readonly default: false;
|
|
219
|
+
readonly description: "Hide the window title bar";
|
|
220
|
+
readonly showInDialog: true;
|
|
221
|
+
};
|
|
222
|
+
readonly showStatusInTitle: {
|
|
223
|
+
readonly type: "boolean";
|
|
224
|
+
readonly label: "Show Status in Title";
|
|
225
|
+
readonly category: "UI";
|
|
226
|
+
readonly requiresRestart: false;
|
|
227
|
+
readonly default: false;
|
|
228
|
+
readonly description: "Show Gemini CLI status and thoughts in the terminal window title";
|
|
229
|
+
readonly showInDialog: true;
|
|
230
|
+
};
|
|
231
|
+
readonly hideTips: {
|
|
232
|
+
readonly type: "boolean";
|
|
233
|
+
readonly label: "Hide Tips";
|
|
234
|
+
readonly category: "UI";
|
|
235
|
+
readonly requiresRestart: false;
|
|
236
|
+
readonly default: false;
|
|
237
|
+
readonly description: "Hide helpful tips in the UI";
|
|
238
|
+
readonly showInDialog: true;
|
|
239
|
+
};
|
|
240
|
+
readonly hideBanner: {
|
|
241
|
+
readonly type: "boolean";
|
|
242
|
+
readonly label: "Hide Banner";
|
|
243
|
+
readonly category: "UI";
|
|
244
|
+
readonly requiresRestart: false;
|
|
245
|
+
readonly default: false;
|
|
246
|
+
readonly description: "Hide the application banner";
|
|
247
|
+
readonly showInDialog: true;
|
|
248
|
+
};
|
|
249
|
+
readonly hideContextSummary: {
|
|
250
|
+
readonly type: "boolean";
|
|
251
|
+
readonly label: "Hide Context Summary";
|
|
252
|
+
readonly category: "UI";
|
|
253
|
+
readonly requiresRestart: false;
|
|
254
|
+
readonly default: false;
|
|
255
|
+
readonly description: "Hide the context summary (GEMINI.md, MCP servers) above the input.";
|
|
256
|
+
readonly showInDialog: true;
|
|
257
|
+
};
|
|
258
|
+
readonly footer: {
|
|
259
|
+
readonly type: "object";
|
|
260
|
+
readonly label: "Footer";
|
|
261
|
+
readonly category: "UI";
|
|
262
|
+
readonly requiresRestart: false;
|
|
263
|
+
readonly default: {};
|
|
264
|
+
readonly description: "Settings for the footer.";
|
|
265
|
+
readonly showInDialog: false;
|
|
266
|
+
readonly properties: {
|
|
267
|
+
readonly hideCWD: {
|
|
268
|
+
readonly type: "boolean";
|
|
269
|
+
readonly label: "Hide CWD";
|
|
270
|
+
readonly category: "UI";
|
|
271
|
+
readonly requiresRestart: false;
|
|
272
|
+
readonly default: false;
|
|
273
|
+
readonly description: "Hide the current working directory path in the footer.";
|
|
274
|
+
readonly showInDialog: true;
|
|
275
|
+
};
|
|
276
|
+
readonly hideSandboxStatus: {
|
|
277
|
+
readonly type: "boolean";
|
|
278
|
+
readonly label: "Hide Sandbox Status";
|
|
279
|
+
readonly category: "UI";
|
|
280
|
+
readonly requiresRestart: false;
|
|
281
|
+
readonly default: false;
|
|
282
|
+
readonly description: "Hide the sandbox status indicator in the footer.";
|
|
283
|
+
readonly showInDialog: true;
|
|
284
|
+
};
|
|
285
|
+
readonly hideModelInfo: {
|
|
286
|
+
readonly type: "boolean";
|
|
287
|
+
readonly label: "Hide Model Info";
|
|
288
|
+
readonly category: "UI";
|
|
289
|
+
readonly requiresRestart: false;
|
|
290
|
+
readonly default: false;
|
|
291
|
+
readonly description: "Hide the model name and context usage in the footer.";
|
|
292
|
+
readonly showInDialog: true;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
readonly hideFooter: {
|
|
297
|
+
readonly type: "boolean";
|
|
298
|
+
readonly label: "Hide Footer";
|
|
299
|
+
readonly category: "UI";
|
|
300
|
+
readonly requiresRestart: false;
|
|
301
|
+
readonly default: false;
|
|
302
|
+
readonly description: "Hide the footer from the UI";
|
|
303
|
+
readonly showInDialog: true;
|
|
304
|
+
};
|
|
305
|
+
readonly showMemoryUsage: {
|
|
306
|
+
readonly type: "boolean";
|
|
307
|
+
readonly label: "Show Memory Usage";
|
|
308
|
+
readonly category: "UI";
|
|
309
|
+
readonly requiresRestart: false;
|
|
310
|
+
readonly default: false;
|
|
311
|
+
readonly description: "Display memory usage information in the UI";
|
|
312
|
+
readonly showInDialog: true;
|
|
313
|
+
};
|
|
314
|
+
readonly showLineNumbers: {
|
|
315
|
+
readonly type: "boolean";
|
|
316
|
+
readonly label: "Show Line Numbers";
|
|
317
|
+
readonly category: "UI";
|
|
318
|
+
readonly requiresRestart: false;
|
|
319
|
+
readonly default: false;
|
|
320
|
+
readonly description: "Show line numbers in the chat.";
|
|
321
|
+
readonly showInDialog: true;
|
|
322
|
+
};
|
|
323
|
+
readonly showCitations: {
|
|
324
|
+
readonly type: "boolean";
|
|
325
|
+
readonly label: "Show Citations";
|
|
326
|
+
readonly category: "UI";
|
|
327
|
+
readonly requiresRestart: false;
|
|
328
|
+
readonly default: false;
|
|
329
|
+
readonly description: "Show citations for generated text in the chat.";
|
|
330
|
+
readonly showInDialog: true;
|
|
331
|
+
};
|
|
332
|
+
readonly customWittyPhrases: {
|
|
333
|
+
readonly type: "array";
|
|
334
|
+
readonly label: "Custom Witty Phrases";
|
|
335
|
+
readonly category: "UI";
|
|
336
|
+
readonly requiresRestart: false;
|
|
337
|
+
readonly default: string[];
|
|
338
|
+
readonly description: "Custom witty phrases to display during loading.";
|
|
339
|
+
readonly showInDialog: false;
|
|
340
|
+
};
|
|
341
|
+
readonly enableWelcomeBack: {
|
|
342
|
+
readonly type: "boolean";
|
|
343
|
+
readonly label: "Enable Welcome Back";
|
|
344
|
+
readonly category: "UI";
|
|
345
|
+
readonly requiresRestart: false;
|
|
346
|
+
readonly default: true;
|
|
347
|
+
readonly description: "Show welcome back dialog when returning to a project with conversation history.";
|
|
348
|
+
readonly showInDialog: true;
|
|
349
|
+
};
|
|
350
|
+
readonly accessibility: {
|
|
351
|
+
readonly type: "object";
|
|
352
|
+
readonly label: "Accessibility";
|
|
353
|
+
readonly category: "UI";
|
|
354
|
+
readonly requiresRestart: true;
|
|
355
|
+
readonly default: {};
|
|
356
|
+
readonly description: "Accessibility settings.";
|
|
357
|
+
readonly showInDialog: false;
|
|
358
|
+
readonly properties: {
|
|
359
|
+
readonly disableLoadingPhrases: {
|
|
360
|
+
readonly type: "boolean";
|
|
361
|
+
readonly label: "Disable Loading Phrases";
|
|
362
|
+
readonly category: "UI";
|
|
363
|
+
readonly requiresRestart: true;
|
|
364
|
+
readonly default: false;
|
|
365
|
+
readonly description: "Disable loading phrases for accessibility";
|
|
366
|
+
readonly showInDialog: true;
|
|
367
|
+
};
|
|
368
|
+
readonly screenReader: {
|
|
369
|
+
readonly type: "boolean";
|
|
370
|
+
readonly label: "Screen Reader Mode";
|
|
371
|
+
readonly category: "UI";
|
|
372
|
+
readonly requiresRestart: true;
|
|
373
|
+
readonly default: boolean | undefined;
|
|
374
|
+
readonly description: "Render output in plain-text to be more screen reader accessible";
|
|
375
|
+
readonly showInDialog: true;
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
readonly ide: {
|
|
382
|
+
readonly type: "object";
|
|
383
|
+
readonly label: "IDE";
|
|
384
|
+
readonly category: "IDE";
|
|
385
|
+
readonly requiresRestart: true;
|
|
386
|
+
readonly default: {};
|
|
387
|
+
readonly description: "IDE integration settings.";
|
|
388
|
+
readonly showInDialog: false;
|
|
389
|
+
readonly properties: {
|
|
390
|
+
readonly enabled: {
|
|
391
|
+
readonly type: "boolean";
|
|
392
|
+
readonly label: "IDE Mode";
|
|
393
|
+
readonly category: "IDE";
|
|
394
|
+
readonly requiresRestart: true;
|
|
395
|
+
readonly default: false;
|
|
396
|
+
readonly description: "Enable IDE integration mode";
|
|
397
|
+
readonly showInDialog: true;
|
|
398
|
+
};
|
|
399
|
+
readonly hasSeenNudge: {
|
|
400
|
+
readonly type: "boolean";
|
|
401
|
+
readonly label: "Has Seen IDE Integration Nudge";
|
|
402
|
+
readonly category: "IDE";
|
|
403
|
+
readonly requiresRestart: false;
|
|
404
|
+
readonly default: false;
|
|
405
|
+
readonly description: "Whether the user has seen the IDE integration nudge.";
|
|
406
|
+
readonly showInDialog: false;
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
};
|
|
410
|
+
readonly privacy: {
|
|
411
|
+
readonly type: "object";
|
|
412
|
+
readonly label: "Privacy";
|
|
413
|
+
readonly category: "Privacy";
|
|
414
|
+
readonly requiresRestart: true;
|
|
415
|
+
readonly default: {};
|
|
416
|
+
readonly description: "Privacy-related settings.";
|
|
417
|
+
readonly showInDialog: false;
|
|
418
|
+
readonly properties: {
|
|
419
|
+
readonly usageStatisticsEnabled: {
|
|
420
|
+
readonly type: "boolean";
|
|
421
|
+
readonly label: "Enable Usage Statistics";
|
|
422
|
+
readonly category: "Privacy";
|
|
423
|
+
readonly requiresRestart: true;
|
|
424
|
+
readonly default: true;
|
|
425
|
+
readonly description: "Enable collection of usage statistics";
|
|
426
|
+
readonly showInDialog: false;
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
readonly telemetry: {
|
|
431
|
+
readonly type: "object";
|
|
432
|
+
readonly label: "Telemetry";
|
|
433
|
+
readonly category: "Advanced";
|
|
434
|
+
readonly requiresRestart: true;
|
|
435
|
+
readonly default: TelemetrySettings | undefined;
|
|
436
|
+
readonly description: "Telemetry configuration.";
|
|
437
|
+
readonly showInDialog: false;
|
|
438
|
+
};
|
|
439
|
+
readonly model: {
|
|
440
|
+
readonly type: "object";
|
|
441
|
+
readonly label: "Model";
|
|
442
|
+
readonly category: "Model";
|
|
443
|
+
readonly requiresRestart: false;
|
|
444
|
+
readonly default: {};
|
|
445
|
+
readonly description: "Settings related to the generative model.";
|
|
446
|
+
readonly showInDialog: false;
|
|
447
|
+
readonly properties: {
|
|
448
|
+
readonly name: {
|
|
449
|
+
readonly type: "string";
|
|
450
|
+
readonly label: "Model";
|
|
451
|
+
readonly category: "Model";
|
|
452
|
+
readonly requiresRestart: false;
|
|
453
|
+
readonly default: string | undefined;
|
|
454
|
+
readonly description: "The Gemini model to use for conversations.";
|
|
455
|
+
readonly showInDialog: false;
|
|
456
|
+
};
|
|
457
|
+
readonly maxSessionTurns: {
|
|
458
|
+
readonly type: "number";
|
|
459
|
+
readonly label: "Max Session Turns";
|
|
460
|
+
readonly category: "Model";
|
|
461
|
+
readonly requiresRestart: false;
|
|
462
|
+
readonly default: -1;
|
|
463
|
+
readonly description: "Maximum number of user/model/tool turns to keep in a session. -1 means unlimited.";
|
|
464
|
+
readonly showInDialog: true;
|
|
465
|
+
};
|
|
466
|
+
readonly summarizeToolOutput: {
|
|
467
|
+
readonly type: "object";
|
|
468
|
+
readonly label: "Summarize Tool Output";
|
|
469
|
+
readonly category: "Model";
|
|
470
|
+
readonly requiresRestart: false;
|
|
471
|
+
readonly default: Record<string, {
|
|
472
|
+
tokenBudget?: number;
|
|
473
|
+
}> | undefined;
|
|
474
|
+
readonly description: "Settings for summarizing tool output.";
|
|
475
|
+
readonly showInDialog: false;
|
|
476
|
+
};
|
|
477
|
+
readonly chatCompression: {
|
|
478
|
+
readonly type: "object";
|
|
479
|
+
readonly label: "Chat Compression";
|
|
480
|
+
readonly category: "Model";
|
|
481
|
+
readonly requiresRestart: false;
|
|
482
|
+
readonly default: ChatCompressionSettings | undefined;
|
|
483
|
+
readonly description: "Chat compression settings.";
|
|
484
|
+
readonly showInDialog: false;
|
|
485
|
+
};
|
|
486
|
+
readonly sessionTokenLimit: {
|
|
487
|
+
readonly type: "number";
|
|
488
|
+
readonly label: "Session Token Limit";
|
|
489
|
+
readonly category: "Model";
|
|
490
|
+
readonly requiresRestart: false;
|
|
491
|
+
readonly default: number | undefined;
|
|
492
|
+
readonly description: "The maximum number of tokens allowed in a session.";
|
|
493
|
+
readonly showInDialog: false;
|
|
494
|
+
};
|
|
495
|
+
readonly skipNextSpeakerCheck: {
|
|
496
|
+
readonly type: "boolean";
|
|
497
|
+
readonly label: "Skip Next Speaker Check";
|
|
498
|
+
readonly category: "Model";
|
|
499
|
+
readonly requiresRestart: false;
|
|
500
|
+
readonly default: true;
|
|
501
|
+
readonly description: "Skip the next speaker check.";
|
|
502
|
+
readonly showInDialog: true;
|
|
503
|
+
};
|
|
504
|
+
readonly skipLoopDetection: {
|
|
505
|
+
readonly type: "boolean";
|
|
506
|
+
readonly label: "Skip Loop Detection";
|
|
507
|
+
readonly category: "Model";
|
|
508
|
+
readonly requiresRestart: false;
|
|
509
|
+
readonly default: false;
|
|
510
|
+
readonly description: "Disable all loop detection checks (streaming and LLM).";
|
|
511
|
+
readonly showInDialog: true;
|
|
512
|
+
};
|
|
513
|
+
readonly skipStartupContext: {
|
|
514
|
+
readonly type: "boolean";
|
|
515
|
+
readonly label: "Skip Startup Context";
|
|
516
|
+
readonly category: "Model";
|
|
517
|
+
readonly requiresRestart: true;
|
|
518
|
+
readonly default: false;
|
|
519
|
+
readonly description: "Avoid sending the workspace startup context at the beginning of each session.";
|
|
520
|
+
readonly showInDialog: true;
|
|
521
|
+
};
|
|
522
|
+
readonly enableOpenAILogging: {
|
|
523
|
+
readonly type: "boolean";
|
|
524
|
+
readonly label: "Enable OpenAI Logging";
|
|
525
|
+
readonly category: "Model";
|
|
526
|
+
readonly requiresRestart: false;
|
|
527
|
+
readonly default: false;
|
|
528
|
+
readonly description: "Enable OpenAI logging.";
|
|
529
|
+
readonly showInDialog: true;
|
|
530
|
+
};
|
|
531
|
+
readonly openAILoggingDir: {
|
|
532
|
+
readonly type: "string";
|
|
533
|
+
readonly label: "OpenAI Logging Directory";
|
|
534
|
+
readonly category: "Model";
|
|
535
|
+
readonly requiresRestart: false;
|
|
536
|
+
readonly default: string | undefined;
|
|
537
|
+
readonly description: "Custom directory path for OpenAI API logs. If not specified, defaults to logs/openai in the current working directory.";
|
|
538
|
+
readonly showInDialog: true;
|
|
539
|
+
};
|
|
540
|
+
readonly generationConfig: {
|
|
541
|
+
readonly type: "object";
|
|
542
|
+
readonly label: "Generation Configuration";
|
|
543
|
+
readonly category: "Model";
|
|
544
|
+
readonly requiresRestart: false;
|
|
545
|
+
readonly default: Record<string, unknown> | undefined;
|
|
546
|
+
readonly description: "Generation configuration settings.";
|
|
547
|
+
readonly showInDialog: false;
|
|
548
|
+
readonly properties: {
|
|
549
|
+
readonly timeout: {
|
|
550
|
+
readonly type: "number";
|
|
551
|
+
readonly label: "Timeout";
|
|
552
|
+
readonly category: "Generation Configuration";
|
|
553
|
+
readonly requiresRestart: false;
|
|
554
|
+
readonly default: number | undefined;
|
|
555
|
+
readonly description: "Request timeout in milliseconds.";
|
|
556
|
+
readonly parentKey: "generationConfig";
|
|
557
|
+
readonly childKey: "timeout";
|
|
558
|
+
readonly showInDialog: true;
|
|
559
|
+
};
|
|
560
|
+
readonly maxRetries: {
|
|
561
|
+
readonly type: "number";
|
|
562
|
+
readonly label: "Max Retries";
|
|
563
|
+
readonly category: "Generation Configuration";
|
|
564
|
+
readonly requiresRestart: false;
|
|
565
|
+
readonly default: number | undefined;
|
|
566
|
+
readonly description: "Maximum number of retries for failed requests.";
|
|
567
|
+
readonly parentKey: "generationConfig";
|
|
568
|
+
readonly childKey: "maxRetries";
|
|
569
|
+
readonly showInDialog: true;
|
|
570
|
+
};
|
|
571
|
+
readonly disableCacheControl: {
|
|
572
|
+
readonly type: "boolean";
|
|
573
|
+
readonly label: "Disable Cache Control";
|
|
574
|
+
readonly category: "Generation Configuration";
|
|
575
|
+
readonly requiresRestart: false;
|
|
576
|
+
readonly default: false;
|
|
577
|
+
readonly description: "Disable cache control for DashScope providers.";
|
|
578
|
+
readonly parentKey: "generationConfig";
|
|
579
|
+
readonly childKey: "disableCacheControl";
|
|
580
|
+
readonly showInDialog: true;
|
|
581
|
+
};
|
|
582
|
+
};
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
};
|
|
586
|
+
readonly context: {
|
|
587
|
+
readonly type: "object";
|
|
588
|
+
readonly label: "Context";
|
|
589
|
+
readonly category: "Context";
|
|
590
|
+
readonly requiresRestart: false;
|
|
591
|
+
readonly default: {};
|
|
592
|
+
readonly description: "Settings for managing context provided to the model.";
|
|
593
|
+
readonly showInDialog: false;
|
|
594
|
+
readonly properties: {
|
|
595
|
+
readonly fileName: {
|
|
596
|
+
readonly type: "object";
|
|
597
|
+
readonly label: "Context File Name";
|
|
598
|
+
readonly category: "Context";
|
|
599
|
+
readonly requiresRestart: false;
|
|
600
|
+
readonly default: string | string[] | undefined;
|
|
601
|
+
readonly description: "The name of the context file.";
|
|
602
|
+
readonly showInDialog: false;
|
|
603
|
+
};
|
|
604
|
+
readonly importFormat: {
|
|
605
|
+
readonly type: "string";
|
|
606
|
+
readonly label: "Memory Import Format";
|
|
607
|
+
readonly category: "Context";
|
|
608
|
+
readonly requiresRestart: false;
|
|
609
|
+
readonly default: MemoryImportFormat | undefined;
|
|
610
|
+
readonly description: "The format to use when importing memory.";
|
|
611
|
+
readonly showInDialog: false;
|
|
612
|
+
};
|
|
613
|
+
readonly discoveryMaxDirs: {
|
|
614
|
+
readonly type: "number";
|
|
615
|
+
readonly label: "Memory Discovery Max Dirs";
|
|
616
|
+
readonly category: "Context";
|
|
617
|
+
readonly requiresRestart: false;
|
|
618
|
+
readonly default: 200;
|
|
619
|
+
readonly description: "Maximum number of directories to search for memory.";
|
|
620
|
+
readonly showInDialog: true;
|
|
621
|
+
};
|
|
622
|
+
readonly includeDirectories: {
|
|
623
|
+
readonly type: "array";
|
|
624
|
+
readonly label: "Include Directories";
|
|
625
|
+
readonly category: "Context";
|
|
626
|
+
readonly requiresRestart: false;
|
|
627
|
+
readonly default: string[];
|
|
628
|
+
readonly description: "Additional directories to include in the workspace context. Missing directories will be skipped with a warning.";
|
|
629
|
+
readonly showInDialog: false;
|
|
630
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
631
|
+
};
|
|
632
|
+
readonly loadMemoryFromIncludeDirectories: {
|
|
633
|
+
readonly type: "boolean";
|
|
634
|
+
readonly label: "Load Memory From Include Directories";
|
|
635
|
+
readonly category: "Context";
|
|
636
|
+
readonly requiresRestart: false;
|
|
637
|
+
readonly default: false;
|
|
638
|
+
readonly description: "Whether to load memory files from include directories.";
|
|
639
|
+
readonly showInDialog: true;
|
|
640
|
+
};
|
|
641
|
+
readonly fileFiltering: {
|
|
642
|
+
readonly type: "object";
|
|
643
|
+
readonly label: "File Filtering";
|
|
644
|
+
readonly category: "Context";
|
|
645
|
+
readonly requiresRestart: true;
|
|
646
|
+
readonly default: {};
|
|
647
|
+
readonly description: "Settings for git-aware file filtering.";
|
|
648
|
+
readonly showInDialog: false;
|
|
649
|
+
readonly properties: {
|
|
650
|
+
readonly respectGitIgnore: {
|
|
651
|
+
readonly type: "boolean";
|
|
652
|
+
readonly label: "Respect .gitignore";
|
|
653
|
+
readonly category: "Context";
|
|
654
|
+
readonly requiresRestart: true;
|
|
655
|
+
readonly default: true;
|
|
656
|
+
readonly description: "Respect .gitignore files when searching";
|
|
657
|
+
readonly showInDialog: true;
|
|
658
|
+
};
|
|
659
|
+
readonly respectHibanaIgnore: {
|
|
660
|
+
readonly type: "boolean";
|
|
661
|
+
readonly label: "Respect .hibanaignore";
|
|
662
|
+
readonly category: "Context";
|
|
663
|
+
readonly requiresRestart: true;
|
|
664
|
+
readonly default: true;
|
|
665
|
+
readonly description: "Respect .hibanaignore files when searching";
|
|
666
|
+
readonly showInDialog: true;
|
|
667
|
+
};
|
|
668
|
+
readonly enableRecursiveFileSearch: {
|
|
669
|
+
readonly type: "boolean";
|
|
670
|
+
readonly label: "Enable Recursive File Search";
|
|
671
|
+
readonly category: "Context";
|
|
672
|
+
readonly requiresRestart: true;
|
|
673
|
+
readonly default: true;
|
|
674
|
+
readonly description: "Enable recursive file search functionality";
|
|
675
|
+
readonly showInDialog: true;
|
|
676
|
+
};
|
|
677
|
+
readonly disableFuzzySearch: {
|
|
678
|
+
readonly type: "boolean";
|
|
679
|
+
readonly label: "Disable Fuzzy Search";
|
|
680
|
+
readonly category: "Context";
|
|
681
|
+
readonly requiresRestart: true;
|
|
682
|
+
readonly default: false;
|
|
683
|
+
readonly description: "Disable fuzzy search when searching for files.";
|
|
684
|
+
readonly showInDialog: true;
|
|
685
|
+
};
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
};
|
|
690
|
+
readonly tools: {
|
|
691
|
+
readonly type: "object";
|
|
692
|
+
readonly label: "Tools";
|
|
693
|
+
readonly category: "Tools";
|
|
694
|
+
readonly requiresRestart: true;
|
|
695
|
+
readonly default: {};
|
|
696
|
+
readonly description: "Settings for built-in and custom tools.";
|
|
697
|
+
readonly showInDialog: false;
|
|
698
|
+
readonly properties: {
|
|
699
|
+
readonly sandbox: {
|
|
700
|
+
readonly type: "object";
|
|
701
|
+
readonly label: "Sandbox";
|
|
702
|
+
readonly category: "Tools";
|
|
703
|
+
readonly requiresRestart: true;
|
|
704
|
+
readonly default: boolean | string | undefined;
|
|
705
|
+
readonly description: "Sandbox execution environment (can be a boolean or a path string).";
|
|
706
|
+
readonly showInDialog: false;
|
|
707
|
+
};
|
|
708
|
+
readonly shell: {
|
|
709
|
+
readonly type: "object";
|
|
710
|
+
readonly label: "Shell";
|
|
711
|
+
readonly category: "Tools";
|
|
712
|
+
readonly requiresRestart: false;
|
|
713
|
+
readonly default: {};
|
|
714
|
+
readonly description: "Settings for shell execution.";
|
|
715
|
+
readonly showInDialog: false;
|
|
716
|
+
readonly properties: {
|
|
717
|
+
readonly enableInteractiveShell: {
|
|
718
|
+
readonly type: "boolean";
|
|
719
|
+
readonly label: "Enable Interactive Shell";
|
|
720
|
+
readonly category: "Tools";
|
|
721
|
+
readonly requiresRestart: true;
|
|
722
|
+
readonly default: false;
|
|
723
|
+
readonly description: "Use node-pty for an interactive shell experience. Fallback to child_process still applies.";
|
|
724
|
+
readonly showInDialog: true;
|
|
725
|
+
};
|
|
726
|
+
readonly pager: {
|
|
727
|
+
readonly type: "string";
|
|
728
|
+
readonly label: "Pager";
|
|
729
|
+
readonly category: "Tools";
|
|
730
|
+
readonly requiresRestart: false;
|
|
731
|
+
readonly default: string | undefined;
|
|
732
|
+
readonly description: "The pager command to use for shell output. Defaults to `cat`.";
|
|
733
|
+
readonly showInDialog: false;
|
|
734
|
+
};
|
|
735
|
+
readonly showColor: {
|
|
736
|
+
readonly type: "boolean";
|
|
737
|
+
readonly label: "Show Color";
|
|
738
|
+
readonly category: "Tools";
|
|
739
|
+
readonly requiresRestart: false;
|
|
740
|
+
readonly default: false;
|
|
741
|
+
readonly description: "Show color in shell output.";
|
|
742
|
+
readonly showInDialog: true;
|
|
743
|
+
};
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
readonly autoAccept: {
|
|
747
|
+
readonly type: "boolean";
|
|
748
|
+
readonly label: "Auto Accept";
|
|
749
|
+
readonly category: "Tools";
|
|
750
|
+
readonly requiresRestart: false;
|
|
751
|
+
readonly default: false;
|
|
752
|
+
readonly description: "Automatically accept and execute tool calls that are considered safe (e.g., read-only operations).";
|
|
753
|
+
readonly showInDialog: true;
|
|
754
|
+
};
|
|
755
|
+
readonly core: {
|
|
756
|
+
readonly type: "array";
|
|
757
|
+
readonly label: "Core Tools";
|
|
758
|
+
readonly category: "Tools";
|
|
759
|
+
readonly requiresRestart: true;
|
|
760
|
+
readonly default: string[] | undefined;
|
|
761
|
+
readonly description: "Paths to core tool definitions.";
|
|
762
|
+
readonly showInDialog: false;
|
|
763
|
+
};
|
|
764
|
+
readonly allowed: {
|
|
765
|
+
readonly type: "array";
|
|
766
|
+
readonly label: "Allowed Tools";
|
|
767
|
+
readonly category: "Advanced";
|
|
768
|
+
readonly requiresRestart: true;
|
|
769
|
+
readonly default: string[] | undefined;
|
|
770
|
+
readonly description: "A list of tool names that will bypass the confirmation dialog.";
|
|
771
|
+
readonly showInDialog: false;
|
|
772
|
+
};
|
|
773
|
+
readonly exclude: {
|
|
774
|
+
readonly type: "array";
|
|
775
|
+
readonly label: "Exclude Tools";
|
|
776
|
+
readonly category: "Tools";
|
|
777
|
+
readonly requiresRestart: true;
|
|
778
|
+
readonly default: string[] | undefined;
|
|
779
|
+
readonly description: "Tool names to exclude from discovery.";
|
|
780
|
+
readonly showInDialog: false;
|
|
781
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
782
|
+
};
|
|
783
|
+
readonly approvalMode: {
|
|
784
|
+
readonly type: "enum";
|
|
785
|
+
readonly label: "Approval Mode";
|
|
786
|
+
readonly category: "Tools";
|
|
787
|
+
readonly requiresRestart: false;
|
|
788
|
+
readonly default: ApprovalMode.DEFAULT;
|
|
789
|
+
readonly description: "Approval mode for tool usage. Controls how tools are approved before execution.";
|
|
790
|
+
readonly showInDialog: true;
|
|
791
|
+
readonly options: readonly [{
|
|
792
|
+
readonly value: ApprovalMode.PLAN;
|
|
793
|
+
readonly label: "Plan";
|
|
794
|
+
}, {
|
|
795
|
+
readonly value: ApprovalMode.DEFAULT;
|
|
796
|
+
readonly label: "Default";
|
|
797
|
+
}, {
|
|
798
|
+
readonly value: ApprovalMode.AUTO_EDIT;
|
|
799
|
+
readonly label: "Auto Edit";
|
|
800
|
+
}, {
|
|
801
|
+
readonly value: ApprovalMode.YOLO;
|
|
802
|
+
readonly label: "YOLO";
|
|
803
|
+
}];
|
|
804
|
+
};
|
|
805
|
+
readonly discoveryCommand: {
|
|
806
|
+
readonly type: "string";
|
|
807
|
+
readonly label: "Tool Discovery Command";
|
|
808
|
+
readonly category: "Tools";
|
|
809
|
+
readonly requiresRestart: true;
|
|
810
|
+
readonly default: string | undefined;
|
|
811
|
+
readonly description: "Command to run for tool discovery.";
|
|
812
|
+
readonly showInDialog: false;
|
|
813
|
+
};
|
|
814
|
+
readonly callCommand: {
|
|
815
|
+
readonly type: "string";
|
|
816
|
+
readonly label: "Tool Call Command";
|
|
817
|
+
readonly category: "Tools";
|
|
818
|
+
readonly requiresRestart: true;
|
|
819
|
+
readonly default: string | undefined;
|
|
820
|
+
readonly description: "Command to run for tool calls.";
|
|
821
|
+
readonly showInDialog: false;
|
|
822
|
+
};
|
|
823
|
+
readonly useRipgrep: {
|
|
824
|
+
readonly type: "boolean";
|
|
825
|
+
readonly label: "Use Ripgrep";
|
|
826
|
+
readonly category: "Tools";
|
|
827
|
+
readonly requiresRestart: false;
|
|
828
|
+
readonly default: true;
|
|
829
|
+
readonly description: "Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.";
|
|
830
|
+
readonly showInDialog: true;
|
|
831
|
+
};
|
|
832
|
+
readonly useBuiltinRipgrep: {
|
|
833
|
+
readonly type: "boolean";
|
|
834
|
+
readonly label: "Use Builtin Ripgrep";
|
|
835
|
+
readonly category: "Tools";
|
|
836
|
+
readonly requiresRestart: false;
|
|
837
|
+
readonly default: true;
|
|
838
|
+
readonly description: "Use the bundled ripgrep binary. When set to false, the system-level \"rg\" command will be used instead. This setting is only effective when useRipgrep is true.";
|
|
839
|
+
readonly showInDialog: true;
|
|
840
|
+
};
|
|
841
|
+
readonly enableToolOutputTruncation: {
|
|
842
|
+
readonly type: "boolean";
|
|
843
|
+
readonly label: "Enable Tool Output Truncation";
|
|
844
|
+
readonly category: "General";
|
|
845
|
+
readonly requiresRestart: true;
|
|
846
|
+
readonly default: true;
|
|
847
|
+
readonly description: "Enable truncation of large tool outputs.";
|
|
848
|
+
readonly showInDialog: true;
|
|
849
|
+
};
|
|
850
|
+
readonly truncateToolOutputThreshold: {
|
|
851
|
+
readonly type: "number";
|
|
852
|
+
readonly label: "Tool Output Truncation Threshold";
|
|
853
|
+
readonly category: "General";
|
|
854
|
+
readonly requiresRestart: true;
|
|
855
|
+
readonly default: 25000;
|
|
856
|
+
readonly description: "Truncate tool output if it is larger than this many characters. Set to -1 to disable.";
|
|
857
|
+
readonly showInDialog: true;
|
|
858
|
+
};
|
|
859
|
+
readonly truncateToolOutputLines: {
|
|
860
|
+
readonly type: "number";
|
|
861
|
+
readonly label: "Tool Output Truncation Lines";
|
|
862
|
+
readonly category: "General";
|
|
863
|
+
readonly requiresRestart: true;
|
|
864
|
+
readonly default: 1000;
|
|
865
|
+
readonly description: "The number of lines to keep when truncating tool output.";
|
|
866
|
+
readonly showInDialog: true;
|
|
867
|
+
};
|
|
868
|
+
};
|
|
869
|
+
};
|
|
870
|
+
readonly mcp: {
|
|
871
|
+
readonly type: "object";
|
|
872
|
+
readonly label: "MCP";
|
|
873
|
+
readonly category: "MCP";
|
|
874
|
+
readonly requiresRestart: true;
|
|
875
|
+
readonly default: {};
|
|
876
|
+
readonly description: "Settings for Model Context Protocol (MCP) servers.";
|
|
877
|
+
readonly showInDialog: false;
|
|
878
|
+
readonly properties: {
|
|
879
|
+
readonly serverCommand: {
|
|
880
|
+
readonly type: "string";
|
|
881
|
+
readonly label: "MCP Server Command";
|
|
882
|
+
readonly category: "MCP";
|
|
883
|
+
readonly requiresRestart: true;
|
|
884
|
+
readonly default: string | undefined;
|
|
885
|
+
readonly description: "Command to start an MCP server.";
|
|
886
|
+
readonly showInDialog: false;
|
|
887
|
+
};
|
|
888
|
+
readonly allowed: {
|
|
889
|
+
readonly type: "array";
|
|
890
|
+
readonly label: "Allow MCP Servers";
|
|
891
|
+
readonly category: "MCP";
|
|
892
|
+
readonly requiresRestart: true;
|
|
893
|
+
readonly default: string[] | undefined;
|
|
894
|
+
readonly description: "A list of MCP servers to allow.";
|
|
895
|
+
readonly showInDialog: false;
|
|
896
|
+
};
|
|
897
|
+
readonly excluded: {
|
|
898
|
+
readonly type: "array";
|
|
899
|
+
readonly label: "Exclude MCP Servers";
|
|
900
|
+
readonly category: "MCP";
|
|
901
|
+
readonly requiresRestart: true;
|
|
902
|
+
readonly default: string[] | undefined;
|
|
903
|
+
readonly description: "A list of MCP servers to exclude.";
|
|
904
|
+
readonly showInDialog: false;
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
};
|
|
908
|
+
readonly useSmartEdit: {
|
|
909
|
+
readonly type: "boolean";
|
|
910
|
+
readonly label: "Use Smart Edit";
|
|
911
|
+
readonly category: "Advanced";
|
|
912
|
+
readonly requiresRestart: false;
|
|
913
|
+
readonly default: false;
|
|
914
|
+
readonly description: "Enable the smart-edit tool instead of the replace tool.";
|
|
915
|
+
readonly showInDialog: false;
|
|
916
|
+
};
|
|
917
|
+
readonly security: {
|
|
918
|
+
readonly type: "object";
|
|
919
|
+
readonly label: "Security";
|
|
920
|
+
readonly category: "Security";
|
|
921
|
+
readonly requiresRestart: true;
|
|
922
|
+
readonly default: {};
|
|
923
|
+
readonly description: "Security-related settings.";
|
|
924
|
+
readonly showInDialog: false;
|
|
925
|
+
readonly properties: {
|
|
926
|
+
readonly folderTrust: {
|
|
927
|
+
readonly type: "object";
|
|
928
|
+
readonly label: "Folder Trust";
|
|
929
|
+
readonly category: "Security";
|
|
930
|
+
readonly requiresRestart: false;
|
|
931
|
+
readonly default: {};
|
|
932
|
+
readonly description: "Settings for folder trust.";
|
|
933
|
+
readonly showInDialog: false;
|
|
934
|
+
readonly properties: {
|
|
935
|
+
readonly enabled: {
|
|
936
|
+
readonly type: "boolean";
|
|
937
|
+
readonly label: "Folder Trust";
|
|
938
|
+
readonly category: "Security";
|
|
939
|
+
readonly requiresRestart: true;
|
|
940
|
+
readonly default: false;
|
|
941
|
+
readonly description: "Setting to track whether Folder trust is enabled.";
|
|
942
|
+
readonly showInDialog: true;
|
|
943
|
+
};
|
|
944
|
+
};
|
|
945
|
+
};
|
|
946
|
+
readonly auth: {
|
|
947
|
+
readonly type: "object";
|
|
948
|
+
readonly label: "Authentication";
|
|
949
|
+
readonly category: "Security";
|
|
950
|
+
readonly requiresRestart: true;
|
|
951
|
+
readonly default: {};
|
|
952
|
+
readonly description: "Authentication settings.";
|
|
953
|
+
readonly showInDialog: false;
|
|
954
|
+
readonly properties: {
|
|
955
|
+
readonly selectedType: {
|
|
956
|
+
readonly type: "string";
|
|
957
|
+
readonly label: "Selected Auth Type";
|
|
958
|
+
readonly category: "Security";
|
|
959
|
+
readonly requiresRestart: true;
|
|
960
|
+
readonly default: AuthType | undefined;
|
|
961
|
+
readonly description: "The currently selected authentication type.";
|
|
962
|
+
readonly showInDialog: false;
|
|
963
|
+
};
|
|
964
|
+
readonly enforcedType: {
|
|
965
|
+
readonly type: "string";
|
|
966
|
+
readonly label: "Enforced Auth Type";
|
|
967
|
+
readonly category: "Advanced";
|
|
968
|
+
readonly requiresRestart: true;
|
|
969
|
+
readonly default: AuthType | undefined;
|
|
970
|
+
readonly description: "The required auth type. If this does not match the selected auth type, the user will be prompted to re-authenticate.";
|
|
971
|
+
readonly showInDialog: false;
|
|
972
|
+
};
|
|
973
|
+
readonly useExternal: {
|
|
974
|
+
readonly type: "boolean";
|
|
975
|
+
readonly label: "Use External Auth";
|
|
976
|
+
readonly category: "Security";
|
|
977
|
+
readonly requiresRestart: true;
|
|
978
|
+
readonly default: boolean | undefined;
|
|
979
|
+
readonly description: "Whether to use an external authentication flow.";
|
|
980
|
+
readonly showInDialog: false;
|
|
981
|
+
};
|
|
982
|
+
readonly apiKey: {
|
|
983
|
+
readonly type: "string";
|
|
984
|
+
readonly label: "API Key";
|
|
985
|
+
readonly category: "Security";
|
|
986
|
+
readonly requiresRestart: true;
|
|
987
|
+
readonly default: string | undefined;
|
|
988
|
+
readonly description: "API key for OpenAI compatible authentication.";
|
|
989
|
+
readonly showInDialog: false;
|
|
990
|
+
};
|
|
991
|
+
readonly baseUrl: {
|
|
992
|
+
readonly type: "string";
|
|
993
|
+
readonly label: "Base URL";
|
|
994
|
+
readonly category: "Security";
|
|
995
|
+
readonly requiresRestart: true;
|
|
996
|
+
readonly default: string | undefined;
|
|
997
|
+
readonly description: "Base URL for OpenAI compatible API.";
|
|
998
|
+
readonly showInDialog: false;
|
|
999
|
+
};
|
|
1000
|
+
readonly openaiProfiles: {
|
|
1001
|
+
readonly type: "object";
|
|
1002
|
+
readonly label: "OpenAI Profiles";
|
|
1003
|
+
readonly category: "Security";
|
|
1004
|
+
readonly requiresRestart: true;
|
|
1005
|
+
readonly default: Record<string, {
|
|
1006
|
+
apiKey: string;
|
|
1007
|
+
baseUrl?: string;
|
|
1008
|
+
model?: string;
|
|
1009
|
+
}>;
|
|
1010
|
+
readonly description: "Saved OpenAI credential profiles for quick switching via /openai-profile.";
|
|
1011
|
+
readonly showInDialog: false;
|
|
1012
|
+
readonly mergeStrategy: MergeStrategy.SHALLOW_MERGE;
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
};
|
|
1018
|
+
readonly advanced: {
|
|
1019
|
+
readonly type: "object";
|
|
1020
|
+
readonly label: "Advanced";
|
|
1021
|
+
readonly category: "Advanced";
|
|
1022
|
+
readonly requiresRestart: true;
|
|
1023
|
+
readonly default: {};
|
|
1024
|
+
readonly description: "Advanced settings for power users.";
|
|
1025
|
+
readonly showInDialog: false;
|
|
1026
|
+
readonly properties: {
|
|
1027
|
+
readonly autoConfigureMemory: {
|
|
1028
|
+
readonly type: "boolean";
|
|
1029
|
+
readonly label: "Auto Configure Max Old Space Size";
|
|
1030
|
+
readonly category: "Advanced";
|
|
1031
|
+
readonly requiresRestart: true;
|
|
1032
|
+
readonly default: false;
|
|
1033
|
+
readonly description: "Automatically configure Node.js memory limits";
|
|
1034
|
+
readonly showInDialog: false;
|
|
1035
|
+
};
|
|
1036
|
+
readonly dnsResolutionOrder: {
|
|
1037
|
+
readonly type: "string";
|
|
1038
|
+
readonly label: "DNS Resolution Order";
|
|
1039
|
+
readonly category: "Advanced";
|
|
1040
|
+
readonly requiresRestart: true;
|
|
1041
|
+
readonly default: DnsResolutionOrder | undefined;
|
|
1042
|
+
readonly description: "The DNS resolution order.";
|
|
1043
|
+
readonly showInDialog: false;
|
|
1044
|
+
};
|
|
1045
|
+
readonly excludedEnvVars: {
|
|
1046
|
+
readonly type: "array";
|
|
1047
|
+
readonly label: "Excluded Project Environment Variables";
|
|
1048
|
+
readonly category: "Advanced";
|
|
1049
|
+
readonly requiresRestart: false;
|
|
1050
|
+
readonly default: string[];
|
|
1051
|
+
readonly description: "Environment variables to exclude from project context.";
|
|
1052
|
+
readonly showInDialog: false;
|
|
1053
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1054
|
+
};
|
|
1055
|
+
readonly bugCommand: {
|
|
1056
|
+
readonly type: "object";
|
|
1057
|
+
readonly label: "Bug Command";
|
|
1058
|
+
readonly category: "Advanced";
|
|
1059
|
+
readonly requiresRestart: false;
|
|
1060
|
+
readonly default: BugCommandSettings | undefined;
|
|
1061
|
+
readonly description: "Configuration for the bug report command.";
|
|
1062
|
+
readonly showInDialog: false;
|
|
1063
|
+
};
|
|
1064
|
+
readonly tavilyApiKey: {
|
|
1065
|
+
readonly type: "string";
|
|
1066
|
+
readonly label: "Tavily API Key (Deprecated)";
|
|
1067
|
+
readonly category: "Advanced";
|
|
1068
|
+
readonly requiresRestart: false;
|
|
1069
|
+
readonly default: string | undefined;
|
|
1070
|
+
readonly description: "⚠️ DEPRECATED: Please use webSearch.provider configuration instead. Legacy API key for the Tavily API.";
|
|
1071
|
+
readonly showInDialog: false;
|
|
1072
|
+
};
|
|
1073
|
+
};
|
|
1074
|
+
};
|
|
1075
|
+
readonly webSearch: {
|
|
1076
|
+
readonly type: "object";
|
|
1077
|
+
readonly label: "Web Search";
|
|
1078
|
+
readonly category: "Advanced";
|
|
1079
|
+
readonly requiresRestart: true;
|
|
1080
|
+
readonly default: {
|
|
1081
|
+
provider: Array<{
|
|
1082
|
+
type: "tavily" | "google" | "dashscope";
|
|
1083
|
+
apiKey?: string;
|
|
1084
|
+
searchEngineId?: string;
|
|
1085
|
+
}>;
|
|
1086
|
+
default: string;
|
|
1087
|
+
} | undefined;
|
|
1088
|
+
readonly description: "Configuration for web search providers.";
|
|
1089
|
+
readonly showInDialog: false;
|
|
1090
|
+
};
|
|
1091
|
+
readonly experimental: {
|
|
1092
|
+
readonly type: "object";
|
|
1093
|
+
readonly label: "Experimental";
|
|
1094
|
+
readonly category: "Experimental";
|
|
1095
|
+
readonly requiresRestart: true;
|
|
1096
|
+
readonly default: {};
|
|
1097
|
+
readonly description: "Setting to enable experimental features";
|
|
1098
|
+
readonly showInDialog: false;
|
|
1099
|
+
readonly properties: {
|
|
1100
|
+
readonly extensionManagement: {
|
|
1101
|
+
readonly type: "boolean";
|
|
1102
|
+
readonly label: "Extension Management";
|
|
1103
|
+
readonly category: "Experimental";
|
|
1104
|
+
readonly requiresRestart: true;
|
|
1105
|
+
readonly default: true;
|
|
1106
|
+
readonly description: "Enable extension management features.";
|
|
1107
|
+
readonly showInDialog: false;
|
|
1108
|
+
};
|
|
1109
|
+
readonly visionModelPreview: {
|
|
1110
|
+
readonly type: "boolean";
|
|
1111
|
+
readonly label: "Vision Model Preview";
|
|
1112
|
+
readonly category: "Experimental";
|
|
1113
|
+
readonly requiresRestart: false;
|
|
1114
|
+
readonly default: true;
|
|
1115
|
+
readonly description: "Enable vision model support and auto-switching functionality. When disabled, vision models like qwen-vl-max-latest will be hidden and auto-switching will not occur.";
|
|
1116
|
+
readonly showInDialog: true;
|
|
1117
|
+
};
|
|
1118
|
+
readonly vlmSwitchMode: {
|
|
1119
|
+
readonly type: "string";
|
|
1120
|
+
readonly label: "VLM Switch Mode";
|
|
1121
|
+
readonly category: "Experimental";
|
|
1122
|
+
readonly requiresRestart: false;
|
|
1123
|
+
readonly default: string | undefined;
|
|
1124
|
+
readonly description: "Default behavior when images are detected in input. Values: once (one-time switch), session (switch for entire session), persist (continue with current model). If not set, user will be prompted each time. This is a temporary experimental feature.";
|
|
1125
|
+
readonly showInDialog: false;
|
|
1126
|
+
};
|
|
1127
|
+
};
|
|
1128
|
+
};
|
|
1129
|
+
readonly extensions: {
|
|
1130
|
+
readonly type: "object";
|
|
1131
|
+
readonly label: "Extensions";
|
|
1132
|
+
readonly category: "Extensions";
|
|
1133
|
+
readonly requiresRestart: true;
|
|
1134
|
+
readonly default: {};
|
|
1135
|
+
readonly description: "Settings for extensions.";
|
|
1136
|
+
readonly showInDialog: false;
|
|
1137
|
+
readonly properties: {
|
|
1138
|
+
readonly disabled: {
|
|
1139
|
+
readonly type: "array";
|
|
1140
|
+
readonly label: "Disabled Extensions";
|
|
1141
|
+
readonly category: "Extensions";
|
|
1142
|
+
readonly requiresRestart: true;
|
|
1143
|
+
readonly default: string[];
|
|
1144
|
+
readonly description: "List of disabled extensions.";
|
|
1145
|
+
readonly showInDialog: false;
|
|
1146
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1147
|
+
};
|
|
1148
|
+
readonly workspacesWithMigrationNudge: {
|
|
1149
|
+
readonly type: "array";
|
|
1150
|
+
readonly label: "Workspaces with Migration Nudge";
|
|
1151
|
+
readonly category: "Extensions";
|
|
1152
|
+
readonly requiresRestart: false;
|
|
1153
|
+
readonly default: string[];
|
|
1154
|
+
readonly description: "List of workspaces for which the migration nudge has been shown.";
|
|
1155
|
+
readonly showInDialog: false;
|
|
1156
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1157
|
+
};
|
|
1158
|
+
};
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
export type SettingsSchemaType = typeof SETTINGS_SCHEMA;
|
|
1162
|
+
export declare function getSettingsSchema(): SettingsSchemaType;
|
|
1163
|
+
type InferSettings<T extends SettingsSchema> = {
|
|
1164
|
+
-readonly [K in keyof T]?: T[K] extends {
|
|
1165
|
+
properties: SettingsSchema;
|
|
1166
|
+
} ? InferSettings<T[K]['properties']> : T[K]['type'] extends 'enum' ? T[K]['options'] extends readonly SettingEnumOption[] ? T[K]['options'][number]['value'] : T[K]['default'] : T[K]['default'] extends boolean ? boolean : T[K]['default'];
|
|
1167
|
+
};
|
|
1168
|
+
export type Settings = InferSettings<SettingsSchemaType>;
|
|
1169
|
+
export interface FooterSettings {
|
|
1170
|
+
hideCWD?: boolean;
|
|
1171
|
+
hideSandboxStatus?: boolean;
|
|
1172
|
+
hideModelInfo?: boolean;
|
|
1173
|
+
}
|
|
1174
|
+
export {};
|