@machina.ai/cell-cli 1.20.2-rc1 → 1.25.0-rc3
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/package.json +5 -4
- 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.js.map +1 -1
- package/dist/src/commands/extensions/disable.test.js.map +1 -1
- package/dist/src/commands/extensions/enable.js.map +1 -1
- package/dist/src/commands/extensions/enable.test.js.map +1 -1
- package/dist/src/commands/extensions/examples/mcp-server/example.test.js +1 -1
- package/dist/src/commands/extensions/examples/mcp-server/example.test.js.map +1 -1
- package/dist/src/commands/extensions/examples/mcp-server/example.test.ts +4 -12
- package/dist/src/commands/extensions/install.js +7 -31
- package/dist/src/commands/extensions/install.js.map +1 -1
- package/dist/src/commands/extensions/install.test.js +21 -3
- package/dist/src/commands/extensions/install.test.js.map +1 -1
- package/dist/src/commands/extensions/link.test.js.map +1 -1
- package/dist/src/commands/extensions/list.test.js +0 -1
- package/dist/src/commands/extensions/list.test.js.map +1 -1
- package/dist/src/commands/extensions/uninstall.js.map +1 -1
- package/dist/src/commands/extensions/uninstall.test.js.map +1 -1
- package/dist/src/commands/extensions/update.test.js.map +1 -1
- 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.js +1 -1
- package/dist/src/commands/extensions/validate.js.map +1 -1
- package/dist/src/commands/extensions/validate.test.js +1 -1
- package/dist/src/commands/extensions/validate.test.js.map +1 -1
- package/dist/src/commands/extensions.js +2 -0
- package/dist/src/commands/extensions.js.map +1 -1
- package/dist/src/commands/hooks/migrate.d.ts +11 -0
- package/dist/src/commands/hooks/migrate.js +206 -0
- package/dist/src/commands/hooks/migrate.js.map +1 -0
- package/dist/src/commands/hooks/migrate.test.js +389 -0
- package/dist/src/commands/hooks/migrate.test.js.map +1 -0
- package/dist/src/commands/hooks.d.ts +7 -0
- package/dist/src/commands/hooks.js +22 -0
- package/dist/src/commands/hooks.js.map +1 -0
- package/dist/src/commands/mcp/add.js +4 -2
- package/dist/src/commands/mcp/add.js.map +1 -1
- package/dist/src/commands/mcp/add.test.js +24 -2
- package/dist/src/commands/mcp/add.test.js.map +1 -1
- package/dist/src/commands/mcp/list.js +7 -1
- package/dist/src/commands/mcp/list.js.map +1 -1
- package/dist/src/commands/skills/disable.d.ts +14 -0
- package/dist/src/commands/skills/disable.js +45 -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 +80 -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 +14 -0
- package/dist/src/commands/skills/install.js +61 -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 +57 -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 +30 -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/config/config.d.ts +10 -3
- package/dist/src/config/config.js +101 -34
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +225 -16
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/extension-manager-agents.test.d.ts +6 -0
- package/dist/src/config/extension-manager-agents.test.js +115 -0
- package/dist/src/config/extension-manager-agents.test.js.map +1 -0
- package/dist/src/config/extension-manager-scope.test.js +164 -0
- package/dist/src/config/extension-manager-scope.test.js.map +1 -0
- package/dist/src/config/extension-manager-skills.test.js +150 -0
- package/dist/src/config/extension-manager-skills.test.js.map +1 -0
- package/dist/src/config/extension-manager.d.ts +7 -1
- package/dist/src/config/extension-manager.js +202 -37
- package/dist/src/config/extension-manager.js.map +1 -1
- package/dist/src/config/extension.test.js +178 -13
- package/dist/src/config/extension.test.js.map +1 -1
- package/dist/src/config/extensions/consent.d.ts +5 -3
- package/dist/src/config/extensions/consent.js +33 -7
- package/dist/src/config/extensions/consent.js.map +1 -1
- package/dist/src/config/extensions/consent.test.js +114 -10
- package/dist/src/config/extensions/consent.test.js.map +1 -1
- package/dist/src/config/extensions/extensionSettings.d.ts +9 -1
- package/dist/src/config/extensions/extensionSettings.js +107 -17
- package/dist/src/config/extensions/extensionSettings.js.map +1 -1
- package/dist/src/config/extensions/extensionSettings.test.js +189 -54
- package/dist/src/config/extensions/extensionSettings.test.js.map +1 -1
- package/dist/src/config/extensions/extensionUpdates.test.js +231 -0
- package/dist/src/config/extensions/extensionUpdates.test.js.map +1 -0
- package/dist/src/config/extensions/github.d.ts +4 -1
- package/dist/src/config/extensions/github.js +33 -7
- package/dist/src/config/extensions/github.js.map +1 -1
- package/dist/src/config/extensions/github.test.js +190 -2
- package/dist/src/config/extensions/github.test.js.map +1 -1
- package/dist/src/config/extensions/github_fetch.js.map +1 -1
- package/dist/src/config/extensions/storage.js +2 -2
- package/dist/src/config/extensions/storage.js.map +1 -1
- package/dist/src/config/extensions/update.js +1 -1
- package/dist/src/config/extensions/update.js.map +1 -1
- package/dist/src/config/extensions/update.test.js +8 -8
- package/dist/src/config/extensions/update.test.js.map +1 -1
- package/dist/src/config/keyBindings.d.ts +14 -2
- package/dist/src/config/keyBindings.js +89 -11
- package/dist/src/config/keyBindings.js.map +1 -1
- package/dist/src/config/policy-engine.integration.test.js +13 -1
- package/dist/src/config/policy-engine.integration.test.js.map +1 -1
- 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 +9 -7
- package/dist/src/config/settings.js +138 -233
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settings.test.js +245 -571
- package/dist/src/config/settings.test.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +459 -35
- package/dist/src/config/settingsSchema.js +541 -32
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/config/settingsSchema.test.js +22 -4
- package/dist/src/config/settingsSchema.test.js.map +1 -1
- package/dist/src/config/settings_repro.test.d.ts +6 -0
- package/dist/src/config/settings_repro.test.js +162 -0
- package/dist/src/config/settings_repro.test.js.map +1 -0
- package/dist/src/config/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/trustedFolders.d.ts +1 -0
- package/dist/src/config/trustedFolders.js +18 -4
- package/dist/src/config/trustedFolders.js.map +1 -1
- package/dist/src/config/trustedFolders.test.js +45 -0
- package/dist/src/config/trustedFolders.test.js.map +1 -1
- package/dist/src/gemini.js +135 -69
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.js +85 -99
- package/dist/src/gemini.test.js.map +1 -1
- package/dist/src/gemini_cleanup.test.js +7 -0
- package/dist/src/gemini_cleanup.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +3 -3
- package/dist/src/generated/git-commit.js +3 -3
- package/dist/src/nonInteractiveCli.js +59 -9
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/nonInteractiveCli.test.js +114 -21
- package/dist/src/nonInteractiveCli.test.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.d.ts +1 -1
- package/dist/src/services/BuiltinCommandLoader.js +66 -8
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.test.js +70 -12
- package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -1
- package/dist/src/services/FeedbackService.js.map +1 -1
- package/dist/src/services/FileCommandLoader.js +6 -6
- package/dist/src/services/FileCommandLoader.js.map +1 -1
- package/dist/src/services/FileCommandLoader.test.js.map +1 -1
- package/dist/src/services/McpPromptLoader.js +1 -0
- package/dist/src/services/McpPromptLoader.js.map +1 -1
- package/dist/src/services/McpPromptLoader.test.js +40 -0
- package/dist/src/services/McpPromptLoader.test.js.map +1 -1
- package/dist/src/services/prompt-processors/shellProcessor.js +13 -11
- package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -1
- package/dist/src/services/prompt-processors/shellProcessor.test.js +93 -61
- package/dist/src/services/prompt-processors/shellProcessor.test.js.map +1 -1
- package/dist/src/test-utils/render.js +5 -2
- package/dist/src/test-utils/render.js.map +1 -1
- package/dist/src/ui/App.test.js +2 -2
- package/dist/src/ui/App.test.js.map +1 -1
- package/dist/src/ui/AppContainer.js +200 -94
- package/dist/src/ui/AppContainer.js.map +1 -1
- package/dist/src/ui/AppContainer.test.js +405 -69
- package/dist/src/ui/AppContainer.test.js.map +1 -1
- package/dist/src/ui/IdeIntegrationNudge.test.js +18 -7
- package/dist/src/ui/IdeIntegrationNudge.test.js.map +1 -1
- package/dist/src/ui/auth/ApiAuthDialog.js +36 -3
- package/dist/src/ui/auth/ApiAuthDialog.js.map +1 -1
- package/dist/src/ui/auth/ApiAuthDialog.test.js +26 -2
- package/dist/src/ui/auth/ApiAuthDialog.test.js.map +1 -1
- package/dist/src/ui/auth/AuthDialog.d.ts +4 -1
- package/dist/src/ui/auth/AuthDialog.js +11 -4
- package/dist/src/ui/auth/AuthDialog.js.map +1 -1
- package/dist/src/ui/auth/AuthDialog.test.js +19 -2
- package/dist/src/ui/auth/AuthDialog.test.js.map +1 -1
- package/dist/src/ui/auth/AuthInProgress.test.js +16 -6
- package/dist/src/ui/auth/AuthInProgress.test.js.map +1 -1
- 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 +68 -0
- package/dist/src/ui/auth/LoginWithGoogleRestartDialog.test.js.map +1 -0
- package/dist/src/ui/auth/useAuth.js +9 -4
- package/dist/src/ui/auth/useAuth.js.map +1 -1
- package/dist/src/ui/auth/useAuth.test.js +2 -2
- package/dist/src/ui/auth/useAuth.test.js.map +1 -1
- package/dist/src/ui/commands/aboutCommand.js +3 -4
- package/dist/src/ui/commands/aboutCommand.js.map +1 -1
- package/dist/src/ui/commands/aboutCommand.test.js +7 -10
- package/dist/src/ui/commands/aboutCommand.test.js.map +1 -1
- package/dist/src/ui/commands/agentsCommand.d.ts +7 -0
- package/dist/src/ui/commands/agentsCommand.js +79 -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 +91 -0
- package/dist/src/ui/commands/agentsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.js +30 -3
- package/dist/src/ui/commands/authCommand.js.map +1 -1
- package/dist/src/ui/commands/authCommand.test.js +72 -4
- package/dist/src/ui/commands/authCommand.test.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.js +37 -6
- package/dist/src/ui/commands/bugCommand.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.test.js +86 -5
- package/dist/src/ui/commands/bugCommand.test.js.map +1 -1
- package/dist/src/ui/commands/chatCommand.d.ts +1 -2
- package/dist/src/ui/commands/chatCommand.js +52 -52
- package/dist/src/ui/commands/chatCommand.js.map +1 -1
- package/dist/src/ui/commands/chatCommand.test.js +95 -69
- package/dist/src/ui/commands/chatCommand.test.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.js +22 -1
- package/dist/src/ui/commands/clearCommand.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.test.js +6 -0
- package/dist/src/ui/commands/clearCommand.test.js.map +1 -1
- package/dist/src/ui/commands/copyCommand.js +1 -1
- package/dist/src/ui/commands/copyCommand.js.map +1 -1
- package/dist/src/ui/commands/directoryCommand.js +27 -10
- package/dist/src/ui/commands/directoryCommand.js.map +1 -1
- package/dist/src/ui/commands/directoryCommand.test.js +49 -11
- package/dist/src/ui/commands/directoryCommand.test.js.map +1 -1
- package/dist/src/ui/commands/extensionsCommand.js +194 -24
- package/dist/src/ui/commands/extensionsCommand.js.map +1 -1
- package/dist/src/ui/commands/extensionsCommand.test.js +217 -27
- package/dist/src/ui/commands/extensionsCommand.test.js.map +1 -1
- package/dist/src/ui/commands/helpCommand.js +1 -1
- package/dist/src/ui/commands/helpCommand.js.map +1 -1
- package/dist/src/ui/commands/helpCommand.test.js +1 -1
- package/dist/src/ui/commands/helpCommand.test.js.map +1 -1
- 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 +575 -0
- package/dist/src/ui/commands/hooksCommand.test.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.test.js.map +1 -1
- package/dist/src/ui/commands/initCommand.js +10 -50
- package/dist/src/ui/commands/initCommand.js.map +1 -1
- package/dist/src/ui/commands/initCommand.test.js.map +1 -1
- package/dist/src/ui/commands/mcpCommand.js +34 -16
- package/dist/src/ui/commands/mcpCommand.js.map +1 -1
- package/dist/src/ui/commands/mcpCommand.test.js +43 -6
- package/dist/src/ui/commands/mcpCommand.test.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.js +19 -33
- package/dist/src/ui/commands/memoryCommand.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.test.js +112 -16
- package/dist/src/ui/commands/memoryCommand.test.js.map +1 -1
- package/dist/src/ui/commands/modelCommand.js +10 -5
- package/dist/src/ui/commands/modelCommand.js.map +1 -1
- package/dist/src/ui/commands/modelCommand.test.js +12 -1
- package/dist/src/ui/commands/modelCommand.test.js.map +1 -1
- package/dist/src/ui/commands/restoreCommand.d.ts +1 -1
- package/dist/src/ui/commands/restoreCommand.js +38 -33
- package/dist/src/ui/commands/restoreCommand.js.map +1 -1
- package/dist/src/ui/commands/restoreCommand.test.js +6 -6
- package/dist/src/ui/commands/restoreCommand.test.js.map +1 -1
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -1
- package/dist/src/ui/commands/skillsCommand.d.ts +7 -0
- package/dist/src/ui/commands/skillsCommand.js +235 -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 +405 -0
- package/dist/src/ui/commands/skillsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.js +6 -10
- package/dist/src/ui/commands/statsCommand.js.map +1 -1
- package/dist/src/ui/commands/statsCommand.test.js +20 -3
- package/dist/src/ui/commands/statsCommand.test.js.map +1 -1
- package/dist/src/ui/commands/terminalSetupCommand.js +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -1
- package/dist/src/ui/commands/toolsCommand.js +2 -2
- package/dist/src/ui/commands/toolsCommand.js.map +1 -1
- package/dist/src/ui/commands/toolsCommand.test.js +2 -2
- package/dist/src/ui/commands/toolsCommand.test.js.map +1 -1
- package/dist/src/ui/commands/types.d.ts +16 -38
- package/dist/src/ui/commands/types.js +1 -0
- package/dist/src/ui/commands/types.js.map +1 -1
- package/dist/src/ui/components/AnsiOutput.js +1 -1
- package/dist/src/ui/components/AnsiOutput.js.map +1 -1
- package/dist/src/ui/components/AppHeader.test.js +8 -0
- package/dist/src/ui/components/AppHeader.test.js.map +1 -1
- package/dist/src/ui/components/AsciiArt.d.ts +6 -6
- package/dist/src/ui/components/AsciiArt.js +6 -6
- package/dist/src/ui/components/Composer.js +7 -7
- package/dist/src/ui/components/Composer.js.map +1 -1
- package/dist/src/ui/components/Composer.test.js +23 -4
- package/dist/src/ui/components/Composer.test.js.map +1 -1
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +12 -5
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -1
- package/dist/src/ui/components/ContextSummaryDisplay.test.js +56 -25
- package/dist/src/ui/components/ContextSummaryDisplay.test.js.map +1 -1
- package/dist/src/ui/components/DetailedMessagesDisplay.js +3 -3
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -1
- package/dist/src/ui/components/DetailedMessagesDisplay.test.js +2 -12
- package/dist/src/ui/components/DetailedMessagesDisplay.test.js.map +1 -1
- package/dist/src/ui/components/DialogManager.js +3 -3
- package/dist/src/ui/components/DialogManager.js.map +1 -1
- package/dist/src/ui/components/EditorSettingsDialog.js +2 -1
- package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -1
- package/dist/src/ui/components/EditorSettingsDialog.test.js +10 -2
- package/dist/src/ui/components/EditorSettingsDialog.test.js.map +1 -1
- package/dist/src/ui/components/FolderTrustDialog.js +20 -14
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -1
- package/dist/src/ui/components/FolderTrustDialog.test.js +12 -2
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -1
- package/dist/src/ui/components/Footer.js +6 -6
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js +3 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.test.js.map +1 -1
- package/dist/src/ui/components/Header.js +3 -1
- package/dist/src/ui/components/Header.js.map +1 -1
- package/dist/src/ui/components/Header.test.js +3 -1
- package/dist/src/ui/components/Header.test.js.map +1 -1
- package/dist/src/ui/components/Help.js +1 -1
- package/dist/src/ui/components/Help.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.js +4 -1
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.test.js +21 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
- 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.js +3 -1
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -1
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js +4 -3
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.js +77 -26
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.test.js +307 -7
- package/dist/src/ui/components/InputPrompt.test.js.map +1 -1
- 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/MainContent.js +12 -10
- package/dist/src/ui/components/MainContent.js.map +1 -1
- package/dist/src/ui/components/MainContent.test.js +19 -9
- package/dist/src/ui/components/MainContent.test.js.map +1 -1
- package/dist/src/ui/components/ModelDialog.js +122 -41
- package/dist/src/ui/components/ModelDialog.js.map +1 -1
- package/dist/src/ui/components/ModelDialog.test.js +171 -148
- package/dist/src/ui/components/ModelDialog.test.js.map +1 -1
- package/dist/src/ui/components/ModelStatsDisplay.js +68 -14
- package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -1
- package/dist/src/ui/components/ModelStatsDisplay.test.js +62 -4
- package/dist/src/ui/components/ModelStatsDisplay.test.js.map +1 -1
- package/dist/src/ui/components/MultiFolderTrustDialog.d.ts +2 -2
- package/dist/src/ui/components/MultiFolderTrustDialog.js +3 -2
- package/dist/src/ui/components/MultiFolderTrustDialog.js.map +1 -1
- package/dist/src/ui/components/MultiFolderTrustDialog.test.js +9 -9
- package/dist/src/ui/components/MultiFolderTrustDialog.test.js.map +1 -1
- package/dist/src/ui/components/Notifications.js +5 -4
- package/dist/src/ui/components/Notifications.js.map +1 -1
- package/dist/src/ui/components/Notifications.test.js +1 -0
- package/dist/src/ui/components/Notifications.test.js.map +1 -1
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -1
- package/dist/src/ui/components/ProQuotaDialog.d.ts +1 -3
- package/dist/src/ui/components/ProQuotaDialog.js +16 -32
- package/dist/src/ui/components/ProQuotaDialog.js.map +1 -1
- package/dist/src/ui/components/ProQuotaDialog.test.js +43 -29
- package/dist/src/ui/components/ProQuotaDialog.test.js.map +1 -1
- package/dist/src/ui/components/QuittingDisplay.test.js.map +1 -1
- package/dist/src/ui/components/SessionBrowser.js +2 -0
- package/dist/src/ui/components/SessionBrowser.js.map +1 -1
- package/dist/src/ui/components/SessionSummaryDisplay.test.js +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.test.js.map +1 -1
- package/dist/src/ui/components/SettingsDialog.js +166 -77
- package/dist/src/ui/components/SettingsDialog.js.map +1 -1
- package/dist/src/ui/components/SettingsDialog.test.js +118 -13
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.js +4 -4
- package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -1
- package/dist/src/ui/components/ShellConfirmationDialog.test.js +4 -4
- package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -1
- package/dist/src/ui/components/StatsDisplay.d.ts +1 -1
- package/dist/src/ui/components/StatsDisplay.js +66 -21
- package/dist/src/ui/components/StatsDisplay.js.map +1 -1
- package/dist/src/ui/components/StatsDisplay.test.js +44 -7
- package/dist/src/ui/components/StatsDisplay.test.js.map +1 -1
- package/dist/src/ui/components/StatusDisplay.d.ts +11 -0
- package/dist/src/ui/components/StatusDisplay.js +40 -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 +144 -0
- package/dist/src/ui/components/StatusDisplay.test.js.map +1 -0
- package/dist/src/ui/components/StickyHeader.d.ts +2 -0
- package/dist/src/ui/components/StickyHeader.js +1 -1
- package/dist/src/ui/components/StickyHeader.js.map +1 -1
- package/dist/src/ui/components/SuggestionsDisplay.js +7 -2
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -1
- 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.js +63 -17
- package/dist/src/ui/components/ThemeDialog.js.map +1 -1
- package/dist/src/ui/components/ThemeDialog.test.js +66 -1
- package/dist/src/ui/components/ThemeDialog.test.js.map +1 -1
- package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.js +5 -13
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.test.js +26 -17
- package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -1
- package/dist/src/ui/components/messages/ShellToolMessage.js +8 -5
- package/dist/src/ui/components/messages/ShellToolMessage.js.map +1 -1
- package/dist/src/ui/components/messages/Todo.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +55 -24
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +40 -4
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +45 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolMessage.js +6 -2
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolMessage.test.js +1 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolResultDisplay.js +22 -16
- package/dist/src/ui/components/messages/ToolResultDisplay.js.map +1 -1
- package/dist/src/ui/components/messages/ToolResultDisplay.test.js +36 -18
- package/dist/src/ui/components/messages/ToolResultDisplay.test.js.map +1 -1
- 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/shared/DescriptiveRadioButtonSelect.d.ts +1 -1
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +1 -1
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +2 -38
- package/dist/src/ui/components/shared/MaxSizedBox.js +34 -418
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.test.js +48 -133
- package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +4 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.js +11 -10
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -1
- package/dist/src/ui/components/shared/VirtualizedList.js.map +1 -1
- package/dist/src/ui/components/shared/text-buffer.d.ts +40 -4
- package/dist/src/ui/components/shared/text-buffer.js +279 -102
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -1
- package/dist/src/ui/components/shared/text-buffer.test.js +247 -1
- package/dist/src/ui/components/shared/text-buffer.test.js.map +1 -1
- package/dist/src/ui/components/shared/vim-buffer-actions.test.js +3 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.test.js.map +1 -1
- 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/ExtensionsList.js +3 -2
- package/dist/src/ui/components/views/ExtensionsList.js.map +1 -1
- package/dist/src/ui/components/views/ExtensionsList.test.js +37 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -1
- 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 +2 -1
- package/dist/src/ui/components/views/McpStatus.js +18 -3
- package/dist/src/ui/components/views/McpStatus.js.map +1 -1
- package/dist/src/ui/components/views/McpStatus.test.js +23 -0
- package/dist/src/ui/components/views/McpStatus.test.js.map +1 -1
- 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/constants/tips.js +1 -5
- package/dist/src/ui/constants/tips.js.map +1 -1
- package/dist/src/ui/constants.d.ts +4 -3
- package/dist/src/ui/constants.js +5 -6
- package/dist/src/ui/constants.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.d.ts +1 -0
- package/dist/src/ui/contexts/KeypressContext.js +84 -6
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.test.js +136 -9
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +1 -0
- package/dist/src/ui/contexts/SessionContext.js +2 -1
- package/dist/src/ui/contexts/SessionContext.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.test.js +3 -0
- package/dist/src/ui/contexts/SessionContext.test.js.map +1 -1
- package/dist/src/ui/contexts/UIActionsContext.d.ts +3 -0
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -1
- package/dist/src/ui/contexts/UIStateContext.d.ts +5 -1
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
- package/dist/src/ui/contexts/VimModeContext.js +1 -1
- package/dist/src/ui/contexts/VimModeContext.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +7 -6
- package/dist/src/ui/hooks/atCommandProcessor.js +156 -29
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.test.js +133 -35
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -1
- 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/shellCommandProcessor.js +2 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +21 -7
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.test.js +2 -3
- package/dist/src/ui/hooks/slashCommandProcessor.test.js.map +1 -1
- package/dist/src/ui/hooks/useAtCompletion.js +83 -2
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useAtCompletion.test.js +21 -0
- package/dist/src/ui/hooks/useAtCompletion.test.js.map +1 -1
- package/dist/src/ui/hooks/useAtCompletion_agents.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAtCompletion_agents.test.js +85 -0
- package/dist/src/ui/hooks/useAtCompletion_agents.test.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +2 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +5 -4
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +1 -1
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -1
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +3 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +13 -8
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useCommandCompletion.test.js +88 -2
- package/dist/src/ui/hooks/useCommandCompletion.test.js.map +1 -1
- package/dist/src/ui/hooks/useExtensionUpdates.js +7 -7
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -1
- package/dist/src/ui/hooks/useExtensionUpdates.test.js +20 -4
- package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -1
- package/dist/src/ui/hooks/useFolderTrust.js +14 -19
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -1
- package/dist/src/ui/hooks/useFolderTrust.test.js +31 -23
- package/dist/src/ui/hooks/useFolderTrust.test.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +2 -1
- package/dist/src/ui/hooks/useGeminiStream.js +102 -71
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.test.js +294 -10
- package/dist/src/ui/hooks/useGeminiStream.test.js.map +1 -1
- package/dist/src/ui/hooks/useGitBranchName.js +3 -0
- package/dist/src/ui/hooks/useGitBranchName.js.map +1 -1
- package/dist/src/ui/hooks/useHistoryManager.d.ts +1 -1
- package/dist/src/ui/hooks/useHistoryManager.js +1 -1
- package/dist/src/ui/hooks/useHistoryManager.js.map +1 -1
- package/dist/src/ui/hooks/useHistoryManager.test.js +16 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -1
- 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.js +2 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -1
- package/dist/src/ui/hooks/useIncludeDirsTrust.js +6 -4
- package/dist/src/ui/hooks/useIncludeDirsTrust.js.map +1 -1
- package/dist/src/ui/hooks/useIncludeDirsTrust.test.js +2 -2
- package/dist/src/ui/hooks/useIncludeDirsTrust.test.js.map +1 -1
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +2 -2
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +2 -1
- package/dist/src/ui/hooks/useLoadingIndicator.js +7 -3
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +15 -4
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -1
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js +10 -3
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js.map +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.js +2 -2
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.js +5 -16
- package/dist/src/ui/hooks/usePrivacySettings.js.map +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.test.js +3 -9
- package/dist/src/ui/hooks/usePrivacySettings.test.js.map +1 -1
- package/dist/src/ui/hooks/usePromptCompletion.js +1 -2
- package/dist/src/ui/hooks/usePromptCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.js +19 -18
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +1 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js +29 -23
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -1
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +1 -1
- package/dist/src/ui/hooks/useReactToolScheduler.js +1 -1
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -1
- 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.js +2 -1
- package/dist/src/ui/hooks/useSelectionList.js.map +1 -1
- package/dist/src/ui/hooks/useSelectionList.test.js +2 -0
- package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -1
- package/dist/src/ui/hooks/useSessionBrowser.js +3 -3
- package/dist/src/ui/hooks/useSessionBrowser.js.map +1 -1
- package/dist/src/ui/hooks/useSessionBrowser.test.js +4 -10
- package/dist/src/ui/hooks/useSessionBrowser.test.js.map +1 -1
- package/dist/src/ui/hooks/useSessionResume.js +1 -0
- package/dist/src/ui/hooks/useSessionResume.js.map +1 -1
- package/dist/src/ui/hooks/useShellHistory.js +5 -3
- package/dist/src/ui/hooks/useShellHistory.js.map +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +2 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +29 -11
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useSlashCompletion.test.js +115 -5
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -1
- package/dist/src/{utils/version.d.ts → ui/hooks/useSnowfall.d.ts} +1 -1
- 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/useToolScheduler.test.js +86 -53
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
- package/dist/src/ui/hooks/vim.test.js +7 -0
- package/dist/src/ui/hooks/vim.test.js.map +1 -1
- package/dist/src/ui/keyMatchers.test.js +79 -53
- package/dist/src/ui/keyMatchers.test.js.map +1 -1
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +1 -0
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +1 -1
- package/dist/src/ui/themes/ansi-light.js +1 -1
- package/dist/src/ui/themes/ansi-light.js.map +1 -1
- package/dist/src/ui/themes/ansi.js +1 -1
- package/dist/src/ui/themes/ansi.js.map +1 -1
- package/dist/src/ui/themes/color-utils.d.ts +1 -0
- package/dist/src/ui/themes/color-utils.js +13 -0
- package/dist/src/ui/themes/color-utils.js.map +1 -1
- package/dist/src/ui/themes/color-utils.test.js +20 -1
- package/dist/src/ui/themes/color-utils.test.js.map +1 -1
- package/dist/src/ui/themes/shades-of-purple.js +1 -1
- package/dist/src/ui/themes/shades-of-purple.js.map +1 -1
- package/dist/src/ui/themes/theme-manager.d.ts +5 -0
- package/dist/src/ui/themes/theme-manager.js +9 -3
- package/dist/src/ui/themes/theme-manager.js.map +1 -1
- package/dist/src/ui/themes/theme-manager.test.js +7 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -1
- package/dist/src/ui/themes/theme.d.ts +12 -0
- package/dist/src/ui/themes/theme.js +34 -4
- package/dist/src/ui/themes/theme.js.map +1 -1
- package/dist/src/ui/themes/theme.test.js +23 -0
- package/dist/src/ui/themes/theme.test.js.map +1 -1
- package/dist/src/ui/types.d.ts +48 -5
- package/dist/src/ui/types.js +5 -0
- package/dist/src/ui/types.js.map +1 -1
- package/dist/src/ui/utils/CodeColorizer.js +2 -2
- package/dist/src/ui/utils/CodeColorizer.js.map +1 -1
- package/dist/src/ui/utils/CodeColorizer.test.js +1 -1
- package/dist/src/ui/utils/CodeColorizer.test.js.map +1 -1
- package/dist/src/ui/utils/ConsolePatcher.js +1 -0
- package/dist/src/ui/utils/ConsolePatcher.js.map +1 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +2 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.test.js +1 -1
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -1
- package/dist/src/ui/utils/clipboardUtils.d.ts +27 -2
- package/dist/src/ui/utils/clipboardUtils.js +148 -16
- package/dist/src/ui/utils/clipboardUtils.js.map +1 -1
- package/dist/src/ui/utils/clipboardUtils.test.js +135 -13
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -1
- 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 +1 -1
- package/dist/src/ui/utils/commandUtils.js +111 -1
- package/dist/src/ui/utils/commandUtils.js.map +1 -1
- package/dist/src/ui/utils/commandUtils.test.js +200 -6
- package/dist/src/ui/utils/commandUtils.test.js.map +1 -1
- package/dist/src/ui/utils/computeStats.js +2 -0
- package/dist/src/ui/utils/computeStats.js.map +1 -1
- package/dist/src/ui/utils/computeStats.test.js +9 -0
- package/dist/src/ui/utils/computeStats.test.js.map +1 -1
- package/dist/src/ui/utils/directoryUtils.d.ts +8 -0
- package/dist/src/ui/utils/directoryUtils.js +95 -3
- package/dist/src/ui/utils/directoryUtils.js.map +1 -1
- package/dist/src/ui/utils/directoryUtils.test.js +193 -3
- package/dist/src/ui/utils/directoryUtils.test.js.map +1 -1
- package/dist/src/ui/utils/highlight.d.ts +3 -2
- package/dist/src/ui/utils/highlight.js +51 -37
- package/dist/src/ui/utils/highlight.js.map +1 -1
- package/dist/src/ui/utils/highlight.test.js +75 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -1
- 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/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 +1 -1
- package/dist/src/ui/utils/terminalSetup.js +21 -6
- package/dist/src/ui/utils/terminalSetup.js.map +1 -1
- package/dist/src/ui/utils/terminalSetup.test.js +16 -2
- package/dist/src/ui/utils/terminalSetup.test.js.map +1 -1
- package/dist/src/ui/utils/textUtils.js +9 -1
- package/dist/src/ui/utils/textUtils.js.map +1 -1
- package/dist/src/ui/utils/textUtils.test.js +12 -1
- package/dist/src/ui/utils/textUtils.test.js.map +1 -1
- package/dist/src/ui/utils/ui-sizing.js +1 -1
- package/dist/src/ui/utils/ui-sizing.js.map +1 -1
- package/dist/src/ui/utils/ui-sizing.test.js +2 -2
- package/dist/src/ui/utils/ui-sizing.test.js.map +1 -1
- 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/cleanup.d.ts +11 -0
- package/dist/src/utils/cleanup.js +36 -1
- package/dist/src/utils/cleanup.js.map +1 -1
- package/dist/src/utils/cleanup.test.js +21 -31
- package/dist/src/utils/cleanup.test.js.map +1 -1
- package/dist/src/utils/deepMerge.js +7 -2
- package/dist/src/utils/deepMerge.js.map +1 -1
- package/dist/src/utils/deepMerge.test.js +58 -0
- package/dist/src/utils/deepMerge.test.js.map +1 -1
- package/dist/src/utils/envVarResolver.js.map +1 -1
- package/dist/src/utils/envVarResolver.test.js.map +1 -1
- package/dist/src/utils/errors.js +13 -14
- package/dist/src/utils/errors.js.map +1 -1
- package/dist/src/utils/errors.test.js +115 -39
- package/dist/src/utils/errors.test.js.map +1 -1
- package/dist/src/utils/handleAutoUpdate.d.ts +1 -1
- package/dist/src/utils/handleAutoUpdate.js +7 -10
- package/dist/src/utils/handleAutoUpdate.js.map +1 -1
- package/dist/src/utils/handleAutoUpdate.test.js +12 -10
- package/dist/src/utils/handleAutoUpdate.test.js.map +1 -1
- package/dist/src/utils/installationInfo.js +1 -1
- package/dist/src/utils/installationInfo.js.map +1 -1
- package/dist/src/utils/installationInfo.test.js +1 -1
- package/dist/src/utils/installationInfo.test.js.map +1 -1
- package/dist/src/utils/processUtils.d.ts +1 -1
- package/dist/src/utils/processUtils.js +1 -1
- package/dist/src/utils/processUtils.js.map +1 -1
- package/dist/src/utils/readStdin.js +7 -0
- package/dist/src/utils/readStdin.js.map +1 -1
- package/dist/src/utils/readStdin.test.js +4 -0
- package/dist/src/utils/readStdin.test.js.map +1 -1
- 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.js +3 -1
- package/dist/src/utils/relaunch.js.map +1 -1
- package/dist/src/utils/relaunch.test.js +13 -7
- package/dist/src/utils/relaunch.test.js.map +1 -1
- package/dist/src/utils/resolvePath.js +3 -3
- package/dist/src/utils/resolvePath.js.map +1 -1
- package/dist/src/utils/resolvePath.test.js +3 -0
- package/dist/src/utils/resolvePath.test.js.map +1 -1
- package/dist/src/utils/sandbox.js +27 -17
- package/dist/src/utils/sandbox.js.map +1 -1
- package/dist/src/utils/sandbox.test.js +17 -5
- package/dist/src/utils/sandbox.test.js.map +1 -1
- package/dist/src/utils/sandboxUtils.js +3 -2
- package/dist/src/utils/sandboxUtils.js.map +1 -1
- package/dist/src/utils/sandboxUtils.test.js +3 -0
- package/dist/src/utils/sandboxUtils.test.js.map +1 -1
- package/dist/src/utils/sessionCleanup.integration.test.js +2 -2
- package/dist/src/utils/sessionCleanup.integration.test.js.map +1 -1
- package/dist/src/utils/sessionCleanup.js +16 -4
- package/dist/src/utils/sessionCleanup.js.map +1 -1
- package/dist/src/utils/sessionCleanup.test.js +18 -68
- package/dist/src/utils/sessionCleanup.test.js.map +1 -1
- package/dist/src/utils/sessionUtils.d.ts +22 -0
- package/dist/src/utils/sessionUtils.js +37 -5
- package/dist/src/utils/sessionUtils.js.map +1 -1
- package/dist/src/utils/sessionUtils.test.js +3 -3
- package/dist/src/utils/sessionUtils.test.js.map +1 -1
- package/dist/src/utils/sessions.js +14 -12
- package/dist/src/utils/sessions.js.map +1 -1
- package/dist/src/utils/sessions.test.js +62 -39
- package/dist/src/utils/sessions.test.js.map +1 -1
- package/dist/src/utils/settingsUtils.js +0 -5
- package/dist/src/utils/settingsUtils.js.map +1 -1
- 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 +29 -0
- package/dist/src/utils/skillUtils.js +144 -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 +57 -0
- package/dist/src/utils/skillUtils.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/userStartupWarnings.d.ts +2 -1
- package/dist/src/utils/userStartupWarnings.js +17 -7
- package/dist/src/utils/userStartupWarnings.js.map +1 -1
- package/dist/src/utils/userStartupWarnings.test.js +37 -6
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -1
- package/dist/src/utils/windowTitle.d.ts +13 -4
- package/dist/src/utils/windowTitle.js +65 -7
- package/dist/src/utils/windowTitle.js.map +1 -1
- package/dist/src/utils/windowTitle.test.js +183 -40
- package/dist/src/utils/windowTitle.test.js.map +1 -1
- package/dist/src/validateNonInterActiveAuth.d.ts +1 -1
- package/dist/src/validateNonInterActiveAuth.js +1 -2
- package/dist/src/validateNonInterActiveAuth.js.map +1 -1
- package/dist/src/zed-integration/fileSystemService.d.ts +3 -4
- package/dist/src/zed-integration/fileSystemService.js +5 -10
- package/dist/src/zed-integration/fileSystemService.js.map +1 -1
- package/dist/src/zed-integration/fileSystemService.test.js +11 -21
- package/dist/src/zed-integration/fileSystemService.test.js.map +1 -1
- package/dist/src/zed-integration/zedIntegration.d.ts +5 -5
- package/dist/src/zed-integration/zedIntegration.js +54 -24
- package/dist/src/zed-integration/zedIntegration.js.map +1 -1
- package/dist/src/zed-integration/zedIntegration.test.js +29 -18
- package/dist/src/zed-integration/zedIntegration.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +0 -12
- package/dist/src/ui/hooks/useBracketedPaste.js +0 -31
- package/dist/src/ui/hooks/useBracketedPaste.js.map +0 -1
- package/dist/src/ui/utils/bracketedPaste.d.ts +0 -7
- package/dist/src/ui/utils/bracketedPaste.js +0 -15
- package/dist/src/ui/utils/bracketedPaste.js.map +0 -1
- package/dist/src/ui/utils/kittyProtocolDetector.d.ts +0 -17
- package/dist/src/ui/utils/kittyProtocolDetector.js +0 -111
- package/dist/src/ui/utils/kittyProtocolDetector.js.map +0 -1
- package/dist/src/ui/utils/kittyProtocolDetector.test.js +0 -113
- package/dist/src/ui/utils/kittyProtocolDetector.test.js.map +0 -1
- package/dist/src/utils/version.js +0 -15
- package/dist/src/utils/version.js.map +0 -1
- package/dist/src/utils/version.test.js +0 -39
- package/dist/src/utils/version.test.js.map +0 -1
- package/dist/src/zed-integration/acp.d.ts +0 -41
- package/dist/src/zed-integration/acp.js +0 -72
- package/dist/src/zed-integration/acp.js.map +0 -1
- package/dist/src/zed-integration/acp.test.js +0 -222
- package/dist/src/zed-integration/acp.test.js.map +0 -1
- package/dist/src/zed-integration/connection.d.ts +0 -28
- package/dist/src/zed-integration/connection.js +0 -163
- package/dist/src/zed-integration/connection.js.map +0 -1
- package/dist/src/zed-integration/connection.test.js +0 -175
- package/dist/src/zed-integration/connection.test.js.map +0 -1
- package/dist/src/zed-integration/schema.d.ts +0 -11792
- package/dist/src/zed-integration/schema.js +0 -311
- package/dist/src/zed-integration/schema.js.map +0 -1
- /package/dist/src/{ui/utils/kittyProtocolDetector.test.d.ts → commands/hooks/migrate.test.d.ts} +0 -0
- /package/dist/src/{utils/version.test.d.ts → config/extension-manager-scope.test.d.ts} +0 -0
- /package/dist/src/{zed-integration/acp.test.d.ts → config/extension-manager-skills.test.d.ts} +0 -0
- /package/dist/src/{zed-integration/connection.test.d.ts → config/extensions/extensionUpdates.test.d.ts} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright 2025 Google LLC
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import type { MCPServerConfig, BugCommandSettings, TelemetrySettings, AuthType
|
|
6
|
+
import type { MCPServerConfig, BugCommandSettings, TelemetrySettings, AuthType } from '@google/gemini-cli-core';
|
|
7
7
|
import type { CustomTheme } from '../ui/themes/theme.js';
|
|
8
8
|
import type { SessionRetentionSettings } from './settings.js';
|
|
9
9
|
export type SettingsType = 'boolean' | 'string' | 'number' | 'array' | 'object' | 'enum';
|
|
@@ -29,6 +29,11 @@ export interface SettingCollectionDefinition {
|
|
|
29
29
|
* For example, a JSON schema generator can use this to point to a shared definition.
|
|
30
30
|
*/
|
|
31
31
|
ref?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Optional merge strategy for dynamically added properties.
|
|
34
|
+
* Used when this collection definition is referenced via additionalProperties.
|
|
35
|
+
*/
|
|
36
|
+
mergeStrategy?: MergeStrategy;
|
|
32
37
|
}
|
|
33
38
|
export declare enum MergeStrategy {
|
|
34
39
|
REPLACE = "replace",
|
|
@@ -268,7 +273,7 @@ declare const SETTINGS_SCHEMA: {
|
|
|
268
273
|
readonly category: "General";
|
|
269
274
|
readonly requiresRestart: false;
|
|
270
275
|
readonly default: "text";
|
|
271
|
-
readonly description: "The format of the CLI output.";
|
|
276
|
+
readonly description: "The format of the CLI output. Can be `text` or `json`.";
|
|
272
277
|
readonly showInDialog: true;
|
|
273
278
|
readonly options: readonly [{
|
|
274
279
|
readonly value: "text";
|
|
@@ -322,11 +327,29 @@ declare const SETTINGS_SCHEMA: {
|
|
|
322
327
|
};
|
|
323
328
|
readonly showStatusInTitle: {
|
|
324
329
|
readonly type: "boolean";
|
|
325
|
-
readonly label: "Show
|
|
330
|
+
readonly label: "Show Thoughts in Title";
|
|
326
331
|
readonly category: "UI";
|
|
327
332
|
readonly requiresRestart: false;
|
|
328
333
|
readonly default: false;
|
|
329
|
-
readonly description: "Show Cell CLI
|
|
334
|
+
readonly description: "Show Cell CLI model thoughts in the terminal window title during the working phase";
|
|
335
|
+
readonly showInDialog: true;
|
|
336
|
+
};
|
|
337
|
+
readonly dynamicWindowTitle: {
|
|
338
|
+
readonly type: "boolean";
|
|
339
|
+
readonly label: "Dynamic Window Title";
|
|
340
|
+
readonly category: "UI";
|
|
341
|
+
readonly requiresRestart: false;
|
|
342
|
+
readonly default: true;
|
|
343
|
+
readonly description: "Update the terminal window title with current status icons (Ready: ◇, Action Required: ✋, Working: ✦)";
|
|
344
|
+
readonly showInDialog: true;
|
|
345
|
+
};
|
|
346
|
+
readonly showHomeDirectoryWarning: {
|
|
347
|
+
readonly type: "boolean";
|
|
348
|
+
readonly label: "Show Home Directory Warning";
|
|
349
|
+
readonly category: "UI";
|
|
350
|
+
readonly requiresRestart: true;
|
|
351
|
+
readonly default: true;
|
|
352
|
+
readonly description: "Show a warning when running Cell CLI in the home directory.";
|
|
330
353
|
readonly showInDialog: true;
|
|
331
354
|
};
|
|
332
355
|
readonly hideTips: {
|
|
@@ -533,7 +556,7 @@ declare const SETTINGS_SCHEMA: {
|
|
|
533
556
|
readonly category: "IDE";
|
|
534
557
|
readonly requiresRestart: true;
|
|
535
558
|
readonly default: false;
|
|
536
|
-
readonly description: "Enable IDE integration mode";
|
|
559
|
+
readonly description: "Enable IDE integration mode.";
|
|
537
560
|
readonly showInDialog: true;
|
|
538
561
|
};
|
|
539
562
|
readonly hasSeenNudge: {
|
|
@@ -667,6 +690,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
667
690
|
readonly description: "Custom named presets for model configs. These are merged with (and override) the built-in aliases.";
|
|
668
691
|
readonly showInDialog: false;
|
|
669
692
|
};
|
|
693
|
+
readonly customOverrides: {
|
|
694
|
+
readonly type: "array";
|
|
695
|
+
readonly label: "Custom Model Config Overrides";
|
|
696
|
+
readonly category: "Model";
|
|
697
|
+
readonly requiresRestart: false;
|
|
698
|
+
readonly default: [];
|
|
699
|
+
readonly description: "Custom model config overrides. These are merged with (and added to) the built-in overrides.";
|
|
700
|
+
readonly showInDialog: false;
|
|
701
|
+
};
|
|
670
702
|
readonly overrides: {
|
|
671
703
|
readonly type: "array";
|
|
672
704
|
readonly label: "Model Config Overrides";
|
|
@@ -678,6 +710,30 @@ declare const SETTINGS_SCHEMA: {
|
|
|
678
710
|
};
|
|
679
711
|
};
|
|
680
712
|
};
|
|
713
|
+
readonly agents: {
|
|
714
|
+
readonly type: "object";
|
|
715
|
+
readonly label: "Agents";
|
|
716
|
+
readonly category: "Advanced";
|
|
717
|
+
readonly requiresRestart: true;
|
|
718
|
+
readonly default: {};
|
|
719
|
+
readonly description: "Settings for subagents.";
|
|
720
|
+
readonly showInDialog: false;
|
|
721
|
+
readonly properties: {
|
|
722
|
+
readonly overrides: {
|
|
723
|
+
readonly type: "object";
|
|
724
|
+
readonly label: "Agent Overrides";
|
|
725
|
+
readonly category: "Advanced";
|
|
726
|
+
readonly requiresRestart: true;
|
|
727
|
+
readonly default: {};
|
|
728
|
+
readonly description: "Override settings for specific agents, e.g. to disable the agent, set a custom model config, or run config.";
|
|
729
|
+
readonly showInDialog: false;
|
|
730
|
+
readonly additionalProperties: {
|
|
731
|
+
readonly type: "object";
|
|
732
|
+
readonly ref: "AgentOverride";
|
|
733
|
+
};
|
|
734
|
+
};
|
|
735
|
+
};
|
|
736
|
+
};
|
|
681
737
|
readonly context: {
|
|
682
738
|
readonly type: "object";
|
|
683
739
|
readonly label: "Context";
|
|
@@ -752,7 +808,7 @@ declare const SETTINGS_SCHEMA: {
|
|
|
752
808
|
readonly category: "Context";
|
|
753
809
|
readonly requiresRestart: true;
|
|
754
810
|
readonly default: true;
|
|
755
|
-
readonly description: "Respect .gitignore files when searching";
|
|
811
|
+
readonly description: "Respect .gitignore files when searching.";
|
|
756
812
|
readonly showInDialog: true;
|
|
757
813
|
};
|
|
758
814
|
readonly respectGeminiIgnore: {
|
|
@@ -761,7 +817,7 @@ declare const SETTINGS_SCHEMA: {
|
|
|
761
817
|
readonly category: "Context";
|
|
762
818
|
readonly requiresRestart: true;
|
|
763
819
|
readonly default: true;
|
|
764
|
-
readonly description: "Respect .geminiignore files when searching";
|
|
820
|
+
readonly description: "Respect .geminiignore files when searching.";
|
|
765
821
|
readonly showInDialog: true;
|
|
766
822
|
};
|
|
767
823
|
readonly enableRecursiveFileSearch: {
|
|
@@ -850,6 +906,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
850
906
|
readonly description: "The maximum time in seconds allowed without output from the shell command. Defaults to 5 minutes.";
|
|
851
907
|
readonly showInDialog: false;
|
|
852
908
|
};
|
|
909
|
+
readonly enableShellOutputEfficiency: {
|
|
910
|
+
readonly type: "boolean";
|
|
911
|
+
readonly label: "Enable Shell Output Efficiency";
|
|
912
|
+
readonly category: "Tools";
|
|
913
|
+
readonly requiresRestart: false;
|
|
914
|
+
readonly default: true;
|
|
915
|
+
readonly description: "Enable shell output efficiency optimizations for better performance.";
|
|
916
|
+
readonly showInDialog: false;
|
|
917
|
+
};
|
|
853
918
|
};
|
|
854
919
|
};
|
|
855
920
|
readonly autoAccept: {
|
|
@@ -952,9 +1017,9 @@ declare const SETTINGS_SCHEMA: {
|
|
|
952
1017
|
readonly description: "The number of lines to keep when truncating tool output.";
|
|
953
1018
|
readonly showInDialog: true;
|
|
954
1019
|
};
|
|
955
|
-
readonly
|
|
1020
|
+
readonly disableLLMCorrection: {
|
|
956
1021
|
readonly type: "boolean";
|
|
957
|
-
readonly label: "
|
|
1022
|
+
readonly label: "Disable LLM Correction";
|
|
958
1023
|
readonly category: "Tools";
|
|
959
1024
|
readonly requiresRestart: true;
|
|
960
1025
|
readonly default: false;
|
|
@@ -963,11 +1028,11 @@ declare const SETTINGS_SCHEMA: {
|
|
|
963
1028
|
};
|
|
964
1029
|
readonly enableHooks: {
|
|
965
1030
|
readonly type: "boolean";
|
|
966
|
-
readonly label: "Enable Hooks System";
|
|
1031
|
+
readonly label: "Enable Hooks System (Experimental)";
|
|
967
1032
|
readonly category: "Advanced";
|
|
968
1033
|
readonly requiresRestart: true;
|
|
969
|
-
readonly default:
|
|
970
|
-
readonly description: "
|
|
1034
|
+
readonly default: true;
|
|
1035
|
+
readonly description: "Enables the hooks system experiment. When disabled, the hooks system is completely deactivated regardless of other settings.";
|
|
971
1036
|
readonly showInDialog: false;
|
|
972
1037
|
};
|
|
973
1038
|
};
|
|
@@ -1016,15 +1081,6 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1016
1081
|
};
|
|
1017
1082
|
};
|
|
1018
1083
|
};
|
|
1019
|
-
readonly useSmartEdit: {
|
|
1020
|
-
readonly type: "boolean";
|
|
1021
|
-
readonly label: "Use Smart Edit";
|
|
1022
|
-
readonly category: "Advanced";
|
|
1023
|
-
readonly requiresRestart: false;
|
|
1024
|
-
readonly default: true;
|
|
1025
|
-
readonly description: "Enable the smart-edit tool instead of the replace tool.";
|
|
1026
|
-
readonly showInDialog: false;
|
|
1027
|
-
};
|
|
1028
1084
|
readonly useWriteTodos: {
|
|
1029
1085
|
readonly type: "boolean";
|
|
1030
1086
|
readonly label: "Use WriteTodos";
|
|
@@ -1052,6 +1108,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1052
1108
|
readonly description: "Disable YOLO mode, even if enabled by a flag.";
|
|
1053
1109
|
readonly showInDialog: true;
|
|
1054
1110
|
};
|
|
1111
|
+
readonly enablePermanentToolApproval: {
|
|
1112
|
+
readonly type: "boolean";
|
|
1113
|
+
readonly label: "Allow Permanent Tool Approval";
|
|
1114
|
+
readonly category: "Security";
|
|
1115
|
+
readonly requiresRestart: false;
|
|
1116
|
+
readonly default: false;
|
|
1117
|
+
readonly description: "Enable the \"Allow for all future sessions\" option in tool confirmation dialogs.";
|
|
1118
|
+
readonly showInDialog: true;
|
|
1119
|
+
};
|
|
1055
1120
|
readonly blockGitExtensions: {
|
|
1056
1121
|
readonly type: "boolean";
|
|
1057
1122
|
readonly label: "Blocks extensions from Git";
|
|
@@ -1081,6 +1146,50 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1081
1146
|
};
|
|
1082
1147
|
};
|
|
1083
1148
|
};
|
|
1149
|
+
readonly environmentVariableRedaction: {
|
|
1150
|
+
readonly type: "object";
|
|
1151
|
+
readonly label: "Environment Variable Redaction";
|
|
1152
|
+
readonly category: "Security";
|
|
1153
|
+
readonly requiresRestart: false;
|
|
1154
|
+
readonly default: {};
|
|
1155
|
+
readonly description: "Settings for environment variable redaction.";
|
|
1156
|
+
readonly showInDialog: false;
|
|
1157
|
+
readonly properties: {
|
|
1158
|
+
readonly allowed: {
|
|
1159
|
+
readonly type: "array";
|
|
1160
|
+
readonly label: "Allowed Environment Variables";
|
|
1161
|
+
readonly category: "Security";
|
|
1162
|
+
readonly requiresRestart: true;
|
|
1163
|
+
readonly default: string[];
|
|
1164
|
+
readonly description: "Environment variables to always allow (bypass redaction).";
|
|
1165
|
+
readonly showInDialog: false;
|
|
1166
|
+
readonly items: {
|
|
1167
|
+
readonly type: "string";
|
|
1168
|
+
};
|
|
1169
|
+
};
|
|
1170
|
+
readonly blocked: {
|
|
1171
|
+
readonly type: "array";
|
|
1172
|
+
readonly label: "Blocked Environment Variables";
|
|
1173
|
+
readonly category: "Security";
|
|
1174
|
+
readonly requiresRestart: true;
|
|
1175
|
+
readonly default: string[];
|
|
1176
|
+
readonly description: "Environment variables to always redact.";
|
|
1177
|
+
readonly showInDialog: false;
|
|
1178
|
+
readonly items: {
|
|
1179
|
+
readonly type: "string";
|
|
1180
|
+
};
|
|
1181
|
+
};
|
|
1182
|
+
readonly enabled: {
|
|
1183
|
+
readonly type: "boolean";
|
|
1184
|
+
readonly label: "Enable Environment Variable Redaction";
|
|
1185
|
+
readonly category: "Security";
|
|
1186
|
+
readonly requiresRestart: true;
|
|
1187
|
+
readonly default: false;
|
|
1188
|
+
readonly description: "Enable redaction of environment variables that may contain secrets.";
|
|
1189
|
+
readonly showInDialog: true;
|
|
1190
|
+
};
|
|
1191
|
+
};
|
|
1192
|
+
};
|
|
1084
1193
|
readonly auth: {
|
|
1085
1194
|
readonly type: "object";
|
|
1086
1195
|
readonly label: "Authentication";
|
|
@@ -1263,6 +1372,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1263
1372
|
readonly description: "Setting to enable experimental features";
|
|
1264
1373
|
readonly showInDialog: false;
|
|
1265
1374
|
readonly properties: {
|
|
1375
|
+
readonly enableAgents: {
|
|
1376
|
+
readonly type: "boolean";
|
|
1377
|
+
readonly label: "Enable Agents";
|
|
1378
|
+
readonly category: "Experimental";
|
|
1379
|
+
readonly requiresRestart: true;
|
|
1380
|
+
readonly default: false;
|
|
1381
|
+
readonly description: "Enable local and remote subagents. Warning: Experimental feature, uses YOLO mode for subagents";
|
|
1382
|
+
readonly showInDialog: false;
|
|
1383
|
+
};
|
|
1266
1384
|
readonly extensionManagement: {
|
|
1267
1385
|
readonly type: "boolean";
|
|
1268
1386
|
readonly label: "Extension Management";
|
|
@@ -1272,22 +1390,22 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1272
1390
|
readonly description: "Enable extension management features.";
|
|
1273
1391
|
readonly showInDialog: false;
|
|
1274
1392
|
};
|
|
1275
|
-
readonly
|
|
1393
|
+
readonly extensionConfig: {
|
|
1276
1394
|
readonly type: "boolean";
|
|
1277
|
-
readonly label: "Extension
|
|
1395
|
+
readonly label: "Extension Configuration";
|
|
1278
1396
|
readonly category: "Experimental";
|
|
1279
1397
|
readonly requiresRestart: true;
|
|
1280
1398
|
readonly default: false;
|
|
1281
|
-
readonly description: "
|
|
1399
|
+
readonly description: "Enable requesting and fetching of extension settings.";
|
|
1282
1400
|
readonly showInDialog: false;
|
|
1283
1401
|
};
|
|
1284
|
-
readonly
|
|
1402
|
+
readonly extensionReloading: {
|
|
1285
1403
|
readonly type: "boolean";
|
|
1286
|
-
readonly label: "
|
|
1404
|
+
readonly label: "Extension Reloading";
|
|
1287
1405
|
readonly category: "Experimental";
|
|
1288
1406
|
readonly requiresRestart: true;
|
|
1289
1407
|
readonly default: false;
|
|
1290
|
-
readonly description: "
|
|
1408
|
+
readonly description: "Enables extension loading/unloading within the CLI session.";
|
|
1291
1409
|
readonly showInDialog: false;
|
|
1292
1410
|
};
|
|
1293
1411
|
readonly jitContext: {
|
|
@@ -1299,6 +1417,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1299
1417
|
readonly description: "Enable Just-In-Time (JIT) context loading.";
|
|
1300
1418
|
readonly showInDialog: false;
|
|
1301
1419
|
};
|
|
1420
|
+
readonly skills: {
|
|
1421
|
+
readonly type: "boolean";
|
|
1422
|
+
readonly label: "Agent Skills";
|
|
1423
|
+
readonly category: "Experimental";
|
|
1424
|
+
readonly requiresRestart: true;
|
|
1425
|
+
readonly default: false;
|
|
1426
|
+
readonly description: "Enable Agent Skills (experimental).";
|
|
1427
|
+
readonly showInDialog: true;
|
|
1428
|
+
};
|
|
1302
1429
|
readonly codebaseInvestigatorSettings: {
|
|
1303
1430
|
readonly type: "object";
|
|
1304
1431
|
readonly label: "Codebase Investigator Settings";
|
|
@@ -1349,12 +1476,41 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1349
1476
|
readonly label: "Model";
|
|
1350
1477
|
readonly category: "Experimental";
|
|
1351
1478
|
readonly requiresRestart: true;
|
|
1352
|
-
readonly default: "
|
|
1479
|
+
readonly default: "auto";
|
|
1353
1480
|
readonly description: "The model to use for the Codebase Investigator agent.";
|
|
1354
1481
|
readonly showInDialog: false;
|
|
1355
1482
|
};
|
|
1356
1483
|
};
|
|
1357
1484
|
};
|
|
1485
|
+
readonly useOSC52Paste: {
|
|
1486
|
+
readonly type: "boolean";
|
|
1487
|
+
readonly label: "Use OSC 52 Paste";
|
|
1488
|
+
readonly category: "Experimental";
|
|
1489
|
+
readonly requiresRestart: false;
|
|
1490
|
+
readonly default: false;
|
|
1491
|
+
readonly description: "Use OSC 52 sequence for pasting instead of clipboardy (useful for remote sessions).";
|
|
1492
|
+
readonly showInDialog: true;
|
|
1493
|
+
};
|
|
1494
|
+
readonly cliHelpAgentSettings: {
|
|
1495
|
+
readonly type: "object";
|
|
1496
|
+
readonly label: "CLI Help Agent Settings";
|
|
1497
|
+
readonly category: "Experimental";
|
|
1498
|
+
readonly requiresRestart: true;
|
|
1499
|
+
readonly default: {};
|
|
1500
|
+
readonly description: "Configuration for CLI Help Agent.";
|
|
1501
|
+
readonly showInDialog: false;
|
|
1502
|
+
readonly properties: {
|
|
1503
|
+
readonly enabled: {
|
|
1504
|
+
readonly type: "boolean";
|
|
1505
|
+
readonly label: "Enable CLI Help Agent";
|
|
1506
|
+
readonly category: "Experimental";
|
|
1507
|
+
readonly requiresRestart: true;
|
|
1508
|
+
readonly default: true;
|
|
1509
|
+
readonly description: "Enable the CLI Help Agent.";
|
|
1510
|
+
readonly showInDialog: true;
|
|
1511
|
+
};
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1358
1514
|
};
|
|
1359
1515
|
};
|
|
1360
1516
|
readonly extensions: {
|
|
@@ -1394,15 +1550,286 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1394
1550
|
};
|
|
1395
1551
|
};
|
|
1396
1552
|
};
|
|
1553
|
+
readonly skills: {
|
|
1554
|
+
readonly type: "object";
|
|
1555
|
+
readonly label: "Skills";
|
|
1556
|
+
readonly category: "Advanced";
|
|
1557
|
+
readonly requiresRestart: true;
|
|
1558
|
+
readonly default: {};
|
|
1559
|
+
readonly description: "Settings for agent skills.";
|
|
1560
|
+
readonly showInDialog: false;
|
|
1561
|
+
readonly properties: {
|
|
1562
|
+
readonly disabled: {
|
|
1563
|
+
readonly type: "array";
|
|
1564
|
+
readonly label: "Disabled Skills";
|
|
1565
|
+
readonly category: "Advanced";
|
|
1566
|
+
readonly requiresRestart: true;
|
|
1567
|
+
readonly default: string[];
|
|
1568
|
+
readonly description: "List of disabled skills.";
|
|
1569
|
+
readonly showInDialog: false;
|
|
1570
|
+
readonly items: {
|
|
1571
|
+
readonly type: "string";
|
|
1572
|
+
};
|
|
1573
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1574
|
+
};
|
|
1575
|
+
};
|
|
1576
|
+
};
|
|
1397
1577
|
readonly hooks: {
|
|
1398
1578
|
readonly type: "object";
|
|
1399
1579
|
readonly label: "Hooks";
|
|
1400
1580
|
readonly category: "Advanced";
|
|
1401
1581
|
readonly requiresRestart: false;
|
|
1402
|
-
readonly default: {
|
|
1582
|
+
readonly default: {};
|
|
1403
1583
|
readonly description: "Hook configurations for intercepting and customizing agent behavior.";
|
|
1404
1584
|
readonly showInDialog: false;
|
|
1405
|
-
readonly
|
|
1585
|
+
readonly properties: {
|
|
1586
|
+
readonly enabled: {
|
|
1587
|
+
readonly type: "boolean";
|
|
1588
|
+
readonly label: "Enable Hooks";
|
|
1589
|
+
readonly category: "Advanced";
|
|
1590
|
+
readonly requiresRestart: false;
|
|
1591
|
+
readonly default: false;
|
|
1592
|
+
readonly description: "Canonical toggle for the hooks system. When disabled, no hooks will be executed.";
|
|
1593
|
+
readonly showInDialog: false;
|
|
1594
|
+
};
|
|
1595
|
+
readonly disabled: {
|
|
1596
|
+
readonly type: "array";
|
|
1597
|
+
readonly label: "Disabled Hooks";
|
|
1598
|
+
readonly category: "Advanced";
|
|
1599
|
+
readonly requiresRestart: false;
|
|
1600
|
+
readonly default: string[];
|
|
1601
|
+
readonly description: "List of hook names (commands) that should be disabled. Hooks in this list will not execute even if configured.";
|
|
1602
|
+
readonly showInDialog: false;
|
|
1603
|
+
readonly items: {
|
|
1604
|
+
readonly type: "string";
|
|
1605
|
+
readonly description: "Hook command name";
|
|
1606
|
+
};
|
|
1607
|
+
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1608
|
+
};
|
|
1609
|
+
readonly notifications: {
|
|
1610
|
+
readonly type: "boolean";
|
|
1611
|
+
readonly label: "Hook Notifications";
|
|
1612
|
+
readonly category: "Advanced";
|
|
1613
|
+
readonly requiresRestart: false;
|
|
1614
|
+
readonly default: true;
|
|
1615
|
+
readonly description: "Show visual indicators when hooks are executing.";
|
|
1616
|
+
readonly showInDialog: true;
|
|
1617
|
+
};
|
|
1618
|
+
readonly BeforeTool: {
|
|
1619
|
+
readonly type: "array";
|
|
1620
|
+
readonly label: "Before Tool Hooks";
|
|
1621
|
+
readonly category: "Advanced";
|
|
1622
|
+
readonly requiresRestart: false;
|
|
1623
|
+
readonly default: [];
|
|
1624
|
+
readonly description: "Hooks that execute before tool execution. Can intercept, validate, or modify tool calls.";
|
|
1625
|
+
readonly showInDialog: false;
|
|
1626
|
+
readonly ref: "HookDefinitionArray";
|
|
1627
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1628
|
+
};
|
|
1629
|
+
readonly AfterTool: {
|
|
1630
|
+
readonly type: "array";
|
|
1631
|
+
readonly label: "After Tool Hooks";
|
|
1632
|
+
readonly category: "Advanced";
|
|
1633
|
+
readonly requiresRestart: false;
|
|
1634
|
+
readonly default: [];
|
|
1635
|
+
readonly description: "Hooks that execute after tool execution. Can process results, log outputs, or trigger follow-up actions.";
|
|
1636
|
+
readonly showInDialog: false;
|
|
1637
|
+
readonly ref: "HookDefinitionArray";
|
|
1638
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1639
|
+
};
|
|
1640
|
+
readonly BeforeAgent: {
|
|
1641
|
+
readonly type: "array";
|
|
1642
|
+
readonly label: "Before Agent Hooks";
|
|
1643
|
+
readonly category: "Advanced";
|
|
1644
|
+
readonly requiresRestart: false;
|
|
1645
|
+
readonly default: [];
|
|
1646
|
+
readonly description: "Hooks that execute before agent loop starts. Can set up context or initialize resources.";
|
|
1647
|
+
readonly showInDialog: false;
|
|
1648
|
+
readonly ref: "HookDefinitionArray";
|
|
1649
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1650
|
+
};
|
|
1651
|
+
readonly AfterAgent: {
|
|
1652
|
+
readonly type: "array";
|
|
1653
|
+
readonly label: "After Agent Hooks";
|
|
1654
|
+
readonly category: "Advanced";
|
|
1655
|
+
readonly requiresRestart: false;
|
|
1656
|
+
readonly default: [];
|
|
1657
|
+
readonly description: "Hooks that execute after agent loop completes. Can perform cleanup or summarize results.";
|
|
1658
|
+
readonly showInDialog: false;
|
|
1659
|
+
readonly ref: "HookDefinitionArray";
|
|
1660
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1661
|
+
};
|
|
1662
|
+
readonly Notification: {
|
|
1663
|
+
readonly type: "array";
|
|
1664
|
+
readonly label: "Notification Hooks";
|
|
1665
|
+
readonly category: "Advanced";
|
|
1666
|
+
readonly requiresRestart: false;
|
|
1667
|
+
readonly default: [];
|
|
1668
|
+
readonly description: "Hooks that execute on notification events (errors, warnings, info). Can log or alert on specific conditions.";
|
|
1669
|
+
readonly showInDialog: false;
|
|
1670
|
+
readonly ref: "HookDefinitionArray";
|
|
1671
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1672
|
+
};
|
|
1673
|
+
readonly SessionStart: {
|
|
1674
|
+
readonly type: "array";
|
|
1675
|
+
readonly label: "Session Start Hooks";
|
|
1676
|
+
readonly category: "Advanced";
|
|
1677
|
+
readonly requiresRestart: false;
|
|
1678
|
+
readonly default: [];
|
|
1679
|
+
readonly description: "Hooks that execute when a session starts. Can initialize session-specific resources or state.";
|
|
1680
|
+
readonly showInDialog: false;
|
|
1681
|
+
readonly ref: "HookDefinitionArray";
|
|
1682
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1683
|
+
};
|
|
1684
|
+
readonly SessionEnd: {
|
|
1685
|
+
readonly type: "array";
|
|
1686
|
+
readonly label: "Session End Hooks";
|
|
1687
|
+
readonly category: "Advanced";
|
|
1688
|
+
readonly requiresRestart: false;
|
|
1689
|
+
readonly default: [];
|
|
1690
|
+
readonly description: "Hooks that execute when a session ends. Can perform cleanup or persist session data.";
|
|
1691
|
+
readonly showInDialog: false;
|
|
1692
|
+
readonly ref: "HookDefinitionArray";
|
|
1693
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1694
|
+
};
|
|
1695
|
+
readonly PreCompress: {
|
|
1696
|
+
readonly type: "array";
|
|
1697
|
+
readonly label: "Pre-Compress Hooks";
|
|
1698
|
+
readonly category: "Advanced";
|
|
1699
|
+
readonly requiresRestart: false;
|
|
1700
|
+
readonly default: [];
|
|
1701
|
+
readonly description: "Hooks that execute before chat history compression. Can back up or analyze conversation before compression.";
|
|
1702
|
+
readonly showInDialog: false;
|
|
1703
|
+
readonly ref: "HookDefinitionArray";
|
|
1704
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1705
|
+
};
|
|
1706
|
+
readonly BeforeModel: {
|
|
1707
|
+
readonly type: "array";
|
|
1708
|
+
readonly label: "Before Model Hooks";
|
|
1709
|
+
readonly category: "Advanced";
|
|
1710
|
+
readonly requiresRestart: false;
|
|
1711
|
+
readonly default: [];
|
|
1712
|
+
readonly description: "Hooks that execute before LLM requests. Can modify prompts, inject context, or control model parameters.";
|
|
1713
|
+
readonly showInDialog: false;
|
|
1714
|
+
readonly ref: "HookDefinitionArray";
|
|
1715
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1716
|
+
};
|
|
1717
|
+
readonly AfterModel: {
|
|
1718
|
+
readonly type: "array";
|
|
1719
|
+
readonly label: "After Model Hooks";
|
|
1720
|
+
readonly category: "Advanced";
|
|
1721
|
+
readonly requiresRestart: false;
|
|
1722
|
+
readonly default: [];
|
|
1723
|
+
readonly description: "Hooks that execute after LLM responses. Can process outputs, extract information, or log interactions.";
|
|
1724
|
+
readonly showInDialog: false;
|
|
1725
|
+
readonly ref: "HookDefinitionArray";
|
|
1726
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1727
|
+
};
|
|
1728
|
+
readonly BeforeToolSelection: {
|
|
1729
|
+
readonly type: "array";
|
|
1730
|
+
readonly label: "Before Tool Selection Hooks";
|
|
1731
|
+
readonly category: "Advanced";
|
|
1732
|
+
readonly requiresRestart: false;
|
|
1733
|
+
readonly default: [];
|
|
1734
|
+
readonly description: "Hooks that execute before tool selection. Can filter or prioritize available tools dynamically.";
|
|
1735
|
+
readonly showInDialog: false;
|
|
1736
|
+
readonly ref: "HookDefinitionArray";
|
|
1737
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1738
|
+
};
|
|
1739
|
+
};
|
|
1740
|
+
readonly additionalProperties: {
|
|
1741
|
+
readonly type: "array";
|
|
1742
|
+
readonly description: "Custom hook event arrays that contain hook definitions for user-defined events";
|
|
1743
|
+
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
readonly admin: {
|
|
1747
|
+
readonly type: "object";
|
|
1748
|
+
readonly label: "Admin";
|
|
1749
|
+
readonly category: "Admin";
|
|
1750
|
+
readonly requiresRestart: false;
|
|
1751
|
+
readonly default: {};
|
|
1752
|
+
readonly description: "Settings configured remotely by enterprise admins.";
|
|
1753
|
+
readonly showInDialog: false;
|
|
1754
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1755
|
+
readonly properties: {
|
|
1756
|
+
readonly secureModeEnabled: {
|
|
1757
|
+
readonly type: "boolean";
|
|
1758
|
+
readonly label: "Secure Mode Enabled";
|
|
1759
|
+
readonly category: "Admin";
|
|
1760
|
+
readonly requiresRestart: false;
|
|
1761
|
+
readonly default: false;
|
|
1762
|
+
readonly description: "If true, disallows yolo mode from being used.";
|
|
1763
|
+
readonly showInDialog: false;
|
|
1764
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1765
|
+
};
|
|
1766
|
+
readonly extensions: {
|
|
1767
|
+
readonly type: "object";
|
|
1768
|
+
readonly label: "Extensions Settings";
|
|
1769
|
+
readonly category: "Admin";
|
|
1770
|
+
readonly requiresRestart: false;
|
|
1771
|
+
readonly default: {};
|
|
1772
|
+
readonly description: "Extensions-specific admin settings.";
|
|
1773
|
+
readonly showInDialog: false;
|
|
1774
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1775
|
+
readonly properties: {
|
|
1776
|
+
readonly enabled: {
|
|
1777
|
+
readonly type: "boolean";
|
|
1778
|
+
readonly label: "Extensions Enabled";
|
|
1779
|
+
readonly category: "Admin";
|
|
1780
|
+
readonly requiresRestart: false;
|
|
1781
|
+
readonly default: true;
|
|
1782
|
+
readonly description: "If false, disallows extensions from being installed or used.";
|
|
1783
|
+
readonly showInDialog: false;
|
|
1784
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1785
|
+
};
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
readonly mcp: {
|
|
1789
|
+
readonly type: "object";
|
|
1790
|
+
readonly label: "MCP Settings";
|
|
1791
|
+
readonly category: "Admin";
|
|
1792
|
+
readonly requiresRestart: false;
|
|
1793
|
+
readonly default: {};
|
|
1794
|
+
readonly description: "MCP-specific admin settings.";
|
|
1795
|
+
readonly showInDialog: false;
|
|
1796
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1797
|
+
readonly properties: {
|
|
1798
|
+
readonly enabled: {
|
|
1799
|
+
readonly type: "boolean";
|
|
1800
|
+
readonly label: "MCP Enabled";
|
|
1801
|
+
readonly category: "Admin";
|
|
1802
|
+
readonly requiresRestart: false;
|
|
1803
|
+
readonly default: true;
|
|
1804
|
+
readonly description: "If false, disallows MCP servers from being used.";
|
|
1805
|
+
readonly showInDialog: false;
|
|
1806
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1807
|
+
};
|
|
1808
|
+
};
|
|
1809
|
+
};
|
|
1810
|
+
readonly skills: {
|
|
1811
|
+
readonly type: "object";
|
|
1812
|
+
readonly label: "Skills Settings";
|
|
1813
|
+
readonly category: "Admin";
|
|
1814
|
+
readonly requiresRestart: false;
|
|
1815
|
+
readonly default: {};
|
|
1816
|
+
readonly description: "Agent Skills-specific admin settings.";
|
|
1817
|
+
readonly showInDialog: false;
|
|
1818
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1819
|
+
readonly properties: {
|
|
1820
|
+
readonly enabled: {
|
|
1821
|
+
readonly type: "boolean";
|
|
1822
|
+
readonly label: "Skills Enabled";
|
|
1823
|
+
readonly category: "Admin";
|
|
1824
|
+
readonly requiresRestart: false;
|
|
1825
|
+
readonly default: true;
|
|
1826
|
+
readonly description: "If false, disallows agent skills from being used.";
|
|
1827
|
+
readonly showInDialog: false;
|
|
1828
|
+
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
1829
|
+
};
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
};
|
|
1406
1833
|
};
|
|
1407
1834
|
};
|
|
1408
1835
|
export type SettingsSchemaType = typeof SETTINGS_SCHEMA;
|
|
@@ -1415,9 +1842,6 @@ type InferSettings<T extends SettingsSchema> = {
|
|
|
1415
1842
|
} ? InferSettings<T[K]['properties']> : T[K]['type'] extends 'enum' ? T[K]['options'] extends readonly SettingEnumOption[] ? T[K]['options'][number]['value'] : T[K]['default'] : T[K]['default'] extends boolean ? boolean : T[K]['default'];
|
|
1416
1843
|
};
|
|
1417
1844
|
export type Settings = InferSettings<SettingsSchemaType>;
|
|
1418
|
-
export
|
|
1419
|
-
|
|
1420
|
-
hideSandboxStatus?: boolean;
|
|
1421
|
-
hideModelInfo?: boolean;
|
|
1422
|
-
}
|
|
1845
|
+
export declare function getEnableHooksUI(settings: Settings): boolean;
|
|
1846
|
+
export declare function getEnableHooks(settings: Settings): boolean;
|
|
1423
1847
|
export {};
|