@trukhinyuri/gemini-pp 0.27.0-nightly.20260121.97aac696f
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 +50 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +95 -0
- package/dist/src/commands/extensions/configure.d.ts +13 -0
- package/dist/src/commands/extensions/configure.js +131 -0
- package/dist/src/commands/extensions/configure.js.map +1 -0
- package/dist/src/commands/extensions/configure.test.d.ts +1 -0
- package/dist/src/commands/extensions/configure.test.js +197 -0
- package/dist/src/commands/extensions/configure.test.js.map +1 -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/hooks/gemini-extension.json +4 -0
- package/dist/src/commands/extensions/examples/hooks/hooks/hooks.json +14 -0
- package/dist/src/commands/extensions/examples/hooks/scripts/on-start.js +8 -0
- package/dist/src/commands/extensions/examples/mcp-server/README.md +35 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.js +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 +11 -0
- package/dist/src/commands/extensions/examples/skills/gemini-extension.json +4 -0
- package/dist/src/commands/extensions/examples/skills/skills/greeter/SKILL.md +7 -0
- package/dist/src/commands/extensions/install.d.ts +16 -0
- package/dist/src/commands/extensions/install.js +87 -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 +140 -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/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 +14 -0
- package/dist/src/commands/extensions/utils.js +33 -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 +44 -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 +205 -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 +388 -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 +25 -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/enableDisable.d.ts +13 -0
- package/dist/src/commands/mcp/enableDisable.js +122 -0
- package/dist/src/commands/mcp/enableDisable.js.map +1 -0
- package/dist/src/commands/mcp/list.d.ts +10 -0
- package/dist/src/commands/mcp/list.js +129 -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 +150 -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 +32 -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 +65 -0
- package/dist/src/commands/mcp.test.js.map +1 -0
- package/dist/src/commands/skills/disable.d.ts +14 -0
- package/dist/src/commands/skills/disable.js +47 -0
- package/dist/src/commands/skills/disable.js.map +1 -0
- package/dist/src/commands/skills/disable.test.d.ts +6 -0
- package/dist/src/commands/skills/disable.test.js +96 -0
- package/dist/src/commands/skills/disable.test.js.map +1 -0
- package/dist/src/commands/skills/enable.d.ts +12 -0
- package/dist/src/commands/skills/enable.js +35 -0
- package/dist/src/commands/skills/enable.js.map +1 -0
- package/dist/src/commands/skills/enable.test.d.ts +6 -0
- package/dist/src/commands/skills/enable.test.js +107 -0
- package/dist/src/commands/skills/enable.test.js.map +1 -0
- package/dist/src/commands/skills/install.d.ts +15 -0
- package/dist/src/commands/skills/install.js +76 -0
- package/dist/src/commands/skills/install.js.map +1 -0
- package/dist/src/commands/skills/install.test.d.ts +6 -0
- package/dist/src/commands/skills/install.test.js +95 -0
- package/dist/src/commands/skills/install.test.js.map +1 -0
- package/dist/src/commands/skills/list.d.ts +10 -0
- package/dist/src/commands/skills/list.js +60 -0
- package/dist/src/commands/skills/list.js.map +1 -0
- package/dist/src/commands/skills/list.test.d.ts +6 -0
- package/dist/src/commands/skills/list.test.js +136 -0
- package/dist/src/commands/skills/list.test.js.map +1 -0
- package/dist/src/commands/skills/uninstall.d.ts +13 -0
- package/dist/src/commands/skills/uninstall.js +56 -0
- package/dist/src/commands/skills/uninstall.js.map +1 -0
- package/dist/src/commands/skills/uninstall.test.d.ts +6 -0
- package/dist/src/commands/skills/uninstall.test.js +61 -0
- package/dist/src/commands/skills/uninstall.test.js.map +1 -0
- package/dist/src/commands/skills.d.ts +7 -0
- package/dist/src/commands/skills.js +34 -0
- package/dist/src/commands/skills.js.map +1 -0
- package/dist/src/commands/skills.test.d.ts +6 -0
- package/dist/src/commands/skills.test.js +49 -0
- package/dist/src/commands/skills.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 +35 -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 +89 -0
- package/dist/src/config/auth.test.js.map +1 -0
- package/dist/src/config/config.d.ts +47 -0
- package/dist/src/config/config.integration.test.d.ts +6 -0
- package/dist/src/config/config.integration.test.js +205 -0
- package/dist/src/config/config.integration.test.js.map +1 -0
- package/dist/src/config/config.js +612 -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 +2351 -0
- package/dist/src/config/config.test.js.map +1 -0
- package/dist/src/config/extension-manager-agents.test.d.ts +6 -0
- package/dist/src/config/extension-manager-agents.test.js +114 -0
- package/dist/src/config/extension-manager-agents.test.js.map +1 -0
- package/dist/src/config/extension-manager-scope.test.d.ts +6 -0
- package/dist/src/config/extension-manager-scope.test.js +153 -0
- package/dist/src/config/extension-manager-scope.test.js.map +1 -0
- package/dist/src/config/extension-manager-skills.test.d.ts +6 -0
- package/dist/src/config/extension-manager-skills.test.js +148 -0
- package/dist/src/config/extension-manager-skills.test.js.map +1 -0
- package/dist/src/config/extension-manager.d.ts +70 -0
- package/dist/src/config/extension-manager.js +639 -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 +1615 -0
- package/dist/src/config/extension.test.js.map +1 -0
- package/dist/src/config/extensions/consent.d.ts +44 -0
- package/dist/src/config/extensions/consent.js +173 -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 +280 -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 +23 -0
- package/dist/src/config/extensions/extensionSettings.js +204 -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/extensionUpdates.test.d.ts +6 -0
- package/dist/src/config/extensions/extensionUpdates.test.js +230 -0
- package/dist/src/config/extensions/extensionUpdates.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 +107 -0
- package/dist/src/config/keyBindings.js +397 -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 +108 -0
- package/dist/src/config/keyBindings.test.js.map +1 -0
- package/dist/src/config/mcp/index.d.ts +6 -0
- package/dist/src/config/mcp/index.js +7 -0
- package/dist/src/config/mcp/index.js.map +1 -0
- package/dist/src/config/mcp/mcpServerEnablement.d.ts +145 -0
- package/dist/src/config/mcp/mcpServerEnablement.js +254 -0
- package/dist/src/config/mcp/mcpServerEnablement.js.map +1 -0
- package/dist/src/config/mcp/mcpServerEnablement.test.d.ts +6 -0
- package/dist/src/config/mcp/mcpServerEnablement.test.js +147 -0
- package/dist/src/config/mcp/mcpServerEnablement.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 +318 -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 +184 -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 +370 -0
- package/dist/src/config/settings-validation.test.js.map +1 -0
- package/dist/src/config/settings.d.ts +105 -0
- package/dist/src/config/settings.js +677 -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 +1822 -0
- package/dist/src/config/settings.test.js.map +1 -0
- package/dist/src/config/settingsSchema.d.ts +1720 -0
- package/dist/src/config/settingsSchema.js +2005 -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 +309 -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 +166 -0
- package/dist/src/config/settings_repro.test.js.map +1 -0
- package/dist/src/config/settings_validation_warning.test.d.ts +6 -0
- package/dist/src/config/settings_validation_warning.test.js +123 -0
- package/dist/src/config/settings_validation_warning.test.js.map +1 -0
- package/dist/src/config/skills-backward-compatibility.test.d.ts +6 -0
- package/dist/src/config/skills-backward-compatibility.test.js +99 -0
- package/dist/src/config/skills-backward-compatibility.test.js.map +1 -0
- package/dist/src/config/trustedFolders.d.ts +56 -0
- package/dist/src/config/trustedFolders.js +190 -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 +385 -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/deferred.d.ts +19 -0
- package/dist/src/deferred.js +50 -0
- package/dist/src/deferred.js.map +1 -0
- package/dist/src/deferred.test.d.ts +6 -0
- package/dist/src/deferred.test.js +164 -0
- package/dist/src/deferred.test.js.map +1 -0
- package/dist/src/gemini.d.ts +14 -0
- package/dist/src/gemini.js +570 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/gemini.test.d.ts +6 -0
- package/dist/src/gemini.test.js +1334 -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 +208 -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 +16 -0
- package/dist/src/nonInteractiveCli.js +381 -0
- package/dist/src/nonInteractiveCli.js.map +1 -0
- package/dist/src/nonInteractiveCli.test.d.ts +6 -0
- package/dist/src/nonInteractiveCli.test.js +1567 -0
- package/dist/src/nonInteractiveCli.test.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.d.ts +17 -0
- package/dist/src/nonInteractiveCliCommands.js +83 -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 +158 -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 +254 -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 +238 -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 +1102 -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 +130 -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 +514 -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 +96 -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/persistentStateFake.d.ts +26 -0
- package/dist/src/test-utils/persistentStateFake.js +39 -0
- package/dist/src/test-utils/persistentStateFake.js.map +1 -0
- package/dist/src/test-utils/render.d.ts +64 -0
- package/dist/src/test-utils/render.js +246 -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 +1386 -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 +2072 -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 +158 -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 +109 -0
- package/dist/src/ui/auth/ApiAuthDialog.test.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.d.ts +21 -0
- package/dist/src/ui/auth/AuthDialog.js +141 -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 +305 -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 +81 -0
- package/dist/src/ui/auth/AuthInProgress.test.js.map +1 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.d.ts +10 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.js +27 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.js.map +1 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.test.d.ts +6 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.test.js +66 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.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/agentsCommand.d.ts +7 -0
- package/dist/src/ui/commands/agentsCommand.js +302 -0
- package/dist/src/ui/commands/agentsCommand.js.map +1 -0
- package/dist/src/ui/commands/agentsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/agentsCommand.test.js +335 -0
- package/dist/src/ui/commands/agentsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.d.ts +7 -0
- package/dist/src/ui/commands/authCommand.js +44 -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 +98 -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 +108 -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 +186 -0
- package/dist/src/ui/commands/bugCommand.test.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.d.ts +8 -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 +620 -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 +65 -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 +87 -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 +194 -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 +296 -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 +572 -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 +778 -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 +342 -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 +572 -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 +84 -0
- package/dist/src/ui/commands/initCommand.test.js.map +1 -0
- package/dist/src/ui/commands/loginCodexCommand.d.ts +9 -0
- package/dist/src/ui/commands/loginCodexCommand.js +81 -0
- package/dist/src/ui/commands/loginCodexCommand.js.map +1 -0
- package/dist/src/ui/commands/logoutCodexCommand.d.ts +9 -0
- package/dist/src/ui/commands/logoutCodexCommand.js +62 -0
- package/dist/src/ui/commands/logoutCodexCommand.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
- package/dist/src/ui/commands/mcpCommand.js +416 -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 +189 -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 +94 -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 +350 -0
- package/dist/src/ui/commands/memoryCommand.test.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.d.ts +7 -0
- package/dist/src/ui/commands/modelCommand.js +22 -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 +41 -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 +77 -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 +87 -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/rewindCommand.d.ts +7 -0
- package/dist/src/ui/commands/rewindCommand.js +132 -0
- package/dist/src/ui/commands/rewindCommand.js.map +1 -0
- package/dist/src/ui/commands/rewindCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/rewindCommand.test.js +242 -0
- package/dist/src/ui/commands/rewindCommand.test.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/skillsCommand.d.ts +7 -0
- package/dist/src/ui/commands/skillsCommand.js +237 -0
- package/dist/src/ui/commands/skillsCommand.js.map +1 -0
- package/dist/src/ui/commands/skillsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/skillsCommand.test.js +426 -0
- package/dist/src/ui/commands/skillsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.d.ts +7 -0
- package/dist/src/ui/commands/statsCommand.js +75 -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 +70 -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 +147 -0
- package/dist/src/ui/commands/types.js +13 -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/AdminSettingsChangedDialog.d.ts +6 -0
- package/dist/src/ui/components/AdminSettingsChangedDialog.js +22 -0
- package/dist/src/ui/components/AdminSettingsChangedDialog.js.map +1 -0
- package/dist/src/ui/components/AdminSettingsChangedDialog.test.d.ts +6 -0
- package/dist/src/ui/components/AdminSettingsChangedDialog.test.js +43 -0
- package/dist/src/ui/components/AdminSettingsChangedDialog.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 +170 -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 +25 -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 +225 -0
- package/dist/src/ui/components/AppHeader.test.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeIndicator.d.ts +12 -0
- package/dist/src/ui/components/ApprovalModeIndicator.js +31 -0
- package/dist/src/ui/components/ApprovalModeIndicator.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/ApprovalModeIndicator.test.js +37 -0
- package/dist/src/ui/components/ApprovalModeIndicator.test.js.map +1 -0
- package/dist/src/ui/components/AsciiArt.d.ts +11 -0
- package/dist/src/ui/components/AsciiArt.js +72 -0
- package/dist/src/ui/components/AsciiArt.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 +58 -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 +383 -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 +48 -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 +117 -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 +20 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +63 -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 +102 -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 +177 -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 +229 -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 +107 -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 +153 -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 +81 -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 +119 -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 +71 -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 +102 -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 +321 -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 +31 -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 +147 -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 +17 -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 +33 -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 +207 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
- package/dist/src/ui/components/HookStatusDisplay.d.ts +12 -0
- package/dist/src/ui/components/HookStatusDisplay.js +20 -0
- package/dist/src/ui/components/HookStatusDisplay.js.map +1 -0
- package/dist/src/ui/components/HookStatusDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/HookStatusDisplay.test.js +51 -0
- package/dist/src/ui/components/HookStatusDisplay.test.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js +34 -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 +58 -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 +881 -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 +2376 -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/LogoutConfirmationDialog.d.ts +15 -0
- package/dist/src/ui/components/LogoutConfirmationDialog.js +37 -0
- package/dist/src/ui/components/LogoutConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/LogoutConfirmationDialog.test.d.ts +6 -0
- package/dist/src/ui/components/LogoutConfirmationDialog.test.js +59 -0
- package/dist/src/ui/components/LogoutConfirmationDialog.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 +78 -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 +83 -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 +147 -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 +197 -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 +87 -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 +343 -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 +61 -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/ProQuotaDialog.d.ts +16 -0
- package/dist/src/ui/components/ProQuotaDialog.js +77 -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 +191 -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/RewindConfirmation.d.ts +21 -0
- package/dist/src/ui/components/RewindConfirmation.js +63 -0
- package/dist/src/ui/components/RewindConfirmation.js.map +1 -0
- package/dist/src/ui/components/RewindConfirmation.test.d.ts +6 -0
- package/dist/src/ui/components/RewindConfirmation.test.js +53 -0
- package/dist/src/ui/components/RewindConfirmation.test.js.map +1 -0
- package/dist/src/ui/components/RewindViewer.d.ts +15 -0
- package/dist/src/ui/components/RewindViewer.js +127 -0
- package/dist/src/ui/components/RewindViewer.js.map +1 -0
- package/dist/src/ui/components/RewindViewer.test.d.ts +6 -0
- package/dist/src/ui/components/RewindViewer.test.js +241 -0
- package/dist/src/ui/components/RewindViewer.test.js.map +1 -0
- package/dist/src/ui/components/SessionBrowser.d.ts +98 -0
- package/dist/src/ui/components/SessionBrowser.js +460 -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 +256 -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 +724 -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 +1168 -0
- package/dist/src/ui/components/SettingsDialog.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 +91 -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/StatusDisplay.d.ts +11 -0
- package/dist/src/ui/components/StatusDisplay.js +45 -0
- package/dist/src/ui/components/StatusDisplay.js.map +1 -0
- package/dist/src/ui/components/StatusDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/StatusDisplay.test.js +155 -0
- package/dist/src/ui/components/StatusDisplay.test.js.map +1 -0
- package/dist/src/ui/components/StickyHeader.d.ts +16 -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 +46 -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/Table.d.ts +21 -0
- package/dist/src/ui/components/Table.js +7 -0
- package/dist/src/ui/components/Table.js.map +1 -0
- package/dist/src/ui/components/Table.test.d.ts +6 -0
- package/dist/src/ui/components/Table.test.js +53 -0
- package/dist/src/ui/components/Table.test.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.d.ts +21 -0
- package/dist/src/ui/components/ThemeDialog.js +181 -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 +167 -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/ValidationDialog.d.ts +15 -0
- package/dist/src/ui/components/ValidationDialog.js +86 -0
- package/dist/src/ui/components/ValidationDialog.js.map +1 -0
- package/dist/src/ui/components/ValidationDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ValidationDialog.test.js +128 -0
- package/dist/src/ui/components/ValidationDialog.test.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
- package/dist/src/ui/components/messages/CompressionMessage.js +48 -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 +191 -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 +250 -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 +240 -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/RedirectionConfirmation.test.d.ts +6 -0
- package/dist/src/ui/components/messages/RedirectionConfirmation.test.js +33 -0
- package/dist/src/ui/components/messages/RedirectionConfirmation.test.js.map +1 -0
- package/dist/src/ui/components/messages/ShellToolMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/ShellToolMessage.js +44 -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 +16 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +252 -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 +180 -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 +76 -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 +425 -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 +18 -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 +154 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessageFocusHint.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolMessageFocusHint.test.js +89 -0
- package/dist/src/ui/components/messages/ToolMessageFocusHint.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 +60 -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 +114 -0
- package/dist/src/ui/components/messages/ToolResultDisplay.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolShared.d.ts +49 -0
- package/dist/src/ui/components/messages/ToolShared.js +93 -0
- package/dist/src/ui/components/messages/ToolShared.js.map +1 -0
- package/dist/src/ui/components/messages/ToolStickyHeaderRegression.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolStickyHeaderRegression.test.js +134 -0
- package/dist/src/ui/components/messages/ToolStickyHeaderRegression.test.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 +39 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js +73 -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 +386 -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/ExpandableText.d.ts +17 -0
- package/dist/src/ui/components/shared/ExpandableText.js +87 -0
- package/dist/src/ui/components/shared/ExpandableText.js.map +1 -0
- package/dist/src/ui/components/shared/ExpandableText.test.d.ts +6 -0
- package/dist/src/ui/components/shared/ExpandableText.test.js +88 -0
- package/dist/src/ui/components/shared/ExpandableText.test.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +25 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js +67 -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 +90 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +48 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js +22 -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/performance.test.d.ts +1 -0
- package/dist/src/ui/components/shared/performance.test.js +67 -0
- package/dist/src/ui/components/shared/performance.test.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.d.ts +542 -0
- package/dist/src/ui/components/shared/text-buffer.js +2020 -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 +2362 -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 +957 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.test.js.map +1 -0
- package/dist/src/ui/components/views/AgentsStatus.d.ts +13 -0
- package/dist/src/ui/components/views/AgentsStatus.js +23 -0
- package/dist/src/ui/components/views/AgentsStatus.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 +45 -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 +148 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
- package/dist/src/ui/components/views/HooksList.d.ts +24 -0
- package/dist/src/ui/components/views/HooksList.js +28 -0
- package/dist/src/ui/components/views/HooksList.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.d.ts +28 -0
- package/dist/src/ui/components/views/McpStatus.js +104 -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 +153 -0
- package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
- package/dist/src/ui/components/views/SkillsList.d.ts +13 -0
- package/dist/src/ui/components/views/SkillsList.js +17 -0
- package/dist/src/ui/components/views/SkillsList.js.map +1 -0
- package/dist/src/ui/components/views/SkillsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/SkillsList.test.js +97 -0
- package/dist/src/ui/components/views/SkillsList.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 +164 -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 +24 -0
- package/dist/src/ui/constants.js +31 -0
- package/dist/src/ui/constants.js.map +1 -0
- package/dist/src/ui/contexts/AppContext.d.ts +11 -0
- package/dist/src/ui/contexts/AppContext.js +15 -0
- package/dist/src/ui/contexts/AppContext.js.map +1 -0
- package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
- package/dist/src/ui/contexts/ConfigContext.js +16 -0
- package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.d.ts +32 -0
- package/dist/src/ui/contexts/KeypressContext.js +614 -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 +957 -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/ToolActionsContext.d.ts +20 -0
- package/dist/src/ui/contexts/ToolActionsContext.js +74 -0
- package/dist/src/ui/contexts/ToolActionsContext.js.map +1 -0
- package/dist/src/ui/contexts/ToolActionsContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/ToolActionsContext.test.js +135 -0
- package/dist/src/ui/contexts/ToolActionsContext.test.js.map +1 -0
- package/dist/src/ui/contexts/UIActionsContext.d.ts +57 -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 +136 -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/atCommandProcessor.d.ts +32 -0
- package/dist/src/ui/hooks/atCommandProcessor.js +528 -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 +1032 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor_agents.test.d.ts +6 -0
- package/dist/src/ui/hooks/atCommandProcessor_agents.test.js +183 -0
- package/dist/src/ui/hooks/atCommandProcessor_agents.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 +46 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +510 -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 +796 -0
- package/dist/src/ui/hooks/slashCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/toolMapping.d.ts +14 -0
- package/dist/src/ui/hooks/toolMapping.js +100 -0
- package/dist/src/ui/hooks/toolMapping.js.map +1 -0
- package/dist/src/ui/hooks/toolMapping.test.d.ts +6 -0
- package/dist/src/ui/hooks/toolMapping.test.js +211 -0
- package/dist/src/ui/hooks/toolMapping.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/useApprovalModeIndicator.d.ts +14 -0
- package/dist/src/ui/hooks/useApprovalModeIndicator.js +75 -0
- package/dist/src/ui/hooks/useApprovalModeIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useApprovalModeIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useApprovalModeIndicator.test.js +435 -0
- package/dist/src/ui/hooks/useApprovalModeIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useAtCompletion.js +280 -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/useAtCompletion_agents.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAtCompletion_agents.test.js +87 -0
- package/dist/src/ui/hooks/useAtCompletion_agents.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/useCommandCompletion.d.ts +42 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +237 -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 +462 -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 +173 -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 +279 -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 +76 -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 +218 -0
- package/dist/src/ui/hooks/useFolderTrust.test.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.d.ts +37 -0
- package/dist/src/ui/hooks/useGeminiStream.js +911 -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 +2269 -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 +188 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
- package/dist/src/ui/hooks/useHookDisplayState.d.ts +7 -0
- package/dist/src/ui/hooks/useHookDisplayState.js +83 -0
- package/dist/src/ui/hooks/useHookDisplayState.js.map +1 -0
- package/dist/src/ui/hooks/useHookDisplayState.test.d.ts +6 -0
- package/dist/src/ui/hooks/useHookDisplayState.test.js +180 -0
- package/dist/src/ui/hooks/useHookDisplayState.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 +110 -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 +172 -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 +205 -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 +17 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js +48 -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 +145 -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 +291 -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 +81 -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 +208 -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 +169 -0
- package/dist/src/ui/hooks/usePromptCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +21 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js +152 -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 +461 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +43 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js +98 -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/useRewind.d.ts +14 -0
- package/dist/src/ui/hooks/useRewind.js +31 -0
- package/dist/src/ui/hooks/useRewind.js.map +1 -0
- package/dist/src/ui/hooks/useRewind.test.d.ts +6 -0
- package/dist/src/ui/hooks/useRewind.test.js +100 -0
- package/dist/src/ui/hooks/useRewind.test.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.d.ts +35 -0
- package/dist/src/ui/hooks/useSelectionList.js +297 -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 +848 -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 +203 -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 +326 -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/useShellInactivityStatus.d.ts +26 -0
- package/dist/src/ui/hooks/useShellInactivityStatus.js +46 -0
- package/dist/src/ui/hooks/useShellInactivityStatus.js.map +1 -0
- package/dist/src/ui/hooks/useShellInactivityStatus.test.d.ts +6 -0
- package/dist/src/ui/hooks/useShellInactivityStatus.test.js +84 -0
- package/dist/src/ui/hooks/useShellInactivityStatus.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 +397 -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 +845 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useSnowfall.d.ts +6 -0
- package/dist/src/ui/hooks/useSnowfall.js +126 -0
- package/dist/src/ui/hooks/useSnowfall.js.map +1 -0
- package/dist/src/ui/hooks/useSnowfall.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSnowfall.test.js +88 -0
- package/dist/src/ui/hooks/useSnowfall.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/useTips.d.ts +10 -0
- package/dist/src/ui/hooks/useTips.js +18 -0
- package/dist/src/ui/hooks/useTips.js.map +1 -0
- package/dist/src/ui/hooks/useTips.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTips.test.js +33 -0
- package/dist/src/ui/hooks/useTips.test.js.map +1 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.d.ts +30 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.js +113 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.test.js +296 -0
- package/dist/src/ui/hooks/useToolExecutionScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.d.ts +29 -0
- package/dist/src/ui/hooks/useToolScheduler.js +30 -0
- package/dist/src/ui/hooks/useToolScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js +881 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/useToolSchedulerFacade.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolSchedulerFacade.test.js +45 -0
- package/dist/src/ui/hooks/useToolSchedulerFacade.test.js.map +1 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.d.ts +16 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.js +49 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.js.map +1 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.test.js +97 -0
- package/dist/src/ui/hooks/useTurnActivityMonitor.test.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +28 -0
- package/dist/src/ui/hooks/vim.js +642 -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 +1278 -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 +45 -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 +383 -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 +30 -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 +13 -0
- package/dist/src/ui/textConstants.js +14 -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 +23 -0
- package/dist/src/ui/themes/color-utils.js +250 -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 +245 -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 +71 -0
- package/dist/src/ui/themes/theme-manager.js +271 -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 +150 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
- package/dist/src/ui/themes/theme.d.ts +145 -0
- package/dist/src/ui/themes/theme.js +420 -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 +174 -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 +335 -0
- package/dist/src/ui/types.js +70 -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 +50 -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 +113 -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/clipboardUtils.d.ts +47 -0
- package/dist/src/ui/utils/clipboardUtils.js +432 -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 +354 -0
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.windows.test.d.ts +6 -0
- package/dist/src/ui/utils/clipboardUtils.windows.test.js +52 -0
- package/dist/src/ui/utils/clipboardUtils.windows.test.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.d.ts +36 -0
- package/dist/src/ui/utils/commandUtils.js +245 -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 +479 -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 +24 -0
- package/dist/src/ui/utils/directoryUtils.js +125 -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 +244 -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 +22 -0
- package/dist/src/ui/utils/formatters.js +81 -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 +124 -0
- package/dist/src/ui/utils/formatters.test.js.map +1 -0
- package/dist/src/ui/utils/highlight.d.ts +12 -0
- package/dist/src/ui/utils/highlight.js +115 -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 +198 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -0
- package/dist/src/ui/utils/historyExportUtils.d.ts +21 -0
- package/dist/src/ui/utils/historyExportUtils.js +59 -0
- package/dist/src/ui/utils/historyExportUtils.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/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/rewindFileOps.d.ts +47 -0
- package/dist/src/ui/utils/rewindFileOps.js +190 -0
- package/dist/src/ui/utils/rewindFileOps.js.map +1 -0
- package/dist/src/ui/utils/rewindFileOps.test.d.ts +6 -0
- package/dist/src/ui/utils/rewindFileOps.test.js +375 -0
- package/dist/src/ui/utils/rewindFileOps.test.js.map +1 -0
- package/dist/src/ui/utils/terminalCapabilityManager.d.ts +41 -0
- package/dist/src/ui/utils/terminalCapabilityManager.js +209 -0
- package/dist/src/ui/utils/terminalCapabilityManager.js.map +1 -0
- package/dist/src/ui/utils/terminalCapabilityManager.test.d.ts +6 -0
- package/dist/src/ui/utils/terminalCapabilityManager.test.js +221 -0
- package/dist/src/ui/utils/terminalCapabilityManager.test.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.d.ts +34 -0
- package/dist/src/ui/utils/terminalSetup.js +305 -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 +145 -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 +47 -0
- package/dist/src/ui/utils/textUtils.js +213 -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 +168 -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/activityLogger.d.ts +47 -0
- package/dist/src/utils/activityLogger.js +297 -0
- package/dist/src/utils/activityLogger.js.map +1 -0
- package/dist/src/utils/agentSettings.d.ts +31 -0
- package/dist/src/utils/agentSettings.js +102 -0
- package/dist/src/utils/agentSettings.js.map +1 -0
- package/dist/src/utils/agentUtils.d.ts +15 -0
- package/dist/src/utils/agentUtils.js +50 -0
- package/dist/src/utils/agentUtils.js.map +1 -0
- package/dist/src/utils/agentUtils.test.d.ts +6 -0
- package/dist/src/utils/agentUtils.test.js +121 -0
- package/dist/src/utils/agentUtils.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 +21 -0
- package/dist/src/utils/cleanup.js +101 -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 +92 -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 +185 -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 +435 -0
- package/dist/src/utils/errors.test.js.map +1 -0
- package/dist/src/utils/events.d.ts +19 -0
- package/dist/src/utils/events.js +15 -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 +310 -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 +161 -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 +296 -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 +21 -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 +68 -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 +117 -0
- package/dist/src/utils/readStdin.test.js.map +1 -0
- package/dist/src/utils/readStdin_safety.test.d.ts +6 -0
- package/dist/src/utils/readStdin_safety.test.js +68 -0
- package/dist/src/utils/readStdin_safety.test.js.map +1 -0
- package/dist/src/utils/relaunch.d.ts +8 -0
- package/dist/src/utils/relaunch.js +62 -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 +279 -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 +34 -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 +626 -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 +314 -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 +226 -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 +1298 -0
- package/dist/src/utils/sessionCleanup.test.js.map +1 -0
- package/dist/src/utils/sessionUtils.d.ts +170 -0
- package/dist/src/utils/sessionUtils.js +334 -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 +581 -0
- package/dist/src/utils/sessions.test.js.map +1 -0
- package/dist/src/utils/settingsUtils.d.ts +151 -0
- package/dist/src/utils/settingsUtils.js +352 -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/skillSettings.d.ts +33 -0
- package/dist/src/utils/skillSettings.js +101 -0
- package/dist/src/utils/skillSettings.js.map +1 -0
- package/dist/src/utils/skillUtils.d.ts +30 -0
- package/dist/src/utils/skillUtils.js +146 -0
- package/dist/src/utils/skillUtils.js.map +1 -0
- package/dist/src/utils/skillUtils.test.d.ts +6 -0
- package/dist/src/utils/skillUtils.test.js +70 -0
- package/dist/src/utils/skillUtils.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/terminalTheme.d.ts +15 -0
- package/dist/src/utils/terminalTheme.js +50 -0
- package/dist/src/utils/terminalTheme.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 +7 -0
- package/dist/src/utils/userStartupWarnings.js +64 -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 +98 -0
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
- package/dist/src/utils/windowTitle.d.ts +22 -0
- package/dist/src/utils/windowTitle.js +84 -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 +216 -0
- package/dist/src/utils/windowTitle.test.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.d.ts +9 -0
- package/dist/src/validateNonInterActiveAuth.js +58 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.test.d.ts +6 -0
- package/dist/src/validateNonInterActiveAuth.test.js +319 -0
- package/dist/src/validateNonInterActiveAuth.test.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.d.ts +19 -0
- package/dist/src/zed-integration/fileSystemService.js +41 -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 +88 -0
- package/dist/src/zed-integration/fileSystemService.test.js.map +1 -0
- package/dist/src/zed-integration/zedIntegration.d.ts +39 -0
- package/dist/src/zed-integration/zedIntegration.js +774 -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 +625 -0
- package/dist/src/zed-integration/zedIntegration.test.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +95 -0
|
@@ -0,0 +1,2005 @@
|
|
|
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, } 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: true,
|
|
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
|
+
enableAutoUpdate: {
|
|
96
|
+
type: 'boolean',
|
|
97
|
+
label: 'Enable Auto Update',
|
|
98
|
+
category: 'General',
|
|
99
|
+
requiresRestart: false,
|
|
100
|
+
default: true,
|
|
101
|
+
description: 'Enable automatic updates.',
|
|
102
|
+
showInDialog: true,
|
|
103
|
+
},
|
|
104
|
+
enableAutoUpdateNotification: {
|
|
105
|
+
type: 'boolean',
|
|
106
|
+
label: 'Enable Auto Update Notification',
|
|
107
|
+
category: 'General',
|
|
108
|
+
requiresRestart: false,
|
|
109
|
+
default: true,
|
|
110
|
+
description: 'Enable update notification prompts.',
|
|
111
|
+
showInDialog: false,
|
|
112
|
+
},
|
|
113
|
+
checkpointing: {
|
|
114
|
+
type: 'object',
|
|
115
|
+
label: 'Checkpointing',
|
|
116
|
+
category: 'General',
|
|
117
|
+
requiresRestart: true,
|
|
118
|
+
default: {},
|
|
119
|
+
description: 'Session checkpointing settings.',
|
|
120
|
+
showInDialog: false,
|
|
121
|
+
properties: {
|
|
122
|
+
enabled: {
|
|
123
|
+
type: 'boolean',
|
|
124
|
+
label: 'Enable Checkpointing',
|
|
125
|
+
category: 'General',
|
|
126
|
+
requiresRestart: true,
|
|
127
|
+
default: true,
|
|
128
|
+
description: 'Enable session checkpointing for recovery',
|
|
129
|
+
showInDialog: false,
|
|
130
|
+
},
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
enablePromptCompletion: {
|
|
134
|
+
type: 'boolean',
|
|
135
|
+
label: 'Enable Prompt Completion',
|
|
136
|
+
category: 'General',
|
|
137
|
+
requiresRestart: true,
|
|
138
|
+
default: false,
|
|
139
|
+
description: 'Enable AI-powered prompt completion suggestions while typing.',
|
|
140
|
+
showInDialog: true,
|
|
141
|
+
},
|
|
142
|
+
retryFetchErrors: {
|
|
143
|
+
type: 'boolean',
|
|
144
|
+
label: 'Retry Fetch Errors',
|
|
145
|
+
category: 'General',
|
|
146
|
+
requiresRestart: false,
|
|
147
|
+
default: false,
|
|
148
|
+
description: 'Retry on "exception TypeError: fetch failed sending request" errors.',
|
|
149
|
+
showInDialog: false,
|
|
150
|
+
},
|
|
151
|
+
debugKeystrokeLogging: {
|
|
152
|
+
type: 'boolean',
|
|
153
|
+
label: 'Debug Keystroke Logging',
|
|
154
|
+
category: 'General',
|
|
155
|
+
requiresRestart: false,
|
|
156
|
+
default: false,
|
|
157
|
+
description: 'Enable debug logging of keystrokes to the console.',
|
|
158
|
+
showInDialog: true,
|
|
159
|
+
},
|
|
160
|
+
sessionRetention: {
|
|
161
|
+
type: 'object',
|
|
162
|
+
label: 'Session Retention',
|
|
163
|
+
category: 'General',
|
|
164
|
+
requiresRestart: false,
|
|
165
|
+
default: undefined,
|
|
166
|
+
showInDialog: false,
|
|
167
|
+
properties: {
|
|
168
|
+
enabled: {
|
|
169
|
+
type: 'boolean',
|
|
170
|
+
label: 'Enable Session Cleanup',
|
|
171
|
+
category: 'General',
|
|
172
|
+
requiresRestart: false,
|
|
173
|
+
default: true,
|
|
174
|
+
description: 'Enable automatic session cleanup',
|
|
175
|
+
showInDialog: true,
|
|
176
|
+
},
|
|
177
|
+
maxAge: {
|
|
178
|
+
type: 'string',
|
|
179
|
+
label: 'Max Session Age',
|
|
180
|
+
category: 'General',
|
|
181
|
+
requiresRestart: false,
|
|
182
|
+
default: undefined,
|
|
183
|
+
description: 'Maximum age of sessions to keep (e.g., "30d", "7d", "24h", "1w")',
|
|
184
|
+
showInDialog: false,
|
|
185
|
+
},
|
|
186
|
+
maxCount: {
|
|
187
|
+
type: 'number',
|
|
188
|
+
label: 'Max Session Count',
|
|
189
|
+
category: 'General',
|
|
190
|
+
requiresRestart: false,
|
|
191
|
+
default: undefined,
|
|
192
|
+
description: 'Alternative: Maximum number of sessions to keep (most recent)',
|
|
193
|
+
showInDialog: false,
|
|
194
|
+
},
|
|
195
|
+
minRetention: {
|
|
196
|
+
type: 'string',
|
|
197
|
+
label: 'Min Retention Period',
|
|
198
|
+
category: 'General',
|
|
199
|
+
requiresRestart: false,
|
|
200
|
+
default: DEFAULT_MIN_RETENTION,
|
|
201
|
+
description: `Minimum retention period (safety limit, defaults to "${DEFAULT_MIN_RETENTION}")`,
|
|
202
|
+
showInDialog: false,
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
description: 'Settings for automatic session cleanup.',
|
|
206
|
+
},
|
|
207
|
+
},
|
|
208
|
+
},
|
|
209
|
+
output: {
|
|
210
|
+
type: 'object',
|
|
211
|
+
label: 'Output',
|
|
212
|
+
category: 'General',
|
|
213
|
+
requiresRestart: false,
|
|
214
|
+
default: {},
|
|
215
|
+
description: 'Settings for the CLI output.',
|
|
216
|
+
showInDialog: false,
|
|
217
|
+
properties: {
|
|
218
|
+
format: {
|
|
219
|
+
type: 'enum',
|
|
220
|
+
label: 'Output Format',
|
|
221
|
+
category: 'General',
|
|
222
|
+
requiresRestart: false,
|
|
223
|
+
default: 'text',
|
|
224
|
+
description: 'The format of the CLI output. Can be `text` or `json`.',
|
|
225
|
+
showInDialog: true,
|
|
226
|
+
options: [
|
|
227
|
+
{ value: 'text', label: 'Text' },
|
|
228
|
+
{ value: 'json', label: 'JSON' },
|
|
229
|
+
],
|
|
230
|
+
},
|
|
231
|
+
},
|
|
232
|
+
},
|
|
233
|
+
ui: {
|
|
234
|
+
type: 'object',
|
|
235
|
+
label: 'UI',
|
|
236
|
+
category: 'UI',
|
|
237
|
+
requiresRestart: false,
|
|
238
|
+
default: {},
|
|
239
|
+
description: 'User interface settings.',
|
|
240
|
+
showInDialog: false,
|
|
241
|
+
properties: {
|
|
242
|
+
theme: {
|
|
243
|
+
type: 'string',
|
|
244
|
+
label: 'Theme',
|
|
245
|
+
category: 'UI',
|
|
246
|
+
requiresRestart: false,
|
|
247
|
+
default: undefined,
|
|
248
|
+
description: 'The color theme for the UI. See the CLI themes guide for available options.',
|
|
249
|
+
showInDialog: false,
|
|
250
|
+
},
|
|
251
|
+
customThemes: {
|
|
252
|
+
type: 'object',
|
|
253
|
+
label: 'Custom Themes',
|
|
254
|
+
category: 'UI',
|
|
255
|
+
requiresRestart: false,
|
|
256
|
+
default: {},
|
|
257
|
+
description: 'Custom theme definitions.',
|
|
258
|
+
showInDialog: false,
|
|
259
|
+
additionalProperties: {
|
|
260
|
+
type: 'object',
|
|
261
|
+
ref: 'CustomTheme',
|
|
262
|
+
},
|
|
263
|
+
},
|
|
264
|
+
hideWindowTitle: {
|
|
265
|
+
type: 'boolean',
|
|
266
|
+
label: 'Hide Window Title',
|
|
267
|
+
category: 'UI',
|
|
268
|
+
requiresRestart: true,
|
|
269
|
+
default: false,
|
|
270
|
+
description: 'Hide the window title bar',
|
|
271
|
+
showInDialog: true,
|
|
272
|
+
},
|
|
273
|
+
showStatusInTitle: {
|
|
274
|
+
type: 'boolean',
|
|
275
|
+
label: 'Show Thoughts in Title',
|
|
276
|
+
category: 'UI',
|
|
277
|
+
requiresRestart: false,
|
|
278
|
+
default: false,
|
|
279
|
+
description: 'Show Gemini CLI model thoughts in the terminal window title during the working phase',
|
|
280
|
+
showInDialog: true,
|
|
281
|
+
},
|
|
282
|
+
dynamicWindowTitle: {
|
|
283
|
+
type: 'boolean',
|
|
284
|
+
label: 'Dynamic Window Title',
|
|
285
|
+
category: 'UI',
|
|
286
|
+
requiresRestart: false,
|
|
287
|
+
default: true,
|
|
288
|
+
description: 'Update the terminal window title with current status icons (Ready: ◇, Action Required: ✋, Working: ✦)',
|
|
289
|
+
showInDialog: true,
|
|
290
|
+
},
|
|
291
|
+
showHomeDirectoryWarning: {
|
|
292
|
+
type: 'boolean',
|
|
293
|
+
label: 'Show Home Directory Warning',
|
|
294
|
+
category: 'UI',
|
|
295
|
+
requiresRestart: true,
|
|
296
|
+
default: true,
|
|
297
|
+
description: 'Show a warning when running Gemini CLI in the home directory.',
|
|
298
|
+
showInDialog: true,
|
|
299
|
+
},
|
|
300
|
+
hideTips: {
|
|
301
|
+
type: 'boolean',
|
|
302
|
+
label: 'Hide Tips',
|
|
303
|
+
category: 'UI',
|
|
304
|
+
requiresRestart: false,
|
|
305
|
+
default: false,
|
|
306
|
+
description: 'Hide helpful tips in the UI',
|
|
307
|
+
showInDialog: true,
|
|
308
|
+
},
|
|
309
|
+
hideBanner: {
|
|
310
|
+
type: 'boolean',
|
|
311
|
+
label: 'Hide Banner',
|
|
312
|
+
category: 'UI',
|
|
313
|
+
requiresRestart: false,
|
|
314
|
+
default: false,
|
|
315
|
+
description: 'Hide the application banner',
|
|
316
|
+
showInDialog: true,
|
|
317
|
+
},
|
|
318
|
+
hideContextSummary: {
|
|
319
|
+
type: 'boolean',
|
|
320
|
+
label: 'Hide Context Summary',
|
|
321
|
+
category: 'UI',
|
|
322
|
+
requiresRestart: false,
|
|
323
|
+
default: false,
|
|
324
|
+
description: 'Hide the context summary (GEMINI.md, MCP servers) above the input.',
|
|
325
|
+
showInDialog: true,
|
|
326
|
+
},
|
|
327
|
+
footer: {
|
|
328
|
+
type: 'object',
|
|
329
|
+
label: 'Footer',
|
|
330
|
+
category: 'UI',
|
|
331
|
+
requiresRestart: false,
|
|
332
|
+
default: {},
|
|
333
|
+
description: 'Settings for the footer.',
|
|
334
|
+
showInDialog: false,
|
|
335
|
+
properties: {
|
|
336
|
+
hideCWD: {
|
|
337
|
+
type: 'boolean',
|
|
338
|
+
label: 'Hide CWD',
|
|
339
|
+
category: 'UI',
|
|
340
|
+
requiresRestart: false,
|
|
341
|
+
default: false,
|
|
342
|
+
description: 'Hide the current working directory path in the footer.',
|
|
343
|
+
showInDialog: true,
|
|
344
|
+
},
|
|
345
|
+
hideSandboxStatus: {
|
|
346
|
+
type: 'boolean',
|
|
347
|
+
label: 'Hide Sandbox Status',
|
|
348
|
+
category: 'UI',
|
|
349
|
+
requiresRestart: false,
|
|
350
|
+
default: false,
|
|
351
|
+
description: 'Hide the sandbox status indicator in the footer.',
|
|
352
|
+
showInDialog: true,
|
|
353
|
+
},
|
|
354
|
+
hideModelInfo: {
|
|
355
|
+
type: 'boolean',
|
|
356
|
+
label: 'Hide Model Info',
|
|
357
|
+
category: 'UI',
|
|
358
|
+
requiresRestart: false,
|
|
359
|
+
default: false,
|
|
360
|
+
description: 'Hide the model name and context usage in the footer.',
|
|
361
|
+
showInDialog: true,
|
|
362
|
+
},
|
|
363
|
+
hideContextPercentage: {
|
|
364
|
+
type: 'boolean',
|
|
365
|
+
label: 'Hide Context Window Percentage',
|
|
366
|
+
category: 'UI',
|
|
367
|
+
requiresRestart: false,
|
|
368
|
+
default: true,
|
|
369
|
+
description: 'Hides the context window remaining percentage.',
|
|
370
|
+
showInDialog: true,
|
|
371
|
+
},
|
|
372
|
+
},
|
|
373
|
+
},
|
|
374
|
+
hideFooter: {
|
|
375
|
+
type: 'boolean',
|
|
376
|
+
label: 'Hide Footer',
|
|
377
|
+
category: 'UI',
|
|
378
|
+
requiresRestart: false,
|
|
379
|
+
default: false,
|
|
380
|
+
description: 'Hide the footer from the UI',
|
|
381
|
+
showInDialog: true,
|
|
382
|
+
},
|
|
383
|
+
showMemoryUsage: {
|
|
384
|
+
type: 'boolean',
|
|
385
|
+
label: 'Show Memory Usage',
|
|
386
|
+
category: 'UI',
|
|
387
|
+
requiresRestart: false,
|
|
388
|
+
default: false,
|
|
389
|
+
description: 'Display memory usage information in the UI',
|
|
390
|
+
showInDialog: true,
|
|
391
|
+
},
|
|
392
|
+
showLineNumbers: {
|
|
393
|
+
type: 'boolean',
|
|
394
|
+
label: 'Show Line Numbers',
|
|
395
|
+
category: 'UI',
|
|
396
|
+
requiresRestart: false,
|
|
397
|
+
default: true,
|
|
398
|
+
description: 'Show line numbers in the chat.',
|
|
399
|
+
showInDialog: true,
|
|
400
|
+
},
|
|
401
|
+
showCitations: {
|
|
402
|
+
type: 'boolean',
|
|
403
|
+
label: 'Show Citations',
|
|
404
|
+
category: 'UI',
|
|
405
|
+
requiresRestart: false,
|
|
406
|
+
default: false,
|
|
407
|
+
description: 'Show citations for generated text in the chat.',
|
|
408
|
+
showInDialog: true,
|
|
409
|
+
},
|
|
410
|
+
showModelInfoInChat: {
|
|
411
|
+
type: 'boolean',
|
|
412
|
+
label: 'Show Model Info In Chat',
|
|
413
|
+
category: 'UI',
|
|
414
|
+
requiresRestart: false,
|
|
415
|
+
default: false,
|
|
416
|
+
description: 'Show the model name in the chat for each model turn.',
|
|
417
|
+
showInDialog: true,
|
|
418
|
+
},
|
|
419
|
+
useFullWidth: {
|
|
420
|
+
type: 'boolean',
|
|
421
|
+
label: 'Use Full Width',
|
|
422
|
+
category: 'UI',
|
|
423
|
+
requiresRestart: false,
|
|
424
|
+
default: true,
|
|
425
|
+
description: 'Use the entire width of the terminal for output.',
|
|
426
|
+
showInDialog: true,
|
|
427
|
+
},
|
|
428
|
+
useAlternateBuffer: {
|
|
429
|
+
type: 'boolean',
|
|
430
|
+
label: 'Use Alternate Screen Buffer',
|
|
431
|
+
category: 'UI',
|
|
432
|
+
requiresRestart: true,
|
|
433
|
+
default: false,
|
|
434
|
+
description: 'Use an alternate screen buffer for the UI, preserving shell history.',
|
|
435
|
+
showInDialog: true,
|
|
436
|
+
},
|
|
437
|
+
incrementalRendering: {
|
|
438
|
+
type: 'boolean',
|
|
439
|
+
label: 'Incremental Rendering',
|
|
440
|
+
category: 'UI',
|
|
441
|
+
requiresRestart: true,
|
|
442
|
+
default: true,
|
|
443
|
+
description: 'Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled.',
|
|
444
|
+
showInDialog: true,
|
|
445
|
+
},
|
|
446
|
+
customWittyPhrases: {
|
|
447
|
+
type: 'array',
|
|
448
|
+
label: 'Custom Witty Phrases',
|
|
449
|
+
category: 'UI',
|
|
450
|
+
requiresRestart: false,
|
|
451
|
+
default: [],
|
|
452
|
+
description: oneLine `
|
|
453
|
+
Custom witty phrases to display during loading.
|
|
454
|
+
When provided, the CLI cycles through these instead of the defaults.
|
|
455
|
+
`,
|
|
456
|
+
showInDialog: false,
|
|
457
|
+
items: { type: 'string' },
|
|
458
|
+
},
|
|
459
|
+
accessibility: {
|
|
460
|
+
type: 'object',
|
|
461
|
+
label: 'Accessibility',
|
|
462
|
+
category: 'UI',
|
|
463
|
+
requiresRestart: true,
|
|
464
|
+
default: {},
|
|
465
|
+
description: 'Accessibility settings.',
|
|
466
|
+
showInDialog: false,
|
|
467
|
+
properties: {
|
|
468
|
+
enableLoadingPhrases: {
|
|
469
|
+
type: 'boolean',
|
|
470
|
+
label: 'Enable Loading Phrases',
|
|
471
|
+
category: 'UI',
|
|
472
|
+
requiresRestart: true,
|
|
473
|
+
default: true,
|
|
474
|
+
description: 'Enable loading phrases during operations.',
|
|
475
|
+
showInDialog: true,
|
|
476
|
+
},
|
|
477
|
+
screenReader: {
|
|
478
|
+
type: 'boolean',
|
|
479
|
+
label: 'Screen Reader Mode',
|
|
480
|
+
category: 'UI',
|
|
481
|
+
requiresRestart: true,
|
|
482
|
+
default: false,
|
|
483
|
+
description: 'Render output in plain-text to be more screen reader accessible',
|
|
484
|
+
showInDialog: true,
|
|
485
|
+
},
|
|
486
|
+
},
|
|
487
|
+
},
|
|
488
|
+
},
|
|
489
|
+
},
|
|
490
|
+
ide: {
|
|
491
|
+
type: 'object',
|
|
492
|
+
label: 'IDE',
|
|
493
|
+
category: 'IDE',
|
|
494
|
+
requiresRestart: true,
|
|
495
|
+
default: {},
|
|
496
|
+
description: 'IDE integration settings.',
|
|
497
|
+
showInDialog: false,
|
|
498
|
+
properties: {
|
|
499
|
+
enabled: {
|
|
500
|
+
type: 'boolean',
|
|
501
|
+
label: 'IDE Mode',
|
|
502
|
+
category: 'IDE',
|
|
503
|
+
requiresRestart: true,
|
|
504
|
+
default: false,
|
|
505
|
+
description: 'Enable IDE integration mode.',
|
|
506
|
+
showInDialog: true,
|
|
507
|
+
},
|
|
508
|
+
hasSeenNudge: {
|
|
509
|
+
type: 'boolean',
|
|
510
|
+
label: 'Has Seen IDE Integration Nudge',
|
|
511
|
+
category: 'IDE',
|
|
512
|
+
requiresRestart: false,
|
|
513
|
+
default: false,
|
|
514
|
+
description: 'Whether the user has seen the IDE integration nudge.',
|
|
515
|
+
showInDialog: false,
|
|
516
|
+
},
|
|
517
|
+
},
|
|
518
|
+
},
|
|
519
|
+
privacy: {
|
|
520
|
+
type: 'object',
|
|
521
|
+
label: 'Privacy',
|
|
522
|
+
category: 'Privacy',
|
|
523
|
+
requiresRestart: true,
|
|
524
|
+
default: {},
|
|
525
|
+
description: 'Privacy-related settings.',
|
|
526
|
+
showInDialog: false,
|
|
527
|
+
properties: {
|
|
528
|
+
usageStatisticsEnabled: {
|
|
529
|
+
type: 'boolean',
|
|
530
|
+
label: 'Enable Usage Statistics',
|
|
531
|
+
category: 'Privacy',
|
|
532
|
+
requiresRestart: true,
|
|
533
|
+
default: true,
|
|
534
|
+
description: 'Enable collection of usage statistics',
|
|
535
|
+
showInDialog: false,
|
|
536
|
+
},
|
|
537
|
+
},
|
|
538
|
+
},
|
|
539
|
+
telemetry: {
|
|
540
|
+
type: 'object',
|
|
541
|
+
label: 'Telemetry',
|
|
542
|
+
category: 'Advanced',
|
|
543
|
+
requiresRestart: true,
|
|
544
|
+
default: undefined,
|
|
545
|
+
description: 'Telemetry configuration.',
|
|
546
|
+
showInDialog: false,
|
|
547
|
+
ref: 'TelemetrySettings',
|
|
548
|
+
},
|
|
549
|
+
model: {
|
|
550
|
+
type: 'object',
|
|
551
|
+
label: 'Model',
|
|
552
|
+
category: 'Model',
|
|
553
|
+
requiresRestart: false,
|
|
554
|
+
default: {},
|
|
555
|
+
description: 'Settings related to the generative model.',
|
|
556
|
+
showInDialog: false,
|
|
557
|
+
properties: {
|
|
558
|
+
name: {
|
|
559
|
+
type: 'string',
|
|
560
|
+
label: 'Model',
|
|
561
|
+
category: 'Model',
|
|
562
|
+
requiresRestart: false,
|
|
563
|
+
default: undefined,
|
|
564
|
+
description: 'The Gemini model to use for conversations.',
|
|
565
|
+
showInDialog: false,
|
|
566
|
+
},
|
|
567
|
+
maxSessionTurns: {
|
|
568
|
+
type: 'number',
|
|
569
|
+
label: 'Max Session Turns',
|
|
570
|
+
category: 'Model',
|
|
571
|
+
requiresRestart: false,
|
|
572
|
+
default: -1,
|
|
573
|
+
description: 'Maximum number of user/model/tool turns to keep in a session. -1 means unlimited.',
|
|
574
|
+
showInDialog: true,
|
|
575
|
+
},
|
|
576
|
+
summarizeToolOutput: {
|
|
577
|
+
type: 'object',
|
|
578
|
+
label: 'Summarize Tool Output',
|
|
579
|
+
category: 'Model',
|
|
580
|
+
requiresRestart: false,
|
|
581
|
+
default: undefined,
|
|
582
|
+
description: oneLine `
|
|
583
|
+
Enables or disables summarization of tool output.
|
|
584
|
+
Configure per-tool token budgets (for example {"run_shell_command": {"tokenBudget": 2000}}).
|
|
585
|
+
Currently only the run_shell_command tool supports summarization.
|
|
586
|
+
`,
|
|
587
|
+
showInDialog: false,
|
|
588
|
+
additionalProperties: {
|
|
589
|
+
type: 'object',
|
|
590
|
+
description: 'Per-tool summarization settings with an optional tokenBudget.',
|
|
591
|
+
ref: 'SummarizeToolOutputSettings',
|
|
592
|
+
},
|
|
593
|
+
},
|
|
594
|
+
compressionThreshold: {
|
|
595
|
+
type: 'number',
|
|
596
|
+
label: 'Compression Threshold',
|
|
597
|
+
category: 'Model',
|
|
598
|
+
requiresRestart: true,
|
|
599
|
+
default: 0.5,
|
|
600
|
+
description: 'The fraction of context usage at which to trigger context compression (e.g. 0.2, 0.3).',
|
|
601
|
+
showInDialog: true,
|
|
602
|
+
},
|
|
603
|
+
skipNextSpeakerCheck: {
|
|
604
|
+
type: 'boolean',
|
|
605
|
+
label: 'Skip Next Speaker Check',
|
|
606
|
+
category: 'Model',
|
|
607
|
+
requiresRestart: false,
|
|
608
|
+
default: true,
|
|
609
|
+
description: 'Skip the next speaker check.',
|
|
610
|
+
showInDialog: true,
|
|
611
|
+
},
|
|
612
|
+
},
|
|
613
|
+
},
|
|
614
|
+
modelConfigs: {
|
|
615
|
+
type: 'object',
|
|
616
|
+
label: 'Model Configs',
|
|
617
|
+
category: 'Model',
|
|
618
|
+
requiresRestart: false,
|
|
619
|
+
default: DEFAULT_MODEL_CONFIGS,
|
|
620
|
+
description: 'Model configurations.',
|
|
621
|
+
showInDialog: false,
|
|
622
|
+
properties: {
|
|
623
|
+
aliases: {
|
|
624
|
+
type: 'object',
|
|
625
|
+
label: 'Model Config Aliases',
|
|
626
|
+
category: 'Model',
|
|
627
|
+
requiresRestart: false,
|
|
628
|
+
default: DEFAULT_MODEL_CONFIGS.aliases,
|
|
629
|
+
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.',
|
|
630
|
+
showInDialog: false,
|
|
631
|
+
},
|
|
632
|
+
customAliases: {
|
|
633
|
+
type: 'object',
|
|
634
|
+
label: 'Custom Model Config Aliases',
|
|
635
|
+
category: 'Model',
|
|
636
|
+
requiresRestart: false,
|
|
637
|
+
default: {},
|
|
638
|
+
description: 'Custom named presets for model configs. These are merged with (and override) the built-in aliases.',
|
|
639
|
+
showInDialog: false,
|
|
640
|
+
},
|
|
641
|
+
customOverrides: {
|
|
642
|
+
type: 'array',
|
|
643
|
+
label: 'Custom Model Config Overrides',
|
|
644
|
+
category: 'Model',
|
|
645
|
+
requiresRestart: false,
|
|
646
|
+
default: [],
|
|
647
|
+
description: 'Custom model config overrides. These are merged with (and added to) the built-in overrides.',
|
|
648
|
+
showInDialog: false,
|
|
649
|
+
},
|
|
650
|
+
overrides: {
|
|
651
|
+
type: 'array',
|
|
652
|
+
label: 'Model Config Overrides',
|
|
653
|
+
category: 'Model',
|
|
654
|
+
requiresRestart: false,
|
|
655
|
+
default: [],
|
|
656
|
+
description: 'Apply specific configuration overrides based on matches, with a primary key of model (or alias). The most specific match will be used.',
|
|
657
|
+
showInDialog: false,
|
|
658
|
+
},
|
|
659
|
+
},
|
|
660
|
+
},
|
|
661
|
+
agents: {
|
|
662
|
+
type: 'object',
|
|
663
|
+
label: 'Agents',
|
|
664
|
+
category: 'Advanced',
|
|
665
|
+
requiresRestart: true,
|
|
666
|
+
default: {},
|
|
667
|
+
description: 'Settings for subagents.',
|
|
668
|
+
showInDialog: false,
|
|
669
|
+
properties: {
|
|
670
|
+
overrides: {
|
|
671
|
+
type: 'object',
|
|
672
|
+
label: 'Agent Overrides',
|
|
673
|
+
category: 'Advanced',
|
|
674
|
+
requiresRestart: true,
|
|
675
|
+
default: {},
|
|
676
|
+
description: 'Override settings for specific agents, e.g. to disable the agent, set a custom model config, or run config.',
|
|
677
|
+
showInDialog: false,
|
|
678
|
+
additionalProperties: {
|
|
679
|
+
type: 'object',
|
|
680
|
+
ref: 'AgentOverride',
|
|
681
|
+
},
|
|
682
|
+
},
|
|
683
|
+
},
|
|
684
|
+
},
|
|
685
|
+
context: {
|
|
686
|
+
type: 'object',
|
|
687
|
+
label: 'Context',
|
|
688
|
+
category: 'Context',
|
|
689
|
+
requiresRestart: false,
|
|
690
|
+
default: {},
|
|
691
|
+
description: 'Settings for managing context provided to the model.',
|
|
692
|
+
showInDialog: false,
|
|
693
|
+
properties: {
|
|
694
|
+
fileName: {
|
|
695
|
+
type: 'string',
|
|
696
|
+
label: 'Context File Name',
|
|
697
|
+
category: 'Context',
|
|
698
|
+
requiresRestart: false,
|
|
699
|
+
default: undefined,
|
|
700
|
+
ref: 'StringOrStringArray',
|
|
701
|
+
description: 'The name of the context file or files to load into memory. Accepts either a single string or an array of strings.',
|
|
702
|
+
showInDialog: false,
|
|
703
|
+
},
|
|
704
|
+
importFormat: {
|
|
705
|
+
type: 'string',
|
|
706
|
+
label: 'Memory Import Format',
|
|
707
|
+
category: 'Context',
|
|
708
|
+
requiresRestart: false,
|
|
709
|
+
default: undefined,
|
|
710
|
+
description: 'The format to use when importing memory.',
|
|
711
|
+
showInDialog: false,
|
|
712
|
+
},
|
|
713
|
+
discoveryMaxDirs: {
|
|
714
|
+
type: 'number',
|
|
715
|
+
label: 'Memory Discovery Max Dirs',
|
|
716
|
+
category: 'Context',
|
|
717
|
+
requiresRestart: false,
|
|
718
|
+
default: 200,
|
|
719
|
+
description: 'Maximum number of directories to search for memory.',
|
|
720
|
+
showInDialog: true,
|
|
721
|
+
},
|
|
722
|
+
includeDirectories: {
|
|
723
|
+
type: 'array',
|
|
724
|
+
label: 'Include Directories',
|
|
725
|
+
category: 'Context',
|
|
726
|
+
requiresRestart: false,
|
|
727
|
+
default: [],
|
|
728
|
+
description: oneLine `
|
|
729
|
+
Additional directories to include in the workspace context.
|
|
730
|
+
Missing directories will be skipped with a warning.
|
|
731
|
+
`,
|
|
732
|
+
showInDialog: false,
|
|
733
|
+
items: { type: 'string' },
|
|
734
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
735
|
+
},
|
|
736
|
+
loadMemoryFromIncludeDirectories: {
|
|
737
|
+
type: 'boolean',
|
|
738
|
+
label: 'Load Memory From Include Directories',
|
|
739
|
+
category: 'Context',
|
|
740
|
+
requiresRestart: false,
|
|
741
|
+
default: false,
|
|
742
|
+
description: oneLine `
|
|
743
|
+
Controls how /memory refresh loads GEMINI.md files.
|
|
744
|
+
When true, include directories are scanned; when false, only the current directory is used.
|
|
745
|
+
`,
|
|
746
|
+
showInDialog: true,
|
|
747
|
+
},
|
|
748
|
+
fileFiltering: {
|
|
749
|
+
type: 'object',
|
|
750
|
+
label: 'File Filtering',
|
|
751
|
+
category: 'Context',
|
|
752
|
+
requiresRestart: true,
|
|
753
|
+
default: {},
|
|
754
|
+
description: 'Settings for git-aware file filtering.',
|
|
755
|
+
showInDialog: false,
|
|
756
|
+
properties: {
|
|
757
|
+
respectGitIgnore: {
|
|
758
|
+
type: 'boolean',
|
|
759
|
+
label: 'Respect .gitignore',
|
|
760
|
+
category: 'Context',
|
|
761
|
+
requiresRestart: true,
|
|
762
|
+
default: true,
|
|
763
|
+
description: 'Respect .gitignore files when searching.',
|
|
764
|
+
showInDialog: true,
|
|
765
|
+
},
|
|
766
|
+
respectGeminiIgnore: {
|
|
767
|
+
type: 'boolean',
|
|
768
|
+
label: 'Respect .geminiignore',
|
|
769
|
+
category: 'Context',
|
|
770
|
+
requiresRestart: true,
|
|
771
|
+
default: true,
|
|
772
|
+
description: 'Respect .geminiignore files when searching.',
|
|
773
|
+
showInDialog: true,
|
|
774
|
+
},
|
|
775
|
+
enableRecursiveFileSearch: {
|
|
776
|
+
type: 'boolean',
|
|
777
|
+
label: 'Enable Recursive File Search',
|
|
778
|
+
category: 'Context',
|
|
779
|
+
requiresRestart: true,
|
|
780
|
+
default: true,
|
|
781
|
+
description: oneLine `
|
|
782
|
+
Enable recursive file search functionality when completing @ references in the prompt.
|
|
783
|
+
`,
|
|
784
|
+
showInDialog: true,
|
|
785
|
+
},
|
|
786
|
+
enableFuzzySearch: {
|
|
787
|
+
type: 'boolean',
|
|
788
|
+
label: 'Enable Fuzzy Search',
|
|
789
|
+
category: 'Context',
|
|
790
|
+
requiresRestart: true,
|
|
791
|
+
default: true,
|
|
792
|
+
description: 'Enable fuzzy search when searching for files.',
|
|
793
|
+
showInDialog: true,
|
|
794
|
+
},
|
|
795
|
+
},
|
|
796
|
+
},
|
|
797
|
+
},
|
|
798
|
+
},
|
|
799
|
+
tools: {
|
|
800
|
+
type: 'object',
|
|
801
|
+
label: 'Tools',
|
|
802
|
+
category: 'Tools',
|
|
803
|
+
requiresRestart: true,
|
|
804
|
+
default: {},
|
|
805
|
+
description: 'Settings for built-in and custom tools.',
|
|
806
|
+
showInDialog: false,
|
|
807
|
+
properties: {
|
|
808
|
+
sandbox: {
|
|
809
|
+
type: 'string',
|
|
810
|
+
label: 'Sandbox',
|
|
811
|
+
category: 'Tools',
|
|
812
|
+
requiresRestart: true,
|
|
813
|
+
default: undefined,
|
|
814
|
+
ref: 'BooleanOrString',
|
|
815
|
+
description: oneLine `
|
|
816
|
+
Sandbox execution environment.
|
|
817
|
+
Set to a boolean to enable or disable the sandbox, or provide a string path to a sandbox profile.
|
|
818
|
+
`,
|
|
819
|
+
showInDialog: false,
|
|
820
|
+
},
|
|
821
|
+
shell: {
|
|
822
|
+
type: 'object',
|
|
823
|
+
label: 'Shell',
|
|
824
|
+
category: 'Tools',
|
|
825
|
+
requiresRestart: false,
|
|
826
|
+
default: {},
|
|
827
|
+
description: 'Settings for shell execution.',
|
|
828
|
+
showInDialog: false,
|
|
829
|
+
properties: {
|
|
830
|
+
enableInteractiveShell: {
|
|
831
|
+
type: 'boolean',
|
|
832
|
+
label: 'Enable Interactive Shell',
|
|
833
|
+
category: 'Tools',
|
|
834
|
+
requiresRestart: true,
|
|
835
|
+
default: true,
|
|
836
|
+
description: oneLine `
|
|
837
|
+
Use node-pty for an interactive shell experience.
|
|
838
|
+
Fallback to child_process still applies.
|
|
839
|
+
`,
|
|
840
|
+
showInDialog: true,
|
|
841
|
+
},
|
|
842
|
+
pager: {
|
|
843
|
+
type: 'string',
|
|
844
|
+
label: 'Pager',
|
|
845
|
+
category: 'Tools',
|
|
846
|
+
requiresRestart: false,
|
|
847
|
+
default: 'cat',
|
|
848
|
+
description: 'The pager command to use for shell output. Defaults to `cat`.',
|
|
849
|
+
showInDialog: false,
|
|
850
|
+
},
|
|
851
|
+
showColor: {
|
|
852
|
+
type: 'boolean',
|
|
853
|
+
label: 'Show Color',
|
|
854
|
+
category: 'Tools',
|
|
855
|
+
requiresRestart: false,
|
|
856
|
+
default: false,
|
|
857
|
+
description: 'Show color in shell output.',
|
|
858
|
+
showInDialog: true,
|
|
859
|
+
},
|
|
860
|
+
inactivityTimeout: {
|
|
861
|
+
type: 'number',
|
|
862
|
+
label: 'Inactivity Timeout',
|
|
863
|
+
category: 'Tools',
|
|
864
|
+
requiresRestart: false,
|
|
865
|
+
default: 31536000000,
|
|
866
|
+
description: 'The maximum time in seconds allowed without output from the shell command. Defaults to 5 minutes.',
|
|
867
|
+
showInDialog: false,
|
|
868
|
+
},
|
|
869
|
+
enableShellOutputEfficiency: {
|
|
870
|
+
type: 'boolean',
|
|
871
|
+
label: 'Enable Shell Output Efficiency',
|
|
872
|
+
category: 'Tools',
|
|
873
|
+
requiresRestart: false,
|
|
874
|
+
default: true,
|
|
875
|
+
description: 'Enable shell output efficiency optimizations for better performance.',
|
|
876
|
+
showInDialog: false,
|
|
877
|
+
},
|
|
878
|
+
},
|
|
879
|
+
},
|
|
880
|
+
autoAccept: {
|
|
881
|
+
type: 'boolean',
|
|
882
|
+
label: 'Auto Accept',
|
|
883
|
+
category: 'Tools',
|
|
884
|
+
requiresRestart: false,
|
|
885
|
+
default: false,
|
|
886
|
+
description: oneLine `
|
|
887
|
+
Automatically accept and execute tool calls that are considered safe (e.g., read-only operations).
|
|
888
|
+
`,
|
|
889
|
+
showInDialog: true,
|
|
890
|
+
},
|
|
891
|
+
core: {
|
|
892
|
+
type: 'array',
|
|
893
|
+
label: 'Core Tools',
|
|
894
|
+
category: 'Tools',
|
|
895
|
+
requiresRestart: true,
|
|
896
|
+
default: undefined,
|
|
897
|
+
description: oneLine `
|
|
898
|
+
Restrict the set of built-in tools with an allowlist.
|
|
899
|
+
Match semantics mirror tools.allowed; see the built-in tools documentation for available names.
|
|
900
|
+
`,
|
|
901
|
+
showInDialog: false,
|
|
902
|
+
items: { type: 'string' },
|
|
903
|
+
},
|
|
904
|
+
allowed: {
|
|
905
|
+
type: 'array',
|
|
906
|
+
label: 'Allowed Tools',
|
|
907
|
+
category: 'Advanced',
|
|
908
|
+
requiresRestart: true,
|
|
909
|
+
default: undefined,
|
|
910
|
+
description: oneLine `
|
|
911
|
+
Tool names that bypass the confirmation dialog.
|
|
912
|
+
Useful for trusted commands (for example ["run_shell_command(git)", "run_shell_command(npm test)"]).
|
|
913
|
+
See shell tool command restrictions for matching details.
|
|
914
|
+
`,
|
|
915
|
+
showInDialog: false,
|
|
916
|
+
items: { type: 'string' },
|
|
917
|
+
},
|
|
918
|
+
exclude: {
|
|
919
|
+
type: 'array',
|
|
920
|
+
label: 'Exclude Tools',
|
|
921
|
+
category: 'Tools',
|
|
922
|
+
requiresRestart: true,
|
|
923
|
+
default: undefined,
|
|
924
|
+
description: 'Tool names to exclude from discovery.',
|
|
925
|
+
showInDialog: false,
|
|
926
|
+
items: { type: 'string' },
|
|
927
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
928
|
+
},
|
|
929
|
+
discoveryCommand: {
|
|
930
|
+
type: 'string',
|
|
931
|
+
label: 'Tool Discovery Command',
|
|
932
|
+
category: 'Tools',
|
|
933
|
+
requiresRestart: true,
|
|
934
|
+
default: undefined,
|
|
935
|
+
description: 'Command to run for tool discovery.',
|
|
936
|
+
showInDialog: false,
|
|
937
|
+
},
|
|
938
|
+
callCommand: {
|
|
939
|
+
type: 'string',
|
|
940
|
+
label: 'Tool Call Command',
|
|
941
|
+
category: 'Tools',
|
|
942
|
+
requiresRestart: true,
|
|
943
|
+
default: undefined,
|
|
944
|
+
description: oneLine `
|
|
945
|
+
Defines a custom shell command for invoking discovered tools.
|
|
946
|
+
The command must take the tool name as the first argument, read JSON arguments from stdin, and emit JSON results on stdout.
|
|
947
|
+
`,
|
|
948
|
+
showInDialog: false,
|
|
949
|
+
},
|
|
950
|
+
useRipgrep: {
|
|
951
|
+
type: 'boolean',
|
|
952
|
+
label: 'Use Ripgrep',
|
|
953
|
+
category: 'Tools',
|
|
954
|
+
requiresRestart: false,
|
|
955
|
+
default: true,
|
|
956
|
+
description: 'Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.',
|
|
957
|
+
showInDialog: true,
|
|
958
|
+
},
|
|
959
|
+
enableToolOutputTruncation: {
|
|
960
|
+
type: 'boolean',
|
|
961
|
+
label: 'Enable Tool Output Truncation',
|
|
962
|
+
category: 'General',
|
|
963
|
+
requiresRestart: true,
|
|
964
|
+
default: true,
|
|
965
|
+
description: 'Enable truncation of large tool outputs.',
|
|
966
|
+
showInDialog: true,
|
|
967
|
+
},
|
|
968
|
+
truncateToolOutputThreshold: {
|
|
969
|
+
type: 'number',
|
|
970
|
+
label: 'Tool Output Truncation Threshold',
|
|
971
|
+
category: 'General',
|
|
972
|
+
requiresRestart: true,
|
|
973
|
+
default: DEFAULT_TRUNCATE_TOOL_OUTPUT_THRESHOLD,
|
|
974
|
+
description: 'Truncate tool output if it is larger than this many characters. Set to -1 to disable.',
|
|
975
|
+
showInDialog: true,
|
|
976
|
+
},
|
|
977
|
+
truncateToolOutputLines: {
|
|
978
|
+
type: 'number',
|
|
979
|
+
label: 'Tool Output Truncation Lines',
|
|
980
|
+
category: 'General',
|
|
981
|
+
requiresRestart: true,
|
|
982
|
+
default: DEFAULT_TRUNCATE_TOOL_OUTPUT_LINES,
|
|
983
|
+
description: 'The number of lines to keep when truncating tool output.',
|
|
984
|
+
showInDialog: true,
|
|
985
|
+
},
|
|
986
|
+
disableLLMCorrection: {
|
|
987
|
+
type: 'boolean',
|
|
988
|
+
label: 'Disable LLM Correction',
|
|
989
|
+
category: 'Tools',
|
|
990
|
+
requiresRestart: true,
|
|
991
|
+
default: true,
|
|
992
|
+
description: oneLine `
|
|
993
|
+
Disable LLM-based error correction for edit tools.
|
|
994
|
+
When enabled, tools will fail immediately if exact string matches are not found, instead of attempting to self-correct.
|
|
995
|
+
`,
|
|
996
|
+
showInDialog: true,
|
|
997
|
+
},
|
|
998
|
+
enableHooks: {
|
|
999
|
+
type: 'boolean',
|
|
1000
|
+
label: 'Enable Hooks System (Experimental)',
|
|
1001
|
+
category: 'Advanced',
|
|
1002
|
+
requiresRestart: true,
|
|
1003
|
+
default: true,
|
|
1004
|
+
description: 'Enables the hooks system experiment. When disabled, the hooks system is completely deactivated regardless of other settings.',
|
|
1005
|
+
showInDialog: false,
|
|
1006
|
+
},
|
|
1007
|
+
},
|
|
1008
|
+
},
|
|
1009
|
+
mcp: {
|
|
1010
|
+
type: 'object',
|
|
1011
|
+
label: 'MCP',
|
|
1012
|
+
category: 'MCP',
|
|
1013
|
+
requiresRestart: true,
|
|
1014
|
+
default: {},
|
|
1015
|
+
description: 'Settings for Model Context Protocol (MCP) servers.',
|
|
1016
|
+
showInDialog: false,
|
|
1017
|
+
properties: {
|
|
1018
|
+
serverCommand: {
|
|
1019
|
+
type: 'string',
|
|
1020
|
+
label: 'MCP Server Command',
|
|
1021
|
+
category: 'MCP',
|
|
1022
|
+
requiresRestart: true,
|
|
1023
|
+
default: undefined,
|
|
1024
|
+
description: 'Command to start an MCP server.',
|
|
1025
|
+
showInDialog: false,
|
|
1026
|
+
},
|
|
1027
|
+
allowed: {
|
|
1028
|
+
type: 'array',
|
|
1029
|
+
label: 'Allow MCP Servers',
|
|
1030
|
+
category: 'MCP',
|
|
1031
|
+
requiresRestart: true,
|
|
1032
|
+
default: undefined,
|
|
1033
|
+
description: 'A list of MCP servers to allow.',
|
|
1034
|
+
showInDialog: false,
|
|
1035
|
+
items: { type: 'string' },
|
|
1036
|
+
},
|
|
1037
|
+
excluded: {
|
|
1038
|
+
type: 'array',
|
|
1039
|
+
label: 'Exclude MCP Servers',
|
|
1040
|
+
category: 'MCP',
|
|
1041
|
+
requiresRestart: true,
|
|
1042
|
+
default: undefined,
|
|
1043
|
+
description: 'A list of MCP servers to exclude.',
|
|
1044
|
+
showInDialog: false,
|
|
1045
|
+
items: { type: 'string' },
|
|
1046
|
+
},
|
|
1047
|
+
},
|
|
1048
|
+
},
|
|
1049
|
+
useWriteTodos: {
|
|
1050
|
+
type: 'boolean',
|
|
1051
|
+
label: 'Use WriteTodos',
|
|
1052
|
+
category: 'Advanced',
|
|
1053
|
+
requiresRestart: false,
|
|
1054
|
+
default: true,
|
|
1055
|
+
description: 'Enable the write_todos tool.',
|
|
1056
|
+
showInDialog: false,
|
|
1057
|
+
},
|
|
1058
|
+
security: {
|
|
1059
|
+
type: 'object',
|
|
1060
|
+
label: 'Security',
|
|
1061
|
+
category: 'Security',
|
|
1062
|
+
requiresRestart: true,
|
|
1063
|
+
default: {},
|
|
1064
|
+
description: 'Security-related settings.',
|
|
1065
|
+
showInDialog: false,
|
|
1066
|
+
properties: {
|
|
1067
|
+
disableYoloMode: {
|
|
1068
|
+
type: 'boolean',
|
|
1069
|
+
label: 'Disable YOLO Mode',
|
|
1070
|
+
category: 'Security',
|
|
1071
|
+
requiresRestart: true,
|
|
1072
|
+
default: false,
|
|
1073
|
+
description: 'Disable YOLO mode, even if enabled by a flag.',
|
|
1074
|
+
showInDialog: true,
|
|
1075
|
+
},
|
|
1076
|
+
enablePermanentToolApproval: {
|
|
1077
|
+
type: 'boolean',
|
|
1078
|
+
label: 'Allow Permanent Tool Approval',
|
|
1079
|
+
category: 'Security',
|
|
1080
|
+
requiresRestart: false,
|
|
1081
|
+
default: false,
|
|
1082
|
+
description: 'Enable the "Allow for all future sessions" option in tool confirmation dialogs.',
|
|
1083
|
+
showInDialog: true,
|
|
1084
|
+
},
|
|
1085
|
+
blockGitExtensions: {
|
|
1086
|
+
type: 'boolean',
|
|
1087
|
+
label: 'Blocks extensions from Git',
|
|
1088
|
+
category: 'Security',
|
|
1089
|
+
requiresRestart: true,
|
|
1090
|
+
default: false,
|
|
1091
|
+
description: 'Blocks installing and loading extensions from Git.',
|
|
1092
|
+
showInDialog: true,
|
|
1093
|
+
},
|
|
1094
|
+
folderTrust: {
|
|
1095
|
+
type: 'object',
|
|
1096
|
+
label: 'Folder Trust',
|
|
1097
|
+
category: 'Security',
|
|
1098
|
+
requiresRestart: false,
|
|
1099
|
+
default: {},
|
|
1100
|
+
description: 'Settings for folder trust.',
|
|
1101
|
+
showInDialog: false,
|
|
1102
|
+
properties: {
|
|
1103
|
+
enabled: {
|
|
1104
|
+
type: 'boolean',
|
|
1105
|
+
label: 'Folder Trust',
|
|
1106
|
+
category: 'Security',
|
|
1107
|
+
requiresRestart: true,
|
|
1108
|
+
default: false,
|
|
1109
|
+
description: 'Setting to track whether Folder trust is enabled.',
|
|
1110
|
+
showInDialog: true,
|
|
1111
|
+
},
|
|
1112
|
+
},
|
|
1113
|
+
},
|
|
1114
|
+
environmentVariableRedaction: {
|
|
1115
|
+
type: 'object',
|
|
1116
|
+
label: 'Environment Variable Redaction',
|
|
1117
|
+
category: 'Security',
|
|
1118
|
+
requiresRestart: false,
|
|
1119
|
+
default: {},
|
|
1120
|
+
description: 'Settings for environment variable redaction.',
|
|
1121
|
+
showInDialog: false,
|
|
1122
|
+
properties: {
|
|
1123
|
+
allowed: {
|
|
1124
|
+
type: 'array',
|
|
1125
|
+
label: 'Allowed Environment Variables',
|
|
1126
|
+
category: 'Security',
|
|
1127
|
+
requiresRestart: true,
|
|
1128
|
+
default: [],
|
|
1129
|
+
description: 'Environment variables to always allow (bypass redaction).',
|
|
1130
|
+
showInDialog: false,
|
|
1131
|
+
items: { type: 'string' },
|
|
1132
|
+
},
|
|
1133
|
+
blocked: {
|
|
1134
|
+
type: 'array',
|
|
1135
|
+
label: 'Blocked Environment Variables',
|
|
1136
|
+
category: 'Security',
|
|
1137
|
+
requiresRestart: true,
|
|
1138
|
+
default: [],
|
|
1139
|
+
description: 'Environment variables to always redact.',
|
|
1140
|
+
showInDialog: false,
|
|
1141
|
+
items: { type: 'string' },
|
|
1142
|
+
},
|
|
1143
|
+
enabled: {
|
|
1144
|
+
type: 'boolean',
|
|
1145
|
+
label: 'Enable Environment Variable Redaction',
|
|
1146
|
+
category: 'Security',
|
|
1147
|
+
requiresRestart: true,
|
|
1148
|
+
default: false,
|
|
1149
|
+
description: 'Enable redaction of environment variables that may contain secrets.',
|
|
1150
|
+
showInDialog: true,
|
|
1151
|
+
},
|
|
1152
|
+
},
|
|
1153
|
+
},
|
|
1154
|
+
auth: {
|
|
1155
|
+
type: 'object',
|
|
1156
|
+
label: 'Authentication',
|
|
1157
|
+
category: 'Security',
|
|
1158
|
+
requiresRestart: true,
|
|
1159
|
+
default: {},
|
|
1160
|
+
description: 'Authentication settings.',
|
|
1161
|
+
showInDialog: false,
|
|
1162
|
+
properties: {
|
|
1163
|
+
selectedType: {
|
|
1164
|
+
type: 'string',
|
|
1165
|
+
label: 'Selected Auth Type',
|
|
1166
|
+
category: 'Security',
|
|
1167
|
+
requiresRestart: true,
|
|
1168
|
+
default: undefined,
|
|
1169
|
+
description: 'The currently selected authentication type.',
|
|
1170
|
+
showInDialog: false,
|
|
1171
|
+
},
|
|
1172
|
+
enforcedType: {
|
|
1173
|
+
type: 'string',
|
|
1174
|
+
label: 'Enforced Auth Type',
|
|
1175
|
+
category: 'Advanced',
|
|
1176
|
+
requiresRestart: true,
|
|
1177
|
+
default: undefined,
|
|
1178
|
+
description: 'The required auth type. If this does not match the selected auth type, the user will be prompted to re-authenticate.',
|
|
1179
|
+
showInDialog: false,
|
|
1180
|
+
},
|
|
1181
|
+
useExternal: {
|
|
1182
|
+
type: 'boolean',
|
|
1183
|
+
label: 'Use External Auth',
|
|
1184
|
+
category: 'Security',
|
|
1185
|
+
requiresRestart: true,
|
|
1186
|
+
default: undefined,
|
|
1187
|
+
description: 'Whether to use an external authentication flow.',
|
|
1188
|
+
showInDialog: false,
|
|
1189
|
+
},
|
|
1190
|
+
},
|
|
1191
|
+
},
|
|
1192
|
+
},
|
|
1193
|
+
},
|
|
1194
|
+
advanced: {
|
|
1195
|
+
type: 'object',
|
|
1196
|
+
label: 'Advanced',
|
|
1197
|
+
category: 'Advanced',
|
|
1198
|
+
requiresRestart: true,
|
|
1199
|
+
default: {},
|
|
1200
|
+
description: 'Advanced settings for power users.',
|
|
1201
|
+
showInDialog: false,
|
|
1202
|
+
properties: {
|
|
1203
|
+
autoConfigureMemory: {
|
|
1204
|
+
type: 'boolean',
|
|
1205
|
+
label: 'Auto Configure Max Old Space Size',
|
|
1206
|
+
category: 'Advanced',
|
|
1207
|
+
requiresRestart: true,
|
|
1208
|
+
default: false,
|
|
1209
|
+
description: 'Automatically configure Node.js memory limits',
|
|
1210
|
+
showInDialog: false,
|
|
1211
|
+
},
|
|
1212
|
+
dnsResolutionOrder: {
|
|
1213
|
+
type: 'string',
|
|
1214
|
+
label: 'DNS Resolution Order',
|
|
1215
|
+
category: 'Advanced',
|
|
1216
|
+
requiresRestart: true,
|
|
1217
|
+
default: undefined,
|
|
1218
|
+
description: 'The DNS resolution order.',
|
|
1219
|
+
showInDialog: false,
|
|
1220
|
+
},
|
|
1221
|
+
excludedEnvVars: {
|
|
1222
|
+
type: 'array',
|
|
1223
|
+
label: 'Excluded Project Environment Variables',
|
|
1224
|
+
category: 'Advanced',
|
|
1225
|
+
requiresRestart: false,
|
|
1226
|
+
default: ['DEBUG', 'DEBUG_MODE'],
|
|
1227
|
+
description: 'Environment variables to exclude from project context.',
|
|
1228
|
+
showInDialog: false,
|
|
1229
|
+
items: { type: 'string' },
|
|
1230
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1231
|
+
},
|
|
1232
|
+
bugCommand: {
|
|
1233
|
+
type: 'object',
|
|
1234
|
+
label: 'Bug Command',
|
|
1235
|
+
category: 'Advanced',
|
|
1236
|
+
requiresRestart: false,
|
|
1237
|
+
default: undefined,
|
|
1238
|
+
description: 'Configuration for the bug report command.',
|
|
1239
|
+
showInDialog: false,
|
|
1240
|
+
ref: 'BugCommandSettings',
|
|
1241
|
+
},
|
|
1242
|
+
},
|
|
1243
|
+
},
|
|
1244
|
+
experimental: {
|
|
1245
|
+
type: 'object',
|
|
1246
|
+
label: 'Experimental',
|
|
1247
|
+
category: 'Experimental',
|
|
1248
|
+
requiresRestart: true,
|
|
1249
|
+
default: {},
|
|
1250
|
+
description: 'Setting to enable experimental features',
|
|
1251
|
+
showInDialog: false,
|
|
1252
|
+
properties: {
|
|
1253
|
+
enableAgents: {
|
|
1254
|
+
type: 'boolean',
|
|
1255
|
+
label: 'Enable Agents',
|
|
1256
|
+
category: 'Experimental',
|
|
1257
|
+
requiresRestart: true,
|
|
1258
|
+
default: true,
|
|
1259
|
+
description: 'Enable local and remote subagents. Warning: Experimental feature, uses YOLO mode for subagents',
|
|
1260
|
+
showInDialog: false,
|
|
1261
|
+
},
|
|
1262
|
+
extensionManagement: {
|
|
1263
|
+
type: 'boolean',
|
|
1264
|
+
label: 'Extension Management',
|
|
1265
|
+
category: 'Experimental',
|
|
1266
|
+
requiresRestart: true,
|
|
1267
|
+
default: true,
|
|
1268
|
+
description: 'Enable extension management features.',
|
|
1269
|
+
showInDialog: false,
|
|
1270
|
+
},
|
|
1271
|
+
extensionConfig: {
|
|
1272
|
+
type: 'boolean',
|
|
1273
|
+
label: 'Extension Configuration',
|
|
1274
|
+
category: 'Experimental',
|
|
1275
|
+
requiresRestart: true,
|
|
1276
|
+
default: false,
|
|
1277
|
+
description: 'Enable requesting and fetching of extension settings.',
|
|
1278
|
+
showInDialog: false,
|
|
1279
|
+
},
|
|
1280
|
+
enableEventDrivenScheduler: {
|
|
1281
|
+
type: 'boolean',
|
|
1282
|
+
label: 'Event Driven Scheduler',
|
|
1283
|
+
category: 'Experimental',
|
|
1284
|
+
requiresRestart: true,
|
|
1285
|
+
default: true,
|
|
1286
|
+
description: 'Enables event-driven scheduler within the CLI session.',
|
|
1287
|
+
showInDialog: false,
|
|
1288
|
+
},
|
|
1289
|
+
extensionReloading: {
|
|
1290
|
+
type: 'boolean',
|
|
1291
|
+
label: 'Extension Reloading',
|
|
1292
|
+
category: 'Experimental',
|
|
1293
|
+
requiresRestart: true,
|
|
1294
|
+
default: false,
|
|
1295
|
+
description: 'Enables extension loading/unloading within the CLI session.',
|
|
1296
|
+
showInDialog: false,
|
|
1297
|
+
},
|
|
1298
|
+
jitContext: {
|
|
1299
|
+
type: 'boolean',
|
|
1300
|
+
label: 'JIT Context Loading',
|
|
1301
|
+
category: 'Experimental',
|
|
1302
|
+
requiresRestart: true,
|
|
1303
|
+
default: false,
|
|
1304
|
+
description: 'Enable Just-In-Time (JIT) context loading.',
|
|
1305
|
+
showInDialog: false,
|
|
1306
|
+
},
|
|
1307
|
+
skills: {
|
|
1308
|
+
type: 'boolean',
|
|
1309
|
+
label: 'Agent Skills',
|
|
1310
|
+
category: 'Experimental',
|
|
1311
|
+
requiresRestart: true,
|
|
1312
|
+
default: true,
|
|
1313
|
+
description: 'Enable Agent Skills (experimental).',
|
|
1314
|
+
showInDialog: true,
|
|
1315
|
+
},
|
|
1316
|
+
useOSC52Paste: {
|
|
1317
|
+
type: 'boolean',
|
|
1318
|
+
label: 'Use OSC 52 Paste',
|
|
1319
|
+
category: 'Experimental',
|
|
1320
|
+
requiresRestart: false,
|
|
1321
|
+
default: false,
|
|
1322
|
+
description: 'Use OSC 52 sequence for pasting instead of clipboardy (useful for remote sessions).',
|
|
1323
|
+
showInDialog: true,
|
|
1324
|
+
},
|
|
1325
|
+
plan: {
|
|
1326
|
+
type: 'boolean',
|
|
1327
|
+
label: 'Plan',
|
|
1328
|
+
category: 'Experimental',
|
|
1329
|
+
requiresRestart: true,
|
|
1330
|
+
default: false,
|
|
1331
|
+
description: 'Enable planning features (Plan Mode and tools).',
|
|
1332
|
+
showInDialog: true,
|
|
1333
|
+
},
|
|
1334
|
+
},
|
|
1335
|
+
},
|
|
1336
|
+
extensions: {
|
|
1337
|
+
type: 'object',
|
|
1338
|
+
label: 'Extensions',
|
|
1339
|
+
category: 'Extensions',
|
|
1340
|
+
requiresRestart: true,
|
|
1341
|
+
default: {},
|
|
1342
|
+
description: 'Settings for extensions.',
|
|
1343
|
+
showInDialog: false,
|
|
1344
|
+
properties: {
|
|
1345
|
+
disabled: {
|
|
1346
|
+
type: 'array',
|
|
1347
|
+
label: 'Disabled Extensions',
|
|
1348
|
+
category: 'Extensions',
|
|
1349
|
+
requiresRestart: true,
|
|
1350
|
+
default: [],
|
|
1351
|
+
description: 'List of disabled extensions.',
|
|
1352
|
+
showInDialog: false,
|
|
1353
|
+
items: { type: 'string' },
|
|
1354
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1355
|
+
},
|
|
1356
|
+
workspacesWithMigrationNudge: {
|
|
1357
|
+
type: 'array',
|
|
1358
|
+
label: 'Workspaces with Migration Nudge',
|
|
1359
|
+
category: 'Extensions',
|
|
1360
|
+
requiresRestart: false,
|
|
1361
|
+
default: [],
|
|
1362
|
+
description: 'List of workspaces for which the migration nudge has been shown.',
|
|
1363
|
+
showInDialog: false,
|
|
1364
|
+
items: { type: 'string' },
|
|
1365
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1366
|
+
},
|
|
1367
|
+
},
|
|
1368
|
+
},
|
|
1369
|
+
skills: {
|
|
1370
|
+
type: 'object',
|
|
1371
|
+
label: 'Skills',
|
|
1372
|
+
category: 'Advanced',
|
|
1373
|
+
requiresRestart: true,
|
|
1374
|
+
default: {},
|
|
1375
|
+
description: 'Settings for agent skills.',
|
|
1376
|
+
showInDialog: false,
|
|
1377
|
+
properties: {
|
|
1378
|
+
enabled: {
|
|
1379
|
+
type: 'boolean',
|
|
1380
|
+
label: 'Enable Agent Skills',
|
|
1381
|
+
category: 'Advanced',
|
|
1382
|
+
requiresRestart: true,
|
|
1383
|
+
default: true,
|
|
1384
|
+
description: 'Enable Agent Skills.',
|
|
1385
|
+
showInDialog: true,
|
|
1386
|
+
ignoreInDocs: true,
|
|
1387
|
+
},
|
|
1388
|
+
disabled: {
|
|
1389
|
+
type: 'array',
|
|
1390
|
+
label: 'Disabled Skills',
|
|
1391
|
+
category: 'Advanced',
|
|
1392
|
+
requiresRestart: true,
|
|
1393
|
+
default: [],
|
|
1394
|
+
description: 'List of disabled skills.',
|
|
1395
|
+
showInDialog: false,
|
|
1396
|
+
items: { type: 'string' },
|
|
1397
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1398
|
+
},
|
|
1399
|
+
},
|
|
1400
|
+
},
|
|
1401
|
+
hooksConfig: {
|
|
1402
|
+
type: 'object',
|
|
1403
|
+
label: 'HooksConfig',
|
|
1404
|
+
category: 'Advanced',
|
|
1405
|
+
requiresRestart: false,
|
|
1406
|
+
default: {},
|
|
1407
|
+
description: 'Hook configurations for intercepting and customizing agent behavior.',
|
|
1408
|
+
showInDialog: false,
|
|
1409
|
+
properties: {
|
|
1410
|
+
enabled: {
|
|
1411
|
+
type: 'boolean',
|
|
1412
|
+
label: 'Enable Hooks',
|
|
1413
|
+
category: 'Advanced',
|
|
1414
|
+
requiresRestart: false,
|
|
1415
|
+
default: true,
|
|
1416
|
+
description: 'Canonical toggle for the hooks system. When disabled, no hooks will be executed.',
|
|
1417
|
+
showInDialog: false,
|
|
1418
|
+
},
|
|
1419
|
+
disabled: {
|
|
1420
|
+
type: 'array',
|
|
1421
|
+
label: 'Disabled Hooks',
|
|
1422
|
+
category: 'Advanced',
|
|
1423
|
+
requiresRestart: false,
|
|
1424
|
+
default: [],
|
|
1425
|
+
description: 'List of hook names (commands) that should be disabled. Hooks in this list will not execute even if configured.',
|
|
1426
|
+
showInDialog: false,
|
|
1427
|
+
items: {
|
|
1428
|
+
type: 'string',
|
|
1429
|
+
description: 'Hook command name',
|
|
1430
|
+
},
|
|
1431
|
+
mergeStrategy: MergeStrategy.UNION,
|
|
1432
|
+
},
|
|
1433
|
+
notifications: {
|
|
1434
|
+
type: 'boolean',
|
|
1435
|
+
label: 'Hook Notifications',
|
|
1436
|
+
category: 'Advanced',
|
|
1437
|
+
requiresRestart: false,
|
|
1438
|
+
default: true,
|
|
1439
|
+
description: 'Show visual indicators when hooks are executing.',
|
|
1440
|
+
showInDialog: true,
|
|
1441
|
+
},
|
|
1442
|
+
},
|
|
1443
|
+
},
|
|
1444
|
+
hooks: {
|
|
1445
|
+
type: 'object',
|
|
1446
|
+
label: 'Hook Events',
|
|
1447
|
+
category: 'Advanced',
|
|
1448
|
+
requiresRestart: false,
|
|
1449
|
+
default: {},
|
|
1450
|
+
description: 'Event-specific hook configurations.',
|
|
1451
|
+
showInDialog: false,
|
|
1452
|
+
properties: {
|
|
1453
|
+
BeforeTool: {
|
|
1454
|
+
type: 'array',
|
|
1455
|
+
label: 'Before Tool Hooks',
|
|
1456
|
+
category: 'Advanced',
|
|
1457
|
+
requiresRestart: false,
|
|
1458
|
+
default: [],
|
|
1459
|
+
description: 'Hooks that execute before tool execution. Can intercept, validate, or modify tool calls.',
|
|
1460
|
+
showInDialog: false,
|
|
1461
|
+
ref: 'HookDefinitionArray',
|
|
1462
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1463
|
+
},
|
|
1464
|
+
AfterTool: {
|
|
1465
|
+
type: 'array',
|
|
1466
|
+
label: 'After Tool Hooks',
|
|
1467
|
+
category: 'Advanced',
|
|
1468
|
+
requiresRestart: false,
|
|
1469
|
+
default: [],
|
|
1470
|
+
description: 'Hooks that execute after tool execution. Can process results, log outputs, or trigger follow-up actions.',
|
|
1471
|
+
showInDialog: false,
|
|
1472
|
+
ref: 'HookDefinitionArray',
|
|
1473
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1474
|
+
},
|
|
1475
|
+
BeforeAgent: {
|
|
1476
|
+
type: 'array',
|
|
1477
|
+
label: 'Before Agent Hooks',
|
|
1478
|
+
category: 'Advanced',
|
|
1479
|
+
requiresRestart: false,
|
|
1480
|
+
default: [],
|
|
1481
|
+
description: 'Hooks that execute before agent loop starts. Can set up context or initialize resources.',
|
|
1482
|
+
showInDialog: false,
|
|
1483
|
+
ref: 'HookDefinitionArray',
|
|
1484
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1485
|
+
},
|
|
1486
|
+
AfterAgent: {
|
|
1487
|
+
type: 'array',
|
|
1488
|
+
label: 'After Agent Hooks',
|
|
1489
|
+
category: 'Advanced',
|
|
1490
|
+
requiresRestart: false,
|
|
1491
|
+
default: [],
|
|
1492
|
+
description: 'Hooks that execute after agent loop completes. Can perform cleanup or summarize results.',
|
|
1493
|
+
showInDialog: false,
|
|
1494
|
+
ref: 'HookDefinitionArray',
|
|
1495
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1496
|
+
},
|
|
1497
|
+
Notification: {
|
|
1498
|
+
type: 'array',
|
|
1499
|
+
label: 'Notification Hooks',
|
|
1500
|
+
category: 'Advanced',
|
|
1501
|
+
requiresRestart: false,
|
|
1502
|
+
default: [],
|
|
1503
|
+
description: 'Hooks that execute on notification events (errors, warnings, info). Can log or alert on specific conditions.',
|
|
1504
|
+
showInDialog: false,
|
|
1505
|
+
ref: 'HookDefinitionArray',
|
|
1506
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1507
|
+
},
|
|
1508
|
+
SessionStart: {
|
|
1509
|
+
type: 'array',
|
|
1510
|
+
label: 'Session Start Hooks',
|
|
1511
|
+
category: 'Advanced',
|
|
1512
|
+
requiresRestart: false,
|
|
1513
|
+
default: [],
|
|
1514
|
+
description: 'Hooks that execute when a session starts. Can initialize session-specific resources or state.',
|
|
1515
|
+
showInDialog: false,
|
|
1516
|
+
ref: 'HookDefinitionArray',
|
|
1517
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1518
|
+
},
|
|
1519
|
+
SessionEnd: {
|
|
1520
|
+
type: 'array',
|
|
1521
|
+
label: 'Session End Hooks',
|
|
1522
|
+
category: 'Advanced',
|
|
1523
|
+
requiresRestart: false,
|
|
1524
|
+
default: [],
|
|
1525
|
+
description: 'Hooks that execute when a session ends. Can perform cleanup or persist session data.',
|
|
1526
|
+
showInDialog: false,
|
|
1527
|
+
ref: 'HookDefinitionArray',
|
|
1528
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1529
|
+
},
|
|
1530
|
+
PreCompress: {
|
|
1531
|
+
type: 'array',
|
|
1532
|
+
label: 'Pre-Compress Hooks',
|
|
1533
|
+
category: 'Advanced',
|
|
1534
|
+
requiresRestart: false,
|
|
1535
|
+
default: [],
|
|
1536
|
+
description: 'Hooks that execute before chat history compression. Can back up or analyze conversation before compression.',
|
|
1537
|
+
showInDialog: false,
|
|
1538
|
+
ref: 'HookDefinitionArray',
|
|
1539
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1540
|
+
},
|
|
1541
|
+
BeforeModel: {
|
|
1542
|
+
type: 'array',
|
|
1543
|
+
label: 'Before Model Hooks',
|
|
1544
|
+
category: 'Advanced',
|
|
1545
|
+
requiresRestart: false,
|
|
1546
|
+
default: [],
|
|
1547
|
+
description: 'Hooks that execute before LLM requests. Can modify prompts, inject context, or control model parameters.',
|
|
1548
|
+
showInDialog: false,
|
|
1549
|
+
ref: 'HookDefinitionArray',
|
|
1550
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1551
|
+
},
|
|
1552
|
+
AfterModel: {
|
|
1553
|
+
type: 'array',
|
|
1554
|
+
label: 'After Model Hooks',
|
|
1555
|
+
category: 'Advanced',
|
|
1556
|
+
requiresRestart: false,
|
|
1557
|
+
default: [],
|
|
1558
|
+
description: 'Hooks that execute after LLM responses. Can process outputs, extract information, or log interactions.',
|
|
1559
|
+
showInDialog: false,
|
|
1560
|
+
ref: 'HookDefinitionArray',
|
|
1561
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1562
|
+
},
|
|
1563
|
+
BeforeToolSelection: {
|
|
1564
|
+
type: 'array',
|
|
1565
|
+
label: 'Before Tool Selection Hooks',
|
|
1566
|
+
category: 'Advanced',
|
|
1567
|
+
requiresRestart: false,
|
|
1568
|
+
default: [],
|
|
1569
|
+
description: 'Hooks that execute before tool selection. Can filter or prioritize available tools dynamically.',
|
|
1570
|
+
showInDialog: false,
|
|
1571
|
+
ref: 'HookDefinitionArray',
|
|
1572
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1573
|
+
},
|
|
1574
|
+
},
|
|
1575
|
+
additionalProperties: {
|
|
1576
|
+
type: 'array',
|
|
1577
|
+
description: 'Custom hook event arrays that contain hook definitions for user-defined events',
|
|
1578
|
+
mergeStrategy: MergeStrategy.CONCAT,
|
|
1579
|
+
},
|
|
1580
|
+
},
|
|
1581
|
+
admin: {
|
|
1582
|
+
type: 'object',
|
|
1583
|
+
label: 'Admin',
|
|
1584
|
+
category: 'Admin',
|
|
1585
|
+
requiresRestart: false,
|
|
1586
|
+
default: {},
|
|
1587
|
+
description: 'Settings configured remotely by enterprise admins.',
|
|
1588
|
+
showInDialog: false,
|
|
1589
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1590
|
+
properties: {
|
|
1591
|
+
secureModeEnabled: {
|
|
1592
|
+
type: 'boolean',
|
|
1593
|
+
label: 'Secure Mode Enabled',
|
|
1594
|
+
category: 'Admin',
|
|
1595
|
+
requiresRestart: false,
|
|
1596
|
+
default: false,
|
|
1597
|
+
description: 'If true, disallows yolo mode from being used.',
|
|
1598
|
+
showInDialog: false,
|
|
1599
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1600
|
+
},
|
|
1601
|
+
extensions: {
|
|
1602
|
+
type: 'object',
|
|
1603
|
+
label: 'Extensions Settings',
|
|
1604
|
+
category: 'Admin',
|
|
1605
|
+
requiresRestart: false,
|
|
1606
|
+
default: {},
|
|
1607
|
+
description: 'Extensions-specific admin settings.',
|
|
1608
|
+
showInDialog: false,
|
|
1609
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1610
|
+
properties: {
|
|
1611
|
+
enabled: {
|
|
1612
|
+
type: 'boolean',
|
|
1613
|
+
label: 'Extensions Enabled',
|
|
1614
|
+
category: 'Admin',
|
|
1615
|
+
requiresRestart: false,
|
|
1616
|
+
default: true,
|
|
1617
|
+
description: 'If false, disallows extensions from being installed or used.',
|
|
1618
|
+
showInDialog: false,
|
|
1619
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1620
|
+
},
|
|
1621
|
+
},
|
|
1622
|
+
},
|
|
1623
|
+
mcp: {
|
|
1624
|
+
type: 'object',
|
|
1625
|
+
label: 'MCP Settings',
|
|
1626
|
+
category: 'Admin',
|
|
1627
|
+
requiresRestart: false,
|
|
1628
|
+
default: {},
|
|
1629
|
+
description: 'MCP-specific admin settings.',
|
|
1630
|
+
showInDialog: false,
|
|
1631
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1632
|
+
properties: {
|
|
1633
|
+
enabled: {
|
|
1634
|
+
type: 'boolean',
|
|
1635
|
+
label: 'MCP Enabled',
|
|
1636
|
+
category: 'Admin',
|
|
1637
|
+
requiresRestart: false,
|
|
1638
|
+
default: true,
|
|
1639
|
+
description: 'If false, disallows MCP servers from being used.',
|
|
1640
|
+
showInDialog: false,
|
|
1641
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1642
|
+
},
|
|
1643
|
+
},
|
|
1644
|
+
},
|
|
1645
|
+
skills: {
|
|
1646
|
+
type: 'object',
|
|
1647
|
+
label: 'Skills Settings',
|
|
1648
|
+
category: 'Admin',
|
|
1649
|
+
requiresRestart: false,
|
|
1650
|
+
default: {},
|
|
1651
|
+
description: 'Agent Skills-specific admin settings.',
|
|
1652
|
+
showInDialog: false,
|
|
1653
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1654
|
+
properties: {
|
|
1655
|
+
enabled: {
|
|
1656
|
+
type: 'boolean',
|
|
1657
|
+
label: 'Skills Enabled',
|
|
1658
|
+
category: 'Admin',
|
|
1659
|
+
requiresRestart: false,
|
|
1660
|
+
default: true,
|
|
1661
|
+
description: 'If false, disallows agent skills from being used.',
|
|
1662
|
+
showInDialog: false,
|
|
1663
|
+
mergeStrategy: MergeStrategy.REPLACE,
|
|
1664
|
+
},
|
|
1665
|
+
},
|
|
1666
|
+
},
|
|
1667
|
+
},
|
|
1668
|
+
},
|
|
1669
|
+
};
|
|
1670
|
+
export const SETTINGS_SCHEMA_DEFINITIONS = {
|
|
1671
|
+
MCPServerConfig: {
|
|
1672
|
+
type: 'object',
|
|
1673
|
+
description: 'Definition of a Model Context Protocol (MCP) server configuration.',
|
|
1674
|
+
additionalProperties: false,
|
|
1675
|
+
properties: {
|
|
1676
|
+
command: {
|
|
1677
|
+
type: 'string',
|
|
1678
|
+
description: 'Executable invoked for stdio transport.',
|
|
1679
|
+
},
|
|
1680
|
+
args: {
|
|
1681
|
+
type: 'array',
|
|
1682
|
+
description: 'Command-line arguments for the stdio transport command.',
|
|
1683
|
+
items: { type: 'string' },
|
|
1684
|
+
},
|
|
1685
|
+
env: {
|
|
1686
|
+
type: 'object',
|
|
1687
|
+
description: 'Environment variables to set for the server process.',
|
|
1688
|
+
additionalProperties: { type: 'string' },
|
|
1689
|
+
},
|
|
1690
|
+
cwd: {
|
|
1691
|
+
type: 'string',
|
|
1692
|
+
description: 'Working directory for the server process.',
|
|
1693
|
+
},
|
|
1694
|
+
url: {
|
|
1695
|
+
type: 'string',
|
|
1696
|
+
description: 'URL for SSE or HTTP transport. Use with "type" field to specify transport type.',
|
|
1697
|
+
},
|
|
1698
|
+
httpUrl: {
|
|
1699
|
+
type: 'string',
|
|
1700
|
+
description: 'Streaming HTTP transport URL.',
|
|
1701
|
+
},
|
|
1702
|
+
headers: {
|
|
1703
|
+
type: 'object',
|
|
1704
|
+
description: 'Additional HTTP headers sent to the server.',
|
|
1705
|
+
additionalProperties: { type: 'string' },
|
|
1706
|
+
},
|
|
1707
|
+
tcp: {
|
|
1708
|
+
type: 'string',
|
|
1709
|
+
description: 'TCP address for websocket transport.',
|
|
1710
|
+
},
|
|
1711
|
+
type: {
|
|
1712
|
+
type: 'string',
|
|
1713
|
+
description: 'Transport type. Use "stdio" for local command, "sse" for Server-Sent Events, or "http" for Streamable HTTP.',
|
|
1714
|
+
enum: ['stdio', 'sse', 'http'],
|
|
1715
|
+
},
|
|
1716
|
+
timeout: {
|
|
1717
|
+
type: 'number',
|
|
1718
|
+
description: 'Timeout in milliseconds for MCP requests.',
|
|
1719
|
+
},
|
|
1720
|
+
trust: {
|
|
1721
|
+
type: 'boolean',
|
|
1722
|
+
description: 'Marks the server as trusted. Trusted servers may gain additional capabilities.',
|
|
1723
|
+
},
|
|
1724
|
+
description: {
|
|
1725
|
+
type: 'string',
|
|
1726
|
+
description: 'Human-readable description of the server.',
|
|
1727
|
+
},
|
|
1728
|
+
includeTools: {
|
|
1729
|
+
type: 'array',
|
|
1730
|
+
description: 'Subset of tools that should be enabled for this server. When omitted all tools are enabled.',
|
|
1731
|
+
items: { type: 'string' },
|
|
1732
|
+
},
|
|
1733
|
+
excludeTools: {
|
|
1734
|
+
type: 'array',
|
|
1735
|
+
description: 'Tools that should be disabled for this server even if exposed.',
|
|
1736
|
+
items: { type: 'string' },
|
|
1737
|
+
},
|
|
1738
|
+
extension: {
|
|
1739
|
+
type: 'object',
|
|
1740
|
+
description: 'Metadata describing the Gemini CLI extension that owns this MCP server.',
|
|
1741
|
+
additionalProperties: { type: ['string', 'boolean', 'number'] },
|
|
1742
|
+
},
|
|
1743
|
+
oauth: {
|
|
1744
|
+
type: 'object',
|
|
1745
|
+
description: 'OAuth configuration for authenticating with the server.',
|
|
1746
|
+
additionalProperties: true,
|
|
1747
|
+
},
|
|
1748
|
+
authProviderType: {
|
|
1749
|
+
type: 'string',
|
|
1750
|
+
description: 'Authentication provider used for acquiring credentials (for example `dynamic_discovery`).',
|
|
1751
|
+
enum: [
|
|
1752
|
+
'dynamic_discovery',
|
|
1753
|
+
'google_credentials',
|
|
1754
|
+
'service_account_impersonation',
|
|
1755
|
+
],
|
|
1756
|
+
},
|
|
1757
|
+
targetAudience: {
|
|
1758
|
+
type: 'string',
|
|
1759
|
+
description: 'OAuth target audience (CLIENT_ID.apps.googleusercontent.com).',
|
|
1760
|
+
},
|
|
1761
|
+
targetServiceAccount: {
|
|
1762
|
+
type: 'string',
|
|
1763
|
+
description: 'Service account email to impersonate (name@project.iam.gserviceaccount.com).',
|
|
1764
|
+
},
|
|
1765
|
+
},
|
|
1766
|
+
},
|
|
1767
|
+
TelemetrySettings: {
|
|
1768
|
+
type: 'object',
|
|
1769
|
+
description: 'Telemetry configuration for Gemini CLI.',
|
|
1770
|
+
additionalProperties: false,
|
|
1771
|
+
properties: {
|
|
1772
|
+
enabled: {
|
|
1773
|
+
type: 'boolean',
|
|
1774
|
+
description: 'Enables telemetry emission.',
|
|
1775
|
+
},
|
|
1776
|
+
target: {
|
|
1777
|
+
type: 'string',
|
|
1778
|
+
description: 'Telemetry destination (for example `stderr`, `stdout`, or `otlp`).',
|
|
1779
|
+
},
|
|
1780
|
+
otlpEndpoint: {
|
|
1781
|
+
type: 'string',
|
|
1782
|
+
description: 'Endpoint for OTLP exporters.',
|
|
1783
|
+
},
|
|
1784
|
+
otlpProtocol: {
|
|
1785
|
+
type: 'string',
|
|
1786
|
+
description: 'Protocol for OTLP exporters.',
|
|
1787
|
+
enum: ['grpc', 'http'],
|
|
1788
|
+
},
|
|
1789
|
+
logPrompts: {
|
|
1790
|
+
type: 'boolean',
|
|
1791
|
+
description: 'Whether prompts are logged in telemetry payloads.',
|
|
1792
|
+
},
|
|
1793
|
+
outfile: {
|
|
1794
|
+
type: 'string',
|
|
1795
|
+
description: 'File path for writing telemetry output.',
|
|
1796
|
+
},
|
|
1797
|
+
useCollector: {
|
|
1798
|
+
type: 'boolean',
|
|
1799
|
+
description: 'Whether to forward telemetry to an OTLP collector.',
|
|
1800
|
+
},
|
|
1801
|
+
useCliAuth: {
|
|
1802
|
+
type: 'boolean',
|
|
1803
|
+
description: 'Whether to use CLI authentication for telemetry (only for in-process exporters).',
|
|
1804
|
+
},
|
|
1805
|
+
},
|
|
1806
|
+
},
|
|
1807
|
+
BugCommandSettings: {
|
|
1808
|
+
type: 'object',
|
|
1809
|
+
description: 'Configuration for the bug report helper command.',
|
|
1810
|
+
additionalProperties: false,
|
|
1811
|
+
properties: {
|
|
1812
|
+
urlTemplate: {
|
|
1813
|
+
type: 'string',
|
|
1814
|
+
description: 'Template used to open a bug report URL. Variables in the template are populated at runtime.',
|
|
1815
|
+
},
|
|
1816
|
+
},
|
|
1817
|
+
required: ['urlTemplate'],
|
|
1818
|
+
},
|
|
1819
|
+
SummarizeToolOutputSettings: {
|
|
1820
|
+
type: 'object',
|
|
1821
|
+
description: 'Controls summarization behavior for individual tools. All properties are optional.',
|
|
1822
|
+
additionalProperties: false,
|
|
1823
|
+
properties: {
|
|
1824
|
+
tokenBudget: {
|
|
1825
|
+
type: 'number',
|
|
1826
|
+
description: 'Maximum number of tokens used when summarizing tool output.',
|
|
1827
|
+
},
|
|
1828
|
+
},
|
|
1829
|
+
},
|
|
1830
|
+
AgentOverride: {
|
|
1831
|
+
type: 'object',
|
|
1832
|
+
description: 'Override settings for a specific agent.',
|
|
1833
|
+
additionalProperties: false,
|
|
1834
|
+
properties: {
|
|
1835
|
+
modelConfig: {
|
|
1836
|
+
type: 'object',
|
|
1837
|
+
additionalProperties: true,
|
|
1838
|
+
},
|
|
1839
|
+
runConfig: {
|
|
1840
|
+
type: 'object',
|
|
1841
|
+
description: 'Run configuration for an agent.',
|
|
1842
|
+
additionalProperties: false,
|
|
1843
|
+
properties: {
|
|
1844
|
+
maxTimeMinutes: {
|
|
1845
|
+
type: 'number',
|
|
1846
|
+
description: 'The maximum execution time for the agent in minutes.',
|
|
1847
|
+
},
|
|
1848
|
+
maxTurns: {
|
|
1849
|
+
type: 'number',
|
|
1850
|
+
description: 'The maximum number of conversational turns.',
|
|
1851
|
+
},
|
|
1852
|
+
},
|
|
1853
|
+
},
|
|
1854
|
+
enabled: {
|
|
1855
|
+
type: 'boolean',
|
|
1856
|
+
description: 'Whether to enable the agent.',
|
|
1857
|
+
},
|
|
1858
|
+
},
|
|
1859
|
+
},
|
|
1860
|
+
CustomTheme: {
|
|
1861
|
+
type: 'object',
|
|
1862
|
+
description: 'Custom theme definition used for styling Gemini CLI output. Colors are provided as hex strings or named ANSI colors.',
|
|
1863
|
+
additionalProperties: false,
|
|
1864
|
+
properties: {
|
|
1865
|
+
type: {
|
|
1866
|
+
type: 'string',
|
|
1867
|
+
enum: ['custom'],
|
|
1868
|
+
default: 'custom',
|
|
1869
|
+
},
|
|
1870
|
+
name: {
|
|
1871
|
+
type: 'string',
|
|
1872
|
+
description: 'Theme display name.',
|
|
1873
|
+
},
|
|
1874
|
+
text: {
|
|
1875
|
+
type: 'object',
|
|
1876
|
+
additionalProperties: false,
|
|
1877
|
+
properties: {
|
|
1878
|
+
primary: { type: 'string' },
|
|
1879
|
+
secondary: { type: 'string' },
|
|
1880
|
+
link: { type: 'string' },
|
|
1881
|
+
accent: { type: 'string' },
|
|
1882
|
+
},
|
|
1883
|
+
},
|
|
1884
|
+
background: {
|
|
1885
|
+
type: 'object',
|
|
1886
|
+
additionalProperties: false,
|
|
1887
|
+
properties: {
|
|
1888
|
+
primary: { type: 'string' },
|
|
1889
|
+
diff: {
|
|
1890
|
+
type: 'object',
|
|
1891
|
+
additionalProperties: false,
|
|
1892
|
+
properties: {
|
|
1893
|
+
added: { type: 'string' },
|
|
1894
|
+
removed: { type: 'string' },
|
|
1895
|
+
},
|
|
1896
|
+
},
|
|
1897
|
+
},
|
|
1898
|
+
},
|
|
1899
|
+
border: {
|
|
1900
|
+
type: 'object',
|
|
1901
|
+
additionalProperties: false,
|
|
1902
|
+
properties: {
|
|
1903
|
+
default: { type: 'string' },
|
|
1904
|
+
focused: { type: 'string' },
|
|
1905
|
+
},
|
|
1906
|
+
},
|
|
1907
|
+
ui: {
|
|
1908
|
+
type: 'object',
|
|
1909
|
+
additionalProperties: false,
|
|
1910
|
+
properties: {
|
|
1911
|
+
comment: { type: 'string' },
|
|
1912
|
+
symbol: { type: 'string' },
|
|
1913
|
+
gradient: {
|
|
1914
|
+
type: 'array',
|
|
1915
|
+
items: { type: 'string' },
|
|
1916
|
+
},
|
|
1917
|
+
},
|
|
1918
|
+
},
|
|
1919
|
+
status: {
|
|
1920
|
+
type: 'object',
|
|
1921
|
+
additionalProperties: false,
|
|
1922
|
+
properties: {
|
|
1923
|
+
error: { type: 'string' },
|
|
1924
|
+
success: { type: 'string' },
|
|
1925
|
+
warning: { type: 'string' },
|
|
1926
|
+
},
|
|
1927
|
+
},
|
|
1928
|
+
Background: { type: 'string' },
|
|
1929
|
+
Foreground: { type: 'string' },
|
|
1930
|
+
LightBlue: { type: 'string' },
|
|
1931
|
+
AccentBlue: { type: 'string' },
|
|
1932
|
+
AccentPurple: { type: 'string' },
|
|
1933
|
+
AccentCyan: { type: 'string' },
|
|
1934
|
+
AccentGreen: { type: 'string' },
|
|
1935
|
+
AccentYellow: { type: 'string' },
|
|
1936
|
+
AccentRed: { type: 'string' },
|
|
1937
|
+
DiffAdded: { type: 'string' },
|
|
1938
|
+
DiffRemoved: { type: 'string' },
|
|
1939
|
+
Comment: { type: 'string' },
|
|
1940
|
+
Gray: { type: 'string' },
|
|
1941
|
+
DarkGray: { type: 'string' },
|
|
1942
|
+
GradientColors: {
|
|
1943
|
+
type: 'array',
|
|
1944
|
+
items: { type: 'string' },
|
|
1945
|
+
},
|
|
1946
|
+
},
|
|
1947
|
+
required: ['type', 'name'],
|
|
1948
|
+
},
|
|
1949
|
+
StringOrStringArray: {
|
|
1950
|
+
description: 'Accepts either a single string or an array of strings.',
|
|
1951
|
+
anyOf: [{ type: 'string' }, { type: 'array', items: { type: 'string' } }],
|
|
1952
|
+
},
|
|
1953
|
+
BooleanOrString: {
|
|
1954
|
+
description: 'Accepts either a boolean flag or a string command name.',
|
|
1955
|
+
anyOf: [{ type: 'boolean' }, { type: 'string' }],
|
|
1956
|
+
},
|
|
1957
|
+
HookDefinitionArray: {
|
|
1958
|
+
type: 'array',
|
|
1959
|
+
description: 'Array of hook definition objects for a specific event.',
|
|
1960
|
+
items: {
|
|
1961
|
+
type: 'object',
|
|
1962
|
+
description: 'Hook definition specifying matcher pattern and hook configurations.',
|
|
1963
|
+
properties: {
|
|
1964
|
+
matcher: {
|
|
1965
|
+
type: 'string',
|
|
1966
|
+
description: 'Pattern to match against the event context (tool name, notification type, etc.). Supports exact match, regex (/pattern/), and wildcards (*).',
|
|
1967
|
+
},
|
|
1968
|
+
hooks: {
|
|
1969
|
+
type: 'array',
|
|
1970
|
+
description: 'Hooks to execute when the matcher matches.',
|
|
1971
|
+
items: {
|
|
1972
|
+
type: 'object',
|
|
1973
|
+
description: 'Individual hook configuration.',
|
|
1974
|
+
properties: {
|
|
1975
|
+
name: {
|
|
1976
|
+
type: 'string',
|
|
1977
|
+
description: 'Unique identifier for the hook.',
|
|
1978
|
+
},
|
|
1979
|
+
type: {
|
|
1980
|
+
type: 'string',
|
|
1981
|
+
description: 'Type of hook (currently only "command" supported).',
|
|
1982
|
+
},
|
|
1983
|
+
command: {
|
|
1984
|
+
type: 'string',
|
|
1985
|
+
description: 'Shell command to execute. Receives JSON input via stdin and returns JSON output via stdout.',
|
|
1986
|
+
},
|
|
1987
|
+
description: {
|
|
1988
|
+
type: 'string',
|
|
1989
|
+
description: 'A description of the hook.',
|
|
1990
|
+
},
|
|
1991
|
+
timeout: {
|
|
1992
|
+
type: 'number',
|
|
1993
|
+
description: 'Timeout in milliseconds for hook execution.',
|
|
1994
|
+
},
|
|
1995
|
+
},
|
|
1996
|
+
},
|
|
1997
|
+
},
|
|
1998
|
+
},
|
|
1999
|
+
},
|
|
2000
|
+
},
|
|
2001
|
+
};
|
|
2002
|
+
export function getSettingsSchema() {
|
|
2003
|
+
return SETTINGS_SCHEMA;
|
|
2004
|
+
}
|
|
2005
|
+
//# sourceMappingURL=settingsSchema.js.map
|