@hibanacloud/cli 0.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.last_build +0 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -0
- package/dist/package.json +115 -0
- package/dist/src/commands/extensions/disable.d.ts +13 -0
- package/dist/src/commands/extensions/disable.js +56 -0
- package/dist/src/commands/extensions/disable.js.map +1 -0
- package/dist/src/commands/extensions/enable.d.ts +13 -0
- package/dist/src/commands/extensions/enable.js +59 -0
- package/dist/src/commands/extensions/enable.js.map +1 -0
- package/dist/src/commands/extensions/examples/context/QWEN.md +8 -0
- package/dist/src/commands/extensions/examples/context/qwen-extension.json +4 -0
- package/dist/src/commands/extensions/examples/custom-commands/commands/fs/grep-code.toml +6 -0
- package/dist/src/commands/extensions/examples/custom-commands/qwen-extension.json +4 -0
- package/dist/src/commands/extensions/examples/exclude-tools/qwen-extension.json +5 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
- package/dist/src/commands/extensions/examples/mcp-server/package.json +18 -0
- package/dist/src/commands/extensions/examples/mcp-server/qwen-extension.json +11 -0
- package/dist/src/commands/extensions/examples/mcp-server/tsconfig.json +13 -0
- package/dist/src/commands/extensions/install.d.ts +14 -0
- package/dist/src/commands/extensions/install.js +78 -0
- package/dist/src/commands/extensions/install.js.map +1 -0
- package/dist/src/commands/extensions/install.test.d.ts +6 -0
- package/dist/src/commands/extensions/install.test.js +102 -0
- package/dist/src/commands/extensions/install.test.js.map +1 -0
- package/dist/src/commands/extensions/link.d.ts +12 -0
- package/dist/src/commands/extensions/link.js +37 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/list.d.ts +8 -0
- package/dist/src/commands/extensions/list.js +32 -0
- package/dist/src/commands/extensions/list.js.map +1 -0
- package/dist/src/commands/extensions/new.d.ts +7 -0
- package/dist/src/commands/extensions/new.js +90 -0
- package/dist/src/commands/extensions/new.js.map +1 -0
- package/dist/src/commands/extensions/new.test.d.ts +6 -0
- package/dist/src/commands/extensions/new.test.js +59 -0
- package/dist/src/commands/extensions/new.test.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.d.ts +12 -0
- package/dist/src/commands/extensions/uninstall.js +38 -0
- package/dist/src/commands/extensions/uninstall.js.map +1 -0
- package/dist/src/commands/extensions/uninstall.test.d.ts +6 -0
- package/dist/src/commands/extensions/uninstall.test.js +18 -0
- package/dist/src/commands/extensions/uninstall.test.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +13 -0
- package/dist/src/commands/extensions/update.js +104 -0
- package/dist/src/commands/extensions/update.js.map +1 -0
- package/dist/src/commands/extensions.d.ts +7 -0
- package/dist/src/commands/extensions.js +33 -0
- package/dist/src/commands/extensions.js.map +1 -0
- package/dist/src/commands/mcp/add.d.ts +7 -0
- package/dist/src/commands/mcp/add.js +171 -0
- package/dist/src/commands/mcp/add.js.map +1 -0
- package/dist/src/commands/mcp/list.d.ts +8 -0
- package/dist/src/commands/mcp/list.js +111 -0
- package/dist/src/commands/mcp/list.js.map +1 -0
- package/dist/src/commands/mcp/remove.d.ts +7 -0
- package/dist/src/commands/mcp/remove.js +44 -0
- package/dist/src/commands/mcp/remove.js.map +1 -0
- package/dist/src/commands/mcp.d.ts +7 -0
- package/dist/src/commands/mcp.js +23 -0
- package/dist/src/commands/mcp.js.map +1 -0
- package/dist/src/config/auth.d.ts +6 -0
- package/dist/src/config/auth.js +28 -0
- package/dist/src/config/auth.js.map +1 -0
- package/dist/src/config/auth.test.d.ts +6 -0
- package/dist/src/config/auth.test.js +37 -0
- package/dist/src/config/auth.test.js.map +1 -0
- package/dist/src/config/config.d.ts +58 -0
- package/dist/src/config/config.js +678 -0
- package/dist/src/config/config.js.map +1 -0
- package/dist/src/config/extension.d.ts +83 -0
- package/dist/src/config/extension.js +534 -0
- package/dist/src/config/extension.js.map +1 -0
- package/dist/src/config/extensions/extensionEnablement.d.ts +47 -0
- package/dist/src/config/extensions/extensionEnablement.js +189 -0
- package/dist/src/config/extensions/extensionEnablement.js.map +1 -0
- package/dist/src/config/extensions/extensionEnablement.test.d.ts +6 -0
- package/dist/src/config/extensions/extensionEnablement.test.js +333 -0
- package/dist/src/config/extensions/extensionEnablement.test.js.map +1 -0
- package/dist/src/config/extensions/github.d.ts +30 -0
- package/dist/src/config/extensions/github.js +322 -0
- package/dist/src/config/extensions/github.js.map +1 -0
- package/dist/src/config/extensions/github.test.d.ts +6 -0
- package/dist/src/config/extensions/github.test.js +334 -0
- package/dist/src/config/extensions/github.test.js.map +1 -0
- package/dist/src/config/extensions/update.d.ts +19 -0
- package/dist/src/config/extensions/update.js +113 -0
- package/dist/src/config/extensions/update.js.map +1 -0
- package/dist/src/config/extensions/update.test.d.ts +6 -0
- package/dist/src/config/extensions/update.test.js +342 -0
- package/dist/src/config/extensions/update.test.js.map +1 -0
- package/dist/src/config/extensions/variableSchema.d.ts +36 -0
- package/dist/src/config/extensions/variableSchema.js +22 -0
- package/dist/src/config/extensions/variableSchema.js.map +1 -0
- package/dist/src/config/extensions/variables.d.ts +17 -0
- package/dist/src/config/extensions/variables.js +40 -0
- package/dist/src/config/extensions/variables.js.map +1 -0
- package/dist/src/config/extensions/variables.test.d.ts +6 -0
- package/dist/src/config/extensions/variables.test.js +17 -0
- package/dist/src/config/extensions/variables.test.js.map +1 -0
- package/dist/src/config/keyBindings.d.ts +70 -0
- package/dist/src/config/keyBindings.js +130 -0
- package/dist/src/config/keyBindings.js.map +1 -0
- package/dist/src/config/keyBindings.test.d.ts +6 -0
- package/dist/src/config/keyBindings.test.js +51 -0
- package/dist/src/config/keyBindings.test.js.map +1 -0
- package/dist/src/config/migration.d.ts +10 -0
- package/dist/src/config/migration.js +45 -0
- package/dist/src/config/migration.js.map +1 -0
- package/dist/src/config/sandboxConfig.d.ts +13 -0
- package/dist/src/config/sandboxConfig.js +73 -0
- package/dist/src/config/sandboxConfig.js.map +1 -0
- package/dist/src/config/settings.d.ts +72 -0
- package/dist/src/config/settings.js +631 -0
- package/dist/src/config/settings.js.map +1 -0
- package/dist/src/config/settingsSchema.d.ts +1174 -0
- package/dist/src/config/settingsSchema.js +1118 -0
- package/dist/src/config/settingsSchema.js.map +1 -0
- package/dist/src/config/settingsSchema.test.d.ts +6 -0
- package/dist/src/config/settingsSchema.test.js +201 -0
- package/dist/src/config/settingsSchema.test.js.map +1 -0
- package/dist/src/config/trustedFolders.d.ts +56 -0
- package/dist/src/config/trustedFolders.js +168 -0
- package/dist/src/config/trustedFolders.js.map +1 -0
- package/dist/src/config/trustedFolders.test.d.ts +6 -0
- package/dist/src/config/trustedFolders.test.js +340 -0
- package/dist/src/config/trustedFolders.test.js.map +1 -0
- package/dist/src/config/webSearch.d.ts +35 -0
- package/dist/src/config/webSearch.js +87 -0
- package/dist/src/config/webSearch.js.map +1 -0
- package/dist/src/core/auth.d.ts +13 -0
- package/dist/src/core/auth.js +34 -0
- package/dist/src/core/auth.js.map +1 -0
- package/dist/src/core/initializer.d.ts +21 -0
- package/dist/src/core/initializer.js +48 -0
- package/dist/src/core/initializer.js.map +1 -0
- package/dist/src/core/theme.d.ts +12 -0
- package/dist/src/core/theme.js +23 -0
- package/dist/src/core/theme.js.map +1 -0
- package/dist/src/gemini.d.ts +14 -0
- package/dist/src/gemini.js +327 -0
- package/dist/src/gemini.js.map +1 -0
- package/dist/src/gemini.test.d.ts +6 -0
- package/dist/src/gemini.test.js +507 -0
- package/dist/src/gemini.test.js.map +1 -0
- package/dist/src/generated/git-commit.d.ts +7 -0
- package/dist/src/generated/git-commit.js +10 -0
- package/dist/src/generated/git-commit.js.map +1 -0
- package/dist/src/i18n/index.d.ts +18 -0
- package/dist/src/i18n/index.js +184 -0
- package/dist/src/i18n/index.js.map +1 -0
- package/dist/src/i18n/locales/en.js +1129 -0
- package/dist/src/i18n/locales/zh.js +1052 -0
- package/dist/src/nonInteractive/control/ControlContext.d.ts +63 -0
- package/dist/src/nonInteractive/control/ControlContext.js +31 -0
- package/dist/src/nonInteractive/control/ControlContext.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.d.ts +86 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js +238 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.d.ts +6 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js +549 -0
- package/dist/src/nonInteractive/control/ControlDispatcher.test.js.map +1 -0
- package/dist/src/nonInteractive/control/ControlService.d.ts +78 -0
- package/dist/src/nonInteractive/control/ControlService.js +154 -0
- package/dist/src/nonInteractive/control/ControlService.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/baseController.d.ts +50 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js +102 -0
- package/dist/src/nonInteractive/control/controllers/baseController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/hookController.d.ts +25 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js +42 -0
- package/dist/src/nonInteractive/control/controllers/hookController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.d.ts +42 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.js +205 -0
- package/dist/src/nonInteractive/control/controllers/mcpController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.d.ts +78 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js +358 -0
- package/dist/src/nonInteractive/control/controllers/permissionController.js.map +1 -0
- package/dist/src/nonInteractive/control/controllers/systemController.d.ts +56 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js +166 -0
- package/dist/src/nonInteractive/control/controllers/systemController.js.map +1 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.d.ts +120 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js +7 -0
- package/dist/src/nonInteractive/control/types/serviceAPIs.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.d.ts +446 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js +891 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js +1197 -0
- package/dist/src/nonInteractive/io/BaseJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.d.ts +29 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js +56 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js +624 -0
- package/dist/src/nonInteractive/io/JsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.d.ts +16 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js +54 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js +178 -0
- package/dist/src/nonInteractive/io/StreamJsonInputReader.test.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.d.ts +69 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js +185 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.js.map +1 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.d.ts +6 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js +808 -0
- package/dist/src/nonInteractive/io/StreamJsonOutputAdapter.test.js.map +1 -0
- package/dist/src/nonInteractive/session.d.ts +23 -0
- package/dist/src/nonInteractive/session.js +549 -0
- package/dist/src/nonInteractive/session.js.map +1 -0
- package/dist/src/nonInteractive/session.test.d.ts +6 -0
- package/dist/src/nonInteractive/session.test.js +407 -0
- package/dist/src/nonInteractive/session.test.js.map +1 -0
- package/dist/src/nonInteractive/types.d.ts +344 -0
- package/dist/src/nonInteractive/types.js +78 -0
- package/dist/src/nonInteractive/types.js.map +1 -0
- package/dist/src/nonInteractiveCli.d.ts +28 -0
- package/dist/src/nonInteractiveCli.js +268 -0
- package/dist/src/nonInteractiveCli.js.map +1 -0
- package/dist/src/nonInteractiveCliCommands.d.ts +35 -0
- package/dist/src/nonInteractiveCliCommands.js +144 -0
- package/dist/src/nonInteractiveCliCommands.js.map +1 -0
- package/dist/src/patches/is-in-ci.d.ts +7 -0
- package/dist/src/patches/is-in-ci.js +15 -0
- package/dist/src/patches/is-in-ci.js.map +1 -0
- package/dist/src/patches/punycode-shim.d.ts +6 -0
- package/dist/src/patches/punycode-shim.js +20 -0
- package/dist/src/patches/punycode-shim.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.d.ts +24 -0
- package/dist/src/services/BuiltinCommandLoader.js +99 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -0
- package/dist/src/services/BuiltinCommandLoader.test.d.ts +6 -0
- package/dist/src/services/BuiltinCommandLoader.test.js +167 -0
- package/dist/src/services/BuiltinCommandLoader.test.js.map +1 -0
- package/dist/src/services/CommandService.d.ts +55 -0
- package/dist/src/services/CommandService.js +90 -0
- package/dist/src/services/CommandService.js.map +1 -0
- package/dist/src/services/CommandService.test.d.ts +6 -0
- package/dist/src/services/CommandService.test.js +233 -0
- package/dist/src/services/CommandService.test.js.map +1 -0
- package/dist/src/services/FileCommandLoader.d.ts +51 -0
- package/dist/src/services/FileCommandLoader.js +230 -0
- package/dist/src/services/FileCommandLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.d.ts +35 -0
- package/dist/src/services/McpPromptLoader.js +254 -0
- package/dist/src/services/McpPromptLoader.js.map +1 -0
- package/dist/src/services/McpPromptLoader.test.d.ts +6 -0
- package/dist/src/services/McpPromptLoader.test.js +341 -0
- package/dist/src/services/McpPromptLoader.test.js.map +1 -0
- package/dist/src/services/prompt-processors/argumentProcessor.d.ts +16 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js +21 -0
- package/dist/src/services/prompt-processors/argumentProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.d.ts +12 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js +62 -0
- package/dist/src/services/prompt-processors/atFileProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js +174 -0
- package/dist/src/services/prompt-processors/atFileProcessor.test.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.d.ts +29 -0
- package/dist/src/services/prompt-processors/injectionParser.js +60 -0
- package/dist/src/services/prompt-processors/injectionParser.js.map +1 -0
- package/dist/src/services/prompt-processors/injectionParser.test.d.ts +6 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js +189 -0
- package/dist/src/services/prompt-processors/injectionParser.test.js.map +1 -0
- package/dist/src/services/prompt-processors/shellProcessor.d.ts +27 -0
- package/dist/src/services/prompt-processors/shellProcessor.js +128 -0
- package/dist/src/services/prompt-processors/shellProcessor.js.map +1 -0
- package/dist/src/services/prompt-processors/types.d.ts +45 -0
- package/dist/src/services/prompt-processors/types.js +20 -0
- package/dist/src/services/prompt-processors/types.js.map +1 -0
- package/dist/src/services/types.d.ts +22 -0
- package/dist/src/services/types.js +7 -0
- package/dist/src/services/types.js.map +1 -0
- package/dist/src/test-utils/createExtension.d.ts +15 -0
- package/dist/src/test-utils/createExtension.js +25 -0
- package/dist/src/test-utils/createExtension.js.map +1 -0
- package/dist/src/test-utils/customMatchers.d.ts +14 -0
- package/dist/src/test-utils/customMatchers.js +40 -0
- package/dist/src/test-utils/customMatchers.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.d.ts +18 -0
- package/dist/src/test-utils/mockCommandContext.js +93 -0
- package/dist/src/test-utils/mockCommandContext.js.map +1 -0
- package/dist/src/test-utils/mockCommandContext.test.d.ts +6 -0
- package/dist/src/test-utils/mockCommandContext.test.js +51 -0
- package/dist/src/test-utils/mockCommandContext.test.js.map +1 -0
- package/dist/src/test-utils/render.d.ts +12 -0
- package/dist/src/test-utils/render.js +14 -0
- package/dist/src/test-utils/render.js.map +1 -0
- package/dist/src/ui/App.d.ts +6 -0
- package/dist/src/ui/App.js +37 -0
- package/dist/src/ui/App.js.map +1 -0
- package/dist/src/ui/AppContainer.d.ts +17 -0
- package/dist/src/ui/AppContainer.js +1074 -0
- package/dist/src/ui/AppContainer.js.map +1 -0
- package/dist/src/ui/AppContainer.test.d.ts +6 -0
- package/dist/src/ui/AppContainer.test.js +831 -0
- package/dist/src/ui/AppContainer.test.js.map +1 -0
- package/dist/src/ui/IdeIntegrationNudge.d.ts +16 -0
- package/dist/src/ui/IdeIntegrationNudge.js +50 -0
- package/dist/src/ui/IdeIntegrationNudge.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.d.ts +7 -0
- package/dist/src/ui/auth/AuthDialog.js +63 -0
- package/dist/src/ui/auth/AuthDialog.js.map +1 -0
- package/dist/src/ui/auth/AuthDialog.test.d.ts +6 -0
- package/dist/src/ui/auth/AuthDialog.test.js +391 -0
- package/dist/src/ui/auth/AuthDialog.test.js.map +1 -0
- package/dist/src/ui/auth/AuthInProgress.d.ts +11 -0
- package/dist/src/ui/auth/AuthInProgress.js +24 -0
- package/dist/src/ui/auth/AuthInProgress.js.map +1 -0
- package/dist/src/ui/auth/OAuthFlow.d.ts +14 -0
- package/dist/src/ui/auth/OAuthFlow.js +48 -0
- package/dist/src/ui/auth/OAuthFlow.js.map +1 -0
- package/dist/src/ui/auth/useAuth.d.ts +27 -0
- package/dist/src/ui/auth/useAuth.js +244 -0
- package/dist/src/ui/auth/useAuth.js.map +1 -0
- package/dist/src/ui/colors.d.ts +7 -0
- package/dist/src/ui/colors.js +54 -0
- package/dist/src/ui/colors.js.map +1 -0
- package/dist/src/ui/commands/aboutCommand.d.ts +7 -0
- package/dist/src/ui/commands/aboutCommand.js +25 -0
- package/dist/src/ui/commands/aboutCommand.js.map +1 -0
- package/dist/src/ui/commands/agentsCommand.d.ts +7 -0
- package/dist/src/ui/commands/agentsCommand.js +39 -0
- package/dist/src/ui/commands/agentsCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.d.ts +7 -0
- package/dist/src/ui/commands/approvalModeCommand.js +19 -0
- package/dist/src/ui/commands/approvalModeCommand.js.map +1 -0
- package/dist/src/ui/commands/approvalModeCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js +49 -0
- package/dist/src/ui/commands/approvalModeCommand.test.js.map +1 -0
- package/dist/src/ui/commands/authCommand.d.ts +7 -0
- package/dist/src/ui/commands/authCommand.js +19 -0
- package/dist/src/ui/commands/authCommand.js.map +1 -0
- package/dist/src/ui/commands/bugCommand.d.ts +7 -0
- package/dist/src/ui/commands/bugCommand.js +51 -0
- package/dist/src/ui/commands/bugCommand.js.map +1 -0
- package/dist/src/ui/commands/chatCommand.d.ts +9 -0
- package/dist/src/ui/commands/chatCommand.js +351 -0
- package/dist/src/ui/commands/chatCommand.js.map +1 -0
- package/dist/src/ui/commands/clearCommand.d.ts +7 -0
- package/dist/src/ui/commands/clearCommand.js +30 -0
- package/dist/src/ui/commands/clearCommand.js.map +1 -0
- package/dist/src/ui/commands/compressCommand.d.ts +7 -0
- package/dist/src/ui/commands/compressCommand.js +71 -0
- package/dist/src/ui/commands/compressCommand.js.map +1 -0
- package/dist/src/ui/commands/copyCommand.d.ts +7 -0
- package/dist/src/ui/commands/copyCommand.js +62 -0
- package/dist/src/ui/commands/copyCommand.js.map +1 -0
- package/dist/src/ui/commands/corgiCommand.d.ts +7 -0
- package/dist/src/ui/commands/corgiCommand.js +16 -0
- package/dist/src/ui/commands/corgiCommand.js.map +1 -0
- package/dist/src/ui/commands/directoryCommand.d.ts +8 -0
- package/dist/src/ui/commands/directoryCommand.js +153 -0
- package/dist/src/ui/commands/directoryCommand.js.map +1 -0
- package/dist/src/ui/commands/docsCommand.d.ts +7 -0
- package/dist/src/ui/commands/docsCommand.js +39 -0
- package/dist/src/ui/commands/docsCommand.js.map +1 -0
- package/dist/src/ui/commands/editorCommand.d.ts +7 -0
- package/dist/src/ui/commands/editorCommand.js +19 -0
- package/dist/src/ui/commands/editorCommand.js.map +1 -0
- package/dist/src/ui/commands/extensionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/extensionsCommand.js +115 -0
- package/dist/src/ui/commands/extensionsCommand.js.map +1 -0
- package/dist/src/ui/commands/helpCommand.d.ts +7 -0
- package/dist/src/ui/commands/helpCommand.js +24 -0
- package/dist/src/ui/commands/helpCommand.js.map +1 -0
- package/dist/src/ui/commands/ideCommand.d.ts +7 -0
- package/dist/src/ui/commands/ideCommand.js +241 -0
- package/dist/src/ui/commands/ideCommand.js.map +1 -0
- package/dist/src/ui/commands/initCommand.d.ts +7 -0
- package/dist/src/ui/commands/initCommand.js +118 -0
- package/dist/src/ui/commands/initCommand.js.map +1 -0
- package/dist/src/ui/commands/languageCommand.d.ts +7 -0
- package/dist/src/ui/commands/languageCommand.js +386 -0
- package/dist/src/ui/commands/languageCommand.js.map +1 -0
- package/dist/src/ui/commands/mcpCommand.d.ts +7 -0
- package/dist/src/ui/commands/mcpCommand.js +269 -0
- package/dist/src/ui/commands/mcpCommand.js.map +1 -0
- package/dist/src/ui/commands/memoryCommand.d.ts +7 -0
- package/dist/src/ui/commands/memoryCommand.js +254 -0
- package/dist/src/ui/commands/memoryCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.d.ts +7 -0
- package/dist/src/ui/commands/modelCommand.js +48 -0
- package/dist/src/ui/commands/modelCommand.js.map +1 -0
- package/dist/src/ui/commands/modelCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/modelCommand.test.js +137 -0
- package/dist/src/ui/commands/modelCommand.test.js.map +1 -0
- package/dist/src/ui/commands/openaiProfileCommand.d.ts +7 -0
- package/dist/src/ui/commands/openaiProfileCommand.js +135 -0
- package/dist/src/ui/commands/openaiProfileCommand.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.d.ts +7 -0
- package/dist/src/ui/commands/permissionsCommand.js +19 -0
- package/dist/src/ui/commands/permissionsCommand.js.map +1 -0
- package/dist/src/ui/commands/permissionsCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/permissionsCommand.test.js +30 -0
- package/dist/src/ui/commands/permissionsCommand.test.js.map +1 -0
- package/dist/src/ui/commands/quitCommand.d.ts +8 -0
- package/dist/src/ui/commands/quitCommand.js +64 -0
- package/dist/src/ui/commands/quitCommand.js.map +1 -0
- package/dist/src/ui/commands/restoreCommand.d.ts +8 -0
- package/dist/src/ui/commands/restoreCommand.js +124 -0
- package/dist/src/ui/commands/restoreCommand.js.map +1 -0
- package/dist/src/ui/commands/settingsCommand.d.ts +7 -0
- package/dist/src/ui/commands/settingsCommand.js +19 -0
- package/dist/src/ui/commands/settingsCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.d.ts +9 -0
- package/dist/src/ui/commands/setupGithubCommand.js +157 -0
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -0
- package/dist/src/ui/commands/setupGithubCommand.test.d.ts +6 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js +167 -0
- package/dist/src/ui/commands/setupGithubCommand.test.js.map +1 -0
- package/dist/src/ui/commands/spCommand.d.ts +7 -0
- package/dist/src/ui/commands/spCommand.js +352 -0
- package/dist/src/ui/commands/spCommand.js.map +1 -0
- package/dist/src/ui/commands/statsCommand.d.ts +7 -0
- package/dist/src/ui/commands/statsCommand.js +61 -0
- package/dist/src/ui/commands/statsCommand.js.map +1 -0
- package/dist/src/ui/commands/summaryCommand.d.ts +7 -0
- package/dist/src/ui/commands/summaryCommand.js +156 -0
- package/dist/src/ui/commands/summaryCommand.js.map +1 -0
- package/dist/src/ui/commands/systemPromptCommand.d.ts +7 -0
- package/dist/src/ui/commands/systemPromptCommand.js +322 -0
- package/dist/src/ui/commands/systemPromptCommand.js.map +1 -0
- package/dist/src/ui/commands/terminalSetupCommand.d.ts +13 -0
- package/dist/src/ui/commands/terminalSetupCommand.js +47 -0
- package/dist/src/ui/commands/terminalSetupCommand.js.map +1 -0
- package/dist/src/ui/commands/themeCommand.d.ts +7 -0
- package/dist/src/ui/commands/themeCommand.js +19 -0
- package/dist/src/ui/commands/themeCommand.js.map +1 -0
- package/dist/src/ui/commands/toolsCommand.d.ts +7 -0
- package/dist/src/ui/commands/toolsCommand.js +45 -0
- package/dist/src/ui/commands/toolsCommand.js.map +1 -0
- package/dist/src/ui/commands/types.d.ts +160 -0
- package/dist/src/ui/commands/types.js +12 -0
- package/dist/src/ui/commands/types.js.map +1 -0
- package/dist/src/ui/commands/vimCommand.d.ts +7 -0
- package/dist/src/ui/commands/vimCommand.js +26 -0
- package/dist/src/ui/commands/vimCommand.js.map +1 -0
- package/dist/src/ui/components/AboutBox.d.ts +10 -0
- package/dist/src/ui/components/AboutBox.js +10 -0
- package/dist/src/ui/components/AboutBox.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.d.ts +13 -0
- package/dist/src/ui/components/AnsiOutput.js +12 -0
- package/dist/src/ui/components/AnsiOutput.js.map +1 -0
- package/dist/src/ui/components/AnsiOutput.test.d.ts +6 -0
- package/dist/src/ui/components/AnsiOutput.test.js +97 -0
- package/dist/src/ui/components/AnsiOutput.test.js.map +1 -0
- package/dist/src/ui/components/AppHeader.d.ts +10 -0
- package/dist/src/ui/components/AppHeader.js +19 -0
- package/dist/src/ui/components/AppHeader.js.map +1 -0
- package/dist/src/ui/components/ApprovalModeDialog.d.ts +21 -0
- package/dist/src/ui/components/ApprovalModeDialog.js +68 -0
- package/dist/src/ui/components/ApprovalModeDialog.js.map +1 -0
- package/dist/src/ui/components/AsciiArt.d.ts +8 -0
- package/dist/src/ui/components/AsciiArt.js +30 -0
- package/dist/src/ui/components/AsciiArt.js.map +1 -0
- package/dist/src/ui/components/AutoAcceptIndicator.d.ts +12 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js +32 -0
- package/dist/src/ui/components/AutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/components/Composer.d.ts +6 -0
- package/dist/src/ui/components/Composer.js +55 -0
- package/dist/src/ui/components/Composer.js.map +1 -0
- package/dist/src/ui/components/Composer.test.d.ts +6 -0
- package/dist/src/ui/components/Composer.test.js +337 -0
- package/dist/src/ui/components/Composer.test.js.map +1 -0
- package/dist/src/ui/components/ConfigInitDisplay.d.ts +6 -0
- package/dist/src/ui/components/ConfigInitDisplay.js +42 -0
- package/dist/src/ui/components/ConfigInitDisplay.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.d.ts +13 -0
- package/dist/src/ui/components/ConsentPrompt.js +19 -0
- package/dist/src/ui/components/ConsentPrompt.js.map +1 -0
- package/dist/src/ui/components/ConsentPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/ConsentPrompt.test.js +67 -0
- package/dist/src/ui/components/ConsentPrompt.test.js.map +1 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.d.ts +11 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.js +11 -0
- package/dist/src/ui/components/ConsoleSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextSummaryDisplay.d.ts +20 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js +90 -0
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +10 -0
- package/dist/src/ui/components/ContextUsageDisplay.js +16 -0
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/DebugProfiler.d.ts +6 -0
- package/dist/src/ui/components/DebugProfiler.js +27 -0
- package/dist/src/ui/components/DebugProfiler.js.map +1 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.d.ts +14 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js +34 -0
- package/dist/src/ui/components/DetailedMessagesDisplay.js.map +1 -0
- package/dist/src/ui/components/DialogManager.d.ts +12 -0
- package/dist/src/ui/components/DialogManager.js +158 -0
- package/dist/src/ui/components/DialogManager.js.map +1 -0
- package/dist/src/ui/components/EditorSettingsDialog.d.ts +16 -0
- package/dist/src/ui/components/EditorSettingsDialog.js +85 -0
- package/dist/src/ui/components/EditorSettingsDialog.js.map +1 -0
- package/dist/src/ui/components/ExitWarning.d.ts +7 -0
- package/dist/src/ui/components/ExitWarning.js +9 -0
- package/dist/src/ui/components/ExitWarning.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.d.ts +17 -0
- package/dist/src/ui/components/FolderTrustDialog.js +58 -0
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -0
- package/dist/src/ui/components/FolderTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js +88 -0
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/Footer.d.ts +7 -0
- package/dist/src/ui/components/Footer.js +48 -0
- package/dist/src/ui/components/Footer.js.map +1 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.d.ts +21 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js +23 -0
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -0
- package/dist/src/ui/components/Header.d.ts +13 -0
- package/dist/src/ui/components/Header.js +28 -0
- package/dist/src/ui/components/Header.js.map +1 -0
- package/dist/src/ui/components/Header.test.d.ts +6 -0
- package/dist/src/ui/components/Header.test.js +37 -0
- package/dist/src/ui/components/Header.test.js.map +1 -0
- package/dist/src/ui/components/Help.d.ts +12 -0
- package/dist/src/ui/components/Help.js +23 -0
- package/dist/src/ui/components/Help.js.map +1 -0
- package/dist/src/ui/components/Help.test.d.ts +6 -0
- package/dist/src/ui/components/Help.test.js +57 -0
- package/dist/src/ui/components/Help.test.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.d.ts +21 -0
- package/dist/src/ui/components/HistoryItemDisplay.js +31 -0
- package/dist/src/ui/components/HistoryItemDisplay.js.map +1 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js +183 -0
- package/dist/src/ui/components/HistoryItemDisplay.test.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.d.ts +11 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js +32 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.js.map +1 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js +57 -0
- package/dist/src/ui/components/IdeTrustChangeDialog.test.js.map +1 -0
- package/dist/src/ui/components/InputPrompt.d.ts +37 -0
- package/dist/src/ui/components/InputPrompt.js +583 -0
- package/dist/src/ui/components/InputPrompt.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.d.ts +15 -0
- package/dist/src/ui/components/LoadingIndicator.js +30 -0
- package/dist/src/ui/components/LoadingIndicator.js.map +1 -0
- package/dist/src/ui/components/LoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/components/LoadingIndicator.test.js +194 -0
- package/dist/src/ui/components/LoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.d.ts +13 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js +37 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.js.map +1 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.d.ts +6 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js +28 -0
- package/dist/src/ui/components/LoopDetectionConfirmation.test.js.map +1 -0
- package/dist/src/ui/components/MainContent.d.ts +6 -0
- package/dist/src/ui/components/MainContent.js +28 -0
- package/dist/src/ui/components/MainContent.js.map +1 -0
- package/dist/src/ui/components/MemoryUsageDisplay.d.ts +7 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js +24 -0
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.d.ts +11 -0
- package/dist/src/ui/components/ModelDialog.js +99 -0
- package/dist/src/ui/components/ModelDialog.js.map +1 -0
- package/dist/src/ui/components/ModelDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ModelDialog.test.js +158 -0
- package/dist/src/ui/components/ModelDialog.test.js.map +1 -0
- package/dist/src/ui/components/ModelStatsDisplay.d.ts +7 -0
- package/dist/src/ui/components/ModelStatsDisplay.js +34 -0
- package/dist/src/ui/components/ModelStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/ModelSwitchDialog.d.ts +15 -0
- package/dist/src/ui/components/ModelSwitchDialog.js +40 -0
- package/dist/src/ui/components/ModelSwitchDialog.js.map +1 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.js +128 -0
- package/dist/src/ui/components/ModelSwitchDialog.test.js.map +1 -0
- package/dist/src/ui/components/Notifications.d.ts +6 -0
- package/dist/src/ui/components/Notifications.js +23 -0
- package/dist/src/ui/components/Notifications.js.map +1 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.d.ts +25 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.js +90 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.d.ts +6 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js +51 -0
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js.map +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.d.ts +13 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js +48 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.js.map +1 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.d.ts +6 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js +154 -0
- package/dist/src/ui/components/PermissionsModifyTrustDialog.test.js.map +1 -0
- package/dist/src/ui/components/PlanSummaryDisplay.d.ts +14 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js +9 -0
- package/dist/src/ui/components/PlanSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.d.ts +15 -0
- package/dist/src/ui/components/PrepareLabel.js +72 -0
- package/dist/src/ui/components/PrepareLabel.js.map +1 -0
- package/dist/src/ui/components/PrepareLabel.test.d.ts +6 -0
- package/dist/src/ui/components/PrepareLabel.test.js +71 -0
- package/dist/src/ui/components/PrepareLabel.test.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.d.ts +13 -0
- package/dist/src/ui/components/ProQuotaDialog.js +24 -0
- package/dist/src/ui/components/ProQuotaDialog.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js +58 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.d.ts +9 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js +20 -0
- package/dist/src/ui/components/QueuedMessageDisplay.js.map +1 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js +56 -0
- package/dist/src/ui/components/QueuedMessageDisplay.test.js.map +1 -0
- package/dist/src/ui/components/QuitConfirmationDialog.d.ts +17 -0
- package/dist/src/ui/components/QuitConfirmationDialog.js +49 -0
- package/dist/src/ui/components/QuitConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/QuittingDisplay.d.ts +6 -0
- package/dist/src/ui/components/QuittingDisplay.js +20 -0
- package/dist/src/ui/components/QuittingDisplay.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.d.ts +16 -0
- package/dist/src/ui/components/QwenOAuthProgress.js +111 -0
- package/dist/src/ui/components/QwenOAuthProgress.js.map +1 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.d.ts +6 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js +364 -0
- package/dist/src/ui/components/QwenOAuthProgress.test.js.map +1 -0
- package/dist/src/ui/components/SessionSummaryDisplay.d.ts +11 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js +5 -0
- package/dist/src/ui/components/SessionSummaryDisplay.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.d.ts +18 -0
- package/dist/src/ui/components/SettingsDialog.js +647 -0
- package/dist/src/ui/components/SettingsDialog.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.test.d.ts +6 -0
- package/dist/src/ui/components/SettingsDialog.test.js +1037 -0
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.d.ts +15 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js +50 -0
- package/dist/src/ui/components/ShellConfirmationDialog.js.map +1 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js +40 -0
- package/dist/src/ui/components/ShellConfirmationDialog.test.js.map +1 -0
- package/dist/src/ui/components/ShellInputPrompt.d.ts +11 -0
- package/dist/src/ui/components/ShellInputPrompt.js +36 -0
- package/dist/src/ui/components/ShellInputPrompt.js.map +1 -0
- package/dist/src/ui/components/ShellModeIndicator.d.ts +7 -0
- package/dist/src/ui/components/ShellModeIndicator.js +5 -0
- package/dist/src/ui/components/ShellModeIndicator.js.map +1 -0
- package/dist/src/ui/components/ShowMoreLines.d.ts +10 -0
- package/dist/src/ui/components/ShowMoreLines.js +24 -0
- package/dist/src/ui/components/ShowMoreLines.js.map +1 -0
- package/dist/src/ui/components/StatsDisplay.d.ts +12 -0
- package/dist/src/ui/components/StatsDisplay.js +44 -0
- package/dist/src/ui/components/StatsDisplay.js.map +1 -0
- package/dist/src/ui/components/SuggestionsDisplay.d.ts +27 -0
- package/dist/src/ui/components/SuggestionsDisplay.js +40 -0
- package/dist/src/ui/components/SuggestionsDisplay.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.d.ts +20 -0
- package/dist/src/ui/components/ThemeDialog.js +126 -0
- package/dist/src/ui/components/ThemeDialog.js.map +1 -0
- package/dist/src/ui/components/ThemeDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ThemeDialog.test.js +75 -0
- package/dist/src/ui/components/ThemeDialog.test.js.map +1 -0
- package/dist/src/ui/components/Tips.d.ts +12 -0
- package/dist/src/ui/components/Tips.js +10 -0
- package/dist/src/ui/components/Tips.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.d.ts +16 -0
- package/dist/src/ui/components/TodoDisplay.js +27 -0
- package/dist/src/ui/components/TodoDisplay.js.map +1 -0
- package/dist/src/ui/components/TodoDisplay.test.d.ts +6 -0
- package/dist/src/ui/components/TodoDisplay.test.js +77 -0
- package/dist/src/ui/components/TodoDisplay.test.js.map +1 -0
- package/dist/src/ui/components/ToolStatsDisplay.d.ts +7 -0
- package/dist/src/ui/components/ToolStatsDisplay.js +42 -0
- package/dist/src/ui/components/ToolStatsDisplay.js.map +1 -0
- package/dist/src/ui/components/UpdateNotification.d.ts +10 -0
- package/dist/src/ui/components/UpdateNotification.js +10 -0
- package/dist/src/ui/components/UpdateNotification.js.map +1 -0
- package/dist/src/ui/components/WelcomeBackDialog.d.ts +13 -0
- package/dist/src/ui/components/WelcomeBackDialog.js +43 -0
- package/dist/src/ui/components/WelcomeBackDialog.js.map +1 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.d.ts +11 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js +45 -0
- package/dist/src/ui/components/WorkspaceMigrationDialog.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.d.ts +10 -0
- package/dist/src/ui/components/messages/CompressionMessage.js +50 -0
- package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js +160 -0
- package/dist/src/ui/components/messages/CompressionMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.d.ts +17 -0
- package/dist/src/ui/components/messages/DiffRenderer.js +218 -0
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.d.ts +6 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js +239 -0
- package/dist/src/ui/components/messages/DiffRenderer.test.js.map +1 -0
- package/dist/src/ui/components/messages/ErrorMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/ErrorMessage.js +9 -0
- package/dist/src/ui/components/messages/ErrorMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessage.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessage.js +11 -0
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.d.ts +14 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js +15 -0
- package/dist/src/ui/components/messages/GeminiMessageContent.js.map +1 -0
- package/dist/src/ui/components/messages/InfoMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/InfoMessage.js +14 -0
- package/dist/src/ui/components/messages/InfoMessage.js.map +1 -0
- package/dist/src/ui/components/messages/SummaryMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/SummaryMessage.js +35 -0
- package/dist/src/ui/components/messages/SummaryMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.d.ts +16 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +245 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +165 -0
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.d.ts +19 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js +58 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js +261 -0
- package/dist/src/ui/components/messages/ToolGroupMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.d.ts +19 -0
- package/dist/src/ui/components/messages/ToolMessage.js +180 -0
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -0
- package/dist/src/ui/components/messages/ToolMessage.test.d.ts +6 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js +182 -0
- package/dist/src/ui/components/messages/ToolMessage.test.js.map +1 -0
- package/dist/src/ui/components/messages/UserMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/UserMessage.js +13 -0
- package/dist/src/ui/components/messages/UserMessage.js.map +1 -0
- package/dist/src/ui/components/messages/UserShellMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/UserShellMessage.js +9 -0
- package/dist/src/ui/components/messages/UserShellMessage.js.map +1 -0
- package/dist/src/ui/components/messages/WarningMessage.d.ts +11 -0
- package/dist/src/ui/components/messages/WarningMessage.js +10 -0
- package/dist/src/ui/components/messages/WarningMessage.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.d.ts +38 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js +72 -0
- package/dist/src/ui/components/shared/BaseSelectionList.js.map +1 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.d.ts +6 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js +376 -0
- package/dist/src/ui/components/shared/BaseSelectionList.test.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.d.ts +35 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js +13 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js +79 -0
- package/dist/src/ui/components/shared/DescriptiveRadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.d.ts +18 -0
- package/dist/src/ui/components/shared/EnumSelector.js +44 -0
- package/dist/src/ui/components/shared/EnumSelector.js.map +1 -0
- package/dist/src/ui/components/shared/EnumSelector.test.d.ts +6 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js +70 -0
- package/dist/src/ui/components/shared/EnumSelector.test.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.d.ts +61 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js +451 -0
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.d.ts +6 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js +154 -0
- package/dist/src/ui/components/shared/MaxSizedBox.test.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.d.ts +45 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js +21 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.d.ts +6 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js +134 -0
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -0
- package/dist/src/ui/components/shared/ScopeSelector.d.ts +19 -0
- package/dist/src/ui/components/shared/ScopeSelector.js +16 -0
- package/dist/src/ui/components/shared/ScopeSelector.js.map +1 -0
- package/dist/src/ui/components/shared/TextInput.d.ts +16 -0
- package/dist/src/ui/components/shared/TextInput.js +127 -0
- package/dist/src/ui/components/shared/TextInput.js.map +1 -0
- package/dist/src/ui/components/shared/text-buffer.d.ts +490 -0
- package/dist/src/ui/components/shared/text-buffer.js +1598 -0
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.d.ts +72 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js +552 -0
- package/dist/src/ui/components/shared/vim-buffer-actions.js.map +1 -0
- package/dist/src/ui/components/subagents/constants.d.ts +23 -0
- package/dist/src/ui/components/subagents/constants.js +67 -0
- package/dist/src/ui/components/subagents/constants.js.map +1 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js +186 -0
- package/dist/src/ui/components/subagents/create/AgentCreationWizard.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.d.ts +15 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js +43 -0
- package/dist/src/ui/components/subagents/create/ColorSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js +174 -0
- package/dist/src/ui/components/subagents/create/CreationSummary.js.map +1 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js +107 -0
- package/dist/src/ui/components/subagents/create/DescriptionInput.js.map +1 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/GenerationMethodSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.d.ts +10 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js +39 -0
- package/dist/src/ui/components/subagents/create/LocationSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.d.ts +26 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js +28 -0
- package/dist/src/ui/components/subagents/create/TextEntryStep.js.map +1 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.d.ts +16 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js +145 -0
- package/dist/src/ui/components/subagents/create/ToolSelector.js.map +1 -0
- package/dist/src/ui/components/subagents/index.d.ts +8 -0
- package/dist/src/ui/components/subagents/index.js +12 -0
- package/dist/src/ui/components/subagents/index.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js +71 -0
- package/dist/src/ui/components/subagents/manage/ActionSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.d.ts +13 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js +36 -0
- package/dist/src/ui/components/subagents/manage/AgentDeleteStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js +73 -0
- package/dist/src/ui/components/subagents/manage/AgentEditStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.d.ts +12 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js +231 -0
- package/dist/src/ui/components/subagents/manage/AgentSelectionStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.d.ts +11 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js +20 -0
- package/dist/src/ui/components/subagents/manage/AgentViewerStep.js.map +1 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.d.ts +15 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js +212 -0
- package/dist/src/ui/components/subagents/manage/AgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/components/subagents/reducers.d.ts +14 -0
- package/dist/src/ui/components/subagents/reducers.js +162 -0
- package/dist/src/ui/components/subagents/reducers.js.map +1 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.d.ts +20 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js +193 -0
- package/dist/src/ui/components/subagents/runtime/AgentExecutionDisplay.js.map +1 -0
- package/dist/src/ui/components/subagents/types.d.ts +137 -0
- package/dist/src/ui/components/subagents/types.js +15 -0
- package/dist/src/ui/components/subagents/types.js.map +1 -0
- package/dist/src/ui/components/subagents/utils.d.ts +15 -0
- package/dist/src/ui/components/subagents/utils.js +79 -0
- package/dist/src/ui/components/subagents/utils.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.js +47 -0
- package/dist/src/ui/components/views/ExtensionsList.js.map +1 -0
- package/dist/src/ui/components/views/ExtensionsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js +97 -0
- package/dist/src/ui/components/views/ExtensionsList.test.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.d.ts +27 -0
- package/dist/src/ui/components/views/McpStatus.js +90 -0
- package/dist/src/ui/components/views/McpStatus.js.map +1 -0
- package/dist/src/ui/components/views/McpStatus.test.d.ts +6 -0
- package/dist/src/ui/components/views/McpStatus.test.js +117 -0
- package/dist/src/ui/components/views/McpStatus.test.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.d.ts +14 -0
- package/dist/src/ui/components/views/ToolsList.js +8 -0
- package/dist/src/ui/components/views/ToolsList.js.map +1 -0
- package/dist/src/ui/components/views/ToolsList.test.d.ts +6 -0
- package/dist/src/ui/components/views/ToolsList.test.js +45 -0
- package/dist/src/ui/components/views/ToolsList.test.js.map +1 -0
- package/dist/src/ui/constants.d.ts +18 -0
- package/dist/src/ui/constants.js +23 -0
- package/dist/src/ui/constants.js.map +1 -0
- package/dist/src/ui/contexts/AppContext.d.ts +11 -0
- package/dist/src/ui/contexts/AppContext.js +15 -0
- package/dist/src/ui/contexts/AppContext.js.map +1 -0
- package/dist/src/ui/contexts/ConfigContext.d.ts +9 -0
- package/dist/src/ui/contexts/ConfigContext.js +16 -0
- package/dist/src/ui/contexts/ConfigContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.d.ts +35 -0
- package/dist/src/ui/contexts/KeypressContext.js +636 -0
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -0
- package/dist/src/ui/contexts/KeypressContext.test.d.ts +6 -0
- package/dist/src/ui/contexts/KeypressContext.test.js +1180 -0
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -0
- package/dist/src/ui/contexts/OverflowContext.d.ts +19 -0
- package/dist/src/ui/contexts/OverflowContext.js +38 -0
- package/dist/src/ui/contexts/OverflowContext.js.map +1 -0
- package/dist/src/ui/contexts/SessionContext.d.ts +45 -0
- package/dist/src/ui/contexts/SessionContext.js +157 -0
- package/dist/src/ui/contexts/SessionContext.js.map +1 -0
- package/dist/src/ui/contexts/SettingsContext.d.ts +9 -0
- package/dist/src/ui/contexts/SettingsContext.js +15 -0
- package/dist/src/ui/contexts/SettingsContext.js.map +1 -0
- package/dist/src/ui/contexts/ShellFocusContext.d.ts +7 -0
- package/dist/src/ui/contexts/ShellFocusContext.js +9 -0
- package/dist/src/ui/contexts/ShellFocusContext.js.map +1 -0
- package/dist/src/ui/contexts/StreamingContext.d.ts +9 -0
- package/dist/src/ui/contexts/StreamingContext.js +15 -0
- package/dist/src/ui/contexts/StreamingContext.js.map +1 -0
- package/dist/src/ui/contexts/UIActionsContext.d.ts +46 -0
- package/dist/src/ui/contexts/UIActionsContext.js +22 -0
- package/dist/src/ui/contexts/UIActionsContext.js.map +1 -0
- package/dist/src/ui/contexts/UIStateContext.d.ts +117 -0
- package/dist/src/ui/contexts/UIStateContext.js +17 -0
- package/dist/src/ui/contexts/UIStateContext.js.map +1 -0
- package/dist/src/ui/contexts/VimModeContext.d.ts +19 -0
- package/dist/src/ui/contexts/VimModeContext.js +48 -0
- package/dist/src/ui/contexts/VimModeContext.js.map +1 -0
- package/dist/src/ui/editors/editorSettingsManager.d.ts +19 -0
- package/dist/src/ui/editors/editorSettingsManager.js +48 -0
- package/dist/src/ui/editors/editorSettingsManager.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.d.ts +31 -0
- package/dist/src/ui/hooks/atCommandProcessor.js +364 -0
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js +836 -0
- package/dist/src/ui/hooks/atCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/keyToAnsi.d.ts +15 -0
- package/dist/src/ui/hooks/keyToAnsi.js +67 -0
- package/dist/src/ui/hooks/keyToAnsi.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.d.ts +18 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js +284 -0
- package/dist/src/ui/hooks/shellCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.d.ts +6 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js +508 -0
- package/dist/src/ui/hooks/shellCommandProcessor.test.js.map +1 -0
- package/dist/src/ui/hooks/slashCommandProcessor.d.ts +52 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js +503 -0
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.d.ts +11 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js +21 -0
- package/dist/src/ui/hooks/useAgentsManagerDialog.js.map +1 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.d.ts +14 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js +33 -0
- package/dist/src/ui/hooks/useApprovalModeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useAtCompletion.d.ts +23 -0
- package/dist/src/ui/hooks/useAtCompletion.js +179 -0
- package/dist/src/ui/hooks/useAtCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.d.ts +14 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js +41 -0
- package/dist/src/ui/hooks/useAttentionNotifications.js.map +1 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js +113 -0
- package/dist/src/ui/hooks/useAttentionNotifications.test.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.d.ts +13 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js +40 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js +306 -0
- package/dist/src/ui/hooks/useAutoAcceptIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useBracketedPaste.d.ts +12 -0
- package/dist/src/ui/hooks/useBracketedPaste.js +32 -0
- package/dist/src/ui/hooks/useBracketedPaste.js.map +1 -0
- package/dist/src/ui/hooks/useCommandCompletion.d.ts +29 -0
- package/dist/src/ui/hooks/useCommandCompletion.js +164 -0
- package/dist/src/ui/hooks/useCommandCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useCompletion.d.ts +24 -0
- package/dist/src/ui/hooks/useCompletion.js +88 -0
- package/dist/src/ui/hooks/useCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useConsoleMessages.d.ts +12 -0
- package/dist/src/ui/hooks/useConsoleMessages.js +76 -0
- package/dist/src/ui/hooks/useConsoleMessages.js.map +1 -0
- package/dist/src/ui/hooks/useDialogClose.d.ts +35 -0
- package/dist/src/ui/hooks/useDialogClose.js +53 -0
- package/dist/src/ui/hooks/useDialogClose.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.d.ts +16 -0
- package/dist/src/ui/hooks/useEditorSettings.js +43 -0
- package/dist/src/ui/hooks/useEditorSettings.js.map +1 -0
- package/dist/src/ui/hooks/useEditorSettings.test.d.ts +6 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js +164 -0
- package/dist/src/ui/hooks/useEditorSettings.test.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.d.ts +21 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js +116 -0
- package/dist/src/ui/hooks/useExtensionUpdates.js.map +1 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.d.ts +6 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js +243 -0
- package/dist/src/ui/hooks/useExtensionUpdates.test.js.map +1 -0
- package/dist/src/ui/hooks/useFocus.d.ts +10 -0
- package/dist/src/ui/hooks/useFocus.js +51 -0
- package/dist/src/ui/hooks/useFocus.js.map +1 -0
- package/dist/src/ui/hooks/useFolderTrust.d.ts +13 -0
- package/dist/src/ui/hooks/useFolderTrust.js +60 -0
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.d.ts +39 -0
- package/dist/src/ui/hooks/useGeminiStream.js +781 -0
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.js +61 -0
- package/dist/src/ui/hooks/useGitBranchName.js.map +1 -0
- package/dist/src/ui/hooks/useGitBranchName.test.d.ts +6 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js +189 -0
- package/dist/src/ui/hooks/useGitBranchName.test.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.d.ts +22 -0
- package/dist/src/ui/hooks/useHistoryManager.js +72 -0
- package/dist/src/ui/hooks/useHistoryManager.js.map +1 -0
- package/dist/src/ui/hooks/useHistoryManager.test.d.ts +6 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js +171 -0
- package/dist/src/ui/hooks/useHistoryManager.test.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +16 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js +65 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.d.ts +6 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js +183 -0
- package/dist/src/ui/hooks/useIdeTrustListener.test.js.map +1 -0
- package/dist/src/ui/hooks/useInitializationAuthError.d.ts +22 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js +40 -0
- package/dist/src/ui/hooks/useInitializationAuthError.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistory.js +84 -0
- package/dist/src/ui/hooks/useInputHistory.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistory.test.js +207 -0
- package/dist/src/ui/hooks/useInputHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js +81 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js +234 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
- package/dist/src/ui/hooks/useKeypress.d.ts +17 -0
- package/dist/src/ui/hooks/useKeypress.js +27 -0
- package/dist/src/ui/hooks/useKeypress.js.map +1 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.d.ts +15 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js +20 -0
- package/dist/src/ui/hooks/useKittyKeyboardProtocol.js.map +1 -0
- package/dist/src/ui/hooks/useLaunchEditor.d.ts +10 -0
- package/dist/src/ui/hooks/useLaunchEditor.js +70 -0
- package/dist/src/ui/hooks/useLaunchEditor.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +10 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js +44 -0
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +91 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/useLogger.d.ts +11 -0
- package/dist/src/ui/hooks/useLogger.js +29 -0
- package/dist/src/ui/hooks/useLogger.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.d.ts +13 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js +28 -0
- package/dist/src/ui/hooks/useMemoryMonitor.js.map +1 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js +57 -0
- package/dist/src/ui/hooks/useMemoryMonitor.test.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.d.ts +23 -0
- package/dist/src/ui/hooks/useMessageQueue.js +51 -0
- package/dist/src/ui/hooks/useMessageQueue.js.map +1 -0
- package/dist/src/ui/hooks/useMessageQueue.test.d.ts +6 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js +167 -0
- package/dist/src/ui/hooks/useMessageQueue.test.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.d.ts +12 -0
- package/dist/src/ui/hooks/useModelCommand.js +21 -0
- package/dist/src/ui/hooks/useModelCommand.js.map +1 -0
- package/dist/src/ui/hooks/useModelCommand.test.d.ts +6 -0
- package/dist/src/ui/hooks/useModelCommand.test.js +35 -0
- package/dist/src/ui/hooks/useModelCommand.test.js.map +1 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.d.ts +17 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js +78 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.js.map +1 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.d.ts +6 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js +182 -0
- package/dist/src/ui/hooks/usePermissionsModifyTrust.test.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +14 -0
- package/dist/src/ui/hooks/usePhraseCycler.js +192 -0
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -0
- package/dist/src/ui/hooks/useQuitConfirmation.d.ts +14 -0
- package/dist/src/ui/hooks/useQuitConfirmation.js +36 -0
- package/dist/src/ui/hooks/useQuitConfirmation.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.d.ts +21 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js +122 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.js.map +1 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.d.ts +6 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js +269 -0
- package/dist/src/ui/hooks/useQuotaAndFallback.test.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.d.ts +15 -0
- package/dist/src/ui/hooks/useQwenAuth.js +74 -0
- package/dist/src/ui/hooks/useQwenAuth.js.map +1 -0
- package/dist/src/ui/hooks/useQwenAuth.test.d.ts +6 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js +266 -0
- package/dist/src/ui/hooks/useQwenAuth.test.js.map +1 -0
- package/dist/src/ui/hooks/useReactToolScheduler.d.ts +34 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js +192 -0
- package/dist/src/ui/hooks/useReactToolScheduler.js.map +1 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.d.ts +6 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js +7 -0
- package/dist/src/ui/hooks/useRefreshMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.d.ts +19 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js +103 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.d.ts +6 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js +163 -0
- package/dist/src/ui/hooks/useReverseSearchCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.d.ts +34 -0
- package/dist/src/ui/hooks/useSelectionList.js +245 -0
- package/dist/src/ui/hooks/useSelectionList.js.map +1 -0
- package/dist/src/ui/hooks/useSelectionList.test.d.ts +6 -0
- package/dist/src/ui/hooks/useSelectionList.test.js +701 -0
- package/dist/src/ui/hooks/useSelectionList.test.js.map +1 -0
- package/dist/src/ui/hooks/useSettingsCommand.d.ts +10 -0
- package/dist/src/ui/hooks/useSettingsCommand.js +21 -0
- package/dist/src/ui/hooks/useSettingsCommand.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.d.ts +14 -0
- package/dist/src/ui/hooks/useShellHistory.js +111 -0
- package/dist/src/ui/hooks/useShellHistory.js.map +1 -0
- package/dist/src/ui/hooks/useShellHistory.test.d.ts +6 -0
- package/dist/src/ui/hooks/useShellHistory.test.js +187 -0
- package/dist/src/ui/hooks/useShellHistory.test.js.map +1 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.d.ts +9 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js +58 -0
- package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.d.ts +20 -0
- package/dist/src/ui/hooks/useSlashCompletion.js +349 -0
- package/dist/src/ui/hooks/useSlashCompletion.js.map +1 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.d.ts +9 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js +597 -0
- package/dist/src/ui/hooks/useSlashCompletion.test.js.map +1 -0
- package/dist/src/ui/hooks/useStateAndRef.d.ts +7 -0
- package/dist/src/ui/hooks/useStateAndRef.js +26 -0
- package/dist/src/ui/hooks/useStateAndRef.js.map +1 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.d.ts +10 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js +21 -0
- package/dist/src/ui/hooks/useSubagentCreateDialog.js.map +1 -0
- package/dist/src/ui/hooks/useTerminalSize.d.ts +9 -0
- package/dist/src/ui/hooks/useTerminalSize.js +27 -0
- package/dist/src/ui/hooks/useTerminalSize.js.map +1 -0
- package/dist/src/ui/hooks/useThemeCommand.d.ts +15 -0
- package/dist/src/ui/hooks/useThemeCommand.js +73 -0
- package/dist/src/ui/hooks/useThemeCommand.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.d.ts +12 -0
- package/dist/src/ui/hooks/useTimer.js +58 -0
- package/dist/src/ui/hooks/useTimer.js.map +1 -0
- package/dist/src/ui/hooks/useTimer.test.d.ts +6 -0
- package/dist/src/ui/hooks/useTimer.test.js +90 -0
- package/dist/src/ui/hooks/useTimer.test.js.map +1 -0
- package/dist/src/ui/hooks/useToolScheduler.test.d.ts +6 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js +623 -0
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.d.ts +47 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.js +262 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.js.map +1 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.d.ts +6 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.js +515 -0
- package/dist/src/ui/hooks/useVisionAutoSwitch.test.js.map +1 -0
- package/dist/src/ui/hooks/useWelcomeBack.d.ts +23 -0
- package/dist/src/ui/hooks/useWelcomeBack.js +79 -0
- package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.d.ts +13 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js +54 -0
- package/dist/src/ui/hooks/useWorkspaceMigration.js.map +1 -0
- package/dist/src/ui/hooks/vim.d.ts +28 -0
- package/dist/src/ui/hooks/vim.js +639 -0
- package/dist/src/ui/hooks/vim.js.map +1 -0
- package/dist/src/ui/keyMatchers.d.ts +27 -0
- package/dist/src/ui/keyMatchers.js +68 -0
- package/dist/src/ui/keyMatchers.js.map +1 -0
- package/dist/src/ui/keyMatchers.test.d.ts +6 -0
- package/dist/src/ui/keyMatchers.test.js +293 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -0
- package/dist/src/ui/layouts/DefaultAppLayout.d.ts +9 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js +13 -0
- package/dist/src/ui/layouts/DefaultAppLayout.js.map +1 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.d.ts +7 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js +14 -0
- package/dist/src/ui/layouts/ScreenReaderAppLayout.js.map +1 -0
- package/dist/src/ui/models/availableModels.d.ts +49 -0
- package/dist/src/ui/models/availableModels.js +130 -0
- package/dist/src/ui/models/availableModels.js.map +1 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.d.ts +12 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js +29 -0
- package/dist/src/ui/noninteractive/nonInteractiveUi.js.map +1 -0
- package/dist/src/ui/semantic-colors.d.ts +7 -0
- package/dist/src/ui/semantic-colors.js +24 -0
- package/dist/src/ui/semantic-colors.js.map +1 -0
- package/dist/src/ui/state/extensions.d.ts +42 -0
- package/dist/src/ui/state/extensions.js +62 -0
- package/dist/src/ui/state/extensions.js.map +1 -0
- package/dist/src/ui/textConstants.d.ts +9 -0
- package/dist/src/ui/textConstants.js +10 -0
- package/dist/src/ui/textConstants.js.map +1 -0
- package/dist/src/ui/themes/ansi-light.d.ts +7 -0
- package/dist/src/ui/themes/ansi-light.js +142 -0
- package/dist/src/ui/themes/ansi-light.js.map +1 -0
- package/dist/src/ui/themes/ansi.d.ts +7 -0
- package/dist/src/ui/themes/ansi.js +152 -0
- package/dist/src/ui/themes/ansi.js.map +1 -0
- package/dist/src/ui/themes/atom-one-dark.d.ts +7 -0
- package/dist/src/ui/themes/atom-one-dark.js +138 -0
- package/dist/src/ui/themes/atom-one-dark.js.map +1 -0
- package/dist/src/ui/themes/ayu-light.d.ts +7 -0
- package/dist/src/ui/themes/ayu-light.js +130 -0
- package/dist/src/ui/themes/ayu-light.js.map +1 -0
- package/dist/src/ui/themes/ayu.d.ts +7 -0
- package/dist/src/ui/themes/ayu.js +104 -0
- package/dist/src/ui/themes/ayu.js.map +1 -0
- package/dist/src/ui/themes/color-utils.d.ts +21 -0
- package/dist/src/ui/themes/color-utils.js +221 -0
- package/dist/src/ui/themes/color-utils.js.map +1 -0
- package/dist/src/ui/themes/color-utils.test.d.ts +6 -0
- package/dist/src/ui/themes/color-utils.test.js +197 -0
- package/dist/src/ui/themes/color-utils.test.js.map +1 -0
- package/dist/src/ui/themes/default-light.d.ts +7 -0
- package/dist/src/ui/themes/default-light.js +100 -0
- package/dist/src/ui/themes/default-light.js.map +1 -0
- package/dist/src/ui/themes/default.d.ts +7 -0
- package/dist/src/ui/themes/default.js +143 -0
- package/dist/src/ui/themes/default.js.map +1 -0
- package/dist/src/ui/themes/dracula.d.ts +7 -0
- package/dist/src/ui/themes/dracula.js +115 -0
- package/dist/src/ui/themes/dracula.js.map +1 -0
- package/dist/src/ui/themes/github-dark.d.ts +7 -0
- package/dist/src/ui/themes/github-dark.js +138 -0
- package/dist/src/ui/themes/github-dark.js.map +1 -0
- package/dist/src/ui/themes/github-light.d.ts +7 -0
- package/dist/src/ui/themes/github-light.js +140 -0
- package/dist/src/ui/themes/github-light.js.map +1 -0
- package/dist/src/ui/themes/googlecode.d.ts +7 -0
- package/dist/src/ui/themes/googlecode.js +137 -0
- package/dist/src/ui/themes/googlecode.js.map +1 -0
- package/dist/src/ui/themes/hibana-dark.d.ts +7 -0
- package/dist/src/ui/themes/hibana-dark.js +105 -0
- package/dist/src/ui/themes/hibana-dark.js.map +1 -0
- package/dist/src/ui/themes/hibana-light.d.ts +7 -0
- package/dist/src/ui/themes/hibana-light.js +131 -0
- package/dist/src/ui/themes/hibana-light.js.map +1 -0
- package/dist/src/ui/themes/no-color.d.ts +7 -0
- package/dist/src/ui/themes/no-color.js +115 -0
- package/dist/src/ui/themes/no-color.js.map +1 -0
- package/dist/src/ui/themes/qwen-dark.d.ts +7 -0
- package/dist/src/ui/themes/qwen-dark.js +105 -0
- package/dist/src/ui/themes/qwen-dark.js.map +1 -0
- package/dist/src/ui/themes/qwen-light.d.ts +7 -0
- package/dist/src/ui/themes/qwen-light.js +131 -0
- package/dist/src/ui/themes/qwen-light.js.map +1 -0
- package/dist/src/ui/themes/semantic-tokens.d.ts +37 -0
- package/dist/src/ui/themes/semantic-tokens.js +94 -0
- package/dist/src/ui/themes/semantic-tokens.js.map +1 -0
- package/dist/src/ui/themes/shades-of-purple.d.ts +11 -0
- package/dist/src/ui/themes/shades-of-purple.js +304 -0
- package/dist/src/ui/themes/shades-of-purple.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.d.ts +66 -0
- package/dist/src/ui/themes/theme-manager.js +270 -0
- package/dist/src/ui/themes/theme-manager.js.map +1 -0
- package/dist/src/ui/themes/theme-manager.test.d.ts +6 -0
- package/dist/src/ui/themes/theme-manager.test.js +142 -0
- package/dist/src/ui/themes/theme-manager.test.js.map +1 -0
- package/dist/src/ui/themes/theme.d.ts +130 -0
- package/dist/src/ui/themes/theme.js +379 -0
- package/dist/src/ui/themes/theme.js.map +1 -0
- package/dist/src/ui/themes/xcode.d.ts +7 -0
- package/dist/src/ui/themes/xcode.js +145 -0
- package/dist/src/ui/themes/xcode.js.map +1 -0
- package/dist/src/ui/types.d.ts +311 -0
- package/dist/src/ui/types.js +60 -0
- package/dist/src/ui/types.js.map +1 -0
- package/dist/src/ui/utils/CodeColorizer.d.ts +17 -0
- package/dist/src/ui/utils/CodeColorizer.js +111 -0
- package/dist/src/ui/utils/CodeColorizer.js.map +1 -0
- package/dist/src/ui/utils/ConsolePatcher.d.ts +25 -0
- package/dist/src/ui/utils/ConsolePatcher.js +52 -0
- package/dist/src/ui/utils/ConsolePatcher.js.map +1 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.d.ts +16 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js +111 -0
- package/dist/src/ui/utils/InlineMarkdownRenderer.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.d.ts +14 -0
- package/dist/src/ui/utils/MarkdownDisplay.js +207 -0
- package/dist/src/ui/utils/MarkdownDisplay.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.d.ts +6 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js +169 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -0
- package/dist/src/ui/utils/TableRenderer.d.ts +17 -0
- package/dist/src/ui/utils/TableRenderer.js +84 -0
- package/dist/src/ui/utils/TableRenderer.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.d.ts +22 -0
- package/dist/src/ui/utils/clipboardUtils.js +126 -0
- package/dist/src/ui/utils/clipboardUtils.js.map +1 -0
- package/dist/src/ui/utils/clipboardUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/clipboardUtils.test.js +65 -0
- package/dist/src/ui/utils/clipboardUtils.test.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.d.ts +40 -0
- package/dist/src/ui/utils/commandUtils.js +146 -0
- package/dist/src/ui/utils/commandUtils.js.map +1 -0
- package/dist/src/ui/utils/commandUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/commandUtils.test.js +352 -0
- package/dist/src/ui/utils/commandUtils.test.js.map +1 -0
- package/dist/src/ui/utils/computeStats.d.ts +10 -0
- package/dist/src/ui/utils/computeStats.js +57 -0
- package/dist/src/ui/utils/computeStats.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.d.ts +18 -0
- package/dist/src/ui/utils/displayUtils.js +27 -0
- package/dist/src/ui/utils/displayUtils.js.map +1 -0
- package/dist/src/ui/utils/displayUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/displayUtils.test.js +61 -0
- package/dist/src/ui/utils/displayUtils.test.js.map +1 -0
- package/dist/src/ui/utils/formatters.d.ts +13 -0
- package/dist/src/ui/utils/formatters.js +56 -0
- package/dist/src/ui/utils/formatters.js.map +1 -0
- package/dist/src/ui/utils/formatters.test.d.ts +6 -0
- package/dist/src/ui/utils/formatters.test.js +56 -0
- package/dist/src/ui/utils/formatters.test.js.map +1 -0
- package/dist/src/ui/utils/highlight.d.ts +11 -0
- package/dist/src/ui/utils/highlight.js +78 -0
- package/dist/src/ui/utils/highlight.js.map +1 -0
- package/dist/src/ui/utils/highlight.test.d.ts +6 -0
- package/dist/src/ui/utils/highlight.test.js +120 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -0
- package/dist/src/ui/utils/isNarrowWidth.d.ts +6 -0
- package/dist/src/ui/utils/isNarrowWidth.js +9 -0
- package/dist/src/ui/utils/isNarrowWidth.js.map +1 -0
- package/dist/src/ui/utils/kittyProtocolDetector.d.ts +13 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js +98 -0
- package/dist/src/ui/utils/kittyProtocolDetector.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.js +110 -0
- package/dist/src/ui/utils/markdownUtilities.js.map +1 -0
- package/dist/src/ui/utils/markdownUtilities.test.d.ts +6 -0
- package/dist/src/ui/utils/markdownUtilities.test.js +42 -0
- package/dist/src/ui/utils/markdownUtilities.test.js.map +1 -0
- package/dist/src/ui/utils/platformConstants.d.ts +75 -0
- package/dist/src/ui/utils/platformConstants.js +78 -0
- package/dist/src/ui/utils/platformConstants.js.map +1 -0
- package/dist/src/ui/utils/terminalSetup.d.ts +30 -0
- package/dist/src/ui/utils/terminalSetup.js +308 -0
- package/dist/src/ui/utils/terminalSetup.js.map +1 -0
- package/dist/src/ui/utils/textUtils.d.ts +42 -0
- package/dist/src/ui/utils/textUtils.js +185 -0
- package/dist/src/ui/utils/textUtils.js.map +1 -0
- package/dist/src/ui/utils/textUtils.test.d.ts +6 -0
- package/dist/src/ui/utils/textUtils.test.js +132 -0
- package/dist/src/ui/utils/textUtils.test.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.d.ts +12 -0
- package/dist/src/ui/utils/updateCheck.js +78 -0
- package/dist/src/ui/utils/updateCheck.js.map +1 -0
- package/dist/src/ui/utils/updateCheck.test.d.ts +6 -0
- package/dist/src/ui/utils/updateCheck.test.js +145 -0
- package/dist/src/ui/utils/updateCheck.test.js.map +1 -0
- package/dist/src/utils/attentionNotification.d.ts +20 -0
- package/dist/src/utils/attentionNotification.js +34 -0
- package/dist/src/utils/attentionNotification.js.map +1 -0
- package/dist/src/utils/attentionNotification.test.d.ts +6 -0
- package/dist/src/utils/attentionNotification.test.js +46 -0
- package/dist/src/utils/attentionNotification.test.js.map +1 -0
- package/dist/src/utils/checks.d.ts +19 -0
- package/dist/src/utils/checks.js +24 -0
- package/dist/src/utils/checks.js.map +1 -0
- package/dist/src/utils/cleanup.d.ts +8 -0
- package/dist/src/utils/cleanup.js +35 -0
- package/dist/src/utils/cleanup.js.map +1 -0
- package/dist/src/utils/commands.d.ts +20 -0
- package/dist/src/utils/commands.js +53 -0
- package/dist/src/utils/commands.js.map +1 -0
- package/dist/src/utils/commands.test.d.ts +6 -0
- package/dist/src/utils/commands.test.js +115 -0
- package/dist/src/utils/commands.test.js.map +1 -0
- package/dist/src/utils/commentJson.d.ts +9 -0
- package/dist/src/utils/commentJson.js +55 -0
- package/dist/src/utils/commentJson.js.map +1 -0
- package/dist/src/utils/commentJson.test.d.ts +6 -0
- package/dist/src/utils/commentJson.test.js +146 -0
- package/dist/src/utils/commentJson.test.js.map +1 -0
- package/dist/src/utils/deepMerge.d.ts +9 -0
- package/dist/src/utils/deepMerge.js +58 -0
- package/dist/src/utils/deepMerge.js.map +1 -0
- package/dist/src/utils/deepMerge.test.d.ts +6 -0
- package/dist/src/utils/deepMerge.test.js +143 -0
- package/dist/src/utils/deepMerge.test.js.map +1 -0
- package/dist/src/utils/dialogScopeUtils.d.ts +28 -0
- package/dist/src/utils/dialogScopeUtils.js +51 -0
- package/dist/src/utils/dialogScopeUtils.js.map +1 -0
- package/dist/src/utils/envVarResolver.d.ts +39 -0
- package/dist/src/utils/envVarResolver.js +97 -0
- package/dist/src/utils/envVarResolver.js.map +1 -0
- package/dist/src/utils/envVarResolver.test.d.ts +6 -0
- package/dist/src/utils/envVarResolver.test.js +221 -0
- package/dist/src/utils/envVarResolver.test.js.map +1 -0
- package/dist/src/utils/errors.d.ts +35 -0
- package/dist/src/utils/errors.js +106 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/errors.test.d.ts +6 -0
- package/dist/src/utils/errors.test.js +340 -0
- package/dist/src/utils/errors.test.js.map +1 -0
- package/dist/src/utils/events.d.ts +12 -0
- package/dist/src/utils/events.js +14 -0
- package/dist/src/utils/events.js.map +1 -0
- package/dist/src/utils/gitUtils.d.ts +30 -0
- package/dist/src/utils/gitUtils.js +89 -0
- package/dist/src/utils/gitUtils.js.map +1 -0
- package/dist/src/utils/gitUtils.test.d.ts +6 -0
- package/dist/src/utils/gitUtils.test.js +113 -0
- package/dist/src/utils/gitUtils.test.js.map +1 -0
- package/dist/src/utils/handleAutoUpdate.d.ts +11 -0
- package/dist/src/utils/handleAutoUpdate.js +102 -0
- package/dist/src/utils/handleAutoUpdate.js.map +1 -0
- package/dist/src/utils/installationInfo.d.ts +23 -0
- package/dist/src/utils/installationInfo.js +153 -0
- package/dist/src/utils/installationInfo.js.map +1 -0
- package/dist/src/utils/installationInfo.test.d.ts +6 -0
- package/dist/src/utils/installationInfo.test.js +242 -0
- package/dist/src/utils/installationInfo.test.js.map +1 -0
- package/dist/src/utils/math.d.ts +13 -0
- package/dist/src/utils/math.js +14 -0
- package/dist/src/utils/math.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.d.ts +88 -0
- package/dist/src/utils/nonInteractiveHelpers.js +470 -0
- package/dist/src/utils/nonInteractiveHelpers.js.map +1 -0
- package/dist/src/utils/nonInteractiveHelpers.test.d.ts +6 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js +945 -0
- package/dist/src/utils/nonInteractiveHelpers.test.js.map +1 -0
- package/dist/src/utils/package.d.ts +12 -0
- package/dist/src/utils/package.js +24 -0
- package/dist/src/utils/package.js.map +1 -0
- package/dist/src/utils/processUtils.d.ts +13 -0
- package/dist/src/utils/processUtils.js +18 -0
- package/dist/src/utils/processUtils.js.map +1 -0
- package/dist/src/utils/processUtils.test.d.ts +6 -0
- package/dist/src/utils/processUtils.test.js +20 -0
- package/dist/src/utils/processUtils.test.js.map +1 -0
- package/dist/src/utils/readStdin.d.ts +6 -0
- package/dist/src/utils/readStdin.js +59 -0
- package/dist/src/utils/readStdin.js.map +1 -0
- package/dist/src/utils/readStdin.test.d.ts +6 -0
- package/dist/src/utils/readStdin.test.js +88 -0
- package/dist/src/utils/readStdin.test.js.map +1 -0
- package/dist/src/utils/relaunch.d.ts +7 -0
- package/dist/src/utils/relaunch.js +57 -0
- package/dist/src/utils/relaunch.js.map +1 -0
- package/dist/src/utils/relaunch.test.d.ts +6 -0
- package/dist/src/utils/relaunch.test.js +273 -0
- package/dist/src/utils/relaunch.test.js.map +1 -0
- package/dist/src/utils/resolvePath.d.ts +6 -0
- package/dist/src/utils/resolvePath.js +21 -0
- package/dist/src/utils/resolvePath.js.map +1 -0
- package/dist/src/utils/sandbox-macos-permissive-closed.sb +32 -0
- package/dist/src/utils/sandbox-macos-permissive-open.sb +25 -0
- package/dist/src/utils/sandbox-macos-permissive-proxied.sb +37 -0
- package/dist/src/utils/sandbox-macos-restrictive-closed.sb +93 -0
- package/dist/src/utils/sandbox-macos-restrictive-open.sb +96 -0
- package/dist/src/utils/sandbox-macos-restrictive-proxied.sb +98 -0
- package/dist/src/utils/sandbox.d.ts +7 -0
- package/dist/src/utils/sandbox.js +763 -0
- package/dist/src/utils/sandbox.js.map +1 -0
- package/dist/src/utils/settingsUtils.d.ts +144 -0
- package/dist/src/utils/settingsUtils.js +346 -0
- package/dist/src/utils/settingsUtils.js.map +1 -0
- package/dist/src/utils/settingsUtils.test.d.ts +6 -0
- package/dist/src/utils/settingsUtils.test.js +808 -0
- package/dist/src/utils/settingsUtils.test.js.map +1 -0
- package/dist/src/utils/spawnWrapper.d.ts +7 -0
- package/dist/src/utils/spawnWrapper.js +8 -0
- package/dist/src/utils/spawnWrapper.js.map +1 -0
- package/dist/src/utils/startupWarnings.d.ts +6 -0
- package/dist/src/utils/startupWarnings.js +40 -0
- package/dist/src/utils/startupWarnings.js.map +1 -0
- package/dist/src/utils/systemInfo.d.ts +66 -0
- package/dist/src/utils/systemInfo.js +125 -0
- package/dist/src/utils/systemInfo.js.map +1 -0
- package/dist/src/utils/systemInfo.test.d.ts +6 -0
- package/dist/src/utils/systemInfo.test.js +259 -0
- package/dist/src/utils/systemInfo.test.js.map +1 -0
- package/dist/src/utils/systemInfoFields.d.ts +22 -0
- package/dist/src/utils/systemInfoFields.js +96 -0
- package/dist/src/utils/systemInfoFields.js.map +1 -0
- package/dist/src/utils/updateEventEmitter.d.ts +11 -0
- package/dist/src/utils/updateEventEmitter.js +12 -0
- package/dist/src/utils/updateEventEmitter.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.d.ts +12 -0
- package/dist/src/utils/userStartupWarnings.js +74 -0
- package/dist/src/utils/userStartupWarnings.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.test.d.ts +6 -0
- package/dist/src/utils/userStartupWarnings.test.js +88 -0
- package/dist/src/utils/userStartupWarnings.test.js.map +1 -0
- package/dist/src/utils/version.d.ts +6 -0
- package/dist/src/utils/version.js +11 -0
- package/dist/src/utils/version.js.map +1 -0
- package/dist/src/utils/windowTitle.d.ts +12 -0
- package/dist/src/utils/windowTitle.js +19 -0
- package/dist/src/utils/windowTitle.js.map +1 -0
- package/dist/src/utils/windowTitle.test.d.ts +6 -0
- package/dist/src/utils/windowTitle.test.js +49 -0
- package/dist/src/utils/windowTitle.test.js.map +1 -0
- package/dist/src/validateNonInterActiveAuth.d.ts +9 -0
- package/dist/src/validateNonInterActiveAuth.js +73 -0
- package/dist/src/validateNonInterActiveAuth.js.map +1 -0
- package/dist/src/zed-integration/acp.d.ts +63 -0
- package/dist/src/zed-integration/acp.js +225 -0
- package/dist/src/zed-integration/acp.js.map +1 -0
- package/dist/src/zed-integration/fileSystemService.d.ts +20 -0
- package/dist/src/zed-integration/fileSystemService.js +46 -0
- package/dist/src/zed-integration/fileSystemService.js.map +1 -0
- package/dist/src/zed-integration/schema.d.ts +12024 -0
- package/dist/src/zed-integration/schema.js +324 -0
- package/dist/src/zed-integration/schema.js.map +1 -0
- package/dist/src/zed-integration/zedIntegration.d.ts +17 -0
- package/dist/src/zed-integration/zedIntegration.js +1135 -0
- package/dist/src/zed-integration/zedIntegration.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +115 -0
|
@@ -0,0 +1,1129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Hibana
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// English translations for Hibana CLI
|
|
8
|
+
// The key serves as both the translation key and the default English text
|
|
9
|
+
|
|
10
|
+
export default {
|
|
11
|
+
// ============================================================================
|
|
12
|
+
// Help / UI Components
|
|
13
|
+
// ============================================================================
|
|
14
|
+
'Basics:': 'Basics:',
|
|
15
|
+
'Add context': 'Add context',
|
|
16
|
+
'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.':
|
|
17
|
+
'Use {{symbol}} to specify files for context (e.g., {{example}}) to target specific files or folders.',
|
|
18
|
+
'@': '@',
|
|
19
|
+
'@src/myFile.ts': '@src/myFile.ts',
|
|
20
|
+
'Shell mode': 'Shell mode',
|
|
21
|
+
'YOLO mode': 'YOLO mode',
|
|
22
|
+
'plan mode': 'plan mode',
|
|
23
|
+
'auto-accept edits': 'auto-accept edits',
|
|
24
|
+
'Accepting edits': 'Accepting edits',
|
|
25
|
+
'(shift + tab to cycle)': '(shift + tab to cycle)',
|
|
26
|
+
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).':
|
|
27
|
+
'Execute shell commands via {{symbol}} (e.g., {{example1}}) or use natural language (e.g., {{example2}}).',
|
|
28
|
+
'!': '!',
|
|
29
|
+
'!npm run start': '!npm run start',
|
|
30
|
+
'start server': 'start server',
|
|
31
|
+
'Commands:': 'Commands:',
|
|
32
|
+
'shell command': 'shell command',
|
|
33
|
+
'Model Context Protocol command (from external servers)':
|
|
34
|
+
'Model Context Protocol command (from external servers)',
|
|
35
|
+
'Keyboard Shortcuts:': 'Keyboard Shortcuts:',
|
|
36
|
+
'Jump through words in the input': 'Jump through words in the input',
|
|
37
|
+
'Close dialogs, cancel requests, or quit application':
|
|
38
|
+
'Close dialogs, cancel requests, or quit application',
|
|
39
|
+
'New line': 'New line',
|
|
40
|
+
'New line (Alt+Enter works for certain linux distros)':
|
|
41
|
+
'New line (Alt+Enter works for certain linux distros)',
|
|
42
|
+
'Clear the screen': 'Clear the screen',
|
|
43
|
+
'Open input in external editor': 'Open input in external editor',
|
|
44
|
+
'Send message': 'Send message',
|
|
45
|
+
'Initializing...': 'Initializing...',
|
|
46
|
+
'Connecting to MCP servers... ({{connected}}/{{total}})':
|
|
47
|
+
'Connecting to MCP servers... ({{connected}}/{{total}})',
|
|
48
|
+
'Type your message or @path/to/file': 'Type your message or @path/to/file',
|
|
49
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.":
|
|
50
|
+
"Press 'i' for INSERT mode and 'Esc' for NORMAL mode.",
|
|
51
|
+
'Cancel operation / Clear input (double press)':
|
|
52
|
+
'Cancel operation / Clear input (double press)',
|
|
53
|
+
'Cycle approval modes': 'Cycle approval modes',
|
|
54
|
+
'Cycle through your prompt history': 'Cycle through your prompt history',
|
|
55
|
+
'For a full list of shortcuts, see {{docPath}}':
|
|
56
|
+
'For a full list of shortcuts, see {{docPath}}',
|
|
57
|
+
'docs/keyboard-shortcuts.md': 'docs/keyboard-shortcuts.md',
|
|
58
|
+
'for help on Hibana CLI': 'for help on Hibana CLI',
|
|
59
|
+
'show version info': 'show version info',
|
|
60
|
+
'submit a bug report': 'submit a bug report',
|
|
61
|
+
'About Hibana CLI': 'About Hibana CLI',
|
|
62
|
+
|
|
63
|
+
// ============================================================================
|
|
64
|
+
// System Information Fields
|
|
65
|
+
// ============================================================================
|
|
66
|
+
'CLI Version': 'CLI Version',
|
|
67
|
+
'Git Commit': 'Git Commit',
|
|
68
|
+
Model: 'Model',
|
|
69
|
+
Sandbox: 'Sandbox',
|
|
70
|
+
'OS Platform': 'OS Platform',
|
|
71
|
+
'OS Arch': 'OS Arch',
|
|
72
|
+
'OS Release': 'OS Release',
|
|
73
|
+
'Node.js Version': 'Node.js Version',
|
|
74
|
+
'NPM Version': 'NPM Version',
|
|
75
|
+
'Session ID': 'Session ID',
|
|
76
|
+
'Auth Method': 'Auth Method',
|
|
77
|
+
'Base URL': 'Base URL',
|
|
78
|
+
'Memory Usage': 'Memory Usage',
|
|
79
|
+
'IDE Client': 'IDE Client',
|
|
80
|
+
|
|
81
|
+
// ============================================================================
|
|
82
|
+
// Commands - General
|
|
83
|
+
// ============================================================================
|
|
84
|
+
'Analyzes the project and creates a tailored HIBANA.md file.':
|
|
85
|
+
'Analyzes the project and creates a tailored HIBANA.md file.',
|
|
86
|
+
'list available Hibana CLI tools. Usage: /tools [desc]':
|
|
87
|
+
'list available Hibana CLI tools. Usage: /tools [desc]',
|
|
88
|
+
'Available Hibana CLI tools:': 'Available Hibana CLI tools:',
|
|
89
|
+
'No tools available': 'No tools available',
|
|
90
|
+
'View or change the approval mode for tool usage':
|
|
91
|
+
'View or change the approval mode for tool usage',
|
|
92
|
+
'View or change the language setting': 'View or change the language setting',
|
|
93
|
+
'change the theme': 'change the theme',
|
|
94
|
+
'Select Theme': 'Select Theme',
|
|
95
|
+
Preview: 'Preview',
|
|
96
|
+
'(Use Enter to select, Tab to configure scope)':
|
|
97
|
+
'(Use Enter to select, Tab to configure scope)',
|
|
98
|
+
'(Use Enter to apply scope, Tab to select theme)':
|
|
99
|
+
'(Use Enter to apply scope, Tab to select theme)',
|
|
100
|
+
'Theme configuration unavailable due to NO_COLOR env variable.':
|
|
101
|
+
'Theme configuration unavailable due to NO_COLOR env variable.',
|
|
102
|
+
'Theme "{{themeName}}" not found.': 'Theme "{{themeName}}" not found.',
|
|
103
|
+
'Theme "{{themeName}}" not found in selected scope.':
|
|
104
|
+
'Theme "{{themeName}}" not found in selected scope.',
|
|
105
|
+
'clear the screen and conversation history':
|
|
106
|
+
'clear the screen and conversation history',
|
|
107
|
+
'Compresses the context by replacing it with a summary.':
|
|
108
|
+
'Compresses the context by replacing it with a summary.',
|
|
109
|
+
'open full Hibana CLI documentation in your browser':
|
|
110
|
+
'open full Hibana CLI documentation in your browser',
|
|
111
|
+
'Configuration not available.': 'Configuration not available.',
|
|
112
|
+
'change the auth method': 'change the auth method',
|
|
113
|
+
'Show quit confirmation dialog': 'Show quit confirmation dialog',
|
|
114
|
+
'Copy the last result or code snippet to clipboard':
|
|
115
|
+
'Copy the last result or code snippet to clipboard',
|
|
116
|
+
|
|
117
|
+
// ============================================================================
|
|
118
|
+
// Commands - Agents
|
|
119
|
+
// ============================================================================
|
|
120
|
+
'Manage subagents for specialized task delegation.':
|
|
121
|
+
'Manage subagents for specialized task delegation.',
|
|
122
|
+
'Manage existing subagents (view, edit, delete).':
|
|
123
|
+
'Manage existing subagents (view, edit, delete).',
|
|
124
|
+
'Create a new subagent with guided setup.':
|
|
125
|
+
'Create a new subagent with guided setup.',
|
|
126
|
+
|
|
127
|
+
// ============================================================================
|
|
128
|
+
// Agents - Management Dialog
|
|
129
|
+
// ============================================================================
|
|
130
|
+
Agents: 'Agents',
|
|
131
|
+
'Choose Action': 'Choose Action',
|
|
132
|
+
'Edit {{name}}': 'Edit {{name}}',
|
|
133
|
+
'Edit Tools: {{name}}': 'Edit Tools: {{name}}',
|
|
134
|
+
'Edit Color: {{name}}': 'Edit Color: {{name}}',
|
|
135
|
+
'Delete {{name}}': 'Delete {{name}}',
|
|
136
|
+
'Unknown Step': 'Unknown Step',
|
|
137
|
+
'Esc to close': 'Esc to close',
|
|
138
|
+
'Enter to select, ↑↓ to navigate, Esc to close':
|
|
139
|
+
'Enter to select, ↑↓ to navigate, Esc to close',
|
|
140
|
+
'Esc to go back': 'Esc to go back',
|
|
141
|
+
'Enter to confirm, Esc to cancel': 'Enter to confirm, Esc to cancel',
|
|
142
|
+
'Enter to select, ↑↓ to navigate, Esc to go back':
|
|
143
|
+
'Enter to select, ↑↓ to navigate, Esc to go back',
|
|
144
|
+
'Invalid step: {{step}}': 'Invalid step: {{step}}',
|
|
145
|
+
'No subagents found.': 'No subagents found.',
|
|
146
|
+
"Use '/agents create' to create your first subagent.":
|
|
147
|
+
"Use '/agents create' to create your first subagent.",
|
|
148
|
+
'(built-in)': '(built-in)',
|
|
149
|
+
'(overridden by project level agent)': '(overridden by project level agent)',
|
|
150
|
+
'Project Level ({{path}})': 'Project Level ({{path}})',
|
|
151
|
+
'User Level ({{path}})': 'User Level ({{path}})',
|
|
152
|
+
'Built-in Agents': 'Built-in Agents',
|
|
153
|
+
'Using: {{count}} agents': 'Using: {{count}} agents',
|
|
154
|
+
'View Agent': 'View Agent',
|
|
155
|
+
'Edit Agent': 'Edit Agent',
|
|
156
|
+
'Delete Agent': 'Delete Agent',
|
|
157
|
+
Back: 'Back',
|
|
158
|
+
'No agent selected': 'No agent selected',
|
|
159
|
+
'File Path: ': 'File Path: ',
|
|
160
|
+
'Tools: ': 'Tools: ',
|
|
161
|
+
'Color: ': 'Color: ',
|
|
162
|
+
'Description:': 'Description:',
|
|
163
|
+
'System Prompt:': 'System Prompt:',
|
|
164
|
+
'Open in editor': 'Open in editor',
|
|
165
|
+
'Edit tools': 'Edit tools',
|
|
166
|
+
'Edit color': 'Edit color',
|
|
167
|
+
'❌ Error:': '❌ Error:',
|
|
168
|
+
'Are you sure you want to delete agent "{{name}}"?':
|
|
169
|
+
'Are you sure you want to delete agent "{{name}}"?',
|
|
170
|
+
// ============================================================================
|
|
171
|
+
// Agents - Creation Wizard
|
|
172
|
+
// ============================================================================
|
|
173
|
+
'Project Level (.hibana/agents/)': 'Project Level (.hibana/agents/)',
|
|
174
|
+
'User Level (~/.hibana/agents/)': 'User Level (~/.hibana/agents/)',
|
|
175
|
+
'✅ Subagent Created Successfully!': '✅ Subagent Created Successfully!',
|
|
176
|
+
'Subagent "{{name}}" has been saved to {{level}} level.':
|
|
177
|
+
'Subagent "{{name}}" has been saved to {{level}} level.',
|
|
178
|
+
'Name: ': 'Name: ',
|
|
179
|
+
'Location: ': 'Location: ',
|
|
180
|
+
'❌ Error saving subagent:': '❌ Error saving subagent:',
|
|
181
|
+
'Warnings:': 'Warnings:',
|
|
182
|
+
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent':
|
|
183
|
+
'Name "{{name}}" already exists at {{level}} level - will overwrite existing subagent',
|
|
184
|
+
'Name "{{name}}" exists at user level - project level will take precedence':
|
|
185
|
+
'Name "{{name}}" exists at user level - project level will take precedence',
|
|
186
|
+
'Name "{{name}}" exists at project level - existing subagent will take precedence':
|
|
187
|
+
'Name "{{name}}" exists at project level - existing subagent will take precedence',
|
|
188
|
+
'Description is over {{length}} characters':
|
|
189
|
+
'Description is over {{length}} characters',
|
|
190
|
+
'System prompt is over {{length}} characters':
|
|
191
|
+
'System prompt is over {{length}} characters',
|
|
192
|
+
// Agents - Creation Wizard Steps
|
|
193
|
+
'Step {{n}}: Choose Location': 'Step {{n}}: Choose Location',
|
|
194
|
+
'Step {{n}}: Choose Generation Method':
|
|
195
|
+
'Step {{n}}: Choose Generation Method',
|
|
196
|
+
'Generate with Hibana CLI (Recommended)':
|
|
197
|
+
'Generate with Hibana CLI (Recommended)',
|
|
198
|
+
'Manual Creation': 'Manual Creation',
|
|
199
|
+
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)':
|
|
200
|
+
'Describe what this subagent should do and when it should be used. (Be comprehensive for best results)',
|
|
201
|
+
'e.g., Expert code reviewer that reviews code based on best practices...':
|
|
202
|
+
'e.g., Expert code reviewer that reviews code based on best practices...',
|
|
203
|
+
'Generating subagent configuration...':
|
|
204
|
+
'Generating subagent configuration...',
|
|
205
|
+
'Failed to generate subagent: {{error}}':
|
|
206
|
+
'Failed to generate subagent: {{error}}',
|
|
207
|
+
'Step {{n}}: Describe Your Subagent': 'Step {{n}}: Describe Your Subagent',
|
|
208
|
+
'Step {{n}}: Enter Subagent Name': 'Step {{n}}: Enter Subagent Name',
|
|
209
|
+
'Step {{n}}: Enter System Prompt': 'Step {{n}}: Enter System Prompt',
|
|
210
|
+
'Step {{n}}: Enter Description': 'Step {{n}}: Enter Description',
|
|
211
|
+
// Agents - Tool Selection
|
|
212
|
+
'Step {{n}}: Select Tools': 'Step {{n}}: Select Tools',
|
|
213
|
+
'All Tools (Default)': 'All Tools (Default)',
|
|
214
|
+
'All Tools': 'All Tools',
|
|
215
|
+
'Read-only Tools': 'Read-only Tools',
|
|
216
|
+
'Read & Edit Tools': 'Read & Edit Tools',
|
|
217
|
+
'Read & Edit & Execution Tools': 'Read & Edit & Execution Tools',
|
|
218
|
+
'All tools selected, including MCP tools':
|
|
219
|
+
'All tools selected, including MCP tools',
|
|
220
|
+
'Selected tools:': 'Selected tools:',
|
|
221
|
+
'Read-only tools:': 'Read-only tools:',
|
|
222
|
+
'Edit tools:': 'Edit tools:',
|
|
223
|
+
'Execution tools:': 'Execution tools:',
|
|
224
|
+
'Step {{n}}: Choose Background Color': 'Step {{n}}: Choose Background Color',
|
|
225
|
+
'Step {{n}}: Confirm and Save': 'Step {{n}}: Confirm and Save',
|
|
226
|
+
// Agents - Navigation & Instructions
|
|
227
|
+
'Esc to cancel': 'Esc to cancel',
|
|
228
|
+
'Press Enter to save, e to save and edit, Esc to go back':
|
|
229
|
+
'Press Enter to save, e to save and edit, Esc to go back',
|
|
230
|
+
'Press Enter to continue, {{navigation}}Esc to {{action}}':
|
|
231
|
+
'Press Enter to continue, {{navigation}}Esc to {{action}}',
|
|
232
|
+
cancel: 'cancel',
|
|
233
|
+
'go back': 'go back',
|
|
234
|
+
'↑↓ to navigate, ': '↑↓ to navigate, ',
|
|
235
|
+
'Enter a clear, unique name for this subagent.':
|
|
236
|
+
'Enter a clear, unique name for this subagent.',
|
|
237
|
+
'e.g., Code Reviewer': 'e.g., Code Reviewer',
|
|
238
|
+
'Name cannot be empty.': 'Name cannot be empty.',
|
|
239
|
+
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.":
|
|
240
|
+
"Write the system prompt that defines this subagent's behavior. Be comprehensive for best results.",
|
|
241
|
+
'e.g., You are an expert code reviewer...':
|
|
242
|
+
'e.g., You are an expert code reviewer...',
|
|
243
|
+
'System prompt cannot be empty.': 'System prompt cannot be empty.',
|
|
244
|
+
'Describe when and how this subagent should be used.':
|
|
245
|
+
'Describe when and how this subagent should be used.',
|
|
246
|
+
'e.g., Reviews code for best practices and potential bugs.':
|
|
247
|
+
'e.g., Reviews code for best practices and potential bugs.',
|
|
248
|
+
'Description cannot be empty.': 'Description cannot be empty.',
|
|
249
|
+
'Failed to launch editor: {{error}}': 'Failed to launch editor: {{error}}',
|
|
250
|
+
'Failed to save and edit subagent: {{error}}':
|
|
251
|
+
'Failed to save and edit subagent: {{error}}',
|
|
252
|
+
|
|
253
|
+
// ============================================================================
|
|
254
|
+
// Commands - General (continued)
|
|
255
|
+
// ============================================================================
|
|
256
|
+
'View and edit Hibana CLI settings': 'View and edit Hibana CLI settings',
|
|
257
|
+
Settings: 'Settings',
|
|
258
|
+
'(Use Enter to select{{tabText}})': '(Use Enter to select{{tabText}})',
|
|
259
|
+
', Tab to change focus': ', Tab to change focus',
|
|
260
|
+
'To see changes, Hibana CLI must be restarted. Press r to exit and apply changes now.':
|
|
261
|
+
'To see changes, Hibana CLI must be restarted. Press r to exit and apply changes now.',
|
|
262
|
+
// ============================================================================
|
|
263
|
+
// Settings Labels
|
|
264
|
+
// ============================================================================
|
|
265
|
+
'Vim Mode': 'Vim Mode',
|
|
266
|
+
'Disable Auto Update': 'Disable Auto Update',
|
|
267
|
+
'Enable Prompt Completion': 'Enable Prompt Completion',
|
|
268
|
+
'Debug Keystroke Logging': 'Debug Keystroke Logging',
|
|
269
|
+
Language: 'Language',
|
|
270
|
+
'Output Format': 'Output Format',
|
|
271
|
+
'Hide Window Title': 'Hide Window Title',
|
|
272
|
+
'Show Status in Title': 'Show Status in Title',
|
|
273
|
+
'Hide Tips': 'Hide Tips',
|
|
274
|
+
'Hide Banner': 'Hide Banner',
|
|
275
|
+
'Hide Context Summary': 'Hide Context Summary',
|
|
276
|
+
'Hide CWD': 'Hide CWD',
|
|
277
|
+
'Hide Sandbox Status': 'Hide Sandbox Status',
|
|
278
|
+
'Hide Model Info': 'Hide Model Info',
|
|
279
|
+
'Hide Footer': 'Hide Footer',
|
|
280
|
+
'Show Memory Usage': 'Show Memory Usage',
|
|
281
|
+
'Show Line Numbers': 'Show Line Numbers',
|
|
282
|
+
'Show Citations': 'Show Citations',
|
|
283
|
+
'Custom Witty Phrases': 'Custom Witty Phrases',
|
|
284
|
+
'Enable Welcome Back': 'Enable Welcome Back',
|
|
285
|
+
'Disable Loading Phrases': 'Disable Loading Phrases',
|
|
286
|
+
'Screen Reader Mode': 'Screen Reader Mode',
|
|
287
|
+
'IDE Mode': 'IDE Mode',
|
|
288
|
+
'Max Session Turns': 'Max Session Turns',
|
|
289
|
+
'Skip Next Speaker Check': 'Skip Next Speaker Check',
|
|
290
|
+
'Skip Loop Detection': 'Skip Loop Detection',
|
|
291
|
+
'Skip Startup Context': 'Skip Startup Context',
|
|
292
|
+
'Enable OpenAI Logging': 'Enable OpenAI Logging',
|
|
293
|
+
'OpenAI Logging Directory': 'OpenAI Logging Directory',
|
|
294
|
+
Timeout: 'Timeout',
|
|
295
|
+
'Max Retries': 'Max Retries',
|
|
296
|
+
'Disable Cache Control': 'Disable Cache Control',
|
|
297
|
+
'Memory Discovery Max Dirs': 'Memory Discovery Max Dirs',
|
|
298
|
+
'Load Memory From Include Directories':
|
|
299
|
+
'Load Memory From Include Directories',
|
|
300
|
+
'Respect .gitignore': 'Respect .gitignore',
|
|
301
|
+
'Respect .hibanaignore': 'Respect .hibanaignore',
|
|
302
|
+
'Enable Recursive File Search': 'Enable Recursive File Search',
|
|
303
|
+
'Disable Fuzzy Search': 'Disable Fuzzy Search',
|
|
304
|
+
'Enable Interactive Shell': 'Enable Interactive Shell',
|
|
305
|
+
'Show Color': 'Show Color',
|
|
306
|
+
'Auto Accept': 'Auto Accept',
|
|
307
|
+
'Use Ripgrep': 'Use Ripgrep',
|
|
308
|
+
'Use Builtin Ripgrep': 'Use Builtin Ripgrep',
|
|
309
|
+
'Enable Tool Output Truncation': 'Enable Tool Output Truncation',
|
|
310
|
+
'Tool Output Truncation Threshold': 'Tool Output Truncation Threshold',
|
|
311
|
+
'Tool Output Truncation Lines': 'Tool Output Truncation Lines',
|
|
312
|
+
'Folder Trust': 'Folder Trust',
|
|
313
|
+
'Vision Model Preview': 'Vision Model Preview',
|
|
314
|
+
// Settings enum options
|
|
315
|
+
'Auto (detect from system)': 'Auto (detect from system)',
|
|
316
|
+
Text: 'Text',
|
|
317
|
+
JSON: 'JSON',
|
|
318
|
+
Plan: 'Plan',
|
|
319
|
+
Default: 'Default',
|
|
320
|
+
'Auto Edit': 'Auto Edit',
|
|
321
|
+
YOLO: 'YOLO',
|
|
322
|
+
'toggle vim mode on/off': 'toggle vim mode on/off',
|
|
323
|
+
'check session stats. Usage: /stats [model|tools]':
|
|
324
|
+
'check session stats. Usage: /stats [model|tools]',
|
|
325
|
+
'Show model-specific usage statistics.':
|
|
326
|
+
'Show model-specific usage statistics.',
|
|
327
|
+
'Show tool-specific usage statistics.':
|
|
328
|
+
'Show tool-specific usage statistics.',
|
|
329
|
+
'exit the cli': 'exit the cli',
|
|
330
|
+
'list configured MCP servers and tools, or authenticate with OAuth-enabled servers':
|
|
331
|
+
'list configured MCP servers and tools, or authenticate with OAuth-enabled servers',
|
|
332
|
+
'Manage workspace directories': 'Manage workspace directories',
|
|
333
|
+
'Add directories to the workspace. Use comma to separate multiple paths':
|
|
334
|
+
'Add directories to the workspace. Use comma to separate multiple paths',
|
|
335
|
+
'Show all directories in the workspace':
|
|
336
|
+
'Show all directories in the workspace',
|
|
337
|
+
'set external editor preference': 'set external editor preference',
|
|
338
|
+
'Manage extensions': 'Manage extensions',
|
|
339
|
+
'List active extensions': 'List active extensions',
|
|
340
|
+
'Update extensions. Usage: update <extension-names>|--all':
|
|
341
|
+
'Update extensions. Usage: update <extension-names>|--all',
|
|
342
|
+
'manage IDE integration': 'manage IDE integration',
|
|
343
|
+
'check status of IDE integration': 'check status of IDE integration',
|
|
344
|
+
'install required IDE companion for {{ideName}}':
|
|
345
|
+
'install required IDE companion for {{ideName}}',
|
|
346
|
+
'enable IDE integration': 'enable IDE integration',
|
|
347
|
+
'disable IDE integration': 'disable IDE integration',
|
|
348
|
+
'IDE integration is not supported in your current environment. To use this feature, run Hibana CLI in one of these supported IDEs: VS Code or VS Code forks.':
|
|
349
|
+
'IDE integration is not supported in your current environment. To use this feature, run Hibana CLI in one of these supported IDEs: VS Code or VS Code forks.',
|
|
350
|
+
'Set up GitHub Actions': 'Set up GitHub Actions',
|
|
351
|
+
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)':
|
|
352
|
+
'Configure terminal keybindings for multiline input (VS Code, Cursor, Windsurf, Trae)',
|
|
353
|
+
'Please restart your terminal for the changes to take effect.':
|
|
354
|
+
'Please restart your terminal for the changes to take effect.',
|
|
355
|
+
'Failed to configure terminal: {{error}}':
|
|
356
|
+
'Failed to configure terminal: {{error}}',
|
|
357
|
+
'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.':
|
|
358
|
+
'Could not determine {{terminalName}} config path on Windows: APPDATA environment variable is not set.',
|
|
359
|
+
'{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.':
|
|
360
|
+
'{{terminalName}} keybindings.json exists but is not a valid JSON array. Please fix the file manually or delete it to allow automatic configuration.',
|
|
361
|
+
'File: {{file}}': 'File: {{file}}',
|
|
362
|
+
'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.':
|
|
363
|
+
'Failed to parse {{terminalName}} keybindings.json. The file contains invalid JSON. Please fix the file manually or delete it to allow automatic configuration.',
|
|
364
|
+
'Error: {{error}}': 'Error: {{error}}',
|
|
365
|
+
'Shift+Enter binding already exists': 'Shift+Enter binding already exists',
|
|
366
|
+
'Ctrl+Enter binding already exists': 'Ctrl+Enter binding already exists',
|
|
367
|
+
'Existing keybindings detected. Will not modify to avoid conflicts.':
|
|
368
|
+
'Existing keybindings detected. Will not modify to avoid conflicts.',
|
|
369
|
+
'Please check and modify manually if needed: {{file}}':
|
|
370
|
+
'Please check and modify manually if needed: {{file}}',
|
|
371
|
+
'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.':
|
|
372
|
+
'Added Shift+Enter and Ctrl+Enter keybindings to {{terminalName}}.',
|
|
373
|
+
'Modified: {{file}}': 'Modified: {{file}}',
|
|
374
|
+
'{{terminalName}} keybindings already configured.':
|
|
375
|
+
'{{terminalName}} keybindings already configured.',
|
|
376
|
+
'Failed to configure {{terminalName}}.':
|
|
377
|
+
'Failed to configure {{terminalName}}.',
|
|
378
|
+
'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).':
|
|
379
|
+
'Your terminal is already configured for an optimal experience with multiline input (Shift+Enter and Ctrl+Enter).',
|
|
380
|
+
'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.':
|
|
381
|
+
'Could not detect terminal type. Supported terminals: VS Code, Cursor, Windsurf, and Trae.',
|
|
382
|
+
'Terminal "{{terminal}}" is not supported yet.':
|
|
383
|
+
'Terminal "{{terminal}}" is not supported yet.',
|
|
384
|
+
|
|
385
|
+
// ============================================================================
|
|
386
|
+
// Commands - Language
|
|
387
|
+
// ============================================================================
|
|
388
|
+
'Invalid language. Available: en-US, zh-CN':
|
|
389
|
+
'Invalid language. Available: en-US, zh-CN',
|
|
390
|
+
'Language subcommands do not accept additional arguments.':
|
|
391
|
+
'Language subcommands do not accept additional arguments.',
|
|
392
|
+
'Current UI language: {{lang}}': 'Current UI language: {{lang}}',
|
|
393
|
+
'Current LLM output language: {{lang}}':
|
|
394
|
+
'Current LLM output language: {{lang}}',
|
|
395
|
+
'LLM output language not set': 'LLM output language not set',
|
|
396
|
+
'Set UI language': 'Set UI language',
|
|
397
|
+
'Set LLM output language': 'Set LLM output language',
|
|
398
|
+
'Usage: /language ui [zh-CN|en-US]': 'Usage: /language ui [zh-CN|en-US]',
|
|
399
|
+
'Usage: /language output <language>': 'Usage: /language output <language>',
|
|
400
|
+
'Example: /language output 中文': 'Example: /language output 中文',
|
|
401
|
+
'Example: /language output English': 'Example: /language output English',
|
|
402
|
+
'Example: /language output 日本語': 'Example: /language output 日本語',
|
|
403
|
+
'UI language changed to {{lang}}': 'UI language changed to {{lang}}',
|
|
404
|
+
'LLM output language rule file generated at {{path}}':
|
|
405
|
+
'LLM output language rule file generated at {{path}}',
|
|
406
|
+
'Please restart the application for the changes to take effect.':
|
|
407
|
+
'Please restart the application for the changes to take effect.',
|
|
408
|
+
'Failed to generate LLM output language rule file: {{error}}':
|
|
409
|
+
'Failed to generate LLM output language rule file: {{error}}',
|
|
410
|
+
'Invalid command. Available subcommands:':
|
|
411
|
+
'Invalid command. Available subcommands:',
|
|
412
|
+
'Available subcommands:': 'Available subcommands:',
|
|
413
|
+
'To request additional UI language packs, please open an issue on GitHub.':
|
|
414
|
+
'To request additional UI language packs, please open an issue on GitHub.',
|
|
415
|
+
'Available options:': 'Available options:',
|
|
416
|
+
' - zh-CN: Simplified Chinese': ' - zh-CN: Simplified Chinese',
|
|
417
|
+
' - en-US: English': ' - en-US: English',
|
|
418
|
+
'Set UI language to Simplified Chinese (zh-CN)':
|
|
419
|
+
'Set UI language to Simplified Chinese (zh-CN)',
|
|
420
|
+
'Set UI language to English (en-US)': 'Set UI language to English (en-US)',
|
|
421
|
+
|
|
422
|
+
// ============================================================================
|
|
423
|
+
// Commands - Approval Mode
|
|
424
|
+
// ============================================================================
|
|
425
|
+
'Approval Mode': 'Approval Mode',
|
|
426
|
+
'Current approval mode: {{mode}}': 'Current approval mode: {{mode}}',
|
|
427
|
+
'Available approval modes:': 'Available approval modes:',
|
|
428
|
+
'Approval mode changed to: {{mode}}': 'Approval mode changed to: {{mode}}',
|
|
429
|
+
'Approval mode changed to: {{mode}} (saved to {{scope}} settings{{location}})':
|
|
430
|
+
'Approval mode changed to: {{mode}} (saved to {{scope}} settings{{location}})',
|
|
431
|
+
'Usage: /approval-mode <mode> [--session|--user|--project]':
|
|
432
|
+
'Usage: /approval-mode <mode> [--session|--user|--project]',
|
|
433
|
+
|
|
434
|
+
'Scope subcommands do not accept additional arguments.':
|
|
435
|
+
'Scope subcommands do not accept additional arguments.',
|
|
436
|
+
'Plan mode - Analyze only, do not modify files or execute commands':
|
|
437
|
+
'Plan mode - Analyze only, do not modify files or execute commands',
|
|
438
|
+
'Default mode - Require approval for file edits or shell commands':
|
|
439
|
+
'Default mode - Require approval for file edits or shell commands',
|
|
440
|
+
'Auto-edit mode - Automatically approve file edits':
|
|
441
|
+
'Auto-edit mode - Automatically approve file edits',
|
|
442
|
+
'YOLO mode - Automatically approve all tools':
|
|
443
|
+
'YOLO mode - Automatically approve all tools',
|
|
444
|
+
'{{mode}} mode': '{{mode}} mode',
|
|
445
|
+
'Settings service is not available; unable to persist the approval mode.':
|
|
446
|
+
'Settings service is not available; unable to persist the approval mode.',
|
|
447
|
+
'Failed to save approval mode: {{error}}':
|
|
448
|
+
'Failed to save approval mode: {{error}}',
|
|
449
|
+
'Failed to change approval mode: {{error}}':
|
|
450
|
+
'Failed to change approval mode: {{error}}',
|
|
451
|
+
'Apply to current session only (temporary)':
|
|
452
|
+
'Apply to current session only (temporary)',
|
|
453
|
+
'Persist for this project/workspace': 'Persist for this project/workspace',
|
|
454
|
+
'Persist for this user on this machine':
|
|
455
|
+
'Persist for this user on this machine',
|
|
456
|
+
'Analyze only, do not modify files or execute commands':
|
|
457
|
+
'Analyze only, do not modify files or execute commands',
|
|
458
|
+
'Require approval for file edits or shell commands':
|
|
459
|
+
'Require approval for file edits or shell commands',
|
|
460
|
+
'Automatically approve file edits': 'Automatically approve file edits',
|
|
461
|
+
'Automatically approve all tools': 'Automatically approve all tools',
|
|
462
|
+
'Workspace approval mode exists and takes priority. User-level change will have no effect.':
|
|
463
|
+
'Workspace approval mode exists and takes priority. User-level change will have no effect.',
|
|
464
|
+
'(Use Enter to select, Tab to change focus)':
|
|
465
|
+
'(Use Enter to select, Tab to change focus)',
|
|
466
|
+
'Apply To': 'Apply To',
|
|
467
|
+
'User Settings': 'User Settings',
|
|
468
|
+
'Workspace Settings': 'Workspace Settings',
|
|
469
|
+
|
|
470
|
+
// ============================================================================
|
|
471
|
+
// Commands - Memory
|
|
472
|
+
// ============================================================================
|
|
473
|
+
'Commands for interacting with memory.':
|
|
474
|
+
'Commands for interacting with memory.',
|
|
475
|
+
'Show the current memory contents.': 'Show the current memory contents.',
|
|
476
|
+
'Show project-level memory contents.': 'Show project-level memory contents.',
|
|
477
|
+
'Show global memory contents.': 'Show global memory contents.',
|
|
478
|
+
'Add content to project-level memory.':
|
|
479
|
+
'Add content to project-level memory.',
|
|
480
|
+
'Add content to global memory.': 'Add content to global memory.',
|
|
481
|
+
'Refresh the memory from the source.': 'Refresh the memory from the source.',
|
|
482
|
+
'Usage: /memory add --project <text to remember>':
|
|
483
|
+
'Usage: /memory add --project <text to remember>',
|
|
484
|
+
'Usage: /memory add --global <text to remember>':
|
|
485
|
+
'Usage: /memory add --global <text to remember>',
|
|
486
|
+
'Attempting to save to project memory: "{{text}}"':
|
|
487
|
+
'Attempting to save to project memory: "{{text}}"',
|
|
488
|
+
'Attempting to save to global memory: "{{text}}"':
|
|
489
|
+
'Attempting to save to global memory: "{{text}}"',
|
|
490
|
+
'Current memory content from {{count}} file(s):':
|
|
491
|
+
'Current memory content from {{count}} file(s):',
|
|
492
|
+
'Memory is currently empty.': 'Memory is currently empty.',
|
|
493
|
+
'Project memory file not found or is currently empty.':
|
|
494
|
+
'Project memory file not found or is currently empty.',
|
|
495
|
+
'Global memory file not found or is currently empty.':
|
|
496
|
+
'Global memory file not found or is currently empty.',
|
|
497
|
+
'Global memory is currently empty.': 'Global memory is currently empty.',
|
|
498
|
+
'Global memory content:\n\n---\n{{content}}\n---':
|
|
499
|
+
'Global memory content:\n\n---\n{{content}}\n---',
|
|
500
|
+
'Project memory content from {{path}}:\n\n---\n{{content}}\n---':
|
|
501
|
+
'Project memory content from {{path}}:\n\n---\n{{content}}\n---',
|
|
502
|
+
'Project memory is currently empty.': 'Project memory is currently empty.',
|
|
503
|
+
'Refreshing memory from source files...':
|
|
504
|
+
'Refreshing memory from source files...',
|
|
505
|
+
'Add content to the memory. Use --global for global memory or --project for project memory.':
|
|
506
|
+
'Add content to the memory. Use --global for global memory or --project for project memory.',
|
|
507
|
+
'Usage: /memory add [--global|--project] <text to remember>':
|
|
508
|
+
'Usage: /memory add [--global|--project] <text to remember>',
|
|
509
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
510
|
+
'Attempting to save to memory {{scope}}: "{{fact}}"',
|
|
511
|
+
|
|
512
|
+
// ============================================================================
|
|
513
|
+
// Commands - MCP
|
|
514
|
+
// ============================================================================
|
|
515
|
+
'Authenticate with an OAuth-enabled MCP server':
|
|
516
|
+
'Authenticate with an OAuth-enabled MCP server',
|
|
517
|
+
'List configured MCP servers and tools':
|
|
518
|
+
'List configured MCP servers and tools',
|
|
519
|
+
'Restarts MCP servers.': 'Restarts MCP servers.',
|
|
520
|
+
'Config not loaded.': 'Config not loaded.',
|
|
521
|
+
'Could not retrieve tool registry.': 'Could not retrieve tool registry.',
|
|
522
|
+
'No MCP servers configured with OAuth authentication.':
|
|
523
|
+
'No MCP servers configured with OAuth authentication.',
|
|
524
|
+
'MCP servers with OAuth authentication:':
|
|
525
|
+
'MCP servers with OAuth authentication:',
|
|
526
|
+
'Use /mcp auth <server-name> to authenticate.':
|
|
527
|
+
'Use /mcp auth <server-name> to authenticate.',
|
|
528
|
+
"MCP server '{{name}}' not found.": "MCP server '{{name}}' not found.",
|
|
529
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.":
|
|
530
|
+
"Successfully authenticated and refreshed tools for '{{name}}'.",
|
|
531
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}":
|
|
532
|
+
"Failed to authenticate with MCP server '{{name}}': {{error}}",
|
|
533
|
+
"Re-discovering tools from '{{name}}'...":
|
|
534
|
+
"Re-discovering tools from '{{name}}'...",
|
|
535
|
+
|
|
536
|
+
// ============================================================================
|
|
537
|
+
// Commands - Chat
|
|
538
|
+
// ============================================================================
|
|
539
|
+
'Manage conversation history.': 'Manage conversation history.',
|
|
540
|
+
'List saved conversation checkpoints': 'List saved conversation checkpoints',
|
|
541
|
+
'No saved conversation checkpoints found.':
|
|
542
|
+
'No saved conversation checkpoints found.',
|
|
543
|
+
'List of saved conversations:': 'List of saved conversations:',
|
|
544
|
+
'Note: Newest last, oldest first': 'Note: Newest last, oldest first',
|
|
545
|
+
'Save the current conversation as a checkpoint. Usage: /chat save <tag>':
|
|
546
|
+
'Save the current conversation as a checkpoint. Usage: /chat save <tag>',
|
|
547
|
+
'Missing tag. Usage: /chat save <tag>':
|
|
548
|
+
'Missing tag. Usage: /chat save <tag>',
|
|
549
|
+
'Delete a conversation checkpoint. Usage: /chat delete <tag>':
|
|
550
|
+
'Delete a conversation checkpoint. Usage: /chat delete <tag>',
|
|
551
|
+
'Missing tag. Usage: /chat delete <tag>':
|
|
552
|
+
'Missing tag. Usage: /chat delete <tag>',
|
|
553
|
+
"Conversation checkpoint '{{tag}}' has been deleted.":
|
|
554
|
+
"Conversation checkpoint '{{tag}}' has been deleted.",
|
|
555
|
+
"Error: No checkpoint found with tag '{{tag}}'.":
|
|
556
|
+
"Error: No checkpoint found with tag '{{tag}}'.",
|
|
557
|
+
'Resume a conversation from a checkpoint. Usage: /chat resume <tag>':
|
|
558
|
+
'Resume a conversation from a checkpoint. Usage: /chat resume <tag>',
|
|
559
|
+
'Missing tag. Usage: /chat resume <tag>':
|
|
560
|
+
'Missing tag. Usage: /chat resume <tag>',
|
|
561
|
+
'No saved checkpoint found with tag: {{tag}}.':
|
|
562
|
+
'No saved checkpoint found with tag: {{tag}}.',
|
|
563
|
+
'A checkpoint with the tag {{tag}} already exists. Do you want to overwrite it?':
|
|
564
|
+
'A checkpoint with the tag {{tag}} already exists. Do you want to overwrite it?',
|
|
565
|
+
'No chat client available to save conversation.':
|
|
566
|
+
'No chat client available to save conversation.',
|
|
567
|
+
'Conversation checkpoint saved with tag: {{tag}}.':
|
|
568
|
+
'Conversation checkpoint saved with tag: {{tag}}.',
|
|
569
|
+
'No conversation found to save.': 'No conversation found to save.',
|
|
570
|
+
'No chat client available to share conversation.':
|
|
571
|
+
'No chat client available to share conversation.',
|
|
572
|
+
'Invalid file format. Only .md and .json are supported.':
|
|
573
|
+
'Invalid file format. Only .md and .json are supported.',
|
|
574
|
+
'Error sharing conversation: {{error}}':
|
|
575
|
+
'Error sharing conversation: {{error}}',
|
|
576
|
+
'Conversation shared to {{filePath}}': 'Conversation shared to {{filePath}}',
|
|
577
|
+
'No conversation found to share.': 'No conversation found to share.',
|
|
578
|
+
'Share the current conversation to a markdown or json file. Usage: /chat share <file>':
|
|
579
|
+
'Share the current conversation to a markdown or json file. Usage: /chat share <file>',
|
|
580
|
+
|
|
581
|
+
// ============================================================================
|
|
582
|
+
// Commands - Summary
|
|
583
|
+
// ============================================================================
|
|
584
|
+
'Generate a project summary and save it to .hibana/PROJECT_SUMMARY.md':
|
|
585
|
+
'Generate a project summary and save it to .hibana/PROJECT_SUMMARY.md',
|
|
586
|
+
'No chat client available to generate summary.':
|
|
587
|
+
'No chat client available to generate summary.',
|
|
588
|
+
'Already generating summary, wait for previous request to complete':
|
|
589
|
+
'Already generating summary, wait for previous request to complete',
|
|
590
|
+
'No conversation found to summarize.': 'No conversation found to summarize.',
|
|
591
|
+
'Failed to generate project context summary: {{error}}':
|
|
592
|
+
'Failed to generate project context summary: {{error}}',
|
|
593
|
+
|
|
594
|
+
// ============================================================================
|
|
595
|
+
// Commands - Model
|
|
596
|
+
// ============================================================================
|
|
597
|
+
'Switch the model for this session': 'Switch the model for this session',
|
|
598
|
+
'Content generator configuration not available.':
|
|
599
|
+
'Content generator configuration not available.',
|
|
600
|
+
'Authentication type not available.': 'Authentication type not available.',
|
|
601
|
+
'No models available for the current authentication type ({{authType}}).':
|
|
602
|
+
'No models available for the current authentication type ({{authType}}).',
|
|
603
|
+
|
|
604
|
+
// ============================================================================
|
|
605
|
+
// Commands - Clear
|
|
606
|
+
// ============================================================================
|
|
607
|
+
'Clearing terminal and resetting chat.':
|
|
608
|
+
'Clearing terminal and resetting chat.',
|
|
609
|
+
'Clearing terminal.': 'Clearing terminal.',
|
|
610
|
+
|
|
611
|
+
// ============================================================================
|
|
612
|
+
// Commands - Compress
|
|
613
|
+
// ============================================================================
|
|
614
|
+
'Already compressing, wait for previous request to complete':
|
|
615
|
+
'Already compressing, wait for previous request to complete',
|
|
616
|
+
'Failed to compress chat history.': 'Failed to compress chat history.',
|
|
617
|
+
'Failed to compress chat history: {{error}}':
|
|
618
|
+
'Failed to compress chat history: {{error}}',
|
|
619
|
+
'Compressing chat history': 'Compressing chat history',
|
|
620
|
+
'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.':
|
|
621
|
+
'Chat history compressed from {{originalTokens}} to {{newTokens}} tokens.',
|
|
622
|
+
'Compression was not beneficial for this history size.':
|
|
623
|
+
'Compression was not beneficial for this history size.',
|
|
624
|
+
'Chat history compression did not reduce size. This may indicate issues with the compression prompt.':
|
|
625
|
+
'Chat history compression did not reduce size. This may indicate issues with the compression prompt.',
|
|
626
|
+
'Could not compress chat history due to a token counting error.':
|
|
627
|
+
'Could not compress chat history due to a token counting error.',
|
|
628
|
+
'Chat history is already compressed.': 'Chat history is already compressed.',
|
|
629
|
+
|
|
630
|
+
// ============================================================================
|
|
631
|
+
// Commands - Directory
|
|
632
|
+
// ============================================================================
|
|
633
|
+
'Configuration is not available.': 'Configuration is not available.',
|
|
634
|
+
'Please provide at least one path to add.':
|
|
635
|
+
'Please provide at least one path to add.',
|
|
636
|
+
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.':
|
|
637
|
+
'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.',
|
|
638
|
+
"Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}",
|
|
639
|
+
'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}':
|
|
640
|
+
'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}',
|
|
641
|
+
'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}',
|
|
642
|
+
'Successfully added directories:\n- {{directories}}':
|
|
643
|
+
'Successfully added directories:\n- {{directories}}',
|
|
644
|
+
'Current workspace directories:\n{{directories}}':
|
|
645
|
+
'Current workspace directories:\n{{directories}}',
|
|
646
|
+
|
|
647
|
+
// ============================================================================
|
|
648
|
+
// Commands - Docs
|
|
649
|
+
// ============================================================================
|
|
650
|
+
'Please open the following URL in your browser to view the documentation:\n{{url}}':
|
|
651
|
+
'Please open the following URL in your browser to view the documentation:\n{{url}}',
|
|
652
|
+
'Opening documentation in your browser: {{url}}':
|
|
653
|
+
'Opening documentation in your browser: {{url}}',
|
|
654
|
+
|
|
655
|
+
// ============================================================================
|
|
656
|
+
// Dialogs - Tool Confirmation
|
|
657
|
+
// ============================================================================
|
|
658
|
+
'Do you want to proceed?': 'Do you want to proceed?',
|
|
659
|
+
'Yes, allow once': 'Yes, allow once',
|
|
660
|
+
'Allow always': 'Allow always',
|
|
661
|
+
No: 'No',
|
|
662
|
+
'No (esc)': 'No (esc)',
|
|
663
|
+
'Yes, allow always for this session': 'Yes, allow always for this session',
|
|
664
|
+
'Modify in progress:': 'Modify in progress:',
|
|
665
|
+
'Save and close external editor to continue':
|
|
666
|
+
'Save and close external editor to continue',
|
|
667
|
+
'Apply this change?': 'Apply this change?',
|
|
668
|
+
'Yes, allow always': 'Yes, allow always',
|
|
669
|
+
'Modify with external editor': 'Modify with external editor',
|
|
670
|
+
'No, suggest changes (esc)': 'No, suggest changes (esc)',
|
|
671
|
+
"Allow execution of: '{{command}}'?": "Allow execution of: '{{command}}'?",
|
|
672
|
+
'Yes, allow always ...': 'Yes, allow always ...',
|
|
673
|
+
'Yes, and auto-accept edits': 'Yes, and auto-accept edits',
|
|
674
|
+
'Yes, and manually approve edits': 'Yes, and manually approve edits',
|
|
675
|
+
'No, keep planning (esc)': 'No, keep planning (esc)',
|
|
676
|
+
'URLs to fetch:': 'URLs to fetch:',
|
|
677
|
+
'MCP Server: {{server}}': 'MCP Server: {{server}}',
|
|
678
|
+
'Tool: {{tool}}': 'Tool: {{tool}}',
|
|
679
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?':
|
|
680
|
+
'Allow execution of MCP tool "{{tool}}" from server "{{server}}"?',
|
|
681
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"':
|
|
682
|
+
'Yes, always allow tool "{{tool}}" from server "{{server}}"',
|
|
683
|
+
'Yes, always allow all tools from server "{{server}}"':
|
|
684
|
+
'Yes, always allow all tools from server "{{server}}"',
|
|
685
|
+
|
|
686
|
+
// ============================================================================
|
|
687
|
+
// Dialogs - Shell Confirmation
|
|
688
|
+
// ============================================================================
|
|
689
|
+
'Shell Command Execution': 'Shell Command Execution',
|
|
690
|
+
'A custom command wants to run the following shell commands:':
|
|
691
|
+
'A custom command wants to run the following shell commands:',
|
|
692
|
+
|
|
693
|
+
// ============================================================================
|
|
694
|
+
// Dialogs - Quit Confirmation
|
|
695
|
+
// ============================================================================
|
|
696
|
+
'What would you like to do before exiting?':
|
|
697
|
+
'What would you like to do before exiting?',
|
|
698
|
+
'Quit immediately (/quit)': 'Quit immediately (/quit)',
|
|
699
|
+
'Generate summary and quit (/summary)':
|
|
700
|
+
'Generate summary and quit (/summary)',
|
|
701
|
+
'Save conversation and quit (/chat save)':
|
|
702
|
+
'Save conversation and quit (/chat save)',
|
|
703
|
+
'Cancel (stay in application)': 'Cancel (stay in application)',
|
|
704
|
+
|
|
705
|
+
// ============================================================================
|
|
706
|
+
// Dialogs - Pro Quota
|
|
707
|
+
// ============================================================================
|
|
708
|
+
'Pro quota limit reached for {{model}}.':
|
|
709
|
+
'Pro quota limit reached for {{model}}.',
|
|
710
|
+
'Change auth (executes the /auth command)':
|
|
711
|
+
'Change auth (executes the /auth command)',
|
|
712
|
+
'Continue with {{model}}': 'Continue with {{model}}',
|
|
713
|
+
|
|
714
|
+
// ============================================================================
|
|
715
|
+
// Dialogs - Welcome Back
|
|
716
|
+
// ============================================================================
|
|
717
|
+
'Current Plan:': 'Current Plan:',
|
|
718
|
+
'Progress: {{done}}/{{total}} tasks completed':
|
|
719
|
+
'Progress: {{done}}/{{total}} tasks completed',
|
|
720
|
+
', {{inProgress}} in progress': ', {{inProgress}} in progress',
|
|
721
|
+
'Pending Tasks:': 'Pending Tasks:',
|
|
722
|
+
'What would you like to do?': 'What would you like to do?',
|
|
723
|
+
'Choose how to proceed with your session:':
|
|
724
|
+
'Choose how to proceed with your session:',
|
|
725
|
+
'Start new chat session': 'Start new chat session',
|
|
726
|
+
'Continue previous conversation': 'Continue previous conversation',
|
|
727
|
+
'👋 Welcome back! (Last updated: {{timeAgo}})':
|
|
728
|
+
'👋 Welcome back! (Last updated: {{timeAgo}})',
|
|
729
|
+
'🎯 Overall Goal:': '🎯 Overall Goal:',
|
|
730
|
+
|
|
731
|
+
// ============================================================================
|
|
732
|
+
// Dialogs - Auth
|
|
733
|
+
// ============================================================================
|
|
734
|
+
'Get started': 'Get started',
|
|
735
|
+
'How would you like to authenticate for this project?':
|
|
736
|
+
'How would you like to authenticate for this project?',
|
|
737
|
+
'OpenAI API key is required to use OpenAI authentication.':
|
|
738
|
+
'OpenAI API key is required to use OpenAI authentication.',
|
|
739
|
+
'You must select an auth method to proceed. Press Ctrl+C again to exit.':
|
|
740
|
+
'You must select an auth method to proceed. Press Ctrl+C again to exit.',
|
|
741
|
+
'(Use Enter to Set Auth)': '(Use Enter to Set Auth)',
|
|
742
|
+
'Terms of Services and Privacy Notice for Hibana CLI':
|
|
743
|
+
'Terms of Services and Privacy Notice for Hibana CLI',
|
|
744
|
+
'Qwen OAuth': 'Qwen OAuth',
|
|
745
|
+
OpenAI: 'OpenAI',
|
|
746
|
+
'Failed to login. Message: {{message}}':
|
|
747
|
+
'Failed to login. Message: {{message}}',
|
|
748
|
+
'Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.':
|
|
749
|
+
'Authentication is enforced to be {{enforcedType}}, but you are currently using {{currentType}}.',
|
|
750
|
+
'Qwen OAuth authentication timed out. Please try again.':
|
|
751
|
+
'Qwen OAuth authentication timed out. Please try again.',
|
|
752
|
+
'Qwen OAuth authentication cancelled.':
|
|
753
|
+
'Qwen OAuth authentication cancelled.',
|
|
754
|
+
'Qwen OAuth Authentication': 'Qwen OAuth Authentication',
|
|
755
|
+
'Please visit this URL to authorize:': 'Please visit this URL to authorize:',
|
|
756
|
+
'Or scan the QR code below:': 'Or scan the QR code below:',
|
|
757
|
+
'Waiting for authorization': 'Waiting for authorization',
|
|
758
|
+
'Time remaining:': 'Time remaining:',
|
|
759
|
+
'(Press ESC or CTRL+C to cancel)': '(Press ESC or CTRL+C to cancel)',
|
|
760
|
+
'Qwen OAuth Authentication Timeout': 'Qwen OAuth Authentication Timeout',
|
|
761
|
+
'OAuth token expired (over {{seconds}} seconds). Please select authentication method again.':
|
|
762
|
+
'OAuth token expired (over {{seconds}} seconds). Please select authentication method again.',
|
|
763
|
+
'Press any key to return to authentication type selection.':
|
|
764
|
+
'Press any key to return to authentication type selection.',
|
|
765
|
+
'Waiting for Qwen OAuth authentication...':
|
|
766
|
+
'Waiting for Qwen OAuth authentication...',
|
|
767
|
+
'Note: Your existing API key in settings.json will not be cleared when using Qwen OAuth. You can switch back to OpenAI authentication later if needed.':
|
|
768
|
+
'Note: Your existing API key in settings.json will not be cleared when using Qwen OAuth. You can switch back to OpenAI authentication later if needed.',
|
|
769
|
+
'Authentication timed out. Please try again.':
|
|
770
|
+
'Authentication timed out. Please try again.',
|
|
771
|
+
'Waiting for auth... (Press ESC or CTRL+C to cancel)':
|
|
772
|
+
'Waiting for auth... (Press ESC or CTRL+C to cancel)',
|
|
773
|
+
'Failed to authenticate. Message: {{message}}':
|
|
774
|
+
'Failed to authenticate. Message: {{message}}',
|
|
775
|
+
'Authenticated successfully with {{authType}} credentials.':
|
|
776
|
+
'Authenticated successfully with {{authType}} credentials.',
|
|
777
|
+
'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}':
|
|
778
|
+
'Invalid QWEN_DEFAULT_AUTH_TYPE value: "{{value}}". Valid values are: {{validValues}}',
|
|
779
|
+
'OpenAI Configuration Required': 'OpenAI Configuration Required',
|
|
780
|
+
'Please enter your OpenAI configuration. You can get an API key from':
|
|
781
|
+
'Please enter your OpenAI configuration. You can get an API key from',
|
|
782
|
+
'API Key:': 'API Key:',
|
|
783
|
+
'Invalid credentials: {{errorMessage}}':
|
|
784
|
+
'Invalid credentials: {{errorMessage}}',
|
|
785
|
+
'Failed to validate credentials': 'Failed to validate credentials',
|
|
786
|
+
'Press Enter to continue, Tab/↑↓ to navigate, Esc to cancel':
|
|
787
|
+
'Press Enter to continue, Tab/↑↓ to navigate, Esc to cancel',
|
|
788
|
+
|
|
789
|
+
// ============================================================================
|
|
790
|
+
// Dialogs - Model
|
|
791
|
+
// ============================================================================
|
|
792
|
+
'Select Model': 'Select Model',
|
|
793
|
+
'(Press Esc to close)': '(Press Esc to close)',
|
|
794
|
+
'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)':
|
|
795
|
+
'The latest Qwen Coder model from Alibaba Cloud ModelStudio (version: qwen3-coder-plus-2025-09-23)',
|
|
796
|
+
'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)':
|
|
797
|
+
'The latest Qwen Vision model from Alibaba Cloud ModelStudio (version: qwen3-vl-plus-2025-09-23)',
|
|
798
|
+
|
|
799
|
+
// ============================================================================
|
|
800
|
+
// Dialogs - Permissions
|
|
801
|
+
// ============================================================================
|
|
802
|
+
'Manage folder trust settings': 'Manage folder trust settings',
|
|
803
|
+
|
|
804
|
+
// ============================================================================
|
|
805
|
+
// Status Bar
|
|
806
|
+
// ============================================================================
|
|
807
|
+
'Using:': 'Using:',
|
|
808
|
+
'{{count}} open file': '{{count}} open file',
|
|
809
|
+
'{{count}} open files': '{{count}} open files',
|
|
810
|
+
'(ctrl+g to view)': '(ctrl+g to view)',
|
|
811
|
+
'{{count}} {{name}} file': '{{count}} {{name}} file',
|
|
812
|
+
'{{count}} {{name}} files': '{{count}} {{name}} files',
|
|
813
|
+
'{{count}} MCP server': '{{count}} MCP server',
|
|
814
|
+
'{{count}} MCP servers': '{{count}} MCP servers',
|
|
815
|
+
'{{count}} Blocked': '{{count}} Blocked',
|
|
816
|
+
'(ctrl+t to view)': '(ctrl+t to view)',
|
|
817
|
+
'(ctrl+t to toggle)': '(ctrl+t to toggle)',
|
|
818
|
+
'Press Ctrl+C again to exit.': 'Press Ctrl+C again to exit.',
|
|
819
|
+
'Press Ctrl+D again to exit.': 'Press Ctrl+D again to exit.',
|
|
820
|
+
'Press Esc again to clear.': 'Press Esc again to clear.',
|
|
821
|
+
|
|
822
|
+
// ============================================================================
|
|
823
|
+
// MCP Status
|
|
824
|
+
// ============================================================================
|
|
825
|
+
'No MCP servers configured.': 'No MCP servers configured.',
|
|
826
|
+
'Please view MCP documentation in your browser:':
|
|
827
|
+
'Please view MCP documentation in your browser:',
|
|
828
|
+
'or use the cli /docs command': 'or use the cli /docs command',
|
|
829
|
+
'⏳ MCP servers are starting up ({{count}} initializing)...':
|
|
830
|
+
'⏳ MCP servers are starting up ({{count}} initializing)...',
|
|
831
|
+
'Note: First startup may take longer. Tool availability will update automatically.':
|
|
832
|
+
'Note: First startup may take longer. Tool availability will update automatically.',
|
|
833
|
+
'Configured MCP servers:': 'Configured MCP servers:',
|
|
834
|
+
Ready: 'Ready',
|
|
835
|
+
'Starting... (first startup may take longer)':
|
|
836
|
+
'Starting... (first startup may take longer)',
|
|
837
|
+
Disconnected: 'Disconnected',
|
|
838
|
+
'{{count}} tool': '{{count}} tool',
|
|
839
|
+
'{{count}} tools': '{{count}} tools',
|
|
840
|
+
'{{count}} prompt': '{{count}} prompt',
|
|
841
|
+
'{{count}} prompts': '{{count}} prompts',
|
|
842
|
+
'(from {{extensionName}})': '(from {{extensionName}})',
|
|
843
|
+
OAuth: 'OAuth',
|
|
844
|
+
'OAuth expired': 'OAuth expired',
|
|
845
|
+
'OAuth not authenticated': 'OAuth not authenticated',
|
|
846
|
+
'tools and prompts will appear when ready':
|
|
847
|
+
'tools and prompts will appear when ready',
|
|
848
|
+
'{{count}} tools cached': '{{count}} tools cached',
|
|
849
|
+
'Tools:': 'Tools:',
|
|
850
|
+
'Parameters:': 'Parameters:',
|
|
851
|
+
'Prompts:': 'Prompts:',
|
|
852
|
+
Blocked: 'Blocked',
|
|
853
|
+
'💡 Tips:': '💡 Tips:',
|
|
854
|
+
Use: 'Use',
|
|
855
|
+
'to show server and tool descriptions':
|
|
856
|
+
'to show server and tool descriptions',
|
|
857
|
+
'to show tool parameter schemas': 'to show tool parameter schemas',
|
|
858
|
+
'to hide descriptions': 'to hide descriptions',
|
|
859
|
+
'to authenticate with OAuth-enabled servers':
|
|
860
|
+
'to authenticate with OAuth-enabled servers',
|
|
861
|
+
Press: 'Press',
|
|
862
|
+
'to toggle tool descriptions on/off': 'to toggle tool descriptions on/off',
|
|
863
|
+
"Starting OAuth authentication for MCP server '{{name}}'...":
|
|
864
|
+
"Starting OAuth authentication for MCP server '{{name}}'...",
|
|
865
|
+
'Restarting MCP servers...': 'Restarting MCP servers...',
|
|
866
|
+
|
|
867
|
+
// ============================================================================
|
|
868
|
+
// Startup Tips
|
|
869
|
+
// ============================================================================
|
|
870
|
+
'Tips for getting started:': 'Tips for getting started:',
|
|
871
|
+
'1. Ask questions, edit files, or run commands.':
|
|
872
|
+
'1. Ask questions, edit files, or run commands.',
|
|
873
|
+
'2. Be specific for the best results.':
|
|
874
|
+
'2. Be specific for the best results.',
|
|
875
|
+
'files to customize your interactions with Hibana CLI.':
|
|
876
|
+
'files to customize your interactions with Hibana CLI.',
|
|
877
|
+
'for more information.': 'for more information.',
|
|
878
|
+
|
|
879
|
+
// ============================================================================
|
|
880
|
+
// Exit Screen / Stats
|
|
881
|
+
// ============================================================================
|
|
882
|
+
'Agent powering down. Goodbye!': 'Agent powering down. Goodbye!',
|
|
883
|
+
'Interaction Summary': 'Interaction Summary',
|
|
884
|
+
'Session ID:': 'Session ID:',
|
|
885
|
+
'Tool Calls:': 'Tool Calls:',
|
|
886
|
+
'Success Rate:': 'Success Rate:',
|
|
887
|
+
'User Agreement:': 'User Agreement:',
|
|
888
|
+
reviewed: 'reviewed',
|
|
889
|
+
'Code Changes:': 'Code Changes:',
|
|
890
|
+
Performance: 'Performance',
|
|
891
|
+
'Wall Time:': 'Wall Time:',
|
|
892
|
+
'Agent Active:': 'Agent Active:',
|
|
893
|
+
'API Time:': 'API Time:',
|
|
894
|
+
'Tool Time:': 'Tool Time:',
|
|
895
|
+
'Session Stats': 'Session Stats',
|
|
896
|
+
'Model Usage': 'Model Usage',
|
|
897
|
+
Reqs: 'Reqs',
|
|
898
|
+
'Input Tokens': 'Input Tokens',
|
|
899
|
+
'Output Tokens': 'Output Tokens',
|
|
900
|
+
'Savings Highlight:': 'Savings Highlight:',
|
|
901
|
+
'of input tokens were served from the cache, reducing costs.':
|
|
902
|
+
'of input tokens were served from the cache, reducing costs.',
|
|
903
|
+
'Tip: For a full token breakdown, run `/stats model`.':
|
|
904
|
+
'Tip: For a full token breakdown, run `/stats model`.',
|
|
905
|
+
'Model Stats For Nerds': 'Model Stats For Nerds',
|
|
906
|
+
'Tool Stats For Nerds': 'Tool Stats For Nerds',
|
|
907
|
+
Metric: 'Metric',
|
|
908
|
+
API: 'API',
|
|
909
|
+
Requests: 'Requests',
|
|
910
|
+
Errors: 'Errors',
|
|
911
|
+
'Avg Latency': 'Avg Latency',
|
|
912
|
+
Tokens: 'Tokens',
|
|
913
|
+
Total: 'Total',
|
|
914
|
+
Prompt: 'Prompt',
|
|
915
|
+
Cached: 'Cached',
|
|
916
|
+
Thoughts: 'Thoughts',
|
|
917
|
+
Tool: 'Tool',
|
|
918
|
+
Output: 'Output',
|
|
919
|
+
'No API calls have been made in this session.':
|
|
920
|
+
'No API calls have been made in this session.',
|
|
921
|
+
'Tool Name': 'Tool Name',
|
|
922
|
+
Calls: 'Calls',
|
|
923
|
+
'Success Rate': 'Success Rate',
|
|
924
|
+
'Avg Duration': 'Avg Duration',
|
|
925
|
+
'User Decision Summary': 'User Decision Summary',
|
|
926
|
+
'Total Reviewed Suggestions:': 'Total Reviewed Suggestions:',
|
|
927
|
+
' » Accepted:': ' » Accepted:',
|
|
928
|
+
' » Rejected:': ' » Rejected:',
|
|
929
|
+
' » Modified:': ' » Modified:',
|
|
930
|
+
' Overall Agreement Rate:': ' Overall Agreement Rate:',
|
|
931
|
+
'No tool calls have been made in this session.':
|
|
932
|
+
'No tool calls have been made in this session.',
|
|
933
|
+
'Session start time is unavailable, cannot calculate stats.':
|
|
934
|
+
'Session start time is unavailable, cannot calculate stats.',
|
|
935
|
+
|
|
936
|
+
// ============================================================================
|
|
937
|
+
// Loading Phrases
|
|
938
|
+
// ============================================================================
|
|
939
|
+
'Waiting for user confirmation...': 'Waiting for user confirmation...',
|
|
940
|
+
'(esc to cancel, {{time}})': '(esc to cancel, {{time}})',
|
|
941
|
+
"I'm Feeling Lucky": "I'm Feeling Lucky",
|
|
942
|
+
'Shipping awesomeness... ': 'Shipping awesomeness... ',
|
|
943
|
+
'Painting the serifs back on...': 'Painting the serifs back on...',
|
|
944
|
+
'Navigating the slime mold...': 'Navigating the slime mold...',
|
|
945
|
+
'Consulting the digital spirits...': 'Consulting the digital spirits...',
|
|
946
|
+
'Reticulating splines...': 'Reticulating splines...',
|
|
947
|
+
'Warming up the AI hamsters...': 'Warming up the AI hamsters...',
|
|
948
|
+
'Asking the magic conch shell...': 'Asking the magic conch shell...',
|
|
949
|
+
'Generating witty retort...': 'Generating witty retort...',
|
|
950
|
+
'Polishing the algorithms...': 'Polishing the algorithms...',
|
|
951
|
+
"Don't rush perfection (or my code)...":
|
|
952
|
+
"Don't rush perfection (or my code)...",
|
|
953
|
+
'Brewing fresh bytes...': 'Brewing fresh bytes...',
|
|
954
|
+
'Counting electrons...': 'Counting electrons...',
|
|
955
|
+
'Engaging cognitive processors...': 'Engaging cognitive processors...',
|
|
956
|
+
'Checking for syntax errors in the universe...':
|
|
957
|
+
'Checking for syntax errors in the universe...',
|
|
958
|
+
'One moment, optimizing humor...': 'One moment, optimizing humor...',
|
|
959
|
+
'Shuffling punchlines...': 'Shuffling punchlines...',
|
|
960
|
+
'Untangling neural nets...': 'Untangling neural nets...',
|
|
961
|
+
'Compiling brilliance...': 'Compiling brilliance...',
|
|
962
|
+
'Loading wit.exe...': 'Loading wit.exe...',
|
|
963
|
+
'Summoning the cloud of wisdom...': 'Summoning the cloud of wisdom...',
|
|
964
|
+
'Preparing a witty response...': 'Preparing a witty response...',
|
|
965
|
+
"Just a sec, I'm debugging reality...":
|
|
966
|
+
"Just a sec, I'm debugging reality...",
|
|
967
|
+
'Confuzzling the options...': 'Confuzzling the options...',
|
|
968
|
+
'Tuning the cosmic frequencies...': 'Tuning the cosmic frequencies...',
|
|
969
|
+
'Crafting a response worthy of your patience...':
|
|
970
|
+
'Crafting a response worthy of your patience...',
|
|
971
|
+
'Compiling the 1s and 0s...': 'Compiling the 1s and 0s...',
|
|
972
|
+
'Resolving dependencies... and existential crises...':
|
|
973
|
+
'Resolving dependencies... and existential crises...',
|
|
974
|
+
'Defragmenting memories... both RAM and personal...':
|
|
975
|
+
'Defragmenting memories... both RAM and personal...',
|
|
976
|
+
'Rebooting the humor module...': 'Rebooting the humor module...',
|
|
977
|
+
'Caching the essentials (mostly cat memes)...':
|
|
978
|
+
'Caching the essentials (mostly cat memes)...',
|
|
979
|
+
'Optimizing for ludicrous speed': 'Optimizing for ludicrous speed',
|
|
980
|
+
"Swapping bits... don't tell the bytes...":
|
|
981
|
+
"Swapping bits... don't tell the bytes...",
|
|
982
|
+
'Garbage collecting... be right back...':
|
|
983
|
+
'Garbage collecting... be right back...',
|
|
984
|
+
'Assembling the interwebs...': 'Assembling the interwebs...',
|
|
985
|
+
'Converting coffee into code...': 'Converting coffee into code...',
|
|
986
|
+
'Updating the syntax for reality...': 'Updating the syntax for reality...',
|
|
987
|
+
'Rewiring the synapses...': 'Rewiring the synapses...',
|
|
988
|
+
'Looking for a misplaced semicolon...':
|
|
989
|
+
'Looking for a misplaced semicolon...',
|
|
990
|
+
"Greasin' the cogs of the machine...": "Greasin' the cogs of the machine...",
|
|
991
|
+
'Pre-heating the servers...': 'Pre-heating the servers...',
|
|
992
|
+
'Calibrating the flux capacitor...': 'Calibrating the flux capacitor...',
|
|
993
|
+
'Engaging the improbability drive...': 'Engaging the improbability drive...',
|
|
994
|
+
'Channeling the Force...': 'Channeling the Force...',
|
|
995
|
+
'Aligning the stars for optimal response...':
|
|
996
|
+
'Aligning the stars for optimal response...',
|
|
997
|
+
'So say we all...': 'So say we all...',
|
|
998
|
+
'Loading the next great idea...': 'Loading the next great idea...',
|
|
999
|
+
"Just a moment, I'm in the zone...": "Just a moment, I'm in the zone...",
|
|
1000
|
+
'Preparing to dazzle you with brilliance...':
|
|
1001
|
+
'Preparing to dazzle you with brilliance...',
|
|
1002
|
+
"Just a tick, I'm polishing my wit...":
|
|
1003
|
+
"Just a tick, I'm polishing my wit...",
|
|
1004
|
+
"Hold tight, I'm crafting a masterpiece...":
|
|
1005
|
+
"Hold tight, I'm crafting a masterpiece...",
|
|
1006
|
+
"Just a jiffy, I'm debugging the universe...":
|
|
1007
|
+
"Just a jiffy, I'm debugging the universe...",
|
|
1008
|
+
"Just a moment, I'm aligning the pixels...":
|
|
1009
|
+
"Just a moment, I'm aligning the pixels...",
|
|
1010
|
+
"Just a sec, I'm optimizing the humor...":
|
|
1011
|
+
"Just a sec, I'm optimizing the humor...",
|
|
1012
|
+
"Just a moment, I'm tuning the algorithms...":
|
|
1013
|
+
"Just a moment, I'm tuning the algorithms...",
|
|
1014
|
+
'Warp speed engaged...': 'Warp speed engaged...',
|
|
1015
|
+
'Mining for more Dilithium crystals...':
|
|
1016
|
+
'Mining for more Dilithium crystals...',
|
|
1017
|
+
"Don't panic...": "Don't panic...",
|
|
1018
|
+
'Following the white rabbit...': 'Following the white rabbit...',
|
|
1019
|
+
'The truth is in here... somewhere...':
|
|
1020
|
+
'The truth is in here... somewhere...',
|
|
1021
|
+
'Blowing on the cartridge...': 'Blowing on the cartridge...',
|
|
1022
|
+
'Loading... Do a barrel roll!': 'Loading... Do a barrel roll!',
|
|
1023
|
+
'Waiting for the respawn...': 'Waiting for the respawn...',
|
|
1024
|
+
'Finishing the Kessel Run in less than 12 parsecs...':
|
|
1025
|
+
'Finishing the Kessel Run in less than 12 parsecs...',
|
|
1026
|
+
"The cake is not a lie, it's just still loading...":
|
|
1027
|
+
"The cake is not a lie, it's just still loading...",
|
|
1028
|
+
'Fiddling with the character creation screen...':
|
|
1029
|
+
'Fiddling with the character creation screen...',
|
|
1030
|
+
"Just a moment, I'm finding the right meme...":
|
|
1031
|
+
"Just a moment, I'm finding the right meme...",
|
|
1032
|
+
"Pressing 'A' to continue...": "Pressing 'A' to continue...",
|
|
1033
|
+
'Herding digital cats...': 'Herding digital cats...',
|
|
1034
|
+
'Polishing the pixels...': 'Polishing the pixels...',
|
|
1035
|
+
'Finding a suitable loading screen pun...':
|
|
1036
|
+
'Finding a suitable loading screen pun...',
|
|
1037
|
+
'Distracting you with this witty phrase...':
|
|
1038
|
+
'Distracting you with this witty phrase...',
|
|
1039
|
+
'Almost there... probably...': 'Almost there... probably...',
|
|
1040
|
+
'Our hamsters are working as fast as they can...':
|
|
1041
|
+
'Our hamsters are working as fast as they can...',
|
|
1042
|
+
'Giving Cloudy a pat on the head...': 'Giving Cloudy a pat on the head...',
|
|
1043
|
+
'Petting the cat...': 'Petting the cat...',
|
|
1044
|
+
'Rickrolling my boss...': 'Rickrolling my boss...',
|
|
1045
|
+
'Never gonna give you up, never gonna let you down...':
|
|
1046
|
+
'Never gonna give you up, never gonna let you down...',
|
|
1047
|
+
'Slapping the bass...': 'Slapping the bass...',
|
|
1048
|
+
'Tasting the snozberries...': 'Tasting the snozberries...',
|
|
1049
|
+
"I'm going the distance, I'm going for speed...":
|
|
1050
|
+
"I'm going the distance, I'm going for speed...",
|
|
1051
|
+
'Is this the real life? Is this just fantasy?...':
|
|
1052
|
+
'Is this the real life? Is this just fantasy?...',
|
|
1053
|
+
"I've got a good feeling about this...":
|
|
1054
|
+
"I've got a good feeling about this...",
|
|
1055
|
+
'Poking the bear...': 'Poking the bear...',
|
|
1056
|
+
'Doing research on the latest memes...':
|
|
1057
|
+
'Doing research on the latest memes...',
|
|
1058
|
+
'Figuring out how to make this more witty...':
|
|
1059
|
+
'Figuring out how to make this more witty...',
|
|
1060
|
+
'Hmmm... let me think...': 'Hmmm... let me think...',
|
|
1061
|
+
'What do you call a fish with no eyes? A fsh...':
|
|
1062
|
+
'What do you call a fish with no eyes? A fsh...',
|
|
1063
|
+
'Why did the computer go to therapy? It had too many bytes...':
|
|
1064
|
+
'Why did the computer go to therapy? It had too many bytes...',
|
|
1065
|
+
"Why don't programmers like nature? It has too many bugs...":
|
|
1066
|
+
"Why don't programmers like nature? It has too many bugs...",
|
|
1067
|
+
'Why do programmers prefer dark mode? Because light attracts bugs...':
|
|
1068
|
+
'Why do programmers prefer dark mode? Because light attracts bugs...',
|
|
1069
|
+
'Why did the developer go broke? Because they used up all their cache...':
|
|
1070
|
+
'Why did the developer go broke? Because they used up all their cache...',
|
|
1071
|
+
"What can you do with a broken pencil? Nothing, it's pointless...":
|
|
1072
|
+
"What can you do with a broken pencil? Nothing, it's pointless...",
|
|
1073
|
+
'Applying percussive maintenance...': 'Applying percussive maintenance...',
|
|
1074
|
+
'Searching for the correct USB orientation...':
|
|
1075
|
+
'Searching for the correct USB orientation...',
|
|
1076
|
+
'Ensuring the magic smoke stays inside the wires...':
|
|
1077
|
+
'Ensuring the magic smoke stays inside the wires...',
|
|
1078
|
+
'Rewriting in Rust for no particular reason...':
|
|
1079
|
+
'Rewriting in Rust for no particular reason...',
|
|
1080
|
+
'Trying to exit Vim...': 'Trying to exit Vim...',
|
|
1081
|
+
'Spinning up the hamster wheel...': 'Spinning up the hamster wheel...',
|
|
1082
|
+
"That's not a bug, it's an undocumented feature...":
|
|
1083
|
+
"That's not a bug, it's an undocumented feature...",
|
|
1084
|
+
'Engage.': 'Engage.',
|
|
1085
|
+
"I'll be back... with an answer.": "I'll be back... with an answer.",
|
|
1086
|
+
'My other process is a TARDIS...': 'My other process is a TARDIS...',
|
|
1087
|
+
'Communing with the machine spirit...':
|
|
1088
|
+
'Communing with the machine spirit...',
|
|
1089
|
+
'Letting the thoughts marinate...': 'Letting the thoughts marinate...',
|
|
1090
|
+
'Just remembered where I put my keys...':
|
|
1091
|
+
'Just remembered where I put my keys...',
|
|
1092
|
+
'Pondering the orb...': 'Pondering the orb...',
|
|
1093
|
+
"I've seen things you people wouldn't believe... like a user who reads loading messages.":
|
|
1094
|
+
"I've seen things you people wouldn't believe... like a user who reads loading messages.",
|
|
1095
|
+
'Initiating thoughtful gaze...': 'Initiating thoughtful gaze...',
|
|
1096
|
+
"What's a computer's favorite snack? Microchips.":
|
|
1097
|
+
"What's a computer's favorite snack? Microchips.",
|
|
1098
|
+
"Why do Java developers wear glasses? Because they don't C#.":
|
|
1099
|
+
"Why do Java developers wear glasses? Because they don't C#.",
|
|
1100
|
+
'Charging the laser... pew pew!': 'Charging the laser... pew pew!',
|
|
1101
|
+
'Dividing by zero... just kidding!': 'Dividing by zero... just kidding!',
|
|
1102
|
+
'Looking for an adult superviso... I mean, processing.':
|
|
1103
|
+
'Looking for an adult superviso... I mean, processing.',
|
|
1104
|
+
'Making it go beep boop.': 'Making it go beep boop.',
|
|
1105
|
+
'Buffering... because even AIs need a moment.':
|
|
1106
|
+
'Buffering... because even AIs need a moment.',
|
|
1107
|
+
'Entangling quantum particles for a faster response...':
|
|
1108
|
+
'Entangling quantum particles for a faster response...',
|
|
1109
|
+
'Polishing the chrome... on the algorithms.':
|
|
1110
|
+
'Polishing the chrome... on the algorithms.',
|
|
1111
|
+
'Are you not entertained? (Working on it!)':
|
|
1112
|
+
'Are you not entertained? (Working on it!)',
|
|
1113
|
+
'Summoning the code gremlins... to help, of course.':
|
|
1114
|
+
'Summoning the code gremlins... to help, of course.',
|
|
1115
|
+
'Just waiting for the dial-up tone to finish...':
|
|
1116
|
+
'Just waiting for the dial-up tone to finish...',
|
|
1117
|
+
'Recalibrating the humor-o-meter.': 'Recalibrating the humor-o-meter.',
|
|
1118
|
+
'My other loading screen is even funnier.':
|
|
1119
|
+
'My other loading screen is even funnier.',
|
|
1120
|
+
"Pretty sure there's a cat walking on the keyboard somewhere...":
|
|
1121
|
+
"Pretty sure there's a cat walking on the keyboard somewhere...",
|
|
1122
|
+
'Enhancing... Enhancing... Still loading.':
|
|
1123
|
+
'Enhancing... Enhancing... Still loading.',
|
|
1124
|
+
"It's not a bug, it's a feature... of this loading screen.":
|
|
1125
|
+
"It's not a bug, it's a feature... of this loading screen.",
|
|
1126
|
+
'Have you tried turning it off and on again? (The loading screen, not me.)':
|
|
1127
|
+
'Have you tried turning it off and on again? (The loading screen, not me.)',
|
|
1128
|
+
'Constructing additional pylons...': 'Constructing additional pylons...',
|
|
1129
|
+
};
|