@machina.ai/cell-cli 1.38.1-rc2 → 1.40.1-rc2
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/index.js +124 -29
- package/dist/index.js.map +1 -1
- package/dist/package.json +4 -4
- package/dist/src/acp/acpClient.js +8 -3
- package/dist/src/acp/acpClient.js.map +1 -1
- package/dist/src/acp/acpClient.test.js +27 -0
- package/dist/src/acp/acpClient.test.js.map +1 -1
- package/dist/src/acp/acpResume.test.js +1 -0
- package/dist/src/acp/acpResume.test.js.map +1 -1
- package/dist/src/acp/commands/memory.d.ts +6 -1
- package/dist/src/acp/commands/memory.js +40 -1
- package/dist/src/acp/commands/memory.js.map +1 -1
- package/dist/src/commands/gemma/constants.d.ts +17 -0
- package/dist/src/commands/gemma/constants.js +35 -0
- package/dist/src/commands/gemma/constants.js.map +1 -0
- package/dist/src/commands/gemma/logs.d.ts +13 -0
- package/dist/src/commands/gemma/logs.js +154 -0
- package/dist/src/commands/gemma/logs.js.map +1 -0
- package/dist/src/commands/gemma/logs.test.d.ts +6 -0
- package/dist/src/commands/gemma/logs.test.js +122 -0
- package/dist/src/commands/gemma/logs.test.js.map +1 -0
- package/dist/src/commands/gemma/platform.d.ts +38 -0
- package/dist/src/commands/gemma/platform.js +220 -0
- package/dist/src/commands/gemma/platform.js.map +1 -0
- package/dist/src/commands/gemma/platform.test.d.ts +6 -0
- package/dist/src/commands/gemma/platform.test.js +108 -0
- package/dist/src/commands/gemma/platform.test.js.map +1 -0
- package/dist/src/commands/gemma/setup.d.ts +9 -0
- package/dist/src/commands/gemma/setup.js +392 -0
- package/dist/src/commands/gemma/setup.js.map +1 -0
- package/dist/src/commands/gemma/setup.test.d.ts +6 -0
- package/dist/src/commands/gemma/setup.test.js +36 -0
- package/dist/src/commands/gemma/setup.test.js.map +1 -0
- package/dist/src/commands/gemma/start.d.ts +8 -0
- package/dist/src/commands/gemma/start.js +87 -0
- package/dist/src/commands/gemma/start.js.map +1 -0
- package/dist/src/commands/gemma/status.d.ts +19 -0
- package/dist/src/commands/gemma/status.js +110 -0
- package/dist/src/commands/gemma/status.js.map +1 -0
- package/dist/src/commands/gemma/stop.d.ts +9 -0
- package/dist/src/commands/gemma/stop.js +110 -0
- package/dist/src/commands/gemma/stop.js.map +1 -0
- package/dist/src/commands/gemma/stop.test.d.ts +6 -0
- package/dist/src/commands/gemma/stop.test.js +89 -0
- package/dist/src/commands/gemma/stop.test.js.map +1 -0
- package/dist/src/commands/gemma.d.ts +7 -0
- package/dist/src/commands/gemma.js +30 -0
- package/dist/src/commands/gemma.js.map +1 -0
- package/dist/src/config/config.d.ts +1 -0
- package/dist/src/config/config.js +37 -15
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/config.test.js +12 -0
- package/dist/src/config/config.test.js.map +1 -1
- package/dist/src/config/extension.test.js +3 -2
- package/dist/src/config/extension.test.js.map +1 -1
- package/dist/src/config/extensions/github_fetch.js +2 -1
- package/dist/src/config/extensions/github_fetch.js.map +1 -1
- package/dist/src/config/extensions/github_fetch.test.js +2 -0
- package/dist/src/config/extensions/github_fetch.test.js.map +1 -1
- package/dist/src/config/footerItems.d.ts +2 -2
- package/dist/src/config/footerItems.js +2 -2
- package/dist/src/config/footerItems.js.map +1 -1
- package/dist/src/config/footerItems.test.js +38 -0
- package/dist/src/config/footerItems.test.js.map +1 -1
- package/dist/src/config/policy-engine.integration.test.js +14 -5
- package/dist/src/config/policy-engine.integration.test.js.map +1 -1
- package/dist/src/config/settings.js +20 -11
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settings.test.js +10 -4
- package/dist/src/config/settings.test.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +142 -11
- package/dist/src/config/settingsSchema.js +135 -10
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/config/settingsSchema.test.js +28 -1
- package/dist/src/config/settingsSchema.test.js.map +1 -1
- package/dist/src/config/trustedFolders.d.ts +11 -54
- package/dist/src/config/trustedFolders.js +13 -267
- package/dist/src/config/trustedFolders.js.map +1 -1
- package/dist/src/config/trustedFolders.test.js +35 -31
- package/dist/src/config/trustedFolders.test.js.map +1 -1
- package/dist/src/gemini.d.ts +4 -0
- package/dist/src/gemini.js +61 -37
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.js +15 -0
- package/dist/src/gemini.test.js.map +1 -1
- package/dist/src/gemini_cleanup.test.js +6 -0
- package/dist/src/gemini_cleanup.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/interactiveCli.js +48 -9
- package/dist/src/interactiveCli.js.map +1 -1
- package/dist/src/nonInteractiveCli.js +1 -1
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/nonInteractiveCliAgentSession.js +6 -4
- package/dist/src/nonInteractiveCliAgentSession.js.map +1 -1
- package/dist/src/services/BuiltinCommandLoader.js +2 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/services/SkillCommandLoader.js +3 -1
- package/dist/src/services/SkillCommandLoader.js.map +1 -1
- package/dist/src/services/SkillCommandLoader.test.js +1 -1
- package/dist/src/services/SkillCommandLoader.test.js.map +1 -1
- package/dist/src/services/liteRtServerManager.d.ts +9 -0
- package/dist/src/services/liteRtServerManager.js +43 -0
- package/dist/src/services/liteRtServerManager.js.map +1 -0
- package/dist/src/services/liteRtServerManager.test.d.ts +6 -0
- package/dist/src/services/liteRtServerManager.test.js +54 -0
- package/dist/src/services/liteRtServerManager.test.js.map +1 -0
- package/dist/src/test-utils/mockConfig.js +4 -1
- package/dist/src/test-utils/mockConfig.js.map +1 -1
- package/dist/src/test-utils/render.d.ts +3 -1
- package/dist/src/test-utils/render.js +13 -3
- package/dist/src/test-utils/render.js.map +1 -1
- package/dist/src/ui/AppContainer.js +55 -33
- package/dist/src/ui/AppContainer.js.map +1 -1
- package/dist/src/ui/AppContainer.test.js +9 -4
- package/dist/src/ui/AppContainer.test.js.map +1 -1
- package/dist/src/ui/ToolConfirmationFullFrame.test.js +7 -9
- package/dist/src/ui/ToolConfirmationFullFrame.test.js.map +1 -1
- package/dist/src/ui/auth/ApiAuthDialog.js +1 -1
- package/dist/src/ui/auth/ApiAuthDialog.js.map +1 -1
- package/dist/src/ui/auth/ApiAuthDialog.test.js +15 -11
- package/dist/src/ui/auth/ApiAuthDialog.test.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.js +2 -2
- package/dist/src/ui/commands/bugCommand.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.test.js +3 -0
- package/dist/src/ui/commands/bugCommand.test.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.js +3 -2
- package/dist/src/ui/commands/clearCommand.js.map +1 -1
- package/dist/src/ui/commands/clearCommand.test.js +2 -1
- package/dist/src/ui/commands/clearCommand.test.js.map +1 -1
- package/dist/src/ui/commands/gemmaStatusCommand.d.ts +7 -0
- package/dist/src/ui/commands/gemmaStatusCommand.js +34 -0
- package/dist/src/ui/commands/gemmaStatusCommand.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.js +36 -0
- package/dist/src/ui/commands/memoryCommand.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.test.js +60 -0
- package/dist/src/ui/commands/memoryCommand.test.js.map +1 -1
- package/dist/src/ui/commands/settingsCommand.js +0 -1
- package/dist/src/ui/commands/settingsCommand.js.map +1 -1
- package/dist/src/ui/components/AppHeader.js +3 -2
- package/dist/src/ui/components/AppHeader.js.map +1 -1
- package/dist/src/ui/components/AppHeader.test.js +1 -1
- package/dist/src/ui/components/AppHeader.test.js.map +1 -1
- package/dist/src/ui/components/AsciiArt.d.ts +6 -6
- package/dist/src/ui/components/AsciiArt.js +6 -6
- package/dist/src/ui/components/AskUserDialog.js +19 -3
- package/dist/src/ui/components/AskUserDialog.js.map +1 -1
- package/dist/src/ui/components/CodiMascot.d.ts +6 -0
- package/dist/src/ui/components/CodiMascot.js +18 -0
- package/dist/src/ui/components/CodiMascot.js.map +1 -0
- package/dist/src/ui/components/Composer.test.js +12 -8
- package/dist/src/ui/components/Composer.test.js.map +1 -1
- package/dist/src/ui/components/DialogManager.js +10 -8
- package/dist/src/ui/components/DialogManager.js.map +1 -1
- package/dist/src/ui/components/DialogManager.test.js +11 -23
- package/dist/src/ui/components/DialogManager.test.js.map +1 -1
- package/dist/src/ui/components/ExitPlanModeDialog.js +1 -1
- package/dist/src/ui/components/ExitPlanModeDialog.js.map +1 -1
- package/dist/src/ui/components/ExitPlanModeDialog.test.js +4 -0
- package/dist/src/ui/components/ExitPlanModeDialog.test.js.map +1 -1
- package/dist/src/ui/components/Footer.js +5 -3
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/Footer.test.js +21 -35
- package/dist/src/ui/components/Footer.test.js.map +1 -1
- package/dist/src/ui/components/FooterConfigDialog.js +8 -10
- package/dist/src/ui/components/FooterConfigDialog.js.map +1 -1
- package/dist/src/ui/components/FooterConfigDialog.test.js +1 -1
- package/dist/src/ui/components/FooterConfigDialog.test.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +0 -1
- package/dist/src/ui/components/HistoryItemDisplay.js +3 -10
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -1
- package/dist/src/ui/components/HistoryItemDisplay.test.js +4 -4
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.js +6 -19
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.test.js +2 -119
- package/dist/src/ui/components/InputPrompt.test.js.map +1 -1
- package/dist/src/ui/components/MainContent.js +4 -34
- package/dist/src/ui/components/MainContent.js.map +1 -1
- package/dist/src/ui/components/ModelDialog.test.js +1 -0
- package/dist/src/ui/components/ModelDialog.test.js.map +1 -1
- package/dist/src/ui/components/SkillInboxDialog.d.ts +14 -0
- package/dist/src/ui/components/SkillInboxDialog.js +420 -0
- package/dist/src/ui/components/SkillInboxDialog.js.map +1 -0
- package/dist/src/ui/components/SkillInboxDialog.test.d.ts +6 -0
- package/dist/src/ui/components/SkillInboxDialog.test.js +467 -0
- package/dist/src/ui/components/SkillInboxDialog.test.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.js +4 -4
- package/dist/src/ui/components/ThemeDialog.js.map +1 -1
- package/dist/src/ui/components/ThemeDialog.test.js +1 -1
- package/dist/src/ui/components/ToolConfirmationQueue.js +1 -1
- package/dist/src/ui/components/ToolConfirmationQueue.js.map +1 -1
- package/dist/src/ui/components/ToolConfirmationQueue.test.js +32 -0
- package/dist/src/ui/components/ToolConfirmationQueue.test.js.map +1 -1
- package/dist/src/ui/components/messages/DenseToolMessage.js +4 -17
- package/dist/src/ui/components/messages/DenseToolMessage.js.map +1 -1
- package/dist/src/ui/components/messages/DenseToolMessage.test.js +29 -6
- package/dist/src/ui/components/messages/DenseToolMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +0 -1
- package/dist/src/ui/components/messages/ToolGroupMessage.js +12 -51
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -1
- package/dist/src/ui/components/shared/BaseSelectionList.js +44 -27
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -1
- package/dist/src/ui/components/shared/BaseSelectionList.test.js +57 -1
- package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -1
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js +7 -12
- package/dist/src/ui/components/shared/HalfLinePaddedBox.js.map +1 -1
- package/dist/src/ui/components/shared/HalfLinePaddedBox.test.d.ts +0 -5
- package/dist/src/ui/components/shared/HalfLinePaddedBox.test.js +13 -5
- package/dist/src/ui/components/shared/HalfLinePaddedBox.test.js.map +1 -1
- package/dist/src/ui/components/shared/TextInput.js +11 -3
- package/dist/src/ui/components/shared/TextInput.js.map +1 -1
- package/dist/src/ui/components/shared/TextInput.test.js +17 -0
- package/dist/src/ui/components/shared/TextInput.test.js.map +1 -1
- package/dist/src/ui/components/views/GemmaStatus.d.ts +10 -0
- package/dist/src/ui/components/views/GemmaStatus.js +11 -0
- package/dist/src/ui/components/views/GemmaStatus.js.map +1 -0
- package/dist/src/ui/contexts/QuotaContext.d.ts +18 -0
- package/dist/src/ui/contexts/QuotaContext.js +15 -0
- package/dist/src/ui/contexts/QuotaContext.js.map +1 -0
- package/dist/src/ui/contexts/ScrollProvider.js +59 -18
- package/dist/src/ui/contexts/ScrollProvider.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.d.ts +1 -0
- package/dist/src/ui/contexts/SessionContext.js +2 -2
- package/dist/src/ui/contexts/SessionContext.js.map +1 -1
- package/dist/src/ui/contexts/SessionContext.test.js +4 -4
- package/dist/src/ui/contexts/SessionContext.test.js.map +1 -1
- package/dist/src/ui/contexts/UIStateContext.d.ts +2 -11
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +8 -5
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.test.js +40 -0
- package/dist/src/ui/hooks/slashCommandProcessor.test.js.map +1 -1
- package/dist/src/ui/hooks/useAgentStream.d.ts +44 -0
- package/dist/src/ui/hooks/useAgentStream.js +377 -0
- package/dist/src/ui/hooks/useAgentStream.js.map +1 -0
- package/dist/src/ui/hooks/useAgentStream.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAgentStream.test.js +161 -0
- package/dist/src/ui/hooks/useAgentStream.test.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.js +24 -5
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -1
- package/dist/src/ui/hooks/useAtCompletion.test.js +25 -0
- package/dist/src/ui/hooks/useAtCompletion.test.js.map +1 -1
- package/dist/src/ui/hooks/useComposerStatus.js +4 -2
- package/dist/src/ui/hooks/useComposerStatus.js.map +1 -1
- package/dist/src/ui/hooks/useExecutionLifecycle.js +27 -16
- package/dist/src/ui/hooks/useExecutionLifecycle.js.map +1 -1
- package/dist/src/ui/hooks/useExecutionLifecycle.test.js +38 -9
- package/dist/src/ui/hooks/useExecutionLifecycle.test.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +8 -32
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useLogger.d.ts +2 -2
- package/dist/src/ui/hooks/useLogger.js +6 -11
- package/dist/src/ui/hooks/useLogger.js.map +1 -1
- package/dist/src/ui/hooks/useLogger.test.js +4 -17
- package/dist/src/ui/hooks/useLogger.test.js.map +1 -1
- package/dist/src/ui/hooks/useRunEventNotifications.d.ts +3 -1
- package/dist/src/ui/hooks/useRunEventNotifications.js +5 -3
- package/dist/src/ui/hooks/useRunEventNotifications.js.map +1 -1
- package/dist/src/ui/hooks/useSessionBrowser.js +5 -4
- package/dist/src/ui/hooks/useSessionBrowser.js.map +1 -1
- package/dist/src/ui/hooks/useSessionBrowser.test.js +6 -7
- package/dist/src/ui/hooks/useSessionBrowser.test.js.map +1 -1
- package/dist/src/ui/hooks/useShellInactivityStatus.d.ts +2 -2
- package/dist/src/ui/hooks/useShellInactivityStatus.js +1 -2
- package/dist/src/ui/hooks/useShellInactivityStatus.js.map +1 -1
- package/dist/src/ui/hooks/useToolScheduler.d.ts +3 -2
- package/dist/src/ui/hooks/useToolScheduler.js +4 -3
- package/dist/src/ui/hooks/useToolScheduler.js.map +1 -1
- package/dist/src/ui/hooks/useTurnActivityMonitor.d.ts +6 -2
- package/dist/src/ui/hooks/useTurnActivityMonitor.js +1 -2
- package/dist/src/ui/hooks/useTurnActivityMonitor.js.map +1 -1
- package/dist/src/ui/key/keyBindings.js +5 -2
- package/dist/src/ui/key/keyBindings.js.map +1 -1
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.d.ts +7 -0
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js +140 -0
- package/dist/src/ui/themes/builtin/dark/github-dark-colorblind.js.map +1 -0
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.d.ts +7 -0
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js +140 -0
- package/dist/src/ui/themes/builtin/light/github-light-colorblind.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.js +4 -0
- package/dist/src/ui/themes/theme-manager.js.map +1 -1
- package/dist/src/ui/types.d.ts +16 -2
- package/dist/src/ui/types.js +1 -0
- package/dist/src/ui/types.js.map +1 -1
- package/dist/src/ui/utils/borderStyles.d.ts +2 -2
- package/dist/src/ui/utils/borderStyles.js.map +1 -1
- package/dist/src/ui/utils/confirmingTool.js +5 -4
- package/dist/src/ui/utils/confirmingTool.js.map +1 -1
- package/dist/src/ui/utils/historyUtils.d.ts +5 -0
- package/dist/src/ui/utils/historyUtils.js +15 -0
- package/dist/src/ui/utils/historyUtils.js.map +1 -1
- package/dist/src/ui/utils/terminalCapabilityManager.d.ts +7 -2
- package/dist/src/ui/utils/terminalCapabilityManager.js +23 -16
- package/dist/src/ui/utils/terminalCapabilityManager.js.map +1 -1
- package/dist/src/ui/utils/terminalCapabilityManager.test.js +86 -65
- package/dist/src/ui/utils/terminalCapabilityManager.test.js.map +1 -1
- package/dist/src/ui/utils/textUtils.d.ts +10 -2
- package/dist/src/ui/utils/textUtils.js +18 -9
- package/dist/src/ui/utils/textUtils.js.map +1 -1
- package/dist/src/ui/utils/textUtils.test.js +14 -0
- package/dist/src/ui/utils/textUtils.test.js.map +1 -1
- package/dist/src/utils/autoMemory.d.ts +7 -0
- package/dist/src/utils/autoMemory.js +15 -0
- package/dist/src/utils/autoMemory.js.map +1 -0
- package/dist/src/utils/cleanup.d.ts +2 -0
- package/dist/src/utils/cleanup.js +12 -0
- package/dist/src/utils/cleanup.js.map +1 -1
- package/dist/src/utils/devtoolsService.d.ts +2 -2
- package/dist/src/utils/devtoolsService.js +3 -17
- package/dist/src/utils/devtoolsService.js.map +1 -1
- package/dist/src/utils/devtoolsService.test.js +8 -37
- package/dist/src/utils/devtoolsService.test.js.map +1 -1
- package/dist/src/utils/handleAutoUpdate.test.js +2 -2
- package/dist/src/utils/sandbox.js +10 -2
- package/dist/src/utils/sandbox.js.map +1 -1
- package/dist/src/utils/sandbox.test.js +54 -1
- package/dist/src/utils/sandbox.test.js.map +1 -1
- package/dist/src/utils/sessionUtils.d.ts +3 -3
- package/dist/src/utils/sessionUtils.js +26 -19
- package/dist/src/utils/sessionUtils.js.map +1 -1
- package/dist/src/utils/sessionUtils.test.js +16 -22
- package/dist/src/utils/sessionUtils.test.js.map +1 -1
- package/dist/src/utils/sessions.js +2 -2
- package/dist/src/utils/sessions.js.map +1 -1
- package/dist/src/utils/terminalNotifications.d.ts +8 -1
- package/dist/src/utils/terminalNotifications.js +73 -17
- package/dist/src/utils/terminalNotifications.js.map +1 -1
- package/dist/src/utils/terminalNotifications.test.js +125 -31
- package/dist/src/utils/terminalNotifications.test.js.map +1 -1
- package/dist/src/utils/userStartupWarnings.js +21 -1
- package/dist/src/utils/userStartupWarnings.js.map +1 -1
- package/dist/src/utils/userStartupWarnings.test.js +34 -0
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright 2025 Google LLC
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import { type MCPServerConfig, type RequiredMcpServerConfig, type BugCommandSettings, type TelemetrySettings, type AuthType, type AgentOverride, type CustomTheme, type SandboxConfig } from '@google/gemini-cli-core';
|
|
6
|
+
import { type MCPServerConfig, type RequiredMcpServerConfig, type BugCommandSettings, type TelemetrySettings, type AuthType, type AgentOverride, type CustomTheme, type SandboxConfig, type VertexAiRoutingConfig } from '@google/gemini-cli-core';
|
|
7
7
|
import type { SessionRetentionSettings } from './settings.js';
|
|
8
8
|
export type SettingsType = 'boolean' | 'string' | 'number' | 'array' | 'object' | 'enum';
|
|
9
9
|
export type SettingsValue = boolean | string | number | string[] | object | undefined;
|
|
@@ -213,13 +213,35 @@ declare const SETTINGS_SCHEMA: {
|
|
|
213
213
|
};
|
|
214
214
|
readonly enableNotifications: {
|
|
215
215
|
readonly type: "boolean";
|
|
216
|
-
readonly label: "Enable Notifications";
|
|
216
|
+
readonly label: "Enable Terminal Notifications";
|
|
217
217
|
readonly category: "General";
|
|
218
218
|
readonly requiresRestart: false;
|
|
219
219
|
readonly default: false;
|
|
220
|
-
readonly description: "Enable run-event notifications for action-required prompts and session completion.";
|
|
220
|
+
readonly description: "Enable terminal run-event notifications for action-required prompts and session completion.";
|
|
221
221
|
readonly showInDialog: true;
|
|
222
222
|
};
|
|
223
|
+
readonly notificationMethod: {
|
|
224
|
+
readonly type: "enum";
|
|
225
|
+
readonly label: "Terminal Notification Method";
|
|
226
|
+
readonly category: "General";
|
|
227
|
+
readonly requiresRestart: false;
|
|
228
|
+
readonly default: "auto";
|
|
229
|
+
readonly description: "How to send terminal notifications.";
|
|
230
|
+
readonly showInDialog: true;
|
|
231
|
+
readonly options: readonly [{
|
|
232
|
+
readonly value: "auto";
|
|
233
|
+
readonly label: "Auto";
|
|
234
|
+
}, {
|
|
235
|
+
readonly value: "osc9";
|
|
236
|
+
readonly label: "OSC 9";
|
|
237
|
+
}, {
|
|
238
|
+
readonly value: "osc777";
|
|
239
|
+
readonly label: "OSC 777";
|
|
240
|
+
}, {
|
|
241
|
+
readonly value: "bell";
|
|
242
|
+
readonly label: "Bell";
|
|
243
|
+
}];
|
|
244
|
+
};
|
|
223
245
|
readonly checkpointing: {
|
|
224
246
|
readonly type: "object";
|
|
225
247
|
readonly label: "Checkpointing";
|
|
@@ -352,6 +374,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
352
374
|
};
|
|
353
375
|
readonly description: "Settings for automatic session cleanup.";
|
|
354
376
|
};
|
|
377
|
+
readonly topicUpdateNarration: {
|
|
378
|
+
readonly type: "boolean";
|
|
379
|
+
readonly label: "Topic & Update Narration";
|
|
380
|
+
readonly category: "General";
|
|
381
|
+
readonly requiresRestart: false;
|
|
382
|
+
readonly default: true;
|
|
383
|
+
readonly description: "Enable the Topic & Update communication model for reduced chattiness and structured progress reporting.";
|
|
384
|
+
readonly showInDialog: true;
|
|
385
|
+
};
|
|
355
386
|
};
|
|
356
387
|
};
|
|
357
388
|
readonly output: {
|
|
@@ -390,6 +421,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
390
421
|
readonly description: "User interface settings.";
|
|
391
422
|
readonly showInDialog: false;
|
|
392
423
|
readonly properties: {
|
|
424
|
+
readonly debugRainbow: {
|
|
425
|
+
readonly type: "boolean";
|
|
426
|
+
readonly label: "Debug Rainbow";
|
|
427
|
+
readonly category: "UI";
|
|
428
|
+
readonly requiresRestart: true;
|
|
429
|
+
readonly default: false;
|
|
430
|
+
readonly description: "Enable debug rainbow rendering. Only useful for debugging rendering bugs and performance issues.";
|
|
431
|
+
readonly showInDialog: false;
|
|
432
|
+
};
|
|
393
433
|
readonly theme: {
|
|
394
434
|
readonly type: "string";
|
|
395
435
|
readonly label: "Theme";
|
|
@@ -898,6 +938,49 @@ declare const SETTINGS_SCHEMA: {
|
|
|
898
938
|
readonly label: "Never use credits";
|
|
899
939
|
}];
|
|
900
940
|
};
|
|
941
|
+
readonly vertexAi: {
|
|
942
|
+
readonly type: "object";
|
|
943
|
+
readonly label: "Vertex AI";
|
|
944
|
+
readonly category: "Advanced";
|
|
945
|
+
readonly requiresRestart: true;
|
|
946
|
+
readonly default: VertexAiRoutingConfig | undefined;
|
|
947
|
+
readonly description: "Vertex AI request routing settings.";
|
|
948
|
+
readonly showInDialog: false;
|
|
949
|
+
readonly properties: {
|
|
950
|
+
readonly requestType: {
|
|
951
|
+
readonly type: "enum";
|
|
952
|
+
readonly label: "Vertex AI Request Type";
|
|
953
|
+
readonly category: "Advanced";
|
|
954
|
+
readonly requiresRestart: true;
|
|
955
|
+
readonly default: VertexAiRoutingConfig["requestType"];
|
|
956
|
+
readonly description: "Sets the X-Vertex-AI-LLM-Request-Type header for Vertex AI requests.";
|
|
957
|
+
readonly showInDialog: false;
|
|
958
|
+
readonly options: readonly [{
|
|
959
|
+
readonly value: "dedicated";
|
|
960
|
+
readonly label: "Dedicated";
|
|
961
|
+
}, {
|
|
962
|
+
readonly value: "shared";
|
|
963
|
+
readonly label: "Shared";
|
|
964
|
+
}];
|
|
965
|
+
};
|
|
966
|
+
readonly sharedRequestType: {
|
|
967
|
+
readonly type: "enum";
|
|
968
|
+
readonly label: "Vertex AI Shared Request Type";
|
|
969
|
+
readonly category: "Advanced";
|
|
970
|
+
readonly requiresRestart: true;
|
|
971
|
+
readonly default: VertexAiRoutingConfig["sharedRequestType"];
|
|
972
|
+
readonly description: "Sets the X-Vertex-AI-LLM-Shared-Request-Type header for Vertex AI requests.";
|
|
973
|
+
readonly showInDialog: false;
|
|
974
|
+
readonly options: readonly [{
|
|
975
|
+
readonly value: "priority";
|
|
976
|
+
readonly label: "Priority";
|
|
977
|
+
}, {
|
|
978
|
+
readonly value: "flex";
|
|
979
|
+
readonly label: "Flex";
|
|
980
|
+
}];
|
|
981
|
+
};
|
|
982
|
+
};
|
|
983
|
+
};
|
|
901
984
|
};
|
|
902
985
|
};
|
|
903
986
|
readonly model: {
|
|
@@ -1308,6 +1391,15 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1308
1391
|
readonly description: "Respect .geminiignore files when searching.";
|
|
1309
1392
|
readonly showInDialog: true;
|
|
1310
1393
|
};
|
|
1394
|
+
readonly enableFileWatcher: {
|
|
1395
|
+
readonly type: "boolean";
|
|
1396
|
+
readonly label: "Enable File Watcher";
|
|
1397
|
+
readonly category: "Context";
|
|
1398
|
+
readonly requiresRestart: true;
|
|
1399
|
+
readonly default: false;
|
|
1400
|
+
readonly description: string;
|
|
1401
|
+
readonly showInDialog: false;
|
|
1402
|
+
};
|
|
1311
1403
|
readonly enableRecursiveFileSearch: {
|
|
1312
1404
|
readonly type: "boolean";
|
|
1313
1405
|
readonly label: "Enable Recursive File Search";
|
|
@@ -1482,6 +1574,18 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1482
1574
|
readonly type: "string";
|
|
1483
1575
|
};
|
|
1484
1576
|
};
|
|
1577
|
+
readonly confirmationRequired: {
|
|
1578
|
+
readonly type: "array";
|
|
1579
|
+
readonly label: "Confirmation Required";
|
|
1580
|
+
readonly category: "Advanced";
|
|
1581
|
+
readonly requiresRestart: true;
|
|
1582
|
+
readonly default: string[] | undefined;
|
|
1583
|
+
readonly description: string;
|
|
1584
|
+
readonly showInDialog: false;
|
|
1585
|
+
readonly items: {
|
|
1586
|
+
readonly type: "string";
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1485
1589
|
readonly exclude: {
|
|
1486
1590
|
readonly type: "array";
|
|
1487
1591
|
readonly label: "Exclude Tools";
|
|
@@ -1798,7 +1902,7 @@ declare const SETTINGS_SCHEMA: {
|
|
|
1798
1902
|
readonly category: "Advanced";
|
|
1799
1903
|
readonly requiresRestart: true;
|
|
1800
1904
|
readonly default: true;
|
|
1801
|
-
readonly description: "Automatically configure Node.js memory limits";
|
|
1905
|
+
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.";
|
|
1802
1906
|
readonly showInDialog: true;
|
|
1803
1907
|
};
|
|
1804
1908
|
readonly dnsResolutionOrder: {
|
|
@@ -2022,8 +2126,8 @@ declare const SETTINGS_SCHEMA: {
|
|
|
2022
2126
|
readonly label: "JIT Context Loading";
|
|
2023
2127
|
readonly category: "Experimental";
|
|
2024
2128
|
readonly requiresRestart: true;
|
|
2025
|
-
readonly default:
|
|
2026
|
-
readonly description: "Enable Just-In-Time (JIT) context loading.";
|
|
2129
|
+
readonly default: true;
|
|
2130
|
+
readonly description: "Enable Just-In-Time (JIT) context loading. Defaults to true; set to false to opt out and load all GEMINI.md files into the system instruction up-front.";
|
|
2027
2131
|
readonly showInDialog: false;
|
|
2028
2132
|
};
|
|
2029
2133
|
readonly useOSC52Paste: {
|
|
@@ -2096,6 +2200,24 @@ declare const SETTINGS_SCHEMA: {
|
|
|
2096
2200
|
readonly requiresRestart: true;
|
|
2097
2201
|
readonly default: false;
|
|
2098
2202
|
readonly description: "Enable the Gemma Model Router (experimental). Requires a local endpoint serving Gemma via the Gemini API using LiteRT-LM shim.";
|
|
2203
|
+
readonly showInDialog: true;
|
|
2204
|
+
};
|
|
2205
|
+
readonly autoStartServer: {
|
|
2206
|
+
readonly type: "boolean";
|
|
2207
|
+
readonly label: "Auto-start LiteRT Server";
|
|
2208
|
+
readonly category: "Experimental";
|
|
2209
|
+
readonly requiresRestart: true;
|
|
2210
|
+
readonly default: false;
|
|
2211
|
+
readonly description: "Automatically start the LiteRT-LM server when Cell CLI starts and the Gemma router is enabled.";
|
|
2212
|
+
readonly showInDialog: true;
|
|
2213
|
+
};
|
|
2214
|
+
readonly binaryPath: {
|
|
2215
|
+
readonly type: "string";
|
|
2216
|
+
readonly label: "LiteRT Binary Path";
|
|
2217
|
+
readonly category: "Experimental";
|
|
2218
|
+
readonly requiresRestart: true;
|
|
2219
|
+
readonly default: "";
|
|
2220
|
+
readonly description: "Custom path to the LiteRT-LM binary. Leave empty to use the default location (~/.cell-cli/bin/litert/).";
|
|
2099
2221
|
readonly showInDialog: false;
|
|
2100
2222
|
};
|
|
2101
2223
|
readonly classifier: {
|
|
@@ -2129,13 +2251,22 @@ declare const SETTINGS_SCHEMA: {
|
|
|
2129
2251
|
};
|
|
2130
2252
|
};
|
|
2131
2253
|
};
|
|
2132
|
-
readonly
|
|
2254
|
+
readonly memoryV2: {
|
|
2255
|
+
readonly type: "boolean";
|
|
2256
|
+
readonly label: "Memory v2";
|
|
2257
|
+
readonly category: "Experimental";
|
|
2258
|
+
readonly requiresRestart: true;
|
|
2259
|
+
readonly default: true;
|
|
2260
|
+
readonly description: "Disable the built-in save_memory tool and let the main agent persist project context by editing markdown files directly with edit/write_file. Route facts across four tiers: team-shared conventions go to project GEMINI.md files, project-specific personal notes go to the per-project private memory folder (MEMORY.md as index + sibling .md files for detail), and cross-project personal preferences go to the global ~/.cell-cli/GEMINI.md (the only file under ~/.cell-cli/ that the agent can edit — settings, credentials, etc. remain off-limits). Set to false to fall back to the legacy save_memory tool.";
|
|
2261
|
+
readonly showInDialog: true;
|
|
2262
|
+
};
|
|
2263
|
+
readonly autoMemory: {
|
|
2133
2264
|
readonly type: "boolean";
|
|
2134
|
-
readonly label: "Memory
|
|
2265
|
+
readonly label: "Auto Memory";
|
|
2135
2266
|
readonly category: "Experimental";
|
|
2136
2267
|
readonly requiresRestart: true;
|
|
2137
2268
|
readonly default: false;
|
|
2138
|
-
readonly description: "
|
|
2269
|
+
readonly description: "Automatically extract reusable skills from past sessions in the background. Review results with /memory inbox.";
|
|
2139
2270
|
readonly showInDialog: true;
|
|
2140
2271
|
};
|
|
2141
2272
|
readonly generalistProfile: {
|
|
@@ -2162,8 +2293,8 @@ declare const SETTINGS_SCHEMA: {
|
|
|
2162
2293
|
readonly category: "Experimental";
|
|
2163
2294
|
readonly requiresRestart: false;
|
|
2164
2295
|
readonly default: false;
|
|
2165
|
-
readonly description: "
|
|
2166
|
-
readonly showInDialog:
|
|
2296
|
+
readonly description: "Deprecated: Use general.topicUpdateNarration instead.";
|
|
2297
|
+
readonly showInDialog: false;
|
|
2167
2298
|
};
|
|
2168
2299
|
};
|
|
2169
2300
|
};
|
|
@@ -162,13 +162,28 @@ const SETTINGS_SCHEMA = {
|
|
|
162
162
|
},
|
|
163
163
|
enableNotifications: {
|
|
164
164
|
type: 'boolean',
|
|
165
|
-
label: 'Enable Notifications',
|
|
165
|
+
label: 'Enable Terminal Notifications',
|
|
166
166
|
category: 'General',
|
|
167
167
|
requiresRestart: false,
|
|
168
168
|
default: false,
|
|
169
|
-
description: 'Enable run-event notifications for action-required prompts and session completion.',
|
|
169
|
+
description: 'Enable terminal run-event notifications for action-required prompts and session completion.',
|
|
170
170
|
showInDialog: true,
|
|
171
171
|
},
|
|
172
|
+
notificationMethod: {
|
|
173
|
+
type: 'enum',
|
|
174
|
+
label: 'Terminal Notification Method',
|
|
175
|
+
category: 'General',
|
|
176
|
+
requiresRestart: false,
|
|
177
|
+
default: 'auto',
|
|
178
|
+
description: 'How to send terminal notifications.',
|
|
179
|
+
showInDialog: true,
|
|
180
|
+
options: [
|
|
181
|
+
{ value: 'auto', label: 'Auto' },
|
|
182
|
+
{ value: 'osc9', label: 'OSC 9' },
|
|
183
|
+
{ value: 'osc777', label: 'OSC 777' },
|
|
184
|
+
{ value: 'bell', label: 'Bell' },
|
|
185
|
+
],
|
|
186
|
+
},
|
|
172
187
|
checkpointing: {
|
|
173
188
|
type: 'object',
|
|
174
189
|
label: 'Checkpointing',
|
|
@@ -301,6 +316,15 @@ const SETTINGS_SCHEMA = {
|
|
|
301
316
|
},
|
|
302
317
|
description: 'Settings for automatic session cleanup.',
|
|
303
318
|
},
|
|
319
|
+
topicUpdateNarration: {
|
|
320
|
+
type: 'boolean',
|
|
321
|
+
label: 'Topic & Update Narration',
|
|
322
|
+
category: 'General',
|
|
323
|
+
requiresRestart: false,
|
|
324
|
+
default: true,
|
|
325
|
+
description: 'Enable the Topic & Update communication model for reduced chattiness and structured progress reporting.',
|
|
326
|
+
showInDialog: true,
|
|
327
|
+
},
|
|
304
328
|
},
|
|
305
329
|
},
|
|
306
330
|
output: {
|
|
@@ -336,6 +360,15 @@ const SETTINGS_SCHEMA = {
|
|
|
336
360
|
description: 'User interface settings.',
|
|
337
361
|
showInDialog: false,
|
|
338
362
|
properties: {
|
|
363
|
+
debugRainbow: {
|
|
364
|
+
type: 'boolean',
|
|
365
|
+
label: 'Debug Rainbow',
|
|
366
|
+
category: 'UI',
|
|
367
|
+
requiresRestart: true,
|
|
368
|
+
default: false,
|
|
369
|
+
description: 'Enable debug rainbow rendering. Only useful for debugging rendering bugs and performance issues.',
|
|
370
|
+
showInDialog: false,
|
|
371
|
+
},
|
|
339
372
|
theme: {
|
|
340
373
|
type: 'string',
|
|
341
374
|
label: 'Theme',
|
|
@@ -829,6 +862,43 @@ const SETTINGS_SCHEMA = {
|
|
|
829
862
|
{ value: 'never', label: 'Never use credits' },
|
|
830
863
|
],
|
|
831
864
|
},
|
|
865
|
+
vertexAi: {
|
|
866
|
+
type: 'object',
|
|
867
|
+
label: 'Vertex AI',
|
|
868
|
+
category: 'Advanced',
|
|
869
|
+
requiresRestart: true,
|
|
870
|
+
default: undefined,
|
|
871
|
+
description: 'Vertex AI request routing settings.',
|
|
872
|
+
showInDialog: false,
|
|
873
|
+
properties: {
|
|
874
|
+
requestType: {
|
|
875
|
+
type: 'enum',
|
|
876
|
+
label: 'Vertex AI Request Type',
|
|
877
|
+
category: 'Advanced',
|
|
878
|
+
requiresRestart: true,
|
|
879
|
+
default: undefined,
|
|
880
|
+
description: 'Sets the X-Vertex-AI-LLM-Request-Type header for Vertex AI requests.',
|
|
881
|
+
showInDialog: false,
|
|
882
|
+
options: [
|
|
883
|
+
{ value: 'dedicated', label: 'Dedicated' },
|
|
884
|
+
{ value: 'shared', label: 'Shared' },
|
|
885
|
+
],
|
|
886
|
+
},
|
|
887
|
+
sharedRequestType: {
|
|
888
|
+
type: 'enum',
|
|
889
|
+
label: 'Vertex AI Shared Request Type',
|
|
890
|
+
category: 'Advanced',
|
|
891
|
+
requiresRestart: true,
|
|
892
|
+
default: undefined,
|
|
893
|
+
description: 'Sets the X-Vertex-AI-LLM-Shared-Request-Type header for Vertex AI requests.',
|
|
894
|
+
showInDialog: false,
|
|
895
|
+
options: [
|
|
896
|
+
{ value: 'priority', label: 'Priority' },
|
|
897
|
+
{ value: 'flex', label: 'Flex' },
|
|
898
|
+
],
|
|
899
|
+
},
|
|
900
|
+
},
|
|
901
|
+
},
|
|
832
902
|
},
|
|
833
903
|
},
|
|
834
904
|
model: {
|
|
@@ -1241,6 +1311,17 @@ const SETTINGS_SCHEMA = {
|
|
|
1241
1311
|
description: 'Respect .geminiignore files when searching.',
|
|
1242
1312
|
showInDialog: true,
|
|
1243
1313
|
},
|
|
1314
|
+
enableFileWatcher: {
|
|
1315
|
+
type: 'boolean',
|
|
1316
|
+
label: 'Enable File Watcher',
|
|
1317
|
+
category: 'Context',
|
|
1318
|
+
requiresRestart: true,
|
|
1319
|
+
default: false,
|
|
1320
|
+
description: oneLine `
|
|
1321
|
+
Enable file watcher updates for @ file suggestions (experimental).
|
|
1322
|
+
`,
|
|
1323
|
+
showInDialog: false,
|
|
1324
|
+
},
|
|
1244
1325
|
enableRecursiveFileSearch: {
|
|
1245
1326
|
type: 'boolean',
|
|
1246
1327
|
label: 'Enable Recursive File Search',
|
|
@@ -1414,6 +1495,19 @@ const SETTINGS_SCHEMA = {
|
|
|
1414
1495
|
Tool names that bypass the confirmation dialog.
|
|
1415
1496
|
Useful for trusted commands (for example ["run_shell_command(git)", "run_shell_command(npm test)"]).
|
|
1416
1497
|
See shell tool command restrictions for matching details.
|
|
1498
|
+
`,
|
|
1499
|
+
showInDialog: false,
|
|
1500
|
+
items: { type: 'string' },
|
|
1501
|
+
},
|
|
1502
|
+
confirmationRequired: {
|
|
1503
|
+
type: 'array',
|
|
1504
|
+
label: 'Confirmation Required',
|
|
1505
|
+
category: 'Advanced',
|
|
1506
|
+
requiresRestart: true,
|
|
1507
|
+
default: undefined,
|
|
1508
|
+
description: oneLine `
|
|
1509
|
+
Tool names that always require user confirmation.
|
|
1510
|
+
Takes precedence over allowed tools and core tool allowlists.
|
|
1417
1511
|
`,
|
|
1418
1512
|
showInDialog: false,
|
|
1419
1513
|
items: { type: 'string' },
|
|
@@ -1731,7 +1825,7 @@ const SETTINGS_SCHEMA = {
|
|
|
1731
1825
|
category: 'Advanced',
|
|
1732
1826
|
requiresRestart: true,
|
|
1733
1827
|
default: true,
|
|
1734
|
-
description: 'Automatically configure Node.js memory limits',
|
|
1828
|
+
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.',
|
|
1735
1829
|
showInDialog: true,
|
|
1736
1830
|
},
|
|
1737
1831
|
dnsResolutionOrder: {
|
|
@@ -1954,8 +2048,8 @@ const SETTINGS_SCHEMA = {
|
|
|
1954
2048
|
label: 'JIT Context Loading',
|
|
1955
2049
|
category: 'Experimental',
|
|
1956
2050
|
requiresRestart: true,
|
|
1957
|
-
default:
|
|
1958
|
-
description: 'Enable Just-In-Time (JIT) context loading.',
|
|
2051
|
+
default: true,
|
|
2052
|
+
description: 'Enable Just-In-Time (JIT) context loading. Defaults to true; set to false to opt out and load all GEMINI.md files into the system instruction up-front.',
|
|
1959
2053
|
showInDialog: false,
|
|
1960
2054
|
},
|
|
1961
2055
|
useOSC52Paste: {
|
|
@@ -2028,6 +2122,24 @@ const SETTINGS_SCHEMA = {
|
|
|
2028
2122
|
requiresRestart: true,
|
|
2029
2123
|
default: false,
|
|
2030
2124
|
description: 'Enable the Gemma Model Router (experimental). Requires a local endpoint serving Gemma via the Gemini API using LiteRT-LM shim.',
|
|
2125
|
+
showInDialog: true,
|
|
2126
|
+
},
|
|
2127
|
+
autoStartServer: {
|
|
2128
|
+
type: 'boolean',
|
|
2129
|
+
label: 'Auto-start LiteRT Server',
|
|
2130
|
+
category: 'Experimental',
|
|
2131
|
+
requiresRestart: true,
|
|
2132
|
+
default: false,
|
|
2133
|
+
description: 'Automatically start the LiteRT-LM server when Cell CLI starts and the Gemma router is enabled.',
|
|
2134
|
+
showInDialog: true,
|
|
2135
|
+
},
|
|
2136
|
+
binaryPath: {
|
|
2137
|
+
type: 'string',
|
|
2138
|
+
label: 'LiteRT Binary Path',
|
|
2139
|
+
category: 'Experimental',
|
|
2140
|
+
requiresRestart: true,
|
|
2141
|
+
default: '',
|
|
2142
|
+
description: 'Custom path to the LiteRT-LM binary. Leave empty to use the default location (~/.cell-cli/bin/litert/).',
|
|
2031
2143
|
showInDialog: false,
|
|
2032
2144
|
},
|
|
2033
2145
|
classifier: {
|
|
@@ -2061,13 +2173,22 @@ const SETTINGS_SCHEMA = {
|
|
|
2061
2173
|
},
|
|
2062
2174
|
},
|
|
2063
2175
|
},
|
|
2064
|
-
|
|
2176
|
+
memoryV2: {
|
|
2065
2177
|
type: 'boolean',
|
|
2066
|
-
label: 'Memory
|
|
2178
|
+
label: 'Memory v2',
|
|
2179
|
+
category: 'Experimental',
|
|
2180
|
+
requiresRestart: true,
|
|
2181
|
+
default: true,
|
|
2182
|
+
description: 'Disable the built-in save_memory tool and let the main agent persist project context by editing markdown files directly with edit/write_file. Route facts across four tiers: team-shared conventions go to project GEMINI.md files, project-specific personal notes go to the per-project private memory folder (MEMORY.md as index + sibling .md files for detail), and cross-project personal preferences go to the global ~/.cell-cli/GEMINI.md (the only file under ~/.cell-cli/ that the agent can edit — settings, credentials, etc. remain off-limits). Set to false to fall back to the legacy save_memory tool.',
|
|
2183
|
+
showInDialog: true,
|
|
2184
|
+
},
|
|
2185
|
+
autoMemory: {
|
|
2186
|
+
type: 'boolean',
|
|
2187
|
+
label: 'Auto Memory',
|
|
2067
2188
|
category: 'Experimental',
|
|
2068
2189
|
requiresRestart: true,
|
|
2069
2190
|
default: false,
|
|
2070
|
-
description: '
|
|
2191
|
+
description: 'Automatically extract reusable skills from past sessions in the background. Review results with /memory inbox.',
|
|
2071
2192
|
showInDialog: true,
|
|
2072
2193
|
},
|
|
2073
2194
|
generalistProfile: {
|
|
@@ -2094,8 +2215,8 @@ const SETTINGS_SCHEMA = {
|
|
|
2094
2215
|
category: 'Experimental',
|
|
2095
2216
|
requiresRestart: false,
|
|
2096
2217
|
default: false,
|
|
2097
|
-
description: '
|
|
2098
|
-
showInDialog:
|
|
2218
|
+
description: 'Deprecated: Use general.topicUpdateNarration instead.',
|
|
2219
|
+
showInDialog: false,
|
|
2099
2220
|
},
|
|
2100
2221
|
},
|
|
2101
2222
|
},
|
|
@@ -2793,6 +2914,10 @@ export const SETTINGS_SCHEMA_DEFINITIONS = {
|
|
|
2793
2914
|
description: 'Protocol for OTLP exporters.',
|
|
2794
2915
|
enum: ['grpc', 'http'],
|
|
2795
2916
|
},
|
|
2917
|
+
traces: {
|
|
2918
|
+
type: 'boolean',
|
|
2919
|
+
description: 'Whether detailed traces with large attributes are captured.',
|
|
2920
|
+
},
|
|
2796
2921
|
logPrompts: {
|
|
2797
2922
|
type: 'boolean',
|
|
2798
2923
|
description: 'Whether prompts are logged in telemetry payloads.',
|