From 9d291d3efb4d584337a3edd374cf7d62f530e706 Mon Sep 17 00:00:00 2001 From: Haileyesus <118998054+blackmammoth@users.noreply.github.com> Date: Fri, 29 May 2026 20:56:15 +0300 Subject: [PATCH] fix: install claude watch adapter plugin --- .../plugins/view/PluginSettingsTab.tsx | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/src/components/plugins/view/PluginSettingsTab.tsx b/src/components/plugins/view/PluginSettingsTab.tsx index 106a7511..72de671b 100644 --- a/src/components/plugins/view/PluginSettingsTab.tsx +++ b/src/components/plugins/view/PluginSettingsTab.tsx @@ -25,7 +25,7 @@ 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'; const SCHEDULED_PROMPT_PLUGIN_URL = 'https://github.com/grostim/cloudcli-cron'; -const CLAUDE_WATCH_PLUGIN_URL = 'https://github.com/satsuki19980613/claude-watch'; +const CLAUDE_WATCH_PLUGIN_URL = 'https://github.com/satsuki19980613/cloudcli-claude-watch'; type PluginRecommendation = { id: string; @@ -57,10 +57,10 @@ const OFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [ const UNOFFICIAL_PLUGIN_RECOMMENDATIONS: PluginRecommendation[] = [ { - id: 'claude-watch', + id: 'cloudcli-claude-watch', translationKey: 'claudeWatchPlugin', repoUrl: CLAUDE_WATCH_PLUGIN_URL, - installedNames: ['claude-watch'], + installedNames: ['cloudcli-claude-watch'], icon: Activity, source: 'unofficial', }, @@ -320,10 +320,12 @@ function RecommendationSection({ function PluginRecommendationCard({ recommendation, onInstall, + disabled, installing, }: { recommendation: PluginRecommendation; onInstall: () => void; + disabled: boolean; installing: boolean; }) { const { t } = useTranslation('settings'); @@ -367,7 +369,7 @@ function PluginRecommendationCard({