@quantum-ai/gemini-cli 0.45.8 → 0.45.9
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/acp/acpCommandHandler.js +105 -0
- package/dist/acp/acpErrors.js +37 -0
- package/dist/acp/acpFileSystemService.js +80 -0
- package/dist/acp/acpRpcDispatcher.js +174 -0
- package/dist/acp/acpSession.js +1167 -0
- package/dist/acp/acpSessionManager.js +200 -0
- package/dist/acp/acpStdioTransport.js +22 -0
- package/dist/acp/acpUtils.js +287 -0
- package/dist/acp/commands/about.js +52 -0
- package/dist/acp/commands/commandRegistry.js +25 -0
- package/dist/acp/commands/extensions.js +330 -0
- package/dist/acp/commands/help.js +34 -0
- package/dist/acp/commands/init.js +46 -0
- package/dist/acp/commands/memory.js +95 -0
- package/dist/acp/commands/restore.js +140 -0
- package/dist/acp/commands/types.js +6 -0
- package/dist/commands/extensions/configure.js +63 -0
- package/dist/commands/extensions/disable.js +68 -0
- package/dist/commands/extensions/enable.js +84 -0
- package/dist/commands/extensions/install.js +171 -0
- package/dist/commands/extensions/link.js +65 -0
- package/dist/commands/extensions/list.js +62 -0
- package/dist/commands/extensions/new.js +87 -0
- package/dist/commands/extensions/uninstall.js +88 -0
- package/dist/commands/extensions/update.js +113 -0
- package/dist/commands/extensions/utils.js +122 -0
- package/dist/commands/extensions/validate.js +84 -0
- package/dist/commands/extensions.js +43 -0
- package/dist/commands/gemma/constants.js +34 -0
- package/dist/commands/gemma/logs.js +153 -0
- package/dist/commands/gemma/platform.js +219 -0
- package/dist/commands/gemma/setup.js +391 -0
- package/dist/commands/gemma/start.js +86 -0
- package/dist/commands/gemma/status.js +109 -0
- package/dist/commands/gemma/stop.js +109 -0
- package/dist/commands/gemma.js +29 -0
- package/dist/commands/hooks/migrate.js +214 -0
- package/dist/commands/hooks.js +24 -0
- package/dist/commands/mcp/add.js +194 -0
- package/dist/commands/mcp/enableDisable.js +105 -0
- package/dist/commands/mcp/list.js +206 -0
- package/dist/commands/mcp/remove.js +48 -0
- package/dist/commands/mcp.js +31 -0
- package/dist/commands/skills/disable.js +47 -0
- package/dist/commands/skills/enable.js +35 -0
- package/dist/commands/skills/install.js +78 -0
- package/dist/commands/skills/link.js +66 -0
- package/dist/commands/skills/list.js +59 -0
- package/dist/commands/skills/uninstall.js +56 -0
- package/dist/commands/skills.js +35 -0
- package/dist/commands/utils.js +10 -0
- package/dist/config/auth.js +43 -0
- package/dist/config/config.js +936 -0
- package/dist/config/extension-manager-themes.spec.js +202 -0
- package/dist/config/extension-manager.js +887 -0
- package/dist/config/extension.js +20 -0
- package/dist/config/extensionRegistryClient.js +93 -0
- package/dist/config/extensions/consent.js +195 -0
- package/dist/config/extensions/extensionEnablement.js +192 -0
- package/dist/config/extensions/extensionSettings.js +247 -0
- package/dist/config/extensions/github.js +425 -0
- package/dist/config/extensions/github_fetch.js +47 -0
- package/dist/config/extensions/storage.js +31 -0
- package/dist/config/extensions/update.js +143 -0
- package/dist/config/extensions/variableSchema.js +21 -0
- package/dist/config/extensions/variables.js +61 -0
- package/dist/config/footerItems.js +133 -0
- package/dist/config/mcp/index.js +6 -0
- package/dist/config/mcp/mcpServerEnablement.js +278 -0
- package/dist/config/policy.js +96 -0
- package/dist/config/sandboxConfig.js +116 -0
- package/dist/config/settingPaths.js +10 -0
- package/dist/config/settings-validation.js +272 -0
- package/dist/config/settings.js +942 -0
- package/dist/config/settingsSchema.js +3288 -0
- package/dist/config/trustedFolders.js +25 -0
- package/dist/core/auth.js +53 -0
- package/dist/core/initializer.js +41 -0
- package/dist/core/theme.js +18 -0
- package/dist/deferred.js +56 -0
- package/dist/gemini.js +699 -0
- package/dist/generated/git-commit.js +9 -0
- package/dist/index.mjs +8 -0
- package/dist/interactiveCli.js +187 -0
- package/dist/nonInteractiveCli.js +458 -0
- package/dist/nonInteractiveCliAgentSession.js +527 -0
- package/dist/nonInteractiveCliCommands.js +82 -0
- package/dist/patches/http-proxy-agent.js +7 -0
- package/dist/patches/https-proxy-agent.js +7 -0
- package/dist/patches/is-in-ci.js +14 -0
- package/dist/services/BuiltinCommandLoader.js +207 -0
- package/dist/services/CommandService.js +99 -0
- package/dist/services/FileCommandLoader.js +298 -0
- package/dist/services/McpPromptLoader.js +254 -0
- package/dist/services/SkillCommandLoader.js +52 -0
- package/dist/services/SlashCommandConflictHandler.js +127 -0
- package/dist/services/SlashCommandResolver.js +155 -0
- package/dist/services/liteRtServerManager.js +42 -0
- package/dist/services/prompt-processors/argumentProcessor.js +20 -0
- package/dist/services/prompt-processors/atFileProcessor.js +62 -0
- package/dist/services/prompt-processors/injectionParser.js +59 -0
- package/dist/services/prompt-processors/shellProcessor.js +129 -0
- package/dist/services/prompt-processors/types.js +19 -0
- package/dist/test-utils/AppRig.js +582 -0
- package/dist/test-utils/MockShellExecutionService.js +87 -0
- package/dist/test-utils/async.js +34 -0
- package/dist/test-utils/createExtension.js +30 -0
- package/dist/test-utils/customMatchers.js +85 -0
- package/dist/test-utils/mockCommandContext.js +102 -0
- package/dist/test-utils/mockConfig.js +202 -0
- package/dist/test-utils/mockDebugLogger.js +67 -0
- package/dist/test-utils/mockSpinner.js +20 -0
- package/dist/test-utils/persistentStateFake.js +38 -0
- package/dist/test-utils/render.js +606 -0
- package/dist/test-utils/settings.js +33 -0
- package/dist/test-utils/svg.js +181 -0
- package/dist/ui/App.js +29 -0
- package/dist/ui/AppContainer.js +2100 -0
- package/dist/ui/IdeIntegrationNudge.js +52 -0
- package/dist/ui/auth/ApiAuthDialog.js +62 -0
- package/dist/ui/auth/AuthDialog.js +141 -0
- package/dist/ui/auth/AuthInProgress.js +23 -0
- package/dist/ui/auth/BannedAccountDialog.js +66 -0
- package/dist/ui/auth/LoginRestartDialog.js +33 -0
- package/dist/ui/auth/useAuth.js +132 -0
- package/dist/ui/colors.js +62 -0
- package/dist/ui/commands/aboutCommand.js +58 -0
- package/dist/ui/commands/agentsCommand.js +327 -0
- package/dist/ui/commands/authCommand.js +45 -0
- package/dist/ui/commands/bugCommand.js +146 -0
- package/dist/ui/commands/bugMemoryCommand.js +61 -0
- package/dist/ui/commands/chatCommand.js +361 -0
- package/dist/ui/commands/clearCommand.js +67 -0
- package/dist/ui/commands/commandsCommand.js +103 -0
- package/dist/ui/commands/compressCommand.js +66 -0
- package/dist/ui/commands/copyCommand.js +61 -0
- package/dist/ui/commands/corgiCommand.js +16 -0
- package/dist/ui/commands/directoryCommand.js +222 -0
- package/dist/ui/commands/docsCommand.js +31 -0
- package/dist/ui/commands/editorCommand.js +16 -0
- package/dist/ui/commands/exportSessionCommand.js +73 -0
- package/dist/ui/commands/extensionsCommand.js +738 -0
- package/dist/ui/commands/footerCommand.js +19 -0
- package/dist/ui/commands/gemmaStatusCommand.js +33 -0
- package/dist/ui/commands/helpCommand.js +40 -0
- package/dist/ui/commands/hooksCommand.js +336 -0
- package/dist/ui/commands/ideCommand.js +232 -0
- package/dist/ui/commands/initCommand.js +37 -0
- package/dist/ui/commands/mcpCommand.js +446 -0
- package/dist/ui/commands/memoryCommand.js +124 -0
- package/dist/ui/commands/modelCommand.js +58 -0
- package/dist/ui/commands/oncallCommand.js +90 -0
- package/dist/ui/commands/permissionsCommand.js +74 -0
- package/dist/ui/commands/planCommand.js +82 -0
- package/dist/ui/commands/policiesCommand.js +82 -0
- package/dist/ui/commands/privacyCommand.js +16 -0
- package/dist/ui/commands/profileCommand.js +23 -0
- package/dist/ui/commands/quitCommand.js +36 -0
- package/dist/ui/commands/restoreCommand.js +131 -0
- package/dist/ui/commands/resumeCommand.js +18 -0
- package/dist/ui/commands/rewindCommand.js +136 -0
- package/dist/ui/commands/settingsCommand.js +16 -0
- package/dist/ui/commands/setupGithubCommand.js +195 -0
- package/dist/ui/commands/shortcutsCommand.js +16 -0
- package/dist/ui/commands/skillsCommand.js +296 -0
- package/dist/ui/commands/statsCommand.js +117 -0
- package/dist/ui/commands/tasksCommand.js +16 -0
- package/dist/ui/commands/terminalSetupCommand.js +41 -0
- package/dist/ui/commands/themeCommand.js +16 -0
- package/dist/ui/commands/toolsCommand.js +58 -0
- package/dist/ui/commands/types.js +15 -0
- package/dist/ui/commands/upgradeCommand.js +57 -0
- package/dist/ui/commands/vimCommand.js +24 -0
- package/dist/ui/commands/voiceCommand.js +28 -0
- package/dist/ui/components/AboutBox.js +16 -0
- package/dist/ui/components/AdminSettingsChangedDialog.js +26 -0
- package/dist/ui/components/AgentConfigDialog.js +297 -0
- package/dist/ui/components/AlternateBufferQuittingDisplay.js +29 -0
- package/dist/ui/components/AnsiOutput.js +23 -0
- package/dist/ui/components/AppHeader.js +73 -0
- package/dist/ui/components/ApprovalModeIndicator.js +40 -0
- package/dist/ui/components/AsciiArt.js +53 -0
- package/dist/ui/components/AskUserDialog.js +738 -0
- package/dist/ui/components/BackgroundTaskDisplay.js +251 -0
- package/dist/ui/components/Banner.js +28 -0
- package/dist/ui/components/Checklist.js +31 -0
- package/dist/ui/components/ChecklistItem.js +39 -0
- package/dist/ui/components/CliSpinner.js +27 -0
- package/dist/ui/components/ColorsDisplay.js +119 -0
- package/dist/ui/components/Composer.js +87 -0
- package/dist/ui/components/ConfigExtensionDialog.js +155 -0
- package/dist/ui/components/ConfigInitDisplay.js +54 -0
- package/dist/ui/components/ConsentPrompt.js +19 -0
- package/dist/ui/components/ConsoleSummaryDisplay.js +11 -0
- package/dist/ui/components/ContextSummaryDisplay.js +70 -0
- package/dist/ui/components/ContextUsageDisplay.js +28 -0
- package/dist/ui/components/CopyModeWarning.js +9 -0
- package/dist/ui/components/DebugProfiler.js +189 -0
- package/dist/ui/components/DetailedMessagesDisplay.js +59 -0
- package/dist/ui/components/DialogManager.js +162 -0
- package/dist/ui/components/EditorSettingsDialog.js +88 -0
- package/dist/ui/components/EmptyWalletDialog.js +33 -0
- package/dist/ui/components/ExitPlanModeDialog.js +179 -0
- package/dist/ui/components/ExitWarning.js +9 -0
- package/dist/ui/components/FolderTrustDialog.js +118 -0
- package/dist/ui/components/Footer.js +270 -0
- package/dist/ui/components/FooterConfigDialog.js +213 -0
- package/dist/ui/components/GeminiRespondingSpinner.js +22 -0
- package/dist/ui/components/GeminiSpinner.js +35 -0
- package/dist/ui/components/Header.js +29 -0
- package/dist/ui/components/Help.js +17 -0
- package/dist/ui/components/HistoryItemDisplay.js +52 -0
- package/dist/ui/components/HookStatusDisplay.js +26 -0
- package/dist/ui/components/HooksDialog.js +83 -0
- package/dist/ui/components/IdeTrustChangeDialog.js +35 -0
- package/dist/ui/components/InboxDialog.js +756 -0
- package/dist/ui/components/InputPrompt.js +1324 -0
- package/dist/ui/components/ListeningIndicator.js +30 -0
- package/dist/ui/components/LoadingIndicator.js +48 -0
- package/dist/ui/components/LogoutConfirmationDialog.js +39 -0
- package/dist/ui/components/LoopDetectionConfirmation.js +39 -0
- package/dist/ui/components/MainContent.js +176 -0
- package/dist/ui/components/MemoryUsageDisplay.js +25 -0
- package/dist/ui/components/ModelDialog.js +268 -0
- package/dist/ui/components/ModelQuotaDisplay.js +104 -0
- package/dist/ui/components/ModelStatsDisplay.js +157 -0
- package/dist/ui/components/MultiFolderTrustDialog.js +95 -0
- package/dist/ui/components/NewAgentsNotification.js +50 -0
- package/dist/ui/components/Notifications.js +107 -0
- package/dist/ui/components/OverageMenuDialog.js +32 -0
- package/dist/ui/components/PermissionsModifyTrustDialog.js +61 -0
- package/dist/ui/components/PolicyUpdateDialog.js +61 -0
- package/dist/ui/components/ProQuotaDialog.js +84 -0
- package/dist/ui/components/ProgressBar.js +17 -0
- package/dist/ui/components/QueuedMessageDisplay.js +20 -0
- package/dist/ui/components/QuittingDisplay.js +20 -0
- package/dist/ui/components/QuotaDisplay.js +36 -0
- package/dist/ui/components/QuotaStatsInfo.js +23 -0
- package/dist/ui/components/RawMarkdownIndicator.js +10 -0
- package/dist/ui/components/RewindConfirmation.js +73 -0
- package/dist/ui/components/RewindViewer.js +154 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserEmpty.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserError.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserLoading.js +8 -0
- package/dist/ui/components/SessionBrowser/SessionBrowserNav.js +17 -0
- package/dist/ui/components/SessionBrowser/SessionListHeader.js +8 -0
- package/dist/ui/components/SessionBrowser/utils.js +99 -0
- package/dist/ui/components/SessionBrowser.js +370 -0
- package/dist/ui/components/SessionSummaryDisplay.js +24 -0
- package/dist/ui/components/SettingsDialog.js +283 -0
- package/dist/ui/components/ShellInputPrompt.js +64 -0
- package/dist/ui/components/ShellModeIndicator.js +5 -0
- package/dist/ui/components/ShortcutsHelp.js +58 -0
- package/dist/ui/components/ShowMoreLines.js +26 -0
- package/dist/ui/components/StatsDisplay.js +93 -0
- package/dist/ui/components/StatusDisplay.js +20 -0
- package/dist/ui/components/StatusRow.js +181 -0
- package/dist/ui/components/StickyHeader.js +5 -0
- package/dist/ui/components/SuggestionsDisplay.js +50 -0
- package/dist/ui/components/Table.js +7 -0
- package/dist/ui/components/ThemeDialog.constants.js +26 -0
- package/dist/ui/components/ThemeDialog.js +165 -0
- package/dist/ui/components/ThemedGradient.js +16 -0
- package/dist/ui/components/Tips.js +8 -0
- package/dist/ui/components/ToastDisplay.js +50 -0
- package/dist/ui/components/ToolConfirmationQueue.js +63 -0
- package/dist/ui/components/ToolStatsDisplay.js +41 -0
- package/dist/ui/components/UpdateNotification.js +10 -0
- package/dist/ui/components/UserIdentity.js +26 -0
- package/dist/ui/components/ValidationDialog.js +91 -0
- package/dist/ui/components/VoiceModelDialog.js +123 -0
- package/dist/ui/components/messages/CompressionMessage.js +48 -0
- package/dist/ui/components/messages/DenseToolMessage.js +257 -0
- package/dist/ui/components/messages/DiffRenderer.js +270 -0
- package/dist/ui/components/messages/ErrorMessage.js +9 -0
- package/dist/ui/components/messages/ExportSessionMessage.js +15 -0
- package/dist/ui/components/messages/GeminiMessage.js +15 -0
- package/dist/ui/components/messages/GeminiMessageContent.js +19 -0
- package/dist/ui/components/messages/HintMessage.js +15 -0
- package/dist/ui/components/messages/InfoMessage.js +11 -0
- package/dist/ui/components/messages/ModelMessage.js +6 -0
- package/dist/ui/components/messages/ShellToolMessage.js +84 -0
- package/dist/ui/components/messages/SubagentGroupDisplay.js +139 -0
- package/dist/ui/components/messages/SubagentHistoryMessage.js +4 -0
- package/dist/ui/components/messages/SubagentProgressDisplay.js +80 -0
- package/dist/ui/components/messages/ThinkingMessage.js +38 -0
- package/dist/ui/components/messages/Todo.js +40 -0
- package/dist/ui/components/messages/ToolConfirmationMessage.js +577 -0
- package/dist/ui/components/messages/ToolGroupDisplay.js +78 -0
- package/dist/ui/components/messages/ToolGroupMessage.js +268 -0
- package/dist/ui/components/messages/ToolMessage.js +25 -0
- package/dist/ui/components/messages/ToolResultDisplay.js +146 -0
- package/dist/ui/components/messages/ToolShared.js +125 -0
- package/dist/ui/components/messages/TopicMessage.js +56 -0
- package/dist/ui/components/messages/UserMessage.js +34 -0
- package/dist/ui/components/messages/UserShellMessage.js +14 -0
- package/dist/ui/components/messages/WarningMessage.js +10 -0
- package/dist/ui/components/shared/BaseSelectionList.js +97 -0
- package/dist/ui/components/shared/BaseSettingsDialog.js +281 -0
- package/dist/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
- package/dist/ui/components/shared/DialogFooter.js +17 -0
- package/dist/ui/components/shared/EnumSelector.js +39 -0
- package/dist/ui/components/shared/ExpandableText.js +87 -0
- package/dist/ui/components/shared/HalfLinePaddedBox.js +37 -0
- package/dist/ui/components/shared/HorizontalLine.js +5 -0
- package/dist/ui/components/shared/MaxSizedBox.js +81 -0
- package/dist/ui/components/shared/RadioButtonSelect.js +22 -0
- package/dist/ui/components/shared/ScopeSelector.js +14 -0
- package/dist/ui/components/shared/Scrollable.js +167 -0
- package/dist/ui/components/shared/ScrollableList.js +167 -0
- package/dist/ui/components/shared/SearchableList.js +86 -0
- package/dist/ui/components/shared/SectionHeader.js +5 -0
- package/dist/ui/components/shared/SlicingMaxSizedBox.js +74 -0
- package/dist/ui/components/shared/TabHeader.js +42 -0
- package/dist/ui/components/shared/TextInput.js +51 -0
- package/dist/ui/components/shared/VirtualizedList.js +473 -0
- package/dist/ui/components/shared/text-buffer.js +2770 -0
- package/dist/ui/components/shared/vim-buffer-actions.js +1306 -0
- package/dist/ui/components/triage/TriageDuplicates.js +624 -0
- package/dist/ui/components/triage/TriageIssues.js +380 -0
- package/dist/ui/components/views/AgentsStatus.js +23 -0
- package/dist/ui/components/views/ChatList.js +17 -0
- package/dist/ui/components/views/ExtensionDetails.js +85 -0
- package/dist/ui/components/views/ExtensionRegistryView.js +97 -0
- package/dist/ui/components/views/ExtensionsList.js +46 -0
- package/dist/ui/components/views/GemmaStatus.js +11 -0
- package/dist/ui/components/views/McpStatus.js +109 -0
- package/dist/ui/components/views/SkillsList.js +17 -0
- package/dist/ui/components/views/ToolsList.js +6 -0
- package/dist/ui/constants/tips.js +163 -0
- package/dist/ui/constants/wittyPhrases.js +137 -0
- package/dist/ui/constants.js +60 -0
- package/dist/ui/contexts/AppContext.js +14 -0
- package/dist/ui/contexts/AskUserActionsContext.js +24 -0
- package/dist/ui/contexts/ConfigContext.js +14 -0
- package/dist/ui/contexts/InputContext.js +14 -0
- package/dist/ui/contexts/KeypressContext.js +780 -0
- package/dist/ui/contexts/MouseContext.js +130 -0
- package/dist/ui/contexts/OverflowContext.js +66 -0
- package/dist/ui/contexts/QuotaContext.js +14 -0
- package/dist/ui/contexts/ScrollProvider.js +312 -0
- package/dist/ui/contexts/SessionContext.js +167 -0
- package/dist/ui/contexts/SettingsContext.js +47 -0
- package/dist/ui/contexts/ShellFocusContext.js +8 -0
- package/dist/ui/contexts/StreamingContext.js +14 -0
- package/dist/ui/contexts/TerminalContext.js +70 -0
- package/dist/ui/contexts/ToolActionsContext.js +96 -0
- package/dist/ui/contexts/UIActionsContext.js +14 -0
- package/dist/ui/contexts/UIStateContext.js +14 -0
- package/dist/ui/contexts/VimModeContext.js +38 -0
- package/dist/ui/debug.js +10 -0
- package/dist/ui/editors/editorSettingsManager.js +37 -0
- package/dist/ui/hooks/atCommandProcessor.js +557 -0
- package/dist/ui/hooks/creditsFlowHandler.js +157 -0
- package/dist/ui/hooks/shell-completions/gitProvider.js +72 -0
- package/dist/ui/hooks/shell-completions/index.js +15 -0
- package/dist/ui/hooks/shell-completions/npmProvider.js +66 -0
- package/dist/ui/hooks/shell-completions/types.js +6 -0
- package/dist/ui/hooks/shellReducer.js +124 -0
- package/dist/ui/hooks/slashCommandProcessor.js +556 -0
- package/dist/ui/hooks/toolMapping.js +103 -0
- package/dist/ui/hooks/useAgentStream.js +407 -0
- package/dist/ui/hooks/useAlternateBuffer.js +17 -0
- package/dist/ui/hooks/useAnimatedScrollbar.js +100 -0
- package/dist/ui/hooks/useApprovalModeIndicator.js +83 -0
- package/dist/ui/hooks/useAtCompletion.js +347 -0
- package/dist/ui/hooks/useBackgroundTaskManager.js +56 -0
- package/dist/ui/hooks/useBanner.js +55 -0
- package/dist/ui/hooks/useBatchedScroll.js +26 -0
- package/dist/ui/hooks/useCommandCompletion.js +343 -0
- package/dist/ui/hooks/useCompletion.js +83 -0
- package/dist/ui/hooks/useComposerStatus.js +79 -0
- package/dist/ui/hooks/useConfirmingTool.js +18 -0
- package/dist/ui/hooks/useConsoleMessages.js +139 -0
- package/dist/ui/hooks/useEditorSettings.js +45 -0
- package/dist/ui/hooks/useExecutionLifecycle.js +529 -0
- package/dist/ui/hooks/useExtensionRegistry.js +69 -0
- package/dist/ui/hooks/useExtensionUpdates.js +172 -0
- package/dist/ui/hooks/useFlickerDetector.js +37 -0
- package/dist/ui/hooks/useFocus.js +57 -0
- package/dist/ui/hooks/useFolderTrust.js +104 -0
- package/dist/ui/hooks/useGeminiStream.js +1422 -0
- package/dist/ui/hooks/useGitBranchName.js +77 -0
- package/dist/ui/hooks/useHistoryManager.js +113 -0
- package/dist/ui/hooks/useHookDisplayState.js +82 -0
- package/dist/ui/hooks/useIdeTrustListener.js +66 -0
- package/dist/ui/hooks/useInactivityTimer.js +29 -0
- package/dist/ui/hooks/useIncludeDirsTrust.js +109 -0
- package/dist/ui/hooks/useInlineEditBuffer.js +112 -0
- package/dist/ui/hooks/useInputHistory.js +90 -0
- package/dist/ui/hooks/useInputHistoryStore.js +81 -0
- package/dist/ui/hooks/useKeyMatchers.js +12 -0
- package/dist/ui/hooks/useKeypress.js +27 -0
- package/dist/ui/hooks/useKittyKeyboardProtocol.js +18 -0
- package/dist/ui/hooks/useLoadingIndicator.js +54 -0
- package/dist/ui/hooks/useLogger.js +26 -0
- package/dist/ui/hooks/useMcpStatus.js +33 -0
- package/dist/ui/hooks/useMemoryMonitor.js +27 -0
- package/dist/ui/hooks/useMessageQueue.js +69 -0
- package/dist/ui/hooks/useModelCommand.js +20 -0
- package/dist/ui/hooks/useMouse.js +26 -0
- package/dist/ui/hooks/useMouseClick.js +35 -0
- package/dist/ui/hooks/usePermissionsModifyTrust.js +113 -0
- package/dist/ui/hooks/usePhraseCycler.js +141 -0
- package/dist/ui/hooks/usePrivacySettings.js +109 -0
- package/dist/ui/hooks/usePromptCompletion.js +168 -0
- package/dist/ui/hooks/useQuotaAndFallback.js +220 -0
- package/dist/ui/hooks/useRegistrySearch.js +34 -0
- package/dist/ui/hooks/useRepeatedKeyPress.js +49 -0
- package/dist/ui/hooks/useReverseSearchCompletion.js +101 -0
- package/dist/ui/hooks/useRewind.js +30 -0
- package/dist/ui/hooks/useRunEventNotifications.js +94 -0
- package/dist/ui/hooks/useSearchBuffer.js +23 -0
- package/dist/ui/hooks/useSelectionList.js +317 -0
- package/dist/ui/hooks/useSessionBrowser.js +74 -0
- package/dist/ui/hooks/useSessionResume.js +74 -0
- package/dist/ui/hooks/useSettingsCommand.js +20 -0
- package/dist/ui/hooks/useSettingsNavigation.js +71 -0
- package/dist/ui/hooks/useShellCompletion.js +501 -0
- package/dist/ui/hooks/useShellHistory.js +113 -0
- package/dist/ui/hooks/useShellInactivityStatus.js +44 -0
- package/dist/ui/hooks/useSlashCompletion.js +434 -0
- package/dist/ui/hooks/useSnowfall.js +125 -0
- package/dist/ui/hooks/useStateAndRef.js +26 -0
- package/dist/ui/hooks/useSuspend.js +101 -0
- package/dist/ui/hooks/useTabbedNavigation.js +159 -0
- package/dist/ui/hooks/useTerminalSize.js +25 -0
- package/dist/ui/hooks/useTerminalTheme.js +78 -0
- package/dist/ui/hooks/useThemeCommand.js +79 -0
- package/dist/ui/hooks/useTimedMessage.js +31 -0
- package/dist/ui/hooks/useTimer.js +57 -0
- package/dist/ui/hooks/useTips.js +17 -0
- package/dist/ui/hooks/useToolScheduler.js +212 -0
- package/dist/ui/hooks/useTurnActivityMonitor.js +47 -0
- package/dist/ui/hooks/useVisibilityToggle.js +59 -0
- package/dist/ui/hooks/useVoiceMode.js +338 -0
- package/dist/ui/hooks/useVoiceModelCommand.js +20 -0
- package/dist/ui/hooks/vim.js +1311 -0
- package/dist/ui/key/keyBindings.js +703 -0
- package/dist/ui/key/keyMatchers.js +42 -0
- package/dist/ui/key/keyToAnsi.js +44 -0
- package/dist/ui/key/keybindingUtils.js +85 -0
- package/dist/ui/layouts/DefaultAppLayout.js +29 -0
- package/dist/ui/layouts/ScreenReaderAppLayout.js +17 -0
- package/dist/ui/noninteractive/nonInteractiveUi.js +46 -0
- package/dist/ui/privacy/CloudFreePrivacyNotice.js +44 -0
- package/dist/ui/privacy/CloudPaidPrivacyNotice.js +20 -0
- package/dist/ui/privacy/GeminiPrivacyNotice.js +20 -0
- package/dist/ui/privacy/PrivacyNotice.js +25 -0
- package/dist/ui/semantic-colors.js +23 -0
- package/dist/ui/state/extensions.js +96 -0
- package/dist/ui/textConstants.js +14 -0
- package/dist/ui/themes/builtin/dark/ansi-dark.js +153 -0
- package/dist/ui/themes/builtin/dark/atom-one-dark.js +139 -0
- package/dist/ui/themes/builtin/dark/ayu-dark.js +105 -0
- package/dist/ui/themes/builtin/dark/default-dark.js +142 -0
- package/dist/ui/themes/builtin/dark/dracula-dark.js +116 -0
- package/dist/ui/themes/builtin/dark/github-dark-colorblind.js +139 -0
- package/dist/ui/themes/builtin/dark/github-dark.js +139 -0
- package/dist/ui/themes/builtin/dark/holiday-dark.js +162 -0
- package/dist/ui/themes/builtin/dark/shades-of-purple-dark.js +305 -0
- package/dist/ui/themes/builtin/dark/solarized-dark.js +196 -0
- package/dist/ui/themes/builtin/dark/tokyonight-dark.js +146 -0
- package/dist/ui/themes/builtin/light/ansi-light.js +142 -0
- package/dist/ui/themes/builtin/light/ayu-light.js +131 -0
- package/dist/ui/themes/builtin/light/default-light.js +99 -0
- package/dist/ui/themes/builtin/light/github-light-colorblind.js +139 -0
- package/dist/ui/themes/builtin/light/github-light.js +142 -0
- package/dist/ui/themes/builtin/light/googlecode-light.js +138 -0
- package/dist/ui/themes/builtin/light/solarized-light.js +196 -0
- package/dist/ui/themes/builtin/light/xcode-light.js +147 -0
- package/dist/ui/themes/builtin/no-color.js +124 -0
- package/dist/ui/themes/color-utils.js +105 -0
- package/dist/ui/themes/semantic-tokens.js +76 -0
- package/dist/ui/themes/theme-manager.js +513 -0
- package/dist/ui/themes/theme.js +563 -0
- package/dist/ui/types.js +100 -0
- package/dist/ui/utils/CodeColorizer.js +130 -0
- package/dist/ui/utils/ConsolePatcher.js +56 -0
- package/dist/ui/utils/InlineMarkdownRenderer.js +17 -0
- package/dist/ui/utils/MarkdownDisplay.js +243 -0
- package/dist/ui/utils/TableRenderer.js +161 -0
- package/dist/ui/utils/antigravityUtils.js +40 -0
- package/dist/ui/utils/borderStyles.js +82 -0
- package/dist/ui/utils/clipboardUtils.js +484 -0
- package/dist/ui/utils/commandUtils.js +259 -0
- package/dist/ui/utils/computeStats.js +61 -0
- package/dist/ui/utils/confirmingTool.js +25 -0
- package/dist/ui/utils/contextUsage.js +19 -0
- package/dist/ui/utils/directoryUtils.js +124 -0
- package/dist/ui/utils/displayUtils.js +42 -0
- package/dist/ui/utils/editorUtils.js +150 -0
- package/dist/ui/utils/fileUtils.js +16 -0
- package/dist/ui/utils/formatters.js +126 -0
- package/dist/ui/utils/highlight.js +116 -0
- package/dist/ui/utils/historyExportUtils.js +58 -0
- package/dist/ui/utils/historyUtils.js +69 -0
- package/dist/ui/utils/inlineThinkingMode.js +8 -0
- package/dist/ui/utils/input.js +50 -0
- package/dist/ui/utils/isNarrowWidth.js +8 -0
- package/dist/ui/utils/latexToUnicode.js +537 -0
- package/dist/ui/utils/markdownParsingUtils.js +184 -0
- package/dist/ui/utils/markdownUtilities.js +109 -0
- package/dist/ui/utils/memorySnapshot.js +27 -0
- package/dist/ui/utils/mouse.js +182 -0
- package/dist/ui/utils/pendingAttentionNotification.js +97 -0
- package/dist/ui/utils/rewindFileOps.js +190 -0
- package/dist/ui/utils/shortcutsHelp.js +11 -0
- package/dist/ui/utils/terminalCapabilityManager.js +259 -0
- package/dist/ui/utils/terminalSetup.js +418 -0
- package/dist/ui/utils/terminalUtils.js +37 -0
- package/dist/ui/utils/textOutput.js +52 -0
- package/dist/ui/utils/textUtils.js +235 -0
- package/dist/ui/utils/toolLayoutUtils.js +79 -0
- package/dist/ui/utils/ui-sizing.js +12 -0
- package/dist/ui/utils/updateCheck.js +95 -0
- package/dist/ui/utils/urlSecurityUtils.js +70 -0
- package/dist/utils/activityLogger.js +795 -0
- package/dist/utils/agentSettings.js +44 -0
- package/dist/utils/agentUtils.js +49 -0
- package/dist/utils/autoMemory.js +14 -0
- package/dist/utils/cleanup.js +170 -0
- package/dist/utils/commands.js +66 -0
- package/dist/utils/commentJson.js +136 -0
- package/dist/utils/deepMerge.js +64 -0
- package/dist/utils/devtoolsService.js +185 -0
- package/dist/utils/dialogScopeUtils.js +49 -0
- package/dist/utils/envVarResolver.js +120 -0
- package/dist/utils/errors.js +179 -0
- package/dist/utils/events.js +22 -0
- package/dist/utils/featureToggleUtils.js +94 -0
- package/dist/utils/gitUtils.js +109 -0
- package/dist/utils/handleAutoUpdate.js +178 -0
- package/dist/utils/hookSettings.js +113 -0
- package/dist/utils/hookUtils.js +50 -0
- package/dist/utils/installationInfo.js +186 -0
- package/dist/utils/jsonoutput.js +41 -0
- package/dist/utils/logCleanup.js +57 -0
- package/dist/utils/math.js +13 -0
- package/dist/utils/persistentState.js +65 -0
- package/dist/utils/processUtils.js +98 -0
- package/dist/utils/readStdin.js +86 -0
- package/dist/utils/relaunch.js +60 -0
- package/dist/utils/resize-observer-polyfill.js +6 -0
- package/dist/utils/resolvePath.js +20 -0
- package/dist/utils/sandbox.js +926 -0
- package/dist/utils/sandboxUtils.js +125 -0
- package/dist/utils/sessionCleanup.js +480 -0
- package/dist/utils/sessionUtils.js +464 -0
- package/dist/utils/sessions.js +66 -0
- package/dist/utils/settingsUtils.js +283 -0
- package/dist/utils/skillSettings.js +51 -0
- package/dist/utils/skillUtils.js +231 -0
- package/dist/utils/spawnWrapper.js +7 -0
- package/dist/utils/startupWarnings.js +39 -0
- package/dist/utils/terminalNotifications.js +130 -0
- package/dist/utils/terminalTheme.js +49 -0
- package/dist/utils/tierUtils.js +14 -0
- package/dist/utils/updateEventEmitter.js +11 -0
- package/dist/utils/userStartupWarnings.js +102 -0
- package/dist/utils/windowTitle.js +83 -0
- package/dist/utils/worktreeSetup.js +31 -0
- package/dist/validateNonInterActiveAuth.js +44 -0
- package/package.json +77 -36
- package/LICENSE +0 -202
- package/dist/index.d.ts +0 -7
- package/dist/index.js +0 -203
- package/dist/index.js.map +0 -1
- package/dist/package.json +0 -106
- package/dist/src/acp/acpCommandHandler.d.ts +0 -26
- package/dist/src/acp/acpCommandHandler.js +0 -106
- package/dist/src/acp/acpCommandHandler.js.map +0 -1
- package/dist/src/acp/acpErrors.d.ts +0 -11
- package/dist/src/acp/acpErrors.js +0 -38
- package/dist/src/acp/acpErrors.js.map +0 -1
- package/dist/src/acp/acpFileSystemService.d.ts +0 -23
- package/dist/src/acp/acpFileSystemService.js +0 -81
- package/dist/src/acp/acpFileSystemService.js.map +0 -1
- package/dist/src/acp/acpRpcDispatcher.d.ts +0 -28
- package/dist/src/acp/acpRpcDispatcher.js +0 -175
- package/dist/src/acp/acpRpcDispatcher.js.map +0 -1
- package/dist/src/acp/acpSession.d.ts +0 -36
- package/dist/src/acp/acpSession.js +0 -1168
- package/dist/src/acp/acpSession.js.map +0 -1
- package/dist/src/acp/acpSessionManager.d.ts +0 -30
- package/dist/src/acp/acpSessionManager.js +0 -201
- package/dist/src/acp/acpSessionManager.js.map +0 -1
- package/dist/src/acp/acpStdioTransport.d.ts +0 -9
- package/dist/src/acp/acpStdioTransport.js +0 -23
- package/dist/src/acp/acpStdioTransport.js.map +0 -1
- package/dist/src/acp/acpUtils.d.ts +0 -56
- package/dist/src/acp/acpUtils.js +0 -288
- package/dist/src/acp/acpUtils.js.map +0 -1
- package/dist/src/acp/commands/about.d.ts +0 -11
- package/dist/src/acp/commands/about.js +0 -53
- package/dist/src/acp/commands/about.js.map +0 -1
- package/dist/src/acp/commands/commandRegistry.d.ts +0 -12
- package/dist/src/acp/commands/commandRegistry.js +0 -26
- package/dist/src/acp/commands/commandRegistry.js.map +0 -1
- package/dist/src/acp/commands/extensions.d.ts +0 -57
- package/dist/src/acp/commands/extensions.js +0 -331
- package/dist/src/acp/commands/extensions.js.map +0 -1
- package/dist/src/acp/commands/help.d.ts +0 -14
- package/dist/src/acp/commands/help.js +0 -35
- package/dist/src/acp/commands/help.js.map +0 -1
- package/dist/src/acp/commands/init.d.ts +0 -12
- package/dist/src/acp/commands/init.js +0 -47
- package/dist/src/acp/commands/init.js.map +0 -1
- package/dist/src/acp/commands/memory.d.ts +0 -34
- package/dist/src/acp/commands/memory.js +0 -96
- package/dist/src/acp/commands/memory.js.map +0 -1
- package/dist/src/acp/commands/restore.d.ts +0 -18
- package/dist/src/acp/commands/restore.js +0 -141
- package/dist/src/acp/commands/restore.js.map +0 -1
- package/dist/src/acp/commands/types.d.ts +0 -31
- package/dist/src/acp/commands/types.js +0 -7
- package/dist/src/acp/commands/types.js.map +0 -1
- package/dist/src/commands/extensions/configure.d.ts +0 -13
- package/dist/src/commands/extensions/configure.js +0 -64
- package/dist/src/commands/extensions/configure.js.map +0 -1
- package/dist/src/commands/extensions/disable.d.ts +0 -13
- package/dist/src/commands/extensions/disable.js +0 -70
- package/dist/src/commands/extensions/disable.js.map +0 -1
- package/dist/src/commands/extensions/enable.d.ts +0 -13
- package/dist/src/commands/extensions/enable.js +0 -86
- package/dist/src/commands/extensions/enable.js.map +0 -1
- package/dist/src/commands/extensions/install.d.ts +0 -17
- package/dist/src/commands/extensions/install.js +0 -172
- package/dist/src/commands/extensions/install.js.map +0 -1
- package/dist/src/commands/extensions/link.d.ts +0 -13
- package/dist/src/commands/extensions/link.js +0 -66
- package/dist/src/commands/extensions/link.js.map +0 -1
- package/dist/src/commands/extensions/list.d.ts +0 -10
- package/dist/src/commands/extensions/list.js +0 -63
- package/dist/src/commands/extensions/list.js.map +0 -1
- package/dist/src/commands/extensions/new.d.ts +0 -7
- package/dist/src/commands/extensions/new.js +0 -88
- package/dist/src/commands/extensions/new.js.map +0 -1
- package/dist/src/commands/extensions/uninstall.d.ts +0 -13
- package/dist/src/commands/extensions/uninstall.js +0 -89
- package/dist/src/commands/extensions/uninstall.js.map +0 -1
- package/dist/src/commands/extensions/update.d.ts +0 -13
- package/dist/src/commands/extensions/update.js +0 -114
- package/dist/src/commands/extensions/update.js.map +0 -1
- package/dist/src/commands/extensions/utils.d.ts +0 -26
- package/dist/src/commands/extensions/utils.js +0 -123
- package/dist/src/commands/extensions/utils.js.map +0 -1
- package/dist/src/commands/extensions/validate.d.ts +0 -12
- package/dist/src/commands/extensions/validate.js +0 -85
- package/dist/src/commands/extensions/validate.js.map +0 -1
- package/dist/src/commands/extensions.d.ts +0 -7
- package/dist/src/commands/extensions.js +0 -44
- package/dist/src/commands/extensions.js.map +0 -1
- package/dist/src/commands/gemma/constants.d.ts +0 -17
- package/dist/src/commands/gemma/constants.js +0 -35
- package/dist/src/commands/gemma/constants.js.map +0 -1
- package/dist/src/commands/gemma/logs.d.ts +0 -13
- package/dist/src/commands/gemma/logs.js +0 -154
- package/dist/src/commands/gemma/logs.js.map +0 -1
- package/dist/src/commands/gemma/platform.d.ts +0 -38
- package/dist/src/commands/gemma/platform.js +0 -220
- package/dist/src/commands/gemma/platform.js.map +0 -1
- package/dist/src/commands/gemma/setup.d.ts +0 -9
- package/dist/src/commands/gemma/setup.js +0 -392
- package/dist/src/commands/gemma/setup.js.map +0 -1
- package/dist/src/commands/gemma/start.d.ts +0 -8
- package/dist/src/commands/gemma/start.js +0 -87
- package/dist/src/commands/gemma/start.js.map +0 -1
- package/dist/src/commands/gemma/status.d.ts +0 -19
- package/dist/src/commands/gemma/status.js +0 -110
- package/dist/src/commands/gemma/status.js.map +0 -1
- package/dist/src/commands/gemma/stop.d.ts +0 -9
- package/dist/src/commands/gemma/stop.js +0 -110
- package/dist/src/commands/gemma/stop.js.map +0 -1
- package/dist/src/commands/gemma.d.ts +0 -7
- package/dist/src/commands/gemma.js +0 -30
- package/dist/src/commands/gemma.js.map +0 -1
- package/dist/src/commands/hooks/migrate.d.ts +0 -11
- package/dist/src/commands/hooks/migrate.js +0 -215
- package/dist/src/commands/hooks/migrate.js.map +0 -1
- package/dist/src/commands/hooks.d.ts +0 -7
- package/dist/src/commands/hooks.js +0 -25
- package/dist/src/commands/hooks.js.map +0 -1
- package/dist/src/commands/mcp/add.d.ts +0 -7
- package/dist/src/commands/mcp/add.js +0 -195
- package/dist/src/commands/mcp/add.js.map +0 -1
- package/dist/src/commands/mcp/enableDisable.d.ts +0 -13
- package/dist/src/commands/mcp/enableDisable.js +0 -106
- package/dist/src/commands/mcp/enableDisable.js.map +0 -1
- package/dist/src/commands/mcp/list.d.ts +0 -18
- package/dist/src/commands/mcp/list.js +0 -207
- package/dist/src/commands/mcp/list.js.map +0 -1
- package/dist/src/commands/mcp/remove.d.ts +0 -7
- package/dist/src/commands/mcp/remove.js +0 -49
- package/dist/src/commands/mcp/remove.js.map +0 -1
- package/dist/src/commands/mcp.d.ts +0 -7
- package/dist/src/commands/mcp.js +0 -32
- package/dist/src/commands/mcp.js.map +0 -1
- package/dist/src/commands/skills/disable.d.ts +0 -14
- package/dist/src/commands/skills/disable.js +0 -48
- package/dist/src/commands/skills/disable.js.map +0 -1
- package/dist/src/commands/skills/enable.d.ts +0 -12
- package/dist/src/commands/skills/enable.js +0 -36
- package/dist/src/commands/skills/enable.js.map +0 -1
- package/dist/src/commands/skills/install.d.ts +0 -15
- package/dist/src/commands/skills/install.js +0 -79
- package/dist/src/commands/skills/install.js.map +0 -1
- package/dist/src/commands/skills/link.d.ts +0 -14
- package/dist/src/commands/skills/link.js +0 -67
- package/dist/src/commands/skills/link.js.map +0 -1
- package/dist/src/commands/skills/list.d.ts +0 -10
- package/dist/src/commands/skills/list.js +0 -60
- package/dist/src/commands/skills/list.js.map +0 -1
- package/dist/src/commands/skills/uninstall.d.ts +0 -13
- package/dist/src/commands/skills/uninstall.js +0 -57
- package/dist/src/commands/skills/uninstall.js.map +0 -1
- package/dist/src/commands/skills.d.ts +0 -7
- package/dist/src/commands/skills.js +0 -36
- package/dist/src/commands/skills.js.map +0 -1
- package/dist/src/commands/utils.d.ts +0 -6
- package/dist/src/commands/utils.js +0 -11
- package/dist/src/commands/utils.js.map +0 -1
- package/dist/src/config/auth.d.ts +0 -6
- package/dist/src/config/auth.js +0 -44
- package/dist/src/config/auth.js.map +0 -1
- package/dist/src/config/config.d.ts +0 -69
- package/dist/src/config/config.js +0 -928
- package/dist/src/config/config.js.map +0 -1
- package/dist/src/config/extension-manager-themes.spec.js +0 -203
- package/dist/src/config/extension-manager-themes.spec.js.map +0 -1
- package/dist/src/config/extension-manager.d.ts +0 -87
- package/dist/src/config/extension-manager.js +0 -888
- package/dist/src/config/extension-manager.js.map +0 -1
- package/dist/src/config/extension.d.ts +0 -46
- package/dist/src/config/extension.js +0 -21
- package/dist/src/config/extension.js.map +0 -1
- package/dist/src/config/extensionRegistryClient.d.ts +0 -41
- package/dist/src/config/extensionRegistryClient.js +0 -95
- package/dist/src/config/extensionRegistryClient.js.map +0 -1
- package/dist/src/config/extensions/consent.d.ts +0 -54
- package/dist/src/config/extensions/consent.js +0 -196
- package/dist/src/config/extensions/consent.js.map +0 -1
- package/dist/src/config/extensions/extensionEnablement.d.ts +0 -47
- package/dist/src/config/extensions/extensionEnablement.js +0 -193
- package/dist/src/config/extensions/extensionEnablement.js.map +0 -1
- package/dist/src/config/extensions/extensionSettings.d.ts +0 -23
- package/dist/src/config/extensions/extensionSettings.js +0 -248
- package/dist/src/config/extensions/extensionSettings.js.map +0 -1
- package/dist/src/config/extensions/github.d.ts +0 -50
- package/dist/src/config/extensions/github.js +0 -426
- package/dist/src/config/extensions/github.js.map +0 -1
- package/dist/src/config/extensions/github_fetch.d.ts +0 -7
- package/dist/src/config/extensions/github_fetch.js +0 -48
- package/dist/src/config/extensions/github_fetch.js.map +0 -1
- package/dist/src/config/extensions/storage.d.ts +0 -14
- package/dist/src/config/extensions/storage.js +0 -32
- package/dist/src/config/extensions/storage.js.map +0 -1
- package/dist/src/config/extensions/update.d.ts +0 -20
- package/dist/src/config/extensions/update.js +0 -144
- package/dist/src/config/extensions/update.js.map +0 -1
- package/dist/src/config/extensions/variableSchema.d.ts +0 -32
- package/dist/src/config/extensions/variableSchema.js +0 -22
- package/dist/src/config/extensions/variableSchema.js.map +0 -1
- package/dist/src/config/extensions/variables.d.ts +0 -21
- package/dist/src/config/extensions/variables.js +0 -62
- package/dist/src/config/extensions/variables.js.map +0 -1
- package/dist/src/config/footerItems.d.ts +0 -66
- package/dist/src/config/footerItems.js +0 -134
- package/dist/src/config/footerItems.js.map +0 -1
- package/dist/src/config/mcp/index.d.ts +0 -6
- package/dist/src/config/mcp/index.js +0 -7
- package/dist/src/config/mcp/index.js.map +0 -1
- package/dist/src/config/mcp/mcpServerEnablement.d.ts +0 -150
- package/dist/src/config/mcp/mcpServerEnablement.js +0 -280
- package/dist/src/config/mcp/mcpServerEnablement.js.map +0 -1
- package/dist/src/config/policy.d.ts +0 -41
- package/dist/src/config/policy.js +0 -98
- package/dist/src/config/policy.js.map +0 -1
- package/dist/src/config/sandboxConfig.d.ts +0 -12
- package/dist/src/config/sandboxConfig.js +0 -117
- package/dist/src/config/sandboxConfig.js.map +0 -1
- package/dist/src/config/settingPaths.d.ts +0 -10
- package/dist/src/config/settingPaths.js +0 -11
- package/dist/src/config/settingPaths.js.map +0 -1
- package/dist/src/config/settings-validation.d.ts +0 -23
- package/dist/src/config/settings-validation.js +0 -273
- package/dist/src/config/settings-validation.js.map +0 -1
- package/dist/src/config/settings.d.ts +0 -155
- package/dist/src/config/settings.js +0 -943
- package/dist/src/config/settings.js.map +0 -1
- package/dist/src/config/settingsSchema.d.ts +0 -2891
- package/dist/src/config/settingsSchema.js +0 -3289
- package/dist/src/config/settingsSchema.js.map +0 -1
- package/dist/src/config/trustedFolders.d.ts +0 -19
- package/dist/src/config/trustedFolders.js +0 -26
- package/dist/src/config/trustedFolders.js.map +0 -1
- package/dist/src/core/auth.d.ts +0 -18
- package/dist/src/core/auth.js +0 -54
- package/dist/src/core/auth.js.map +0 -1
- package/dist/src/core/initializer.d.ts +0 -23
- package/dist/src/core/initializer.js +0 -43
- package/dist/src/core/initializer.js.map +0 -1
- package/dist/src/core/theme.d.ts +0 -12
- package/dist/src/core/theme.js +0 -20
- package/dist/src/core/theme.js.map +0 -1
- package/dist/src/deferred.d.ts +0 -19
- package/dist/src/deferred.js +0 -57
- package/dist/src/deferred.js.map +0 -1
- package/dist/src/gemini.d.ts +0 -18
- package/dist/src/gemini.js +0 -695
- package/dist/src/gemini.js.map +0 -1
- package/dist/src/generated/git-commit.d.ts +0 -7
- package/dist/src/generated/git-commit.js +0 -10
- package/dist/src/generated/git-commit.js.map +0 -1
- package/dist/src/index.d.ts +0 -9
- package/dist/src/index.js +0 -13
- package/dist/src/index.js.map +0 -1
- package/dist/src/interactiveCli.d.ts +0 -9
- package/dist/src/interactiveCli.js +0 -189
- package/dist/src/interactiveCli.js.map +0 -1
- package/dist/src/nonInteractiveCli.d.ts +0 -23
- package/dist/src/nonInteractiveCli.js +0 -459
- package/dist/src/nonInteractiveCli.js.map +0 -1
- package/dist/src/nonInteractiveCliAgentSession.d.ts +0 -23
- package/dist/src/nonInteractiveCliAgentSession.js +0 -528
- package/dist/src/nonInteractiveCliAgentSession.js.map +0 -1
- package/dist/src/nonInteractiveCliCommands.d.ts +0 -17
- package/dist/src/nonInteractiveCliCommands.js +0 -83
- package/dist/src/nonInteractiveCliCommands.js.map +0 -1
- package/dist/src/patches/http-proxy-agent.d.ts +0 -6
- package/dist/src/patches/http-proxy-agent.js +0 -8
- package/dist/src/patches/http-proxy-agent.js.map +0 -1
- package/dist/src/patches/https-proxy-agent.d.ts +0 -6
- package/dist/src/patches/https-proxy-agent.js +0 -8
- package/dist/src/patches/https-proxy-agent.js.map +0 -1
- package/dist/src/patches/is-in-ci.d.ts +0 -7
- package/dist/src/patches/is-in-ci.js +0 -15
- package/dist/src/patches/is-in-ci.js.map +0 -1
- package/dist/src/services/BuiltinCommandLoader.d.ts +0 -24
- package/dist/src/services/BuiltinCommandLoader.js +0 -208
- package/dist/src/services/BuiltinCommandLoader.js.map +0 -1
- package/dist/src/services/CommandService.d.ts +0 -62
- package/dist/src/services/CommandService.js +0 -100
- package/dist/src/services/CommandService.js.map +0 -1
- package/dist/src/services/FileCommandLoader.d.ts +0 -73
- package/dist/src/services/FileCommandLoader.js +0 -299
- package/dist/src/services/FileCommandLoader.js.map +0 -1
- package/dist/src/services/McpPromptLoader.d.ts +0 -35
- package/dist/src/services/McpPromptLoader.js +0 -255
- package/dist/src/services/McpPromptLoader.js.map +0 -1
- package/dist/src/services/SkillCommandLoader.d.ts +0 -23
- package/dist/src/services/SkillCommandLoader.js +0 -54
- package/dist/src/services/SkillCommandLoader.js.map +0 -1
- package/dist/src/services/SlashCommandConflictHandler.d.ts +0 -35
- package/dist/src/services/SlashCommandConflictHandler.js +0 -128
- package/dist/src/services/SlashCommandConflictHandler.js.map +0 -1
- package/dist/src/services/SlashCommandResolver.d.ts +0 -53
- package/dist/src/services/SlashCommandResolver.js +0 -156
- package/dist/src/services/SlashCommandResolver.js.map +0 -1
- package/dist/src/services/liteRtServerManager.d.ts +0 -9
- package/dist/src/services/liteRtServerManager.js +0 -43
- package/dist/src/services/liteRtServerManager.js.map +0 -1
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +0 -16
- package/dist/src/services/prompt-processors/argumentProcessor.js +0 -21
- package/dist/src/services/prompt-processors/argumentProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +0 -12
- package/dist/src/services/prompt-processors/atFileProcessor.js +0 -63
- package/dist/src/services/prompt-processors/atFileProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/injectionParser.d.ts +0 -29
- package/dist/src/services/prompt-processors/injectionParser.js +0 -60
- package/dist/src/services/prompt-processors/injectionParser.js.map +0 -1
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +0 -27
- package/dist/src/services/prompt-processors/shellProcessor.js +0 -130
- package/dist/src/services/prompt-processors/shellProcessor.js.map +0 -1
- package/dist/src/services/prompt-processors/types.d.ts +0 -45
- package/dist/src/services/prompt-processors/types.js +0 -20
- package/dist/src/services/prompt-processors/types.js.map +0 -1
- package/dist/src/services/types.d.ts +0 -30
- package/dist/src/services/types.js +0 -7
- package/dist/src/services/types.js.map +0 -1
- package/dist/src/test-utils/AppRig.d.ts +0 -83
- package/dist/src/test-utils/AppRig.js +0 -583
- package/dist/src/test-utils/AppRig.js.map +0 -1
- package/dist/src/test-utils/MockShellExecutionService.d.ts +0 -37
- package/dist/src/test-utils/MockShellExecutionService.js +0 -89
- package/dist/src/test-utils/MockShellExecutionService.js.map +0 -1
- package/dist/src/test-utils/async.d.ts +0 -9
- package/dist/src/test-utils/async.js +0 -35
- package/dist/src/test-utils/async.js.map +0 -1
- package/dist/src/test-utils/createExtension.d.ts +0 -17
- package/dist/src/test-utils/createExtension.js +0 -32
- package/dist/src/test-utils/createExtension.js.map +0 -1
- package/dist/src/test-utils/customMatchers.d.ts +0 -34
- package/dist/src/test-utils/customMatchers.js +0 -86
- package/dist/src/test-utils/customMatchers.js.map +0 -1
- package/dist/src/test-utils/mockCommandContext.d.ts +0 -18
- package/dist/src/test-utils/mockCommandContext.js +0 -103
- package/dist/src/test-utils/mockCommandContext.js.map +0 -1
- package/dist/src/test-utils/mockConfig.d.ts +0 -15
- package/dist/src/test-utils/mockConfig.js +0 -203
- package/dist/src/test-utils/mockConfig.js.map +0 -1
- package/dist/src/test-utils/mockDebugLogger.d.ts +0 -35
- package/dist/src/test-utils/mockDebugLogger.js +0 -68
- package/dist/src/test-utils/mockDebugLogger.js.map +0 -1
- package/dist/src/test-utils/mockSpinner.d.ts +0 -6
- package/dist/src/test-utils/mockSpinner.js +0 -21
- package/dist/src/test-utils/mockSpinner.js.map +0 -1
- package/dist/src/test-utils/persistentStateFake.d.ts +0 -26
- package/dist/src/test-utils/persistentStateFake.js +0 -39
- package/dist/src/test-utils/persistentStateFake.js.map +0 -1
- package/dist/src/test-utils/render.d.ts +0 -163
- package/dist/src/test-utils/render.js +0 -609
- package/dist/src/test-utils/render.js.map +0 -1
- package/dist/src/test-utils/settings.d.ts +0 -31
- package/dist/src/test-utils/settings.js +0 -34
- package/dist/src/test-utils/settings.js.map +0 -1
- package/dist/src/test-utils/svg.d.ts +0 -7
- package/dist/src/test-utils/svg.js +0 -182
- package/dist/src/test-utils/svg.js.map +0 -1
- package/dist/src/ui/App.d.ts +0 -6
- package/dist/src/ui/App.js +0 -30
- package/dist/src/ui/App.js.map +0 -1
- package/dist/src/ui/AppContainer.d.ts +0 -16
- package/dist/src/ui/AppContainer.js +0 -2106
- package/dist/src/ui/AppContainer.js.map +0 -1
- package/dist/src/ui/IdeIntegrationNudge.d.ts +0 -16
- package/dist/src/ui/IdeIntegrationNudge.js +0 -53
- package/dist/src/ui/IdeIntegrationNudge.js.map +0 -1
- package/dist/src/ui/auth/ApiAuthDialog.d.ts +0 -14
- package/dist/src/ui/auth/ApiAuthDialog.js +0 -63
- package/dist/src/ui/auth/ApiAuthDialog.js.map +0 -1
- package/dist/src/ui/auth/AuthDialog.d.ts +0 -21
- package/dist/src/ui/auth/AuthDialog.js +0 -142
- package/dist/src/ui/auth/AuthDialog.js.map +0 -1
- package/dist/src/ui/auth/AuthInProgress.d.ts +0 -11
- package/dist/src/ui/auth/AuthInProgress.js +0 -24
- package/dist/src/ui/auth/AuthInProgress.js.map +0 -1
- package/dist/src/ui/auth/BannedAccountDialog.d.ts +0 -14
- package/dist/src/ui/auth/BannedAccountDialog.js +0 -67
- package/dist/src/ui/auth/BannedAccountDialog.js.map +0 -1
- package/dist/src/ui/auth/LoginRestartDialog.d.ts +0 -13
- package/dist/src/ui/auth/LoginRestartDialog.js +0 -40
- package/dist/src/ui/auth/LoginRestartDialog.js.map +0 -1
- package/dist/src/ui/auth/useAuth.d.ts +0 -21
- package/dist/src/ui/auth/useAuth.js +0 -133
- package/dist/src/ui/auth/useAuth.js.map +0 -1
- package/dist/src/ui/colors.d.ts +0 -7
- package/dist/src/ui/colors.js +0 -63
- package/dist/src/ui/colors.js.map +0 -1
- package/dist/src/ui/commands/aboutCommand.d.ts +0 -7
- package/dist/src/ui/commands/aboutCommand.js +0 -59
- package/dist/src/ui/commands/aboutCommand.js.map +0 -1
- package/dist/src/ui/commands/agentsCommand.d.ts +0 -7
- package/dist/src/ui/commands/agentsCommand.js +0 -328
- package/dist/src/ui/commands/agentsCommand.js.map +0 -1
- package/dist/src/ui/commands/authCommand.d.ts +0 -7
- package/dist/src/ui/commands/authCommand.js +0 -46
- package/dist/src/ui/commands/authCommand.js.map +0 -1
- package/dist/src/ui/commands/bugCommand.d.ts +0 -7
- package/dist/src/ui/commands/bugCommand.js +0 -147
- package/dist/src/ui/commands/bugCommand.js.map +0 -1
- package/dist/src/ui/commands/bugMemoryCommand.d.ts +0 -7
- package/dist/src/ui/commands/bugMemoryCommand.js +0 -62
- package/dist/src/ui/commands/bugMemoryCommand.js.map +0 -1
- package/dist/src/ui/commands/chatCommand.d.ts +0 -10
- package/dist/src/ui/commands/chatCommand.js +0 -362
- package/dist/src/ui/commands/chatCommand.js.map +0 -1
- package/dist/src/ui/commands/clearCommand.d.ts +0 -7
- package/dist/src/ui/commands/clearCommand.js +0 -68
- package/dist/src/ui/commands/clearCommand.js.map +0 -1
- package/dist/src/ui/commands/commandsCommand.d.ts +0 -7
- package/dist/src/ui/commands/commandsCommand.js +0 -104
- package/dist/src/ui/commands/commandsCommand.js.map +0 -1
- package/dist/src/ui/commands/compressCommand.d.ts +0 -7
- package/dist/src/ui/commands/compressCommand.js +0 -67
- package/dist/src/ui/commands/compressCommand.js.map +0 -1
- package/dist/src/ui/commands/copyCommand.d.ts +0 -7
- package/dist/src/ui/commands/copyCommand.js +0 -62
- package/dist/src/ui/commands/copyCommand.js.map +0 -1
- package/dist/src/ui/commands/corgiCommand.d.ts +0 -7
- package/dist/src/ui/commands/corgiCommand.js +0 -17
- package/dist/src/ui/commands/corgiCommand.js.map +0 -1
- package/dist/src/ui/commands/directoryCommand.d.ts +0 -7
- package/dist/src/ui/commands/directoryCommand.js +0 -224
- package/dist/src/ui/commands/directoryCommand.js.map +0 -1
- package/dist/src/ui/commands/docsCommand.d.ts +0 -7
- package/dist/src/ui/commands/docsCommand.js +0 -32
- package/dist/src/ui/commands/docsCommand.js.map +0 -1
- package/dist/src/ui/commands/editorCommand.d.ts +0 -7
- package/dist/src/ui/commands/editorCommand.js +0 -17
- package/dist/src/ui/commands/editorCommand.js.map +0 -1
- package/dist/src/ui/commands/exportSessionCommand.d.ts +0 -7
- package/dist/src/ui/commands/exportSessionCommand.js +0 -74
- package/dist/src/ui/commands/exportSessionCommand.js.map +0 -1
- package/dist/src/ui/commands/extensionsCommand.d.ts +0 -12
- package/dist/src/ui/commands/extensionsCommand.js +0 -740
- package/dist/src/ui/commands/extensionsCommand.js.map +0 -1
- package/dist/src/ui/commands/footerCommand.d.ts +0 -7
- package/dist/src/ui/commands/footerCommand.js +0 -20
- package/dist/src/ui/commands/footerCommand.js.map +0 -1
- package/dist/src/ui/commands/gemmaStatusCommand.d.ts +0 -7
- package/dist/src/ui/commands/gemmaStatusCommand.js +0 -34
- package/dist/src/ui/commands/gemmaStatusCommand.js.map +0 -1
- package/dist/src/ui/commands/helpCommand.d.ts +0 -7
- package/dist/src/ui/commands/helpCommand.js +0 -41
- package/dist/src/ui/commands/helpCommand.js.map +0 -1
- package/dist/src/ui/commands/hooksCommand.d.ts +0 -7
- package/dist/src/ui/commands/hooksCommand.js +0 -337
- package/dist/src/ui/commands/hooksCommand.js.map +0 -1
- package/dist/src/ui/commands/ideCommand.d.ts +0 -7
- package/dist/src/ui/commands/ideCommand.js +0 -233
- package/dist/src/ui/commands/ideCommand.js.map +0 -1
- package/dist/src/ui/commands/initCommand.d.ts +0 -7
- package/dist/src/ui/commands/initCommand.js +0 -38
- package/dist/src/ui/commands/initCommand.js.map +0 -1
- package/dist/src/ui/commands/mcpCommand.d.ts +0 -7
- package/dist/src/ui/commands/mcpCommand.js +0 -447
- package/dist/src/ui/commands/mcpCommand.js.map +0 -1
- package/dist/src/ui/commands/memoryCommand.d.ts +0 -8
- package/dist/src/ui/commands/memoryCommand.js +0 -125
- package/dist/src/ui/commands/memoryCommand.js.map +0 -1
- package/dist/src/ui/commands/modelCommand.d.ts +0 -7
- package/dist/src/ui/commands/modelCommand.js +0 -59
- package/dist/src/ui/commands/modelCommand.js.map +0 -1
- package/dist/src/ui/commands/oncallCommand.d.ts +0 -7
- package/dist/src/ui/commands/oncallCommand.js +0 -91
- package/dist/src/ui/commands/oncallCommand.js.map +0 -1
- package/dist/src/ui/commands/permissionsCommand.d.ts +0 -7
- package/dist/src/ui/commands/permissionsCommand.js +0 -75
- package/dist/src/ui/commands/permissionsCommand.js.map +0 -1
- package/dist/src/ui/commands/planCommand.d.ts +0 -7
- package/dist/src/ui/commands/planCommand.js +0 -83
- package/dist/src/ui/commands/planCommand.js.map +0 -1
- package/dist/src/ui/commands/policiesCommand.d.ts +0 -7
- package/dist/src/ui/commands/policiesCommand.js +0 -83
- package/dist/src/ui/commands/policiesCommand.js.map +0 -1
- package/dist/src/ui/commands/privacyCommand.d.ts +0 -7
- package/dist/src/ui/commands/privacyCommand.js +0 -17
- package/dist/src/ui/commands/privacyCommand.js.map +0 -1
- package/dist/src/ui/commands/profileCommand.d.ts +0 -7
- package/dist/src/ui/commands/profileCommand.js +0 -24
- package/dist/src/ui/commands/profileCommand.js.map +0 -1
- package/dist/src/ui/commands/quitCommand.d.ts +0 -7
- package/dist/src/ui/commands/quitCommand.js +0 -37
- package/dist/src/ui/commands/quitCommand.js.map +0 -1
- package/dist/src/ui/commands/restoreCommand.d.ts +0 -8
- package/dist/src/ui/commands/restoreCommand.js +0 -132
- package/dist/src/ui/commands/restoreCommand.js.map +0 -1
- package/dist/src/ui/commands/resumeCommand.d.ts +0 -7
- package/dist/src/ui/commands/resumeCommand.js +0 -19
- package/dist/src/ui/commands/resumeCommand.js.map +0 -1
- package/dist/src/ui/commands/rewindCommand.d.ts +0 -7
- package/dist/src/ui/commands/rewindCommand.js +0 -138
- package/dist/src/ui/commands/rewindCommand.js.map +0 -1
- package/dist/src/ui/commands/settingsCommand.d.ts +0 -7
- package/dist/src/ui/commands/settingsCommand.js +0 -17
- package/dist/src/ui/commands/settingsCommand.js.map +0 -1
- package/dist/src/ui/commands/setupGithubCommand.d.ts +0 -10
- package/dist/src/ui/commands/setupGithubCommand.js +0 -196
- package/dist/src/ui/commands/setupGithubCommand.js.map +0 -1
- package/dist/src/ui/commands/shortcutsCommand.d.ts +0 -7
- package/dist/src/ui/commands/shortcutsCommand.js +0 -17
- package/dist/src/ui/commands/shortcutsCommand.js.map +0 -1
- package/dist/src/ui/commands/skillsCommand.d.ts +0 -7
- package/dist/src/ui/commands/skillsCommand.js +0 -297
- package/dist/src/ui/commands/skillsCommand.js.map +0 -1
- package/dist/src/ui/commands/statsCommand.d.ts +0 -7
- package/dist/src/ui/commands/statsCommand.js +0 -118
- package/dist/src/ui/commands/statsCommand.js.map +0 -1
- package/dist/src/ui/commands/tasksCommand.d.ts +0 -7
- package/dist/src/ui/commands/tasksCommand.js +0 -17
- package/dist/src/ui/commands/tasksCommand.js.map +0 -1
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +0 -13
- package/dist/src/ui/commands/terminalSetupCommand.js +0 -43
- package/dist/src/ui/commands/terminalSetupCommand.js.map +0 -1
- package/dist/src/ui/commands/themeCommand.d.ts +0 -7
- package/dist/src/ui/commands/themeCommand.js +0 -17
- package/dist/src/ui/commands/themeCommand.js.map +0 -1
- package/dist/src/ui/commands/toolsCommand.d.ts +0 -7
- package/dist/src/ui/commands/toolsCommand.js +0 -59
- package/dist/src/ui/commands/toolsCommand.js.map +0 -1
- package/dist/src/ui/commands/types.d.ts +0 -179
- package/dist/src/ui/commands/types.js +0 -16
- package/dist/src/ui/commands/types.js.map +0 -1
- package/dist/src/ui/commands/upgradeCommand.d.ts +0 -11
- package/dist/src/ui/commands/upgradeCommand.js +0 -58
- package/dist/src/ui/commands/upgradeCommand.js.map +0 -1
- package/dist/src/ui/commands/vimCommand.d.ts +0 -7
- package/dist/src/ui/commands/vimCommand.js +0 -25
- package/dist/src/ui/commands/vimCommand.js.map +0 -1
- package/dist/src/ui/commands/voiceCommand.d.ts +0 -7
- package/dist/src/ui/commands/voiceCommand.js +0 -29
- package/dist/src/ui/commands/voiceCommand.js.map +0 -1
- package/dist/src/ui/components/AboutBox.d.ts +0 -19
- package/dist/src/ui/components/AboutBox.js +0 -17
- package/dist/src/ui/components/AboutBox.js.map +0 -1
- package/dist/src/ui/components/AdminSettingsChangedDialog.d.ts +0 -6
- package/dist/src/ui/components/AdminSettingsChangedDialog.js +0 -27
- package/dist/src/ui/components/AdminSettingsChangedDialog.js.map +0 -1
- package/dist/src/ui/components/AgentConfigDialog.d.ts +0 -20
- package/dist/src/ui/components/AgentConfigDialog.js +0 -298
- package/dist/src/ui/components/AgentConfigDialog.js.map +0 -1
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.d.ts +0 -6
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js +0 -30
- package/dist/src/ui/components/AlternateBufferQuittingDisplay.js.map +0 -1
- package/dist/src/ui/components/AnsiOutput.d.ts +0 -19
- package/dist/src/ui/components/AnsiOutput.js +0 -24
- package/dist/src/ui/components/AnsiOutput.js.map +0 -1
- package/dist/src/ui/components/AppHeader.d.ts +0 -11
- package/dist/src/ui/components/AppHeader.js +0 -74
- package/dist/src/ui/components/AppHeader.js.map +0 -1
- package/dist/src/ui/components/ApprovalModeIndicator.d.ts +0 -13
- package/dist/src/ui/components/ApprovalModeIndicator.js +0 -41
- package/dist/src/ui/components/ApprovalModeIndicator.js.map +0 -1
- package/dist/src/ui/components/AsciiArt.d.ts +0 -11
- package/dist/src/ui/components/AsciiArt.js +0 -54
- package/dist/src/ui/components/AsciiArt.js.map +0 -1
- package/dist/src/ui/components/AskUserDialog.d.ts +0 -46
- package/dist/src/ui/components/AskUserDialog.js +0 -739
- package/dist/src/ui/components/AskUserDialog.js.map +0 -1
- package/dist/src/ui/components/BackgroundTaskDisplay.d.ts +0 -16
- package/dist/src/ui/components/BackgroundTaskDisplay.js +0 -253
- package/dist/src/ui/components/BackgroundTaskDisplay.js.map +0 -1
- package/dist/src/ui/components/Banner.d.ts +0 -14
- package/dist/src/ui/components/Banner.js +0 -29
- package/dist/src/ui/components/Banner.js.map +0 -1
- package/dist/src/ui/components/Checklist.d.ts +0 -14
- package/dist/src/ui/components/Checklist.js +0 -32
- package/dist/src/ui/components/Checklist.js.map +0 -1
- package/dist/src/ui/components/ChecklistItem.d.ts +0 -17
- package/dist/src/ui/components/ChecklistItem.js +0 -40
- package/dist/src/ui/components/ChecklistItem.js.map +0 -1
- package/dist/src/ui/components/CliSpinner.d.ts +0 -9
- package/dist/src/ui/components/CliSpinner.js +0 -28
- package/dist/src/ui/components/CliSpinner.js.map +0 -1
- package/dist/src/ui/components/ColorsDisplay.d.ts +0 -12
- package/dist/src/ui/components/ColorsDisplay.js +0 -120
- package/dist/src/ui/components/ColorsDisplay.js.map +0 -1
- package/dist/src/ui/components/Composer.d.ts +0 -8
- package/dist/src/ui/components/Composer.js +0 -88
- package/dist/src/ui/components/Composer.js.map +0 -1
- package/dist/src/ui/components/ConfigExtensionDialog.d.ts +0 -19
- package/dist/src/ui/components/ConfigExtensionDialog.js +0 -156
- package/dist/src/ui/components/ConfigExtensionDialog.js.map +0 -1
- package/dist/src/ui/components/ConfigInitDisplay.d.ts +0 -8
- package/dist/src/ui/components/ConfigInitDisplay.js +0 -55
- package/dist/src/ui/components/ConfigInitDisplay.js.map +0 -1
- package/dist/src/ui/components/ConsentPrompt.d.ts +0 -13
- package/dist/src/ui/components/ConsentPrompt.js +0 -21
- package/dist/src/ui/components/ConsentPrompt.js.map +0 -1
- package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +0 -11
- package/dist/src/ui/components/ConsoleSummaryDisplay.js +0 -12
- package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +0 -21
- package/dist/src/ui/components/ContextSummaryDisplay.js +0 -72
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +0 -10
- package/dist/src/ui/components/ContextUsageDisplay.js +0 -29
- package/dist/src/ui/components/ContextUsageDisplay.js.map +0 -1
- package/dist/src/ui/components/CopyModeWarning.d.ts +0 -7
- package/dist/src/ui/components/CopyModeWarning.js +0 -10
- package/dist/src/ui/components/CopyModeWarning.js.map +0 -1
- package/dist/src/ui/components/DebugProfiler.d.ts +0 -25
- package/dist/src/ui/components/DebugProfiler.js +0 -190
- package/dist/src/ui/components/DebugProfiler.js.map +0 -1
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +0 -13
- package/dist/src/ui/components/DetailedMessagesDisplay.js +0 -60
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +0 -1
- package/dist/src/ui/components/DialogManager.d.ts +0 -12
- package/dist/src/ui/components/DialogManager.js +0 -164
- package/dist/src/ui/components/DialogManager.js.map +0 -1
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +0 -15
- package/dist/src/ui/components/EditorSettingsDialog.js +0 -89
- package/dist/src/ui/components/EditorSettingsDialog.js.map +0 -1
- package/dist/src/ui/components/EmptyWalletDialog.d.ts +0 -22
- package/dist/src/ui/components/EmptyWalletDialog.js +0 -34
- package/dist/src/ui/components/EmptyWalletDialog.js.map +0 -1
- package/dist/src/ui/components/ExitPlanModeDialog.d.ts +0 -17
- package/dist/src/ui/components/ExitPlanModeDialog.js +0 -180
- package/dist/src/ui/components/ExitPlanModeDialog.js.map +0 -1
- package/dist/src/ui/components/ExitWarning.d.ts +0 -7
- package/dist/src/ui/components/ExitWarning.js +0 -10
- package/dist/src/ui/components/ExitWarning.js.map +0 -1
- package/dist/src/ui/components/FolderTrustDialog.d.ts +0 -19
- package/dist/src/ui/components/FolderTrustDialog.js +0 -119
- package/dist/src/ui/components/FolderTrustDialog.js.map +0 -1
- package/dist/src/ui/components/Footer.d.ts +0 -20
- package/dist/src/ui/components/Footer.js +0 -271
- package/dist/src/ui/components/Footer.js.map +0 -1
- package/dist/src/ui/components/FooterConfigDialog.d.ts +0 -11
- package/dist/src/ui/components/FooterConfigDialog.js +0 -214
- package/dist/src/ui/components/FooterConfigDialog.js.map +0 -1
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +0 -23
- package/dist/src/ui/components/GeminiRespondingSpinner.js +0 -23
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +0 -1
- package/dist/src/ui/components/GeminiSpinner.d.ts +0 -13
- package/dist/src/ui/components/GeminiSpinner.js +0 -36
- package/dist/src/ui/components/GeminiSpinner.js.map +0 -1
- package/dist/src/ui/components/Header.d.ts +0 -13
- package/dist/src/ui/components/Header.js +0 -30
- package/dist/src/ui/components/Header.js.map +0 -1
- package/dist/src/ui/components/Help.d.ts +0 -12
- package/dist/src/ui/components/Help.js +0 -18
- package/dist/src/ui/components/Help.js.map +0 -1
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +0 -22
- package/dist/src/ui/components/HistoryItemDisplay.js +0 -53
- package/dist/src/ui/components/HistoryItemDisplay.js.map +0 -1
- package/dist/src/ui/components/HookStatusDisplay.d.ts +0 -12
- package/dist/src/ui/components/HookStatusDisplay.js +0 -28
- package/dist/src/ui/components/HookStatusDisplay.js.map +0 -1
- package/dist/src/ui/components/HooksDialog.d.ts +0 -36
- package/dist/src/ui/components/HooksDialog.js +0 -84
- package/dist/src/ui/components/HooksDialog.js.map +0 -1
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +0 -11
- package/dist/src/ui/components/IdeTrustChangeDialog.js +0 -37
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +0 -1
- package/dist/src/ui/components/InboxDialog.d.ts +0 -15
- package/dist/src/ui/components/InboxDialog.js +0 -757
- package/dist/src/ui/components/InboxDialog.js.map +0 -1
- package/dist/src/ui/components/InputPrompt.d.ts +0 -66
- package/dist/src/ui/components/InputPrompt.js +0 -1325
- package/dist/src/ui/components/InputPrompt.js.map +0 -1
- package/dist/src/ui/components/ListeningIndicator.d.ts +0 -10
- package/dist/src/ui/components/ListeningIndicator.js +0 -31
- package/dist/src/ui/components/ListeningIndicator.js.map +0 -1
- package/dist/src/ui/components/LoadingIndicator.d.ts +0 -25
- package/dist/src/ui/components/LoadingIndicator.js +0 -49
- package/dist/src/ui/components/LoadingIndicator.js.map +0 -1
- package/dist/src/ui/components/LogoutConfirmationDialog.d.ts +0 -15
- package/dist/src/ui/components/LogoutConfirmationDialog.js +0 -40
- package/dist/src/ui/components/LogoutConfirmationDialog.js.map +0 -1
- package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +0 -13
- package/dist/src/ui/components/LoopDetectionConfirmation.js +0 -40
- package/dist/src/ui/components/LoopDetectionConfirmation.js.map +0 -1
- package/dist/src/ui/components/MainContent.d.ts +0 -6
- package/dist/src/ui/components/MainContent.js +0 -177
- package/dist/src/ui/components/MainContent.js.map +0 -1
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +0 -10
- package/dist/src/ui/components/MemoryUsageDisplay.js +0 -26
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +0 -1
- package/dist/src/ui/components/ModelDialog.d.ts +0 -11
- package/dist/src/ui/components/ModelDialog.js +0 -269
- package/dist/src/ui/components/ModelDialog.js.map +0 -1
- package/dist/src/ui/components/ModelQuotaDisplay.d.ts +0 -18
- package/dist/src/ui/components/ModelQuotaDisplay.js +0 -105
- package/dist/src/ui/components/ModelQuotaDisplay.js.map +0 -1
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +0 -16
- package/dist/src/ui/components/ModelStatsDisplay.js +0 -158
- package/dist/src/ui/components/ModelStatsDisplay.js.map +0 -1
- package/dist/src/ui/components/MultiFolderTrustDialog.d.ts +0 -23
- package/dist/src/ui/components/MultiFolderTrustDialog.js +0 -97
- package/dist/src/ui/components/MultiFolderTrustDialog.js.map +0 -1
- package/dist/src/ui/components/NewAgentsNotification.d.ts +0 -16
- package/dist/src/ui/components/NewAgentsNotification.js +0 -52
- package/dist/src/ui/components/NewAgentsNotification.js.map +0 -1
- package/dist/src/ui/components/Notifications.d.ts +0 -6
- package/dist/src/ui/components/Notifications.js +0 -108
- package/dist/src/ui/components/Notifications.js.map +0 -1
- package/dist/src/ui/components/OverageMenuDialog.d.ts +0 -22
- package/dist/src/ui/components/OverageMenuDialog.js +0 -33
- package/dist/src/ui/components/OverageMenuDialog.js.map +0 -1
- package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +0 -16
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +0 -63
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +0 -1
- package/dist/src/ui/components/PolicyUpdateDialog.d.ts +0 -18
- package/dist/src/ui/components/PolicyUpdateDialog.js +0 -62
- package/dist/src/ui/components/PolicyUpdateDialog.js.map +0 -1
- package/dist/src/ui/components/ProQuotaDialog.d.ts +0 -19
- package/dist/src/ui/components/ProQuotaDialog.js +0 -85
- package/dist/src/ui/components/ProQuotaDialog.js.map +0 -1
- package/dist/src/ui/components/ProgressBar.d.ts +0 -13
- package/dist/src/ui/components/ProgressBar.js +0 -18
- package/dist/src/ui/components/ProgressBar.js.map +0 -1
- package/dist/src/ui/components/QueuedMessageDisplay.d.ts +0 -9
- package/dist/src/ui/components/QueuedMessageDisplay.js +0 -21
- package/dist/src/ui/components/QueuedMessageDisplay.js.map +0 -1
- package/dist/src/ui/components/QuittingDisplay.d.ts +0 -6
- package/dist/src/ui/components/QuittingDisplay.js +0 -21
- package/dist/src/ui/components/QuittingDisplay.js.map +0 -1
- package/dist/src/ui/components/QuotaDisplay.d.ts +0 -16
- package/dist/src/ui/components/QuotaDisplay.js +0 -37
- package/dist/src/ui/components/QuotaDisplay.js.map +0 -1
- package/dist/src/ui/components/QuotaStatsInfo.d.ts +0 -14
- package/dist/src/ui/components/QuotaStatsInfo.js +0 -24
- package/dist/src/ui/components/QuotaStatsInfo.js.map +0 -1
- package/dist/src/ui/components/RawMarkdownIndicator.d.ts +0 -7
- package/dist/src/ui/components/RawMarkdownIndicator.js +0 -11
- package/dist/src/ui/components/RawMarkdownIndicator.js.map +0 -1
- package/dist/src/ui/components/RewindConfirmation.d.ts +0 -21
- package/dist/src/ui/components/RewindConfirmation.js +0 -74
- package/dist/src/ui/components/RewindConfirmation.js.map +0 -1
- package/dist/src/ui/components/RewindViewer.d.ts +0 -15
- package/dist/src/ui/components/RewindViewer.js +0 -155
- package/dist/src/ui/components/RewindViewer.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.d.ts +0 -10
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserEmpty.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.d.ts +0 -13
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserError.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.d.ts +0 -10
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionBrowserLoading.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.d.ts +0 -23
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.js +0 -18
- package/dist/src/ui/components/SessionBrowser/SessionBrowserNav.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.d.ts +0 -13
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.js +0 -9
- package/dist/src/ui/components/SessionBrowser/SessionListHeader.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser/utils.d.ts +0 -33
- package/dist/src/ui/components/SessionBrowser/utils.js +0 -100
- package/dist/src/ui/components/SessionBrowser/utils.js.map +0 -1
- package/dist/src/ui/components/SessionBrowser.d.ts +0 -98
- package/dist/src/ui/components/SessionBrowser.js +0 -371
- package/dist/src/ui/components/SessionBrowser.js.map +0 -1
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +0 -11
- package/dist/src/ui/components/SessionSummaryDisplay.js +0 -25
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +0 -1
- package/dist/src/ui/components/SettingsDialog.d.ts +0 -14
- package/dist/src/ui/components/SettingsDialog.js +0 -285
- package/dist/src/ui/components/SettingsDialog.js.map +0 -1
- package/dist/src/ui/components/ShellInputPrompt.d.ts +0 -12
- package/dist/src/ui/components/ShellInputPrompt.js +0 -65
- package/dist/src/ui/components/ShellInputPrompt.js.map +0 -1
- package/dist/src/ui/components/ShellModeIndicator.d.ts +0 -7
- package/dist/src/ui/components/ShellModeIndicator.js +0 -6
- package/dist/src/ui/components/ShellModeIndicator.js.map +0 -1
- package/dist/src/ui/components/ShortcutsHelp.d.ts +0 -7
- package/dist/src/ui/components/ShortcutsHelp.js +0 -59
- package/dist/src/ui/components/ShortcutsHelp.js.map +0 -1
- package/dist/src/ui/components/ShowMoreLines.d.ts +0 -11
- package/dist/src/ui/components/ShowMoreLines.js +0 -27
- package/dist/src/ui/components/ShowMoreLines.js.map +0 -1
- package/dist/src/ui/components/StatsDisplay.d.ts +0 -20
- package/dist/src/ui/components/StatsDisplay.js +0 -94
- package/dist/src/ui/components/StatsDisplay.js.map +0 -1
- package/dist/src/ui/components/StatusDisplay.d.ts +0 -10
- package/dist/src/ui/components/StatusDisplay.js +0 -21
- package/dist/src/ui/components/StatusDisplay.js.map +0 -1
- package/dist/src/ui/components/StatusRow.d.ts +0 -32
- package/dist/src/ui/components/StatusRow.js +0 -183
- package/dist/src/ui/components/StatusRow.js.map +0 -1
- package/dist/src/ui/components/StickyHeader.d.ts +0 -16
- package/dist/src/ui/components/StickyHeader.js +0 -6
- package/dist/src/ui/components/StickyHeader.js.map +0 -1
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +0 -30
- package/dist/src/ui/components/SuggestionsDisplay.js +0 -51
- package/dist/src/ui/components/SuggestionsDisplay.js.map +0 -1
- package/dist/src/ui/components/Table.d.ts +0 -21
- package/dist/src/ui/components/Table.js +0 -8
- package/dist/src/ui/components/Table.js.map +0 -1
- package/dist/src/ui/components/ThemeDialog.constants.d.ts +0 -26
- package/dist/src/ui/components/ThemeDialog.constants.js +0 -27
- package/dist/src/ui/components/ThemeDialog.constants.js.map +0 -1
- package/dist/src/ui/components/ThemeDialog.d.ts +0 -21
- package/dist/src/ui/components/ThemeDialog.js +0 -166
- package/dist/src/ui/components/ThemeDialog.js.map +0 -1
- package/dist/src/ui/components/ThemedGradient.d.ts +0 -8
- package/dist/src/ui/components/ThemedGradient.js +0 -17
- package/dist/src/ui/components/ThemedGradient.js.map +0 -1
- package/dist/src/ui/components/Tips.d.ts +0 -12
- package/dist/src/ui/components/Tips.js +0 -10
- package/dist/src/ui/components/Tips.js.map +0 -1
- package/dist/src/ui/components/ToastDisplay.d.ts +0 -10
- package/dist/src/ui/components/ToastDisplay.js +0 -51
- package/dist/src/ui/components/ToastDisplay.js.map +0 -1
- package/dist/src/ui/components/ToolConfirmationQueue.d.ts +0 -12
- package/dist/src/ui/components/ToolConfirmationQueue.js +0 -64
- package/dist/src/ui/components/ToolConfirmationQueue.js.map +0 -1
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +0 -7
- package/dist/src/ui/components/ToolStatsDisplay.js +0 -42
- package/dist/src/ui/components/ToolStatsDisplay.js.map +0 -1
- package/dist/src/ui/components/UpdateNotification.d.ts +0 -10
- package/dist/src/ui/components/UpdateNotification.js +0 -11
- package/dist/src/ui/components/UpdateNotification.js.map +0 -1
- package/dist/src/ui/components/UserIdentity.d.ts +0 -12
- package/dist/src/ui/components/UserIdentity.js +0 -27
- package/dist/src/ui/components/UserIdentity.js.map +0 -1
- package/dist/src/ui/components/ValidationDialog.d.ts +0 -15
- package/dist/src/ui/components/ValidationDialog.js +0 -92
- package/dist/src/ui/components/ValidationDialog.js.map +0 -1
- package/dist/src/ui/components/VoiceModelDialog.d.ts +0 -11
- package/dist/src/ui/components/VoiceModelDialog.js +0 -124
- package/dist/src/ui/components/VoiceModelDialog.js.map +0 -1
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/CompressionMessage.js +0 -49
- package/dist/src/ui/components/messages/CompressionMessage.js.map +0 -1
- package/dist/src/ui/components/messages/DenseToolMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/DenseToolMessage.js +0 -258
- package/dist/src/ui/components/messages/DenseToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +0 -35
- package/dist/src/ui/components/messages/DiffRenderer.js +0 -271
- package/dist/src/ui/components/messages/DiffRenderer.js.map +0 -1
- package/dist/src/ui/components/messages/ErrorMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ErrorMessage.js +0 -10
- package/dist/src/ui/components/messages/ErrorMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ExportSessionMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ExportSessionMessage.js +0 -16
- package/dist/src/ui/components/messages/ExportSessionMessage.js.map +0 -1
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +0 -14
- package/dist/src/ui/components/messages/GeminiMessage.js +0 -16
- package/dist/src/ui/components/messages/GeminiMessage.js.map +0 -1
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +0 -14
- package/dist/src/ui/components/messages/GeminiMessageContent.js +0 -20
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +0 -1
- package/dist/src/ui/components/messages/HintMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/HintMessage.js +0 -16
- package/dist/src/ui/components/messages/HintMessage.js.map +0 -1
- package/dist/src/ui/components/messages/InfoMessage.d.ts +0 -16
- package/dist/src/ui/components/messages/InfoMessage.js +0 -12
- package/dist/src/ui/components/messages/InfoMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ModelMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/ModelMessage.js +0 -7
- package/dist/src/ui/components/messages/ModelMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ShellToolMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/ShellToolMessage.js +0 -85
- package/dist/src/ui/components/messages/ShellToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentGroupDisplay.d.ts +0 -17
- package/dist/src/ui/components/messages/SubagentGroupDisplay.js +0 -140
- package/dist/src/ui/components/messages/SubagentGroupDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentHistoryMessage.d.ts +0 -13
- package/dist/src/ui/components/messages/SubagentHistoryMessage.js +0 -5
- package/dist/src/ui/components/messages/SubagentHistoryMessage.js.map +0 -1
- package/dist/src/ui/components/messages/SubagentProgressDisplay.d.ts +0 -14
- package/dist/src/ui/components/messages/SubagentProgressDisplay.js +0 -81
- package/dist/src/ui/components/messages/SubagentProgressDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ThinkingMessage.d.ts +0 -18
- package/dist/src/ui/components/messages/ThinkingMessage.js +0 -39
- package/dist/src/ui/components/messages/ThinkingMessage.js.map +0 -1
- package/dist/src/ui/components/messages/Todo.d.ts +0 -7
- package/dist/src/ui/components/messages/Todo.js +0 -42
- package/dist/src/ui/components/messages/Todo.js.map +0 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +0 -18
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +0 -578
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolGroupDisplay.d.ts +0 -13
- package/dist/src/ui/components/messages/ToolGroupDisplay.js +0 -79
- package/dist/src/ui/components/messages/ToolGroupDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +0 -21
- package/dist/src/ui/components/messages/ToolGroupMessage.js +0 -269
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolMessage.d.ts +0 -24
- package/dist/src/ui/components/messages/ToolMessage.js +0 -26
- package/dist/src/ui/components/messages/ToolMessage.js.map +0 -1
- package/dist/src/ui/components/messages/ToolResultDisplay.d.ts +0 -16
- package/dist/src/ui/components/messages/ToolResultDisplay.js +0 -147
- package/dist/src/ui/components/messages/ToolResultDisplay.js.map +0 -1
- package/dist/src/ui/components/messages/ToolShared.d.ts +0 -59
- package/dist/src/ui/components/messages/ToolShared.js +0 -126
- package/dist/src/ui/components/messages/ToolShared.js.map +0 -1
- package/dist/src/ui/components/messages/TopicMessage.d.ts +0 -15
- package/dist/src/ui/components/messages/TopicMessage.js +0 -57
- package/dist/src/ui/components/messages/TopicMessage.js.map +0 -1
- package/dist/src/ui/components/messages/UserMessage.d.ts +0 -12
- package/dist/src/ui/components/messages/UserMessage.js +0 -35
- package/dist/src/ui/components/messages/UserMessage.js.map +0 -1
- package/dist/src/ui/components/messages/UserShellMessage.d.ts +0 -12
- package/dist/src/ui/components/messages/UserShellMessage.js +0 -15
- package/dist/src/ui/components/messages/UserShellMessage.js.map +0 -1
- package/dist/src/ui/components/messages/WarningMessage.d.ts +0 -11
- package/dist/src/ui/components/messages/WarningMessage.js +0 -11
- package/dist/src/ui/components/messages/WarningMessage.js.map +0 -1
- package/dist/src/ui/components/shared/BaseSelectionList.d.ts +0 -42
- package/dist/src/ui/components/shared/BaseSelectionList.js +0 -98
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +0 -1
- package/dist/src/ui/components/shared/BaseSettingsDialog.d.ts +0 -90
- package/dist/src/ui/components/shared/BaseSettingsDialog.js +0 -282
- package/dist/src/ui/components/shared/BaseSettingsDialog.js.map +0 -1
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +0 -35
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +0 -14
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +0 -1
- package/dist/src/ui/components/shared/DialogFooter.d.ts +0 -21
- package/dist/src/ui/components/shared/DialogFooter.js +0 -18
- package/dist/src/ui/components/shared/DialogFooter.js.map +0 -1
- package/dist/src/ui/components/shared/EnumSelector.d.ts +0 -18
- package/dist/src/ui/components/shared/EnumSelector.js +0 -40
- package/dist/src/ui/components/shared/EnumSelector.js.map +0 -1
- package/dist/src/ui/components/shared/ExpandableText.d.ts +0 -17
- package/dist/src/ui/components/shared/ExpandableText.js +0 -88
- package/dist/src/ui/components/shared/ExpandableText.js.map +0 -1
- package/dist/src/ui/components/shared/HalfLinePaddedBox.d.ts +0 -26
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js +0 -38
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js.map +0 -1
- package/dist/src/ui/components/shared/HorizontalLine.d.ts +0 -12
- package/dist/src/ui/components/shared/HorizontalLine.js +0 -6
- package/dist/src/ui/components/shared/HorizontalLine.js.map +0 -1
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +0 -25
- package/dist/src/ui/components/shared/MaxSizedBox.js +0 -82
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +0 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +0 -51
- package/dist/src/ui/components/shared/RadioButtonSelect.js +0 -23
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +0 -1
- package/dist/src/ui/components/shared/ScopeSelector.d.ts +0 -19
- package/dist/src/ui/components/shared/ScopeSelector.js +0 -15
- package/dist/src/ui/components/shared/ScopeSelector.js.map +0 -1
- package/dist/src/ui/components/shared/Scrollable.d.ts +0 -22
- package/dist/src/ui/components/shared/Scrollable.js +0 -168
- package/dist/src/ui/components/shared/Scrollable.js.map +0 -1
- package/dist/src/ui/components/shared/ScrollableList.d.ts +0 -24
- package/dist/src/ui/components/shared/ScrollableList.js +0 -168
- package/dist/src/ui/components/shared/ScrollableList.js.map +0 -1
- package/dist/src/ui/components/shared/SearchableList.d.ts +0 -61
- package/dist/src/ui/components/shared/SearchableList.js +0 -87
- package/dist/src/ui/components/shared/SearchableList.js.map +0 -1
- package/dist/src/ui/components/shared/SectionHeader.d.ts +0 -10
- package/dist/src/ui/components/shared/SectionHeader.js +0 -6
- package/dist/src/ui/components/shared/SectionHeader.js.map +0 -1
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.d.ts +0 -19
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.js +0 -75
- package/dist/src/ui/components/shared/SlicingMaxSizedBox.js.map +0 -1
- package/dist/src/ui/components/shared/TabHeader.d.ts +0 -51
- package/dist/src/ui/components/shared/TabHeader.js +0 -43
- package/dist/src/ui/components/shared/TabHeader.js.map +0 -1
- package/dist/src/ui/components/shared/TextInput.d.ts +0 -15
- package/dist/src/ui/components/shared/TextInput.js +0 -52
- package/dist/src/ui/components/shared/TextInput.js.map +0 -1
- package/dist/src/ui/components/shared/VirtualizedList.d.ts +0 -56
- package/dist/src/ui/components/shared/VirtualizedList.js +0 -474
- package/dist/src/ui/components/shared/VirtualizedList.js.map +0 -1
- package/dist/src/ui/components/shared/text-buffer.d.ts +0 -868
- package/dist/src/ui/components/shared/text-buffer.js +0 -2771
- package/dist/src/ui/components/shared/text-buffer.js.map +0 -1
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +0 -132
- package/dist/src/ui/components/shared/vim-buffer-actions.js +0 -1307
- package/dist/src/ui/components/shared/vim-buffer-actions.js.map +0 -1
- package/dist/src/ui/components/triage/TriageDuplicates.d.ts +0 -11
- package/dist/src/ui/components/triage/TriageDuplicates.js +0 -625
- package/dist/src/ui/components/triage/TriageDuplicates.js.map +0 -1
- package/dist/src/ui/components/triage/TriageIssues.d.ts +0 -12
- package/dist/src/ui/components/triage/TriageIssues.js +0 -381
- package/dist/src/ui/components/triage/TriageIssues.js.map +0 -1
- package/dist/src/ui/components/views/AgentsStatus.d.ts +0 -13
- package/dist/src/ui/components/views/AgentsStatus.js +0 -24
- package/dist/src/ui/components/views/AgentsStatus.js.map +0 -1
- package/dist/src/ui/components/views/ChatList.d.ts +0 -12
- package/dist/src/ui/components/views/ChatList.js +0 -18
- package/dist/src/ui/components/views/ChatList.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionDetails.d.ts +0 -18
- package/dist/src/ui/components/views/ExtensionDetails.js +0 -86
- package/dist/src/ui/components/views/ExtensionDetails.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionRegistryView.d.ts +0 -15
- package/dist/src/ui/components/views/ExtensionRegistryView.js +0 -98
- package/dist/src/ui/components/views/ExtensionRegistryView.js.map +0 -1
- package/dist/src/ui/components/views/ExtensionsList.d.ts +0 -12
- package/dist/src/ui/components/views/ExtensionsList.js +0 -47
- package/dist/src/ui/components/views/ExtensionsList.js.map +0 -1
- package/dist/src/ui/components/views/GemmaStatus.d.ts +0 -10
- package/dist/src/ui/components/views/GemmaStatus.js +0 -12
- package/dist/src/ui/components/views/GemmaStatus.js.map +0 -1
- package/dist/src/ui/components/views/McpStatus.d.ts +0 -28
- package/dist/src/ui/components/views/McpStatus.js +0 -110
- package/dist/src/ui/components/views/McpStatus.js.map +0 -1
- package/dist/src/ui/components/views/SkillsList.d.ts +0 -13
- package/dist/src/ui/components/views/SkillsList.js +0 -19
- package/dist/src/ui/components/views/SkillsList.js.map +0 -1
- package/dist/src/ui/components/views/ToolsList.d.ts +0 -14
- package/dist/src/ui/components/views/ToolsList.js +0 -8
- package/dist/src/ui/components/views/ToolsList.js.map +0 -1
- package/dist/src/ui/constants/tips.d.ts +0 -6
- package/dist/src/ui/constants/tips.js +0 -164
- package/dist/src/ui/constants/tips.js.map +0 -1
- package/dist/src/ui/constants/wittyPhrases.d.ts +0 -6
- package/dist/src/ui/constants/wittyPhrases.js +0 -138
- package/dist/src/ui/constants/wittyPhrases.js.map +0 -1
- package/dist/src/ui/constants.d.ts +0 -42
- package/dist/src/ui/constants.js +0 -61
- package/dist/src/ui/constants.js.map +0 -1
- package/dist/src/ui/contexts/AppContext.d.ts +0 -13
- package/dist/src/ui/contexts/AppContext.js +0 -15
- package/dist/src/ui/contexts/AppContext.js.map +0 -1
- package/dist/src/ui/contexts/AskUserActionsContext.d.ts +0 -42
- package/dist/src/ui/contexts/AskUserActionsContext.js +0 -25
- package/dist/src/ui/contexts/AskUserActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/ConfigContext.d.ts +0 -9
- package/dist/src/ui/contexts/ConfigContext.js +0 -16
- package/dist/src/ui/contexts/ConfigContext.js.map +0 -1
- package/dist/src/ui/contexts/InputContext.d.ts +0 -18
- package/dist/src/ui/contexts/InputContext.js +0 -15
- package/dist/src/ui/contexts/InputContext.js.map +0 -1
- package/dist/src/ui/contexts/KeypressContext.d.ts +0 -37
- package/dist/src/ui/contexts/KeypressContext.js +0 -781
- package/dist/src/ui/contexts/KeypressContext.js.map +0 -1
- package/dist/src/ui/contexts/MouseContext.d.ts +0 -20
- package/dist/src/ui/contexts/MouseContext.js +0 -131
- package/dist/src/ui/contexts/MouseContext.js.map +0 -1
- package/dist/src/ui/contexts/OverflowContext.d.ts +0 -19
- package/dist/src/ui/contexts/OverflowContext.js +0 -67
- package/dist/src/ui/contexts/OverflowContext.js.map +0 -1
- package/dist/src/ui/contexts/QuotaContext.d.ts +0 -19
- package/dist/src/ui/contexts/QuotaContext.js +0 -15
- package/dist/src/ui/contexts/QuotaContext.js.map +0 -1
- package/dist/src/ui/contexts/ScrollProvider.d.ts +0 -25
- package/dist/src/ui/contexts/ScrollProvider.js +0 -313
- package/dist/src/ui/contexts/ScrollProvider.js.map +0 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +0 -47
- package/dist/src/ui/contexts/SessionContext.js +0 -168
- package/dist/src/ui/contexts/SessionContext.js.map +0 -1
- package/dist/src/ui/contexts/SettingsContext.d.ts +0 -17
- package/dist/src/ui/contexts/SettingsContext.js +0 -48
- package/dist/src/ui/contexts/SettingsContext.js.map +0 -1
- package/dist/src/ui/contexts/ShellFocusContext.d.ts +0 -8
- package/dist/src/ui/contexts/ShellFocusContext.js +0 -9
- package/dist/src/ui/contexts/ShellFocusContext.js.map +0 -1
- package/dist/src/ui/contexts/StreamingContext.d.ts +0 -9
- package/dist/src/ui/contexts/StreamingContext.js +0 -15
- package/dist/src/ui/contexts/StreamingContext.js.map +0 -1
- package/dist/src/ui/contexts/TerminalContext.d.ts +0 -17
- package/dist/src/ui/contexts/TerminalContext.js +0 -71
- package/dist/src/ui/contexts/TerminalContext.js.map +0 -1
- package/dist/src/ui/contexts/ToolActionsContext.d.ts +0 -27
- package/dist/src/ui/contexts/ToolActionsContext.js +0 -97
- package/dist/src/ui/contexts/ToolActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/UIActionsContext.d.ts +0 -83
- package/dist/src/ui/contexts/UIActionsContext.js +0 -22
- package/dist/src/ui/contexts/UIActionsContext.js.map +0 -1
- package/dist/src/ui/contexts/UIStateContext.d.ts +0 -184
- package/dist/src/ui/contexts/UIStateContext.js +0 -18
- package/dist/src/ui/contexts/UIStateContext.js.map +0 -1
- package/dist/src/ui/contexts/VimModeContext.d.ts +0 -17
- package/dist/src/ui/contexts/VimModeContext.js +0 -39
- package/dist/src/ui/contexts/VimModeContext.js.map +0 -1
- package/dist/src/ui/debug.d.ts +0 -8
- package/dist/src/ui/debug.js +0 -11
- package/dist/src/ui/debug.js.map +0 -1
- package/dist/src/ui/editors/editorSettingsManager.d.ts +0 -18
- package/dist/src/ui/editors/editorSettingsManager.js +0 -38
- package/dist/src/ui/editors/editorSettingsManager.js.map +0 -1
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +0 -56
- package/dist/src/ui/hooks/atCommandProcessor.js +0 -558
- package/dist/src/ui/hooks/atCommandProcessor.js.map +0 -1
- package/dist/src/ui/hooks/creditsFlowHandler.d.ts +0 -36
- package/dist/src/ui/hooks/creditsFlowHandler.js +0 -158
- package/dist/src/ui/hooks/creditsFlowHandler.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/gitProvider.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/gitProvider.js +0 -73
- package/dist/src/ui/hooks/shell-completions/gitProvider.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/index.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/index.js +0 -16
- package/dist/src/ui/hooks/shell-completions/index.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/npmProvider.d.ts +0 -7
- package/dist/src/ui/hooks/shell-completions/npmProvider.js +0 -67
- package/dist/src/ui/hooks/shell-completions/npmProvider.js.map +0 -1
- package/dist/src/ui/hooks/shell-completions/types.d.ts +0 -16
- package/dist/src/ui/hooks/shell-completions/types.js +0 -7
- package/dist/src/ui/hooks/shell-completions/types.js.map +0 -1
- package/dist/src/ui/hooks/shellReducer.d.ts +0 -55
- package/dist/src/ui/hooks/shellReducer.js +0 -125
- package/dist/src/ui/hooks/shellReducer.js.map +0 -1
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +0 -50
- package/dist/src/ui/hooks/slashCommandProcessor.js +0 -560
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +0 -1
- package/dist/src/ui/hooks/toolMapping.d.ts +0 -18
- package/dist/src/ui/hooks/toolMapping.js +0 -105
- package/dist/src/ui/hooks/toolMapping.js.map +0 -1
- package/dist/src/ui/hooks/useAgentStream.d.ts +0 -44
- package/dist/src/ui/hooks/useAgentStream.js +0 -410
- package/dist/src/ui/hooks/useAgentStream.js.map +0 -1
- package/dist/src/ui/hooks/useAlternateBuffer.d.ts +0 -8
- package/dist/src/ui/hooks/useAlternateBuffer.js +0 -18
- package/dist/src/ui/hooks/useAlternateBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useAnimatedScrollbar.d.ts +0 -10
- package/dist/src/ui/hooks/useAnimatedScrollbar.js +0 -101
- package/dist/src/ui/hooks/useAnimatedScrollbar.js.map +0 -1
- package/dist/src/ui/hooks/useApprovalModeIndicator.d.ts +0 -15
- package/dist/src/ui/hooks/useApprovalModeIndicator.js +0 -84
- package/dist/src/ui/hooks/useApprovalModeIndicator.js.map +0 -1
- package/dist/src/ui/hooks/useAtCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useAtCompletion.js +0 -348
- package/dist/src/ui/hooks/useAtCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useBackgroundTaskManager.d.ts +0 -23
- package/dist/src/ui/hooks/useBackgroundTaskManager.js +0 -58
- package/dist/src/ui/hooks/useBackgroundTaskManager.js.map +0 -1
- package/dist/src/ui/hooks/useBanner.d.ts +0 -14
- package/dist/src/ui/hooks/useBanner.js +0 -56
- package/dist/src/ui/hooks/useBanner.js.map +0 -1
- package/dist/src/ui/hooks/useBatchedScroll.d.ts +0 -14
- package/dist/src/ui/hooks/useBatchedScroll.js +0 -27
- package/dist/src/ui/hooks/useBatchedScroll.js.map +0 -1
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +0 -56
- package/dist/src/ui/hooks/useCommandCompletion.js +0 -344
- package/dist/src/ui/hooks/useCommandCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useCompletion.js +0 -84
- package/dist/src/ui/hooks/useCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useComposerStatus.d.ts +0 -21
- package/dist/src/ui/hooks/useComposerStatus.js +0 -80
- package/dist/src/ui/hooks/useComposerStatus.js.map +0 -1
- package/dist/src/ui/hooks/useConfirmingTool.d.ts +0 -12
- package/dist/src/ui/hooks/useConfirmingTool.js +0 -19
- package/dist/src/ui/hooks/useConfirmingTool.js.map +0 -1
- package/dist/src/ui/hooks/useConsoleMessages.d.ts +0 -27
- package/dist/src/ui/hooks/useConsoleMessages.js +0 -140
- package/dist/src/ui/hooks/useConsoleMessages.js.map +0 -1
- package/dist/src/ui/hooks/useEditorSettings.d.ts +0 -16
- package/dist/src/ui/hooks/useEditorSettings.js +0 -46
- package/dist/src/ui/hooks/useEditorSettings.js.map +0 -1
- package/dist/src/ui/hooks/useExecutionLifecycle.d.ts +0 -28
- package/dist/src/ui/hooks/useExecutionLifecycle.js +0 -532
- package/dist/src/ui/hooks/useExecutionLifecycle.js.map +0 -1
- package/dist/src/ui/hooks/useExtensionRegistry.d.ts +0 -13
- package/dist/src/ui/hooks/useExtensionRegistry.js +0 -70
- package/dist/src/ui/hooks/useExtensionRegistry.js.map +0 -1
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +0 -32
- package/dist/src/ui/hooks/useExtensionUpdates.js +0 -174
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +0 -1
- package/dist/src/ui/hooks/useFlickerDetector.d.ts +0 -15
- package/dist/src/ui/hooks/useFlickerDetector.js +0 -38
- package/dist/src/ui/hooks/useFlickerDetector.js.map +0 -1
- package/dist/src/ui/hooks/useFocus.d.ts +0 -13
- package/dist/src/ui/hooks/useFocus.js +0 -58
- package/dist/src/ui/hooks/useFocus.js.map +0 -1
- package/dist/src/ui/hooks/useFolderTrust.d.ts +0 -16
- package/dist/src/ui/hooks/useFolderTrust.js +0 -105
- package/dist/src/ui/hooks/useFolderTrust.js.map +0 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +0 -43
- package/dist/src/ui/hooks/useGeminiStream.js +0 -1423
- package/dist/src/ui/hooks/useGeminiStream.js.map +0 -1
- package/dist/src/ui/hooks/useGitBranchName.d.ts +0 -6
- package/dist/src/ui/hooks/useGitBranchName.js +0 -78
- package/dist/src/ui/hooks/useGitBranchName.js.map +0 -1
- package/dist/src/ui/hooks/useHistoryManager.d.ts +0 -26
- package/dist/src/ui/hooks/useHistoryManager.js +0 -114
- package/dist/src/ui/hooks/useHistoryManager.js.map +0 -1
- package/dist/src/ui/hooks/useHookDisplayState.d.ts +0 -7
- package/dist/src/ui/hooks/useHookDisplayState.js +0 -84
- package/dist/src/ui/hooks/useHookDisplayState.js.map +0 -1
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +0 -16
- package/dist/src/ui/hooks/useIdeTrustListener.js +0 -67
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +0 -1
- package/dist/src/ui/hooks/useInactivityTimer.d.ts +0 -14
- package/dist/src/ui/hooks/useInactivityTimer.js +0 -30
- package/dist/src/ui/hooks/useInactivityTimer.js.map +0 -1
- package/dist/src/ui/hooks/useIncludeDirsTrust.d.ts +0 -9
- package/dist/src/ui/hooks/useIncludeDirsTrust.js +0 -111
- package/dist/src/ui/hooks/useIncludeDirsTrust.js.map +0 -1
- package/dist/src/ui/hooks/useInlineEditBuffer.d.ts +0 -44
- package/dist/src/ui/hooks/useInlineEditBuffer.js +0 -113
- package/dist/src/ui/hooks/useInlineEditBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useInputHistory.d.ts +0 -20
- package/dist/src/ui/hooks/useInputHistory.js +0 -91
- package/dist/src/ui/hooks/useInputHistory.js.map +0 -1
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +0 -19
- package/dist/src/ui/hooks/useInputHistoryStore.js +0 -82
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +0 -1
- package/dist/src/ui/hooks/useKeyMatchers.d.ts +0 -17
- package/dist/src/ui/hooks/useKeyMatchers.js +0 -13
- package/dist/src/ui/hooks/useKeyMatchers.js.map +0 -1
- package/dist/src/ui/hooks/useKeypress.d.ts +0 -19
- package/dist/src/ui/hooks/useKeypress.js +0 -28
- package/dist/src/ui/hooks/useKeypress.js.map +0 -1
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +0 -14
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +0 -19
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +0 -1
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +0 -23
- package/dist/src/ui/hooks/useLoadingIndicator.js +0 -55
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +0 -1
- package/dist/src/ui/hooks/useLogger.d.ts +0 -10
- package/dist/src/ui/hooks/useLogger.js +0 -27
- package/dist/src/ui/hooks/useLogger.js.map +0 -1
- package/dist/src/ui/hooks/useMcpStatus.d.ts +0 -11
- package/dist/src/ui/hooks/useMcpStatus.js +0 -34
- package/dist/src/ui/hooks/useMcpStatus.js.map +0 -1
- package/dist/src/ui/hooks/useMemoryMonitor.d.ts +0 -13
- package/dist/src/ui/hooks/useMemoryMonitor.js +0 -28
- package/dist/src/ui/hooks/useMemoryMonitor.js.map +0 -1
- package/dist/src/ui/hooks/useMessageQueue.d.ts +0 -26
- package/dist/src/ui/hooks/useMessageQueue.js +0 -70
- package/dist/src/ui/hooks/useMessageQueue.js.map +0 -1
- package/dist/src/ui/hooks/useModelCommand.d.ts +0 -12
- package/dist/src/ui/hooks/useModelCommand.js +0 -21
- package/dist/src/ui/hooks/useModelCommand.js.map +0 -1
- package/dist/src/ui/hooks/useMouse.d.ts +0 -17
- package/dist/src/ui/hooks/useMouse.js +0 -27
- package/dist/src/ui/hooks/useMouse.js.map +0 -1
- package/dist/src/ui/hooks/useMouseClick.d.ts +0 -13
- package/dist/src/ui/hooks/useMouseClick.js +0 -36
- package/dist/src/ui/hooks/useMouseClick.js.map +0 -1
- package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +0 -17
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js +0 -115
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js.map +0 -1
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +0 -23
- package/dist/src/ui/hooks/usePhraseCycler.js +0 -142
- package/dist/src/ui/hooks/usePhraseCycler.js.map +0 -1
- package/dist/src/ui/hooks/usePrivacySettings.d.ts +0 -16
- package/dist/src/ui/hooks/usePrivacySettings.js +0 -110
- package/dist/src/ui/hooks/usePrivacySettings.js.map +0 -1
- package/dist/src/ui/hooks/usePromptCompletion.d.ts +0 -22
- package/dist/src/ui/hooks/usePromptCompletion.js +0 -169
- package/dist/src/ui/hooks/usePromptCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +0 -30
- package/dist/src/ui/hooks/useQuotaAndFallback.js +0 -223
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +0 -1
- package/dist/src/ui/hooks/useRegistrySearch.d.ts +0 -19
- package/dist/src/ui/hooks/useRegistrySearch.js +0 -35
- package/dist/src/ui/hooks/useRegistrySearch.js.map +0 -1
- package/dist/src/ui/hooks/useRepeatedKeyPress.d.ts +0 -15
- package/dist/src/ui/hooks/useRepeatedKeyPress.js +0 -50
- package/dist/src/ui/hooks/useRepeatedKeyPress.js.map +0 -1
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +0 -19
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +0 -102
- package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useRewind.d.ts +0 -14
- package/dist/src/ui/hooks/useRewind.js +0 -31
- package/dist/src/ui/hooks/useRewind.js.map +0 -1
- package/dist/src/ui/hooks/useRunEventNotifications.d.ts +0 -24
- package/dist/src/ui/hooks/useRunEventNotifications.js +0 -95
- package/dist/src/ui/hooks/useRunEventNotifications.js.map +0 -1
- package/dist/src/ui/hooks/useSearchBuffer.d.ts +0 -11
- package/dist/src/ui/hooks/useSearchBuffer.js +0 -24
- package/dist/src/ui/hooks/useSearchBuffer.js.map +0 -1
- package/dist/src/ui/hooks/useSelectionList.d.ts +0 -38
- package/dist/src/ui/hooks/useSelectionList.js +0 -318
- package/dist/src/ui/hooks/useSelectionList.js.map +0 -1
- package/dist/src/ui/hooks/useSessionBrowser.d.ts +0 -26
- package/dist/src/ui/hooks/useSessionBrowser.js +0 -75
- package/dist/src/ui/hooks/useSessionBrowser.js.map +0 -1
- package/dist/src/ui/hooks/useSessionResume.d.ts +0 -31
- package/dist/src/ui/hooks/useSessionResume.js +0 -75
- package/dist/src/ui/hooks/useSessionResume.js.map +0 -1
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +0 -10
- package/dist/src/ui/hooks/useSettingsCommand.js +0 -21
- package/dist/src/ui/hooks/useSettingsCommand.js.map +0 -1
- package/dist/src/ui/hooks/useSettingsNavigation.d.ts +0 -18
- package/dist/src/ui/hooks/useSettingsNavigation.js +0 -72
- package/dist/src/ui/hooks/useSettingsNavigation.js.map +0 -1
- package/dist/src/ui/hooks/useShellCompletion.d.ts +0 -50
- package/dist/src/ui/hooks/useShellCompletion.js +0 -502
- package/dist/src/ui/hooks/useShellCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useShellHistory.d.ts +0 -14
- package/dist/src/ui/hooks/useShellHistory.js +0 -114
- package/dist/src/ui/hooks/useShellHistory.js.map +0 -1
- package/dist/src/ui/hooks/useShellInactivityStatus.d.ts +0 -26
- package/dist/src/ui/hooks/useShellInactivityStatus.js +0 -45
- package/dist/src/ui/hooks/useShellInactivityStatus.js.map +0 -1
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +0 -23
- package/dist/src/ui/hooks/useSlashCompletion.js +0 -435
- package/dist/src/ui/hooks/useSlashCompletion.js.map +0 -1
- package/dist/src/ui/hooks/useSnowfall.d.ts +0 -6
- package/dist/src/ui/hooks/useSnowfall.js +0 -126
- package/dist/src/ui/hooks/useSnowfall.js.map +0 -1
- package/dist/src/ui/hooks/useStateAndRef.d.ts +0 -7
- package/dist/src/ui/hooks/useStateAndRef.js +0 -27
- package/dist/src/ui/hooks/useStateAndRef.js.map +0 -1
- package/dist/src/ui/hooks/useSuspend.d.ts +0 -14
- package/dist/src/ui/hooks/useSuspend.js +0 -102
- package/dist/src/ui/hooks/useSuspend.js.map +0 -1
- package/dist/src/ui/hooks/useTabbedNavigation.d.ts +0 -53
- package/dist/src/ui/hooks/useTabbedNavigation.js +0 -160
- package/dist/src/ui/hooks/useTabbedNavigation.js.map +0 -1
- package/dist/src/ui/hooks/useTerminalSize.d.ts +0 -9
- package/dist/src/ui/hooks/useTerminalSize.js +0 -26
- package/dist/src/ui/hooks/useTerminalSize.js.map +0 -1
- package/dist/src/ui/hooks/useTerminalTheme.d.ts +0 -8
- package/dist/src/ui/hooks/useTerminalTheme.js +0 -79
- package/dist/src/ui/hooks/useTerminalTheme.js.map +0 -1
- package/dist/src/ui/hooks/useThemeCommand.d.ts +0 -16
- package/dist/src/ui/hooks/useThemeCommand.js +0 -80
- package/dist/src/ui/hooks/useThemeCommand.js.map +0 -1
- package/dist/src/ui/hooks/useTimedMessage.d.ts +0 -10
- package/dist/src/ui/hooks/useTimedMessage.js +0 -32
- package/dist/src/ui/hooks/useTimedMessage.js.map +0 -1
- package/dist/src/ui/hooks/useTimer.d.ts +0 -12
- package/dist/src/ui/hooks/useTimer.js +0 -58
- package/dist/src/ui/hooks/useTimer.js.map +0 -1
- package/dist/src/ui/hooks/useTips.d.ts +0 -10
- package/dist/src/ui/hooks/useTips.js +0 -18
- package/dist/src/ui/hooks/useTips.js.map +0 -1
- package/dist/src/ui/hooks/useToolScheduler.d.ts +0 -48
- package/dist/src/ui/hooks/useToolScheduler.js +0 -213
- package/dist/src/ui/hooks/useToolScheduler.js.map +0 -1
- package/dist/src/ui/hooks/useTurnActivityMonitor.d.ts +0 -20
- package/dist/src/ui/hooks/useTurnActivityMonitor.js +0 -48
- package/dist/src/ui/hooks/useTurnActivityMonitor.js.map +0 -1
- package/dist/src/ui/hooks/useVisibilityToggle.d.ts +0 -12
- package/dist/src/ui/hooks/useVisibilityToggle.js +0 -60
- package/dist/src/ui/hooks/useVisibilityToggle.js.map +0 -1
- package/dist/src/ui/hooks/useVoiceMode.d.ts +0 -28
- package/dist/src/ui/hooks/useVoiceMode.js +0 -339
- package/dist/src/ui/hooks/useVoiceMode.js.map +0 -1
- package/dist/src/ui/hooks/useVoiceModelCommand.d.ts +0 -12
- package/dist/src/ui/hooks/useVoiceModelCommand.js +0 -21
- package/dist/src/ui/hooks/useVoiceModelCommand.js.map +0 -1
- package/dist/src/ui/hooks/vim.d.ts +0 -28
- package/dist/src/ui/hooks/vim.js +0 -1312
- package/dist/src/ui/hooks/vim.js.map +0 -1
- package/dist/src/ui/key/keyBindings.d.ts +0 -137
- package/dist/src/ui/key/keyBindings.js +0 -705
- package/dist/src/ui/key/keyBindings.js.map +0 -1
- package/dist/src/ui/key/keyMatchers.d.ts +0 -34
- package/dist/src/ui/key/keyMatchers.js +0 -43
- package/dist/src/ui/key/keyMatchers.js.map +0 -1
- package/dist/src/ui/key/keyToAnsi.d.ts +0 -15
- package/dist/src/ui/key/keyToAnsi.js +0 -45
- package/dist/src/ui/key/keyToAnsi.js.map +0 -1
- package/dist/src/ui/key/keybindingUtils.d.ts +0 -14
- package/dist/src/ui/key/keybindingUtils.js +0 -86
- package/dist/src/ui/key/keybindingUtils.js.map +0 -1
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +0 -7
- package/dist/src/ui/layouts/DefaultAppLayout.js +0 -30
- package/dist/src/ui/layouts/DefaultAppLayout.js.map +0 -1
- package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +0 -7
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js +0 -18
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +0 -1
- package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +0 -12
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +0 -47
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +0 -1
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.d.ts +0 -12
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js +0 -45
- package/dist/src/ui/privacy/CloudFreePrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.d.ts +0 -10
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js +0 -21
- package/dist/src/ui/privacy/CloudPaidPrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/GeminiPrivacyNotice.d.ts +0 -10
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js +0 -21
- package/dist/src/ui/privacy/GeminiPrivacyNotice.js.map +0 -1
- package/dist/src/ui/privacy/PrivacyNotice.d.ts +0 -12
- package/dist/src/ui/privacy/PrivacyNotice.js +0 -26
- package/dist/src/ui/privacy/PrivacyNotice.js.map +0 -1
- package/dist/src/ui/semantic-colors.d.ts +0 -7
- package/dist/src/ui/semantic-colors.js +0 -24
- package/dist/src/ui/semantic-colors.js.map +0 -1
- package/dist/src/ui/state/extensions.d.ts +0 -67
- package/dist/src/ui/state/extensions.js +0 -97
- package/dist/src/ui/state/extensions.js.map +0 -1
- package/dist/src/ui/textConstants.d.ts +0 -14
- package/dist/src/ui/textConstants.js +0 -15
- package/dist/src/ui/textConstants.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/ansi-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/ansi-dark.js +0 -154
- package/dist/src/ui/themes/builtin/dark/ansi-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.js +0 -140
- package/dist/src/ui/themes/builtin/dark/atom-one-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/ayu-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/ayu-dark.js +0 -106
- package/dist/src/ui/themes/builtin/dark/ayu-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/default-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/default-dark.js +0 -143
- package/dist/src/ui/themes/builtin/dark/default-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/dracula-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/dracula-dark.js +0 -117
- package/dist/src/ui/themes/builtin/dark/dracula-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js +0 -140
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/github-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/github-dark.js +0 -140
- package/dist/src/ui/themes/builtin/dark/github-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/holiday-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/holiday-dark.js +0 -163
- package/dist/src/ui/themes/builtin/dark/holiday-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.d.ts +0 -11
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.js +0 -306
- package/dist/src/ui/themes/builtin/dark/shades-of-purple-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/solarized-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/solarized-dark.js +0 -198
- package/dist/src/ui/themes/builtin/dark/solarized-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.d.ts +0 -7
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.js +0 -147
- package/dist/src/ui/themes/builtin/dark/tokyonight-dark.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/ansi-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/ansi-light.js +0 -143
- package/dist/src/ui/themes/builtin/light/ansi-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/ayu-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/ayu-light.js +0 -132
- package/dist/src/ui/themes/builtin/light/ayu-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/default-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/default-light.js +0 -100
- package/dist/src/ui/themes/builtin/light/default-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js +0 -140
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/github-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/github-light.js +0 -143
- package/dist/src/ui/themes/builtin/light/github-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/googlecode-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/googlecode-light.js +0 -139
- package/dist/src/ui/themes/builtin/light/googlecode-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/solarized-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/solarized-light.js +0 -198
- package/dist/src/ui/themes/builtin/light/solarized-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/light/xcode-light.d.ts +0 -7
- package/dist/src/ui/themes/builtin/light/xcode-light.js +0 -148
- package/dist/src/ui/themes/builtin/light/xcode-light.js.map +0 -1
- package/dist/src/ui/themes/builtin/no-color.d.ts +0 -7
- package/dist/src/ui/themes/builtin/no-color.js +0 -125
- package/dist/src/ui/themes/builtin/no-color.js.map +0 -1
- package/dist/src/ui/themes/color-utils.d.ts +0 -45
- package/dist/src/ui/themes/color-utils.js +0 -106
- package/dist/src/ui/themes/color-utils.js.map +0 -1
- package/dist/src/ui/themes/semantic-tokens.d.ts +0 -42
- package/dist/src/ui/themes/semantic-tokens.js +0 -77
- package/dist/src/ui/themes/semantic-tokens.js.map +0 -1
- package/dist/src/ui/themes/theme-manager.d.ts +0 -134
- package/dist/src/ui/themes/theme-manager.js +0 -514
- package/dist/src/ui/themes/theme-manager.js.map +0 -1
- package/dist/src/ui/themes/theme.d.ts +0 -125
- package/dist/src/ui/themes/theme.js +0 -564
- package/dist/src/ui/themes/theme.js.map +0 -1
- package/dist/src/ui/types.d.ts +0 -422
- package/dist/src/ui/types.js +0 -102
- package/dist/src/ui/types.js.map +0 -1
- package/dist/src/ui/utils/CodeColorizer.d.ts +0 -33
- package/dist/src/ui/utils/CodeColorizer.js +0 -131
- package/dist/src/ui/utils/CodeColorizer.js.map +0 -1
- package/dist/src/ui/utils/ConsolePatcher.d.ts +0 -26
- package/dist/src/ui/utils/ConsolePatcher.js +0 -57
- package/dist/src/ui/utils/ConsolePatcher.js.map +0 -1
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +0 -12
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +0 -18
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +0 -1
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +0 -15
- package/dist/src/ui/utils/MarkdownDisplay.js +0 -244
- package/dist/src/ui/utils/MarkdownDisplay.js.map +0 -1
- package/dist/src/ui/utils/TableRenderer.d.ts +0 -17
- package/dist/src/ui/utils/TableRenderer.js +0 -162
- package/dist/src/ui/utils/TableRenderer.js.map +0 -1
- package/dist/src/ui/utils/antigravityUtils.d.ts +0 -14
- package/dist/src/ui/utils/antigravityUtils.js +0 -41
- package/dist/src/ui/utils/antigravityUtils.js.map +0 -1
- package/dist/src/ui/utils/borderStyles.d.ts +0 -18
- package/dist/src/ui/utils/borderStyles.js +0 -83
- package/dist/src/ui/utils/borderStyles.js.map +0 -1
- package/dist/src/ui/utils/clipboardUtils.d.ts +0 -58
- package/dist/src/ui/utils/clipboardUtils.js +0 -485
- package/dist/src/ui/utils/clipboardUtils.js.map +0 -1
- package/dist/src/ui/utils/commandUtils.d.ts +0 -41
- package/dist/src/ui/utils/commandUtils.js +0 -260
- package/dist/src/ui/utils/commandUtils.js.map +0 -1
- package/dist/src/ui/utils/computeStats.d.ts +0 -10
- package/dist/src/ui/utils/computeStats.js +0 -62
- package/dist/src/ui/utils/computeStats.js.map +0 -1
- package/dist/src/ui/utils/confirmingTool.d.ts +0 -15
- package/dist/src/ui/utils/confirmingTool.js +0 -27
- package/dist/src/ui/utils/confirmingTool.js.map +0 -1
- package/dist/src/ui/utils/contextUsage.d.ts +0 -7
- package/dist/src/ui/utils/contextUsage.js +0 -20
- package/dist/src/ui/utils/contextUsage.js.map +0 -1
- package/dist/src/ui/utils/directoryUtils.d.ts +0 -24
- package/dist/src/ui/utils/directoryUtils.js +0 -125
- package/dist/src/ui/utils/directoryUtils.js.map +0 -1
- package/dist/src/ui/utils/displayUtils.d.ts +0 -29
- package/dist/src/ui/utils/displayUtils.js +0 -43
- package/dist/src/ui/utils/displayUtils.js.map +0 -1
- package/dist/src/ui/utils/editorUtils.d.ts +0 -19
- package/dist/src/ui/utils/editorUtils.js +0 -151
- package/dist/src/ui/utils/editorUtils.js.map +0 -1
- package/dist/src/ui/utils/fileUtils.d.ts +0 -10
- package/dist/src/ui/utils/fileUtils.js +0 -17
- package/dist/src/ui/utils/fileUtils.js.map +0 -1
- package/dist/src/ui/utils/formatters.d.ts +0 -23
- package/dist/src/ui/utils/formatters.js +0 -127
- package/dist/src/ui/utils/formatters.js.map +0 -1
- package/dist/src/ui/utils/highlight.d.ts +0 -12
- package/dist/src/ui/utils/highlight.js +0 -117
- package/dist/src/ui/utils/highlight.js.map +0 -1
- package/dist/src/ui/utils/historyExportUtils.d.ts +0 -21
- package/dist/src/ui/utils/historyExportUtils.js +0 -59
- package/dist/src/ui/utils/historyExportUtils.js.map +0 -1
- package/dist/src/ui/utils/historyUtils.d.ts +0 -15
- package/dist/src/ui/utils/historyUtils.js +0 -71
- package/dist/src/ui/utils/historyUtils.js.map +0 -1
- package/dist/src/ui/utils/inlineThinkingMode.d.ts +0 -8
- package/dist/src/ui/utils/inlineThinkingMode.js +0 -9
- package/dist/src/ui/utils/inlineThinkingMode.js.map +0 -1
- package/dist/src/ui/utils/input.d.ts +0 -17
- package/dist/src/ui/utils/input.js +0 -51
- package/dist/src/ui/utils/input.js.map +0 -1
- package/dist/src/ui/utils/isNarrowWidth.d.ts +0 -6
- package/dist/src/ui/utils/isNarrowWidth.js +0 -9
- package/dist/src/ui/utils/isNarrowWidth.js.map +0 -1
- package/dist/src/ui/utils/latexToUnicode.d.ts +0 -21
- package/dist/src/ui/utils/latexToUnicode.js +0 -538
- package/dist/src/ui/utils/latexToUnicode.js.map +0 -1
- package/dist/src/ui/utils/markdownParsingUtils.d.ts +0 -6
- package/dist/src/ui/utils/markdownParsingUtils.js +0 -185
- package/dist/src/ui/utils/markdownParsingUtils.js.map +0 -1
- package/dist/src/ui/utils/markdownUtilities.d.ts +0 -6
- package/dist/src/ui/utils/markdownUtilities.js +0 -110
- package/dist/src/ui/utils/markdownUtilities.js.map +0 -1
- package/dist/src/ui/utils/memorySnapshot.d.ts +0 -19
- package/dist/src/ui/utils/memorySnapshot.js +0 -28
- package/dist/src/ui/utils/memorySnapshot.js.map +0 -1
- package/dist/src/ui/utils/mouse.d.ts +0 -34
- package/dist/src/ui/utils/mouse.js +0 -183
- package/dist/src/ui/utils/mouse.js.map +0 -1
- package/dist/src/ui/utils/pendingAttentionNotification.d.ts +0 -12
- package/dist/src/ui/utils/pendingAttentionNotification.js +0 -101
- package/dist/src/ui/utils/pendingAttentionNotification.js.map +0 -1
- package/dist/src/ui/utils/rewindFileOps.d.ts +0 -47
- package/dist/src/ui/utils/rewindFileOps.js +0 -191
- package/dist/src/ui/utils/rewindFileOps.js.map +0 -1
- package/dist/src/ui/utils/shortcutsHelp.d.ts +0 -7
- package/dist/src/ui/utils/shortcutsHelp.js +0 -12
- package/dist/src/ui/utils/shortcutsHelp.js.map +0 -1
- package/dist/src/ui/utils/terminalCapabilityManager.d.ts +0 -59
- package/dist/src/ui/utils/terminalCapabilityManager.js +0 -261
- package/dist/src/ui/utils/terminalCapabilityManager.js.map +0 -1
- package/dist/src/ui/utils/terminalSetup.d.ts +0 -58
- package/dist/src/ui/utils/terminalSetup.js +0 -419
- package/dist/src/ui/utils/terminalSetup.js.map +0 -1
- package/dist/src/ui/utils/terminalUtils.d.ts +0 -23
- package/dist/src/ui/utils/terminalUtils.js +0 -38
- package/dist/src/ui/utils/terminalUtils.js.map +0 -1
- package/dist/src/ui/utils/textOutput.d.ts +0 -28
- package/dist/src/ui/utils/textOutput.js +0 -53
- package/dist/src/ui/utils/textOutput.js.map +0 -1
- package/dist/src/ui/utils/textUtils.d.ts +0 -68
- package/dist/src/ui/utils/textUtils.js +0 -236
- package/dist/src/ui/utils/textUtils.js.map +0 -1
- package/dist/src/ui/utils/toolLayoutUtils.d.ts +0 -49
- package/dist/src/ui/utils/toolLayoutUtils.js +0 -80
- package/dist/src/ui/utils/toolLayoutUtils.js.map +0 -1
- package/dist/src/ui/utils/ui-sizing.d.ts +0 -7
- package/dist/src/ui/utils/ui-sizing.js +0 -13
- package/dist/src/ui/utils/ui-sizing.js.map +0 -1
- package/dist/src/ui/utils/updateCheck.d.ts +0 -20
- package/dist/src/ui/utils/updateCheck.js +0 -96
- package/dist/src/ui/utils/updateCheck.js.map +0 -1
- package/dist/src/ui/utils/urlSecurityUtils.d.ts +0 -32
- package/dist/src/ui/utils/urlSecurityUtils.js +0 -71
- package/dist/src/ui/utils/urlSecurityUtils.js.map +0 -1
- package/dist/src/utils/activityLogger.d.ts +0 -99
- package/dist/src/utils/activityLogger.js +0 -796
- package/dist/src/utils/activityLogger.js.map +0 -1
- package/dist/src/utils/agentSettings.d.ts +0 -24
- package/dist/src/utils/agentSettings.js +0 -45
- package/dist/src/utils/agentSettings.js.map +0 -1
- package/dist/src/utils/agentUtils.d.ts +0 -15
- package/dist/src/utils/agentUtils.js +0 -50
- package/dist/src/utils/agentUtils.js.map +0 -1
- package/dist/src/utils/autoMemory.d.ts +0 -7
- package/dist/src/utils/autoMemory.js +0 -15
- package/dist/src/utils/autoMemory.js.map +0 -1
- package/dist/src/utils/cleanup.d.ts +0 -25
- package/dist/src/utils/cleanup.js +0 -171
- package/dist/src/utils/cleanup.js.map +0 -1
- package/dist/src/utils/commands.d.ts +0 -20
- package/dist/src/utils/commands.js +0 -68
- package/dist/src/utils/commands.js.map +0 -1
- package/dist/src/utils/commentJson.d.ts +0 -9
- package/dist/src/utils/commentJson.js +0 -137
- package/dist/src/utils/commentJson.js.map +0 -1
- package/dist/src/utils/deepMerge.d.ts +0 -9
- package/dist/src/utils/deepMerge.js +0 -65
- package/dist/src/utils/deepMerge.js.map +0 -1
- package/dist/src/utils/devtoolsService.d.ts +0 -30
- package/dist/src/utils/devtoolsService.js +0 -186
- package/dist/src/utils/devtoolsService.js.map +0 -1
- package/dist/src/utils/dialogScopeUtils.d.ts +0 -29
- package/dist/src/utils/dialogScopeUtils.js +0 -50
- package/dist/src/utils/dialogScopeUtils.js.map +0 -1
- package/dist/src/utils/envVarResolver.d.ts +0 -42
- package/dist/src/utils/envVarResolver.js +0 -121
- package/dist/src/utils/envVarResolver.js.map +0 -1
- package/dist/src/utils/errors.d.ts +0 -32
- package/dist/src/utils/errors.js +0 -180
- package/dist/src/utils/errors.js.map +0 -1
- package/dist/src/utils/events.d.ts +0 -34
- package/dist/src/utils/events.js +0 -23
- package/dist/src/utils/events.js.map +0 -1
- package/dist/src/utils/featureToggleUtils.d.ts +0 -55
- package/dist/src/utils/featureToggleUtils.js +0 -95
- package/dist/src/utils/featureToggleUtils.js.map +0 -1
- package/dist/src/utils/gitUtils.d.ts +0 -30
- package/dist/src/utils/gitUtils.js +0 -110
- package/dist/src/utils/gitUtils.js.map +0 -1
- package/dist/src/utils/handleAutoUpdate.d.ts +0 -19
- package/dist/src/utils/handleAutoUpdate.js +0 -179
- package/dist/src/utils/handleAutoUpdate.js.map +0 -1
- package/dist/src/utils/hookSettings.d.ts +0 -30
- package/dist/src/utils/hookSettings.js +0 -114
- package/dist/src/utils/hookSettings.js.map +0 -1
- package/dist/src/utils/hookUtils.d.ts +0 -12
- package/dist/src/utils/hookUtils.js +0 -51
- package/dist/src/utils/hookUtils.js.map +0 -1
- package/dist/src/utils/installationInfo.d.ts +0 -26
- package/dist/src/utils/installationInfo.js +0 -187
- package/dist/src/utils/installationInfo.js.map +0 -1
- package/dist/src/utils/jsonoutput.d.ts +0 -7
- package/dist/src/utils/jsonoutput.js +0 -42
- package/dist/src/utils/jsonoutput.js.map +0 -1
- package/dist/src/utils/logCleanup.d.ts +0 -12
- package/dist/src/utils/logCleanup.js +0 -58
- package/dist/src/utils/logCleanup.js.map +0 -1
- package/dist/src/utils/math.d.ts +0 -13
- package/dist/src/utils/math.js +0 -14
- package/dist/src/utils/math.js.map +0 -1
- package/dist/src/utils/persistentState.d.ts +0 -24
- package/dist/src/utils/persistentState.js +0 -66
- package/dist/src/utils/persistentState.js.map +0 -1
- package/dist/src/utils/processUtils.d.ts +0 -41
- package/dist/src/utils/processUtils.js +0 -99
- package/dist/src/utils/processUtils.js.map +0 -1
- package/dist/src/utils/readStdin.d.ts +0 -6
- package/dist/src/utils/readStdin.js +0 -87
- package/dist/src/utils/readStdin.js.map +0 -1
- package/dist/src/utils/relaunch.d.ts +0 -8
- package/dist/src/utils/relaunch.js +0 -61
- package/dist/src/utils/relaunch.js.map +0 -1
- package/dist/src/utils/resize-observer-polyfill.d.ts +0 -2
- package/dist/src/utils/resize-observer-polyfill.js +0 -7
- package/dist/src/utils/resize-observer-polyfill.js.map +0 -1
- package/dist/src/utils/resolvePath.d.ts +0 -6
- package/dist/src/utils/resolvePath.js +0 -21
- package/dist/src/utils/resolvePath.js.map +0 -1
- package/dist/src/utils/sandbox.d.ts +0 -7
- package/dist/src/utils/sandbox.js +0 -927
- package/dist/src/utils/sandbox.js.map +0 -1
- package/dist/src/utils/sandboxUtils.d.ts +0 -14
- package/dist/src/utils/sandboxUtils.js +0 -126
- package/dist/src/utils/sandboxUtils.js.map +0 -1
- package/dist/src/utils/sessionCleanup.d.ts +0 -41
- package/dist/src/utils/sessionCleanup.js +0 -481
- package/dist/src/utils/sessionCleanup.js.map +0 -1
- package/dist/src/utils/sessionUtils.d.ts +0 -174
- package/dist/src/utils/sessionUtils.js +0 -465
- package/dist/src/utils/sessionUtils.js.map +0 -1
- package/dist/src/utils/sessions.d.ts +0 -8
- package/dist/src/utils/sessions.js +0 -67
- package/dist/src/utils/sessions.js.map +0 -1
- package/dist/src/utils/settingsUtils.d.ts +0 -78
- package/dist/src/utils/settingsUtils.js +0 -284
- package/dist/src/utils/settingsUtils.js.map +0 -1
- package/dist/src/utils/skillSettings.d.ts +0 -23
- package/dist/src/utils/skillSettings.js +0 -52
- package/dist/src/utils/skillSettings.js.map +0 -1
- package/dist/src/utils/skillUtils.d.ts +0 -37
- package/dist/src/utils/skillUtils.js +0 -232
- package/dist/src/utils/skillUtils.js.map +0 -1
- package/dist/src/utils/spawnWrapper.d.ts +0 -8
- package/dist/src/utils/spawnWrapper.js +0 -8
- package/dist/src/utils/spawnWrapper.js.map +0 -1
- package/dist/src/utils/startupWarnings.d.ts +0 -6
- package/dist/src/utils/startupWarnings.js +0 -40
- package/dist/src/utils/startupWarnings.js.map +0 -1
- package/dist/src/utils/terminalNotifications.d.ts +0 -32
- package/dist/src/utils/terminalNotifications.js +0 -131
- package/dist/src/utils/terminalNotifications.js.map +0 -1
- package/dist/src/utils/terminalTheme.d.ts +0 -15
- package/dist/src/utils/terminalTheme.js +0 -50
- package/dist/src/utils/terminalTheme.js.map +0 -1
- package/dist/src/utils/tierUtils.d.ts +0 -12
- package/dist/src/utils/tierUtils.js +0 -15
- package/dist/src/utils/tierUtils.js.map +0 -1
- package/dist/src/utils/updateEventEmitter.d.ts +0 -12
- package/dist/src/utils/updateEventEmitter.js +0 -12
- package/dist/src/utils/updateEventEmitter.js.map +0 -1
- package/dist/src/utils/userStartupWarnings.d.ts +0 -10
- package/dist/src/utils/userStartupWarnings.js +0 -103
- package/dist/src/utils/userStartupWarnings.js.map +0 -1
- package/dist/src/utils/windowTitle.d.ts +0 -22
- package/dist/src/utils/windowTitle.js +0 -84
- package/dist/src/utils/windowTitle.js.map +0 -1
- package/dist/src/utils/worktreeSetup.d.ts +0 -14
- package/dist/src/utils/worktreeSetup.js +0 -32
- package/dist/src/utils/worktreeSetup.js.map +0 -1
- package/dist/src/validateNonInterActiveAuth.d.ts +0 -8
- package/dist/src/validateNonInterActiveAuth.js +0 -45
- package/dist/src/validateNonInterActiveAuth.js.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- /package/dist/{src/commands → commands}/extensions/examples/custom-commands/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/exclude-tools/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/hooks/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/hooks/hooks/hooks.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/mcp-server/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/mcp-server/package.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/policies/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/skills/gemini-extension.json +0 -0
- /package/dist/{src/commands → commands}/extensions/examples/themes-example/gemini-extension.json +0 -0
- /package/dist/{src/config/extension-manager-themes.spec.d.ts → services/types.js} +0 -0
|
@@ -1,2891 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Google LLC
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { AuthProviderType, type MCPServerConfig, type BugCommandSettings, type TelemetrySettings, type AuthType, type AgentOverride, type CustomTheme, type SandboxConfig, type VertexAiRoutingConfig } from '@google/gemini-cli-core';
|
|
7
|
-
import type { SessionRetentionSettings } from './settings.js';
|
|
8
|
-
export type SettingsType = 'boolean' | 'string' | 'number' | 'array' | 'object' | 'enum';
|
|
9
|
-
export type SettingsValue = boolean | string | number | string[] | object | undefined;
|
|
10
|
-
/**
|
|
11
|
-
* Setting datatypes that "toggle" through a fixed list of options
|
|
12
|
-
* (e.g. an enum or true/false) rather than allowing for free form input
|
|
13
|
-
* (like a number or string).
|
|
14
|
-
*/
|
|
15
|
-
export declare const TOGGLE_TYPES: ReadonlySet<SettingsType | undefined>;
|
|
16
|
-
export interface SettingEnumOption {
|
|
17
|
-
value: string | number;
|
|
18
|
-
label: string;
|
|
19
|
-
}
|
|
20
|
-
export interface SettingCollectionDefinition {
|
|
21
|
-
type: SettingsType;
|
|
22
|
-
description?: string;
|
|
23
|
-
properties?: SettingsSchema;
|
|
24
|
-
/** Enum type options */
|
|
25
|
-
options?: readonly SettingEnumOption[];
|
|
26
|
-
/**
|
|
27
|
-
* Optional reference identifier for generators that emit a `$ref`.
|
|
28
|
-
* For example, a JSON schema generator can use this to point to a shared definition.
|
|
29
|
-
*/
|
|
30
|
-
ref?: string;
|
|
31
|
-
/**
|
|
32
|
-
* Optional merge strategy for dynamically added properties.
|
|
33
|
-
* Used when this collection definition is referenced via additionalProperties.
|
|
34
|
-
*/
|
|
35
|
-
mergeStrategy?: MergeStrategy;
|
|
36
|
-
}
|
|
37
|
-
export declare enum MergeStrategy {
|
|
38
|
-
REPLACE = "replace",
|
|
39
|
-
CONCAT = "concat",
|
|
40
|
-
UNION = "union",
|
|
41
|
-
SHALLOW_MERGE = "shallow_merge"
|
|
42
|
-
}
|
|
43
|
-
export interface SettingDefinition {
|
|
44
|
-
type: SettingsType;
|
|
45
|
-
label: string;
|
|
46
|
-
category: string;
|
|
47
|
-
requiresRestart: boolean;
|
|
48
|
-
default: SettingsValue;
|
|
49
|
-
description?: string;
|
|
50
|
-
parentKey?: string;
|
|
51
|
-
childKey?: string;
|
|
52
|
-
key?: string;
|
|
53
|
-
properties?: SettingsSchema;
|
|
54
|
-
showInDialog?: boolean;
|
|
55
|
-
ignoreInDocs?: boolean;
|
|
56
|
-
mergeStrategy?: MergeStrategy;
|
|
57
|
-
/** Enum type options */
|
|
58
|
-
options?: readonly SettingEnumOption[];
|
|
59
|
-
/**
|
|
60
|
-
* For collection types (e.g. arrays), describes the shape of each item.
|
|
61
|
-
*/
|
|
62
|
-
items?: SettingCollectionDefinition;
|
|
63
|
-
/**
|
|
64
|
-
* For map-like objects without explicit `properties`, describes the shape of the values.
|
|
65
|
-
*/
|
|
66
|
-
additionalProperties?: SettingCollectionDefinition;
|
|
67
|
-
/**
|
|
68
|
-
* Optional unit to display after the value (e.g. '%').
|
|
69
|
-
*/
|
|
70
|
-
unit?: string;
|
|
71
|
-
/**
|
|
72
|
-
* Optional reference identifier for generators that emit a `$ref`.
|
|
73
|
-
*/
|
|
74
|
-
ref?: string;
|
|
75
|
-
}
|
|
76
|
-
export interface SettingsSchema {
|
|
77
|
-
[key: string]: SettingDefinition;
|
|
78
|
-
}
|
|
79
|
-
export type MemoryImportFormat = 'tree' | 'flat';
|
|
80
|
-
export type DnsResolutionOrder = 'ipv4first' | 'verbatim';
|
|
81
|
-
/**
|
|
82
|
-
* The canonical schema for all settings.
|
|
83
|
-
* The structure of this object defines the structure of the `Settings` type.
|
|
84
|
-
* `as const` is crucial for TypeScript to infer the most specific types possible.
|
|
85
|
-
*/
|
|
86
|
-
declare const SETTINGS_SCHEMA: {
|
|
87
|
-
readonly mcpServers: {
|
|
88
|
-
readonly type: "object";
|
|
89
|
-
readonly label: "MCP Servers";
|
|
90
|
-
readonly category: "Advanced";
|
|
91
|
-
readonly requiresRestart: true;
|
|
92
|
-
readonly default: Record<string, MCPServerConfig>;
|
|
93
|
-
readonly description: "Configuration for MCP servers.";
|
|
94
|
-
readonly showInDialog: false;
|
|
95
|
-
readonly mergeStrategy: MergeStrategy.SHALLOW_MERGE;
|
|
96
|
-
readonly additionalProperties: {
|
|
97
|
-
readonly type: "object";
|
|
98
|
-
readonly ref: "MCPServerConfig";
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
readonly policyPaths: {
|
|
102
|
-
type: "array";
|
|
103
|
-
label: string;
|
|
104
|
-
category: "Advanced";
|
|
105
|
-
requiresRestart: true;
|
|
106
|
-
default: string[];
|
|
107
|
-
description: string;
|
|
108
|
-
showInDialog: false;
|
|
109
|
-
items: {
|
|
110
|
-
type: "string";
|
|
111
|
-
};
|
|
112
|
-
mergeStrategy: MergeStrategy;
|
|
113
|
-
};
|
|
114
|
-
readonly adminPolicyPaths: {
|
|
115
|
-
type: "array";
|
|
116
|
-
label: string;
|
|
117
|
-
category: "Advanced";
|
|
118
|
-
requiresRestart: true;
|
|
119
|
-
default: string[];
|
|
120
|
-
description: string;
|
|
121
|
-
showInDialog: false;
|
|
122
|
-
items: {
|
|
123
|
-
type: "string";
|
|
124
|
-
};
|
|
125
|
-
mergeStrategy: MergeStrategy;
|
|
126
|
-
};
|
|
127
|
-
readonly general: {
|
|
128
|
-
readonly type: "object";
|
|
129
|
-
readonly label: "General";
|
|
130
|
-
readonly category: "General";
|
|
131
|
-
readonly requiresRestart: false;
|
|
132
|
-
readonly default: {};
|
|
133
|
-
readonly description: "General application settings.";
|
|
134
|
-
readonly showInDialog: false;
|
|
135
|
-
readonly properties: {
|
|
136
|
-
readonly preferredEditor: {
|
|
137
|
-
readonly type: "enum";
|
|
138
|
-
readonly label: "Preferred Editor";
|
|
139
|
-
readonly category: "General";
|
|
140
|
-
readonly requiresRestart: false;
|
|
141
|
-
readonly default: string | undefined;
|
|
142
|
-
readonly description: string;
|
|
143
|
-
readonly showInDialog: false;
|
|
144
|
-
readonly options: readonly {
|
|
145
|
-
value: "vscode" | "vscodium" | "windsurf" | "cursor" | "zed" | "antigravity" | "sublimetext" | "lapce" | "nova" | "bbedit" | "vim" | "neovim" | "emacs" | "hx" | "emacsclient" | "micro";
|
|
146
|
-
label: string;
|
|
147
|
-
}[];
|
|
148
|
-
};
|
|
149
|
-
readonly openEditorInNewWindow: {
|
|
150
|
-
readonly type: "boolean";
|
|
151
|
-
readonly label: "Open Editor in New Window";
|
|
152
|
-
readonly category: "General";
|
|
153
|
-
readonly requiresRestart: false;
|
|
154
|
-
readonly default: false;
|
|
155
|
-
readonly description: "Open VS Code-family editors in a new window when editing files.";
|
|
156
|
-
readonly showInDialog: false;
|
|
157
|
-
};
|
|
158
|
-
readonly vimMode: {
|
|
159
|
-
readonly type: "boolean";
|
|
160
|
-
readonly label: "Vim Mode";
|
|
161
|
-
readonly category: "General";
|
|
162
|
-
readonly requiresRestart: false;
|
|
163
|
-
readonly default: false;
|
|
164
|
-
readonly description: "Enable Vim keybindings";
|
|
165
|
-
readonly showInDialog: true;
|
|
166
|
-
};
|
|
167
|
-
readonly defaultApprovalMode: {
|
|
168
|
-
readonly type: "enum";
|
|
169
|
-
readonly label: "Default Approval Mode";
|
|
170
|
-
readonly category: "General";
|
|
171
|
-
readonly requiresRestart: false;
|
|
172
|
-
readonly default: "default";
|
|
173
|
-
readonly description: string;
|
|
174
|
-
readonly showInDialog: true;
|
|
175
|
-
readonly options: readonly [{
|
|
176
|
-
readonly value: "default";
|
|
177
|
-
readonly label: "Default";
|
|
178
|
-
}, {
|
|
179
|
-
readonly value: "auto_edit";
|
|
180
|
-
readonly label: "Auto Edit";
|
|
181
|
-
}, {
|
|
182
|
-
readonly value: "plan";
|
|
183
|
-
readonly label: "Plan";
|
|
184
|
-
}];
|
|
185
|
-
};
|
|
186
|
-
readonly devtools: {
|
|
187
|
-
readonly type: "boolean";
|
|
188
|
-
readonly label: "DevTools";
|
|
189
|
-
readonly category: "General";
|
|
190
|
-
readonly requiresRestart: false;
|
|
191
|
-
readonly default: false;
|
|
192
|
-
readonly description: "Enable DevTools inspector on launch.";
|
|
193
|
-
readonly showInDialog: false;
|
|
194
|
-
};
|
|
195
|
-
readonly enableAutoUpdate: {
|
|
196
|
-
readonly type: "boolean";
|
|
197
|
-
readonly label: "Enable Auto Update";
|
|
198
|
-
readonly category: "General";
|
|
199
|
-
readonly requiresRestart: false;
|
|
200
|
-
readonly default: true;
|
|
201
|
-
readonly description: "Enable automatic updates.";
|
|
202
|
-
readonly showInDialog: true;
|
|
203
|
-
};
|
|
204
|
-
readonly enableAutoUpdateNotification: {
|
|
205
|
-
readonly type: "boolean";
|
|
206
|
-
readonly label: "Enable Auto Update Notification";
|
|
207
|
-
readonly category: "General";
|
|
208
|
-
readonly requiresRestart: false;
|
|
209
|
-
readonly default: true;
|
|
210
|
-
readonly description: "Enable update notification prompts.";
|
|
211
|
-
readonly showInDialog: false;
|
|
212
|
-
};
|
|
213
|
-
readonly enableNotifications: {
|
|
214
|
-
readonly type: "boolean";
|
|
215
|
-
readonly label: "Enable Terminal Notifications";
|
|
216
|
-
readonly category: "General";
|
|
217
|
-
readonly requiresRestart: false;
|
|
218
|
-
readonly default: false;
|
|
219
|
-
readonly description: "Enable terminal run-event notifications for action-required prompts and session completion.";
|
|
220
|
-
readonly showInDialog: true;
|
|
221
|
-
};
|
|
222
|
-
readonly notificationMethod: {
|
|
223
|
-
readonly type: "enum";
|
|
224
|
-
readonly label: "Terminal Notification Method";
|
|
225
|
-
readonly category: "General";
|
|
226
|
-
readonly requiresRestart: false;
|
|
227
|
-
readonly default: "auto";
|
|
228
|
-
readonly description: "How to send terminal notifications.";
|
|
229
|
-
readonly showInDialog: true;
|
|
230
|
-
readonly options: readonly [{
|
|
231
|
-
readonly value: "auto";
|
|
232
|
-
readonly label: "Auto";
|
|
233
|
-
}, {
|
|
234
|
-
readonly value: "osc9";
|
|
235
|
-
readonly label: "OSC 9";
|
|
236
|
-
}, {
|
|
237
|
-
readonly value: "osc777";
|
|
238
|
-
readonly label: "OSC 777";
|
|
239
|
-
}, {
|
|
240
|
-
readonly value: "bell";
|
|
241
|
-
readonly label: "Bell";
|
|
242
|
-
}];
|
|
243
|
-
};
|
|
244
|
-
readonly checkpointing: {
|
|
245
|
-
readonly type: "object";
|
|
246
|
-
readonly label: "Checkpointing";
|
|
247
|
-
readonly category: "General";
|
|
248
|
-
readonly requiresRestart: true;
|
|
249
|
-
readonly default: {};
|
|
250
|
-
readonly description: "Session checkpointing settings.";
|
|
251
|
-
readonly showInDialog: false;
|
|
252
|
-
readonly properties: {
|
|
253
|
-
readonly enabled: {
|
|
254
|
-
readonly type: "boolean";
|
|
255
|
-
readonly label: "Enable Checkpointing";
|
|
256
|
-
readonly category: "General";
|
|
257
|
-
readonly requiresRestart: true;
|
|
258
|
-
readonly default: false;
|
|
259
|
-
readonly description: "Enable session checkpointing for recovery";
|
|
260
|
-
readonly showInDialog: false;
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
};
|
|
264
|
-
readonly plan: {
|
|
265
|
-
readonly type: "object";
|
|
266
|
-
readonly label: "Plan";
|
|
267
|
-
readonly category: "General";
|
|
268
|
-
readonly requiresRestart: true;
|
|
269
|
-
readonly default: {};
|
|
270
|
-
readonly description: "Planning features configuration.";
|
|
271
|
-
readonly showInDialog: false;
|
|
272
|
-
readonly properties: {
|
|
273
|
-
readonly enabled: {
|
|
274
|
-
readonly type: "boolean";
|
|
275
|
-
readonly label: "Enable Plan Mode";
|
|
276
|
-
readonly category: "General";
|
|
277
|
-
readonly requiresRestart: true;
|
|
278
|
-
readonly default: true;
|
|
279
|
-
readonly description: "Enable Plan Mode for read-only safety during planning.";
|
|
280
|
-
readonly showInDialog: true;
|
|
281
|
-
};
|
|
282
|
-
readonly directory: {
|
|
283
|
-
readonly type: "string";
|
|
284
|
-
readonly label: "Plan Directory";
|
|
285
|
-
readonly category: "General";
|
|
286
|
-
readonly requiresRestart: true;
|
|
287
|
-
readonly default: string | undefined;
|
|
288
|
-
readonly description: "The directory where planning artifacts are stored. If not specified, defaults to the system temporary directory. A custom directory requires a policy to allow write access in Plan Mode.";
|
|
289
|
-
readonly showInDialog: true;
|
|
290
|
-
};
|
|
291
|
-
readonly modelRouting: {
|
|
292
|
-
readonly type: "boolean";
|
|
293
|
-
readonly label: "Plan Model Routing";
|
|
294
|
-
readonly category: "General";
|
|
295
|
-
readonly requiresRestart: false;
|
|
296
|
-
readonly default: true;
|
|
297
|
-
readonly description: "Automatically switch between Pro and Flash models based on Plan Mode status. Uses Pro for the planning phase and Flash for the implementation phase.";
|
|
298
|
-
readonly showInDialog: true;
|
|
299
|
-
};
|
|
300
|
-
};
|
|
301
|
-
};
|
|
302
|
-
readonly retryFetchErrors: {
|
|
303
|
-
readonly type: "boolean";
|
|
304
|
-
readonly label: "Retry Fetch Errors";
|
|
305
|
-
readonly category: "General";
|
|
306
|
-
readonly requiresRestart: false;
|
|
307
|
-
readonly default: true;
|
|
308
|
-
readonly description: "Retry on \"exception TypeError: fetch failed sending request\" errors.";
|
|
309
|
-
readonly showInDialog: true;
|
|
310
|
-
};
|
|
311
|
-
readonly maxAttempts: {
|
|
312
|
-
readonly type: "number";
|
|
313
|
-
readonly label: "Max Chat Model Attempts";
|
|
314
|
-
readonly category: "General";
|
|
315
|
-
readonly requiresRestart: false;
|
|
316
|
-
readonly default: 10;
|
|
317
|
-
readonly description: "Maximum number of attempts for requests to the main chat model. Cannot exceed 10.";
|
|
318
|
-
readonly showInDialog: true;
|
|
319
|
-
};
|
|
320
|
-
readonly debugKeystrokeLogging: {
|
|
321
|
-
readonly type: "boolean";
|
|
322
|
-
readonly label: "Debug Keystroke Logging";
|
|
323
|
-
readonly category: "General";
|
|
324
|
-
readonly requiresRestart: false;
|
|
325
|
-
readonly default: false;
|
|
326
|
-
readonly description: "Enable debug logging of keystrokes to the console.";
|
|
327
|
-
readonly showInDialog: true;
|
|
328
|
-
};
|
|
329
|
-
readonly sessionRetention: {
|
|
330
|
-
readonly type: "object";
|
|
331
|
-
readonly label: "Session Retention";
|
|
332
|
-
readonly category: "General";
|
|
333
|
-
readonly requiresRestart: false;
|
|
334
|
-
readonly default: SessionRetentionSettings | undefined;
|
|
335
|
-
readonly showInDialog: false;
|
|
336
|
-
readonly properties: {
|
|
337
|
-
readonly enabled: {
|
|
338
|
-
readonly type: "boolean";
|
|
339
|
-
readonly label: "Enable Session Cleanup";
|
|
340
|
-
readonly category: "General";
|
|
341
|
-
readonly requiresRestart: false;
|
|
342
|
-
readonly default: boolean;
|
|
343
|
-
readonly description: "Enable automatic session cleanup";
|
|
344
|
-
readonly showInDialog: true;
|
|
345
|
-
};
|
|
346
|
-
readonly maxAge: {
|
|
347
|
-
readonly type: "string";
|
|
348
|
-
readonly label: "Keep chat history";
|
|
349
|
-
readonly category: "General";
|
|
350
|
-
readonly requiresRestart: false;
|
|
351
|
-
readonly default: string;
|
|
352
|
-
readonly description: "Automatically delete chats older than this time period (e.g., \"30d\", \"7d\", \"24h\", \"1w\")";
|
|
353
|
-
readonly showInDialog: true;
|
|
354
|
-
};
|
|
355
|
-
readonly maxCount: {
|
|
356
|
-
readonly type: "number";
|
|
357
|
-
readonly label: "Max Session Count";
|
|
358
|
-
readonly category: "General";
|
|
359
|
-
readonly requiresRestart: false;
|
|
360
|
-
readonly default: number | undefined;
|
|
361
|
-
readonly description: "Alternative: Maximum number of sessions to keep (most recent)";
|
|
362
|
-
readonly showInDialog: false;
|
|
363
|
-
};
|
|
364
|
-
readonly minRetention: {
|
|
365
|
-
readonly type: "string";
|
|
366
|
-
readonly label: "Min Retention Period";
|
|
367
|
-
readonly category: "General";
|
|
368
|
-
readonly requiresRestart: false;
|
|
369
|
-
readonly default: string;
|
|
370
|
-
readonly description: `Minimum retention period (safety limit, defaults to "${string}")`;
|
|
371
|
-
readonly showInDialog: false;
|
|
372
|
-
};
|
|
373
|
-
};
|
|
374
|
-
readonly description: "Settings for automatic session cleanup.";
|
|
375
|
-
};
|
|
376
|
-
readonly topicUpdateNarration: {
|
|
377
|
-
readonly type: "boolean";
|
|
378
|
-
readonly label: "Topic & Update Narration";
|
|
379
|
-
readonly category: "General";
|
|
380
|
-
readonly requiresRestart: false;
|
|
381
|
-
readonly default: true;
|
|
382
|
-
readonly description: "Enable the Topic & Update communication model for reduced chattiness and structured progress reporting.";
|
|
383
|
-
readonly showInDialog: true;
|
|
384
|
-
};
|
|
385
|
-
readonly logRagSnippets: {
|
|
386
|
-
readonly type: "boolean";
|
|
387
|
-
readonly label: "Log RAG Snippets";
|
|
388
|
-
readonly category: "General";
|
|
389
|
-
readonly requiresRestart: false;
|
|
390
|
-
readonly default: false;
|
|
391
|
-
readonly description: "Log full Code Customization (RAG) retrieved snippets to a local file for debugging.";
|
|
392
|
-
readonly showInDialog: true;
|
|
393
|
-
};
|
|
394
|
-
};
|
|
395
|
-
};
|
|
396
|
-
readonly output: {
|
|
397
|
-
readonly type: "object";
|
|
398
|
-
readonly label: "Output";
|
|
399
|
-
readonly category: "General";
|
|
400
|
-
readonly requiresRestart: false;
|
|
401
|
-
readonly default: {};
|
|
402
|
-
readonly description: "Settings for the CLI output.";
|
|
403
|
-
readonly showInDialog: false;
|
|
404
|
-
readonly properties: {
|
|
405
|
-
readonly format: {
|
|
406
|
-
readonly type: "enum";
|
|
407
|
-
readonly label: "Output Format";
|
|
408
|
-
readonly category: "General";
|
|
409
|
-
readonly requiresRestart: false;
|
|
410
|
-
readonly default: "text";
|
|
411
|
-
readonly description: "The format of the CLI output. Can be `text` or `json`.";
|
|
412
|
-
readonly showInDialog: true;
|
|
413
|
-
readonly options: readonly [{
|
|
414
|
-
readonly value: "text";
|
|
415
|
-
readonly label: "Text";
|
|
416
|
-
}, {
|
|
417
|
-
readonly value: "json";
|
|
418
|
-
readonly label: "JSON";
|
|
419
|
-
}];
|
|
420
|
-
};
|
|
421
|
-
};
|
|
422
|
-
};
|
|
423
|
-
readonly ui: {
|
|
424
|
-
readonly type: "object";
|
|
425
|
-
readonly label: "UI";
|
|
426
|
-
readonly category: "UI";
|
|
427
|
-
readonly requiresRestart: false;
|
|
428
|
-
readonly default: {};
|
|
429
|
-
readonly description: "User interface settings.";
|
|
430
|
-
readonly showInDialog: false;
|
|
431
|
-
readonly properties: {
|
|
432
|
-
readonly debugRainbow: {
|
|
433
|
-
readonly type: "boolean";
|
|
434
|
-
readonly label: "Debug Rainbow";
|
|
435
|
-
readonly category: "UI";
|
|
436
|
-
readonly requiresRestart: true;
|
|
437
|
-
readonly default: false;
|
|
438
|
-
readonly description: "Enable debug rainbow rendering. Only useful for debugging rendering bugs and performance issues.";
|
|
439
|
-
readonly showInDialog: false;
|
|
440
|
-
};
|
|
441
|
-
readonly theme: {
|
|
442
|
-
readonly type: "string";
|
|
443
|
-
readonly label: "Theme";
|
|
444
|
-
readonly category: "UI";
|
|
445
|
-
readonly requiresRestart: false;
|
|
446
|
-
readonly default: string | undefined;
|
|
447
|
-
readonly description: "The color theme for the UI. See the CLI themes guide for available options.";
|
|
448
|
-
readonly showInDialog: false;
|
|
449
|
-
};
|
|
450
|
-
readonly autoThemeSwitching: {
|
|
451
|
-
readonly type: "boolean";
|
|
452
|
-
readonly label: "Auto Theme Switching";
|
|
453
|
-
readonly category: "UI";
|
|
454
|
-
readonly requiresRestart: false;
|
|
455
|
-
readonly default: true;
|
|
456
|
-
readonly description: "Automatically switch between default light and dark themes based on terminal background color.";
|
|
457
|
-
readonly showInDialog: true;
|
|
458
|
-
};
|
|
459
|
-
readonly terminalBackgroundPollingInterval: {
|
|
460
|
-
readonly type: "number";
|
|
461
|
-
readonly label: "Terminal Background Polling Interval";
|
|
462
|
-
readonly category: "UI";
|
|
463
|
-
readonly requiresRestart: false;
|
|
464
|
-
readonly default: 60;
|
|
465
|
-
readonly description: "Interval in seconds to poll the terminal background color.";
|
|
466
|
-
readonly showInDialog: true;
|
|
467
|
-
};
|
|
468
|
-
readonly customThemes: {
|
|
469
|
-
readonly type: "object";
|
|
470
|
-
readonly label: "Custom Themes";
|
|
471
|
-
readonly category: "UI";
|
|
472
|
-
readonly requiresRestart: false;
|
|
473
|
-
readonly default: Record<string, CustomTheme>;
|
|
474
|
-
readonly description: "Custom theme definitions.";
|
|
475
|
-
readonly showInDialog: false;
|
|
476
|
-
readonly additionalProperties: {
|
|
477
|
-
readonly type: "object";
|
|
478
|
-
readonly ref: "CustomTheme";
|
|
479
|
-
};
|
|
480
|
-
};
|
|
481
|
-
readonly hideWindowTitle: {
|
|
482
|
-
readonly type: "boolean";
|
|
483
|
-
readonly label: "Hide Window Title";
|
|
484
|
-
readonly category: "UI";
|
|
485
|
-
readonly requiresRestart: true;
|
|
486
|
-
readonly default: false;
|
|
487
|
-
readonly description: "Hide the window title bar";
|
|
488
|
-
readonly showInDialog: true;
|
|
489
|
-
};
|
|
490
|
-
readonly inlineThinkingMode: {
|
|
491
|
-
readonly type: "enum";
|
|
492
|
-
readonly label: "Inline Thinking";
|
|
493
|
-
readonly category: "UI";
|
|
494
|
-
readonly requiresRestart: false;
|
|
495
|
-
readonly default: "off";
|
|
496
|
-
readonly description: "Display model thinking inline: off or full.";
|
|
497
|
-
readonly showInDialog: true;
|
|
498
|
-
readonly options: readonly [{
|
|
499
|
-
readonly value: "off";
|
|
500
|
-
readonly label: "Off";
|
|
501
|
-
}, {
|
|
502
|
-
readonly value: "full";
|
|
503
|
-
readonly label: "Full";
|
|
504
|
-
}];
|
|
505
|
-
};
|
|
506
|
-
readonly showStatusInTitle: {
|
|
507
|
-
readonly type: "boolean";
|
|
508
|
-
readonly label: "Show Thoughts in Title";
|
|
509
|
-
readonly category: "UI";
|
|
510
|
-
readonly requiresRestart: false;
|
|
511
|
-
readonly default: false;
|
|
512
|
-
readonly description: "Show Gemini CLI model thoughts in the terminal window title during the working phase";
|
|
513
|
-
readonly showInDialog: true;
|
|
514
|
-
};
|
|
515
|
-
readonly dynamicWindowTitle: {
|
|
516
|
-
readonly type: "boolean";
|
|
517
|
-
readonly label: "Dynamic Window Title";
|
|
518
|
-
readonly category: "UI";
|
|
519
|
-
readonly requiresRestart: false;
|
|
520
|
-
readonly default: true;
|
|
521
|
-
readonly description: "Update the terminal window title with current status icons (Ready: ◇, Action Required: ✋, Working: ✦)";
|
|
522
|
-
readonly showInDialog: true;
|
|
523
|
-
};
|
|
524
|
-
readonly showHomeDirectoryWarning: {
|
|
525
|
-
readonly type: "boolean";
|
|
526
|
-
readonly label: "Show Home Directory Warning";
|
|
527
|
-
readonly category: "UI";
|
|
528
|
-
readonly requiresRestart: true;
|
|
529
|
-
readonly default: true;
|
|
530
|
-
readonly description: "Show a warning when running Gemini CLI in the home directory.";
|
|
531
|
-
readonly showInDialog: true;
|
|
532
|
-
};
|
|
533
|
-
readonly showCompatibilityWarnings: {
|
|
534
|
-
readonly type: "boolean";
|
|
535
|
-
readonly label: "Show Compatibility Warnings";
|
|
536
|
-
readonly category: "UI";
|
|
537
|
-
readonly requiresRestart: true;
|
|
538
|
-
readonly default: true;
|
|
539
|
-
readonly description: "Show warnings about terminal or OS compatibility issues.";
|
|
540
|
-
readonly showInDialog: true;
|
|
541
|
-
};
|
|
542
|
-
readonly hideTips: {
|
|
543
|
-
readonly type: "boolean";
|
|
544
|
-
readonly label: "Hide Tips";
|
|
545
|
-
readonly category: "UI";
|
|
546
|
-
readonly requiresRestart: false;
|
|
547
|
-
readonly default: false;
|
|
548
|
-
readonly description: "Hide helpful tips in the UI";
|
|
549
|
-
readonly showInDialog: true;
|
|
550
|
-
};
|
|
551
|
-
readonly escapePastedAtSymbols: {
|
|
552
|
-
readonly type: "boolean";
|
|
553
|
-
readonly label: "Escape Pasted @ Symbols";
|
|
554
|
-
readonly category: "UI";
|
|
555
|
-
readonly requiresRestart: false;
|
|
556
|
-
readonly default: false;
|
|
557
|
-
readonly description: "When enabled, @ symbols in pasted text are escaped to prevent unintended @path expansion.";
|
|
558
|
-
readonly showInDialog: true;
|
|
559
|
-
};
|
|
560
|
-
readonly showShortcutsHint: {
|
|
561
|
-
readonly type: "boolean";
|
|
562
|
-
readonly label: "Show Shortcuts Hint";
|
|
563
|
-
readonly category: "UI";
|
|
564
|
-
readonly requiresRestart: false;
|
|
565
|
-
readonly default: true;
|
|
566
|
-
readonly description: "Show the \"? for shortcuts\" hint above the input.";
|
|
567
|
-
readonly showInDialog: true;
|
|
568
|
-
};
|
|
569
|
-
readonly compactToolOutput: {
|
|
570
|
-
readonly type: "boolean";
|
|
571
|
-
readonly label: "Compact Tool Output";
|
|
572
|
-
readonly category: "UI";
|
|
573
|
-
readonly requiresRestart: false;
|
|
574
|
-
readonly default: true;
|
|
575
|
-
readonly description: "Display tool outputs (like directory listings and file reads) in a compact, structured format.";
|
|
576
|
-
readonly showInDialog: true;
|
|
577
|
-
};
|
|
578
|
-
readonly hideBanner: {
|
|
579
|
-
readonly type: "boolean";
|
|
580
|
-
readonly label: "Hide Banner";
|
|
581
|
-
readonly category: "UI";
|
|
582
|
-
readonly requiresRestart: false;
|
|
583
|
-
readonly default: false;
|
|
584
|
-
readonly description: "Hide the application banner";
|
|
585
|
-
readonly showInDialog: true;
|
|
586
|
-
};
|
|
587
|
-
readonly hideContextSummary: {
|
|
588
|
-
readonly type: "boolean";
|
|
589
|
-
readonly label: "Hide Context Summary";
|
|
590
|
-
readonly category: "UI";
|
|
591
|
-
readonly requiresRestart: false;
|
|
592
|
-
readonly default: false;
|
|
593
|
-
readonly description: "Hide the context summary (GEMINI.md, MCP servers) above the input.";
|
|
594
|
-
readonly showInDialog: true;
|
|
595
|
-
};
|
|
596
|
-
readonly footer: {
|
|
597
|
-
readonly type: "object";
|
|
598
|
-
readonly label: "Footer";
|
|
599
|
-
readonly category: "UI";
|
|
600
|
-
readonly requiresRestart: false;
|
|
601
|
-
readonly default: {};
|
|
602
|
-
readonly description: "Settings for the footer.";
|
|
603
|
-
readonly showInDialog: false;
|
|
604
|
-
readonly properties: {
|
|
605
|
-
readonly items: {
|
|
606
|
-
readonly type: "array";
|
|
607
|
-
readonly label: "Footer Items";
|
|
608
|
-
readonly category: "UI";
|
|
609
|
-
readonly requiresRestart: false;
|
|
610
|
-
readonly default: string[] | undefined;
|
|
611
|
-
readonly description: "List of item IDs to display in the footer. Rendered in order";
|
|
612
|
-
readonly showInDialog: false;
|
|
613
|
-
readonly items: {
|
|
614
|
-
readonly type: "string";
|
|
615
|
-
};
|
|
616
|
-
};
|
|
617
|
-
readonly showLabels: {
|
|
618
|
-
readonly type: "boolean";
|
|
619
|
-
readonly label: "Show Footer Labels";
|
|
620
|
-
readonly category: "UI";
|
|
621
|
-
readonly requiresRestart: false;
|
|
622
|
-
readonly default: true;
|
|
623
|
-
readonly description: "Display a second line above the footer items with descriptive headers (e.g., /model).";
|
|
624
|
-
readonly showInDialog: false;
|
|
625
|
-
};
|
|
626
|
-
readonly hideCWD: {
|
|
627
|
-
readonly type: "boolean";
|
|
628
|
-
readonly label: "Hide CWD";
|
|
629
|
-
readonly category: "UI";
|
|
630
|
-
readonly requiresRestart: false;
|
|
631
|
-
readonly default: false;
|
|
632
|
-
readonly description: "Hide the current working directory in the footer.";
|
|
633
|
-
readonly showInDialog: true;
|
|
634
|
-
};
|
|
635
|
-
readonly hideSandboxStatus: {
|
|
636
|
-
readonly type: "boolean";
|
|
637
|
-
readonly label: "Hide Sandbox Status";
|
|
638
|
-
readonly category: "UI";
|
|
639
|
-
readonly requiresRestart: false;
|
|
640
|
-
readonly default: false;
|
|
641
|
-
readonly description: "Hide the sandbox status indicator in the footer.";
|
|
642
|
-
readonly showInDialog: true;
|
|
643
|
-
};
|
|
644
|
-
readonly hideModelInfo: {
|
|
645
|
-
readonly type: "boolean";
|
|
646
|
-
readonly label: "Hide Model Info";
|
|
647
|
-
readonly category: "UI";
|
|
648
|
-
readonly requiresRestart: false;
|
|
649
|
-
readonly default: false;
|
|
650
|
-
readonly description: "Hide the model name and context usage in the footer.";
|
|
651
|
-
readonly showInDialog: true;
|
|
652
|
-
};
|
|
653
|
-
readonly hideContextPercentage: {
|
|
654
|
-
readonly type: "boolean";
|
|
655
|
-
readonly label: "Hide Context Window Percentage";
|
|
656
|
-
readonly category: "UI";
|
|
657
|
-
readonly requiresRestart: false;
|
|
658
|
-
readonly default: true;
|
|
659
|
-
readonly description: "Hides the context window usage percentage.";
|
|
660
|
-
readonly showInDialog: true;
|
|
661
|
-
};
|
|
662
|
-
};
|
|
663
|
-
};
|
|
664
|
-
readonly hideFooter: {
|
|
665
|
-
readonly type: "boolean";
|
|
666
|
-
readonly label: "Hide Footer";
|
|
667
|
-
readonly category: "UI";
|
|
668
|
-
readonly requiresRestart: false;
|
|
669
|
-
readonly default: false;
|
|
670
|
-
readonly description: "Hide the footer from the UI";
|
|
671
|
-
readonly showInDialog: true;
|
|
672
|
-
};
|
|
673
|
-
readonly collapseDrawerDuringApproval: {
|
|
674
|
-
readonly type: "boolean";
|
|
675
|
-
readonly label: "Collapse Drawer During Approval";
|
|
676
|
-
readonly category: "UI";
|
|
677
|
-
readonly requiresRestart: false;
|
|
678
|
-
readonly default: true;
|
|
679
|
-
readonly description: "Whether to collapse the UI drawer when a tool is awaiting confirmation.";
|
|
680
|
-
readonly showInDialog: false;
|
|
681
|
-
};
|
|
682
|
-
readonly showMemoryUsage: {
|
|
683
|
-
readonly type: "boolean";
|
|
684
|
-
readonly label: "Show Memory Usage";
|
|
685
|
-
readonly category: "UI";
|
|
686
|
-
readonly requiresRestart: false;
|
|
687
|
-
readonly default: false;
|
|
688
|
-
readonly description: "Display memory usage information in the UI";
|
|
689
|
-
readonly showInDialog: true;
|
|
690
|
-
};
|
|
691
|
-
readonly showLineNumbers: {
|
|
692
|
-
readonly type: "boolean";
|
|
693
|
-
readonly label: "Show Line Numbers";
|
|
694
|
-
readonly category: "UI";
|
|
695
|
-
readonly requiresRestart: false;
|
|
696
|
-
readonly default: true;
|
|
697
|
-
readonly description: "Show line numbers in the chat.";
|
|
698
|
-
readonly showInDialog: true;
|
|
699
|
-
};
|
|
700
|
-
readonly showCitations: {
|
|
701
|
-
readonly type: "boolean";
|
|
702
|
-
readonly label: "Show Citations";
|
|
703
|
-
readonly category: "UI";
|
|
704
|
-
readonly requiresRestart: false;
|
|
705
|
-
readonly default: false;
|
|
706
|
-
readonly description: "Show citations for generated text in the chat.";
|
|
707
|
-
readonly showInDialog: true;
|
|
708
|
-
};
|
|
709
|
-
readonly showModelInfoInChat: {
|
|
710
|
-
readonly type: "boolean";
|
|
711
|
-
readonly label: "Show Model Info In Chat";
|
|
712
|
-
readonly category: "UI";
|
|
713
|
-
readonly requiresRestart: false;
|
|
714
|
-
readonly default: false;
|
|
715
|
-
readonly description: "Show the model name in the chat for each model turn.";
|
|
716
|
-
readonly showInDialog: true;
|
|
717
|
-
};
|
|
718
|
-
readonly showUserIdentity: {
|
|
719
|
-
readonly type: "boolean";
|
|
720
|
-
readonly label: "Show User Identity";
|
|
721
|
-
readonly category: "UI";
|
|
722
|
-
readonly requiresRestart: false;
|
|
723
|
-
readonly default: true;
|
|
724
|
-
readonly description: "Show the signed-in user's identity (e.g. email) in the UI.";
|
|
725
|
-
readonly showInDialog: true;
|
|
726
|
-
};
|
|
727
|
-
readonly useAlternateBuffer: {
|
|
728
|
-
readonly type: "boolean";
|
|
729
|
-
readonly label: "Use Alternate Screen Buffer";
|
|
730
|
-
readonly category: "UI";
|
|
731
|
-
readonly requiresRestart: true;
|
|
732
|
-
readonly default: false;
|
|
733
|
-
readonly description: "Use an alternate screen buffer for the UI, preserving shell history.";
|
|
734
|
-
readonly showInDialog: true;
|
|
735
|
-
};
|
|
736
|
-
readonly renderProcess: {
|
|
737
|
-
readonly type: "boolean";
|
|
738
|
-
readonly label: "Render Process";
|
|
739
|
-
readonly category: "UI";
|
|
740
|
-
readonly requiresRestart: true;
|
|
741
|
-
readonly default: true;
|
|
742
|
-
readonly description: "Enable Ink render process for the UI.";
|
|
743
|
-
readonly showInDialog: true;
|
|
744
|
-
};
|
|
745
|
-
readonly terminalBuffer: {
|
|
746
|
-
readonly type: "boolean";
|
|
747
|
-
readonly label: "Terminal Buffer";
|
|
748
|
-
readonly category: "UI";
|
|
749
|
-
readonly requiresRestart: true;
|
|
750
|
-
readonly default: false;
|
|
751
|
-
readonly description: "Use the new terminal buffer architecture for rendering.";
|
|
752
|
-
readonly showInDialog: true;
|
|
753
|
-
};
|
|
754
|
-
readonly useBackgroundColor: {
|
|
755
|
-
readonly type: "boolean";
|
|
756
|
-
readonly label: "Use Background Color";
|
|
757
|
-
readonly category: "UI";
|
|
758
|
-
readonly requiresRestart: false;
|
|
759
|
-
readonly default: true;
|
|
760
|
-
readonly description: "Whether to use background colors in the UI.";
|
|
761
|
-
readonly showInDialog: true;
|
|
762
|
-
};
|
|
763
|
-
readonly incrementalRendering: {
|
|
764
|
-
readonly type: "boolean";
|
|
765
|
-
readonly label: "Incremental Rendering";
|
|
766
|
-
readonly category: "UI";
|
|
767
|
-
readonly requiresRestart: true;
|
|
768
|
-
readonly default: true;
|
|
769
|
-
readonly description: "Enable incremental rendering for the UI. This option will reduce flickering but may cause rendering artifacts. Only supported when useAlternateBuffer is enabled.";
|
|
770
|
-
readonly showInDialog: true;
|
|
771
|
-
};
|
|
772
|
-
readonly showSpinner: {
|
|
773
|
-
readonly type: "boolean";
|
|
774
|
-
readonly label: "Show Spinner";
|
|
775
|
-
readonly category: "UI";
|
|
776
|
-
readonly requiresRestart: false;
|
|
777
|
-
readonly default: true;
|
|
778
|
-
readonly description: "Show the spinner during operations.";
|
|
779
|
-
readonly showInDialog: true;
|
|
780
|
-
};
|
|
781
|
-
readonly loadingPhrases: {
|
|
782
|
-
readonly type: "enum";
|
|
783
|
-
readonly label: "Loading Phrases";
|
|
784
|
-
readonly category: "UI";
|
|
785
|
-
readonly requiresRestart: false;
|
|
786
|
-
readonly default: "off";
|
|
787
|
-
readonly description: "What to show while the model is working: tips, witty comments, all, or off.";
|
|
788
|
-
readonly showInDialog: true;
|
|
789
|
-
readonly options: readonly [{
|
|
790
|
-
readonly value: "tips";
|
|
791
|
-
readonly label: "Tips";
|
|
792
|
-
}, {
|
|
793
|
-
readonly value: "witty";
|
|
794
|
-
readonly label: "Witty";
|
|
795
|
-
}, {
|
|
796
|
-
readonly value: "all";
|
|
797
|
-
readonly label: "All";
|
|
798
|
-
}, {
|
|
799
|
-
readonly value: "off";
|
|
800
|
-
readonly label: "Off";
|
|
801
|
-
}];
|
|
802
|
-
};
|
|
803
|
-
readonly errorVerbosity: {
|
|
804
|
-
readonly type: "enum";
|
|
805
|
-
readonly label: "Error Verbosity";
|
|
806
|
-
readonly category: "UI";
|
|
807
|
-
readonly requiresRestart: false;
|
|
808
|
-
readonly default: "low";
|
|
809
|
-
readonly description: "Controls whether recoverable errors are hidden (low) or fully shown (full).";
|
|
810
|
-
readonly showInDialog: true;
|
|
811
|
-
readonly options: readonly [{
|
|
812
|
-
readonly value: "low";
|
|
813
|
-
readonly label: "Low";
|
|
814
|
-
}, {
|
|
815
|
-
readonly value: "full";
|
|
816
|
-
readonly label: "Full";
|
|
817
|
-
}];
|
|
818
|
-
};
|
|
819
|
-
readonly customWittyPhrases: {
|
|
820
|
-
readonly type: "array";
|
|
821
|
-
readonly label: "Custom Witty Phrases";
|
|
822
|
-
readonly category: "UI";
|
|
823
|
-
readonly requiresRestart: false;
|
|
824
|
-
readonly default: string[];
|
|
825
|
-
readonly description: string;
|
|
826
|
-
readonly showInDialog: false;
|
|
827
|
-
readonly items: {
|
|
828
|
-
readonly type: "string";
|
|
829
|
-
};
|
|
830
|
-
};
|
|
831
|
-
readonly accessibility: {
|
|
832
|
-
readonly type: "object";
|
|
833
|
-
readonly label: "Accessibility";
|
|
834
|
-
readonly category: "UI";
|
|
835
|
-
readonly requiresRestart: true;
|
|
836
|
-
readonly default: {};
|
|
837
|
-
readonly description: "Accessibility settings.";
|
|
838
|
-
readonly showInDialog: false;
|
|
839
|
-
readonly properties: {
|
|
840
|
-
readonly enableLoadingPhrases: {
|
|
841
|
-
readonly type: "boolean";
|
|
842
|
-
readonly label: "Enable Loading Phrases";
|
|
843
|
-
readonly category: "UI";
|
|
844
|
-
readonly requiresRestart: true;
|
|
845
|
-
readonly default: true;
|
|
846
|
-
readonly description: "@deprecated Use ui.loadingPhrases instead. Enable loading phrases during operations.";
|
|
847
|
-
readonly showInDialog: false;
|
|
848
|
-
};
|
|
849
|
-
readonly screenReader: {
|
|
850
|
-
readonly type: "boolean";
|
|
851
|
-
readonly label: "Screen Reader Mode";
|
|
852
|
-
readonly category: "UI";
|
|
853
|
-
readonly requiresRestart: true;
|
|
854
|
-
readonly default: false;
|
|
855
|
-
readonly description: "Render output in plain-text to be more screen reader accessible";
|
|
856
|
-
readonly showInDialog: true;
|
|
857
|
-
};
|
|
858
|
-
};
|
|
859
|
-
};
|
|
860
|
-
};
|
|
861
|
-
};
|
|
862
|
-
readonly ide: {
|
|
863
|
-
readonly type: "object";
|
|
864
|
-
readonly label: "IDE";
|
|
865
|
-
readonly category: "IDE";
|
|
866
|
-
readonly requiresRestart: true;
|
|
867
|
-
readonly default: {};
|
|
868
|
-
readonly description: "IDE integration settings.";
|
|
869
|
-
readonly showInDialog: false;
|
|
870
|
-
readonly properties: {
|
|
871
|
-
readonly enabled: {
|
|
872
|
-
readonly type: "boolean";
|
|
873
|
-
readonly label: "IDE Mode";
|
|
874
|
-
readonly category: "IDE";
|
|
875
|
-
readonly requiresRestart: true;
|
|
876
|
-
readonly default: false;
|
|
877
|
-
readonly description: "Enable IDE integration mode.";
|
|
878
|
-
readonly showInDialog: true;
|
|
879
|
-
};
|
|
880
|
-
readonly hasSeenNudge: {
|
|
881
|
-
readonly type: "boolean";
|
|
882
|
-
readonly label: "Has Seen IDE Integration Nudge";
|
|
883
|
-
readonly category: "IDE";
|
|
884
|
-
readonly requiresRestart: false;
|
|
885
|
-
readonly default: false;
|
|
886
|
-
readonly description: "Whether the user has seen the IDE integration nudge.";
|
|
887
|
-
readonly showInDialog: false;
|
|
888
|
-
};
|
|
889
|
-
};
|
|
890
|
-
};
|
|
891
|
-
readonly privacy: {
|
|
892
|
-
readonly type: "object";
|
|
893
|
-
readonly label: "Privacy";
|
|
894
|
-
readonly category: "Privacy";
|
|
895
|
-
readonly requiresRestart: true;
|
|
896
|
-
readonly default: {};
|
|
897
|
-
readonly description: "Privacy-related settings.";
|
|
898
|
-
readonly showInDialog: false;
|
|
899
|
-
readonly properties: {
|
|
900
|
-
readonly usageStatisticsEnabled: {
|
|
901
|
-
readonly type: "boolean";
|
|
902
|
-
readonly label: "Enable Usage Statistics";
|
|
903
|
-
readonly category: "Privacy";
|
|
904
|
-
readonly requiresRestart: true;
|
|
905
|
-
readonly default: true;
|
|
906
|
-
readonly description: "Enable collection of usage statistics";
|
|
907
|
-
readonly showInDialog: false;
|
|
908
|
-
};
|
|
909
|
-
};
|
|
910
|
-
};
|
|
911
|
-
readonly telemetry: {
|
|
912
|
-
readonly type: "object";
|
|
913
|
-
readonly label: "Telemetry";
|
|
914
|
-
readonly category: "Advanced";
|
|
915
|
-
readonly requiresRestart: true;
|
|
916
|
-
readonly default: TelemetrySettings | undefined;
|
|
917
|
-
readonly description: "Telemetry configuration.";
|
|
918
|
-
readonly showInDialog: false;
|
|
919
|
-
readonly ref: "TelemetrySettings";
|
|
920
|
-
};
|
|
921
|
-
readonly billing: {
|
|
922
|
-
readonly type: "object";
|
|
923
|
-
readonly label: "Billing";
|
|
924
|
-
readonly category: "Advanced";
|
|
925
|
-
readonly requiresRestart: false;
|
|
926
|
-
readonly default: {};
|
|
927
|
-
readonly description: "Billing and AI credits settings.";
|
|
928
|
-
readonly showInDialog: false;
|
|
929
|
-
readonly properties: {
|
|
930
|
-
readonly overageStrategy: {
|
|
931
|
-
readonly type: "enum";
|
|
932
|
-
readonly label: "Overage Strategy";
|
|
933
|
-
readonly category: "Advanced";
|
|
934
|
-
readonly requiresRestart: false;
|
|
935
|
-
readonly default: "ask";
|
|
936
|
-
readonly description: string;
|
|
937
|
-
readonly showInDialog: true;
|
|
938
|
-
readonly options: readonly [{
|
|
939
|
-
readonly value: "ask";
|
|
940
|
-
readonly label: "Ask each time";
|
|
941
|
-
}, {
|
|
942
|
-
readonly value: "always";
|
|
943
|
-
readonly label: "Always use credits";
|
|
944
|
-
}, {
|
|
945
|
-
readonly value: "never";
|
|
946
|
-
readonly label: "Never use credits";
|
|
947
|
-
}];
|
|
948
|
-
};
|
|
949
|
-
readonly vertexAi: {
|
|
950
|
-
readonly type: "object";
|
|
951
|
-
readonly label: "Vertex AI";
|
|
952
|
-
readonly category: "Advanced";
|
|
953
|
-
readonly requiresRestart: true;
|
|
954
|
-
readonly default: VertexAiRoutingConfig | undefined;
|
|
955
|
-
readonly description: "Vertex AI request routing settings.";
|
|
956
|
-
readonly showInDialog: false;
|
|
957
|
-
readonly properties: {
|
|
958
|
-
readonly requestType: {
|
|
959
|
-
readonly type: "enum";
|
|
960
|
-
readonly label: "Vertex AI Request Type";
|
|
961
|
-
readonly category: "Advanced";
|
|
962
|
-
readonly requiresRestart: true;
|
|
963
|
-
readonly default: import("@google/gemini-cli-core").VertexAiRequestType | undefined;
|
|
964
|
-
readonly description: "Sets the X-Vertex-AI-LLM-Request-Type header for Vertex AI requests.";
|
|
965
|
-
readonly showInDialog: false;
|
|
966
|
-
readonly options: readonly [{
|
|
967
|
-
readonly value: "dedicated";
|
|
968
|
-
readonly label: "Dedicated";
|
|
969
|
-
}, {
|
|
970
|
-
readonly value: "shared";
|
|
971
|
-
readonly label: "Shared";
|
|
972
|
-
}];
|
|
973
|
-
};
|
|
974
|
-
readonly sharedRequestType: {
|
|
975
|
-
readonly type: "enum";
|
|
976
|
-
readonly label: "Vertex AI Shared Request Type";
|
|
977
|
-
readonly category: "Advanced";
|
|
978
|
-
readonly requiresRestart: true;
|
|
979
|
-
readonly default: import("@google/gemini-cli-core").VertexAiSharedRequestType | undefined;
|
|
980
|
-
readonly description: "Sets the X-Vertex-AI-LLM-Shared-Request-Type header for Vertex AI requests.";
|
|
981
|
-
readonly showInDialog: false;
|
|
982
|
-
readonly options: readonly [{
|
|
983
|
-
readonly value: "priority";
|
|
984
|
-
readonly label: "Priority";
|
|
985
|
-
}, {
|
|
986
|
-
readonly value: "flex";
|
|
987
|
-
readonly label: "Flex";
|
|
988
|
-
}];
|
|
989
|
-
};
|
|
990
|
-
};
|
|
991
|
-
};
|
|
992
|
-
};
|
|
993
|
-
};
|
|
994
|
-
readonly model: {
|
|
995
|
-
readonly type: "object";
|
|
996
|
-
readonly label: "Model";
|
|
997
|
-
readonly category: "Model";
|
|
998
|
-
readonly requiresRestart: false;
|
|
999
|
-
readonly default: {};
|
|
1000
|
-
readonly description: "Settings related to the generative model.";
|
|
1001
|
-
readonly showInDialog: false;
|
|
1002
|
-
readonly properties: {
|
|
1003
|
-
readonly name: {
|
|
1004
|
-
readonly type: "string";
|
|
1005
|
-
readonly label: "Model";
|
|
1006
|
-
readonly category: "Model";
|
|
1007
|
-
readonly requiresRestart: false;
|
|
1008
|
-
readonly default: string | undefined;
|
|
1009
|
-
readonly description: "The Gemini model to use for conversations.";
|
|
1010
|
-
readonly showInDialog: true;
|
|
1011
|
-
};
|
|
1012
|
-
readonly maxSessionTurns: {
|
|
1013
|
-
readonly type: "number";
|
|
1014
|
-
readonly label: "Max Session Turns";
|
|
1015
|
-
readonly category: "Model";
|
|
1016
|
-
readonly requiresRestart: false;
|
|
1017
|
-
readonly default: -1;
|
|
1018
|
-
readonly description: "Maximum number of user/model/tool turns to keep in a session. -1 means unlimited.";
|
|
1019
|
-
readonly showInDialog: true;
|
|
1020
|
-
};
|
|
1021
|
-
readonly summarizeToolOutput: {
|
|
1022
|
-
readonly type: "object";
|
|
1023
|
-
readonly label: "Summarize Tool Output";
|
|
1024
|
-
readonly category: "Model";
|
|
1025
|
-
readonly requiresRestart: false;
|
|
1026
|
-
readonly default: Record<string, {
|
|
1027
|
-
tokenBudget?: number | undefined;
|
|
1028
|
-
}> | undefined;
|
|
1029
|
-
readonly description: string;
|
|
1030
|
-
readonly showInDialog: false;
|
|
1031
|
-
readonly additionalProperties: {
|
|
1032
|
-
readonly type: "object";
|
|
1033
|
-
readonly description: "Per-tool summarization settings with an optional tokenBudget.";
|
|
1034
|
-
readonly ref: "SummarizeToolOutputSettings";
|
|
1035
|
-
};
|
|
1036
|
-
};
|
|
1037
|
-
readonly compressionThreshold: {
|
|
1038
|
-
readonly type: "number";
|
|
1039
|
-
readonly label: "Context Compression Threshold";
|
|
1040
|
-
readonly category: "Model";
|
|
1041
|
-
readonly requiresRestart: true;
|
|
1042
|
-
readonly default: number;
|
|
1043
|
-
readonly description: "The fraction of context usage at which to trigger context compression (e.g. 0.2, 0.3).";
|
|
1044
|
-
readonly showInDialog: true;
|
|
1045
|
-
readonly unit: "%";
|
|
1046
|
-
};
|
|
1047
|
-
readonly disableLoopDetection: {
|
|
1048
|
-
readonly type: "boolean";
|
|
1049
|
-
readonly label: "Disable Loop Detection";
|
|
1050
|
-
readonly category: "Model";
|
|
1051
|
-
readonly requiresRestart: true;
|
|
1052
|
-
readonly default: false;
|
|
1053
|
-
readonly description: "Disable automatic detection and prevention of infinite loops.";
|
|
1054
|
-
readonly showInDialog: true;
|
|
1055
|
-
};
|
|
1056
|
-
readonly skipNextSpeakerCheck: {
|
|
1057
|
-
readonly type: "boolean";
|
|
1058
|
-
readonly label: "Skip Next Speaker Check";
|
|
1059
|
-
readonly category: "Model";
|
|
1060
|
-
readonly requiresRestart: false;
|
|
1061
|
-
readonly default: true;
|
|
1062
|
-
readonly description: "Skip the next speaker check.";
|
|
1063
|
-
readonly showInDialog: true;
|
|
1064
|
-
};
|
|
1065
|
-
};
|
|
1066
|
-
};
|
|
1067
|
-
readonly modelConfigs: {
|
|
1068
|
-
readonly type: "object";
|
|
1069
|
-
readonly label: "Model Configs";
|
|
1070
|
-
readonly category: "Model";
|
|
1071
|
-
readonly requiresRestart: false;
|
|
1072
|
-
readonly default: import("@google/gemini-cli-core").ModelConfigServiceConfig;
|
|
1073
|
-
readonly description: "Model configurations.";
|
|
1074
|
-
readonly showInDialog: false;
|
|
1075
|
-
readonly properties: {
|
|
1076
|
-
readonly aliases: {
|
|
1077
|
-
readonly type: "object";
|
|
1078
|
-
readonly label: "Model Config Aliases";
|
|
1079
|
-
readonly category: "Model";
|
|
1080
|
-
readonly requiresRestart: false;
|
|
1081
|
-
readonly default: Record<string, import("@google/gemini-cli-core").ModelConfigAlias> | undefined;
|
|
1082
|
-
readonly 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.";
|
|
1083
|
-
readonly showInDialog: false;
|
|
1084
|
-
};
|
|
1085
|
-
readonly customAliases: {
|
|
1086
|
-
readonly type: "object";
|
|
1087
|
-
readonly label: "Custom Model Config Aliases";
|
|
1088
|
-
readonly category: "Model";
|
|
1089
|
-
readonly requiresRestart: false;
|
|
1090
|
-
readonly default: {};
|
|
1091
|
-
readonly description: "Custom named presets for model configs. These are merged with (and override) the built-in aliases.";
|
|
1092
|
-
readonly showInDialog: false;
|
|
1093
|
-
};
|
|
1094
|
-
readonly customOverrides: {
|
|
1095
|
-
readonly type: "array";
|
|
1096
|
-
readonly label: "Custom Model Config Overrides";
|
|
1097
|
-
readonly category: "Model";
|
|
1098
|
-
readonly requiresRestart: false;
|
|
1099
|
-
readonly default: readonly [];
|
|
1100
|
-
readonly description: "Custom model config overrides. These are merged with (and added to) the built-in overrides.";
|
|
1101
|
-
readonly showInDialog: false;
|
|
1102
|
-
};
|
|
1103
|
-
readonly overrides: {
|
|
1104
|
-
readonly type: "array";
|
|
1105
|
-
readonly label: "Model Config Overrides";
|
|
1106
|
-
readonly category: "Model";
|
|
1107
|
-
readonly requiresRestart: false;
|
|
1108
|
-
readonly default: readonly [];
|
|
1109
|
-
readonly description: "Apply specific configuration overrides based on matches, with a primary key of model (or alias). The most specific match will be used.";
|
|
1110
|
-
readonly showInDialog: false;
|
|
1111
|
-
};
|
|
1112
|
-
readonly modelDefinitions: {
|
|
1113
|
-
readonly type: "object";
|
|
1114
|
-
readonly label: "Model Definitions";
|
|
1115
|
-
readonly category: "Model";
|
|
1116
|
-
readonly requiresRestart: true;
|
|
1117
|
-
readonly default: Record<string, import("@google/gemini-cli-core").ModelDefinition> | undefined;
|
|
1118
|
-
readonly description: "Registry of model metadata, including tier, family, and features.";
|
|
1119
|
-
readonly showInDialog: false;
|
|
1120
|
-
readonly additionalProperties: {
|
|
1121
|
-
readonly type: "object";
|
|
1122
|
-
readonly ref: "ModelDefinition";
|
|
1123
|
-
};
|
|
1124
|
-
};
|
|
1125
|
-
readonly modelIdResolutions: {
|
|
1126
|
-
readonly type: "object";
|
|
1127
|
-
readonly label: "Model ID Resolutions";
|
|
1128
|
-
readonly category: "Model";
|
|
1129
|
-
readonly requiresRestart: true;
|
|
1130
|
-
readonly default: Record<string, import("@google/gemini-cli-core").ModelResolution> | undefined;
|
|
1131
|
-
readonly description: "Rules for resolving requested model names to concrete model IDs based on context.";
|
|
1132
|
-
readonly showInDialog: false;
|
|
1133
|
-
readonly additionalProperties: {
|
|
1134
|
-
readonly type: "object";
|
|
1135
|
-
readonly ref: "ModelResolution";
|
|
1136
|
-
};
|
|
1137
|
-
};
|
|
1138
|
-
readonly classifierIdResolutions: {
|
|
1139
|
-
readonly type: "object";
|
|
1140
|
-
readonly label: "Classifier ID Resolutions";
|
|
1141
|
-
readonly category: "Model";
|
|
1142
|
-
readonly requiresRestart: true;
|
|
1143
|
-
readonly default: Record<string, import("@google/gemini-cli-core").ModelResolution> | undefined;
|
|
1144
|
-
readonly description: "Rules for resolving classifier tiers (flash, pro) to concrete model IDs.";
|
|
1145
|
-
readonly showInDialog: false;
|
|
1146
|
-
readonly additionalProperties: {
|
|
1147
|
-
readonly type: "object";
|
|
1148
|
-
readonly ref: "ModelResolution";
|
|
1149
|
-
};
|
|
1150
|
-
};
|
|
1151
|
-
readonly modelChains: {
|
|
1152
|
-
readonly type: "object";
|
|
1153
|
-
readonly label: "Model Chains";
|
|
1154
|
-
readonly category: "Model";
|
|
1155
|
-
readonly requiresRestart: true;
|
|
1156
|
-
readonly default: Record<string, import("@google/gemini-cli-core/dist/src/availability/modelPolicy.js").ModelPolicy[]> | undefined;
|
|
1157
|
-
readonly description: "Availability policy chains defining fallback behavior for models.";
|
|
1158
|
-
readonly showInDialog: false;
|
|
1159
|
-
readonly additionalProperties: {
|
|
1160
|
-
readonly type: "array";
|
|
1161
|
-
readonly ref: "ModelPolicyChain";
|
|
1162
|
-
};
|
|
1163
|
-
};
|
|
1164
|
-
};
|
|
1165
|
-
};
|
|
1166
|
-
readonly agents: {
|
|
1167
|
-
readonly type: "object";
|
|
1168
|
-
readonly label: "Agents";
|
|
1169
|
-
readonly category: "Advanced";
|
|
1170
|
-
readonly requiresRestart: true;
|
|
1171
|
-
readonly default: {};
|
|
1172
|
-
readonly description: "Settings for subagents.";
|
|
1173
|
-
readonly showInDialog: false;
|
|
1174
|
-
readonly properties: {
|
|
1175
|
-
readonly overrides: {
|
|
1176
|
-
readonly type: "object";
|
|
1177
|
-
readonly label: "Agent Overrides";
|
|
1178
|
-
readonly category: "Advanced";
|
|
1179
|
-
readonly requiresRestart: true;
|
|
1180
|
-
readonly default: Record<string, AgentOverride>;
|
|
1181
|
-
readonly description: "Override settings for specific agents, e.g. to disable the agent, set a custom model config, or run config.";
|
|
1182
|
-
readonly showInDialog: false;
|
|
1183
|
-
readonly additionalProperties: {
|
|
1184
|
-
readonly type: "object";
|
|
1185
|
-
readonly ref: "AgentOverride";
|
|
1186
|
-
};
|
|
1187
|
-
};
|
|
1188
|
-
readonly browser: {
|
|
1189
|
-
readonly type: "object";
|
|
1190
|
-
readonly label: "Browser Agent";
|
|
1191
|
-
readonly category: "Advanced";
|
|
1192
|
-
readonly requiresRestart: true;
|
|
1193
|
-
readonly default: {};
|
|
1194
|
-
readonly description: "Settings specific to the browser agent.";
|
|
1195
|
-
readonly showInDialog: false;
|
|
1196
|
-
readonly properties: {
|
|
1197
|
-
readonly sessionMode: {
|
|
1198
|
-
readonly type: "enum";
|
|
1199
|
-
readonly label: "Browser Session Mode";
|
|
1200
|
-
readonly category: "Advanced";
|
|
1201
|
-
readonly requiresRestart: true;
|
|
1202
|
-
readonly default: "persistent";
|
|
1203
|
-
readonly description: "Session mode: 'persistent', 'isolated', or 'existing'.";
|
|
1204
|
-
readonly showInDialog: false;
|
|
1205
|
-
readonly options: readonly [{
|
|
1206
|
-
readonly value: "persistent";
|
|
1207
|
-
readonly label: "Persistent";
|
|
1208
|
-
}, {
|
|
1209
|
-
readonly value: "isolated";
|
|
1210
|
-
readonly label: "Isolated";
|
|
1211
|
-
}, {
|
|
1212
|
-
readonly value: "existing";
|
|
1213
|
-
readonly label: "Existing";
|
|
1214
|
-
}];
|
|
1215
|
-
};
|
|
1216
|
-
readonly headless: {
|
|
1217
|
-
readonly type: "boolean";
|
|
1218
|
-
readonly label: "Browser Headless";
|
|
1219
|
-
readonly category: "Advanced";
|
|
1220
|
-
readonly requiresRestart: true;
|
|
1221
|
-
readonly default: false;
|
|
1222
|
-
readonly description: "Run browser in headless mode.";
|
|
1223
|
-
readonly showInDialog: false;
|
|
1224
|
-
};
|
|
1225
|
-
readonly profilePath: {
|
|
1226
|
-
readonly type: "string";
|
|
1227
|
-
readonly label: "Browser Profile Path";
|
|
1228
|
-
readonly category: "Advanced";
|
|
1229
|
-
readonly requiresRestart: true;
|
|
1230
|
-
readonly default: string | undefined;
|
|
1231
|
-
readonly description: "Path to browser profile directory for session persistence.";
|
|
1232
|
-
readonly showInDialog: false;
|
|
1233
|
-
};
|
|
1234
|
-
readonly visualModel: {
|
|
1235
|
-
readonly type: "string";
|
|
1236
|
-
readonly label: "Browser Visual Model";
|
|
1237
|
-
readonly category: "Advanced";
|
|
1238
|
-
readonly requiresRestart: true;
|
|
1239
|
-
readonly default: string | undefined;
|
|
1240
|
-
readonly description: "Model for the visual agent's analyze_screenshot tool. When set, enables the tool.";
|
|
1241
|
-
readonly showInDialog: false;
|
|
1242
|
-
};
|
|
1243
|
-
readonly allowedDomains: {
|
|
1244
|
-
readonly type: "array";
|
|
1245
|
-
readonly label: "Allowed Domains";
|
|
1246
|
-
readonly category: "Advanced";
|
|
1247
|
-
readonly requiresRestart: true;
|
|
1248
|
-
readonly default: string[];
|
|
1249
|
-
readonly description: string;
|
|
1250
|
-
readonly showInDialog: false;
|
|
1251
|
-
readonly items: {
|
|
1252
|
-
readonly type: "string";
|
|
1253
|
-
};
|
|
1254
|
-
};
|
|
1255
|
-
readonly disableUserInput: {
|
|
1256
|
-
readonly type: "boolean";
|
|
1257
|
-
readonly label: "Disable User Input";
|
|
1258
|
-
readonly category: "Advanced";
|
|
1259
|
-
readonly requiresRestart: false;
|
|
1260
|
-
readonly default: true;
|
|
1261
|
-
readonly description: "Disable user input on browser window during automation.";
|
|
1262
|
-
readonly showInDialog: false;
|
|
1263
|
-
};
|
|
1264
|
-
readonly maxActionsPerTask: {
|
|
1265
|
-
readonly type: "number";
|
|
1266
|
-
readonly label: "Max Actions Per Task";
|
|
1267
|
-
readonly category: "Advanced";
|
|
1268
|
-
readonly requiresRestart: false;
|
|
1269
|
-
readonly default: 100;
|
|
1270
|
-
readonly description: "The maximum number of tool calls allowed per browser task. Enforcement is hard: the agent will be terminated when the limit is reached.";
|
|
1271
|
-
readonly showInDialog: false;
|
|
1272
|
-
};
|
|
1273
|
-
readonly confirmSensitiveActions: {
|
|
1274
|
-
readonly type: "boolean";
|
|
1275
|
-
readonly label: "Confirm Sensitive Actions";
|
|
1276
|
-
readonly category: "Advanced";
|
|
1277
|
-
readonly requiresRestart: true;
|
|
1278
|
-
readonly default: false;
|
|
1279
|
-
readonly description: "Require manual confirmation for sensitive browser actions (e.g., fill_form, evaluate_script).";
|
|
1280
|
-
readonly showInDialog: true;
|
|
1281
|
-
};
|
|
1282
|
-
readonly blockFileUploads: {
|
|
1283
|
-
readonly type: "boolean";
|
|
1284
|
-
readonly label: "Block File Uploads";
|
|
1285
|
-
readonly category: "Advanced";
|
|
1286
|
-
readonly requiresRestart: true;
|
|
1287
|
-
readonly default: false;
|
|
1288
|
-
readonly description: "Hard-block file upload requests from the browser agent.";
|
|
1289
|
-
readonly showInDialog: true;
|
|
1290
|
-
};
|
|
1291
|
-
};
|
|
1292
|
-
};
|
|
1293
|
-
};
|
|
1294
|
-
};
|
|
1295
|
-
readonly context: {
|
|
1296
|
-
readonly type: "object";
|
|
1297
|
-
readonly label: "Context";
|
|
1298
|
-
readonly category: "Context";
|
|
1299
|
-
readonly requiresRestart: false;
|
|
1300
|
-
readonly default: {};
|
|
1301
|
-
readonly description: "Settings for managing context provided to the model.";
|
|
1302
|
-
readonly showInDialog: false;
|
|
1303
|
-
readonly properties: {
|
|
1304
|
-
readonly fileName: {
|
|
1305
|
-
readonly type: "string";
|
|
1306
|
-
readonly label: "Context File Name";
|
|
1307
|
-
readonly category: "Context";
|
|
1308
|
-
readonly requiresRestart: false;
|
|
1309
|
-
readonly default: string | string[] | undefined;
|
|
1310
|
-
readonly ref: "StringOrStringArray";
|
|
1311
|
-
readonly description: "The name of the context file or files to load into memory. Accepts either a single string or an array of strings.";
|
|
1312
|
-
readonly showInDialog: false;
|
|
1313
|
-
};
|
|
1314
|
-
readonly importFormat: {
|
|
1315
|
-
readonly type: "string";
|
|
1316
|
-
readonly label: "Memory Import Format";
|
|
1317
|
-
readonly category: "Context";
|
|
1318
|
-
readonly requiresRestart: false;
|
|
1319
|
-
readonly default: MemoryImportFormat | undefined;
|
|
1320
|
-
readonly description: "The format to use when importing memory.";
|
|
1321
|
-
readonly showInDialog: false;
|
|
1322
|
-
};
|
|
1323
|
-
readonly includeDirectoryTree: {
|
|
1324
|
-
readonly type: "boolean";
|
|
1325
|
-
readonly label: "Include Directory Tree";
|
|
1326
|
-
readonly category: "Context";
|
|
1327
|
-
readonly requiresRestart: false;
|
|
1328
|
-
readonly default: true;
|
|
1329
|
-
readonly description: "Whether to include the directory tree of the current working directory in the initial request to the model.";
|
|
1330
|
-
readonly showInDialog: false;
|
|
1331
|
-
};
|
|
1332
|
-
readonly discoveryMaxDirs: {
|
|
1333
|
-
readonly type: "number";
|
|
1334
|
-
readonly label: "Memory Discovery Max Dirs";
|
|
1335
|
-
readonly category: "Context";
|
|
1336
|
-
readonly requiresRestart: false;
|
|
1337
|
-
readonly default: 200;
|
|
1338
|
-
readonly description: "Maximum number of directories to search for memory.";
|
|
1339
|
-
readonly showInDialog: true;
|
|
1340
|
-
};
|
|
1341
|
-
readonly memoryBoundaryMarkers: {
|
|
1342
|
-
readonly type: "array";
|
|
1343
|
-
readonly label: "Memory Boundary Markers";
|
|
1344
|
-
readonly category: "Context";
|
|
1345
|
-
readonly requiresRestart: true;
|
|
1346
|
-
readonly default: string[];
|
|
1347
|
-
readonly description: string;
|
|
1348
|
-
readonly showInDialog: false;
|
|
1349
|
-
readonly items: {
|
|
1350
|
-
readonly type: "string";
|
|
1351
|
-
};
|
|
1352
|
-
};
|
|
1353
|
-
readonly includeDirectories: {
|
|
1354
|
-
readonly type: "array";
|
|
1355
|
-
readonly label: "Include Directories";
|
|
1356
|
-
readonly category: "Context";
|
|
1357
|
-
readonly requiresRestart: false;
|
|
1358
|
-
readonly default: string[];
|
|
1359
|
-
readonly description: string;
|
|
1360
|
-
readonly showInDialog: false;
|
|
1361
|
-
readonly items: {
|
|
1362
|
-
readonly type: "string";
|
|
1363
|
-
};
|
|
1364
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
1365
|
-
};
|
|
1366
|
-
readonly loadMemoryFromIncludeDirectories: {
|
|
1367
|
-
readonly type: "boolean";
|
|
1368
|
-
readonly label: "Load Memory From Include Directories";
|
|
1369
|
-
readonly category: "Context";
|
|
1370
|
-
readonly requiresRestart: false;
|
|
1371
|
-
readonly default: false;
|
|
1372
|
-
readonly description: string;
|
|
1373
|
-
readonly showInDialog: true;
|
|
1374
|
-
};
|
|
1375
|
-
readonly fileFiltering: {
|
|
1376
|
-
readonly type: "object";
|
|
1377
|
-
readonly label: "File Filtering";
|
|
1378
|
-
readonly category: "Context";
|
|
1379
|
-
readonly requiresRestart: true;
|
|
1380
|
-
readonly default: {};
|
|
1381
|
-
readonly description: "Settings for git-aware file filtering.";
|
|
1382
|
-
readonly showInDialog: false;
|
|
1383
|
-
readonly properties: {
|
|
1384
|
-
readonly respectGitIgnore: {
|
|
1385
|
-
readonly type: "boolean";
|
|
1386
|
-
readonly label: "Respect .gitignore";
|
|
1387
|
-
readonly category: "Context";
|
|
1388
|
-
readonly requiresRestart: true;
|
|
1389
|
-
readonly default: true;
|
|
1390
|
-
readonly description: "Respect .gitignore files when searching.";
|
|
1391
|
-
readonly showInDialog: true;
|
|
1392
|
-
};
|
|
1393
|
-
readonly respectGeminiIgnore: {
|
|
1394
|
-
readonly type: "boolean";
|
|
1395
|
-
readonly label: "Respect .geminiignore";
|
|
1396
|
-
readonly category: "Context";
|
|
1397
|
-
readonly requiresRestart: true;
|
|
1398
|
-
readonly default: true;
|
|
1399
|
-
readonly description: "Respect .geminiignore files when searching.";
|
|
1400
|
-
readonly showInDialog: true;
|
|
1401
|
-
};
|
|
1402
|
-
readonly enableFileWatcher: {
|
|
1403
|
-
readonly type: "boolean";
|
|
1404
|
-
readonly label: "Enable File Watcher";
|
|
1405
|
-
readonly category: "Context";
|
|
1406
|
-
readonly requiresRestart: true;
|
|
1407
|
-
readonly default: false;
|
|
1408
|
-
readonly description: string;
|
|
1409
|
-
readonly showInDialog: false;
|
|
1410
|
-
};
|
|
1411
|
-
readonly enableRecursiveFileSearch: {
|
|
1412
|
-
readonly type: "boolean";
|
|
1413
|
-
readonly label: "Enable Recursive File Search";
|
|
1414
|
-
readonly category: "Context";
|
|
1415
|
-
readonly requiresRestart: true;
|
|
1416
|
-
readonly default: true;
|
|
1417
|
-
readonly description: string;
|
|
1418
|
-
readonly showInDialog: true;
|
|
1419
|
-
};
|
|
1420
|
-
readonly enableFuzzySearch: {
|
|
1421
|
-
readonly type: "boolean";
|
|
1422
|
-
readonly label: "Enable Fuzzy Search";
|
|
1423
|
-
readonly category: "Context";
|
|
1424
|
-
readonly requiresRestart: true;
|
|
1425
|
-
readonly default: true;
|
|
1426
|
-
readonly description: "Enable fuzzy search when searching for files.";
|
|
1427
|
-
readonly showInDialog: true;
|
|
1428
|
-
};
|
|
1429
|
-
readonly customIgnoreFilePaths: {
|
|
1430
|
-
readonly type: "array";
|
|
1431
|
-
readonly label: "Custom Ignore File Paths";
|
|
1432
|
-
readonly category: "Context";
|
|
1433
|
-
readonly requiresRestart: true;
|
|
1434
|
-
readonly default: string[];
|
|
1435
|
-
readonly description: "Additional ignore file paths to respect. These files take precedence over .geminiignore and .gitignore. Files earlier in the array take precedence over files later in the array, e.g. the first file takes precedence over the second one.";
|
|
1436
|
-
readonly showInDialog: true;
|
|
1437
|
-
readonly items: {
|
|
1438
|
-
readonly type: "string";
|
|
1439
|
-
};
|
|
1440
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1441
|
-
};
|
|
1442
|
-
};
|
|
1443
|
-
};
|
|
1444
|
-
};
|
|
1445
|
-
};
|
|
1446
|
-
readonly tools: {
|
|
1447
|
-
readonly type: "object";
|
|
1448
|
-
readonly label: "Tools";
|
|
1449
|
-
readonly category: "Tools";
|
|
1450
|
-
readonly requiresRestart: true;
|
|
1451
|
-
readonly default: {};
|
|
1452
|
-
readonly description: "Settings for built-in and custom tools.";
|
|
1453
|
-
readonly showInDialog: false;
|
|
1454
|
-
readonly properties: {
|
|
1455
|
-
readonly sandbox: {
|
|
1456
|
-
readonly type: "string";
|
|
1457
|
-
readonly label: "Sandbox";
|
|
1458
|
-
readonly category: "Tools";
|
|
1459
|
-
readonly requiresRestart: true;
|
|
1460
|
-
readonly default: string | boolean | SandboxConfig | undefined;
|
|
1461
|
-
readonly ref: "BooleanOrStringOrObject";
|
|
1462
|
-
readonly description: string;
|
|
1463
|
-
readonly showInDialog: false;
|
|
1464
|
-
};
|
|
1465
|
-
readonly sandboxAllowedPaths: {
|
|
1466
|
-
readonly type: "array";
|
|
1467
|
-
readonly label: "Sandbox Allowed Paths";
|
|
1468
|
-
readonly category: "Tools";
|
|
1469
|
-
readonly requiresRestart: true;
|
|
1470
|
-
readonly default: string[];
|
|
1471
|
-
readonly description: "List of additional paths that the sandbox is allowed to access.";
|
|
1472
|
-
readonly showInDialog: true;
|
|
1473
|
-
readonly items: {
|
|
1474
|
-
readonly type: "string";
|
|
1475
|
-
};
|
|
1476
|
-
};
|
|
1477
|
-
readonly sandboxNetworkAccess: {
|
|
1478
|
-
readonly type: "boolean";
|
|
1479
|
-
readonly label: "Sandbox Network Access";
|
|
1480
|
-
readonly category: "Tools";
|
|
1481
|
-
readonly requiresRestart: true;
|
|
1482
|
-
readonly default: false;
|
|
1483
|
-
readonly description: "Whether the sandbox is allowed to access the network.";
|
|
1484
|
-
readonly showInDialog: true;
|
|
1485
|
-
};
|
|
1486
|
-
readonly shell: {
|
|
1487
|
-
readonly type: "object";
|
|
1488
|
-
readonly label: "Shell";
|
|
1489
|
-
readonly category: "Tools";
|
|
1490
|
-
readonly requiresRestart: false;
|
|
1491
|
-
readonly default: {};
|
|
1492
|
-
readonly description: "Settings for shell execution.";
|
|
1493
|
-
readonly showInDialog: false;
|
|
1494
|
-
readonly properties: {
|
|
1495
|
-
readonly enableInteractiveShell: {
|
|
1496
|
-
readonly type: "boolean";
|
|
1497
|
-
readonly label: "Enable Interactive Shell";
|
|
1498
|
-
readonly category: "Tools";
|
|
1499
|
-
readonly requiresRestart: true;
|
|
1500
|
-
readonly default: true;
|
|
1501
|
-
readonly description: string;
|
|
1502
|
-
readonly showInDialog: true;
|
|
1503
|
-
};
|
|
1504
|
-
readonly backgroundCompletionBehavior: {
|
|
1505
|
-
readonly type: "enum";
|
|
1506
|
-
readonly label: "Background Completion Behavior";
|
|
1507
|
-
readonly category: "Tools";
|
|
1508
|
-
readonly requiresRestart: false;
|
|
1509
|
-
readonly default: "silent";
|
|
1510
|
-
readonly description: "Controls what happens when a background shell command finishes. 'silent' (default): quietly exits in background. 'inject': automatically returns output to agent. 'notify': shows brief message in chat.";
|
|
1511
|
-
readonly showInDialog: false;
|
|
1512
|
-
readonly options: readonly [{
|
|
1513
|
-
readonly label: "Silent";
|
|
1514
|
-
readonly value: "silent";
|
|
1515
|
-
}, {
|
|
1516
|
-
readonly label: "Inject";
|
|
1517
|
-
readonly value: "inject";
|
|
1518
|
-
}, {
|
|
1519
|
-
readonly label: "Notify";
|
|
1520
|
-
readonly value: "notify";
|
|
1521
|
-
}];
|
|
1522
|
-
};
|
|
1523
|
-
readonly pager: {
|
|
1524
|
-
readonly type: "string";
|
|
1525
|
-
readonly label: "Pager";
|
|
1526
|
-
readonly category: "Tools";
|
|
1527
|
-
readonly requiresRestart: false;
|
|
1528
|
-
readonly default: string | undefined;
|
|
1529
|
-
readonly description: "The pager command to use for shell output. Defaults to `cat`.";
|
|
1530
|
-
readonly showInDialog: false;
|
|
1531
|
-
};
|
|
1532
|
-
readonly showColor: {
|
|
1533
|
-
readonly type: "boolean";
|
|
1534
|
-
readonly label: "Show Color";
|
|
1535
|
-
readonly category: "Tools";
|
|
1536
|
-
readonly requiresRestart: false;
|
|
1537
|
-
readonly default: true;
|
|
1538
|
-
readonly description: "Show color in shell output.";
|
|
1539
|
-
readonly showInDialog: true;
|
|
1540
|
-
};
|
|
1541
|
-
readonly inactivityTimeout: {
|
|
1542
|
-
readonly type: "number";
|
|
1543
|
-
readonly label: "Inactivity Timeout";
|
|
1544
|
-
readonly category: "Tools";
|
|
1545
|
-
readonly requiresRestart: false;
|
|
1546
|
-
readonly default: 300;
|
|
1547
|
-
readonly description: "The maximum time in seconds allowed without output from the shell command. Defaults to 5 minutes.";
|
|
1548
|
-
readonly showInDialog: false;
|
|
1549
|
-
};
|
|
1550
|
-
readonly enableShellOutputEfficiency: {
|
|
1551
|
-
readonly type: "boolean";
|
|
1552
|
-
readonly label: "Enable Shell Output Efficiency";
|
|
1553
|
-
readonly category: "Tools";
|
|
1554
|
-
readonly requiresRestart: false;
|
|
1555
|
-
readonly default: true;
|
|
1556
|
-
readonly description: "Enable shell output efficiency optimizations for better performance.";
|
|
1557
|
-
readonly showInDialog: false;
|
|
1558
|
-
};
|
|
1559
|
-
};
|
|
1560
|
-
};
|
|
1561
|
-
readonly core: {
|
|
1562
|
-
readonly type: "array";
|
|
1563
|
-
readonly label: "Core Tools";
|
|
1564
|
-
readonly category: "Tools";
|
|
1565
|
-
readonly requiresRestart: true;
|
|
1566
|
-
readonly default: string[] | undefined;
|
|
1567
|
-
readonly description: string;
|
|
1568
|
-
readonly showInDialog: false;
|
|
1569
|
-
readonly items: {
|
|
1570
|
-
readonly type: "string";
|
|
1571
|
-
};
|
|
1572
|
-
};
|
|
1573
|
-
readonly allowed: {
|
|
1574
|
-
readonly type: "array";
|
|
1575
|
-
readonly label: "Allowed Tools";
|
|
1576
|
-
readonly category: "Advanced";
|
|
1577
|
-
readonly requiresRestart: true;
|
|
1578
|
-
readonly default: string[] | undefined;
|
|
1579
|
-
readonly description: string;
|
|
1580
|
-
readonly showInDialog: false;
|
|
1581
|
-
readonly items: {
|
|
1582
|
-
readonly type: "string";
|
|
1583
|
-
};
|
|
1584
|
-
};
|
|
1585
|
-
readonly confirmationRequired: {
|
|
1586
|
-
readonly type: "array";
|
|
1587
|
-
readonly label: "Confirmation Required";
|
|
1588
|
-
readonly category: "Advanced";
|
|
1589
|
-
readonly requiresRestart: true;
|
|
1590
|
-
readonly default: string[] | undefined;
|
|
1591
|
-
readonly description: string;
|
|
1592
|
-
readonly showInDialog: false;
|
|
1593
|
-
readonly items: {
|
|
1594
|
-
readonly type: "string";
|
|
1595
|
-
};
|
|
1596
|
-
};
|
|
1597
|
-
readonly exclude: {
|
|
1598
|
-
readonly type: "array";
|
|
1599
|
-
readonly label: "Exclude Tools";
|
|
1600
|
-
readonly category: "Tools";
|
|
1601
|
-
readonly requiresRestart: true;
|
|
1602
|
-
readonly default: string[] | undefined;
|
|
1603
|
-
readonly description: "Tool names to exclude from discovery.";
|
|
1604
|
-
readonly showInDialog: false;
|
|
1605
|
-
readonly items: {
|
|
1606
|
-
readonly type: "string";
|
|
1607
|
-
};
|
|
1608
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1609
|
-
};
|
|
1610
|
-
readonly discoveryCommand: {
|
|
1611
|
-
readonly type: "string";
|
|
1612
|
-
readonly label: "Tool Discovery Command";
|
|
1613
|
-
readonly category: "Tools";
|
|
1614
|
-
readonly requiresRestart: true;
|
|
1615
|
-
readonly default: string | undefined;
|
|
1616
|
-
readonly description: "Command to run for tool discovery.";
|
|
1617
|
-
readonly showInDialog: false;
|
|
1618
|
-
};
|
|
1619
|
-
readonly callCommand: {
|
|
1620
|
-
readonly type: "string";
|
|
1621
|
-
readonly label: "Tool Call Command";
|
|
1622
|
-
readonly category: "Tools";
|
|
1623
|
-
readonly requiresRestart: true;
|
|
1624
|
-
readonly default: string | undefined;
|
|
1625
|
-
readonly description: string;
|
|
1626
|
-
readonly showInDialog: false;
|
|
1627
|
-
};
|
|
1628
|
-
readonly useRipgrep: {
|
|
1629
|
-
readonly type: "boolean";
|
|
1630
|
-
readonly label: "Use Ripgrep";
|
|
1631
|
-
readonly category: "Tools";
|
|
1632
|
-
readonly requiresRestart: false;
|
|
1633
|
-
readonly default: true;
|
|
1634
|
-
readonly description: "Use ripgrep for file content search instead of the fallback implementation. Provides faster search performance.";
|
|
1635
|
-
readonly showInDialog: true;
|
|
1636
|
-
};
|
|
1637
|
-
readonly truncateToolOutputThreshold: {
|
|
1638
|
-
readonly type: "number";
|
|
1639
|
-
readonly label: "Tool Output Truncation Threshold";
|
|
1640
|
-
readonly category: "General";
|
|
1641
|
-
readonly requiresRestart: true;
|
|
1642
|
-
readonly default: 40000;
|
|
1643
|
-
readonly description: "Maximum characters to show when truncating large tool outputs. Set to 0 or negative to disable truncation.";
|
|
1644
|
-
readonly showInDialog: true;
|
|
1645
|
-
};
|
|
1646
|
-
readonly disableLLMCorrection: {
|
|
1647
|
-
readonly type: "boolean";
|
|
1648
|
-
readonly label: "Disable LLM Correction";
|
|
1649
|
-
readonly category: "Tools";
|
|
1650
|
-
readonly requiresRestart: true;
|
|
1651
|
-
readonly default: true;
|
|
1652
|
-
readonly description: string;
|
|
1653
|
-
readonly showInDialog: true;
|
|
1654
|
-
};
|
|
1655
|
-
};
|
|
1656
|
-
};
|
|
1657
|
-
readonly mcp: {
|
|
1658
|
-
readonly type: "object";
|
|
1659
|
-
readonly label: "MCP";
|
|
1660
|
-
readonly category: "MCP";
|
|
1661
|
-
readonly requiresRestart: true;
|
|
1662
|
-
readonly default: {};
|
|
1663
|
-
readonly description: "Settings for Model Context Protocol (MCP) servers.";
|
|
1664
|
-
readonly showInDialog: false;
|
|
1665
|
-
readonly properties: {
|
|
1666
|
-
readonly serverCommand: {
|
|
1667
|
-
readonly type: "string";
|
|
1668
|
-
readonly label: "MCP Server Command";
|
|
1669
|
-
readonly category: "MCP";
|
|
1670
|
-
readonly requiresRestart: true;
|
|
1671
|
-
readonly default: string | undefined;
|
|
1672
|
-
readonly description: "Command to start an MCP server.";
|
|
1673
|
-
readonly showInDialog: false;
|
|
1674
|
-
};
|
|
1675
|
-
readonly allowed: {
|
|
1676
|
-
readonly type: "array";
|
|
1677
|
-
readonly label: "Allow MCP Servers";
|
|
1678
|
-
readonly category: "MCP";
|
|
1679
|
-
readonly requiresRestart: true;
|
|
1680
|
-
readonly default: string[] | undefined;
|
|
1681
|
-
readonly description: "A list of MCP servers to allow.";
|
|
1682
|
-
readonly showInDialog: false;
|
|
1683
|
-
readonly items: {
|
|
1684
|
-
readonly type: "string";
|
|
1685
|
-
};
|
|
1686
|
-
};
|
|
1687
|
-
readonly excluded: {
|
|
1688
|
-
readonly type: "array";
|
|
1689
|
-
readonly label: "Exclude MCP Servers";
|
|
1690
|
-
readonly category: "MCP";
|
|
1691
|
-
readonly requiresRestart: true;
|
|
1692
|
-
readonly default: string[] | undefined;
|
|
1693
|
-
readonly description: "A list of MCP servers to exclude.";
|
|
1694
|
-
readonly showInDialog: false;
|
|
1695
|
-
readonly items: {
|
|
1696
|
-
readonly type: "string";
|
|
1697
|
-
};
|
|
1698
|
-
};
|
|
1699
|
-
};
|
|
1700
|
-
};
|
|
1701
|
-
readonly useWriteTodos: {
|
|
1702
|
-
readonly type: "boolean";
|
|
1703
|
-
readonly label: "Use WriteTodos";
|
|
1704
|
-
readonly category: "Advanced";
|
|
1705
|
-
readonly requiresRestart: false;
|
|
1706
|
-
readonly default: true;
|
|
1707
|
-
readonly description: "Enable the write_todos tool.";
|
|
1708
|
-
readonly showInDialog: false;
|
|
1709
|
-
};
|
|
1710
|
-
readonly security: {
|
|
1711
|
-
readonly type: "object";
|
|
1712
|
-
readonly label: "Security";
|
|
1713
|
-
readonly category: "Security";
|
|
1714
|
-
readonly requiresRestart: true;
|
|
1715
|
-
readonly default: {};
|
|
1716
|
-
readonly description: "Security-related settings.";
|
|
1717
|
-
readonly showInDialog: false;
|
|
1718
|
-
readonly properties: {
|
|
1719
|
-
readonly toolSandboxing: {
|
|
1720
|
-
readonly type: "boolean";
|
|
1721
|
-
readonly label: "Tool Sandboxing";
|
|
1722
|
-
readonly category: "Security";
|
|
1723
|
-
readonly requiresRestart: true;
|
|
1724
|
-
readonly default: false;
|
|
1725
|
-
readonly description: "Tool-level sandboxing. Isolates individual tools instead of the entire CLI process.";
|
|
1726
|
-
readonly showInDialog: true;
|
|
1727
|
-
};
|
|
1728
|
-
readonly disableYoloMode: {
|
|
1729
|
-
readonly type: "boolean";
|
|
1730
|
-
readonly label: "Disable YOLO Mode";
|
|
1731
|
-
readonly category: "Security";
|
|
1732
|
-
readonly requiresRestart: true;
|
|
1733
|
-
readonly default: false;
|
|
1734
|
-
readonly description: "Disable YOLO mode, even if enabled by a flag.";
|
|
1735
|
-
readonly showInDialog: true;
|
|
1736
|
-
};
|
|
1737
|
-
readonly disableAlwaysAllow: {
|
|
1738
|
-
readonly type: "boolean";
|
|
1739
|
-
readonly label: "Disable Always Allow";
|
|
1740
|
-
readonly category: "Security";
|
|
1741
|
-
readonly requiresRestart: true;
|
|
1742
|
-
readonly default: false;
|
|
1743
|
-
readonly description: "Disable \"Always allow\" options in tool confirmation dialogs.";
|
|
1744
|
-
readonly showInDialog: true;
|
|
1745
|
-
};
|
|
1746
|
-
readonly enablePermanentToolApproval: {
|
|
1747
|
-
readonly type: "boolean";
|
|
1748
|
-
readonly label: "Allow Permanent Tool Approval";
|
|
1749
|
-
readonly category: "Security";
|
|
1750
|
-
readonly requiresRestart: false;
|
|
1751
|
-
readonly default: false;
|
|
1752
|
-
readonly description: "Enable the \"Allow for all future sessions\" option in tool confirmation dialogs.";
|
|
1753
|
-
readonly showInDialog: true;
|
|
1754
|
-
};
|
|
1755
|
-
readonly autoAddToPolicyByDefault: {
|
|
1756
|
-
readonly type: "boolean";
|
|
1757
|
-
readonly label: "Auto-add to Policy by Default";
|
|
1758
|
-
readonly category: "Security";
|
|
1759
|
-
readonly requiresRestart: false;
|
|
1760
|
-
readonly default: false;
|
|
1761
|
-
readonly description: string;
|
|
1762
|
-
readonly showInDialog: true;
|
|
1763
|
-
};
|
|
1764
|
-
readonly blockGitExtensions: {
|
|
1765
|
-
readonly type: "boolean";
|
|
1766
|
-
readonly label: "Blocks extensions from Git";
|
|
1767
|
-
readonly category: "Security";
|
|
1768
|
-
readonly requiresRestart: true;
|
|
1769
|
-
readonly default: false;
|
|
1770
|
-
readonly description: "Blocks installing and loading extensions from Git.";
|
|
1771
|
-
readonly showInDialog: true;
|
|
1772
|
-
};
|
|
1773
|
-
readonly allowedExtensions: {
|
|
1774
|
-
readonly type: "array";
|
|
1775
|
-
readonly label: "Extension Source Regex Allowlist";
|
|
1776
|
-
readonly category: "Security";
|
|
1777
|
-
readonly requiresRestart: true;
|
|
1778
|
-
readonly default: string[];
|
|
1779
|
-
readonly description: "List of Regex patterns for allowed extensions. If nonempty, only extensions that match the patterns in this list are allowed. Overrides the blockGitExtensions setting.";
|
|
1780
|
-
readonly showInDialog: true;
|
|
1781
|
-
readonly items: {
|
|
1782
|
-
readonly type: "string";
|
|
1783
|
-
};
|
|
1784
|
-
};
|
|
1785
|
-
readonly folderTrust: {
|
|
1786
|
-
readonly type: "object";
|
|
1787
|
-
readonly label: "Folder Trust";
|
|
1788
|
-
readonly category: "Security";
|
|
1789
|
-
readonly requiresRestart: false;
|
|
1790
|
-
readonly default: {};
|
|
1791
|
-
readonly description: "Settings for folder trust.";
|
|
1792
|
-
readonly showInDialog: false;
|
|
1793
|
-
readonly properties: {
|
|
1794
|
-
readonly enabled: {
|
|
1795
|
-
readonly type: "boolean";
|
|
1796
|
-
readonly label: "Folder Trust";
|
|
1797
|
-
readonly category: "Security";
|
|
1798
|
-
readonly requiresRestart: true;
|
|
1799
|
-
readonly default: true;
|
|
1800
|
-
readonly description: "Setting to track whether Folder trust is enabled.";
|
|
1801
|
-
readonly showInDialog: true;
|
|
1802
|
-
};
|
|
1803
|
-
};
|
|
1804
|
-
};
|
|
1805
|
-
readonly environmentVariableRedaction: {
|
|
1806
|
-
readonly type: "object";
|
|
1807
|
-
readonly label: "Environment Variable Redaction";
|
|
1808
|
-
readonly category: "Security";
|
|
1809
|
-
readonly requiresRestart: false;
|
|
1810
|
-
readonly default: {};
|
|
1811
|
-
readonly description: "Settings for environment variable redaction.";
|
|
1812
|
-
readonly showInDialog: false;
|
|
1813
|
-
readonly properties: {
|
|
1814
|
-
readonly allowed: {
|
|
1815
|
-
readonly type: "array";
|
|
1816
|
-
readonly label: "Allowed Environment Variables";
|
|
1817
|
-
readonly category: "Security";
|
|
1818
|
-
readonly requiresRestart: true;
|
|
1819
|
-
readonly default: string[];
|
|
1820
|
-
readonly description: "Environment variables to always allow (bypass redaction).";
|
|
1821
|
-
readonly showInDialog: false;
|
|
1822
|
-
readonly items: {
|
|
1823
|
-
readonly type: "string";
|
|
1824
|
-
};
|
|
1825
|
-
};
|
|
1826
|
-
readonly blocked: {
|
|
1827
|
-
readonly type: "array";
|
|
1828
|
-
readonly label: "Blocked Environment Variables";
|
|
1829
|
-
readonly category: "Security";
|
|
1830
|
-
readonly requiresRestart: true;
|
|
1831
|
-
readonly default: string[];
|
|
1832
|
-
readonly description: "Environment variables to always redact.";
|
|
1833
|
-
readonly showInDialog: false;
|
|
1834
|
-
readonly items: {
|
|
1835
|
-
readonly type: "string";
|
|
1836
|
-
};
|
|
1837
|
-
};
|
|
1838
|
-
readonly enabled: {
|
|
1839
|
-
readonly type: "boolean";
|
|
1840
|
-
readonly label: "Enable Environment Variable Redaction";
|
|
1841
|
-
readonly category: "Security";
|
|
1842
|
-
readonly requiresRestart: true;
|
|
1843
|
-
readonly default: false;
|
|
1844
|
-
readonly description: "Enable redaction of environment variables that may contain secrets.";
|
|
1845
|
-
readonly showInDialog: true;
|
|
1846
|
-
};
|
|
1847
|
-
};
|
|
1848
|
-
};
|
|
1849
|
-
readonly auth: {
|
|
1850
|
-
readonly type: "object";
|
|
1851
|
-
readonly label: "Authentication";
|
|
1852
|
-
readonly category: "Security";
|
|
1853
|
-
readonly requiresRestart: true;
|
|
1854
|
-
readonly default: {};
|
|
1855
|
-
readonly description: "Authentication settings.";
|
|
1856
|
-
readonly showInDialog: false;
|
|
1857
|
-
readonly properties: {
|
|
1858
|
-
readonly selectedType: {
|
|
1859
|
-
readonly type: "string";
|
|
1860
|
-
readonly label: "Selected Auth Type";
|
|
1861
|
-
readonly category: "Security";
|
|
1862
|
-
readonly requiresRestart: true;
|
|
1863
|
-
readonly default: AuthType | undefined;
|
|
1864
|
-
readonly description: "The currently selected authentication type.";
|
|
1865
|
-
readonly showInDialog: false;
|
|
1866
|
-
};
|
|
1867
|
-
readonly enforcedType: {
|
|
1868
|
-
readonly type: "string";
|
|
1869
|
-
readonly label: "Enforced Auth Type";
|
|
1870
|
-
readonly category: "Advanced";
|
|
1871
|
-
readonly requiresRestart: true;
|
|
1872
|
-
readonly default: AuthType | undefined;
|
|
1873
|
-
readonly description: "The required auth type. If this does not match the selected auth type, the user will be prompted to re-authenticate.";
|
|
1874
|
-
readonly showInDialog: false;
|
|
1875
|
-
};
|
|
1876
|
-
readonly useExternal: {
|
|
1877
|
-
readonly type: "boolean";
|
|
1878
|
-
readonly label: "Use External Auth";
|
|
1879
|
-
readonly category: "Security";
|
|
1880
|
-
readonly requiresRestart: true;
|
|
1881
|
-
readonly default: boolean | undefined;
|
|
1882
|
-
readonly description: "Whether to use an external authentication flow.";
|
|
1883
|
-
readonly showInDialog: false;
|
|
1884
|
-
};
|
|
1885
|
-
};
|
|
1886
|
-
};
|
|
1887
|
-
readonly enableConseca: {
|
|
1888
|
-
readonly type: "boolean";
|
|
1889
|
-
readonly label: "Enable Context-Aware Security";
|
|
1890
|
-
readonly category: "Security";
|
|
1891
|
-
readonly requiresRestart: true;
|
|
1892
|
-
readonly default: false;
|
|
1893
|
-
readonly description: "Enable the context-aware security checker. This feature uses an LLM to dynamically generate and enforce security policies for tool use based on your prompt, providing an additional layer of protection against unintended actions.";
|
|
1894
|
-
readonly showInDialog: true;
|
|
1895
|
-
};
|
|
1896
|
-
};
|
|
1897
|
-
};
|
|
1898
|
-
readonly advanced: {
|
|
1899
|
-
readonly type: "object";
|
|
1900
|
-
readonly label: "Advanced";
|
|
1901
|
-
readonly category: "Advanced";
|
|
1902
|
-
readonly requiresRestart: true;
|
|
1903
|
-
readonly default: {};
|
|
1904
|
-
readonly description: "Advanced settings for power users.";
|
|
1905
|
-
readonly showInDialog: false;
|
|
1906
|
-
readonly properties: {
|
|
1907
|
-
readonly autoConfigureMemory: {
|
|
1908
|
-
readonly type: "boolean";
|
|
1909
|
-
readonly label: "Auto Configure Max Old Space Size";
|
|
1910
|
-
readonly category: "Advanced";
|
|
1911
|
-
readonly requiresRestart: true;
|
|
1912
|
-
readonly default: true;
|
|
1913
|
-
readonly description: "Automatically configure Node.js memory limits. Note: Because memory is allocated during the initial process boot, this setting is only read from the global user settings file and ignores workspace-level overrides.";
|
|
1914
|
-
readonly showInDialog: true;
|
|
1915
|
-
};
|
|
1916
|
-
readonly dnsResolutionOrder: {
|
|
1917
|
-
readonly type: "string";
|
|
1918
|
-
readonly label: "DNS Resolution Order";
|
|
1919
|
-
readonly category: "Advanced";
|
|
1920
|
-
readonly requiresRestart: true;
|
|
1921
|
-
readonly default: DnsResolutionOrder | undefined;
|
|
1922
|
-
readonly description: "The DNS resolution order.";
|
|
1923
|
-
readonly showInDialog: false;
|
|
1924
|
-
};
|
|
1925
|
-
readonly excludedEnvVars: {
|
|
1926
|
-
readonly type: "array";
|
|
1927
|
-
readonly label: "Excluded Project Environment Variables";
|
|
1928
|
-
readonly category: "Advanced";
|
|
1929
|
-
readonly requiresRestart: false;
|
|
1930
|
-
readonly default: string[];
|
|
1931
|
-
readonly description: "Environment variables to exclude from project context.";
|
|
1932
|
-
readonly showInDialog: false;
|
|
1933
|
-
readonly items: {
|
|
1934
|
-
readonly type: "string";
|
|
1935
|
-
};
|
|
1936
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
1937
|
-
};
|
|
1938
|
-
readonly ignoreLocalEnv: {
|
|
1939
|
-
readonly type: "boolean";
|
|
1940
|
-
readonly label: "Ignore Local .env";
|
|
1941
|
-
readonly category: "Advanced";
|
|
1942
|
-
readonly requiresRestart: true;
|
|
1943
|
-
readonly default: false;
|
|
1944
|
-
readonly description: "Whether to ignore generic .env files in the project directory.";
|
|
1945
|
-
readonly showInDialog: true;
|
|
1946
|
-
};
|
|
1947
|
-
readonly bugCommand: {
|
|
1948
|
-
readonly type: "object";
|
|
1949
|
-
readonly label: "Bug Command";
|
|
1950
|
-
readonly category: "Advanced";
|
|
1951
|
-
readonly requiresRestart: false;
|
|
1952
|
-
readonly default: BugCommandSettings | undefined;
|
|
1953
|
-
readonly description: "Configuration for the bug report command.";
|
|
1954
|
-
readonly showInDialog: false;
|
|
1955
|
-
readonly ref: "BugCommandSettings";
|
|
1956
|
-
};
|
|
1957
|
-
};
|
|
1958
|
-
};
|
|
1959
|
-
readonly experimental: {
|
|
1960
|
-
readonly type: "object";
|
|
1961
|
-
readonly label: "Experimental";
|
|
1962
|
-
readonly category: "Experimental";
|
|
1963
|
-
readonly requiresRestart: true;
|
|
1964
|
-
readonly default: {};
|
|
1965
|
-
readonly description: "Setting to enable experimental features";
|
|
1966
|
-
readonly showInDialog: false;
|
|
1967
|
-
readonly properties: {
|
|
1968
|
-
readonly gemma: {
|
|
1969
|
-
readonly type: "boolean";
|
|
1970
|
-
readonly label: "Gemma Models";
|
|
1971
|
-
readonly category: "Experimental";
|
|
1972
|
-
readonly requiresRestart: true;
|
|
1973
|
-
readonly default: true;
|
|
1974
|
-
readonly description: "Enable access to Gemma 4 models via Gemini API.";
|
|
1975
|
-
readonly showInDialog: true;
|
|
1976
|
-
};
|
|
1977
|
-
readonly voiceMode: {
|
|
1978
|
-
readonly type: "boolean";
|
|
1979
|
-
readonly label: "Voice Mode";
|
|
1980
|
-
readonly category: "Experimental";
|
|
1981
|
-
readonly requiresRestart: false;
|
|
1982
|
-
readonly default: false;
|
|
1983
|
-
readonly description: "Enable experimental voice dictation and commands (/voice, /voice model).";
|
|
1984
|
-
readonly showInDialog: true;
|
|
1985
|
-
};
|
|
1986
|
-
readonly voice: {
|
|
1987
|
-
readonly type: "object";
|
|
1988
|
-
readonly label: "Voice";
|
|
1989
|
-
readonly category: "Experimental";
|
|
1990
|
-
readonly requiresRestart: false;
|
|
1991
|
-
readonly default: {};
|
|
1992
|
-
readonly description: "Settings for voice mode and transcription.";
|
|
1993
|
-
readonly showInDialog: false;
|
|
1994
|
-
readonly properties: {
|
|
1995
|
-
readonly activationMode: {
|
|
1996
|
-
readonly type: "enum";
|
|
1997
|
-
readonly label: "Voice Activation Mode";
|
|
1998
|
-
readonly category: "Experimental";
|
|
1999
|
-
readonly requiresRestart: false;
|
|
2000
|
-
readonly default: "push-to-talk";
|
|
2001
|
-
readonly description: "How to trigger voice recording with the Space key.";
|
|
2002
|
-
readonly showInDialog: true;
|
|
2003
|
-
readonly options: readonly [{
|
|
2004
|
-
readonly value: "push-to-talk";
|
|
2005
|
-
readonly label: "Push-To-Talk (Hold Space)";
|
|
2006
|
-
}, {
|
|
2007
|
-
readonly value: "toggle";
|
|
2008
|
-
readonly label: "Toggle (Press Space to start/stop)";
|
|
2009
|
-
}];
|
|
2010
|
-
};
|
|
2011
|
-
readonly backend: {
|
|
2012
|
-
readonly type: "enum";
|
|
2013
|
-
readonly label: "Voice Transcription Backend";
|
|
2014
|
-
readonly category: "Experimental";
|
|
2015
|
-
readonly requiresRestart: false;
|
|
2016
|
-
readonly default: "gemini-live";
|
|
2017
|
-
readonly description: string;
|
|
2018
|
-
readonly showInDialog: true;
|
|
2019
|
-
readonly options: readonly [{
|
|
2020
|
-
readonly value: "gemini-live";
|
|
2021
|
-
readonly label: "Gemini Live API (Cloud)";
|
|
2022
|
-
}, {
|
|
2023
|
-
readonly value: "whisper";
|
|
2024
|
-
readonly label: "Whisper (Local)";
|
|
2025
|
-
}];
|
|
2026
|
-
};
|
|
2027
|
-
readonly whisperModel: {
|
|
2028
|
-
readonly type: "enum";
|
|
2029
|
-
readonly label: "Whisper Model";
|
|
2030
|
-
readonly category: "Experimental";
|
|
2031
|
-
readonly requiresRestart: false;
|
|
2032
|
-
readonly default: "ggml-base.en.bin";
|
|
2033
|
-
readonly description: "The Whisper model to use for local transcription.";
|
|
2034
|
-
readonly showInDialog: true;
|
|
2035
|
-
readonly options: readonly [{
|
|
2036
|
-
readonly value: "ggml-tiny.en.bin";
|
|
2037
|
-
readonly label: "Tiny (EN) - Fast (~75MB)";
|
|
2038
|
-
}, {
|
|
2039
|
-
readonly value: "ggml-base.en.bin";
|
|
2040
|
-
readonly label: "Base (EN) - Balanced (~142MB)";
|
|
2041
|
-
}, {
|
|
2042
|
-
readonly value: "ggml-large-v3-turbo-q5_0.bin";
|
|
2043
|
-
readonly label: "Large v3 Turbo (Q5_0) - High Accuracy (~547MB)";
|
|
2044
|
-
}, {
|
|
2045
|
-
readonly value: "ggml-large-v3-turbo-q8_0.bin";
|
|
2046
|
-
readonly label: "Large v3 Turbo (Q8_0) - Max Accuracy (~834MB)";
|
|
2047
|
-
}];
|
|
2048
|
-
};
|
|
2049
|
-
readonly stopGracePeriodMs: {
|
|
2050
|
-
readonly type: "number";
|
|
2051
|
-
readonly label: "Voice Stop Grace Period (ms)";
|
|
2052
|
-
readonly category: "Experimental";
|
|
2053
|
-
readonly requiresRestart: false;
|
|
2054
|
-
readonly default: 4000;
|
|
2055
|
-
readonly description: "How long to wait for final transcription after stopping recording.";
|
|
2056
|
-
readonly showInDialog: true;
|
|
2057
|
-
};
|
|
2058
|
-
};
|
|
2059
|
-
};
|
|
2060
|
-
readonly adk: {
|
|
2061
|
-
readonly type: "object";
|
|
2062
|
-
readonly label: "ADK";
|
|
2063
|
-
readonly category: "Experimental";
|
|
2064
|
-
readonly requiresRestart: true;
|
|
2065
|
-
readonly default: {};
|
|
2066
|
-
readonly description: "Settings for the Agent Development Kit (ADK).";
|
|
2067
|
-
readonly showInDialog: false;
|
|
2068
|
-
readonly properties: {
|
|
2069
|
-
readonly agentSessionNoninteractiveEnabled: {
|
|
2070
|
-
readonly type: "boolean";
|
|
2071
|
-
readonly label: "Agent Session Non-interactive Enabled";
|
|
2072
|
-
readonly category: "Experimental";
|
|
2073
|
-
readonly requiresRestart: true;
|
|
2074
|
-
readonly default: false;
|
|
2075
|
-
readonly description: "Enable non-interactive agent sessions.";
|
|
2076
|
-
readonly showInDialog: false;
|
|
2077
|
-
};
|
|
2078
|
-
readonly agentSessionInteractiveEnabled: {
|
|
2079
|
-
readonly type: "boolean";
|
|
2080
|
-
readonly label: "Interactive Agent Session Enabled";
|
|
2081
|
-
readonly category: "Experimental";
|
|
2082
|
-
readonly requiresRestart: true;
|
|
2083
|
-
readonly default: false;
|
|
2084
|
-
readonly description: "Enable the agent session implementation for the interactive CLI.";
|
|
2085
|
-
readonly showInDialog: false;
|
|
2086
|
-
};
|
|
2087
|
-
readonly agentSessionSubagentEnabled: {
|
|
2088
|
-
readonly type: "boolean";
|
|
2089
|
-
readonly label: "Agent Session Subagent Enabled";
|
|
2090
|
-
readonly category: "Experimental";
|
|
2091
|
-
readonly requiresRestart: true;
|
|
2092
|
-
readonly default: false;
|
|
2093
|
-
readonly description: "Route subagent invocations through the AgentSession protocol instead of legacy executors.";
|
|
2094
|
-
readonly showInDialog: false;
|
|
2095
|
-
};
|
|
2096
|
-
};
|
|
2097
|
-
};
|
|
2098
|
-
readonly enableAgents: {
|
|
2099
|
-
readonly type: "boolean";
|
|
2100
|
-
readonly label: "Enable Agents";
|
|
2101
|
-
readonly category: "Experimental";
|
|
2102
|
-
readonly requiresRestart: true;
|
|
2103
|
-
readonly default: true;
|
|
2104
|
-
readonly description: "Enable local and remote subagents.";
|
|
2105
|
-
readonly showInDialog: false;
|
|
2106
|
-
};
|
|
2107
|
-
readonly worktrees: {
|
|
2108
|
-
readonly type: "boolean";
|
|
2109
|
-
readonly label: "Enable Git Worktrees";
|
|
2110
|
-
readonly category: "Experimental";
|
|
2111
|
-
readonly requiresRestart: true;
|
|
2112
|
-
readonly default: false;
|
|
2113
|
-
readonly description: "Enable automated Git worktree management for parallel work.";
|
|
2114
|
-
readonly showInDialog: true;
|
|
2115
|
-
};
|
|
2116
|
-
readonly extensionManagement: {
|
|
2117
|
-
readonly type: "boolean";
|
|
2118
|
-
readonly label: "Extension Management";
|
|
2119
|
-
readonly category: "Experimental";
|
|
2120
|
-
readonly requiresRestart: true;
|
|
2121
|
-
readonly default: true;
|
|
2122
|
-
readonly description: "Enable extension management features.";
|
|
2123
|
-
readonly showInDialog: false;
|
|
2124
|
-
};
|
|
2125
|
-
readonly extensionConfig: {
|
|
2126
|
-
readonly type: "boolean";
|
|
2127
|
-
readonly label: "Extension Configuration";
|
|
2128
|
-
readonly category: "Experimental";
|
|
2129
|
-
readonly requiresRestart: true;
|
|
2130
|
-
readonly default: true;
|
|
2131
|
-
readonly description: "Enable requesting and fetching of extension settings.";
|
|
2132
|
-
readonly showInDialog: false;
|
|
2133
|
-
};
|
|
2134
|
-
readonly extensionRegistry: {
|
|
2135
|
-
readonly type: "boolean";
|
|
2136
|
-
readonly label: "Extension Registry Explore UI";
|
|
2137
|
-
readonly category: "Experimental";
|
|
2138
|
-
readonly requiresRestart: true;
|
|
2139
|
-
readonly default: false;
|
|
2140
|
-
readonly description: "Enable extension registry explore UI.";
|
|
2141
|
-
readonly showInDialog: false;
|
|
2142
|
-
};
|
|
2143
|
-
readonly extensionRegistryURI: {
|
|
2144
|
-
readonly type: "string";
|
|
2145
|
-
readonly label: "Extension Registry URI";
|
|
2146
|
-
readonly category: "Experimental";
|
|
2147
|
-
readonly requiresRestart: true;
|
|
2148
|
-
readonly default: "https://geminicli.com/extensions.json";
|
|
2149
|
-
readonly description: "The URI (web URL or local file path) of the extension registry.";
|
|
2150
|
-
readonly showInDialog: false;
|
|
2151
|
-
};
|
|
2152
|
-
readonly extensionReloading: {
|
|
2153
|
-
readonly type: "boolean";
|
|
2154
|
-
readonly label: "Extension Reloading";
|
|
2155
|
-
readonly category: "Experimental";
|
|
2156
|
-
readonly requiresRestart: true;
|
|
2157
|
-
readonly default: false;
|
|
2158
|
-
readonly description: "Enables extension loading/unloading within the CLI session.";
|
|
2159
|
-
readonly showInDialog: false;
|
|
2160
|
-
};
|
|
2161
|
-
readonly useOSC52Paste: {
|
|
2162
|
-
readonly type: "boolean";
|
|
2163
|
-
readonly label: "Use OSC 52 Paste";
|
|
2164
|
-
readonly category: "Experimental";
|
|
2165
|
-
readonly requiresRestart: false;
|
|
2166
|
-
readonly default: false;
|
|
2167
|
-
readonly description: "Use OSC 52 for pasting. This may be more robust than the default system when using remote terminal sessions (if your terminal is configured to allow it).";
|
|
2168
|
-
readonly showInDialog: true;
|
|
2169
|
-
};
|
|
2170
|
-
readonly useOSC52Copy: {
|
|
2171
|
-
readonly type: "boolean";
|
|
2172
|
-
readonly label: "Use OSC 52 Copy";
|
|
2173
|
-
readonly category: "Experimental";
|
|
2174
|
-
readonly requiresRestart: false;
|
|
2175
|
-
readonly default: false;
|
|
2176
|
-
readonly description: "Use OSC 52 for copying. This may be more robust than the default system when using remote terminal sessions (if your terminal is configured to allow it).";
|
|
2177
|
-
readonly showInDialog: true;
|
|
2178
|
-
};
|
|
2179
|
-
readonly taskTracker: {
|
|
2180
|
-
readonly type: "boolean";
|
|
2181
|
-
readonly label: "Task Tracker";
|
|
2182
|
-
readonly category: "Experimental";
|
|
2183
|
-
readonly requiresRestart: true;
|
|
2184
|
-
readonly default: false;
|
|
2185
|
-
readonly description: "Enable task tracker tools.";
|
|
2186
|
-
readonly showInDialog: false;
|
|
2187
|
-
};
|
|
2188
|
-
readonly modelSteering: {
|
|
2189
|
-
readonly type: "boolean";
|
|
2190
|
-
readonly label: "Model Steering";
|
|
2191
|
-
readonly category: "Experimental";
|
|
2192
|
-
readonly requiresRestart: false;
|
|
2193
|
-
readonly default: false;
|
|
2194
|
-
readonly description: "Enable model steering (user hints) to guide the model during tool execution.";
|
|
2195
|
-
readonly showInDialog: true;
|
|
2196
|
-
};
|
|
2197
|
-
readonly directWebFetch: {
|
|
2198
|
-
readonly type: "boolean";
|
|
2199
|
-
readonly label: "Direct Web Fetch";
|
|
2200
|
-
readonly category: "Experimental";
|
|
2201
|
-
readonly requiresRestart: true;
|
|
2202
|
-
readonly default: false;
|
|
2203
|
-
readonly description: "Enable web fetch behavior that bypasses LLM summarization.";
|
|
2204
|
-
readonly showInDialog: true;
|
|
2205
|
-
};
|
|
2206
|
-
readonly dynamicModelConfiguration: {
|
|
2207
|
-
readonly type: "boolean";
|
|
2208
|
-
readonly label: "Dynamic Model Configuration";
|
|
2209
|
-
readonly category: "Experimental";
|
|
2210
|
-
readonly requiresRestart: true;
|
|
2211
|
-
readonly default: false;
|
|
2212
|
-
readonly description: "Enable dynamic model configuration (definitions, resolutions, and chains) via settings.";
|
|
2213
|
-
readonly showInDialog: false;
|
|
2214
|
-
};
|
|
2215
|
-
readonly gemmaModelRouter: {
|
|
2216
|
-
readonly type: "object";
|
|
2217
|
-
readonly label: "Gemma Model Router";
|
|
2218
|
-
readonly category: "Experimental";
|
|
2219
|
-
readonly requiresRestart: true;
|
|
2220
|
-
readonly default: {};
|
|
2221
|
-
readonly description: "Enable Gemma model router (experimental).";
|
|
2222
|
-
readonly showInDialog: false;
|
|
2223
|
-
readonly properties: {
|
|
2224
|
-
readonly enabled: {
|
|
2225
|
-
readonly type: "boolean";
|
|
2226
|
-
readonly label: "Enable Gemma Model Router";
|
|
2227
|
-
readonly category: "Experimental";
|
|
2228
|
-
readonly requiresRestart: true;
|
|
2229
|
-
readonly default: false;
|
|
2230
|
-
readonly description: "Enable the Gemma Model Router (experimental). Requires a local endpoint serving Gemma via the Gemini API using LiteRT-LM shim.";
|
|
2231
|
-
readonly showInDialog: true;
|
|
2232
|
-
};
|
|
2233
|
-
readonly autoStartServer: {
|
|
2234
|
-
readonly type: "boolean";
|
|
2235
|
-
readonly label: "Auto-start LiteRT Server";
|
|
2236
|
-
readonly category: "Experimental";
|
|
2237
|
-
readonly requiresRestart: true;
|
|
2238
|
-
readonly default: false;
|
|
2239
|
-
readonly description: "Automatically start the LiteRT-LM server when Gemini CLI starts and the Gemma router is enabled.";
|
|
2240
|
-
readonly showInDialog: true;
|
|
2241
|
-
};
|
|
2242
|
-
readonly binaryPath: {
|
|
2243
|
-
readonly type: "string";
|
|
2244
|
-
readonly label: "LiteRT Binary Path";
|
|
2245
|
-
readonly category: "Experimental";
|
|
2246
|
-
readonly requiresRestart: true;
|
|
2247
|
-
readonly default: "";
|
|
2248
|
-
readonly description: "Custom path to the LiteRT-LM binary. Leave empty to use the default location (~/.gemini/bin/litert/).";
|
|
2249
|
-
readonly showInDialog: false;
|
|
2250
|
-
};
|
|
2251
|
-
readonly classifier: {
|
|
2252
|
-
readonly type: "object";
|
|
2253
|
-
readonly label: "Classifier";
|
|
2254
|
-
readonly category: "Experimental";
|
|
2255
|
-
readonly requiresRestart: true;
|
|
2256
|
-
readonly default: {};
|
|
2257
|
-
readonly description: "Classifier configuration.";
|
|
2258
|
-
readonly showInDialog: false;
|
|
2259
|
-
readonly properties: {
|
|
2260
|
-
readonly host: {
|
|
2261
|
-
readonly type: "string";
|
|
2262
|
-
readonly label: "Host";
|
|
2263
|
-
readonly category: "Experimental";
|
|
2264
|
-
readonly requiresRestart: true;
|
|
2265
|
-
readonly default: "http://localhost:9379";
|
|
2266
|
-
readonly description: "The host of the classifier.";
|
|
2267
|
-
readonly showInDialog: false;
|
|
2268
|
-
};
|
|
2269
|
-
readonly model: {
|
|
2270
|
-
readonly type: "string";
|
|
2271
|
-
readonly label: "Model";
|
|
2272
|
-
readonly category: "Experimental";
|
|
2273
|
-
readonly requiresRestart: true;
|
|
2274
|
-
readonly default: "gemma3-1b-gpu-custom";
|
|
2275
|
-
readonly description: "The model to use for the classifier. Only tested on `gemma3-1b-gpu-custom`.";
|
|
2276
|
-
readonly showInDialog: false;
|
|
2277
|
-
};
|
|
2278
|
-
};
|
|
2279
|
-
};
|
|
2280
|
-
};
|
|
2281
|
-
};
|
|
2282
|
-
readonly stressTestProfile: {
|
|
2283
|
-
readonly type: "boolean";
|
|
2284
|
-
readonly label: "Use the stress test profile to aggressively trigger context management.";
|
|
2285
|
-
readonly category: "Experimental";
|
|
2286
|
-
readonly requiresRestart: true;
|
|
2287
|
-
readonly default: false;
|
|
2288
|
-
readonly description: "Significantly lowers token limits to force early garbage collection and distillation for testing purposes.";
|
|
2289
|
-
readonly showInDialog: false;
|
|
2290
|
-
};
|
|
2291
|
-
readonly autoMemory: {
|
|
2292
|
-
readonly type: "boolean";
|
|
2293
|
-
readonly label: "Auto Memory";
|
|
2294
|
-
readonly category: "Experimental";
|
|
2295
|
-
readonly requiresRestart: true;
|
|
2296
|
-
readonly default: false;
|
|
2297
|
-
readonly description: "Automatically extract memory patches and skills from past sessions in the background. Every change is written as a unified diff `.patch` file under `<projectMemoryDir>/.inbox/<kind>/` and held for review in /memory inbox; nothing is applied until you approve it.";
|
|
2298
|
-
readonly showInDialog: true;
|
|
2299
|
-
};
|
|
2300
|
-
readonly generalistProfile: {
|
|
2301
|
-
readonly type: "boolean";
|
|
2302
|
-
readonly label: "Use the generalist profile to manage agent contexts.";
|
|
2303
|
-
readonly category: "Experimental";
|
|
2304
|
-
readonly requiresRestart: true;
|
|
2305
|
-
readonly default: false;
|
|
2306
|
-
readonly description: "Suitable for general coding and software development tasks.";
|
|
2307
|
-
readonly showInDialog: true;
|
|
2308
|
-
};
|
|
2309
|
-
readonly powerUserProfile: {
|
|
2310
|
-
readonly type: "boolean";
|
|
2311
|
-
readonly label: "Use the power user profile to manage agent contexts.";
|
|
2312
|
-
readonly category: "Experimental";
|
|
2313
|
-
readonly requiresRestart: true;
|
|
2314
|
-
readonly default: false;
|
|
2315
|
-
readonly description: "Less cache friendly version of the generalist profile.";
|
|
2316
|
-
readonly showInDialog: false;
|
|
2317
|
-
};
|
|
2318
|
-
readonly contextManagement: {
|
|
2319
|
-
readonly type: "boolean";
|
|
2320
|
-
readonly label: "Enable Context Management";
|
|
2321
|
-
readonly category: "Experimental";
|
|
2322
|
-
readonly requiresRestart: true;
|
|
2323
|
-
readonly default: false;
|
|
2324
|
-
readonly description: "Enable logic for context management.";
|
|
2325
|
-
readonly showInDialog: true;
|
|
2326
|
-
};
|
|
2327
|
-
readonly topicUpdateNarration: {
|
|
2328
|
-
readonly type: "boolean";
|
|
2329
|
-
readonly label: "Topic & Update Narration";
|
|
2330
|
-
readonly category: "Experimental";
|
|
2331
|
-
readonly requiresRestart: false;
|
|
2332
|
-
readonly default: false;
|
|
2333
|
-
readonly description: "Deprecated: Use general.topicUpdateNarration instead.";
|
|
2334
|
-
readonly showInDialog: false;
|
|
2335
|
-
};
|
|
2336
|
-
};
|
|
2337
|
-
};
|
|
2338
|
-
readonly extensions: {
|
|
2339
|
-
readonly type: "object";
|
|
2340
|
-
readonly label: "Extensions";
|
|
2341
|
-
readonly category: "Extensions";
|
|
2342
|
-
readonly requiresRestart: true;
|
|
2343
|
-
readonly default: {};
|
|
2344
|
-
readonly description: "Settings for extensions.";
|
|
2345
|
-
readonly showInDialog: false;
|
|
2346
|
-
readonly properties: {
|
|
2347
|
-
readonly disabled: {
|
|
2348
|
-
readonly type: "array";
|
|
2349
|
-
readonly label: "Disabled Extensions";
|
|
2350
|
-
readonly category: "Extensions";
|
|
2351
|
-
readonly requiresRestart: true;
|
|
2352
|
-
readonly default: string[];
|
|
2353
|
-
readonly description: "List of disabled extensions.";
|
|
2354
|
-
readonly showInDialog: false;
|
|
2355
|
-
readonly items: {
|
|
2356
|
-
readonly type: "string";
|
|
2357
|
-
};
|
|
2358
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
2359
|
-
};
|
|
2360
|
-
readonly workspacesWithMigrationNudge: {
|
|
2361
|
-
readonly type: "array";
|
|
2362
|
-
readonly label: "Workspaces with Migration Nudge";
|
|
2363
|
-
readonly category: "Extensions";
|
|
2364
|
-
readonly requiresRestart: false;
|
|
2365
|
-
readonly default: string[];
|
|
2366
|
-
readonly description: "List of workspaces for which the migration nudge has been shown.";
|
|
2367
|
-
readonly showInDialog: false;
|
|
2368
|
-
readonly items: {
|
|
2369
|
-
readonly type: "string";
|
|
2370
|
-
};
|
|
2371
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
2372
|
-
};
|
|
2373
|
-
};
|
|
2374
|
-
};
|
|
2375
|
-
readonly skills: {
|
|
2376
|
-
readonly type: "object";
|
|
2377
|
-
readonly label: "Skills";
|
|
2378
|
-
readonly category: "Advanced";
|
|
2379
|
-
readonly requiresRestart: true;
|
|
2380
|
-
readonly default: {};
|
|
2381
|
-
readonly description: "Settings for agent skills.";
|
|
2382
|
-
readonly showInDialog: false;
|
|
2383
|
-
readonly properties: {
|
|
2384
|
-
readonly enabled: {
|
|
2385
|
-
readonly type: "boolean";
|
|
2386
|
-
readonly label: "Enable Agent Skills";
|
|
2387
|
-
readonly category: "Advanced";
|
|
2388
|
-
readonly requiresRestart: true;
|
|
2389
|
-
readonly default: true;
|
|
2390
|
-
readonly description: "Enable Agent Skills.";
|
|
2391
|
-
readonly showInDialog: true;
|
|
2392
|
-
};
|
|
2393
|
-
readonly disabled: {
|
|
2394
|
-
readonly type: "array";
|
|
2395
|
-
readonly label: "Disabled Skills";
|
|
2396
|
-
readonly category: "Advanced";
|
|
2397
|
-
readonly requiresRestart: true;
|
|
2398
|
-
readonly default: string[];
|
|
2399
|
-
readonly description: "List of disabled skills.";
|
|
2400
|
-
readonly showInDialog: false;
|
|
2401
|
-
readonly items: {
|
|
2402
|
-
readonly type: "string";
|
|
2403
|
-
};
|
|
2404
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
2405
|
-
};
|
|
2406
|
-
};
|
|
2407
|
-
};
|
|
2408
|
-
readonly hooksConfig: {
|
|
2409
|
-
readonly type: "object";
|
|
2410
|
-
readonly label: "HooksConfig";
|
|
2411
|
-
readonly category: "Advanced";
|
|
2412
|
-
readonly requiresRestart: false;
|
|
2413
|
-
readonly default: {};
|
|
2414
|
-
readonly description: "Hook configurations for intercepting and customizing agent behavior.";
|
|
2415
|
-
readonly showInDialog: false;
|
|
2416
|
-
readonly properties: {
|
|
2417
|
-
readonly enabled: {
|
|
2418
|
-
readonly type: "boolean";
|
|
2419
|
-
readonly label: "Enable Hooks";
|
|
2420
|
-
readonly category: "Advanced";
|
|
2421
|
-
readonly requiresRestart: true;
|
|
2422
|
-
readonly default: true;
|
|
2423
|
-
readonly description: "Canonical toggle for the hooks system. When disabled, no hooks will be executed.";
|
|
2424
|
-
readonly showInDialog: true;
|
|
2425
|
-
};
|
|
2426
|
-
readonly disabled: {
|
|
2427
|
-
readonly type: "array";
|
|
2428
|
-
readonly label: "Disabled Hooks";
|
|
2429
|
-
readonly category: "Advanced";
|
|
2430
|
-
readonly requiresRestart: false;
|
|
2431
|
-
readonly default: string[];
|
|
2432
|
-
readonly description: "List of hook names (commands) that should be disabled. Hooks in this list will not execute even if configured.";
|
|
2433
|
-
readonly showInDialog: false;
|
|
2434
|
-
readonly items: {
|
|
2435
|
-
readonly type: "string";
|
|
2436
|
-
readonly description: "Hook command name";
|
|
2437
|
-
};
|
|
2438
|
-
readonly mergeStrategy: MergeStrategy.UNION;
|
|
2439
|
-
};
|
|
2440
|
-
readonly notifications: {
|
|
2441
|
-
readonly type: "boolean";
|
|
2442
|
-
readonly label: "Hook Notifications";
|
|
2443
|
-
readonly category: "Advanced";
|
|
2444
|
-
readonly requiresRestart: false;
|
|
2445
|
-
readonly default: true;
|
|
2446
|
-
readonly description: "Show visual indicators when hooks are executing.";
|
|
2447
|
-
readonly showInDialog: true;
|
|
2448
|
-
};
|
|
2449
|
-
};
|
|
2450
|
-
};
|
|
2451
|
-
readonly hooks: {
|
|
2452
|
-
readonly type: "object";
|
|
2453
|
-
readonly label: "Hook Events";
|
|
2454
|
-
readonly category: "Advanced";
|
|
2455
|
-
readonly requiresRestart: false;
|
|
2456
|
-
readonly default: {};
|
|
2457
|
-
readonly description: "Event-specific hook configurations.";
|
|
2458
|
-
readonly showInDialog: false;
|
|
2459
|
-
readonly properties: {
|
|
2460
|
-
readonly BeforeTool: {
|
|
2461
|
-
readonly type: "array";
|
|
2462
|
-
readonly label: "Before Tool Hooks";
|
|
2463
|
-
readonly category: "Advanced";
|
|
2464
|
-
readonly requiresRestart: false;
|
|
2465
|
-
readonly default: readonly [];
|
|
2466
|
-
readonly description: "Hooks that execute before tool execution. Can intercept, validate, or modify tool calls.";
|
|
2467
|
-
readonly showInDialog: false;
|
|
2468
|
-
readonly ref: "HookDefinitionArray";
|
|
2469
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2470
|
-
};
|
|
2471
|
-
readonly AfterTool: {
|
|
2472
|
-
readonly type: "array";
|
|
2473
|
-
readonly label: "After Tool Hooks";
|
|
2474
|
-
readonly category: "Advanced";
|
|
2475
|
-
readonly requiresRestart: false;
|
|
2476
|
-
readonly default: readonly [];
|
|
2477
|
-
readonly description: "Hooks that execute after tool execution. Can process results, log outputs, or trigger follow-up actions.";
|
|
2478
|
-
readonly showInDialog: false;
|
|
2479
|
-
readonly ref: "HookDefinitionArray";
|
|
2480
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2481
|
-
};
|
|
2482
|
-
readonly BeforeAgent: {
|
|
2483
|
-
readonly type: "array";
|
|
2484
|
-
readonly label: "Before Agent Hooks";
|
|
2485
|
-
readonly category: "Advanced";
|
|
2486
|
-
readonly requiresRestart: false;
|
|
2487
|
-
readonly default: readonly [];
|
|
2488
|
-
readonly description: "Hooks that execute before agent loop starts. Can set up context or initialize resources.";
|
|
2489
|
-
readonly showInDialog: false;
|
|
2490
|
-
readonly ref: "HookDefinitionArray";
|
|
2491
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2492
|
-
};
|
|
2493
|
-
readonly AfterAgent: {
|
|
2494
|
-
readonly type: "array";
|
|
2495
|
-
readonly label: "After Agent Hooks";
|
|
2496
|
-
readonly category: "Advanced";
|
|
2497
|
-
readonly requiresRestart: false;
|
|
2498
|
-
readonly default: readonly [];
|
|
2499
|
-
readonly description: "Hooks that execute after agent loop completes. Can perform cleanup or summarize results.";
|
|
2500
|
-
readonly showInDialog: false;
|
|
2501
|
-
readonly ref: "HookDefinitionArray";
|
|
2502
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2503
|
-
};
|
|
2504
|
-
readonly Notification: {
|
|
2505
|
-
readonly type: "array";
|
|
2506
|
-
readonly label: "Notification Hooks";
|
|
2507
|
-
readonly category: "Advanced";
|
|
2508
|
-
readonly requiresRestart: false;
|
|
2509
|
-
readonly default: readonly [];
|
|
2510
|
-
readonly description: "Hooks that execute on notification events (errors, warnings, info). Can log or alert on specific conditions.";
|
|
2511
|
-
readonly showInDialog: false;
|
|
2512
|
-
readonly ref: "HookDefinitionArray";
|
|
2513
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2514
|
-
};
|
|
2515
|
-
readonly SessionStart: {
|
|
2516
|
-
readonly type: "array";
|
|
2517
|
-
readonly label: "Session Start Hooks";
|
|
2518
|
-
readonly category: "Advanced";
|
|
2519
|
-
readonly requiresRestart: false;
|
|
2520
|
-
readonly default: readonly [];
|
|
2521
|
-
readonly description: "Hooks that execute when a session starts. Can initialize session-specific resources or state.";
|
|
2522
|
-
readonly showInDialog: false;
|
|
2523
|
-
readonly ref: "HookDefinitionArray";
|
|
2524
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2525
|
-
};
|
|
2526
|
-
readonly SessionEnd: {
|
|
2527
|
-
readonly type: "array";
|
|
2528
|
-
readonly label: "Session End Hooks";
|
|
2529
|
-
readonly category: "Advanced";
|
|
2530
|
-
readonly requiresRestart: false;
|
|
2531
|
-
readonly default: readonly [];
|
|
2532
|
-
readonly description: "Hooks that execute when a session ends. Can perform cleanup or persist session data.";
|
|
2533
|
-
readonly showInDialog: false;
|
|
2534
|
-
readonly ref: "HookDefinitionArray";
|
|
2535
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2536
|
-
};
|
|
2537
|
-
readonly PreCompress: {
|
|
2538
|
-
readonly type: "array";
|
|
2539
|
-
readonly label: "Pre-Compress Hooks";
|
|
2540
|
-
readonly category: "Advanced";
|
|
2541
|
-
readonly requiresRestart: false;
|
|
2542
|
-
readonly default: readonly [];
|
|
2543
|
-
readonly description: "Hooks that execute before chat history compression. Can back up or analyze conversation before compression.";
|
|
2544
|
-
readonly showInDialog: false;
|
|
2545
|
-
readonly ref: "HookDefinitionArray";
|
|
2546
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2547
|
-
};
|
|
2548
|
-
readonly BeforeModel: {
|
|
2549
|
-
readonly type: "array";
|
|
2550
|
-
readonly label: "Before Model Hooks";
|
|
2551
|
-
readonly category: "Advanced";
|
|
2552
|
-
readonly requiresRestart: false;
|
|
2553
|
-
readonly default: readonly [];
|
|
2554
|
-
readonly description: "Hooks that execute before LLM requests. Can modify prompts, inject context, or control model parameters.";
|
|
2555
|
-
readonly showInDialog: false;
|
|
2556
|
-
readonly ref: "HookDefinitionArray";
|
|
2557
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2558
|
-
};
|
|
2559
|
-
readonly AfterModel: {
|
|
2560
|
-
readonly type: "array";
|
|
2561
|
-
readonly label: "After Model Hooks";
|
|
2562
|
-
readonly category: "Advanced";
|
|
2563
|
-
readonly requiresRestart: false;
|
|
2564
|
-
readonly default: readonly [];
|
|
2565
|
-
readonly description: "Hooks that execute after LLM responses. Can process outputs, extract information, or log interactions.";
|
|
2566
|
-
readonly showInDialog: false;
|
|
2567
|
-
readonly ref: "HookDefinitionArray";
|
|
2568
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2569
|
-
};
|
|
2570
|
-
readonly BeforeToolSelection: {
|
|
2571
|
-
readonly type: "array";
|
|
2572
|
-
readonly label: "Before Tool Selection Hooks";
|
|
2573
|
-
readonly category: "Advanced";
|
|
2574
|
-
readonly requiresRestart: false;
|
|
2575
|
-
readonly default: readonly [];
|
|
2576
|
-
readonly description: "Hooks that execute before tool selection. Can filter or prioritize available tools dynamically.";
|
|
2577
|
-
readonly showInDialog: false;
|
|
2578
|
-
readonly ref: "HookDefinitionArray";
|
|
2579
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2580
|
-
};
|
|
2581
|
-
};
|
|
2582
|
-
readonly additionalProperties: {
|
|
2583
|
-
readonly type: "array";
|
|
2584
|
-
readonly description: "Custom hook event arrays that contain hook definitions for user-defined events";
|
|
2585
|
-
readonly mergeStrategy: MergeStrategy.CONCAT;
|
|
2586
|
-
};
|
|
2587
|
-
};
|
|
2588
|
-
readonly contextManagement: {
|
|
2589
|
-
readonly type: "object";
|
|
2590
|
-
readonly label: "Context Management";
|
|
2591
|
-
readonly category: "Experimental";
|
|
2592
|
-
readonly requiresRestart: true;
|
|
2593
|
-
readonly default: {};
|
|
2594
|
-
readonly description: "Settings for agent history and tool distillation context management.";
|
|
2595
|
-
readonly showInDialog: false;
|
|
2596
|
-
readonly properties: {
|
|
2597
|
-
readonly historyWindow: {
|
|
2598
|
-
readonly type: "object";
|
|
2599
|
-
readonly label: "History Window Settings";
|
|
2600
|
-
readonly category: "Context Management";
|
|
2601
|
-
readonly requiresRestart: true;
|
|
2602
|
-
readonly default: {};
|
|
2603
|
-
readonly showInDialog: false;
|
|
2604
|
-
readonly properties: {
|
|
2605
|
-
readonly maxTokens: {
|
|
2606
|
-
readonly type: "number";
|
|
2607
|
-
readonly label: "Max Tokens";
|
|
2608
|
-
readonly category: "Context Management";
|
|
2609
|
-
readonly requiresRestart: true;
|
|
2610
|
-
readonly default: 150000;
|
|
2611
|
-
readonly description: "The number of tokens to allow before triggering compression.";
|
|
2612
|
-
readonly showInDialog: false;
|
|
2613
|
-
};
|
|
2614
|
-
readonly retainedTokens: {
|
|
2615
|
-
readonly type: "number";
|
|
2616
|
-
readonly label: "Retained Tokens";
|
|
2617
|
-
readonly category: "Context Management";
|
|
2618
|
-
readonly requiresRestart: true;
|
|
2619
|
-
readonly default: 40000;
|
|
2620
|
-
readonly description: "The number of tokens to always retain.";
|
|
2621
|
-
readonly showInDialog: false;
|
|
2622
|
-
};
|
|
2623
|
-
};
|
|
2624
|
-
};
|
|
2625
|
-
readonly messageLimits: {
|
|
2626
|
-
readonly type: "object";
|
|
2627
|
-
readonly label: "Message Limits";
|
|
2628
|
-
readonly category: "Context Management";
|
|
2629
|
-
readonly requiresRestart: true;
|
|
2630
|
-
readonly default: {};
|
|
2631
|
-
readonly showInDialog: false;
|
|
2632
|
-
readonly properties: {
|
|
2633
|
-
readonly normalMaxTokens: {
|
|
2634
|
-
readonly type: "number";
|
|
2635
|
-
readonly label: "Normal Maximum Tokens";
|
|
2636
|
-
readonly category: "Context Management";
|
|
2637
|
-
readonly requiresRestart: true;
|
|
2638
|
-
readonly default: 2500;
|
|
2639
|
-
readonly description: "The target number of tokens to budget for a normal conversation turn.";
|
|
2640
|
-
readonly showInDialog: false;
|
|
2641
|
-
};
|
|
2642
|
-
readonly retainedMaxTokens: {
|
|
2643
|
-
readonly type: "number";
|
|
2644
|
-
readonly label: "Retained Maximum Tokens";
|
|
2645
|
-
readonly category: "Context Management";
|
|
2646
|
-
readonly requiresRestart: true;
|
|
2647
|
-
readonly default: 12000;
|
|
2648
|
-
readonly description: "The maximum number of tokens a single conversation turn can consume before truncation.";
|
|
2649
|
-
readonly showInDialog: false;
|
|
2650
|
-
};
|
|
2651
|
-
readonly normalizationHeadRatio: {
|
|
2652
|
-
readonly type: "number";
|
|
2653
|
-
readonly label: "Normalization Head Ratio";
|
|
2654
|
-
readonly category: "Context Management";
|
|
2655
|
-
readonly requiresRestart: true;
|
|
2656
|
-
readonly default: 0.25;
|
|
2657
|
-
readonly description: "The ratio of tokens to retain from the beginning of a truncated message (0.0 to 1.0).";
|
|
2658
|
-
readonly showInDialog: false;
|
|
2659
|
-
};
|
|
2660
|
-
};
|
|
2661
|
-
};
|
|
2662
|
-
readonly tools: {
|
|
2663
|
-
readonly type: "object";
|
|
2664
|
-
readonly label: "Context Management Tools";
|
|
2665
|
-
readonly category: "Context Management";
|
|
2666
|
-
readonly requiresRestart: true;
|
|
2667
|
-
readonly default: {};
|
|
2668
|
-
readonly showInDialog: false;
|
|
2669
|
-
readonly properties: {
|
|
2670
|
-
readonly distillation: {
|
|
2671
|
-
readonly type: "object";
|
|
2672
|
-
readonly label: "Tool Distillation";
|
|
2673
|
-
readonly category: "Context Management";
|
|
2674
|
-
readonly requiresRestart: true;
|
|
2675
|
-
readonly default: {};
|
|
2676
|
-
readonly showInDialog: false;
|
|
2677
|
-
readonly properties: {
|
|
2678
|
-
readonly maxOutputTokens: {
|
|
2679
|
-
readonly type: "number";
|
|
2680
|
-
readonly label: "Max Output Tokens";
|
|
2681
|
-
readonly category: "Context Management";
|
|
2682
|
-
readonly requiresRestart: true;
|
|
2683
|
-
readonly default: 10000;
|
|
2684
|
-
readonly description: "Maximum tokens to show to the model when truncating large tool outputs.";
|
|
2685
|
-
readonly showInDialog: false;
|
|
2686
|
-
};
|
|
2687
|
-
readonly summarizationThresholdTokens: {
|
|
2688
|
-
readonly type: "number";
|
|
2689
|
-
readonly label: "Tool Summarization Threshold";
|
|
2690
|
-
readonly category: "Context Management";
|
|
2691
|
-
readonly requiresRestart: true;
|
|
2692
|
-
readonly default: 20000;
|
|
2693
|
-
readonly description: "Threshold above which truncated tool outputs will be summarized by an LLM.";
|
|
2694
|
-
readonly showInDialog: false;
|
|
2695
|
-
};
|
|
2696
|
-
};
|
|
2697
|
-
};
|
|
2698
|
-
readonly outputMasking: {
|
|
2699
|
-
readonly type: "object";
|
|
2700
|
-
readonly label: "Tool Output Masking";
|
|
2701
|
-
readonly category: "Context Management";
|
|
2702
|
-
readonly requiresRestart: true;
|
|
2703
|
-
readonly ignoreInDocs: false;
|
|
2704
|
-
readonly default: {};
|
|
2705
|
-
readonly description: "Advanced settings for tool output masking to manage context window efficiency.";
|
|
2706
|
-
readonly showInDialog: false;
|
|
2707
|
-
readonly properties: {
|
|
2708
|
-
readonly protectionThresholdTokens: {
|
|
2709
|
-
readonly type: "number";
|
|
2710
|
-
readonly label: "Tool Protection Threshold (Tokens)";
|
|
2711
|
-
readonly category: "Context Management";
|
|
2712
|
-
readonly requiresRestart: true;
|
|
2713
|
-
readonly default: 50000;
|
|
2714
|
-
readonly description: "Minimum number of tokens to protect from masking (most recent tool outputs).";
|
|
2715
|
-
readonly showInDialog: false;
|
|
2716
|
-
};
|
|
2717
|
-
readonly minPrunableThresholdTokens: {
|
|
2718
|
-
readonly type: "number";
|
|
2719
|
-
readonly label: "Min Prunable Tokens Threshold";
|
|
2720
|
-
readonly category: "Context Management";
|
|
2721
|
-
readonly requiresRestart: true;
|
|
2722
|
-
readonly default: 30000;
|
|
2723
|
-
readonly description: "Minimum prunable tokens required to trigger a masking pass.";
|
|
2724
|
-
readonly showInDialog: false;
|
|
2725
|
-
};
|
|
2726
|
-
readonly protectLatestTurn: {
|
|
2727
|
-
readonly type: "boolean";
|
|
2728
|
-
readonly label: "Protect Latest Turn";
|
|
2729
|
-
readonly category: "Context Management";
|
|
2730
|
-
readonly requiresRestart: true;
|
|
2731
|
-
readonly default: true;
|
|
2732
|
-
readonly description: "Ensures the absolute latest turn is never masked, regardless of token count.";
|
|
2733
|
-
readonly showInDialog: false;
|
|
2734
|
-
};
|
|
2735
|
-
};
|
|
2736
|
-
};
|
|
2737
|
-
};
|
|
2738
|
-
};
|
|
2739
|
-
};
|
|
2740
|
-
};
|
|
2741
|
-
readonly admin: {
|
|
2742
|
-
readonly type: "object";
|
|
2743
|
-
readonly label: "Admin";
|
|
2744
|
-
readonly category: "Admin";
|
|
2745
|
-
readonly requiresRestart: false;
|
|
2746
|
-
readonly default: {};
|
|
2747
|
-
readonly description: "Settings configured remotely by enterprise admins.";
|
|
2748
|
-
readonly showInDialog: false;
|
|
2749
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2750
|
-
readonly properties: {
|
|
2751
|
-
readonly secureModeEnabled: {
|
|
2752
|
-
readonly type: "boolean";
|
|
2753
|
-
readonly label: "Secure Mode Enabled";
|
|
2754
|
-
readonly category: "Admin";
|
|
2755
|
-
readonly requiresRestart: false;
|
|
2756
|
-
readonly default: false;
|
|
2757
|
-
readonly description: "If true, disallows YOLO mode and \"Always allow\" options from being used.";
|
|
2758
|
-
readonly showInDialog: false;
|
|
2759
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2760
|
-
};
|
|
2761
|
-
readonly extensions: {
|
|
2762
|
-
readonly type: "object";
|
|
2763
|
-
readonly label: "Extensions Settings";
|
|
2764
|
-
readonly category: "Admin";
|
|
2765
|
-
readonly requiresRestart: false;
|
|
2766
|
-
readonly default: {};
|
|
2767
|
-
readonly description: "Extensions-specific admin settings.";
|
|
2768
|
-
readonly showInDialog: false;
|
|
2769
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2770
|
-
readonly properties: {
|
|
2771
|
-
readonly enabled: {
|
|
2772
|
-
readonly type: "boolean";
|
|
2773
|
-
readonly label: "Extensions Enabled";
|
|
2774
|
-
readonly category: "Admin";
|
|
2775
|
-
readonly requiresRestart: false;
|
|
2776
|
-
readonly default: true;
|
|
2777
|
-
readonly description: "If false, disallows extensions from being installed or used.";
|
|
2778
|
-
readonly showInDialog: false;
|
|
2779
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2780
|
-
};
|
|
2781
|
-
};
|
|
2782
|
-
};
|
|
2783
|
-
readonly mcp: {
|
|
2784
|
-
readonly type: "object";
|
|
2785
|
-
readonly label: "MCP Settings";
|
|
2786
|
-
readonly category: "Admin";
|
|
2787
|
-
readonly requiresRestart: false;
|
|
2788
|
-
readonly default: {};
|
|
2789
|
-
readonly description: "MCP-specific admin settings.";
|
|
2790
|
-
readonly showInDialog: false;
|
|
2791
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2792
|
-
readonly properties: {
|
|
2793
|
-
readonly enabled: {
|
|
2794
|
-
readonly type: "boolean";
|
|
2795
|
-
readonly label: "MCP Enabled";
|
|
2796
|
-
readonly category: "Admin";
|
|
2797
|
-
readonly requiresRestart: false;
|
|
2798
|
-
readonly default: true;
|
|
2799
|
-
readonly description: "If false, disallows MCP servers from being used.";
|
|
2800
|
-
readonly showInDialog: false;
|
|
2801
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2802
|
-
};
|
|
2803
|
-
readonly config: {
|
|
2804
|
-
readonly type: "object";
|
|
2805
|
-
readonly label: "MCP Config";
|
|
2806
|
-
readonly category: "Admin";
|
|
2807
|
-
readonly requiresRestart: false;
|
|
2808
|
-
readonly default: Record<string, MCPServerConfig>;
|
|
2809
|
-
readonly description: "Admin-configured MCP servers (allowlist).";
|
|
2810
|
-
readonly showInDialog: false;
|
|
2811
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2812
|
-
readonly additionalProperties: {
|
|
2813
|
-
readonly type: "object";
|
|
2814
|
-
readonly ref: "MCPServerConfig";
|
|
2815
|
-
};
|
|
2816
|
-
};
|
|
2817
|
-
readonly requiredConfig: {
|
|
2818
|
-
readonly type: "object";
|
|
2819
|
-
readonly label: "Required MCP Config";
|
|
2820
|
-
readonly category: "Admin";
|
|
2821
|
-
readonly requiresRestart: false;
|
|
2822
|
-
readonly default: Record<string, {
|
|
2823
|
-
type: "sse" | "http";
|
|
2824
|
-
url: string;
|
|
2825
|
-
description?: string | undefined;
|
|
2826
|
-
timeout?: number | undefined;
|
|
2827
|
-
trust?: boolean | undefined;
|
|
2828
|
-
includeTools?: string[] | undefined;
|
|
2829
|
-
excludeTools?: string[] | undefined;
|
|
2830
|
-
authProviderType?: AuthProviderType | undefined;
|
|
2831
|
-
oauth?: {
|
|
2832
|
-
scopes?: string[] | undefined;
|
|
2833
|
-
clientId?: string | undefined;
|
|
2834
|
-
clientSecret?: string | undefined;
|
|
2835
|
-
} | undefined;
|
|
2836
|
-
targetAudience?: string | undefined;
|
|
2837
|
-
targetServiceAccount?: string | undefined;
|
|
2838
|
-
headers?: Record<string, string> | undefined;
|
|
2839
|
-
}>;
|
|
2840
|
-
readonly description: "Admin-required MCP servers that are always injected.";
|
|
2841
|
-
readonly showInDialog: false;
|
|
2842
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2843
|
-
readonly additionalProperties: {
|
|
2844
|
-
readonly type: "object";
|
|
2845
|
-
readonly ref: "RequiredMcpServerConfig";
|
|
2846
|
-
};
|
|
2847
|
-
};
|
|
2848
|
-
};
|
|
2849
|
-
};
|
|
2850
|
-
readonly skills: {
|
|
2851
|
-
readonly type: "object";
|
|
2852
|
-
readonly label: "Skills Settings";
|
|
2853
|
-
readonly category: "Admin";
|
|
2854
|
-
readonly requiresRestart: false;
|
|
2855
|
-
readonly default: {};
|
|
2856
|
-
readonly description: "Agent Skills-specific admin settings.";
|
|
2857
|
-
readonly showInDialog: false;
|
|
2858
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2859
|
-
readonly properties: {
|
|
2860
|
-
readonly enabled: {
|
|
2861
|
-
readonly type: "boolean";
|
|
2862
|
-
readonly label: "Skills Enabled";
|
|
2863
|
-
readonly category: "Admin";
|
|
2864
|
-
readonly requiresRestart: false;
|
|
2865
|
-
readonly default: true;
|
|
2866
|
-
readonly description: "If false, disallows agent skills from being used.";
|
|
2867
|
-
readonly showInDialog: false;
|
|
2868
|
-
readonly mergeStrategy: MergeStrategy.REPLACE;
|
|
2869
|
-
};
|
|
2870
|
-
};
|
|
2871
|
-
};
|
|
2872
|
-
};
|
|
2873
|
-
};
|
|
2874
|
-
};
|
|
2875
|
-
export type SettingsSchemaType = typeof SETTINGS_SCHEMA;
|
|
2876
|
-
export type SettingsJsonSchemaDefinition = Record<string, unknown>;
|
|
2877
|
-
export declare const SETTINGS_SCHEMA_DEFINITIONS: Record<string, SettingsJsonSchemaDefinition>;
|
|
2878
|
-
export declare function getSettingsSchema(): SettingsSchemaType;
|
|
2879
|
-
type InferSettings<T extends SettingsSchema> = {
|
|
2880
|
-
-readonly [K in keyof T]?: T[K] extends {
|
|
2881
|
-
properties: SettingsSchema;
|
|
2882
|
-
} ? 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'] extends string ? string : T[K]['default'] extends ReadonlyArray<infer U> ? U[] : T[K]['default'];
|
|
2883
|
-
};
|
|
2884
|
-
type InferMergedSettings<T extends SettingsSchema> = {
|
|
2885
|
-
-readonly [K in keyof T]-?: T[K] extends {
|
|
2886
|
-
properties: SettingsSchema;
|
|
2887
|
-
} ? InferMergedSettings<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'] extends string ? string : T[K]['default'] extends ReadonlyArray<infer U> ? U[] : T[K]['default'];
|
|
2888
|
-
};
|
|
2889
|
-
export type Settings = InferSettings<SettingsSchemaType>;
|
|
2890
|
-
export type MergedSettings = InferMergedSettings<SettingsSchemaType>;
|
|
2891
|
-
export {};
|