diff --git a/src/components/plugins/view/PluginSettingsTab.tsx b/src/components/plugins/view/PluginSettingsTab.tsx index 81d947a0..a411b94c 100644 --- a/src/components/plugins/view/PluginSettingsTab.tsx +++ b/src/components/plugins/view/PluginSettingsTab.tsx @@ -6,6 +6,7 @@ import type { Plugin } from '../../../contexts/PluginsContext'; import PluginIcon from './PluginIcon'; const STARTER_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-starter'; +const TERMINAL_PLUGIN_URL = 'https://github.com/cloudcli-ai/cloudcli-plugin-terminal'; /* ─── Toggle Switch ─────────────────────────────────────────────────────── */ function ToggleSwitch({ checked, onChange, ariaLabel }: { checked: boolean; onChange: (v: boolean) => void; ariaLabel: string }) { @@ -264,6 +265,67 @@ function StarterPluginCard({ onInstall, installing }: { onInstall: () => void; i ); } +/* ─── Terminal Plugin Card ──────────────────────────────────────────────── */ +function TerminalPluginCard({ onInstall, installing }: { onInstall: () => void; installing: boolean }) { + const { t } = useTranslation('settings'); + + return ( +
+ {t('pluginSettings.terminalPlugin.description')} +
+ +