fss-link 1.0.43 → 1.0.45
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/commands/mcp/add.test.ts +122 -0
- package/dist/commands/mcp/add.ts +222 -0
- package/dist/commands/mcp/list.test.ts +154 -0
- package/dist/commands/mcp/list.ts +139 -0
- package/dist/commands/mcp/remove.test.ts +69 -0
- package/dist/commands/mcp/remove.ts +60 -0
- package/dist/commands/mcp.test.ts +55 -0
- package/dist/commands/mcp.ts +27 -0
- package/dist/config/apiValidation.test.ts +118 -0
- package/dist/config/auth.test.ts +79 -0
- package/dist/config/auth.ts +100 -0
- package/dist/config/config.integration.test.ts +407 -0
- package/dist/config/config.test.ts +1952 -0
- package/dist/config/config.ts +690 -0
- package/dist/config/database.test.ts +96 -0
- package/dist/config/database.ts +752 -0
- package/dist/config/extension.test.ts +236 -0
- package/dist/config/extension.ts +180 -0
- package/dist/config/keyBindings.test.ts +62 -0
- package/dist/config/keyBindings.ts +184 -0
- package/dist/config/modelManager.ts +275 -0
- package/dist/config/providerManager.ts +244 -0
- package/dist/config/providerPersistence.test.ts +377 -0
- package/dist/config/providerPersistence.ts +105 -0
- package/dist/config/sandboxConfig.ts +107 -0
- package/dist/config/settings.test.ts +1424 -0
- package/dist/config/settings.ts +517 -0
- package/dist/config/settingsSchema.test.ts +252 -0
- package/dist/config/settingsSchema.ts +728 -0
- package/dist/config/trustedFolders.test.ts +208 -0
- package/dist/config/trustedFolders.ts +167 -0
- package/dist/gemini.test.tsx +252 -0
- package/dist/gemini.tsx +357 -0
- package/dist/generated/git-commit.ts +10 -0
- package/dist/index.ts +21 -0
- package/dist/nonInteractiveCli.test.ts +276 -0
- package/dist/nonInteractiveCli.ts +143 -0
- package/dist/package.json +87 -87
- package/dist/patches/is-in-ci.ts +17 -0
- package/dist/services/BuiltinCommandLoader.test.ts +127 -0
- package/dist/services/BuiltinCommandLoader.ts +95 -0
- package/dist/services/CommandService.test.ts +352 -0
- package/dist/services/CommandService.ts +103 -0
- package/dist/services/FileCommandLoader.test.ts +1002 -0
- package/dist/services/FileCommandLoader.ts +289 -0
- package/dist/services/McpPromptLoader.ts +231 -0
- package/dist/services/SearchEngineConfigProvider.ts +100 -0
- package/dist/services/prompt-processors/argumentProcessor.test.ts +41 -0
- package/dist/services/prompt-processors/argumentProcessor.ts +23 -0
- package/dist/services/prompt-processors/shellProcessor.test.ts +709 -0
- package/dist/services/prompt-processors/shellProcessor.ts +248 -0
- package/dist/services/prompt-processors/types.ts +44 -0
- package/dist/services/types.ts +24 -0
- package/dist/src/config/apiValidation.test.d.ts +6 -0
- package/dist/src/config/apiValidation.test.js +99 -0
- package/dist/src/config/apiValidation.test.js.map +1 -0
- package/dist/src/config/database.d.ts +32 -0
- package/dist/src/config/database.js +281 -2
- package/dist/src/config/database.js.map +1 -1
- package/dist/src/config/database.test.d.ts +6 -0
- package/dist/src/config/database.test.js +80 -0
- package/dist/src/config/database.test.js.map +1 -0
- package/dist/src/config/providerManager.d.ts +74 -0
- package/dist/src/config/providerManager.js +203 -0
- package/dist/src/config/providerManager.js.map +1 -0
- package/dist/src/config/providerPersistence.d.ts +75 -0
- package/dist/src/config/providerPersistence.js +55 -0
- package/dist/src/config/providerPersistence.js.map +1 -0
- package/dist/src/config/providerPersistence.test.d.ts +6 -0
- package/dist/src/config/providerPersistence.test.js +283 -0
- package/dist/src/config/providerPersistence.test.js.map +1 -0
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/services/BuiltinCommandLoader.js +2 -0
- package/dist/src/services/BuiltinCommandLoader.js.map +1 -1
- package/dist/src/ui/App.js +1 -1
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/commands/contextCommand.d.ts +7 -0
- package/dist/src/ui/commands/contextCommand.js +115 -0
- package/dist/src/ui/commands/contextCommand.js.map +1 -0
- package/dist/src/ui/components/ContextUsageDisplay.d.ts +3 -1
- package/dist/src/ui/components/ContextUsageDisplay.js +43 -3
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -1
- package/dist/src/ui/components/Footer.d.ts +1 -0
- package/dist/src/ui/components/Footer.js +2 -2
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/GeminiKeyDialog.d.ts +11 -0
- package/dist/src/ui/components/GeminiKeyDialog.js +156 -0
- package/dist/src/ui/components/GeminiKeyDialog.js.map +1 -0
- package/dist/src/ui/components/OpenAIEndpointDialog.d.ts +19 -0
- package/dist/src/ui/components/OpenAIEndpointDialog.js +163 -0
- package/dist/src/ui/components/OpenAIEndpointDialog.js.map +1 -0
- package/dist/src/zed-integration/schema.d.ts +1516 -1516
- package/dist/test-setup.ts +12 -0
- package/dist/test-utils/customMatchers.ts +65 -0
- package/dist/test-utils/mockCommandContext.test.ts +62 -0
- package/dist/test-utils/mockCommandContext.ts +105 -0
- package/dist/test-utils/render.tsx +18 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/App.test.tsx +2181 -0
- package/dist/ui/App.tsx +1344 -0
- package/dist/ui/IdeIntegrationNudge.tsx +98 -0
- package/dist/ui/__snapshots__/App.test.tsx.snap +124 -0
- package/dist/ui/colors.ts +56 -0
- package/dist/ui/commands/aboutCommand.test.ts +153 -0
- package/dist/ui/commands/aboutCommand.ts +49 -0
- package/dist/ui/commands/authCommand.test.ts +36 -0
- package/dist/ui/commands/authCommand.ts +17 -0
- package/dist/ui/commands/bugCommand.test.ts +114 -0
- package/dist/ui/commands/bugCommand.ts +92 -0
- package/dist/ui/commands/chatCommand.test.ts +414 -0
- package/dist/ui/commands/chatCommand.ts +280 -0
- package/dist/ui/commands/clearCommand.test.ts +100 -0
- package/dist/ui/commands/clearCommand.ts +29 -0
- package/dist/ui/commands/compressCommand.test.ts +129 -0
- package/dist/ui/commands/compressCommand.ts +78 -0
- package/dist/ui/commands/contextCommand.ts +132 -0
- package/dist/ui/commands/copyCommand.test.ts +296 -0
- package/dist/ui/commands/copyCommand.ts +67 -0
- package/dist/ui/commands/corgiCommand.test.ts +34 -0
- package/dist/ui/commands/corgiCommand.ts +16 -0
- package/dist/ui/commands/directoryCommand.test.tsx +185 -0
- package/dist/ui/commands/directoryCommand.tsx +179 -0
- package/dist/ui/commands/docsCommand.test.ts +99 -0
- package/dist/ui/commands/docsCommand.ts +42 -0
- package/dist/ui/commands/editorCommand.test.ts +30 -0
- package/dist/ui/commands/editorCommand.ts +21 -0
- package/dist/ui/commands/extensionsCommand.test.ts +67 -0
- package/dist/ui/commands/extensionsCommand.ts +46 -0
- package/dist/ui/commands/helpCommand.test.ts +52 -0
- package/dist/ui/commands/helpCommand.ts +23 -0
- package/dist/ui/commands/ideCommand.test.ts +255 -0
- package/dist/ui/commands/ideCommand.ts +283 -0
- package/dist/ui/commands/initCommand.test.ts +127 -0
- package/dist/ui/commands/initCommand.ts +117 -0
- package/dist/ui/commands/mcpCommand.test.ts +1057 -0
- package/dist/ui/commands/mcpCommand.ts +531 -0
- package/dist/ui/commands/memoryCommand.test.ts +344 -0
- package/dist/ui/commands/memoryCommand.ts +305 -0
- package/dist/ui/commands/privacyCommand.test.ts +38 -0
- package/dist/ui/commands/privacyCommand.ts +17 -0
- package/dist/ui/commands/quitCommand.test.ts +55 -0
- package/dist/ui/commands/quitCommand.ts +36 -0
- package/dist/ui/commands/restoreCommand.test.ts +250 -0
- package/dist/ui/commands/restoreCommand.ts +157 -0
- package/dist/ui/commands/searchEngineSetupCommand.ts +18 -0
- package/dist/ui/commands/settingsCommand.test.ts +36 -0
- package/dist/ui/commands/settingsCommand.ts +17 -0
- package/dist/ui/commands/setupGithubCommand.test.ts +238 -0
- package/dist/ui/commands/setupGithubCommand.ts +212 -0
- package/dist/ui/commands/speakCommand.ts +175 -0
- package/dist/ui/commands/statsCommand.test.ts +78 -0
- package/dist/ui/commands/statsCommand.ts +70 -0
- package/dist/ui/commands/terminalSetupCommand.test.ts +85 -0
- package/dist/ui/commands/terminalSetupCommand.ts +45 -0
- package/dist/ui/commands/themeCommand.test.ts +38 -0
- package/dist/ui/commands/themeCommand.ts +17 -0
- package/dist/ui/commands/toolsCommand.test.ts +105 -0
- package/dist/ui/commands/toolsCommand.ts +71 -0
- package/dist/ui/commands/ttsCommand.ts +143 -0
- package/dist/ui/commands/types.ts +204 -0
- package/dist/ui/commands/vimCommand.ts +25 -0
- package/dist/ui/commands/voiceCommand.ts +125 -0
- package/dist/ui/components/AboutBox.tsx +133 -0
- package/dist/ui/components/AsciiArt.ts +54 -0
- package/dist/ui/components/AuthDialog.test.tsx +334 -0
- package/dist/ui/components/AuthDialog.tsx +289 -0
- package/dist/ui/components/AuthInProgress.tsx +62 -0
- package/dist/ui/components/AutoAcceptIndicator.tsx +47 -0
- package/dist/ui/components/ConsoleSummaryDisplay.tsx +35 -0
- package/dist/ui/components/ContextSummaryDisplay.test.tsx +85 -0
- package/dist/ui/components/ContextSummaryDisplay.tsx +120 -0
- package/dist/ui/components/ContextUsageDisplay.tsx +77 -0
- package/dist/ui/components/DebugProfiler.tsx +36 -0
- package/dist/ui/components/DetailedMessagesDisplay.tsx +82 -0
- package/dist/ui/components/EditorSettingsDialog.tsx +172 -0
- package/dist/ui/components/FolderTrustDialog.test.tsx +36 -0
- package/dist/ui/components/FolderTrustDialog.tsx +74 -0
- package/dist/ui/components/Footer.test.tsx +159 -0
- package/dist/ui/components/Footer.tsx +158 -0
- package/dist/ui/components/GeminiKeyDialog.tsx +252 -0
- package/dist/ui/components/GeminiRespondingSpinner.tsx +34 -0
- package/dist/ui/components/Header.test.tsx +44 -0
- package/dist/ui/components/Header.tsx +70 -0
- package/dist/ui/components/Help.tsx +174 -0
- package/dist/ui/components/HistoryItemDisplay.test.tsx +125 -0
- package/dist/ui/components/HistoryItemDisplay.tsx +98 -0
- package/dist/ui/components/InputPrompt.test.tsx +1467 -0
- package/dist/ui/components/InputPrompt.tsx +641 -0
- package/dist/ui/components/LMStudioModelPrompt.tsx +215 -0
- package/dist/ui/components/LoadingIndicator.test.tsx +296 -0
- package/dist/ui/components/LoadingIndicator.tsx +82 -0
- package/dist/ui/components/MemoryUsageDisplay.tsx +36 -0
- package/dist/ui/components/ModelStatsDisplay.test.tsx +252 -0
- package/dist/ui/components/ModelStatsDisplay.tsx +197 -0
- package/dist/ui/components/OllamaModelPrompt.tsx +206 -0
- package/dist/ui/components/OpenAIEndpointDialog.tsx +261 -0
- package/dist/ui/components/OpenAIKeyPrompt.test.tsx +64 -0
- package/dist/ui/components/OpenAIKeyPrompt.tsx +197 -0
- package/dist/ui/components/PrepareLabel.tsx +48 -0
- package/dist/ui/components/SearchEngineConfigDialog.tsx +280 -0
- package/dist/ui/components/SessionSummaryDisplay.test.tsx +75 -0
- package/dist/ui/components/SessionSummaryDisplay.tsx +18 -0
- package/dist/ui/components/SettingsDialog.test.tsx +865 -0
- package/dist/ui/components/SettingsDialog.tsx +753 -0
- package/dist/ui/components/ShellConfirmationDialog.test.tsx +53 -0
- package/dist/ui/components/ShellConfirmationDialog.tsx +103 -0
- package/dist/ui/components/ShellModeIndicator.tsx +18 -0
- package/dist/ui/components/ShowMoreLines.tsx +40 -0
- package/dist/ui/components/StatsDisplay.test.tsx +401 -0
- package/dist/ui/components/StatsDisplay.tsx +273 -0
- package/dist/ui/components/SuggestionsDisplay.tsx +102 -0
- package/dist/ui/components/ThemeDialog.tsx +310 -0
- package/dist/ui/components/Tips.tsx +45 -0
- package/dist/ui/components/TodoDisplay.test.tsx +97 -0
- package/dist/ui/components/TodoDisplay.tsx +72 -0
- package/dist/ui/components/ToolStatsDisplay.test.tsx +180 -0
- package/dist/ui/components/ToolStatsDisplay.tsx +208 -0
- package/dist/ui/components/UpdateNotification.tsx +23 -0
- package/dist/ui/components/WelcomeBackDialog.tsx +290 -0
- package/dist/ui/components/__snapshots__/IDEContextDetailDisplay.test.tsx.snap +24 -0
- package/dist/ui/components/__snapshots__/ModelStatsDisplay.test.tsx.snap +121 -0
- package/dist/ui/components/__snapshots__/SessionSummaryDisplay.test.tsx.snap +30 -0
- package/dist/ui/components/__snapshots__/ShellConfirmationDialog.test.tsx.snap +21 -0
- package/dist/ui/components/__snapshots__/StatsDisplay.test.tsx.snap +264 -0
- package/dist/ui/components/__snapshots__/ToolStatsDisplay.test.tsx.snap +91 -0
- package/dist/ui/components/messages/CompressionMessage.tsx +49 -0
- package/dist/ui/components/messages/DiffRenderer.test.tsx +365 -0
- package/dist/ui/components/messages/DiffRenderer.tsx +358 -0
- package/dist/ui/components/messages/ErrorMessage.tsx +31 -0
- package/dist/ui/components/messages/GeminiMessage.tsx +43 -0
- package/dist/ui/components/messages/GeminiMessageContent.tsx +43 -0
- package/dist/ui/components/messages/InfoMessage.tsx +32 -0
- package/dist/ui/components/messages/ToolConfirmationMessage.test.tsx +58 -0
- package/dist/ui/components/messages/ToolConfirmationMessage.tsx +297 -0
- package/dist/ui/components/messages/ToolGroupMessage.tsx +126 -0
- package/dist/ui/components/messages/ToolMessage.test.tsx +183 -0
- package/dist/ui/components/messages/ToolMessage.tsx +296 -0
- package/dist/ui/components/messages/UserMessage.tsx +43 -0
- package/dist/ui/components/messages/UserShellMessage.tsx +25 -0
- package/dist/ui/components/shared/MaxSizedBox.test.tsx +425 -0
- package/dist/ui/components/shared/MaxSizedBox.tsx +624 -0
- package/dist/ui/components/shared/RadioButtonSelect.test.tsx +181 -0
- package/dist/ui/components/shared/RadioButtonSelect.tsx +234 -0
- package/dist/ui/components/shared/__snapshots__/RadioButtonSelect.test.tsx.snap +47 -0
- package/dist/ui/components/shared/text-buffer.test.ts +1728 -0
- package/dist/ui/components/shared/text-buffer.ts +2227 -0
- package/dist/ui/components/shared/vim-buffer-actions.test.ts +1119 -0
- package/dist/ui/components/shared/vim-buffer-actions.ts +814 -0
- package/dist/ui/constants.ts +17 -0
- package/dist/ui/contexts/KeypressContext.test.tsx +391 -0
- package/dist/ui/contexts/KeypressContext.tsx +440 -0
- package/dist/ui/contexts/OverflowContext.tsx +87 -0
- package/dist/ui/contexts/SessionContext.test.tsx +132 -0
- package/dist/ui/contexts/SessionContext.tsx +143 -0
- package/dist/ui/contexts/SettingsContext.tsx +20 -0
- package/dist/ui/contexts/StreamingContext.tsx +22 -0
- package/dist/ui/contexts/VimModeContext.tsx +79 -0
- package/dist/ui/editors/editorSettingsManager.ts +66 -0
- package/dist/ui/hooks/atCommandProcessor.test.ts +1102 -0
- package/dist/ui/hooks/atCommandProcessor.ts +485 -0
- package/dist/ui/hooks/shellCommandProcessor.test.ts +481 -0
- package/dist/ui/hooks/shellCommandProcessor.ts +314 -0
- package/dist/ui/hooks/slashCommandProcessor.test.ts +1044 -0
- package/dist/ui/hooks/slashCommandProcessor.ts +595 -0
- package/dist/ui/hooks/useAtCompletion.test.ts +497 -0
- package/dist/ui/hooks/useAtCompletion.ts +244 -0
- package/dist/ui/hooks/useAuthCommand.ts +129 -0
- package/dist/ui/hooks/useAutoAcceptIndicator.test.ts +300 -0
- package/dist/ui/hooks/useAutoAcceptIndicator.ts +52 -0
- package/dist/ui/hooks/useBracketedPaste.ts +37 -0
- package/dist/ui/hooks/useCommandCompletion.test.ts +518 -0
- package/dist/ui/hooks/useCommandCompletion.tsx +238 -0
- package/dist/ui/hooks/useCompletion.ts +128 -0
- package/dist/ui/hooks/useConsoleMessages.test.ts +147 -0
- package/dist/ui/hooks/useConsoleMessages.ts +110 -0
- package/dist/ui/hooks/useEditorSettings.test.ts +283 -0
- package/dist/ui/hooks/useEditorSettings.ts +75 -0
- package/dist/ui/hooks/useFocus.test.ts +119 -0
- package/dist/ui/hooks/useFocus.ts +48 -0
- package/dist/ui/hooks/useFolderTrust.test.ts +159 -0
- package/dist/ui/hooks/useFolderTrust.ts +72 -0
- package/dist/ui/hooks/useGeminiStream.test.tsx +1998 -0
- package/dist/ui/hooks/useGeminiStream.ts +1017 -0
- package/dist/ui/hooks/useGitBranchName.test.ts +280 -0
- package/dist/ui/hooks/useGitBranchName.ts +79 -0
- package/dist/ui/hooks/useHistoryManager.test.ts +202 -0
- package/dist/ui/hooks/useHistoryManager.ts +111 -0
- package/dist/ui/hooks/useInputHistory.test.ts +261 -0
- package/dist/ui/hooks/useInputHistory.ts +111 -0
- package/dist/ui/hooks/useKeypress.test.ts +280 -0
- package/dist/ui/hooks/useKeypress.ts +39 -0
- package/dist/ui/hooks/useKittyKeyboardProtocol.ts +31 -0
- package/dist/ui/hooks/useLoadingIndicator.test.ts +139 -0
- package/dist/ui/hooks/useLoadingIndicator.ts +57 -0
- package/dist/ui/hooks/useLogger.ts +32 -0
- package/dist/ui/hooks/useMessageQueue.test.ts +226 -0
- package/dist/ui/hooks/useMessageQueue.ts +69 -0
- package/dist/ui/hooks/usePhraseCycler.test.ts +145 -0
- package/dist/ui/hooks/usePhraseCycler.ts +198 -0
- package/dist/ui/hooks/usePrivacySettings.test.ts +242 -0
- package/dist/ui/hooks/usePrivacySettings.ts +150 -0
- package/dist/ui/hooks/useReactToolScheduler.ts +309 -0
- package/dist/ui/hooks/useRefreshMemoryCommand.ts +7 -0
- package/dist/ui/hooks/useReverseSearchCompletion.test.tsx +260 -0
- package/dist/ui/hooks/useReverseSearchCompletion.tsx +95 -0
- package/dist/ui/hooks/useSettingsCommand.ts +25 -0
- package/dist/ui/hooks/useShellHistory.test.ts +219 -0
- package/dist/ui/hooks/useShellHistory.ts +133 -0
- package/dist/ui/hooks/useShowMemoryCommand.ts +75 -0
- package/dist/ui/hooks/useSlashCompletion.test.ts +434 -0
- package/dist/ui/hooks/useSlashCompletion.ts +187 -0
- package/dist/ui/hooks/useStateAndRef.ts +36 -0
- package/dist/ui/hooks/useTerminalSize.ts +32 -0
- package/dist/ui/hooks/useThemeCommand.ts +110 -0
- package/dist/ui/hooks/useTimer.test.ts +120 -0
- package/dist/ui/hooks/useTimer.ts +65 -0
- package/dist/ui/hooks/useToolScheduler.test.ts +1123 -0
- package/dist/ui/hooks/useWelcomeBack.ts +253 -0
- package/dist/ui/hooks/vim.test.ts +1691 -0
- package/dist/ui/hooks/vim.ts +784 -0
- package/dist/ui/keyMatchers.test.ts +337 -0
- package/dist/ui/keyMatchers.ts +105 -0
- package/dist/ui/privacy/CloudFreePrivacyNotice.tsx +117 -0
- package/dist/ui/privacy/CloudPaidPrivacyNotice.tsx +59 -0
- package/dist/ui/privacy/GeminiPrivacyNotice.tsx +62 -0
- package/dist/ui/privacy/PrivacyNotice.tsx +42 -0
- package/dist/ui/semantic-colors.ts +26 -0
- package/dist/ui/themes/ansi-light.ts +150 -0
- package/dist/ui/themes/ansi.ts +159 -0
- package/dist/ui/themes/atom-one-dark.ts +147 -0
- package/dist/ui/themes/ayu-light.ts +139 -0
- package/dist/ui/themes/ayu.ts +113 -0
- package/dist/ui/themes/color-utils.test.ts +221 -0
- package/dist/ui/themes/color-utils.ts +231 -0
- package/dist/ui/themes/default-light.ts +108 -0
- package/dist/ui/themes/default.ts +151 -0
- package/dist/ui/themes/dracula.ts +124 -0
- package/dist/ui/themes/fss-code-dark.ts +156 -0
- package/dist/ui/themes/fss-dark.ts +113 -0
- package/dist/ui/themes/fss-light.ts +139 -0
- package/dist/ui/themes/github-dark.ts +147 -0
- package/dist/ui/themes/github-light.ts +149 -0
- package/dist/ui/themes/googlecode.ts +146 -0
- package/dist/ui/themes/no-color.ts +125 -0
- package/dist/ui/themes/qwen-dark.ts +118 -0
- package/dist/ui/themes/qwen-light.ts +144 -0
- package/dist/ui/themes/semantic-tokens.ts +127 -0
- package/dist/ui/themes/shades-of-purple.ts +352 -0
- package/dist/ui/themes/theme-manager.test.ts +99 -0
- package/dist/ui/themes/theme-manager.ts +257 -0
- package/dist/ui/themes/theme.test.ts +97 -0
- package/dist/ui/themes/theme.ts +451 -0
- package/dist/ui/themes/xcode.ts +154 -0
- package/dist/ui/types.ts +255 -0
- package/dist/ui/utils/CodeColorizer.tsx +217 -0
- package/dist/ui/utils/ConsolePatcher.ts +71 -0
- package/dist/ui/utils/InlineMarkdownRenderer.tsx +173 -0
- package/dist/ui/utils/MarkdownDisplay.test.tsx +244 -0
- package/dist/ui/utils/MarkdownDisplay.tsx +415 -0
- package/dist/ui/utils/TableRenderer.tsx +159 -0
- package/dist/ui/utils/__snapshots__/MarkdownDisplay.test.tsx.snap +93 -0
- package/dist/ui/utils/clipboardUtils.test.ts +76 -0
- package/dist/ui/utils/clipboardUtils.ts +149 -0
- package/dist/ui/utils/commandUtils.test.ts +384 -0
- package/dist/ui/utils/commandUtils.ts +106 -0
- package/dist/ui/utils/computeStats.test.ts +292 -0
- package/dist/ui/utils/computeStats.ts +86 -0
- package/dist/ui/utils/displayUtils.test.ts +58 -0
- package/dist/ui/utils/displayUtils.ts +32 -0
- package/dist/ui/utils/formatters.test.ts +72 -0
- package/dist/ui/utils/formatters.ts +63 -0
- package/dist/ui/utils/isNarrowWidth.ts +9 -0
- package/dist/ui/utils/kittyProtocolDetector.ts +105 -0
- package/dist/ui/utils/markdownUtilities.test.ts +50 -0
- package/dist/ui/utils/markdownUtilities.ts +125 -0
- package/dist/ui/utils/platformConstants.ts +52 -0
- package/dist/ui/utils/terminalSetup.ts +342 -0
- package/dist/ui/utils/textUtils.ts +40 -0
- package/dist/ui/utils/updateCheck.test.ts +163 -0
- package/dist/ui/utils/updateCheck.ts +100 -0
- package/dist/utils/checks.ts +28 -0
- package/dist/utils/cleanup.test.ts +68 -0
- package/dist/utils/cleanup.ts +36 -0
- package/dist/utils/dialogScopeUtils.ts +64 -0
- package/dist/utils/events.ts +14 -0
- package/dist/utils/gitUtils.test.ts +149 -0
- package/dist/utils/gitUtils.ts +116 -0
- package/dist/utils/handleAutoUpdate.test.ts +272 -0
- package/dist/utils/handleAutoUpdate.ts +145 -0
- package/dist/utils/installationInfo.test.ts +315 -0
- package/dist/utils/installationInfo.ts +176 -0
- package/dist/utils/package.ts +38 -0
- package/dist/utils/readStdin.ts +51 -0
- package/dist/utils/resolvePath.ts +21 -0
- package/dist/utils/sandbox-macos-permissive-closed.sb +32 -0
- package/dist/utils/sandbox-macos-permissive-open.sb +25 -0
- package/dist/utils/sandbox-macos-permissive-proxied.sb +37 -0
- package/dist/utils/sandbox-macos-restrictive-closed.sb +93 -0
- package/dist/utils/sandbox-macos-restrictive-open.sb +96 -0
- package/dist/utils/sandbox-macos-restrictive-proxied.sb +98 -0
- package/dist/utils/sandbox.ts +962 -0
- package/dist/utils/settingsUtils.test.ts +797 -0
- package/dist/utils/settingsUtils.ts +489 -0
- package/dist/utils/spawnWrapper.ts +9 -0
- package/dist/utils/startupWarnings.test.ts +83 -0
- package/dist/utils/startupWarnings.ts +40 -0
- package/dist/utils/updateEventEmitter.ts +13 -0
- package/dist/utils/userStartupWarnings.test.ts +87 -0
- package/dist/utils/userStartupWarnings.ts +69 -0
- package/dist/utils/version.ts +12 -0
- package/dist/validateNonInterActiveAuth.test.ts +260 -0
- package/dist/validateNonInterActiveAuth.ts +51 -0
- package/dist/vitest.config.ts +37 -0
- package/dist/zed-integration/acp.ts +366 -0
- package/dist/zed-integration/fileSystemService.ts +47 -0
- package/dist/zed-integration/schema.ts +466 -0
- package/dist/zed-integration/zedIntegration.ts +944 -0
- package/package.json +2 -2
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { render } from 'ink-testing-library';
|
|
8
|
+
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
|
9
|
+
import { Header } from './Header.js';
|
|
10
|
+
import * as useTerminalSize from '../hooks/useTerminalSize.js';
|
|
11
|
+
import { longAsciiLogo } from './AsciiArt.js';
|
|
12
|
+
|
|
13
|
+
vi.mock('../hooks/useTerminalSize.js');
|
|
14
|
+
|
|
15
|
+
describe('<Header />', () => {
|
|
16
|
+
beforeEach(() => {});
|
|
17
|
+
|
|
18
|
+
it('renders the long logo on a wide terminal', () => {
|
|
19
|
+
vi.spyOn(useTerminalSize, 'useTerminalSize').mockReturnValue({
|
|
20
|
+
columns: 120,
|
|
21
|
+
rows: 20,
|
|
22
|
+
});
|
|
23
|
+
const { lastFrame } = render(<Header version="1.0.0" nightly={false} />);
|
|
24
|
+
expect(lastFrame()).toContain(longAsciiLogo);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it('renders custom ASCII art when provided', () => {
|
|
28
|
+
const customArt = 'CUSTOM ART';
|
|
29
|
+
const { lastFrame } = render(
|
|
30
|
+
<Header version="1.0.0" nightly={false} customAsciiArt={customArt} />,
|
|
31
|
+
);
|
|
32
|
+
expect(lastFrame()).toContain(customArt);
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
it('displays the version number when nightly is true', () => {
|
|
36
|
+
const { lastFrame } = render(<Header version="1.0.0" nightly={true} />);
|
|
37
|
+
expect(lastFrame()).toContain('v1.0.0');
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
it('does not display the version number when nightly is false', () => {
|
|
41
|
+
const { lastFrame } = render(<Header version="1.0.0" nightly={false} />);
|
|
42
|
+
expect(lastFrame()).not.toContain('v1.0.0');
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import { Box, Text } from 'ink';
|
|
9
|
+
import Gradient from 'ink-gradient';
|
|
10
|
+
import { Colors } from '../colors.js';
|
|
11
|
+
import { shortAsciiLogo, longAsciiLogo, tinyAsciiLogo } from './AsciiArt.js';
|
|
12
|
+
import { getAsciiArtWidth } from '../utils/textUtils.js';
|
|
13
|
+
import { useTerminalSize } from '../hooks/useTerminalSize.js';
|
|
14
|
+
|
|
15
|
+
interface HeaderProps {
|
|
16
|
+
customAsciiArt?: string; // For user-defined ASCII art
|
|
17
|
+
version: string;
|
|
18
|
+
nightly: boolean;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export const Header: React.FC<HeaderProps> = ({
|
|
22
|
+
customAsciiArt,
|
|
23
|
+
version,
|
|
24
|
+
nightly,
|
|
25
|
+
}) => {
|
|
26
|
+
const { columns: terminalWidth } = useTerminalSize();
|
|
27
|
+
let displayTitle;
|
|
28
|
+
const widthOfLongLogo = getAsciiArtWidth(longAsciiLogo);
|
|
29
|
+
const widthOfShortLogo = getAsciiArtWidth(shortAsciiLogo);
|
|
30
|
+
|
|
31
|
+
if (customAsciiArt) {
|
|
32
|
+
displayTitle = customAsciiArt;
|
|
33
|
+
} else if (terminalWidth >= widthOfLongLogo) {
|
|
34
|
+
displayTitle = longAsciiLogo;
|
|
35
|
+
} else if (terminalWidth >= widthOfShortLogo) {
|
|
36
|
+
displayTitle = shortAsciiLogo;
|
|
37
|
+
} else {
|
|
38
|
+
displayTitle = tinyAsciiLogo;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const artWidth = getAsciiArtWidth(displayTitle);
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<Box
|
|
45
|
+
alignItems="flex-start"
|
|
46
|
+
width={artWidth}
|
|
47
|
+
flexShrink={0}
|
|
48
|
+
flexDirection="column"
|
|
49
|
+
>
|
|
50
|
+
{Colors.GradientColors ? (
|
|
51
|
+
<Gradient colors={Colors.GradientColors}>
|
|
52
|
+
<Text>{displayTitle}</Text>
|
|
53
|
+
</Gradient>
|
|
54
|
+
) : (
|
|
55
|
+
<Text>{displayTitle}</Text>
|
|
56
|
+
)}
|
|
57
|
+
{nightly && (
|
|
58
|
+
<Box width="100%" flexDirection="row" justifyContent="flex-end">
|
|
59
|
+
{Colors.GradientColors ? (
|
|
60
|
+
<Gradient colors={Colors.GradientColors}>
|
|
61
|
+
<Text>v{version}</Text>
|
|
62
|
+
</Gradient>
|
|
63
|
+
) : (
|
|
64
|
+
<Text>v{version}</Text>
|
|
65
|
+
)}
|
|
66
|
+
</Box>
|
|
67
|
+
)}
|
|
68
|
+
</Box>
|
|
69
|
+
);
|
|
70
|
+
};
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import { Box, Text } from 'ink';
|
|
9
|
+
import { Colors } from '../colors.js';
|
|
10
|
+
import { SlashCommand } from '../commands/types.js';
|
|
11
|
+
|
|
12
|
+
interface Help {
|
|
13
|
+
commands: readonly SlashCommand[];
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export const Help: React.FC<Help> = ({ commands }) => (
|
|
17
|
+
<Box
|
|
18
|
+
flexDirection="column"
|
|
19
|
+
marginBottom={1}
|
|
20
|
+
borderColor={Colors.Gray}
|
|
21
|
+
borderStyle="round"
|
|
22
|
+
padding={1}
|
|
23
|
+
>
|
|
24
|
+
{/* Basics */}
|
|
25
|
+
<Text bold color={Colors.Foreground}>
|
|
26
|
+
Basics:
|
|
27
|
+
</Text>
|
|
28
|
+
<Text color={Colors.Foreground}>
|
|
29
|
+
<Text bold color={Colors.AccentPurple}>
|
|
30
|
+
Add context
|
|
31
|
+
</Text>
|
|
32
|
+
: Use{' '}
|
|
33
|
+
<Text bold color={Colors.AccentPurple}>
|
|
34
|
+
@
|
|
35
|
+
</Text>{' '}
|
|
36
|
+
to specify files for context (e.g.,{' '}
|
|
37
|
+
<Text bold color={Colors.AccentPurple}>
|
|
38
|
+
@src/myFile.ts
|
|
39
|
+
</Text>
|
|
40
|
+
) to target specific files or folders.
|
|
41
|
+
</Text>
|
|
42
|
+
<Text color={Colors.Foreground}>
|
|
43
|
+
<Text bold color={Colors.AccentPurple}>
|
|
44
|
+
Shell mode
|
|
45
|
+
</Text>
|
|
46
|
+
: Execute shell commands via{' '}
|
|
47
|
+
<Text bold color={Colors.AccentPurple}>
|
|
48
|
+
!
|
|
49
|
+
</Text>{' '}
|
|
50
|
+
(e.g.,{' '}
|
|
51
|
+
<Text bold color={Colors.AccentPurple}>
|
|
52
|
+
!npm run start
|
|
53
|
+
</Text>
|
|
54
|
+
) or use natural language (e.g.{' '}
|
|
55
|
+
<Text bold color={Colors.AccentPurple}>
|
|
56
|
+
start server
|
|
57
|
+
</Text>
|
|
58
|
+
).
|
|
59
|
+
</Text>
|
|
60
|
+
|
|
61
|
+
<Box height={1} />
|
|
62
|
+
|
|
63
|
+
{/* Commands */}
|
|
64
|
+
<Text bold color={Colors.Foreground}>
|
|
65
|
+
Commands:
|
|
66
|
+
</Text>
|
|
67
|
+
{commands
|
|
68
|
+
.filter((command) => command.description)
|
|
69
|
+
.map((command: SlashCommand) => (
|
|
70
|
+
<Box key={command.name} flexDirection="column">
|
|
71
|
+
<Text color={Colors.Foreground}>
|
|
72
|
+
<Text bold color={Colors.AccentPurple}>
|
|
73
|
+
{' '}
|
|
74
|
+
/{command.name}
|
|
75
|
+
</Text>
|
|
76
|
+
{command.description && ' - ' + command.description}
|
|
77
|
+
</Text>
|
|
78
|
+
{command.subCommands &&
|
|
79
|
+
command.subCommands.map((subCommand) => (
|
|
80
|
+
<Text key={subCommand.name} color={Colors.Foreground}>
|
|
81
|
+
<Text bold color={Colors.AccentPurple}>
|
|
82
|
+
{' '}
|
|
83
|
+
{subCommand.name}
|
|
84
|
+
</Text>
|
|
85
|
+
{subCommand.description && ' - ' + subCommand.description}
|
|
86
|
+
</Text>
|
|
87
|
+
))}
|
|
88
|
+
</Box>
|
|
89
|
+
))}
|
|
90
|
+
<Text color={Colors.Foreground}>
|
|
91
|
+
<Text bold color={Colors.AccentPurple}>
|
|
92
|
+
{' '}
|
|
93
|
+
!{' '}
|
|
94
|
+
</Text>
|
|
95
|
+
- shell command
|
|
96
|
+
</Text>
|
|
97
|
+
|
|
98
|
+
<Box height={1} />
|
|
99
|
+
|
|
100
|
+
{/* Shortcuts */}
|
|
101
|
+
<Text bold color={Colors.Foreground}>
|
|
102
|
+
Keyboard Shortcuts:
|
|
103
|
+
</Text>
|
|
104
|
+
<Text color={Colors.Foreground}>
|
|
105
|
+
<Text bold color={Colors.AccentPurple}>
|
|
106
|
+
Alt+Left/Right
|
|
107
|
+
</Text>{' '}
|
|
108
|
+
- Jump through words in the input
|
|
109
|
+
</Text>
|
|
110
|
+
<Text color={Colors.Foreground}>
|
|
111
|
+
<Text bold color={Colors.AccentPurple}>
|
|
112
|
+
Ctrl+C
|
|
113
|
+
</Text>{' '}
|
|
114
|
+
- Quit application
|
|
115
|
+
</Text>
|
|
116
|
+
<Text color={Colors.Foreground}>
|
|
117
|
+
<Text bold color={Colors.AccentPurple}>
|
|
118
|
+
{process.platform === 'win32' ? 'Ctrl+Enter' : 'Ctrl+J'}
|
|
119
|
+
</Text>{' '}
|
|
120
|
+
{process.platform === 'linux'
|
|
121
|
+
? '- New line (Alt+Enter works for certain linux distros)'
|
|
122
|
+
: '- New line'}
|
|
123
|
+
</Text>
|
|
124
|
+
<Text color={Colors.Foreground}>
|
|
125
|
+
<Text bold color={Colors.AccentPurple}>
|
|
126
|
+
Ctrl+L
|
|
127
|
+
</Text>{' '}
|
|
128
|
+
- Clear the screen
|
|
129
|
+
</Text>
|
|
130
|
+
<Text color={Colors.Foreground}>
|
|
131
|
+
<Text bold color={Colors.AccentPurple}>
|
|
132
|
+
{process.platform === 'darwin' ? 'Ctrl+X / Meta+Enter' : 'Ctrl+X'}
|
|
133
|
+
</Text>{' '}
|
|
134
|
+
- Open input in external editor
|
|
135
|
+
</Text>
|
|
136
|
+
<Text color={Colors.Foreground}>
|
|
137
|
+
<Text bold color={Colors.AccentPurple}>
|
|
138
|
+
Ctrl+Y
|
|
139
|
+
</Text>{' '}
|
|
140
|
+
- Toggle YOLO mode
|
|
141
|
+
</Text>
|
|
142
|
+
<Text color={Colors.Foreground}>
|
|
143
|
+
<Text bold color={Colors.AccentPurple}>
|
|
144
|
+
Enter
|
|
145
|
+
</Text>{' '}
|
|
146
|
+
- Send message
|
|
147
|
+
</Text>
|
|
148
|
+
<Text color={Colors.Foreground}>
|
|
149
|
+
<Text bold color={Colors.AccentPurple}>
|
|
150
|
+
Esc
|
|
151
|
+
</Text>{' '}
|
|
152
|
+
- Cancel operation
|
|
153
|
+
</Text>
|
|
154
|
+
<Text color={Colors.Foreground}>
|
|
155
|
+
<Text bold color={Colors.AccentPurple}>
|
|
156
|
+
Shift+Tab
|
|
157
|
+
</Text>{' '}
|
|
158
|
+
- Toggle auto-accepting edits
|
|
159
|
+
</Text>
|
|
160
|
+
<Text color={Colors.Foreground}>
|
|
161
|
+
<Text bold color={Colors.AccentPurple}>
|
|
162
|
+
Up/Down
|
|
163
|
+
</Text>{' '}
|
|
164
|
+
- Cycle through your prompt history
|
|
165
|
+
</Text>
|
|
166
|
+
<Box height={1} />
|
|
167
|
+
<Text color={Colors.Foreground}>
|
|
168
|
+
For a full list of shortcuts, see{' '}
|
|
169
|
+
<Text bold color={Colors.AccentPurple}>
|
|
170
|
+
docs/keyboard-shortcuts.md
|
|
171
|
+
</Text>
|
|
172
|
+
</Text>
|
|
173
|
+
</Box>
|
|
174
|
+
);
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { render } from 'ink-testing-library';
|
|
8
|
+
import { describe, it, expect, vi } from 'vitest';
|
|
9
|
+
import { HistoryItemDisplay } from './HistoryItemDisplay.js';
|
|
10
|
+
import { HistoryItem, MessageType } from '../types.js';
|
|
11
|
+
import { SessionStatsProvider } from '../contexts/SessionContext.js';
|
|
12
|
+
|
|
13
|
+
// Mock child components
|
|
14
|
+
vi.mock('./messages/ToolGroupMessage.js', () => ({
|
|
15
|
+
ToolGroupMessage: () => <div />,
|
|
16
|
+
}));
|
|
17
|
+
|
|
18
|
+
describe('<HistoryItemDisplay />', () => {
|
|
19
|
+
const baseItem = {
|
|
20
|
+
id: 1,
|
|
21
|
+
timestamp: 12345,
|
|
22
|
+
isPending: false,
|
|
23
|
+
terminalWidth: 80,
|
|
24
|
+
};
|
|
25
|
+
|
|
26
|
+
it('renders UserMessage for "user" type', () => {
|
|
27
|
+
const item: HistoryItem = {
|
|
28
|
+
...baseItem,
|
|
29
|
+
type: MessageType.USER,
|
|
30
|
+
text: 'Hello',
|
|
31
|
+
};
|
|
32
|
+
const { lastFrame } = render(
|
|
33
|
+
<HistoryItemDisplay {...baseItem} item={item} />,
|
|
34
|
+
);
|
|
35
|
+
expect(lastFrame()).toContain('Hello');
|
|
36
|
+
});
|
|
37
|
+
|
|
38
|
+
it('renders UserMessage for "user" type with slash command', () => {
|
|
39
|
+
const item: HistoryItem = {
|
|
40
|
+
...baseItem,
|
|
41
|
+
type: MessageType.USER,
|
|
42
|
+
text: '/theme',
|
|
43
|
+
};
|
|
44
|
+
const { lastFrame } = render(
|
|
45
|
+
<HistoryItemDisplay {...baseItem} item={item} />,
|
|
46
|
+
);
|
|
47
|
+
expect(lastFrame()).toContain('/theme');
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
it('renders StatsDisplay for "stats" type', () => {
|
|
51
|
+
const item: HistoryItem = {
|
|
52
|
+
...baseItem,
|
|
53
|
+
type: MessageType.STATS,
|
|
54
|
+
duration: '1s',
|
|
55
|
+
};
|
|
56
|
+
const { lastFrame } = render(
|
|
57
|
+
<SessionStatsProvider>
|
|
58
|
+
<HistoryItemDisplay {...baseItem} item={item} />
|
|
59
|
+
</SessionStatsProvider>,
|
|
60
|
+
);
|
|
61
|
+
expect(lastFrame()).toContain('Stats');
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
it('renders AboutBox for "about" type', () => {
|
|
65
|
+
const item: HistoryItem = {
|
|
66
|
+
...baseItem,
|
|
67
|
+
type: MessageType.ABOUT,
|
|
68
|
+
cliVersion: '1.0.0',
|
|
69
|
+
osVersion: 'test-os',
|
|
70
|
+
sandboxEnv: 'test-env',
|
|
71
|
+
modelVersion: 'test-model',
|
|
72
|
+
selectedAuthType: 'test-auth',
|
|
73
|
+
gcpProject: 'test-project',
|
|
74
|
+
ideClient: 'test-ide',
|
|
75
|
+
};
|
|
76
|
+
const { lastFrame } = render(
|
|
77
|
+
<HistoryItemDisplay {...baseItem} item={item} />,
|
|
78
|
+
);
|
|
79
|
+
expect(lastFrame()).toContain('About FSS Link');
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
it('renders ModelStatsDisplay for "model_stats" type', () => {
|
|
83
|
+
const item: HistoryItem = {
|
|
84
|
+
...baseItem,
|
|
85
|
+
type: 'model_stats',
|
|
86
|
+
};
|
|
87
|
+
const { lastFrame } = render(
|
|
88
|
+
<SessionStatsProvider>
|
|
89
|
+
<HistoryItemDisplay {...baseItem} item={item} />
|
|
90
|
+
</SessionStatsProvider>,
|
|
91
|
+
);
|
|
92
|
+
expect(lastFrame()).toContain(
|
|
93
|
+
'No API calls have been made in this session.',
|
|
94
|
+
);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
it('renders ToolStatsDisplay for "tool_stats" type', () => {
|
|
98
|
+
const item: HistoryItem = {
|
|
99
|
+
...baseItem,
|
|
100
|
+
type: 'tool_stats',
|
|
101
|
+
};
|
|
102
|
+
const { lastFrame } = render(
|
|
103
|
+
<SessionStatsProvider>
|
|
104
|
+
<HistoryItemDisplay {...baseItem} item={item} />
|
|
105
|
+
</SessionStatsProvider>,
|
|
106
|
+
);
|
|
107
|
+
expect(lastFrame()).toContain(
|
|
108
|
+
'No tool calls have been made in this session.',
|
|
109
|
+
);
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
it('renders SessionSummaryDisplay for "quit" type', () => {
|
|
113
|
+
const item: HistoryItem = {
|
|
114
|
+
...baseItem,
|
|
115
|
+
type: 'quit',
|
|
116
|
+
duration: '1s',
|
|
117
|
+
};
|
|
118
|
+
const { lastFrame } = render(
|
|
119
|
+
<SessionStatsProvider>
|
|
120
|
+
<HistoryItemDisplay {...baseItem} item={item} />
|
|
121
|
+
</SessionStatsProvider>,
|
|
122
|
+
);
|
|
123
|
+
expect(lastFrame()).toContain('Agent powering down. Goodbye!');
|
|
124
|
+
});
|
|
125
|
+
});
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright 2025 Google LLC
|
|
4
|
+
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import React from 'react';
|
|
8
|
+
import type { HistoryItem } from '../types.js';
|
|
9
|
+
import { UserMessage } from './messages/UserMessage.js';
|
|
10
|
+
import { UserShellMessage } from './messages/UserShellMessage.js';
|
|
11
|
+
import { GeminiMessage } from './messages/GeminiMessage.js';
|
|
12
|
+
import { InfoMessage } from './messages/InfoMessage.js';
|
|
13
|
+
import { ErrorMessage } from './messages/ErrorMessage.js';
|
|
14
|
+
import { ToolGroupMessage } from './messages/ToolGroupMessage.js';
|
|
15
|
+
import { GeminiMessageContent } from './messages/GeminiMessageContent.js';
|
|
16
|
+
import { CompressionMessage } from './messages/CompressionMessage.js';
|
|
17
|
+
import { Box } from 'ink';
|
|
18
|
+
import { AboutBox } from './AboutBox.js';
|
|
19
|
+
import { StatsDisplay } from './StatsDisplay.js';
|
|
20
|
+
import { ModelStatsDisplay } from './ModelStatsDisplay.js';
|
|
21
|
+
import { ToolStatsDisplay } from './ToolStatsDisplay.js';
|
|
22
|
+
import { SessionSummaryDisplay } from './SessionSummaryDisplay.js';
|
|
23
|
+
import { Config } from 'fss-link-core';
|
|
24
|
+
import { Help } from './Help.js';
|
|
25
|
+
import { SlashCommand } from '../commands/types.js';
|
|
26
|
+
|
|
27
|
+
interface HistoryItemDisplayProps {
|
|
28
|
+
item: HistoryItem;
|
|
29
|
+
availableTerminalHeight?: number;
|
|
30
|
+
terminalWidth: number;
|
|
31
|
+
isPending: boolean;
|
|
32
|
+
config?: Config;
|
|
33
|
+
isFocused?: boolean;
|
|
34
|
+
commands?: readonly SlashCommand[];
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const HistoryItemDisplay: React.FC<HistoryItemDisplayProps> = ({
|
|
38
|
+
item,
|
|
39
|
+
availableTerminalHeight,
|
|
40
|
+
terminalWidth,
|
|
41
|
+
isPending,
|
|
42
|
+
config,
|
|
43
|
+
commands,
|
|
44
|
+
isFocused = true,
|
|
45
|
+
}) => (
|
|
46
|
+
<Box flexDirection="column" key={item.id}>
|
|
47
|
+
{/* Render standard message types */}
|
|
48
|
+
{item.type === 'user' && <UserMessage text={item.text} />}
|
|
49
|
+
{item.type === 'user_shell' && <UserShellMessage text={item.text} />}
|
|
50
|
+
{item.type === 'gemini' && (
|
|
51
|
+
<GeminiMessage
|
|
52
|
+
text={item.text}
|
|
53
|
+
isPending={isPending}
|
|
54
|
+
availableTerminalHeight={availableTerminalHeight}
|
|
55
|
+
terminalWidth={terminalWidth}
|
|
56
|
+
/>
|
|
57
|
+
)}
|
|
58
|
+
{item.type === 'gemini_content' && (
|
|
59
|
+
<GeminiMessageContent
|
|
60
|
+
text={item.text}
|
|
61
|
+
isPending={isPending}
|
|
62
|
+
availableTerminalHeight={availableTerminalHeight}
|
|
63
|
+
terminalWidth={terminalWidth}
|
|
64
|
+
/>
|
|
65
|
+
)}
|
|
66
|
+
{item.type === 'info' && <InfoMessage text={item.text} />}
|
|
67
|
+
{item.type === 'error' && <ErrorMessage text={item.text} />}
|
|
68
|
+
{item.type === 'about' && (
|
|
69
|
+
<AboutBox
|
|
70
|
+
cliVersion={item.cliVersion}
|
|
71
|
+
osVersion={item.osVersion}
|
|
72
|
+
sandboxEnv={item.sandboxEnv}
|
|
73
|
+
modelVersion={item.modelVersion}
|
|
74
|
+
selectedAuthType={item.selectedAuthType}
|
|
75
|
+
gcpProject={item.gcpProject}
|
|
76
|
+
ideClient={item.ideClient}
|
|
77
|
+
/>
|
|
78
|
+
)}
|
|
79
|
+
{item.type === 'help' && commands && <Help commands={commands} />}
|
|
80
|
+
{item.type === 'stats' && <StatsDisplay duration={item.duration} />}
|
|
81
|
+
{item.type === 'model_stats' && <ModelStatsDisplay />}
|
|
82
|
+
{item.type === 'tool_stats' && <ToolStatsDisplay />}
|
|
83
|
+
{item.type === 'quit' && <SessionSummaryDisplay duration={item.duration} />}
|
|
84
|
+
{item.type === 'tool_group' && (
|
|
85
|
+
<ToolGroupMessage
|
|
86
|
+
toolCalls={item.tools}
|
|
87
|
+
groupId={item.id}
|
|
88
|
+
availableTerminalHeight={availableTerminalHeight}
|
|
89
|
+
terminalWidth={terminalWidth}
|
|
90
|
+
config={config}
|
|
91
|
+
isFocused={isFocused}
|
|
92
|
+
/>
|
|
93
|
+
)}
|
|
94
|
+
{item.type === 'compression' && (
|
|
95
|
+
<CompressionMessage compression={item.compression} />
|
|
96
|
+
)}
|
|
97
|
+
</Box>
|
|
98
|
+
);
|