@zgsm/costrict-cli 0.21.0-nightly.20251213.977248e09
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 +30 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +93 -0
- package/dist/src/commands/extensions/disable.d.ts +13 -0
- package/dist/src/commands/extensions/disable.js +69 -0
- package/dist/src/commands/extensions/disable.js.map +1 -0
- package/dist/src/commands/extensions/disable.test.d.ts +6 -0
- package/dist/src/commands/extensions/disable.test.js +169 -0
- package/dist/src/commands/extensions/disable.test.js.map +1 -0
- package/dist/src/commands/extensions/enable.d.ts +13 -0
- package/dist/src/commands/extensions/enable.js +71 -0
- package/dist/src/commands/extensions/enable.js.map +1 -0
- package/dist/src/commands/extensions/enable.test.d.ts +6 -0
- package/dist/src/commands/extensions/enable.test.js +150 -0
- package/dist/src/commands/extensions/enable.test.js.map +1 -0
- package/dist/src/commands/extensions/examples/context/GEMINI.md +14 -0
- package/dist/src/commands/extensions/examples/context/gemini-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/gemini-extension.json +4 -0
- package/dist/src/commands/extensions/examples/exclude-tools/gemini-extension.json +5 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.d.ts +6 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.js +46 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.js.map +1 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.test.d.ts +6 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.test.js +111 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.test.js.map +1 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.test.ts +135 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
- package/dist/src/commands/extensions/examples/mcp-server/gemini-extension.json +11 -0
- package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
- package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
- package/dist/src/commands/extensions/install.d.ts +16 -0
- package/dist/src/commands/extensions/install.js +111 -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 +122 -0
- package/dist/src/commands/extensions/install.test.js.map +1 -0
- package/dist/src/commands/extensions/link.d.ts +13 -0
- package/dist/src/commands/extensions/link.js +64 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/link.test.d.ts +6 -0
- package/dist/src/commands/extensions/link.test.js +137 -0
- package/dist/src/commands/extensions/link.test.js.map +1 -0
- package/dist/src/commands/extensions/list.d.ts +8 -0
- package/dist/src/commands/extensions/list.js +45 -0
- package/dist/src/commands/extensions/list.js.map +1 -0
- package/dist/src/commands/extensions/list.test.d.ts +6 -0
- package/dist/src/commands/extensions/list.test.js +111 -0
- package/dist/src/commands/extensions/list.test.js.map +1 -0
- package/dist/src/commands/extensions/new.d.ts +7 -0
- package/dist/src/commands/extensions/new.js +86 -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 +62 -0
- package/dist/src/commands/extensions/new.test.js.map +1 -0
- package/dist/src/commands/extensions/settings.d.ts +7 -0
- package/dist/src/commands/extensions/settings.js +111 -0
- package/dist/src/commands/extensions/settings.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.d.ts +12 -0
- package/dist/src/commands/extensions/uninstall.js +67 -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 +199 -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 +107 -0
- package/dist/src/commands/extensions/update.js.map +1 -0
- package/dist/src/commands/extensions/update.test.d.ts +6 -0
- package/dist/src/commands/extensions/update.test.js +170 -0
- package/dist/src/commands/extensions/update.test.js.map +1 -0
- package/dist/src/commands/extensions/utils.d.ts +13 -0
- package/dist/src/commands/extensions/utils.js +29 -0
- package/dist/src/commands/extensions/utils.js.map +1 -0
- package/dist/src/commands/extensions/validate.d.ts +12 -0
- package/dist/src/commands/extensions/validate.js +85 -0
- package/dist/src/commands/extensions/validate.js.map +1 -0
- package/dist/src/commands/extensions/validate.test.d.ts +6 -0
- package/dist/src/commands/extensions/validate.test.js +96 -0
- package/dist/src/commands/extensions/validate.test.js.map +1 -0
- package/dist/src/commands/extensions.d.ts +7 -0
- package/dist/src/commands/extensions.js +40 -0
- package/dist/src/commands/extensions.js.map +1 -0
- package/dist/src/commands/extensions.test.d.ts +6 -0
- package/dist/src/commands/extensions.test.js +67 -0
- package/dist/src/commands/extensions.test.js.map +1 -0
- package/dist/src/commands/hooks/migrate.d.ts +11 -0
- package/dist/src/commands/hooks/migrate.js +206 -0
- package/dist/src/commands/hooks/migrate.js.map +1 -0
- package/dist/src/commands/hooks/migrate.test.d.ts +6 -0
- package/dist/src/commands/hooks/migrate.test.js +389 -0
- package/dist/src/commands/hooks/migrate.test.js.map +1 -0
- package/dist/src/commands/hooks.d.ts +7 -0
- package/dist/src/commands/hooks.js +22 -0
- package/dist/src/commands/hooks.js.map +1 -0
- package/dist/src/commands/mcp/add.d.ts +7 -0
- package/dist/src/commands/mcp/add.js +178 -0
- package/dist/src/commands/mcp/add.js.map +1 -0
- package/dist/src/commands/mcp/add.test.d.ts +6 -0
- package/dist/src/commands/mcp/add.test.js +274 -0
- package/dist/src/commands/mcp/add.test.js.map +1 -0
- package/dist/src/commands/mcp/list.d.ts +8 -0
- package/dist/src/commands/mcp/list.js +122 -0
- package/dist/src/commands/mcp/list.js.map +1 -0
- package/dist/src/commands/mcp/list.test.d.ts +6 -0
- package/dist/src/commands/mcp/list.test.js +126 -0
- package/dist/src/commands/mcp/list.test.js.map +1 -0
- package/dist/src/commands/mcp/remove.d.ts +7 -0
- package/dist/src/commands/mcp/remove.js +47 -0
- package/dist/src/commands/mcp/remove.js.map +1 -0
- package/dist/src/commands/mcp/remove.test.d.ts +6 -0
- package/dist/src/commands/mcp/remove.test.js +189 -0
- package/dist/src/commands/mcp/remove.test.js.map +1 -0
- package/dist/src/commands/mcp.d.ts +7 -0
- package/dist/src/commands/mcp.js +25 -0
- package/dist/src/commands/mcp.js.map +1 -0
- package/dist/src/commands/mcp.test.d.ts +6 -0
- package/dist/src/commands/mcp.test.js +63 -0
- package/dist/src/commands/mcp.test.js.map +1 -0
- package/dist/src/commands/utils.d.ts +6 -0
- package/dist/src/commands/utils.js +11 -0
- package/dist/src/commands/utils.js.map +1 -0
- package/dist/src/commands/utils.test.d.ts +6 -0
- package/dist/src/commands/utils.test.js +35 -0
- package/dist/src/commands/utils.test.js.map +1 -0
- package/dist/src/config/auth.d.ts +6 -0
- package/dist/src/config/auth.js +53 -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 +145 -0
- package/dist/src/config/auth.test.js.map +1 -0
- package/dist/src/config/config.d.ts +36 -0
- package/dist/src/config/config.integration.test.d.ts +6 -0
- package/dist/src/config/config.integration.test.js +204 -0
- package/dist/src/config/config.integration.test.js.map +1 -0
- package/dist/src/config/config.js +518 -0
- package/dist/src/config/config.js.map +1 -0
- package/dist/src/config/config.test.d.ts +6 -0
- package/dist/src/config/config.test.js +1953 -0
- package/dist/src/config/config.test.js.map +1 -0
- package/dist/src/config/extension-manager.d.ts +64 -0
- package/dist/src/config/extension-manager.js +517 -0
- package/dist/src/config/extension-manager.js.map +1 -0
- package/dist/src/config/extension.d.ts +28 -0
- package/dist/src/config/extension.js +20 -0
- package/dist/src/config/extension.js.map +1 -0
- package/dist/src/config/extension.test.d.ts +6 -0
- package/dist/src/config/extension.test.js +1542 -0
- package/dist/src/config/extension.test.js.map +1 -0
- package/dist/src/config/extensions/consent.d.ts +38 -0
- package/dist/src/config/extensions/consent.js +126 -0
- package/dist/src/config/extensions/consent.js.map +1 -0
- package/dist/src/config/extensions/consent.test.d.ts +6 -0
- package/dist/src/config/extensions/consent.test.js +162 -0
- package/dist/src/config/extensions/consent.test.js.map +1 -0
- package/dist/src/config/extensions/extensionEnablement.d.ts +47 -0
- package/dist/src/config/extensions/extensionEnablement.js +190 -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 +404 -0
- package/dist/src/config/extensions/extensionEnablement.test.js.map +1 -0
- package/dist/src/config/extensions/extensionSettings.d.ts +21 -0
- package/dist/src/config/extensions/extensionSettings.js +184 -0
- package/dist/src/config/extensions/extensionSettings.js.map +1 -0
- package/dist/src/config/extensions/extensionSettings.test.d.ts +6 -0
- package/dist/src/config/extensions/extensionSettings.test.js +493 -0
- package/dist/src/config/extensions/extensionSettings.test.js.map +1 -0
- package/dist/src/config/extensions/github.d.ts +50 -0
- package/dist/src/config/extensions/github.js +416 -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 +441 -0
- package/dist/src/config/extensions/github.test.js.map +1 -0
- package/dist/src/config/extensions/github_fetch.d.ts +7 -0
- package/dist/src/config/extensions/github_fetch.js +46 -0
- package/dist/src/config/extensions/github_fetch.js.map +1 -0
- package/dist/src/config/extensions/github_fetch.test.d.ts +6 -0
- package/dist/src/config/extensions/github_fetch.test.js +169 -0
- package/dist/src/config/extensions/github_fetch.test.js.map +1 -0
- package/dist/src/config/extensions/storage.d.ts +14 -0
- package/dist/src/config/extensions/storage.js +32 -0
- package/dist/src/config/extensions/storage.js.map +1 -0
- package/dist/src/config/extensions/storage.test.d.ts +6 -0
- package/dist/src/config/extensions/storage.test.js +64 -0
- package/dist/src/config/extensions/storage.test.js.map +1 -0
- package/dist/src/config/extensions/update.d.ts +20 -0
- package/dist/src/config/extensions/update.js +120 -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 +231 -0
- package/dist/src/config/extensions/update.test.js.map +1 -0
- package/dist/src/config/extensions/variableSchema.d.ts +32 -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 +21 -0
- package/dist/src/config/extensions/variables.js +46 -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 +103 -0
- package/dist/src/config/extensions/variables.test.js.map +1 -0
- package/dist/src/config/keyBindings.d.ts +93 -0
- package/dist/src/config/keyBindings.js +305 -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 +93 -0
- package/dist/src/config/keyBindings.test.js.map +1 -0
- package/dist/src/config/policy-engine.integration.test.d.ts +6 -0
- package/dist/src/config/policy-engine.integration.test.js +291 -0
- package/dist/src/config/policy-engine.integration.test.js.map +1 -0
- package/dist/src/config/policy.d.ts +9 -0
- package/dist/src/config/policy.js +21 -0
- package/dist/src/config/policy.js.map +1 -0
- package/dist/src/config/sandboxConfig.d.ts +12 -0
- package/dist/src/config/sandboxConfig.js +74 -0
- package/dist/src/config/sandboxConfig.js.map +1 -0
- package/dist/src/config/sandboxConfig.test.d.ts +6 -0
- package/dist/src/config/sandboxConfig.test.js +178 -0
- package/dist/src/config/sandboxConfig.test.js.map +1 -0
- package/dist/src/config/settingPaths.d.ts +10 -0
- package/dist/src/config/settingPaths.js +11 -0
- package/dist/src/config/settingPaths.js.map +1 -0
- package/dist/src/config/settingPaths.test.d.ts +6 -0
- package/dist/src/config/settingPaths.test.js +22 -0
- package/dist/src/config/settingPaths.test.js.map +1 -0
- package/dist/src/config/settings-validation.d.ts +23 -0
- package/dist/src/config/settings-validation.js +249 -0
- package/dist/src/config/settings-validation.js.map +1 -0
- package/dist/src/config/settings-validation.test.d.ts +6 -0
- package/dist/src/config/settings-validation.test.js +322 -0
- package/dist/src/config/settings-validation.test.js.map +1 -0
- package/dist/src/config/settings.d.ts +85 -0
- package/dist/src/config/settings.js +618 -0
- package/dist/src/config/settings.js.map +1 -0
- package/dist/src/config/settings.test.d.ts +6 -0
- package/dist/src/config/settings.test.js +1955 -0
- package/dist/src/config/settings.test.js.map +1 -0
- package/dist/src/config/settingsSchema.d.ts +1511 -0
- package/dist/src/config/settingsSchema.js +1756 -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 +271 -0
- package/dist/src/config/settingsSchema.test.js.map +1 -0
- package/dist/src/config/settings_repro.test.d.ts +6 -0
- package/dist/src/config/settings_repro.test.js +162 -0
- package/dist/src/config/settings_repro.test.js.map +1 -0
- package/dist/src/config/trustedFolders.d.ts +55 -0
- package/dist/src/config/trustedFolders.js +176 -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/core/auth.d.ts +13 -0
- package/dist/src/core/auth.js +27 -0
- package/dist/src/core/auth.js.map +1 -0
- package/dist/src/core/auth.test.d.ts +6 -0
- package/dist/src/core/auth.test.js +43 -0
- package/dist/src/core/auth.test.js.map +1 -0
- package/dist/src/core/initializer.d.ts +21 -0
- package/dist/src/core/initializer.js +36 -0
- package/dist/src/core/initializer.js.map +1 -0
- package/dist/src/core/initializer.test.d.ts +6 -0
- package/dist/src/core/initializer.test.js +101 -0
- package/dist/src/core/initializer.test.js.map +1 -0
- package/dist/src/core/theme.d.ts +12 -0
- package/dist/src/core/theme.js +20 -0
- package/dist/src/core/theme.js.map +1 -0
- package/dist/src/core/theme.test.d.ts +6 -0
- package/dist/src/core/theme.test.js +46 -0
- package/dist/src/core/theme.test.js.map +1 -0
- package/dist/src/gemini.d.ts +14 -0
- package/dist/src/gemini.js +494 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/gemini.test.d.ts +6 -0
- package/dist/src/gemini.test.js +1238 -0
- package/dist/src/gemini.test.js.map +1 -0
- package/dist/src/gemini_cleanup.test.d.ts +6 -0
- package/dist/src/gemini_cleanup.test.js +202 -0
- package/dist/src/gemini_cleanup.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/nonInteractiveCli.d.ts +17 -0
- package/dist/src/nonInteractiveCli.js +335 -0
- package/dist/src/nonInteractiveCli.js.map +1 -0
- package/dist/src/nonInteractiveCli.test.d.ts +6 -0
- package/dist/src/nonInteractiveCli.test.js +1333 -0
- package/dist/src/nonInteractiveCli.test.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.d.ts +17 -0
- package/dist/src/nonInteractiveCliCommands.js +78 -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/services/BuiltinCommandLoader.d.ts +24 -0
- package/dist/src/services/BuiltinCommandLoader.js +110 -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 +200 -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 +91 -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 +234 -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/FileCommandLoader.test.d.ts +6 -0
- package/dist/src/services/FileCommandLoader.test.js +1046 -0
- package/dist/src/services/FileCommandLoader.test.js.map +1 -0
- package/dist/src/services/McpPromptLoader.d.ts +35 -0
- package/dist/src/services/McpPromptLoader.js +256 -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 +411 -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/argumentProcessor.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/argumentProcessor.test.js +40 -0
- package/dist/src/services/prompt-processors/argumentProcessor.test.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js +63 -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/shellProcessor.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/shellProcessor.test.js +482 -0
- package/dist/src/services/prompt-processors/shellProcessor.test.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/async.d.ts +9 -0
- package/dist/src/test-utils/async.js +29 -0
- package/dist/src/test-utils/async.js.map +1 -0
- package/dist/src/test-utils/createExtension.d.ts +17 -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 +88 -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 +58 -0
- package/dist/src/test-utils/render.js +222 -0
- package/dist/src/test-utils/render.js.map +1 -0
- package/dist/src/test-utils/render.test.d.ts +6 -0
- package/dist/src/test-utils/render.test.js +79 -0
- package/dist/src/test-utils/render.test.js.map +1 -0
- package/dist/src/ui/App.d.ts +6 -0
- package/dist/src/ui/App.js +29 -0
- package/dist/src/ui/App.js.map +1 -0
- package/dist/src/ui/App.test.d.ts +6 -0
- package/dist/src/ui/App.test.js +160 -0
- package/dist/src/ui/App.test.js.map +1 -0
- package/dist/src/ui/AppContainer.d.ts +16 -0
- package/dist/src/ui/AppContainer.js +1256 -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 +1580 -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/IdeIntegrationNudge.test.d.ts +6 -0
- package/dist/src/ui/IdeIntegrationNudge.test.js +147 -0
- package/dist/src/ui/IdeIntegrationNudge.test.js.map +1 -0
- package/dist/src/ui/auth/ApiAuthDialog.d.ts +14 -0
- package/dist/src/ui/auth/ApiAuthDialog.js +59 -0
- package/dist/src/ui/auth/ApiAuthDialog.js.map +1 -0
- package/dist/src/ui/auth/ApiAuthDialog.test.d.ts +6 -0
- package/dist/src/ui/auth/ApiAuthDialog.test.js +110 -0
- package/dist/src/ui/auth/ApiAuthDialog.test.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.d.ts +18 -0
- package/dist/src/ui/auth/AuthDialog.js +149 -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 +288 -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 +23 -0
- package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
- package/dist/src/ui/auth/AuthInProgress.test.d.ts +6 -0
- package/dist/src/ui/auth/AuthInProgress.test.js +71 -0
- package/dist/src/ui/auth/AuthInProgress.test.js.map +1 -0
- package/dist/src/ui/auth/useAuth.d.ts +17 -0
- package/dist/src/ui/auth/useAuth.js +114 -0
- package/dist/src/ui/auth/useAuth.js.map +1 -0
- package/dist/src/ui/auth/useAuth.test.d.ts +6 -0
- package/dist/src/ui/auth/useAuth.test.js +189 -0
- package/dist/src/ui/auth/useAuth.test.js.map +1 -0
- package/dist/src/ui/colors.d.ts +7 -0
- package/dist/src/ui/colors.js +57 -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 +56 -0
- package/dist/src/ui/commands/aboutCommand.js.map +1 -0
- package/dist/src/ui/commands/aboutCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/aboutCommand.test.js +131 -0
- package/dist/src/ui/commands/aboutCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.d.ts +7 -0
- package/dist/src/ui/commands/authCommand.js +17 -0
- package/dist/src/ui/commands/authCommand.js.map +1 -0
- package/dist/src/ui/commands/authCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/authCommand.test.js +30 -0
- package/dist/src/ui/commands/authCommand.test.js.map +1 -0
- package/dist/src/ui/commands/bugCommand.d.ts +7 -0
- package/dist/src/ui/commands/bugCommand.js +76 -0
- package/dist/src/ui/commands/bugCommand.js.map +1 -0
- package/dist/src/ui/commands/bugCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/bugCommand.test.js +105 -0
- package/dist/src/ui/commands/bugCommand.test.js.map +1 -0
- package/dist/src/ui/commands/builtin/agentCommand.d.ts +10 -0
- package/dist/src/ui/commands/builtin/agentCommand.js +160 -0
- package/dist/src/ui/commands/builtin/agentCommand.js.map +1 -0
- package/dist/src/ui/commands/builtin/agentCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/builtin/agentCommand.test.js +172 -0
- package/dist/src/ui/commands/builtin/agentCommand.test.js.map +1 -0
- package/dist/src/ui/commands/builtin/planApplyCommand.d.ts +10 -0
- package/dist/src/ui/commands/builtin/planApplyCommand.js +104 -0
- package/dist/src/ui/commands/builtin/planApplyCommand.js.map +1 -0
- package/dist/src/ui/commands/builtin/planCommand.d.ts +10 -0
- package/dist/src/ui/commands/builtin/planCommand.js +308 -0
- package/dist/src/ui/commands/builtin/planCommand.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.d.ts +9 -0
- package/dist/src/ui/commands/chatCommand.js +326 -0
- package/dist/src/ui/commands/chatCommand.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/chatCommand.test.js +594 -0
- package/dist/src/ui/commands/chatCommand.test.js.map +1 -0
- package/dist/src/ui/commands/clearCommand.d.ts +7 -0
- package/dist/src/ui/commands/clearCommand.js +57 -0
- package/dist/src/ui/commands/clearCommand.js.map +1 -0
- package/dist/src/ui/commands/clearCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/clearCommand.test.js +83 -0
- package/dist/src/ui/commands/clearCommand.test.js.map +1 -0
- package/dist/src/ui/commands/compressCommand.d.ts +7 -0
- package/dist/src/ui/commands/compressCommand.js +67 -0
- package/dist/src/ui/commands/compressCommand.js.map +1 -0
- package/dist/src/ui/commands/compressCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/compressCommand.test.js +98 -0
- package/dist/src/ui/commands/compressCommand.test.js.map +1 -0
- package/dist/src/ui/commands/copyCommand.d.ts +7 -0
- package/dist/src/ui/commands/copyCommand.js +61 -0
- package/dist/src/ui/commands/copyCommand.js.map +1 -0
- package/dist/src/ui/commands/copyCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/copyCommand.test.js +242 -0
- package/dist/src/ui/commands/copyCommand.test.js.map +1 -0
- package/dist/src/ui/commands/corgiCommand.d.ts +7 -0
- package/dist/src/ui/commands/corgiCommand.js +17 -0
- package/dist/src/ui/commands/corgiCommand.js.map +1 -0
- package/dist/src/ui/commands/corgiCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/corgiCommand.test.js +28 -0
- package/dist/src/ui/commands/corgiCommand.test.js.map +1 -0
- package/dist/src/ui/commands/directoryCommand.d.ts +7 -0
- package/dist/src/ui/commands/directoryCommand.js +189 -0
- package/dist/src/ui/commands/directoryCommand.js.map +1 -0
- package/dist/src/ui/commands/directoryCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/directoryCommand.test.js +235 -0
- package/dist/src/ui/commands/directoryCommand.test.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.d.ts +7 -0
- package/dist/src/ui/commands/docsCommand.js +32 -0
- package/dist/src/ui/commands/docsCommand.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/docsCommand.test.js +72 -0
- package/dist/src/ui/commands/docsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/editorCommand.d.ts +7 -0
- package/dist/src/ui/commands/editorCommand.js +17 -0
- package/dist/src/ui/commands/editorCommand.js.map +1 -0
- package/dist/src/ui/commands/editorCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/editorCommand.test.js +27 -0
- package/dist/src/ui/commands/editorCommand.test.js.map +1 -0
- package/dist/src/ui/commands/extensionsCommand.d.ts +12 -0
- package/dist/src/ui/commands/extensionsCommand.js +403 -0
- package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
- package/dist/src/ui/commands/extensionsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/extensionsCommand.test.js +588 -0
- package/dist/src/ui/commands/extensionsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/helpCommand.d.ts +7 -0
- package/dist/src/ui/commands/helpCommand.js +22 -0
- package/dist/src/ui/commands/helpCommand.js.map +1 -0
- package/dist/src/ui/commands/helpCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/helpCommand.test.js +42 -0
- package/dist/src/ui/commands/helpCommand.test.js.map +1 -0
- package/dist/src/ui/commands/hooksCommand.d.ts +7 -0
- package/dist/src/ui/commands/hooksCommand.js +207 -0
- package/dist/src/ui/commands/hooksCommand.js.map +1 -0
- package/dist/src/ui/commands/hooksCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/hooksCommand.test.js +396 -0
- package/dist/src/ui/commands/hooksCommand.test.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.d.ts +7 -0
- package/dist/src/ui/commands/ideCommand.js +233 -0
- package/dist/src/ui/commands/ideCommand.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/ideCommand.test.js +203 -0
- package/dist/src/ui/commands/ideCommand.test.js.map +1 -0
- package/dist/src/ui/commands/initCommand.d.ts +7 -0
- package/dist/src/ui/commands/initCommand.js +37 -0
- package/dist/src/ui/commands/initCommand.js.map +1 -0
- package/dist/src/ui/commands/initCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/initCommand.test.js +80 -0
- package/dist/src/ui/commands/initCommand.test.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
- package/dist/src/ui/commands/mcpCommand.js +285 -0
- package/dist/src/ui/commands/mcpCommand.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/mcpCommand.test.js +181 -0
- package/dist/src/ui/commands/mcpCommand.test.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
- package/dist/src/ui/commands/memoryCommand.js +108 -0
- package/dist/src/ui/commands/memoryCommand.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/memoryCommand.test.js +254 -0
- package/dist/src/ui/commands/memoryCommand.test.js.map +1 -0
- package/dist/src/ui/commands/modeCommand.d.ts +7 -0
- package/dist/src/ui/commands/modeCommand.js +45 -0
- package/dist/src/ui/commands/modeCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.d.ts +7 -0
- package/dist/src/ui/commands/modelCommand.js +17 -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 +30 -0
- package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/permissionsCommand.js +75 -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 +86 -0
- package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/policiesCommand.d.ts +7 -0
- package/dist/src/ui/commands/policiesCommand.js +61 -0
- package/dist/src/ui/commands/policiesCommand.js.map +1 -0
- package/dist/src/ui/commands/policiesCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/policiesCommand.test.js +83 -0
- package/dist/src/ui/commands/policiesCommand.test.js.map +1 -0
- package/dist/src/ui/commands/privacyCommand.d.ts +7 -0
- package/dist/src/ui/commands/privacyCommand.js +17 -0
- package/dist/src/ui/commands/privacyCommand.js.map +1 -0
- package/dist/src/ui/commands/privacyCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/privacyCommand.test.js +32 -0
- package/dist/src/ui/commands/privacyCommand.test.js.map +1 -0
- package/dist/src/ui/commands/profileCommand.d.ts +7 -0
- package/dist/src/ui/commands/profileCommand.js +24 -0
- package/dist/src/ui/commands/profileCommand.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.d.ts +7 -0
- package/dist/src/ui/commands/quitCommand.js +35 -0
- package/dist/src/ui/commands/quitCommand.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/quitCommand.test.js +50 -0
- package/dist/src/ui/commands/quitCommand.test.js.map +1 -0
- package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
- package/dist/src/ui/commands/restoreCommand.js +130 -0
- package/dist/src/ui/commands/restoreCommand.js.map +1 -0
- package/dist/src/ui/commands/restoreCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/restoreCommand.test.js +190 -0
- package/dist/src/ui/commands/restoreCommand.test.js.map +1 -0
- package/dist/src/ui/commands/resumeCommand.d.ts +7 -0
- package/dist/src/ui/commands/resumeCommand.js +17 -0
- package/dist/src/ui/commands/resumeCommand.js.map +1 -0
- package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
- package/dist/src/ui/commands/settingsCommand.js +17 -0
- package/dist/src/ui/commands/settingsCommand.js.map +1 -0
- package/dist/src/ui/commands/settingsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/settingsCommand.test.js +30 -0
- package/dist/src/ui/commands/settingsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.d.ts +10 -0
- package/dist/src/ui/commands/setupGithubCommand.js +195 -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 +238 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.d.ts +7 -0
- package/dist/src/ui/commands/statsCommand.js +79 -0
- package/dist/src/ui/commands/statsCommand.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/statsCommand.test.js +56 -0
- package/dist/src/ui/commands/statsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
- package/dist/src/ui/commands/terminalSetupCommand.js +43 -0
- package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/terminalSetupCommand.test.js +66 -0
- package/dist/src/ui/commands/terminalSetupCommand.test.js.map +1 -0
- package/dist/src/ui/commands/themeCommand.d.ts +7 -0
- package/dist/src/ui/commands/themeCommand.js +17 -0
- package/dist/src/ui/commands/themeCommand.js.map +1 -0
- package/dist/src/ui/commands/themeCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/themeCommand.test.js +32 -0
- package/dist/src/ui/commands/themeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
- package/dist/src/ui/commands/toolsCommand.js +43 -0
- package/dist/src/ui/commands/toolsCommand.js.map +1 -0
- package/dist/src/ui/commands/toolsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/toolsCommand.test.js +100 -0
- package/dist/src/ui/commands/toolsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +135 -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 +24 -0
- package/dist/src/ui/commands/vimCommand.js.map +1 -0
- package/dist/src/ui/components/AboutBox.d.ts +18 -0
- package/dist/src/ui/components/AboutBox.js +6 -0
- package/dist/src/ui/components/AboutBox.js.map +1 -0
- package/dist/src/ui/components/AboutBox.test.d.ts +6 -0
- package/dist/src/ui/components/AboutBox.test.js +53 -0
- package/dist/src/ui/components/AboutBox.test.js.map +1 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.d.ts +6 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js +24 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js.map +1 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.js +161 -0
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.test.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.d.ts +14 -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 +92 -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 +22 -0
- package/dist/src/ui/components/AppHeader.js.map +1 -0
- package/dist/src/ui/components/AppHeader.test.d.ts +6 -0
- package/dist/src/ui/components/AppHeader.test.js +144 -0
- package/dist/src/ui/components/AppHeader.test.js.map +1 -0
- package/dist/src/ui/components/AsciiArt.d.ts +11 -0
- package/dist/src/ui/components/AsciiArt.js +53 -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 +26 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/components/AutoAcceptIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/AutoAcceptIndicator.test.js +31 -0
- package/dist/src/ui/components/AutoAcceptIndicator.test.js.map +1 -0
- package/dist/src/ui/components/Banner.d.ts +14 -0
- package/dist/src/ui/components/Banner.js +28 -0
- package/dist/src/ui/components/Banner.js.map +1 -0
- package/dist/src/ui/components/Banner.test.d.ts +6 -0
- package/dist/src/ui/components/Banner.test.js +24 -0
- package/dist/src/ui/components/Banner.test.js.map +1 -0
- package/dist/src/ui/components/CliSpinner.d.ts +9 -0
- package/dist/src/ui/components/CliSpinner.js +19 -0
- package/dist/src/ui/components/CliSpinner.js.map +1 -0
- package/dist/src/ui/components/CliSpinner.test.d.ts +6 -0
- package/dist/src/ui/components/CliSpinner.test.js +23 -0
- package/dist/src/ui/components/CliSpinner.test.js.map +1 -0
- package/dist/src/ui/components/Composer.d.ts +6 -0
- package/dist/src/ui/components/Composer.js +60 -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 +355 -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 +49 -0
- package/dist/src/ui/components/ConfigInitDisplay.js.map +1 -0
- package/dist/src/ui/components/ConfigInitDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ConfigInitDisplay.test.js +133 -0
- package/dist/src/ui/components/ConfigInitDisplay.test.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 +77 -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/ConsoleSummaryDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.test.js +26 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +19 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +56 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ContextSummaryDisplay.test.js +71 -0
- package/dist/src/ui/components/ContextSummaryDisplay.test.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/ContextUsageDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ContextUsageDisplay.test.js +39 -0
- package/dist/src/ui/components/ContextUsageDisplay.test.js.map +1 -0
- package/dist/src/ui/components/CopyModeWarning.d.ts +7 -0
- package/dist/src/ui/components/CopyModeWarning.js +12 -0
- package/dist/src/ui/components/CopyModeWarning.js.map +1 -0
- package/dist/src/ui/components/CopyModeWarning.test.d.ts +6 -0
- package/dist/src/ui/components/CopyModeWarning.test.js +33 -0
- package/dist/src/ui/components/CopyModeWarning.test.js.map +1 -0
- package/dist/src/ui/components/DebugProfiler.d.ts +25 -0
- package/dist/src/ui/components/DebugProfiler.js +162 -0
- package/dist/src/ui/components/DebugProfiler.js.map +1 -0
- package/dist/src/ui/components/DebugProfiler.test.d.ts +6 -0
- package/dist/src/ui/components/DebugProfiler.test.js +201 -0
- package/dist/src/ui/components/DebugProfiler.test.js.map +1 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +15 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js +54 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.test.js +39 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.test.js.map +1 -0
- package/dist/src/ui/components/DialogManager.d.ts +12 -0
- package/dist/src/ui/components/DialogManager.js +103 -0
- package/dist/src/ui/components/DialogManager.js.map +1 -0
- package/dist/src/ui/components/DialogManager.test.d.ts +6 -0
- package/dist/src/ui/components/DialogManager.test.js +167 -0
- package/dist/src/ui/components/DialogManager.test.js.map +1 -0
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +15 -0
- package/dist/src/ui/components/EditorSettingsDialog.js +80 -0
- package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
- package/dist/src/ui/components/EditorSettingsDialog.test.d.ts +6 -0
- package/dist/src/ui/components/EditorSettingsDialog.test.js +118 -0
- package/dist/src/ui/components/EditorSettingsDialog.test.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/ExitWarning.test.d.ts +6 -0
- package/dist/src/ui/components/ExitWarning.test.js +54 -0
- package/dist/src/ui/components/ExitWarning.test.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
- package/dist/src/ui/components/FolderTrustDialog.js +66 -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 +90 -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 +49 -0
- package/dist/src/ui/components/Footer.js.map +1 -0
- package/dist/src/ui/components/Footer.test.d.ts +6 -0
- package/dist/src/ui/components/Footer.test.js +314 -0
- package/dist/src/ui/components/Footer.test.js.map +1 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +22 -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/GeminiRespondingSpinner.test.d.ts +6 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js +61 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js.map +1 -0
- package/dist/src/ui/components/GradientRegression.test.d.ts +6 -0
- package/dist/src/ui/components/GradientRegression.test.js +105 -0
- package/dist/src/ui/components/GradientRegression.test.js.map +1 -0
- package/dist/src/ui/components/Header.d.ts +13 -0
- package/dist/src/ui/components/Header.js +29 -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 +145 -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 +13 -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 +67 -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 +185 -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 +33 -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 +50 -0
- package/dist/src/ui/components/InputPrompt.js +833 -0
- package/dist/src/ui/components/InputPrompt.js.map +1 -0
- package/dist/src/ui/components/InputPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/InputPrompt.test.js +2124 -0
- package/dist/src/ui/components/InputPrompt.test.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 +207 -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 +25 -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 +76 -0
- package/dist/src/ui/components/MainContent.js.map +1 -0
- package/dist/src/ui/components/MainContent.test.d.ts +6 -0
- package/dist/src/ui/components/MainContent.test.js +73 -0
- package/dist/src/ui/components/MainContent.test.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/MemoryUsageDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/MemoryUsageDisplay.test.js +49 -0
- package/dist/src/ui/components/MemoryUsageDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.d.ts +11 -0
- package/dist/src/ui/components/ModelDialog.js +86 -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 +224 -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 +33 -0
- package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelStatsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ModelStatsDisplay.test.js +292 -0
- package/dist/src/ui/components/ModelStatsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.d.ts +23 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.js +91 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.js.map +1 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.test.js +161 -0
- package/dist/src/ui/components/MultiFolderTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/Notifications.d.ts +6 -0
- package/dist/src/ui/components/Notifications.js +68 -0
- package/dist/src/ui/components/Notifications.js.map +1 -0
- package/dist/src/ui/components/Notifications.test.d.ts +6 -0
- package/dist/src/ui/components/Notifications.test.js +153 -0
- package/dist/src/ui/components/Notifications.test.js.map +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +16 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +58 -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 +162 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.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 +77 -0
- package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.d.ts +18 -0
- package/dist/src/ui/components/ProQuotaDialog.js +88 -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 +172 -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 +65 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.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/QuittingDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/QuittingDisplay.test.js +49 -0
- package/dist/src/ui/components/QuittingDisplay.test.js.map +1 -0
- package/dist/src/ui/components/RawMarkdownIndicator.d.ts +7 -0
- package/dist/src/ui/components/RawMarkdownIndicator.js +8 -0
- package/dist/src/ui/components/RawMarkdownIndicator.js.map +1 -0
- package/dist/src/ui/components/RawMarkdownIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/RawMarkdownIndicator.test.js +34 -0
- package/dist/src/ui/components/RawMarkdownIndicator.test.js.map +1 -0
- package/dist/src/ui/components/SessionBrowser.d.ts +98 -0
- package/dist/src/ui/components/SessionBrowser.js +459 -0
- package/dist/src/ui/components/SessionBrowser.js.map +1 -0
- package/dist/src/ui/components/SessionBrowser.test.d.ts +6 -0
- package/dist/src/ui/components/SessionBrowser.test.js +250 -0
- package/dist/src/ui/components/SessionBrowser.test.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +11 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +4 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/SessionSummaryDisplay.test.js +75 -0
- package/dist/src/ui/components/SessionSummaryDisplay.test.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
- package/dist/src/ui/components/SettingsDialog.js +704 -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 +1133 -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 +49 -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/ShellInputPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/ShellInputPrompt.test.js +82 -0
- package/dist/src/ui/components/ShellInputPrompt.test.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/ShellModeIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/ShellModeIndicator.test.js +17 -0
- package/dist/src/ui/components/ShellModeIndicator.test.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/ShowMoreLines.test.d.ts +6 -0
- package/dist/src/ui/components/ShowMoreLines.test.js +40 -0
- package/dist/src/ui/components/ShowMoreLines.test.js.map +1 -0
- package/dist/src/ui/components/StatsDisplay.d.ts +14 -0
- package/dist/src/ui/components/StatsDisplay.js +119 -0
- package/dist/src/ui/components/StatsDisplay.js.map +1 -0
- package/dist/src/ui/components/StatsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/StatsDisplay.test.js +438 -0
- package/dist/src/ui/components/StatsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/StickyHeader.d.ts +14 -0
- package/dist/src/ui/components/StickyHeader.js +5 -0
- package/dist/src/ui/components/StickyHeader.js.map +1 -0
- package/dist/src/ui/components/StickyHeader.test.d.ts +6 -0
- package/dist/src/ui/components/StickyHeader.test.js +17 -0
- package/dist/src/ui/components/StickyHeader.test.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/SuggestionsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/SuggestionsDisplay.test.js +56 -0
- package/dist/src/ui/components/SuggestionsDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.d.ts +21 -0
- package/dist/src/ui/components/ThemeDialog.js +135 -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 +102 -0
- package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
- package/dist/src/ui/components/ThemedGradient.d.ts +8 -0
- package/dist/src/ui/components/ThemedGradient.js +16 -0
- package/dist/src/ui/components/ThemedGradient.js.map +1 -0
- package/dist/src/ui/components/ThemedGradient.test.d.ts +6 -0
- package/dist/src/ui/components/ThemedGradient.test.js +30 -0
- package/dist/src/ui/components/ThemedGradient.test.js.map +1 -0
- package/dist/src/ui/components/Tips.d.ts +12 -0
- package/dist/src/ui/components/Tips.js +9 -0
- package/dist/src/ui/components/Tips.js.map +1 -0
- package/dist/src/ui/components/Tips.test.d.ts +6 -0
- package/dist/src/ui/components/Tips.test.js +23 -0
- package/dist/src/ui/components/Tips.test.js.map +1 -0
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +7 -0
- package/dist/src/ui/components/ToolStatsDisplay.js +41 -0
- package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/ToolStatsDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/ToolStatsDisplay.test.js +227 -0
- package/dist/src/ui/components/ToolStatsDisplay.test.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/UpdateNotification.test.d.ts +6 -0
- package/dist/src/ui/components/UpdateNotification.test.js +16 -0
- package/dist/src/ui/components/UpdateNotification.test.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
- package/dist/src/ui/components/messages/CompressionMessage.js +46 -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 +168 -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 +258 -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 +231 -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/ErrorMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ErrorMessage.test.js +23 -0
- package/dist/src/ui/components/messages/ErrorMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessage.js +15 -0
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/GeminiMessage.test.js +35 -0
- package/dist/src/ui/components/messages/GeminiMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js +19 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -0
- package/dist/src/ui/components/messages/InfoMessage.d.ts +13 -0
- package/dist/src/ui/components/messages/InfoMessage.js +11 -0
- package/dist/src/ui/components/messages/InfoMessage.js.map +1 -0
- package/dist/src/ui/components/messages/InfoMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/InfoMessage.test.js +28 -0
- package/dist/src/ui/components/messages/InfoMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ModelMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/ModelMessage.js +5 -0
- package/dist/src/ui/components/messages/ModelMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ShellToolMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/ShellToolMessage.js +76 -0
- package/dist/src/ui/components/messages/ShellToolMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ShellToolMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ShellToolMessage.test.js +123 -0
- package/dist/src/ui/components/messages/ShellToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/Todo.d.ts +7 -0
- package/dist/src/ui/components/messages/Todo.js +91 -0
- package/dist/src/ui/components/messages/Todo.js.map +1 -0
- package/dist/src/ui/components/messages/Todo.test.d.ts +6 -0
- package/dist/src/ui/components/messages/Todo.test.js +114 -0
- package/dist/src/ui/components/messages/Todo.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +15 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +240 -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 +113 -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 +80 -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 +300 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.d.ts +24 -0
- package/dist/src/ui/components/messages/ToolMessage.js +36 -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 +153 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.js +62 -0
- package/dist/src/ui/components/messages/ToolMessageRawMarkdown.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.d.ts +13 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.js +54 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.js.map +1 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.test.js +96 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolShared.d.ts +23 -0
- package/dist/src/ui/components/messages/ToolShared.js +40 -0
- package/dist/src/ui/components/messages/ToolShared.js.map +1 -0
- package/dist/src/ui/components/messages/UserMessage.d.ts +12 -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/UserMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/UserMessage.test.js +32 -0
- package/dist/src/ui/components/messages/UserMessage.test.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/messages/WarningMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/WarningMessage.test.js +23 -0
- package/dist/src/ui/components/messages/WarningMessage.test.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 +385 -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 +175 -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 +14 -0
- package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
- package/dist/src/ui/components/shared/Scrollable.d.ts +18 -0
- package/dist/src/ui/components/shared/Scrollable.js +84 -0
- package/dist/src/ui/components/shared/Scrollable.js.map +1 -0
- package/dist/src/ui/components/shared/Scrollable.test.d.ts +6 -0
- package/dist/src/ui/components/shared/Scrollable.test.js +74 -0
- package/dist/src/ui/components/shared/Scrollable.test.js.map +1 -0
- package/dist/src/ui/components/shared/ScrollableList.d.ts +26 -0
- package/dist/src/ui/components/shared/ScrollableList.js +152 -0
- package/dist/src/ui/components/shared/ScrollableList.js.map +1 -0
- package/dist/src/ui/components/shared/ScrollableList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/ScrollableList.test.js +228 -0
- package/dist/src/ui/components/shared/ScrollableList.test.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.d.ts +15 -0
- package/dist/src/ui/components/shared/TextInput.js +38 -0
- package/dist/src/ui/components/shared/TextInput.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.test.d.ts +6 -0
- package/dist/src/ui/components/shared/TextInput.test.js +242 -0
- package/dist/src/ui/components/shared/TextInput.test.js.map +1 -0
- package/dist/src/ui/components/shared/VirtualizedList.d.ts +44 -0
- package/dist/src/ui/components/shared/VirtualizedList.js +312 -0
- package/dist/src/ui/components/shared/VirtualizedList.js.map +1 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.js +171 -0
- package/dist/src/ui/components/shared/VirtualizedList.test.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.d.ts +492 -0
- package/dist/src/ui/components/shared/text-buffer.js +1665 -0
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.test.d.ts +6 -0
- package/dist/src/ui/components/shared/text-buffer.test.js +1916 -0
- package/dist/src/ui/components/shared/text-buffer.test.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/shared/vim-buffer-actions.test.d.ts +6 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.test.js +951 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.test.js.map +1 -0
- package/dist/src/ui/components/views/ChatList.d.ts +12 -0
- package/dist/src/ui/components/views/ChatList.js +17 -0
- package/dist/src/ui/components/views/ChatList.js.map +1 -0
- package/dist/src/ui/components/views/ChatList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ChatList.test.js +45 -0
- package/dist/src/ui/components/views/ChatList.test.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.d.ts +12 -0
- package/dist/src/ui/components/views/ExtensionsList.js +44 -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 +111 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
- package/dist/src/ui/components/views/HooksList.d.ts +22 -0
- package/dist/src/ui/components/views/HooksList.js +23 -0
- package/dist/src/ui/components/views/HooksList.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
- package/dist/src/ui/components/views/McpStatus.js +87 -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 +136 -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 +7 -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/tips.d.ts +6 -0
- package/dist/src/ui/constants/tips.js +167 -0
- package/dist/src/ui/constants/tips.js.map +1 -0
- package/dist/src/ui/constants/wittyPhrases.d.ts +6 -0
- package/dist/src/ui/constants/wittyPhrases.js +137 -0
- package/dist/src/ui/constants/wittyPhrases.js.map +1 -0
- package/dist/src/ui/constants.d.ts +20 -0
- package/dist/src/ui/constants.js +29 -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/AppModeContext.d.ts +17 -0
- package/dist/src/ui/contexts/AppModeContext.js +35 -0
- package/dist/src/ui/contexts/AppModeContext.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 +31 -0
- package/dist/src/ui/contexts/KeypressContext.js +529 -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 +711 -0
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
- package/dist/src/ui/contexts/MouseContext.d.ts +21 -0
- package/dist/src/ui/contexts/MouseContext.js +104 -0
- package/dist/src/ui/contexts/MouseContext.js.map +1 -0
- package/dist/src/ui/contexts/MouseContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/MouseContext.test.js +198 -0
- package/dist/src/ui/contexts/MouseContext.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/ScrollProvider.d.ts +25 -0
- package/dist/src/ui/contexts/ScrollProvider.drag.test.d.ts +6 -0
- package/dist/src/ui/contexts/ScrollProvider.drag.test.js +319 -0
- package/dist/src/ui/contexts/ScrollProvider.drag.test.js.map +1 -0
- package/dist/src/ui/contexts/ScrollProvider.js +242 -0
- package/dist/src/ui/contexts/ScrollProvider.js.map +1 -0
- package/dist/src/ui/contexts/ScrollProvider.test.d.ts +6 -0
- package/dist/src/ui/contexts/ScrollProvider.test.js +377 -0
- package/dist/src/ui/contexts/ScrollProvider.test.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.d.ts +46 -0
- package/dist/src/ui/contexts/SessionContext.js +158 -0
- package/dist/src/ui/contexts/SessionContext.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/SessionContext.test.js +198 -0
- package/dist/src/ui/contexts/SessionContext.test.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 +50 -0
- package/dist/src/ui/contexts/UIActionsContext.js +21 -0
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
- package/dist/src/ui/contexts/UIStateContext.d.ts +121 -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/debug.d.ts +8 -0
- package/dist/src/ui/debug.js +11 -0
- package/dist/src/ui/debug.js.map +1 -0
- package/dist/src/ui/editors/editorSettingsManager.d.ts +18 -0
- package/dist/src/ui/editors/editorSettingsManager.js +37 -0
- package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
- package/dist/src/ui/hooks/README.md +81 -0
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +32 -0
- package/dist/src/ui/hooks/atCommandProcessor.js +499 -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 +1026 -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 +19 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js +285 -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 +521 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +49 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +455 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/slashCommandProcessor.test.js +846 -0
- package/dist/src/ui/hooks/slashCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/useAlternateBuffer.d.ts +8 -0
- package/dist/src/ui/hooks/useAlternateBuffer.js +12 -0
- package/dist/src/ui/hooks/useAlternateBuffer.js.map +1 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +10 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.js +91 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +1 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.js +85 -0
- package/dist/src/ui/hooks/useAnimatedScrollbar.test.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useAtCompletion.js +229 -0
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAtCompletion.test.js +417 -0
- package/dist/src/ui/hooks/useAtCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +13 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +60 -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 +410 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useBanner.d.ts +14 -0
- package/dist/src/ui/hooks/useBanner.js +48 -0
- package/dist/src/ui/hooks/useBanner.js.map +1 -0
- package/dist/src/ui/hooks/useBanner.test.d.ts +6 -0
- package/dist/src/ui/hooks/useBanner.test.js +92 -0
- package/dist/src/ui/hooks/useBanner.test.js.map +1 -0
- package/dist/src/ui/hooks/useBatchedScroll.d.ts +14 -0
- package/dist/src/ui/hooks/useBatchedScroll.js +27 -0
- package/dist/src/ui/hooks/useBatchedScroll.js.map +1 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.d.ts +6 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.js +62 -0
- package/dist/src/ui/hooks/useBatchedScroll.test.js.map +1 -0
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
- package/dist/src/ui/hooks/useBracketedPaste.js +31 -0
- package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +41 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +232 -0
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useCommandCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useCommandCompletion.test.js +376 -0
- package/dist/src/ui/hooks/useCommandCompletion.test.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 +11 -0
- package/dist/src/ui/hooks/useConsoleMessages.js +101 -0
- package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -0
- package/dist/src/ui/hooks/useConsoleMessages.test.d.ts +6 -0
- package/dist/src/ui/hooks/useConsoleMessages.test.js +159 -0
- package/dist/src/ui/hooks/useConsoleMessages.test.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
- package/dist/src/ui/hooks/useEditorSettings.js +44 -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 +179 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +31 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js +175 -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 +263 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
- package/dist/src/ui/hooks/useFlickerDetector.d.ts +14 -0
- package/dist/src/ui/hooks/useFlickerDetector.js +37 -0
- package/dist/src/ui/hooks/useFlickerDetector.js.map +1 -0
- package/dist/src/ui/hooks/useFlickerDetector.test.d.ts +6 -0
- package/dist/src/ui/hooks/useFlickerDetector.test.js +106 -0
- package/dist/src/ui/hooks/useFlickerDetector.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/useFocus.test.d.ts +6 -0
- package/dist/src/ui/hooks/useFocus.test.js +131 -0
- package/dist/src/ui/hooks/useFocus.test.js.map +1 -0
- package/dist/src/ui/hooks/useFolderTrust.d.ts +14 -0
- package/dist/src/ui/hooks/useFolderTrust.js +81 -0
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
- package/dist/src/ui/hooks/useFolderTrust.test.d.ts +6 -0
- package/dist/src/ui/hooks/useFolderTrust.test.js +210 -0
- package/dist/src/ui/hooks/useFolderTrust.test.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.d.ts +36 -0
- package/dist/src/ui/hooks/useGeminiStream.js +824 -0
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.test.d.ts +6 -0
- package/dist/src/ui/hooks/useGeminiStream.test.js +1827 -0
- package/dist/src/ui/hooks/useGeminiStream.test.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.js +65 -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 +183 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.d.ts +25 -0
- package/dist/src/ui/hooks/useHistoryManager.js +108 -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 +172 -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 +67 -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 +214 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
- package/dist/src/ui/hooks/useInactivityTimer.d.ts +14 -0
- package/dist/src/ui/hooks/useInactivityTimer.js +30 -0
- package/dist/src/ui/hooks/useInactivityTimer.js.map +1 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.d.ts +8 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.js +121 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.js.map +1 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.test.d.ts +6 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.test.js +151 -0
- package/dist/src/ui/hooks/useIncludeDirsTrust.test.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 +208 -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 +82 -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 +238 -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/useKeypress.test.d.ts +6 -0
- package/dist/src/ui/hooks/useKeypress.test.js +200 -0
- package/dist/src/ui/hooks/useKeypress.test.js.map +1 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +14 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +19 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.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 +127 -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 +62 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.d.ts +24 -0
- package/dist/src/ui/hooks/useMessageQueue.js +61 -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 +293 -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 +45 -0
- package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/useMouse.d.ts +17 -0
- package/dist/src/ui/hooks/useMouse.js +27 -0
- package/dist/src/ui/hooks/useMouse.js.map +1 -0
- package/dist/src/ui/hooks/useMouse.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMouse.test.js +57 -0
- package/dist/src/ui/hooks/useMouse.test.js.map +1 -0
- package/dist/src/ui/hooks/useMouseClick.d.ts +12 -0
- package/dist/src/ui/hooks/useMouseClick.js +28 -0
- package/dist/src/ui/hooks/useMouseClick.js.map +1 -0
- package/dist/src/ui/hooks/useMouseClick.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMouseClick.test.js +59 -0
- package/dist/src/ui/hooks/useMouseClick.test.js.map +1 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +17 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js +115 -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 +284 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +16 -0
- package/dist/src/ui/hooks/usePhraseCycler.js +91 -0
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.test.d.ts +6 -0
- package/dist/src/ui/hooks/usePhraseCycler.test.js +237 -0
- package/dist/src/ui/hooks/usePhraseCycler.test.js.map +1 -0
- package/dist/src/ui/hooks/usePrivacySettings.d.ts +16 -0
- package/dist/src/ui/hooks/usePrivacySettings.js +103 -0
- package/dist/src/ui/hooks/usePrivacySettings.js.map +1 -0
- package/dist/src/ui/hooks/usePrivacySettings.test.d.ts +6 -0
- package/dist/src/ui/hooks/usePrivacySettings.test.js +104 -0
- package/dist/src/ui/hooks/usePrivacySettings.test.js.map +1 -0
- package/dist/src/ui/hooks/usePromptCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/usePromptCompletion.js +171 -0
- package/dist/src/ui/hooks/usePromptCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +19 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js +112 -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 +332 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +42 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js +213 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useReactToolScheduler.test.js +58 -0
- package/dist/src/ui/hooks/useReactToolScheduler.test.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 +169 -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 +273 -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 +819 -0
- package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
- package/dist/src/ui/hooks/useSessionBrowser.d.ts +35 -0
- package/dist/src/ui/hooks/useSessionBrowser.js +224 -0
- package/dist/src/ui/hooks/useSessionBrowser.js.map +1 -0
- package/dist/src/ui/hooks/useSessionBrowser.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSessionBrowser.test.js +209 -0
- package/dist/src/ui/hooks/useSessionBrowser.test.js.map +1 -0
- package/dist/src/ui/hooks/useSessionResume.d.ts +30 -0
- package/dist/src/ui/hooks/useSessionResume.js +57 -0
- package/dist/src/ui/hooks/useSessionResume.js.map +1 -0
- package/dist/src/ui/hooks/useSessionResume.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSessionResume.test.js +325 -0
- package/dist/src/ui/hooks/useSessionResume.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 +113 -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 +223 -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 +59 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +382 -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 +735 -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/useTerminalSize.d.ts +9 -0
- package/dist/src/ui/hooks/useTerminalSize.js +26 -0
- package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
- package/dist/src/ui/hooks/useThemeCommand.d.ts +16 -0
- package/dist/src/ui/hooks/useThemeCommand.js +74 -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 +119 -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 +857 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +28 -0
- package/dist/src/ui/hooks/vim.js +641 -0
- package/dist/src/ui/hooks/vim.js.map +1 -0
- package/dist/src/ui/hooks/vim.test.d.ts +6 -0
- package/dist/src/ui/hooks/vim.test.js +1270 -0
- package/dist/src/ui/hooks/vim.test.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 +364 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -0
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +7 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js +24 -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 +17 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.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/privacy/CloudFreePrivacyNotice.d.ts +12 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +42 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +1 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.d.ts +6 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.js +121 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.test.js.map +1 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +10 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +18 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js.map +1 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.d.ts +6 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.js +34 -0
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.test.js.map +1 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +10 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js +18 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js.map +1 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.test.d.ts +6 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.test.js +34 -0
- package/dist/src/ui/privacy/GeminiPrivacyNotice.test.js.map +1 -0
- package/dist/src/ui/privacy/PrivacyNotice.d.ts +12 -0
- package/dist/src/ui/privacy/PrivacyNotice.js +25 -0
- package/dist/src/ui/privacy/PrivacyNotice.js.map +1 -0
- package/dist/src/ui/privacy/PrivacyNotice.test.d.ts +6 -0
- package/dist/src/ui/privacy/PrivacyNotice.test.js +62 -0
- package/dist/src/ui/privacy/PrivacyNotice.test.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 +67 -0
- package/dist/src/ui/state/extensions.js +97 -0
- package/dist/src/ui/state/extensions.js.map +1 -0
- package/dist/src/ui/state/extensions.test.d.ts +6 -0
- package/dist/src/ui/state/extensions.test.js +219 -0
- package/dist/src/ui/state/extensions.test.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 +143 -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 +153 -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 +140 -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 +132 -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 +106 -0
- package/dist/src/ui/themes/ayu.js.map +1 -0
- package/dist/src/ui/themes/color-utils.d.ts +22 -0
- package/dist/src/ui/themes/color-utils.js +237 -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 +226 -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 +117 -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 +140 -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 +142 -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 +139 -0
- package/dist/src/ui/themes/googlecode.js.map +1 -0
- package/dist/src/ui/themes/holiday.d.ts +7 -0
- package/dist/src/ui/themes/holiday.js +162 -0
- package/dist/src/ui/themes/holiday.js.map +1 -0
- package/dist/src/ui/themes/no-color.d.ts +7 -0
- package/dist/src/ui/themes/no-color.js +118 -0
- package/dist/src/ui/themes/no-color.js.map +1 -0
- package/dist/src/ui/themes/semantic-tokens.d.ts +39 -0
- package/dist/src/ui/themes/semantic-tokens.js +100 -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 +306 -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 +265 -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 +143 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
- package/dist/src/ui/themes/theme.d.ts +133 -0
- package/dist/src/ui/themes/theme.js +390 -0
- package/dist/src/ui/themes/theme.js.map +1 -0
- package/dist/src/ui/themes/theme.test.d.ts +6 -0
- package/dist/src/ui/themes/theme.test.js +151 -0
- package/dist/src/ui/themes/theme.test.js.map +1 -0
- package/dist/src/ui/themes/xcode.d.ts +7 -0
- package/dist/src/ui/themes/xcode.js +147 -0
- package/dist/src/ui/themes/xcode.js.map +1 -0
- package/dist/src/ui/types.d.ts +313 -0
- package/dist/src/ui/types.js +66 -0
- package/dist/src/ui/types.js.map +1 -0
- package/dist/src/ui/utils/CodeColorizer.d.ts +25 -0
- package/dist/src/ui/utils/CodeColorizer.js +123 -0
- package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
- package/dist/src/ui/utils/CodeColorizer.test.d.ts +6 -0
- package/dist/src/ui/utils/CodeColorizer.test.js +38 -0
- package/dist/src/ui/utils/CodeColorizer.test.js.map +1 -0
- package/dist/src/ui/utils/ConsolePatcher.d.ts +25 -0
- package/dist/src/ui/utils/ConsolePatcher.js +49 -0
- package/dist/src/ui/utils/ConsolePatcher.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +17 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +112 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.d.ts +6 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.js +21 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.test.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +15 -0
- package/dist/src/ui/utils/MarkdownDisplay.js +242 -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 +159 -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/bracketedPaste.d.ts +7 -0
- package/dist/src/ui/utils/bracketedPaste.js +15 -0
- package/dist/src/ui/utils/bracketedPaste.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.d.ts +47 -0
- package/dist/src/ui/utils/clipboardUtils.js +212 -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 +187 -0
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.d.ts +36 -0
- package/dist/src/ui/utils/commandUtils.js +189 -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 +309 -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 +62 -0
- package/dist/src/ui/utils/computeStats.js.map +1 -0
- package/dist/src/ui/utils/computeStats.test.d.ts +6 -0
- package/dist/src/ui/utils/computeStats.test.js +271 -0
- package/dist/src/ui/utils/computeStats.test.js.map +1 -0
- package/dist/src/ui/utils/directoryUtils.d.ts +6 -0
- package/dist/src/ui/utils/directoryUtils.js +21 -0
- package/dist/src/ui/utils/directoryUtils.js.map +1 -0
- package/dist/src/ui/utils/directoryUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/directoryUtils.test.js +52 -0
- package/dist/src/ui/utils/directoryUtils.test.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 +82 -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/input.d.ts +17 -0
- package/dist/src/ui/utils/input.js +51 -0
- package/dist/src/ui/utils/input.js.map +1 -0
- package/dist/src/ui/utils/input.test.d.ts +6 -0
- package/dist/src/ui/utils/input.test.js +44 -0
- package/dist/src/ui/utils/input.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 +17 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js +111 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
- package/dist/src/ui/utils/kittyProtocolDetector.test.d.ts +6 -0
- package/dist/src/ui/utils/kittyProtocolDetector.test.js +113 -0
- package/dist/src/ui/utils/kittyProtocolDetector.test.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/mouse.d.ts +32 -0
- package/dist/src/ui/utils/mouse.js +181 -0
- package/dist/src/ui/utils/mouse.js.map +1 -0
- package/dist/src/ui/utils/mouse.test.d.ts +6 -0
- package/dist/src/ui/utils/mouse.test.js +136 -0
- package/dist/src/ui/utils/mouse.test.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.d.ts +34 -0
- package/dist/src/ui/utils/terminalSetup.js +290 -0
- package/dist/src/ui/utils/terminalSetup.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.test.d.ts +6 -0
- package/dist/src/ui/utils/terminalSetup.test.js +136 -0
- package/dist/src/ui/utils/terminalSetup.test.js.map +1 -0
- package/dist/src/ui/utils/textOutput.d.ts +27 -0
- package/dist/src/ui/utils/textOutput.js +53 -0
- package/dist/src/ui/utils/textOutput.js.map +1 -0
- package/dist/src/ui/utils/textOutput.test.d.ts +6 -0
- package/dist/src/ui/utils/textOutput.test.js +79 -0
- package/dist/src/ui/utils/textOutput.test.js.map +1 -0
- package/dist/src/ui/utils/textUtils.d.ts +43 -0
- package/dist/src/ui/utils/textUtils.js +186 -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 +138 -0
- package/dist/src/ui/utils/textUtils.test.js.map +1 -0
- package/dist/src/ui/utils/ui-sizing.d.ts +7 -0
- package/dist/src/ui/utils/ui-sizing.js +30 -0
- package/dist/src/ui/utils/ui-sizing.js.map +1 -0
- package/dist/src/ui/utils/ui-sizing.test.d.ts +6 -0
- package/dist/src/ui/utils/ui-sizing.test.js +56 -0
- package/dist/src/ui/utils/ui-sizing.test.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.d.ts +19 -0
- package/dist/src/ui/utils/updateCheck.js +86 -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 +134 -0
- package/dist/src/ui/utils/updateCheck.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/checks.test.d.ts +6 -0
- package/dist/src/utils/checks.test.js +29 -0
- package/dist/src/utils/checks.test.js.map +1 -0
- package/dist/src/utils/cleanup.d.ts +16 -0
- package/dist/src/utils/cleanup.js +69 -0
- package/dist/src/utils/cleanup.js.map +1 -0
- package/dist/src/utils/cleanup.test.d.ts +6 -0
- package/dist/src/utils/cleanup.test.js +102 -0
- package/dist/src/utils/cleanup.test.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 +130 -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 +308 -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 +63 -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 +201 -0
- package/dist/src/utils/deepMerge.test.js.map +1 -0
- package/dist/src/utils/dialogScopeUtils.d.ts +25 -0
- package/dist/src/utils/dialogScopeUtils.js +50 -0
- package/dist/src/utils/dialogScopeUtils.js.map +1 -0
- package/dist/src/utils/dialogScopeUtils.test.d.ts +6 -0
- package/dist/src/utils/dialogScopeUtils.test.js +81 -0
- package/dist/src/utils/dialogScopeUtils.test.js.map +1 -0
- package/dist/src/utils/envVarResolver.d.ts +39 -0
- package/dist/src/utils/envVarResolver.js +100 -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 +33 -0
- package/dist/src/utils/errors.js +186 -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 +377 -0
- package/dist/src/utils/errors.test.js.map +1 -0
- package/dist/src/utils/events.d.ts +24 -0
- package/dist/src/utils/events.js +17 -0
- package/dist/src/utils/events.js.map +1 -0
- package/dist/src/utils/events.test.d.ts +6 -0
- package/dist/src/utils/events.test.js +24 -0
- package/dist/src/utils/events.test.js.map +1 -0
- package/dist/src/utils/gitUtils.d.ts +30 -0
- package/dist/src/utils/gitUtils.js +90 -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 +113 -0
- package/dist/src/utils/handleAutoUpdate.js.map +1 -0
- package/dist/src/utils/handleAutoUpdate.test.d.ts +6 -0
- package/dist/src/utils/handleAutoUpdate.test.js +303 -0
- package/dist/src/utils/handleAutoUpdate.test.js.map +1 -0
- package/dist/src/utils/installationInfo.d.ts +24 -0
- package/dist/src/utils/installationInfo.js +156 -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 +245 -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/math.test.d.ts +6 -0
- package/dist/src/utils/math.test.js +23 -0
- package/dist/src/utils/math.test.js.map +1 -0
- package/dist/src/utils/persistentState.d.ts +19 -0
- package/dist/src/utils/persistentState.js +65 -0
- package/dist/src/utils/persistentState.js.map +1 -0
- package/dist/src/utils/persistentState.test.d.ts +6 -0
- package/dist/src/utils/persistentState.test.js +68 -0
- package/dist/src/utils/persistentState.test.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 +61 -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 +113 -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/resolvePath.test.d.ts +6 -0
- package/dist/src/utils/resolvePath.test.js +31 -0
- package/dist/src/utils/resolvePath.test.js.map +1 -0
- package/dist/src/utils/sandbox-macos-permissive-closed.sb +32 -0
- package/dist/src/utils/sandbox-macos-permissive-open.sb +27 -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 +616 -0
- package/dist/src/utils/sandbox.js.map +1 -0
- package/dist/src/utils/sandbox.test.d.ts +6 -0
- package/dist/src/utils/sandbox.test.js +302 -0
- package/dist/src/utils/sandbox.test.js.map +1 -0
- package/dist/src/utils/sandboxUtils.d.ts +14 -0
- package/dist/src/utils/sandboxUtils.js +121 -0
- package/dist/src/utils/sandboxUtils.js.map +1 -0
- package/dist/src/utils/sandboxUtils.test.d.ts +6 -0
- package/dist/src/utils/sandboxUtils.test.js +122 -0
- package/dist/src/utils/sandboxUtils.test.js.map +1 -0
- package/dist/src/utils/sessionCleanup.d.ts +22 -0
- package/dist/src/utils/sessionCleanup.integration.test.d.ts +6 -0
- package/dist/src/utils/sessionCleanup.integration.test.js +182 -0
- package/dist/src/utils/sessionCleanup.integration.test.js.map +1 -0
- package/dist/src/utils/sessionCleanup.js +214 -0
- package/dist/src/utils/sessionCleanup.js.map +1 -0
- package/dist/src/utils/sessionCleanup.test.d.ts +6 -0
- package/dist/src/utils/sessionCleanup.test.js +1348 -0
- package/dist/src/utils/sessionCleanup.test.js.map +1 -0
- package/dist/src/utils/sessionUtils.d.ts +150 -0
- package/dist/src/utils/sessionUtils.js +306 -0
- package/dist/src/utils/sessionUtils.js.map +1 -0
- package/dist/src/utils/sessionUtils.test.d.ts +6 -0
- package/dist/src/utils/sessionUtils.test.js +503 -0
- package/dist/src/utils/sessionUtils.test.js.map +1 -0
- package/dist/src/utils/sessions.d.ts +8 -0
- package/dist/src/utils/sessions.js +69 -0
- package/dist/src/utils/sessions.js.map +1 -0
- package/dist/src/utils/sessions.test.d.ts +6 -0
- package/dist/src/utils/sessions.test.js +584 -0
- package/dist/src/utils/sessions.test.js.map +1 -0
- package/dist/src/utils/settingsUtils.d.ts +144 -0
- package/dist/src/utils/settingsUtils.js +340 -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/startupWarnings.test.d.ts +6 -0
- package/dist/src/utils/startupWarnings.test.js +61 -0
- package/dist/src/utils/startupWarnings.test.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/updateEventEmitter.test.d.ts +6 -0
- package/dist/src/utils/updateEventEmitter.test.js +18 -0
- package/dist/src/utils/updateEventEmitter.test.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.d.ts +6 -0
- package/dist/src/utils/userStartupWarnings.js +54 -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 +67 -0
- package/dist/src/utils/userStartupWarnings.test.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 +59 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.test.d.ts +6 -0
- package/dist/src/validateNonInterActiveAuth.test.js +337 -0
- package/dist/src/validateNonInterActiveAuth.test.js.map +1 -0
- package/dist/src/zed-integration/acp.d.ts +41 -0
- package/dist/src/zed-integration/acp.js +72 -0
- package/dist/src/zed-integration/acp.js.map +1 -0
- package/dist/src/zed-integration/acp.test.d.ts +6 -0
- package/dist/src/zed-integration/acp.test.js +214 -0
- package/dist/src/zed-integration/acp.test.js.map +1 -0
- package/dist/src/zed-integration/connection.d.ts +28 -0
- package/dist/src/zed-integration/connection.js +165 -0
- package/dist/src/zed-integration/connection.js.map +1 -0
- package/dist/src/zed-integration/connection.test.d.ts +6 -0
- package/dist/src/zed-integration/connection.test.js +175 -0
- package/dist/src/zed-integration/connection.test.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.d.ts +19 -0
- package/dist/src/zed-integration/fileSystemService.js +43 -0
- package/dist/src/zed-integration/fileSystemService.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.test.d.ts +6 -0
- package/dist/src/zed-integration/fileSystemService.test.js +90 -0
- package/dist/src/zed-integration/fileSystemService.test.js.map +1 -0
- package/dist/src/zed-integration/schema.d.ts +11792 -0
- package/dist/src/zed-integration/schema.js +311 -0
- package/dist/src/zed-integration/schema.js.map +1 -0
- package/dist/src/zed-integration/zedIntegration.d.ts +39 -0
- package/dist/src/zed-integration/zedIntegration.js +728 -0
- package/dist/src/zed-integration/zedIntegration.js.map +1 -0
- package/dist/src/zed-integration/zedIntegration.test.d.ts +6 -0
- package/dist/src/zed-integration/zedIntegration.test.js +614 -0
- package/dist/src/zed-integration/zedIntegration.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +93 -0
|
@@ -0,0 +1,1756 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
import { DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES, DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD, DEFAULT_MODEL_CONFIGS, GEMINI_MODEL_ALIAS_PRO, } from '@google/gemini-cli-core';
|
|
7
|
+
import { DEFAULT_MIN_RETENTION } from '../utils/sessionCleanup.js';
|
|
8
|
+
/**
|
|
9
|
+
* Setting datatypes that "toggle" through a fixed list of options
|
|
10
|
+
* (e.g. an enum or true/false) rather than allowing for free form input
|
|
11
|
+
* (like a number or string).
|
|
12
|
+
*/
|
|
13
|
+
export const TOGGLE_TYPES = new Set([
|
|
14
|
+
'boolean',
|
|
15
|
+
'enum',
|
|
16
|
+
]);
|
|
17
|
+
function oneLine(strings, ...values) {
|
|
18
|
+
let result = '';
|
|
19
|
+
for (let i = 0; i < strings.length; i++) {
|
|
20
|
+
result += strings[i];
|
|
21
|
+
if (i < values.length) {
|
|
22
|
+
result += String(values[i]);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
return result.replace(/\s+/g, ' ').trim();
|
|
26
|
+
}
|
|
27
|
+
export var MergeStrategy;
|
|
28
|
+
(function (MergeStrategy) {
|
|
29
|
+
// Replace the old value with the new value. This is the default.
|
|
30
|
+
MergeStrategy["REPLACE"] = "replace";
|
|
31
|
+
// Concatenate arrays.
|
|
32
|
+
MergeStrategy["CONCAT"] = "concat";
|
|
33
|
+
// Merge arrays, ensuring unique values.
|
|
34
|
+
MergeStrategy["UNION"] = "union";
|
|
35
|
+
// Shallow merge objects.
|
|
36
|
+
MergeStrategy["SHALLOW_MERGE"] = "shallow_merge";
|
|
37
|
+
})(MergeStrategy || (MergeStrategy = {}));
|
|
38
|
+
/**
|
|
39
|
+
* The canonical schema for all settings.
|
|
40
|
+
* The structure of this object defines the structure of the `Settings` type.
|
|
41
|
+
* `as const` is crucial for TypeScript to infer the most specific types possible.
|
|
42
|
+
*/
|
|
43
|
+
const SETTINGS_SCHEMA = {
|
|
44
|
+
// Maintained for compatibility/criticality
|
|
45
|
+
mcpServers: {
|
|
46
|
+
type: 'object',
|
|
47
|
+
label: 'MCP Servers',
|
|
48
|
+
category: 'Advanced',
|
|
49
|
+
requiresRestart: true,
|
|
50
|
+
default: {},
|
|
51
|
+
description: 'Configuration for MCP servers.',
|
|
52
|
+
showInDialog: false,
|
|
53
|
+
mergeStrategy: MergeStrategy.SHALLOW_MERGE,
|
|
54
|
+
additionalProperties: {
|
|
55
|
+
type: 'object',
|
|
56
|
+
ref: 'MCPServerConfig',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
general: {
|
|
60
|
+
type: 'object',
|
|
61
|
+
label: 'General',
|
|
62
|
+
category: 'General',
|
|
63
|
+
requiresRestart: false,
|
|
64
|
+
default: {},
|
|
65
|
+
description: 'General application settings.',
|
|
66
|
+
showInDialog: false,
|
|
67
|
+
properties: {
|
|
68
|
+
previewFeatures: {
|
|
69
|
+
type: 'boolean',
|
|
70
|
+
label: 'Preview Features (e.g., models)',
|
|
71
|
+
category: 'General',
|
|
72
|
+
requiresRestart: false,
|
|
73
|
+
default: false,
|
|
74
|
+
description: 'Enable preview features (e.g., preview models).',
|
|
75
|
+
showInDialog: true,
|
|
76
|
+
},
|
|
77
|
+
preferredEditor: {
|
|
78
|
+
type: 'string',
|
|
79
|
+
label: 'Preferred Editor',
|
|
80
|
+
category: 'General',
|
|
81
|
+
requiresRestart: false,
|
|
82
|
+
default: undefined,
|
|
83
|
+
description: 'The preferred editor to open files in.',
|
|
84
|
+
showInDialog: false,
|
|
85
|
+
},
|
|
86
|
+
vimMode: {
|
|
87
|
+
type: 'boolean',
|
|
88
|
+
label: 'Vim Mode',
|
|
89
|
+
category: 'General',
|
|
90
|
+
requiresRestart: false,
|
|
91
|
+
default: false,
|
|
92
|
+
description: 'Enable Vim keybindings',
|
|
93
|
+
showInDialog: true,
|
|
94
|
+
},
|
|
95
|
+
appMode: {
|
|
96
|
+
type: 'enum',
|
|
97
|
+
label: 'App Mode',
|
|
98
|
+
category: 'General',
|
|
99
|
+
requiresRestart: false,
|
|
100
|
+
default: 'strict',
|
|
101
|
+
description: 'Application interaction mode (strict, plan, or vibe)',
|
|
102
|
+
showInDialog: true,
|
|
103
|
+
options: [
|
|
104
|
+
{ value: 'strict', label: 'Strict Mode' },
|
|
105
|
+
{ value: 'plan', label: 'Plan Mode' },
|
|
106
|
+
{ value: 'vibe', label: 'Vibe Mode' },
|
|
107
|
+
],
|
|
108
|
+
},
|
|
109
|
+
disableAutoUpdate: {
|
|
110
|
+
type: 'boolean',
|
|
111
|
+
label: 'Disable Auto Update',
|
|
112
|
+
category: 'General',
|
|
113
|
+
requiresRestart: false,
|
|
114
|
+
default: false,
|
|
115
|
+
description: 'Disable automatic updates',
|
|
116
|
+
showInDialog: true,
|
|
117
|
+
},
|
|
118
|
+
disableUpdateNag: {
|
|
119
|
+
type: 'boolean',
|
|
120
|
+
label: 'Disable Update Nag',
|
|
121
|
+
category: 'General',
|
|
122
|
+
requiresRestart: false,
|
|
123
|
+
default: false,
|
|
124
|
+
description: 'Disable update notification prompts.',
|
|
125
|
+
showInDialog: false,
|
|
126
|
+
},
|
|
127
|
+
checkpointing: {
|
|
128
|
+
type: 'object',
|
|
129
|
+
label: 'Checkpointing',
|
|
130
|
+
category: 'General',
|
|
131
|
+
requiresRestart: true,
|
|
132
|
+
default: {},
|
|
133
|
+
description: 'Session checkpointing settings.',
|
|
134
|
+
showInDialog: false,
|
|
135
|
+
properties: {
|
|
136
|
+
enabled: {
|
|
137
|
+
type: 'boolean',
|
|
138
|
+
label: 'Enable Checkpointing',
|
|
139
|
+
category: 'General',
|
|
140
|
+
requiresRestart: true,
|
|
141
|
+
default: false,
|
|
142
|
+
description: 'Enable session checkpointing for recovery',
|
|
143
|
+
showInDialog: false,
|
|
144
|
+
},
|
|
145
|
+
},
|
|
146
|
+
},
|
|
147
|
+
enablePromptCompletion: {
|
|
148
|
+
type: 'boolean',
|
|
149
|
+
label: 'Enable Prompt Completion',
|
|
150
|
+
category: 'General',
|
|
151
|
+
requiresRestart: true,
|
|
152
|
+
default: false,
|
|
153
|
+
description: 'Enable AI-powered prompt completion suggestions while typing.',
|
|
154
|
+
showInDialog: true,
|
|
155
|
+
},
|
|
156
|
+
retryFetchErrors: {
|
|
157
|
+
type: 'boolean',
|
|
158
|
+
label: 'Retry Fetch Errors',
|
|
159
|
+
category: 'General',
|
|
160
|
+
requiresRestart: false,
|
|
161
|
+
default: false,
|
|
162
|
+
description: 'Retry on "exception TypeError: fetch failed sending request" errors.',
|
|
163
|
+
showInDialog: false,
|
|
164
|
+
},
|
|
165
|
+
debugKeystrokeLogging: {
|
|
166
|
+
type: 'boolean',
|
|
167
|
+
label: 'Debug Keystroke Logging',
|
|
168
|
+
category: 'General',
|
|
169
|
+
requiresRestart: false,
|
|
170
|
+
default: false,
|
|
171
|
+
description: 'Enable debug logging of keystrokes to the console.',
|
|
172
|
+
showInDialog: true,
|
|
173
|
+
},
|
|
174
|
+
sessionRetention: {
|
|
175
|
+
type: 'object',
|
|
176
|
+
label: 'Session Retention',
|
|
177
|
+
category: 'General',
|
|
178
|
+
requiresRestart: false,
|
|
179
|
+
default: undefined,
|
|
180
|
+
showInDialog: false,
|
|
181
|
+
properties: {
|
|
182
|
+
enabled: {
|
|
183
|
+
type: 'boolean',
|
|
184
|
+
label: 'Enable Session Cleanup',
|
|
185
|
+
category: 'General',
|
|
186
|
+
requiresRestart: false,
|
|
187
|
+
default: false,
|
|
188
|
+
description: 'Enable automatic session cleanup',
|
|
189
|
+
showInDialog: true,
|
|
190
|
+
},
|
|
191
|
+
maxAge: {
|
|
192
|
+
type: 'string',
|
|
193
|
+
label: 'Max Session Age',
|
|
194
|
+
category: 'General',
|
|
195
|
+
requiresRestart: false,
|
|
196
|
+
default: undefined,
|
|
197
|
+
description: 'Maximum age of sessions to keep (e.g., "30d", "7d", "24h", "1w")',
|
|
198
|
+
showInDialog: false,
|
|
199
|
+
},
|
|
200
|
+
maxCount: {
|
|
201
|
+
type: 'number',
|
|
202
|
+
label: 'Max Session Count',
|
|
203
|
+
category: 'General',
|
|
204
|
+
requiresRestart: false,
|
|
205
|
+
default: undefined,
|
|
206
|
+
description: 'Alternative: Maximum number of sessions to keep (most recent)',
|
|
207
|
+
showInDialog: false,
|
|
208
|
+
},
|
|
209
|
+
minRetention: {
|
|
210
|
+
type: 'string',
|
|
211
|
+
label: 'Min Retention Period',
|
|
212
|
+
category: 'General',
|
|
213
|
+
requiresRestart: false,
|
|
214
|
+
default: DEFAULT_MIN_RETENTION,
|
|
215
|
+
description: `Minimum retention period (safety limit, defaults to "${DEFAULT_MIN_RETENTION}")`,
|
|
216
|
+
showInDialog: false,
|
|
217
|
+
},
|
|
218
|
+
},
|
|
219
|
+
description: 'Settings for automatic session cleanup.',
|
|
220
|
+
},
|
|
221
|
+
},
|
|
222
|
+
},
|
|
223
|
+
output: {
|
|
224
|
+
type: 'object',
|
|
225
|
+
label: 'Output',
|
|
226
|
+
category: 'General',
|
|
227
|
+
requiresRestart: false,
|
|
228
|
+
default: {},
|
|
229
|
+
description: 'Settings for the CLI output.',
|
|
230
|
+
showInDialog: false,
|
|
231
|
+
properties: {
|
|
232
|
+
format: {
|
|
233
|
+
type: 'enum',
|
|
234
|
+
label: 'Output Format',
|
|
235
|
+
category: 'General',
|
|
236
|
+
requiresRestart: false,
|
|
237
|
+
default: 'text',
|
|
238
|
+
description: 'The format of the CLI output.',
|
|
239
|
+
showInDialog: true,
|
|
240
|
+
options: [
|
|
241
|
+
{ value: 'text', label: 'Text' },
|
|
242
|
+
{ value: 'json', label: 'JSON' },
|
|
243
|
+
],
|
|
244
|
+
},
|
|
245
|
+
},
|
|
246
|
+
},
|
|
247
|
+
ui: {
|
|
248
|
+
type: 'object',
|
|
249
|
+
label: 'UI',
|
|
250
|
+
category: 'UI',
|
|
251
|
+
requiresRestart: false,
|
|
252
|
+
default: {},
|
|
253
|
+
description: 'User interface settings.',
|
|
254
|
+
showInDialog: false,
|
|
255
|
+
properties: {
|
|
256
|
+
theme: {
|
|
257
|
+
type: 'string',
|
|
258
|
+
label: 'Theme',
|
|
259
|
+
category: 'UI',
|
|
260
|
+
requiresRestart: false,
|
|
261
|
+
default: undefined,
|
|
262
|
+
description: 'The color theme for the UI. See the CLI themes guide for available options.',
|
|
263
|
+
showInDialog: false,
|
|
264
|
+
},
|
|
265
|
+
customThemes: {
|
|
266
|
+
type: 'object',
|
|
267
|
+
label: 'Custom Themes',
|
|
268
|
+
category: 'UI',
|
|
269
|
+
requiresRestart: false,
|
|
270
|
+
default: {},
|
|
271
|
+
description: 'Custom theme definitions.',
|
|
272
|
+
showInDialog: false,
|
|
273
|
+
additionalProperties: {
|
|
274
|
+
type: 'object',
|
|
275
|
+
ref: 'CustomTheme',
|
|
276
|
+
},
|
|
277
|
+
},
|
|
278
|
+
hideWindowTitle: {
|
|
279
|
+
type: 'boolean',
|
|
280
|
+
label: 'Hide Window Title',
|
|
281
|
+
category: 'UI',
|
|
282
|
+
requiresRestart: true,
|
|
283
|
+
default: false,
|
|
284
|
+
description: 'Hide the window title bar',
|
|
285
|
+
showInDialog: true,
|
|
286
|
+
},
|
|
287
|
+
showStatusInTitle: {
|
|
288
|
+
type: 'boolean',
|
|
289
|
+
label: 'Show Status in Title',
|
|
290
|
+
category: 'UI',
|
|
291
|
+
requiresRestart: false,
|
|
292
|
+
default: false,
|
|
293
|
+
description: 'Show Gemini CLI status and thoughts in the terminal window title',
|
|
294
|
+
showInDialog: true,
|
|
295
|
+
},
|
|
296
|
+
hideTips: {
|
|
297
|
+
type: 'boolean',
|
|
298
|
+
label: 'Hide Tips',
|
|
299
|
+
category: 'UI',
|
|
300
|
+
requiresRestart: false,
|
|
301
|
+
default: false,
|
|
302
|
+
description: 'Hide helpful tips in the UI',
|
|
303
|
+
showInDialog: true,
|
|
304
|
+
},
|
|
305
|
+
hideBanner: {
|
|
306
|
+
type: 'boolean',
|
|
307
|
+
label: 'Hide Banner',
|
|
308
|
+
category: 'UI',
|
|
309
|
+
requiresRestart: false,
|
|
310
|
+
default: false,
|
|
311
|
+
description: 'Hide the application banner',
|
|
312
|
+
showInDialog: true,
|
|
313
|
+
},
|
|
314
|
+
hideContextSummary: {
|
|
315
|
+
type: 'boolean',
|
|
316
|
+
label: 'Hide Context Summary',
|
|
317
|
+
category: 'UI',
|
|
318
|
+
requiresRestart: false,
|
|
319
|
+
default: false,
|
|
320
|
+
description: 'Hide the context summary (GEMINI.md, MCP servers) above the input.',
|
|
321
|
+
showInDialog: true,
|
|
322
|
+
},
|
|
323
|
+
footer: {
|
|
324
|
+
type: 'object',
|
|
325
|
+
label: 'Footer',
|
|
326
|
+
category: 'UI',
|
|
327
|
+
requiresRestart: false,
|
|
328
|
+
default: {},
|
|
329
|
+
description: 'Settings for the footer.',
|
|
330
|
+
showInDialog: false,
|
|
331
|
+
properties: {
|
|
332
|
+
hideCWD: {
|
|
333
|
+
type: 'boolean',
|
|
334
|
+
label: 'Hide CWD',
|
|
335
|
+
category: 'UI',
|
|
336
|
+
requiresRestart: false,
|
|
337
|
+
default: false,
|
|
338
|
+
description: 'Hide the current working directory path in the footer.',
|
|
339
|
+
showInDialog: true,
|
|
340
|
+
},
|
|
341
|
+
hideSandboxStatus: {
|
|
342
|
+
type: 'boolean',
|
|
343
|
+
label: 'Hide Sandbox Status',
|
|
344
|
+
category: 'UI',
|
|
345
|
+
requiresRestart: false,
|
|
346
|
+
default: false,
|
|
347
|
+
description: 'Hide the sandbox status indicator in the footer.',
|
|
348
|
+
showInDialog: true,
|
|
349
|
+
},
|
|
350
|
+
hideModelInfo: {
|
|
351
|
+
type: 'boolean',
|
|
352
|
+
label: 'Hide Model Info',
|
|
353
|
+
category: 'UI',
|
|
354
|
+
requiresRestart: false,
|
|
355
|
+
default: false,
|
|
356
|
+
description: 'Hide the model name and context usage in the footer.',
|
|
357
|
+
showInDialog: true,
|
|
358
|
+
},
|
|
359
|
+
hideContextPercentage: {
|
|
360
|
+
type: 'boolean',
|
|
361
|
+
label: 'Hide Context Window Percentage',
|
|
362
|
+
category: 'UI',
|
|
363
|
+
requiresRestart: false,
|
|
364
|
+
default: true,
|
|
365
|
+
description: 'Hides the context window remaining percentage.',
|
|
366
|
+
showInDialog: true,
|
|
367
|
+
},
|
|
368
|
+
},
|
|
369
|
+
},
|
|
370
|
+
hideFooter: {
|
|
371
|
+
type: 'boolean',
|
|
372
|
+
label: 'Hide Footer',
|
|
373
|
+
category: 'UI',
|
|
374
|
+
requiresRestart: false,
|
|
375
|
+
default: false,
|
|
376
|
+
description: 'Hide the footer from the UI',
|
|
377
|
+
showInDialog: true,
|
|
378
|
+
},
|
|
379
|
+
showMemoryUsage: {
|
|
380
|
+
type: 'boolean',
|
|
381
|
+
label: 'Show Memory Usage',
|
|
382
|
+
category: 'UI',
|
|
383
|
+
requiresRestart: false,
|
|
384
|
+
default: false,
|
|
385
|
+
description: 'Display memory usage information in the UI',
|
|
386
|
+
showInDialog: true,
|
|
387
|
+
},
|
|
388
|
+
showLineNumbers: {
|
|
389
|
+
type: 'boolean',
|
|
390
|
+
label: 'Show Line Numbers',
|
|
391
|
+
category: 'UI',
|
|
392
|
+
requiresRestart: false,
|
|
393
|
+
default: true,
|
|
394
|
+
description: 'Show line numbers in the chat.',
|
|
395
|
+
showInDialog: true,
|
|
396
|
+
},
|
|
397
|
+
showCitations: {
|
|
398
|
+
type: 'boolean',
|
|
399
|
+
label: 'Show Citations',
|
|
400
|
+
category: 'UI',
|
|
401
|
+
requiresRestart: false,
|
|
402
|
+
default: false,
|
|
403
|
+
description: 'Show citations for generated text in the chat.',
|
|
404
|
+
showInDialog: true,
|
|
405
|
+
},
|
|
406
|
+
showModelInfoInChat: {
|
|
407
|
+
type: 'boolean',
|
|
408
|
+
label: 'Show Model Info In Chat',
|
|
409
|
+
category: 'UI',
|
|
410
|
+
requiresRestart: false,
|
|
411
|
+
default: false,
|
|
412
|
+
description: 'Show the model name in the chat for each model turn.',
|
|
413
|
+
showInDialog: true,
|
|
414
|
+
},
|
|
415
|
+
useFullWidth: {
|
|
416
|
+
type: 'boolean',
|
|
417
|
+
label: 'Use Full Width',
|
|
418
|
+
category: 'UI',
|
|
419
|
+
requiresRestart: false,
|
|
420
|
+
default: true,
|
|
421
|
+
description: 'Use the entire width of the terminal for output.',
|
|
422
|
+
showInDialog: true,
|
|
423
|
+
},
|
|
424
|
+
useAlternateBuffer: {
|
|
425
|
+
type: 'boolean',
|
|
426
|
+
label: 'Use Alternate Screen Buffer',
|
|
427
|
+
category: 'UI',
|
|
428
|
+
requiresRestart: true,
|
|
429
|
+
default: false,
|
|
430
|
+
description: 'Use an alternate screen buffer for the UI, preserving shell history.',
|
|
431
|
+
showInDialog: true,
|
|
432
|
+
},
|
|
433
|
+
incrementalRendering: {
|
|
434
|
+
type: 'boolean',
|
|
435
|
+
label: 'Incremental Rendering',
|
|
436
|
+
category: 'UI',
|
|
437
|
+
requiresRestart: true,
|
|
438
|
+
default: true,
|
|
439
|
+
description: 'Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled.',
|
|
440
|
+
showInDialog: true,
|
|
441
|
+
},
|
|
442
|
+
customWittyPhrases: {
|
|
443
|
+
type: 'array',
|
|
444
|
+
label: 'Custom Witty Phrases',
|
|
445
|
+
category: 'UI',
|
|
446
|
+
requiresRestart: false,
|
|
447
|
+
default: [],
|
|
448
|
+
description: oneLine `
|
|
449
|
+
Custom witty phrases to display during loading.
|
|
450
|
+
When provided, the CLI cycles through these instead of the defaults.
|
|
451
|
+
`,
|
|
452
|
+
showInDialog: false,
|
|
453
|
+
items: { type: 'string' },
|
|
454
|
+
},
|
|
455
|
+
accessibility: {
|
|
456
|
+
type: 'object',
|
|
457
|
+
label: 'Accessibility',
|
|
458
|
+
category: 'UI',
|
|
459
|
+
requiresRestart: true,
|
|
460
|
+
default: {},
|
|
461
|
+
description: 'Accessibility settings.',
|
|
462
|
+
showInDialog: false,
|
|
463
|
+
properties: {
|
|
464
|
+
disableLoadingPhrases: {
|
|
465
|
+
type: 'boolean',
|
|
466
|
+
label: 'Disable Loading Phrases',
|
|
467
|
+
category: 'UI',
|
|
468
|
+
requiresRestart: true,
|
|
469
|
+
default: false,
|
|
470
|
+
description: 'Disable loading phrases for accessibility',
|
|
471
|
+
showInDialog: true,
|
|
472
|
+
},
|
|
473
|
+
screenReader: {
|
|
474
|
+
type: 'boolean',
|
|
475
|
+
label: 'Screen Reader Mode',
|
|
476
|
+
category: 'UI',
|
|
477
|
+
requiresRestart: true,
|
|
478
|
+
default: false,
|
|
479
|
+
description: 'Render output in plain-text to be more screen reader accessible',
|
|
480
|
+
showInDialog: true,
|
|
481
|
+
},
|
|
482
|
+
},
|
|
483
|
+
},
|
|
484
|
+
},
|
|
485
|
+
},
|
|
486
|
+
ide: {
|
|
487
|
+
type: 'object',
|
|
488
|
+
label: 'IDE',
|
|
489
|
+
category: 'IDE',
|
|
490
|
+
requiresRestart: true,
|
|
491
|
+
default: {},
|
|
492
|
+
description: 'IDE integration settings.',
|
|
493
|
+
showInDialog: false,
|
|
494
|
+
properties: {
|
|
495
|
+
enabled: {
|
|
496
|
+
type: 'boolean',
|
|
497
|
+
label: 'IDE Mode',
|
|
498
|
+
category: 'IDE',
|
|
499
|
+
requiresRestart: true,
|
|
500
|
+
default: false,
|
|
501
|
+
description: 'Enable IDE integration mode',
|
|
502
|
+
showInDialog: true,
|
|
503
|
+
},
|
|
504
|
+
hasSeenNudge: {
|
|
505
|
+
type: 'boolean',
|
|
506
|
+
label: 'Has Seen IDE Integration Nudge',
|
|
507
|
+
category: 'IDE',
|
|
508
|
+
requiresRestart: false,
|
|
509
|
+
default: false,
|
|
510
|
+
description: 'Whether the user has seen the IDE integration nudge.',
|
|
511
|
+
showInDialog: false,
|
|
512
|
+
},
|
|
513
|
+
},
|
|
514
|
+
},
|
|
515
|
+
privacy: {
|
|
516
|
+
type: 'object',
|
|
517
|
+
label: 'Privacy',
|
|
518
|
+
category: 'Privacy',
|
|
519
|
+
requiresRestart: true,
|
|
520
|
+
default: {},
|
|
521
|
+
description: 'Privacy-related settings.',
|
|
522
|
+
showInDialog: false,
|
|
523
|
+
properties: {
|
|
524
|
+
usageStatisticsEnabled: {
|
|
525
|
+
type: 'boolean',
|
|
526
|
+
label: 'Enable Usage Statistics',
|
|
527
|
+
category: 'Privacy',
|
|
528
|
+
requiresRestart: true,
|
|
529
|
+
default: true,
|
|
530
|
+
description: 'Enable collection of usage statistics',
|
|
531
|
+
showInDialog: false,
|
|
532
|
+
},
|
|
533
|
+
},
|
|
534
|
+
},
|
|
535
|
+
telemetry: {
|
|
536
|
+
type: 'object',
|
|
537
|
+
label: 'Telemetry',
|
|
538
|
+
category: 'Advanced',
|
|
539
|
+
requiresRestart: true,
|
|
540
|
+
default: undefined,
|
|
541
|
+
description: 'Telemetry configuration.',
|
|
542
|
+
showInDialog: false,
|
|
543
|
+
ref: 'TelemetrySettings',
|
|
544
|
+
},
|
|
545
|
+
model: {
|
|
546
|
+
type: 'object',
|
|
547
|
+
label: 'Model',
|
|
548
|
+
category: 'Model',
|
|
549
|
+
requiresRestart: false,
|
|
550
|
+
default: {},
|
|
551
|
+
description: 'Settings related to the generative model.',
|
|
552
|
+
showInDialog: false,
|
|
553
|
+
properties: {
|
|
554
|
+
name: {
|
|
555
|
+
type: 'string',
|
|
556
|
+
label: 'Model',
|
|
557
|
+
category: 'Model',
|
|
558
|
+
requiresRestart: false,
|
|
559
|
+
default: undefined,
|
|
560
|
+
description: 'The Gemini model to use for conversations.',
|
|
561
|
+
showInDialog: false,
|
|
562
|
+
},
|
|
563
|
+
maxSessionTurns: {
|
|
564
|
+
type: 'number',
|
|
565
|
+
label: 'Max Session Turns',
|
|
566
|
+
category: 'Model',
|
|
567
|
+
requiresRestart: false,
|
|
568
|
+
default: -1,
|
|
569
|
+
description: 'Maximum number of user/model/tool turns to keep in a session. -1 means unlimited.',
|
|
570
|
+
showInDialog: true,
|
|
571
|
+
},
|
|
572
|
+
summarizeToolOutput: {
|
|
573
|
+
type: 'object',
|
|
574
|
+
label: 'Summarize Tool Output',
|
|
575
|
+
category: 'Model',
|
|
576
|
+
requiresRestart: false,
|
|
577
|
+
default: undefined,
|
|
578
|
+
description: oneLine `
|
|
579
|
+
Enables or disables summarization of tool output.
|
|
580
|
+
Configure per-tool token budgets (for example {"run_shell_command": {"tokenBudget": 2000}}).
|
|
581
|
+
Currently only the run_shell_command tool supports summarization.
|
|
582
|
+
`,
|
|
583
|
+
showInDialog: false,
|
|
584
|
+
additionalProperties: {
|
|
585
|
+
type: 'object',
|
|
586
|
+
description: 'Per-tool summarization settings with an optional tokenBudget.',
|
|
587
|
+
ref: 'SummarizeToolOutputSettings',
|
|
588
|
+
},
|
|
589
|
+
},
|
|
590
|
+
compressionThreshold: {
|
|
591
|
+
type: 'number',
|
|
592
|
+
label: 'Compression Threshold',
|
|
593
|
+
category: 'Model',
|
|
594
|
+
requiresRestart: true,
|
|
595
|
+
default: 0.5,
|
|
596
|
+
description: 'The fraction of context usage at which to trigger context compression (e.g. 0.2, 0.3).',
|
|
597
|
+
showInDialog: true,
|
|
598
|
+
},
|
|
599
|
+
skipNextSpeakerCheck: {
|
|
600
|
+
type: 'boolean',
|
|
601
|
+
label: 'Skip Next Speaker Check',
|
|
602
|
+
category: 'Model',
|
|
603
|
+
requiresRestart: false,
|
|
604
|
+
default: true,
|
|
605
|
+
description: 'Skip the next speaker check.',
|
|
606
|
+
showInDialog: true,
|
|
607
|
+
},
|
|
608
|
+
},
|
|
609
|
+
},
|
|
610
|
+
modelConfigs: {
|
|
611
|
+
type: 'object',
|
|
612
|
+
label: 'Model Configs',
|
|
613
|
+
category: 'Model',
|
|
614
|
+
requiresRestart: false,
|
|
615
|
+
default: DEFAULT_MODEL_CONFIGS,
|
|
616
|
+
description: 'Model configurations.',
|
|
617
|
+
showInDialog: false,
|
|
618
|
+
properties: {
|
|
619
|
+
aliases: {
|
|
620
|
+
type: 'object',
|
|
621
|
+
label: 'Model Config Aliases',
|
|
622
|
+
category: 'Model',
|
|
623
|
+
requiresRestart: false,
|
|
624
|
+
default: DEFAULT_MODEL_CONFIGS.aliases,
|
|
625
|
+
description: 'Named presets for model configs. Can be used in place of a model name and can inherit from other aliases using an `extends` property.',
|
|
626
|
+
showInDialog: false,
|
|
627
|
+
},
|
|
628
|
+
customAliases: {
|
|
629
|
+
type: 'object',
|
|
630
|
+
label: 'Custom Model Config Aliases',
|
|
631
|
+
category: 'Model',
|
|
632
|
+
requiresRestart: false,
|
|
633
|
+
default: {},
|
|
634
|
+
description: 'Custom named presets for model configs. These are merged with (and override) the built-in aliases.',
|
|
635
|
+
showInDialog: false,
|
|
636
|
+
},
|
|
637
|
+
customOverrides: {
|
|
638
|
+
type: 'array',
|
|
639
|
+
label: 'Custom Model Config Overrides',
|
|
640
|
+
category: 'Model',
|
|
641
|
+
requiresRestart: false,
|
|
642
|
+
default: [],
|
|
643
|
+
description: 'Custom model config overrides. These are merged with (and added to) the built-in overrides.',
|
|
644
|
+
showInDialog: false,
|
|
645
|
+
},
|
|
646
|
+
overrides: {
|
|
647
|
+
type: 'array',
|
|
648
|
+
label: 'Model Config Overrides',
|
|
649
|
+
category: 'Model',
|
|
650
|
+
requiresRestart: false,
|
|
651
|
+
default: [],
|
|
652
|
+
description: 'Apply specific configuration overrides based on matches, with a primary key of model (or alias). The most specific match will be used.',
|
|
653
|
+
showInDialog: false,
|
|
654
|
+
},
|
|
655
|
+
},
|
|
656
|
+
},
|
|
657
|
+
context: {
|
|
658
|
+
type: 'object',
|
|
659
|
+
label: 'Context',
|
|
660
|
+
category: 'Context',
|
|
661
|
+
requiresRestart: false,
|
|
662
|
+
default: {},
|
|
663
|
+
description: 'Settings for managing context provided to the model.',
|
|
664
|
+
showInDialog: false,
|
|
665
|
+
properties: {
|
|
666
|
+
fileName: {
|
|
667
|
+
type: 'string',
|
|
668
|
+
label: 'Context File Name',
|
|
669
|
+
category: 'Context',
|
|
670
|
+
requiresRestart: false,
|
|
671
|
+
default: undefined,
|
|
672
|
+
ref: 'StringOrStringArray',
|
|
673
|
+
description: 'The name of the context file or files to load into memory. Accepts either a single string or an array of strings.',
|
|
674
|
+
showInDialog: false,
|
|
675
|
+
},
|
|
676
|
+
importFormat: {
|
|
677
|
+
type: 'string',
|
|
678
|
+
label: 'Memory Import Format',
|
|
679
|
+
category: 'Context',
|
|
680
|
+
requiresRestart: false,
|
|
681
|
+
default: undefined,
|
|
682
|
+
description: 'The format to use when importing memory.',
|
|
683
|
+
showInDialog: false,
|
|
684
|
+
},
|
|
685
|
+
discoveryMaxDirs: {
|
|
686
|
+
type: 'number',
|
|
687
|
+
label: 'Memory Discovery Max Dirs',
|
|
688
|
+
category: 'Context',
|
|
689
|
+
requiresRestart: false,
|
|
690
|
+
default: 200,
|
|
691
|
+
description: 'Maximum number of directories to search for memory.',
|
|
692
|
+
showInDialog: true,
|
|
693
|
+
},
|
|
694
|
+
includeDirectories: {
|
|
695
|
+
type: 'array',
|
|
696
|
+
label: 'Include Directories',
|
|
697
|
+
category: 'Context',
|
|
698
|
+
requiresRestart: false,
|
|
699
|
+
default: [],
|
|
700
|
+
description: oneLine `
|
|
701
|
+
Additional directories to include in the workspace context.
|
|
702
|
+
Missing directories will be skipped with a warning.
|
|
703
|
+
`,
|
|
704
|
+
showInDialog: false,
|
|
705
|
+
items: { type: 'string' },
|
|
706
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
707
|
+
},
|
|
708
|
+
loadMemoryFromIncludeDirectories: {
|
|
709
|
+
type: 'boolean',
|
|
710
|
+
label: 'Load Memory From Include Directories',
|
|
711
|
+
category: 'Context',
|
|
712
|
+
requiresRestart: false,
|
|
713
|
+
default: false,
|
|
714
|
+
description: oneLine `
|
|
715
|
+
Controls how /memory refresh loads GEMINI.md files.
|
|
716
|
+
When true, include directories are scanned; when false, only the current directory is used.
|
|
717
|
+
`,
|
|
718
|
+
showInDialog: true,
|
|
719
|
+
},
|
|
720
|
+
fileFiltering: {
|
|
721
|
+
type: 'object',
|
|
722
|
+
label: 'File Filtering',
|
|
723
|
+
category: 'Context',
|
|
724
|
+
requiresRestart: true,
|
|
725
|
+
default: {},
|
|
726
|
+
description: 'Settings for git-aware file filtering.',
|
|
727
|
+
showInDialog: false,
|
|
728
|
+
properties: {
|
|
729
|
+
respectGitIgnore: {
|
|
730
|
+
type: 'boolean',
|
|
731
|
+
label: 'Respect .gitignore',
|
|
732
|
+
category: 'Context',
|
|
733
|
+
requiresRestart: true,
|
|
734
|
+
default: true,
|
|
735
|
+
description: 'Respect .gitignore files when searching',
|
|
736
|
+
showInDialog: true,
|
|
737
|
+
},
|
|
738
|
+
respectGeminiIgnore: {
|
|
739
|
+
type: 'boolean',
|
|
740
|
+
label: 'Respect .geminiignore',
|
|
741
|
+
category: 'Context',
|
|
742
|
+
requiresRestart: true,
|
|
743
|
+
default: true,
|
|
744
|
+
description: 'Respect .geminiignore files when searching',
|
|
745
|
+
showInDialog: true,
|
|
746
|
+
},
|
|
747
|
+
enableRecursiveFileSearch: {
|
|
748
|
+
type: 'boolean',
|
|
749
|
+
label: 'Enable Recursive File Search',
|
|
750
|
+
category: 'Context',
|
|
751
|
+
requiresRestart: true,
|
|
752
|
+
default: true,
|
|
753
|
+
description: oneLine `
|
|
754
|
+
Enable recursive file search functionality when completing @ references in the prompt.
|
|
755
|
+
`,
|
|
756
|
+
showInDialog: true,
|
|
757
|
+
},
|
|
758
|
+
disableFuzzySearch: {
|
|
759
|
+
type: 'boolean',
|
|
760
|
+
label: 'Disable Fuzzy Search',
|
|
761
|
+
category: 'Context',
|
|
762
|
+
requiresRestart: true,
|
|
763
|
+
default: false,
|
|
764
|
+
description: 'Disable fuzzy search when searching for files.',
|
|
765
|
+
showInDialog: true,
|
|
766
|
+
},
|
|
767
|
+
},
|
|
768
|
+
},
|
|
769
|
+
},
|
|
770
|
+
},
|
|
771
|
+
tools: {
|
|
772
|
+
type: 'object',
|
|
773
|
+
label: 'Tools',
|
|
774
|
+
category: 'Tools',
|
|
775
|
+
requiresRestart: true,
|
|
776
|
+
default: {},
|
|
777
|
+
description: 'Settings for built-in and custom tools.',
|
|
778
|
+
showInDialog: false,
|
|
779
|
+
properties: {
|
|
780
|
+
sandbox: {
|
|
781
|
+
type: 'string',
|
|
782
|
+
label: 'Sandbox',
|
|
783
|
+
category: 'Tools',
|
|
784
|
+
requiresRestart: true,
|
|
785
|
+
default: undefined,
|
|
786
|
+
ref: 'BooleanOrString',
|
|
787
|
+
description: oneLine `
|
|
788
|
+
Sandbox execution environment.
|
|
789
|
+
Set to a boolean to enable or disable the sandbox, or provide a string path to a sandbox profile.
|
|
790
|
+
`,
|
|
791
|
+
showInDialog: false,
|
|
792
|
+
},
|
|
793
|
+
shell: {
|
|
794
|
+
type: 'object',
|
|
795
|
+
label: 'Shell',
|
|
796
|
+
category: 'Tools',
|
|
797
|
+
requiresRestart: false,
|
|
798
|
+
default: {},
|
|
799
|
+
description: 'Settings for shell execution.',
|
|
800
|
+
showInDialog: false,
|
|
801
|
+
properties: {
|
|
802
|
+
enableInteractiveShell: {
|
|
803
|
+
type: 'boolean',
|
|
804
|
+
label: 'Enable Interactive Shell',
|
|
805
|
+
category: 'Tools',
|
|
806
|
+
requiresRestart: true,
|
|
807
|
+
default: true,
|
|
808
|
+
description: oneLine `
|
|
809
|
+
Use node-pty for an interactive shell experience.
|
|
810
|
+
Fallback to child_process still applies.
|
|
811
|
+
`,
|
|
812
|
+
showInDialog: true,
|
|
813
|
+
},
|
|
814
|
+
pager: {
|
|
815
|
+
type: 'string',
|
|
816
|
+
label: 'Pager',
|
|
817
|
+
category: 'Tools',
|
|
818
|
+
requiresRestart: false,
|
|
819
|
+
default: 'cat',
|
|
820
|
+
description: 'The pager command to use for shell output. Defaults to `cat`.',
|
|
821
|
+
showInDialog: false,
|
|
822
|
+
},
|
|
823
|
+
showColor: {
|
|
824
|
+
type: 'boolean',
|
|
825
|
+
label: 'Show Color',
|
|
826
|
+
category: 'Tools',
|
|
827
|
+
requiresRestart: false,
|
|
828
|
+
default: false,
|
|
829
|
+
description: 'Show color in shell output.',
|
|
830
|
+
showInDialog: true,
|
|
831
|
+
},
|
|
832
|
+
inactivityTimeout: {
|
|
833
|
+
type: 'number',
|
|
834
|
+
label: 'Inactivity Timeout',
|
|
835
|
+
category: 'Tools',
|
|
836
|
+
requiresRestart: false,
|
|
837
|
+
default: 300,
|
|
838
|
+
description: 'The maximum time in seconds allowed without output from the shell command. Defaults to 5 minutes.',
|
|
839
|
+
showInDialog: false,
|
|
840
|
+
},
|
|
841
|
+
},
|
|
842
|
+
},
|
|
843
|
+
autoAccept: {
|
|
844
|
+
type: 'boolean',
|
|
845
|
+
label: 'Auto Accept',
|
|
846
|
+
category: 'Tools',
|
|
847
|
+
requiresRestart: false,
|
|
848
|
+
default: false,
|
|
849
|
+
description: oneLine `
|
|
850
|
+
Automatically accept and execute tool calls that are considered safe (e.g., read-only operations).
|
|
851
|
+
`,
|
|
852
|
+
showInDialog: true,
|
|
853
|
+
},
|
|
854
|
+
core: {
|
|
855
|
+
type: 'array',
|
|
856
|
+
label: 'Core Tools',
|
|
857
|
+
category: 'Tools',
|
|
858
|
+
requiresRestart: true,
|
|
859
|
+
default: undefined,
|
|
860
|
+
description: oneLine `
|
|
861
|
+
Restrict the set of built-in tools with an allowlist.
|
|
862
|
+
Match semantics mirror tools.allowed; see the built-in tools documentation for available names.
|
|
863
|
+
`,
|
|
864
|
+
showInDialog: false,
|
|
865
|
+
items: { type: 'string' },
|
|
866
|
+
},
|
|
867
|
+
allowed: {
|
|
868
|
+
type: 'array',
|
|
869
|
+
label: 'Allowed Tools',
|
|
870
|
+
category: 'Advanced',
|
|
871
|
+
requiresRestart: true,
|
|
872
|
+
default: undefined,
|
|
873
|
+
description: oneLine `
|
|
874
|
+
Tool names that bypass the confirmation dialog.
|
|
875
|
+
Useful for trusted commands (for example ["run_shell_command(git)", "run_shell_command(npm test)"]).
|
|
876
|
+
See shell tool command restrictions for matching details.
|
|
877
|
+
`,
|
|
878
|
+
showInDialog: false,
|
|
879
|
+
items: { type: 'string' },
|
|
880
|
+
},
|
|
881
|
+
exclude: {
|
|
882
|
+
type: 'array',
|
|
883
|
+
label: 'Exclude Tools',
|
|
884
|
+
category: 'Tools',
|
|
885
|
+
requiresRestart: true,
|
|
886
|
+
default: undefined,
|
|
887
|
+
description: 'Tool names to exclude from discovery.',
|
|
888
|
+
showInDialog: false,
|
|
889
|
+
items: { type: 'string' },
|
|
890
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
891
|
+
},
|
|
892
|
+
discoveryCommand: {
|
|
893
|
+
type: 'string',
|
|
894
|
+
label: 'Tool Discovery Command',
|
|
895
|
+
category: 'Tools',
|
|
896
|
+
requiresRestart: true,
|
|
897
|
+
default: undefined,
|
|
898
|
+
description: 'Command to run for tool discovery.',
|
|
899
|
+
showInDialog: false,
|
|
900
|
+
},
|
|
901
|
+
callCommand: {
|
|
902
|
+
type: 'string',
|
|
903
|
+
label: 'Tool Call Command',
|
|
904
|
+
category: 'Tools',
|
|
905
|
+
requiresRestart: true,
|
|
906
|
+
default: undefined,
|
|
907
|
+
description: oneLine `
|
|
908
|
+
Defines a custom shell command for invoking discovered tools.
|
|
909
|
+
The command must take the tool name as the first argument, read JSON arguments from stdin, and emit JSON results on stdout.
|
|
910
|
+
`,
|
|
911
|
+
showInDialog: false,
|
|
912
|
+
},
|
|
913
|
+
useRipgrep: {
|
|
914
|
+
type: 'boolean',
|
|
915
|
+
label: 'Use Ripgrep',
|
|
916
|
+
category: 'Tools',
|
|
917
|
+
requiresRestart: false,
|
|
918
|
+
default: true,
|
|
919
|
+
description: 'Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.',
|
|
920
|
+
showInDialog: true,
|
|
921
|
+
},
|
|
922
|
+
enableToolOutputTruncation: {
|
|
923
|
+
type: 'boolean',
|
|
924
|
+
label: 'Enable Tool Output Truncation',
|
|
925
|
+
category: 'General',
|
|
926
|
+
requiresRestart: true,
|
|
927
|
+
default: true,
|
|
928
|
+
description: 'Enable truncation of large tool outputs.',
|
|
929
|
+
showInDialog: true,
|
|
930
|
+
},
|
|
931
|
+
truncateToolOutputThreshold: {
|
|
932
|
+
type: 'number',
|
|
933
|
+
label: 'Tool Output Truncation Threshold',
|
|
934
|
+
category: 'General',
|
|
935
|
+
requiresRestart: true,
|
|
936
|
+
default: DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD,
|
|
937
|
+
description: 'Truncate tool output if it is larger than this many characters. Set to -1 to disable.',
|
|
938
|
+
showInDialog: true,
|
|
939
|
+
},
|
|
940
|
+
truncateToolOutputLines: {
|
|
941
|
+
type: 'number',
|
|
942
|
+
label: 'Tool Output Truncation Lines',
|
|
943
|
+
category: 'General',
|
|
944
|
+
requiresRestart: true,
|
|
945
|
+
default: DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES,
|
|
946
|
+
description: 'The number of lines to keep when truncating tool output.',
|
|
947
|
+
showInDialog: true,
|
|
948
|
+
},
|
|
949
|
+
enableMessageBusIntegration: {
|
|
950
|
+
type: 'boolean',
|
|
951
|
+
label: 'Enable Message Bus Integration',
|
|
952
|
+
category: 'Tools',
|
|
953
|
+
requiresRestart: true,
|
|
954
|
+
default: true,
|
|
955
|
+
description: oneLine `
|
|
956
|
+
Enable policy-based tool confirmation via message bus integration.
|
|
957
|
+
When enabled, tools automatically respect policy engine decisions (ALLOW/DENY/ASK_USER) without requiring individual tool implementations.
|
|
958
|
+
`,
|
|
959
|
+
showInDialog: true,
|
|
960
|
+
},
|
|
961
|
+
enableHooks: {
|
|
962
|
+
type: 'boolean',
|
|
963
|
+
label: 'Enable Hooks System',
|
|
964
|
+
category: 'Advanced',
|
|
965
|
+
requiresRestart: true,
|
|
966
|
+
default: false,
|
|
967
|
+
description: 'Enable the hooks system for intercepting and customizing Gemini CLI behavior. When enabled, hooks configured in settings will execute at appropriate lifecycle events (BeforeTool, AfterTool, BeforeModel, etc.). Requires MessageBus integration.',
|
|
968
|
+
showInDialog: false,
|
|
969
|
+
},
|
|
970
|
+
},
|
|
971
|
+
},
|
|
972
|
+
mcp: {
|
|
973
|
+
type: 'object',
|
|
974
|
+
label: 'MCP',
|
|
975
|
+
category: 'MCP',
|
|
976
|
+
requiresRestart: true,
|
|
977
|
+
default: {},
|
|
978
|
+
description: 'Settings for Model Context Protocol (MCP) servers.',
|
|
979
|
+
showInDialog: false,
|
|
980
|
+
properties: {
|
|
981
|
+
serverCommand: {
|
|
982
|
+
type: 'string',
|
|
983
|
+
label: 'MCP Server Command',
|
|
984
|
+
category: 'MCP',
|
|
985
|
+
requiresRestart: true,
|
|
986
|
+
default: undefined,
|
|
987
|
+
description: 'Command to start an MCP server.',
|
|
988
|
+
showInDialog: false,
|
|
989
|
+
},
|
|
990
|
+
allowed: {
|
|
991
|
+
type: 'array',
|
|
992
|
+
label: 'Allow MCP Servers',
|
|
993
|
+
category: 'MCP',
|
|
994
|
+
requiresRestart: true,
|
|
995
|
+
default: undefined,
|
|
996
|
+
description: 'A list of MCP servers to allow.',
|
|
997
|
+
showInDialog: false,
|
|
998
|
+
items: { type: 'string' },
|
|
999
|
+
},
|
|
1000
|
+
excluded: {
|
|
1001
|
+
type: 'array',
|
|
1002
|
+
label: 'Exclude MCP Servers',
|
|
1003
|
+
category: 'MCP',
|
|
1004
|
+
requiresRestart: true,
|
|
1005
|
+
default: undefined,
|
|
1006
|
+
description: 'A list of MCP servers to exclude.',
|
|
1007
|
+
showInDialog: false,
|
|
1008
|
+
items: { type: 'string' },
|
|
1009
|
+
},
|
|
1010
|
+
},
|
|
1011
|
+
},
|
|
1012
|
+
useSmartEdit: {
|
|
1013
|
+
type: 'boolean',
|
|
1014
|
+
label: 'Use Smart Edit',
|
|
1015
|
+
category: 'Advanced',
|
|
1016
|
+
requiresRestart: false,
|
|
1017
|
+
default: true,
|
|
1018
|
+
description: 'Enable the smart-edit tool instead of the replace tool.',
|
|
1019
|
+
showInDialog: false,
|
|
1020
|
+
},
|
|
1021
|
+
useWriteTodos: {
|
|
1022
|
+
type: 'boolean',
|
|
1023
|
+
label: 'Use WriteTodos',
|
|
1024
|
+
category: 'Advanced',
|
|
1025
|
+
requiresRestart: false,
|
|
1026
|
+
default: true,
|
|
1027
|
+
description: 'Enable the write_todos tool.',
|
|
1028
|
+
showInDialog: false,
|
|
1029
|
+
},
|
|
1030
|
+
security: {
|
|
1031
|
+
type: 'object',
|
|
1032
|
+
label: 'Security',
|
|
1033
|
+
category: 'Security',
|
|
1034
|
+
requiresRestart: true,
|
|
1035
|
+
default: {},
|
|
1036
|
+
description: 'Security-related settings.',
|
|
1037
|
+
showInDialog: false,
|
|
1038
|
+
properties: {
|
|
1039
|
+
disableYoloMode: {
|
|
1040
|
+
type: 'boolean',
|
|
1041
|
+
label: 'Disable YOLO Mode',
|
|
1042
|
+
category: 'Security',
|
|
1043
|
+
requiresRestart: true,
|
|
1044
|
+
default: false,
|
|
1045
|
+
description: 'Disable YOLO mode, even if enabled by a flag.',
|
|
1046
|
+
showInDialog: true,
|
|
1047
|
+
},
|
|
1048
|
+
blockGitExtensions: {
|
|
1049
|
+
type: 'boolean',
|
|
1050
|
+
label: 'Blocks extensions from Git',
|
|
1051
|
+
category: 'Security',
|
|
1052
|
+
requiresRestart: true,
|
|
1053
|
+
default: false,
|
|
1054
|
+
description: 'Blocks installing and loading extensions from Git.',
|
|
1055
|
+
showInDialog: true,
|
|
1056
|
+
},
|
|
1057
|
+
folderTrust: {
|
|
1058
|
+
type: 'object',
|
|
1059
|
+
label: 'Folder Trust',
|
|
1060
|
+
category: 'Security',
|
|
1061
|
+
requiresRestart: false,
|
|
1062
|
+
default: {},
|
|
1063
|
+
description: 'Settings for folder trust.',
|
|
1064
|
+
showInDialog: false,
|
|
1065
|
+
properties: {
|
|
1066
|
+
enabled: {
|
|
1067
|
+
type: 'boolean',
|
|
1068
|
+
label: 'Folder Trust',
|
|
1069
|
+
category: 'Security',
|
|
1070
|
+
requiresRestart: true,
|
|
1071
|
+
default: false,
|
|
1072
|
+
description: 'Setting to track whether Folder trust is enabled.',
|
|
1073
|
+
showInDialog: true,
|
|
1074
|
+
},
|
|
1075
|
+
},
|
|
1076
|
+
},
|
|
1077
|
+
auth: {
|
|
1078
|
+
type: 'object',
|
|
1079
|
+
label: 'Authentication',
|
|
1080
|
+
category: 'Security',
|
|
1081
|
+
requiresRestart: true,
|
|
1082
|
+
default: {},
|
|
1083
|
+
description: 'Authentication settings.',
|
|
1084
|
+
showInDialog: false,
|
|
1085
|
+
properties: {
|
|
1086
|
+
selectedType: {
|
|
1087
|
+
type: 'string',
|
|
1088
|
+
label: 'Selected Auth Type',
|
|
1089
|
+
category: 'Security',
|
|
1090
|
+
requiresRestart: true,
|
|
1091
|
+
default: undefined,
|
|
1092
|
+
description: 'The currently selected authentication type.',
|
|
1093
|
+
showInDialog: false,
|
|
1094
|
+
},
|
|
1095
|
+
enforcedType: {
|
|
1096
|
+
type: 'string',
|
|
1097
|
+
label: 'Enforced Auth Type',
|
|
1098
|
+
category: 'Advanced',
|
|
1099
|
+
requiresRestart: true,
|
|
1100
|
+
default: undefined,
|
|
1101
|
+
description: 'The required auth type. If this does not match the selected auth type, the user will be prompted to re-authenticate.',
|
|
1102
|
+
showInDialog: false,
|
|
1103
|
+
},
|
|
1104
|
+
useExternal: {
|
|
1105
|
+
type: 'boolean',
|
|
1106
|
+
label: 'Use External Auth',
|
|
1107
|
+
category: 'Security',
|
|
1108
|
+
requiresRestart: true,
|
|
1109
|
+
default: undefined,
|
|
1110
|
+
description: 'Whether to use an external authentication flow.',
|
|
1111
|
+
showInDialog: false,
|
|
1112
|
+
},
|
|
1113
|
+
},
|
|
1114
|
+
},
|
|
1115
|
+
},
|
|
1116
|
+
},
|
|
1117
|
+
advanced: {
|
|
1118
|
+
type: 'object',
|
|
1119
|
+
label: 'Advanced',
|
|
1120
|
+
category: 'Advanced',
|
|
1121
|
+
requiresRestart: true,
|
|
1122
|
+
default: {},
|
|
1123
|
+
description: 'Advanced settings for power users.',
|
|
1124
|
+
showInDialog: false,
|
|
1125
|
+
properties: {
|
|
1126
|
+
autoConfigureMemory: {
|
|
1127
|
+
type: 'boolean',
|
|
1128
|
+
label: 'Auto Configure Max Old Space Size',
|
|
1129
|
+
category: 'Advanced',
|
|
1130
|
+
requiresRestart: true,
|
|
1131
|
+
default: false,
|
|
1132
|
+
description: 'Automatically configure Node.js memory limits',
|
|
1133
|
+
showInDialog: false,
|
|
1134
|
+
},
|
|
1135
|
+
dnsResolutionOrder: {
|
|
1136
|
+
type: 'string',
|
|
1137
|
+
label: 'DNS Resolution Order',
|
|
1138
|
+
category: 'Advanced',
|
|
1139
|
+
requiresRestart: true,
|
|
1140
|
+
default: undefined,
|
|
1141
|
+
description: 'The DNS resolution order.',
|
|
1142
|
+
showInDialog: false,
|
|
1143
|
+
},
|
|
1144
|
+
excludedEnvVars: {
|
|
1145
|
+
type: 'array',
|
|
1146
|
+
label: 'Excluded Project Environment Variables',
|
|
1147
|
+
category: 'Advanced',
|
|
1148
|
+
requiresRestart: false,
|
|
1149
|
+
default: ['DEBUG', 'DEBUG_MODE'],
|
|
1150
|
+
description: 'Environment variables to exclude from project context.',
|
|
1151
|
+
showInDialog: false,
|
|
1152
|
+
items: { type: 'string' },
|
|
1153
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1154
|
+
},
|
|
1155
|
+
bugCommand: {
|
|
1156
|
+
type: 'object',
|
|
1157
|
+
label: 'Bug Command',
|
|
1158
|
+
category: 'Advanced',
|
|
1159
|
+
requiresRestart: false,
|
|
1160
|
+
default: undefined,
|
|
1161
|
+
description: 'Configuration for the bug report command.',
|
|
1162
|
+
showInDialog: false,
|
|
1163
|
+
ref: 'BugCommandSettings',
|
|
1164
|
+
},
|
|
1165
|
+
},
|
|
1166
|
+
},
|
|
1167
|
+
experimental: {
|
|
1168
|
+
type: 'object',
|
|
1169
|
+
label: 'Experimental',
|
|
1170
|
+
category: 'Experimental',
|
|
1171
|
+
requiresRestart: true,
|
|
1172
|
+
default: {},
|
|
1173
|
+
description: 'Setting to enable experimental features',
|
|
1174
|
+
showInDialog: false,
|
|
1175
|
+
properties: {
|
|
1176
|
+
enableAgents: {
|
|
1177
|
+
type: 'boolean',
|
|
1178
|
+
label: 'Enable Agents',
|
|
1179
|
+
category: 'Experimental',
|
|
1180
|
+
requiresRestart: true,
|
|
1181
|
+
default: false,
|
|
1182
|
+
description: 'Enable local and remote subagents.',
|
|
1183
|
+
showInDialog: false,
|
|
1184
|
+
},
|
|
1185
|
+
extensionManagement: {
|
|
1186
|
+
type: 'boolean',
|
|
1187
|
+
label: 'Extension Management',
|
|
1188
|
+
category: 'Experimental',
|
|
1189
|
+
requiresRestart: true,
|
|
1190
|
+
default: true,
|
|
1191
|
+
description: 'Enable extension management features.',
|
|
1192
|
+
showInDialog: false,
|
|
1193
|
+
},
|
|
1194
|
+
extensionReloading: {
|
|
1195
|
+
type: 'boolean',
|
|
1196
|
+
label: 'Extension Reloading',
|
|
1197
|
+
category: 'Experimental',
|
|
1198
|
+
requiresRestart: true,
|
|
1199
|
+
default: false,
|
|
1200
|
+
description: 'Enables extension loading/unloading within the CLI session.',
|
|
1201
|
+
showInDialog: false,
|
|
1202
|
+
},
|
|
1203
|
+
isModelAvailabilityServiceEnabled: {
|
|
1204
|
+
type: 'boolean',
|
|
1205
|
+
label: 'Enable Model Availability Service',
|
|
1206
|
+
category: 'Experimental',
|
|
1207
|
+
requiresRestart: true,
|
|
1208
|
+
default: false,
|
|
1209
|
+
description: 'Enable model routing using new availability service.',
|
|
1210
|
+
showInDialog: false,
|
|
1211
|
+
},
|
|
1212
|
+
jitContext: {
|
|
1213
|
+
type: 'boolean',
|
|
1214
|
+
label: 'JIT Context Loading',
|
|
1215
|
+
category: 'Experimental',
|
|
1216
|
+
requiresRestart: true,
|
|
1217
|
+
default: false,
|
|
1218
|
+
description: 'Enable Just-In-Time (JIT) context loading.',
|
|
1219
|
+
showInDialog: false,
|
|
1220
|
+
},
|
|
1221
|
+
codebaseInvestigatorSettings: {
|
|
1222
|
+
type: 'object',
|
|
1223
|
+
label: 'Codebase Investigator Settings',
|
|
1224
|
+
category: 'Experimental',
|
|
1225
|
+
requiresRestart: true,
|
|
1226
|
+
default: {},
|
|
1227
|
+
description: 'Configuration for Codebase Investigator.',
|
|
1228
|
+
showInDialog: false,
|
|
1229
|
+
properties: {
|
|
1230
|
+
enabled: {
|
|
1231
|
+
type: 'boolean',
|
|
1232
|
+
label: 'Enable Codebase Investigator',
|
|
1233
|
+
category: 'Experimental',
|
|
1234
|
+
requiresRestart: true,
|
|
1235
|
+
default: true,
|
|
1236
|
+
description: 'Enable the Codebase Investigator agent.',
|
|
1237
|
+
showInDialog: true,
|
|
1238
|
+
},
|
|
1239
|
+
maxNumTurns: {
|
|
1240
|
+
type: 'number',
|
|
1241
|
+
label: 'Codebase Investigator Max Num Turns',
|
|
1242
|
+
category: 'Experimental',
|
|
1243
|
+
requiresRestart: true,
|
|
1244
|
+
default: 10,
|
|
1245
|
+
description: 'Maximum number of turns for the Codebase Investigator agent.',
|
|
1246
|
+
showInDialog: true,
|
|
1247
|
+
},
|
|
1248
|
+
maxTimeMinutes: {
|
|
1249
|
+
type: 'number',
|
|
1250
|
+
label: 'Max Time (Minutes)',
|
|
1251
|
+
category: 'Experimental',
|
|
1252
|
+
requiresRestart: true,
|
|
1253
|
+
default: 3,
|
|
1254
|
+
description: 'Maximum time for the Codebase Investigator agent (in minutes).',
|
|
1255
|
+
showInDialog: false,
|
|
1256
|
+
},
|
|
1257
|
+
thinkingBudget: {
|
|
1258
|
+
type: 'number',
|
|
1259
|
+
label: 'Thinking Budget',
|
|
1260
|
+
category: 'Experimental',
|
|
1261
|
+
requiresRestart: true,
|
|
1262
|
+
default: 8192,
|
|
1263
|
+
description: 'The thinking budget for the Codebase Investigator agent.',
|
|
1264
|
+
showInDialog: false,
|
|
1265
|
+
},
|
|
1266
|
+
model: {
|
|
1267
|
+
type: 'string',
|
|
1268
|
+
label: 'Model',
|
|
1269
|
+
category: 'Experimental',
|
|
1270
|
+
requiresRestart: true,
|
|
1271
|
+
default: GEMINI_MODEL_ALIAS_PRO,
|
|
1272
|
+
description: 'The model to use for the Codebase Investigator agent.',
|
|
1273
|
+
showInDialog: false,
|
|
1274
|
+
},
|
|
1275
|
+
},
|
|
1276
|
+
},
|
|
1277
|
+
},
|
|
1278
|
+
},
|
|
1279
|
+
extensions: {
|
|
1280
|
+
type: 'object',
|
|
1281
|
+
label: 'Extensions',
|
|
1282
|
+
category: 'Extensions',
|
|
1283
|
+
requiresRestart: true,
|
|
1284
|
+
default: {},
|
|
1285
|
+
description: 'Settings for extensions.',
|
|
1286
|
+
showInDialog: false,
|
|
1287
|
+
properties: {
|
|
1288
|
+
disabled: {
|
|
1289
|
+
type: 'array',
|
|
1290
|
+
label: 'Disabled Extensions',
|
|
1291
|
+
category: 'Extensions',
|
|
1292
|
+
requiresRestart: true,
|
|
1293
|
+
default: [],
|
|
1294
|
+
description: 'List of disabled extensions.',
|
|
1295
|
+
showInDialog: false,
|
|
1296
|
+
items: { type: 'string' },
|
|
1297
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1298
|
+
},
|
|
1299
|
+
workspacesWithMigrationNudge: {
|
|
1300
|
+
type: 'array',
|
|
1301
|
+
label: 'Workspaces with Migration Nudge',
|
|
1302
|
+
category: 'Extensions',
|
|
1303
|
+
requiresRestart: false,
|
|
1304
|
+
default: [],
|
|
1305
|
+
description: 'List of workspaces for which the migration nudge has been shown.',
|
|
1306
|
+
showInDialog: false,
|
|
1307
|
+
items: { type: 'string' },
|
|
1308
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1309
|
+
},
|
|
1310
|
+
},
|
|
1311
|
+
},
|
|
1312
|
+
hooks: {
|
|
1313
|
+
type: 'object',
|
|
1314
|
+
label: 'Hooks',
|
|
1315
|
+
category: 'Advanced',
|
|
1316
|
+
requiresRestart: false,
|
|
1317
|
+
default: {},
|
|
1318
|
+
description: 'Hook configurations for intercepting and customizing agent behavior.',
|
|
1319
|
+
showInDialog: false,
|
|
1320
|
+
properties: {
|
|
1321
|
+
disabled: {
|
|
1322
|
+
type: 'array',
|
|
1323
|
+
label: 'Disabled Hooks',
|
|
1324
|
+
category: 'Advanced',
|
|
1325
|
+
requiresRestart: false,
|
|
1326
|
+
default: [],
|
|
1327
|
+
description: 'List of hook names (commands) that should be disabled. Hooks in this list will not execute even if configured.',
|
|
1328
|
+
showInDialog: false,
|
|
1329
|
+
items: {
|
|
1330
|
+
type: 'string',
|
|
1331
|
+
description: 'Hook command name',
|
|
1332
|
+
},
|
|
1333
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1334
|
+
},
|
|
1335
|
+
BeforeTool: {
|
|
1336
|
+
type: 'array',
|
|
1337
|
+
label: 'Before Tool Hooks',
|
|
1338
|
+
category: 'Advanced',
|
|
1339
|
+
requiresRestart: false,
|
|
1340
|
+
default: [],
|
|
1341
|
+
description: 'Hooks that execute before tool execution. Can intercept, validate, or modify tool calls.',
|
|
1342
|
+
showInDialog: false,
|
|
1343
|
+
ref: 'HookDefinitionArray',
|
|
1344
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1345
|
+
},
|
|
1346
|
+
AfterTool: {
|
|
1347
|
+
type: 'array',
|
|
1348
|
+
label: 'After Tool Hooks',
|
|
1349
|
+
category: 'Advanced',
|
|
1350
|
+
requiresRestart: false,
|
|
1351
|
+
default: [],
|
|
1352
|
+
description: 'Hooks that execute after tool execution. Can process results, log outputs, or trigger follow-up actions.',
|
|
1353
|
+
showInDialog: false,
|
|
1354
|
+
ref: 'HookDefinitionArray',
|
|
1355
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1356
|
+
},
|
|
1357
|
+
BeforeAgent: {
|
|
1358
|
+
type: 'array',
|
|
1359
|
+
label: 'Before Agent Hooks',
|
|
1360
|
+
category: 'Advanced',
|
|
1361
|
+
requiresRestart: false,
|
|
1362
|
+
default: [],
|
|
1363
|
+
description: 'Hooks that execute before agent loop starts. Can set up context or initialize resources.',
|
|
1364
|
+
showInDialog: false,
|
|
1365
|
+
ref: 'HookDefinitionArray',
|
|
1366
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1367
|
+
},
|
|
1368
|
+
AfterAgent: {
|
|
1369
|
+
type: 'array',
|
|
1370
|
+
label: 'After Agent Hooks',
|
|
1371
|
+
category: 'Advanced',
|
|
1372
|
+
requiresRestart: false,
|
|
1373
|
+
default: [],
|
|
1374
|
+
description: 'Hooks that execute after agent loop completes. Can perform cleanup or summarize results.',
|
|
1375
|
+
showInDialog: false,
|
|
1376
|
+
ref: 'HookDefinitionArray',
|
|
1377
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1378
|
+
},
|
|
1379
|
+
Notification: {
|
|
1380
|
+
type: 'array',
|
|
1381
|
+
label: 'Notification Hooks',
|
|
1382
|
+
category: 'Advanced',
|
|
1383
|
+
requiresRestart: false,
|
|
1384
|
+
default: [],
|
|
1385
|
+
description: 'Hooks that execute on notification events (errors, warnings, info). Can log or alert on specific conditions.',
|
|
1386
|
+
showInDialog: false,
|
|
1387
|
+
ref: 'HookDefinitionArray',
|
|
1388
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1389
|
+
},
|
|
1390
|
+
SessionStart: {
|
|
1391
|
+
type: 'array',
|
|
1392
|
+
label: 'Session Start Hooks',
|
|
1393
|
+
category: 'Advanced',
|
|
1394
|
+
requiresRestart: false,
|
|
1395
|
+
default: [],
|
|
1396
|
+
description: 'Hooks that execute when a session starts. Can initialize session-specific resources or state.',
|
|
1397
|
+
showInDialog: false,
|
|
1398
|
+
ref: 'HookDefinitionArray',
|
|
1399
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1400
|
+
},
|
|
1401
|
+
SessionEnd: {
|
|
1402
|
+
type: 'array',
|
|
1403
|
+
label: 'Session End Hooks',
|
|
1404
|
+
category: 'Advanced',
|
|
1405
|
+
requiresRestart: false,
|
|
1406
|
+
default: [],
|
|
1407
|
+
description: 'Hooks that execute when a session ends. Can perform cleanup or persist session data.',
|
|
1408
|
+
showInDialog: false,
|
|
1409
|
+
ref: 'HookDefinitionArray',
|
|
1410
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1411
|
+
},
|
|
1412
|
+
PreCompress: {
|
|
1413
|
+
type: 'array',
|
|
1414
|
+
label: 'Pre-Compress Hooks',
|
|
1415
|
+
category: 'Advanced',
|
|
1416
|
+
requiresRestart: false,
|
|
1417
|
+
default: [],
|
|
1418
|
+
description: 'Hooks that execute before chat history compression. Can back up or analyze conversation before compression.',
|
|
1419
|
+
showInDialog: false,
|
|
1420
|
+
ref: 'HookDefinitionArray',
|
|
1421
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1422
|
+
},
|
|
1423
|
+
BeforeModel: {
|
|
1424
|
+
type: 'array',
|
|
1425
|
+
label: 'Before Model Hooks',
|
|
1426
|
+
category: 'Advanced',
|
|
1427
|
+
requiresRestart: false,
|
|
1428
|
+
default: [],
|
|
1429
|
+
description: 'Hooks that execute before LLM requests. Can modify prompts, inject context, or control model parameters.',
|
|
1430
|
+
showInDialog: false,
|
|
1431
|
+
ref: 'HookDefinitionArray',
|
|
1432
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1433
|
+
},
|
|
1434
|
+
AfterModel: {
|
|
1435
|
+
type: 'array',
|
|
1436
|
+
label: 'After Model Hooks',
|
|
1437
|
+
category: 'Advanced',
|
|
1438
|
+
requiresRestart: false,
|
|
1439
|
+
default: [],
|
|
1440
|
+
description: 'Hooks that execute after LLM responses. Can process outputs, extract information, or log interactions.',
|
|
1441
|
+
showInDialog: false,
|
|
1442
|
+
ref: 'HookDefinitionArray',
|
|
1443
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1444
|
+
},
|
|
1445
|
+
BeforeToolSelection: {
|
|
1446
|
+
type: 'array',
|
|
1447
|
+
label: 'Before Tool Selection Hooks',
|
|
1448
|
+
category: 'Advanced',
|
|
1449
|
+
requiresRestart: false,
|
|
1450
|
+
default: [],
|
|
1451
|
+
description: 'Hooks that execute before tool selection. Can filter or prioritize available tools dynamically.',
|
|
1452
|
+
showInDialog: false,
|
|
1453
|
+
ref: 'HookDefinitionArray',
|
|
1454
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1455
|
+
},
|
|
1456
|
+
},
|
|
1457
|
+
additionalProperties: {
|
|
1458
|
+
type: 'array',
|
|
1459
|
+
description: 'Custom hook event arrays that contain hook definitions for user-defined events',
|
|
1460
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1461
|
+
},
|
|
1462
|
+
},
|
|
1463
|
+
};
|
|
1464
|
+
export const SETTINGS_SCHEMA_DEFINITIONS = {
|
|
1465
|
+
MCPServerConfig: {
|
|
1466
|
+
type: 'object',
|
|
1467
|
+
description: 'Definition of a Model Context Protocol (MCP) server configuration.',
|
|
1468
|
+
additionalProperties: false,
|
|
1469
|
+
properties: {
|
|
1470
|
+
command: {
|
|
1471
|
+
type: 'string',
|
|
1472
|
+
description: 'Executable invoked for stdio transport.',
|
|
1473
|
+
},
|
|
1474
|
+
args: {
|
|
1475
|
+
type: 'array',
|
|
1476
|
+
description: 'Command-line arguments for the stdio transport command.',
|
|
1477
|
+
items: { type: 'string' },
|
|
1478
|
+
},
|
|
1479
|
+
env: {
|
|
1480
|
+
type: 'object',
|
|
1481
|
+
description: 'Environment variables to set for the server process.',
|
|
1482
|
+
additionalProperties: { type: 'string' },
|
|
1483
|
+
},
|
|
1484
|
+
cwd: {
|
|
1485
|
+
type: 'string',
|
|
1486
|
+
description: 'Working directory for the server process.',
|
|
1487
|
+
},
|
|
1488
|
+
url: {
|
|
1489
|
+
type: 'string',
|
|
1490
|
+
description: 'SSE transport URL.',
|
|
1491
|
+
},
|
|
1492
|
+
httpUrl: {
|
|
1493
|
+
type: 'string',
|
|
1494
|
+
description: 'Streaming HTTP transport URL.',
|
|
1495
|
+
},
|
|
1496
|
+
headers: {
|
|
1497
|
+
type: 'object',
|
|
1498
|
+
description: 'Additional HTTP headers sent to the server.',
|
|
1499
|
+
additionalProperties: { type: 'string' },
|
|
1500
|
+
},
|
|
1501
|
+
tcp: {
|
|
1502
|
+
type: 'string',
|
|
1503
|
+
description: 'TCP address for websocket transport.',
|
|
1504
|
+
},
|
|
1505
|
+
timeout: {
|
|
1506
|
+
type: 'number',
|
|
1507
|
+
description: 'Timeout in milliseconds for MCP requests.',
|
|
1508
|
+
},
|
|
1509
|
+
trust: {
|
|
1510
|
+
type: 'boolean',
|
|
1511
|
+
description: 'Marks the server as trusted. Trusted servers may gain additional capabilities.',
|
|
1512
|
+
},
|
|
1513
|
+
description: {
|
|
1514
|
+
type: 'string',
|
|
1515
|
+
description: 'Human-readable description of the server.',
|
|
1516
|
+
},
|
|
1517
|
+
includeTools: {
|
|
1518
|
+
type: 'array',
|
|
1519
|
+
description: 'Subset of tools that should be enabled for this server. When omitted all tools are enabled.',
|
|
1520
|
+
items: { type: 'string' },
|
|
1521
|
+
},
|
|
1522
|
+
excludeTools: {
|
|
1523
|
+
type: 'array',
|
|
1524
|
+
description: 'Tools that should be disabled for this server even if exposed.',
|
|
1525
|
+
items: { type: 'string' },
|
|
1526
|
+
},
|
|
1527
|
+
extension: {
|
|
1528
|
+
type: 'object',
|
|
1529
|
+
description: 'Metadata describing the Gemini CLI extension that owns this MCP server.',
|
|
1530
|
+
additionalProperties: { type: ['string', 'boolean', 'number'] },
|
|
1531
|
+
},
|
|
1532
|
+
oauth: {
|
|
1533
|
+
type: 'object',
|
|
1534
|
+
description: 'OAuth configuration for authenticating with the server.',
|
|
1535
|
+
additionalProperties: true,
|
|
1536
|
+
},
|
|
1537
|
+
authProviderType: {
|
|
1538
|
+
type: 'string',
|
|
1539
|
+
description: 'Authentication provider used for acquiring credentials (for example `dynamic_discovery`).',
|
|
1540
|
+
enum: [
|
|
1541
|
+
'dynamic_discovery',
|
|
1542
|
+
'google_credentials',
|
|
1543
|
+
'service_account_impersonation',
|
|
1544
|
+
],
|
|
1545
|
+
},
|
|
1546
|
+
targetAudience: {
|
|
1547
|
+
type: 'string',
|
|
1548
|
+
description: 'OAuth target audience (CLIENT_ID.apps.googleusercontent.com).',
|
|
1549
|
+
},
|
|
1550
|
+
targetServiceAccount: {
|
|
1551
|
+
type: 'string',
|
|
1552
|
+
description: 'Service account email to impersonate (name@project.iam.gserviceaccount.com).',
|
|
1553
|
+
},
|
|
1554
|
+
},
|
|
1555
|
+
},
|
|
1556
|
+
TelemetrySettings: {
|
|
1557
|
+
type: 'object',
|
|
1558
|
+
description: 'Telemetry configuration for Gemini CLI.',
|
|
1559
|
+
additionalProperties: false,
|
|
1560
|
+
properties: {
|
|
1561
|
+
enabled: {
|
|
1562
|
+
type: 'boolean',
|
|
1563
|
+
description: 'Enables telemetry emission.',
|
|
1564
|
+
},
|
|
1565
|
+
target: {
|
|
1566
|
+
type: 'string',
|
|
1567
|
+
description: 'Telemetry destination (for example `stderr`, `stdout`, or `otlp`).',
|
|
1568
|
+
},
|
|
1569
|
+
otlpEndpoint: {
|
|
1570
|
+
type: 'string',
|
|
1571
|
+
description: 'Endpoint for OTLP exporters.',
|
|
1572
|
+
},
|
|
1573
|
+
otlpProtocol: {
|
|
1574
|
+
type: 'string',
|
|
1575
|
+
description: 'Protocol for OTLP exporters.',
|
|
1576
|
+
enum: ['grpc', 'http'],
|
|
1577
|
+
},
|
|
1578
|
+
logPrompts: {
|
|
1579
|
+
type: 'boolean',
|
|
1580
|
+
description: 'Whether prompts are logged in telemetry payloads.',
|
|
1581
|
+
},
|
|
1582
|
+
outfile: {
|
|
1583
|
+
type: 'string',
|
|
1584
|
+
description: 'File path for writing telemetry output.',
|
|
1585
|
+
},
|
|
1586
|
+
useCollector: {
|
|
1587
|
+
type: 'boolean',
|
|
1588
|
+
description: 'Whether to forward telemetry to an OTLP collector.',
|
|
1589
|
+
},
|
|
1590
|
+
useCliAuth: {
|
|
1591
|
+
type: 'boolean',
|
|
1592
|
+
description: 'Whether to use CLI authentication for telemetry (only for in-process exporters).',
|
|
1593
|
+
},
|
|
1594
|
+
},
|
|
1595
|
+
},
|
|
1596
|
+
BugCommandSettings: {
|
|
1597
|
+
type: 'object',
|
|
1598
|
+
description: 'Configuration for the bug report helper command.',
|
|
1599
|
+
additionalProperties: false,
|
|
1600
|
+
properties: {
|
|
1601
|
+
urlTemplate: {
|
|
1602
|
+
type: 'string',
|
|
1603
|
+
description: 'Template used to open a bug report URL. Variables in the template are populated at runtime.',
|
|
1604
|
+
},
|
|
1605
|
+
},
|
|
1606
|
+
required: ['urlTemplate'],
|
|
1607
|
+
},
|
|
1608
|
+
SummarizeToolOutputSettings: {
|
|
1609
|
+
type: 'object',
|
|
1610
|
+
description: 'Controls summarization behavior for individual tools. All properties are optional.',
|
|
1611
|
+
additionalProperties: false,
|
|
1612
|
+
properties: {
|
|
1613
|
+
tokenBudget: {
|
|
1614
|
+
type: 'number',
|
|
1615
|
+
description: 'Maximum number of tokens used when summarizing tool output.',
|
|
1616
|
+
},
|
|
1617
|
+
},
|
|
1618
|
+
},
|
|
1619
|
+
CustomTheme: {
|
|
1620
|
+
type: 'object',
|
|
1621
|
+
description: 'Custom theme definition used for styling Gemini CLI output. Colors are provided as hex strings or named ANSI colors.',
|
|
1622
|
+
additionalProperties: false,
|
|
1623
|
+
properties: {
|
|
1624
|
+
type: {
|
|
1625
|
+
type: 'string',
|
|
1626
|
+
enum: ['custom'],
|
|
1627
|
+
default: 'custom',
|
|
1628
|
+
},
|
|
1629
|
+
name: {
|
|
1630
|
+
type: 'string',
|
|
1631
|
+
description: 'Theme display name.',
|
|
1632
|
+
},
|
|
1633
|
+
text: {
|
|
1634
|
+
type: 'object',
|
|
1635
|
+
additionalProperties: false,
|
|
1636
|
+
properties: {
|
|
1637
|
+
primary: { type: 'string' },
|
|
1638
|
+
secondary: { type: 'string' },
|
|
1639
|
+
link: { type: 'string' },
|
|
1640
|
+
accent: { type: 'string' },
|
|
1641
|
+
},
|
|
1642
|
+
},
|
|
1643
|
+
background: {
|
|
1644
|
+
type: 'object',
|
|
1645
|
+
additionalProperties: false,
|
|
1646
|
+
properties: {
|
|
1647
|
+
primary: { type: 'string' },
|
|
1648
|
+
diff: {
|
|
1649
|
+
type: 'object',
|
|
1650
|
+
additionalProperties: false,
|
|
1651
|
+
properties: {
|
|
1652
|
+
added: { type: 'string' },
|
|
1653
|
+
removed: { type: 'string' },
|
|
1654
|
+
},
|
|
1655
|
+
},
|
|
1656
|
+
},
|
|
1657
|
+
},
|
|
1658
|
+
border: {
|
|
1659
|
+
type: 'object',
|
|
1660
|
+
additionalProperties: false,
|
|
1661
|
+
properties: {
|
|
1662
|
+
default: { type: 'string' },
|
|
1663
|
+
focused: { type: 'string' },
|
|
1664
|
+
},
|
|
1665
|
+
},
|
|
1666
|
+
ui: {
|
|
1667
|
+
type: 'object',
|
|
1668
|
+
additionalProperties: false,
|
|
1669
|
+
properties: {
|
|
1670
|
+
comment: { type: 'string' },
|
|
1671
|
+
symbol: { type: 'string' },
|
|
1672
|
+
gradient: {
|
|
1673
|
+
type: 'array',
|
|
1674
|
+
items: { type: 'string' },
|
|
1675
|
+
},
|
|
1676
|
+
},
|
|
1677
|
+
},
|
|
1678
|
+
status: {
|
|
1679
|
+
type: 'object',
|
|
1680
|
+
additionalProperties: false,
|
|
1681
|
+
properties: {
|
|
1682
|
+
error: { type: 'string' },
|
|
1683
|
+
success: { type: 'string' },
|
|
1684
|
+
warning: { type: 'string' },
|
|
1685
|
+
},
|
|
1686
|
+
},
|
|
1687
|
+
Background: { type: 'string' },
|
|
1688
|
+
Foreground: { type: 'string' },
|
|
1689
|
+
LightBlue: { type: 'string' },
|
|
1690
|
+
AccentBlue: { type: 'string' },
|
|
1691
|
+
AccentPurple: { type: 'string' },
|
|
1692
|
+
AccentCyan: { type: 'string' },
|
|
1693
|
+
AccentGreen: { type: 'string' },
|
|
1694
|
+
AccentYellow: { type: 'string' },
|
|
1695
|
+
AccentRed: { type: 'string' },
|
|
1696
|
+
DiffAdded: { type: 'string' },
|
|
1697
|
+
DiffRemoved: { type: 'string' },
|
|
1698
|
+
Comment: { type: 'string' },
|
|
1699
|
+
Gray: { type: 'string' },
|
|
1700
|
+
DarkGray: { type: 'string' },
|
|
1701
|
+
GradientColors: {
|
|
1702
|
+
type: 'array',
|
|
1703
|
+
items: { type: 'string' },
|
|
1704
|
+
},
|
|
1705
|
+
},
|
|
1706
|
+
required: ['type', 'name'],
|
|
1707
|
+
},
|
|
1708
|
+
StringOrStringArray: {
|
|
1709
|
+
description: 'Accepts either a single string or an array of strings.',
|
|
1710
|
+
anyOf: [{ type: 'string' }, { type: 'array', items: { type: 'string' } }],
|
|
1711
|
+
},
|
|
1712
|
+
BooleanOrString: {
|
|
1713
|
+
description: 'Accepts either a boolean flag or a string command name.',
|
|
1714
|
+
anyOf: [{ type: 'boolean' }, { type: 'string' }],
|
|
1715
|
+
},
|
|
1716
|
+
HookDefinitionArray: {
|
|
1717
|
+
type: 'array',
|
|
1718
|
+
description: 'Array of hook definition objects for a specific event.',
|
|
1719
|
+
items: {
|
|
1720
|
+
type: 'object',
|
|
1721
|
+
description: 'Hook definition specifying matcher pattern and hook configurations.',
|
|
1722
|
+
properties: {
|
|
1723
|
+
matcher: {
|
|
1724
|
+
type: 'string',
|
|
1725
|
+
description: 'Pattern to match against the event context (tool name, notification type, etc.). Supports exact match, regex (/pattern/), and wildcards (*).',
|
|
1726
|
+
},
|
|
1727
|
+
hooks: {
|
|
1728
|
+
type: 'array',
|
|
1729
|
+
description: 'Hooks to execute when the matcher matches.',
|
|
1730
|
+
items: {
|
|
1731
|
+
type: 'object',
|
|
1732
|
+
description: 'Individual hook configuration.',
|
|
1733
|
+
properties: {
|
|
1734
|
+
type: {
|
|
1735
|
+
type: 'string',
|
|
1736
|
+
description: 'Type of hook (currently only "command" supported).',
|
|
1737
|
+
},
|
|
1738
|
+
command: {
|
|
1739
|
+
type: 'string',
|
|
1740
|
+
description: 'Shell command to execute. Receives JSON input via stdin and returns JSON output via stdout.',
|
|
1741
|
+
},
|
|
1742
|
+
timeout: {
|
|
1743
|
+
type: 'number',
|
|
1744
|
+
description: 'Timeout in milliseconds for hook execution.',
|
|
1745
|
+
},
|
|
1746
|
+
},
|
|
1747
|
+
},
|
|
1748
|
+
},
|
|
1749
|
+
},
|
|
1750
|
+
},
|
|
1751
|
+
},
|
|
1752
|
+
};
|
|
1753
|
+
export function getSettingsSchema() {
|
|
1754
|
+
return SETTINGS_SCHEMA;
|
|
1755
|
+
}
|
|
1756
|
+
//# sourceMappingURL=settingsSchema.js.map
|