diff --git a/src/renderer/components/extensions/ExtensionStoreView.tsx b/src/renderer/components/extensions/ExtensionStoreView.tsx index ffc9ff4c..dfb2355d 100644 --- a/src/renderer/components/extensions/ExtensionStoreView.tsx +++ b/src/renderer/components/extensions/ExtensionStoreView.tsx @@ -100,21 +100,21 @@ export const ExtensionStoreView = (): React.JSX.Element => { label: 'Plugins', icon: Puzzle, description: - 'Small add-ons for Claude. They give the app extra features and integrations you can install when you need them.', + 'Small add-ons for the runtime. In multimodel mode they currently apply to Anthropic sessions when supported.', }, { value: 'mcp-servers' as const, label: 'MCP Servers', icon: Server, description: - 'Connections to outside tools and apps. They let Claude read data or do actions beyond this app.', + 'Connections to outside tools and apps. They let the runtime read data or do actions beyond this app.', }, { value: 'skills' as const, label: 'Skills', icon: BookOpen, description: - 'Ready-made instructions for common jobs. They help Claude do specific tasks better and more consistently.', + 'Ready-made instructions for common jobs. They help the runtime handle repeatable tasks more consistently.', }, { value: 'api-keys' as const, diff --git a/src/renderer/components/extensions/mcp/McpServersPanel.tsx b/src/renderer/components/extensions/mcp/McpServersPanel.tsx index 657dc359..46249a10 100644 --- a/src/renderer/components/extensions/mcp/McpServersPanel.tsx +++ b/src/renderer/components/extensions/mcp/McpServersPanel.tsx @@ -385,10 +385,15 @@ export const McpServersPanel = ({
Claude CLI not installed
++ {cliStatus?.flavor === 'agent_teams_orchestrator' + ? 'Configured runtime not available' + : 'Claude CLI not installed'} +
- MCP health checks require Claude CLI. Go to the Dashboard to install it - automatically. + {cliStatus?.flavor === 'agent_teams_orchestrator' + ? 'MCP health checks require the configured runtime. Go to the Dashboard to install or repair it.' + : 'MCP health checks require Claude CLI. Go to the Dashboard to install or repair it.'}
- Skills are reusable instructions that help Claude handle the same kind of task more - consistently.{' '} + Skills are reusable instructions that help the runtime handle the same kind of task + more consistently.{' '} {projectPath ? `You are seeing skills for ${projectLabel ?? projectPath} plus your personal skills.` : 'You are seeing only your personal skills right now.'} @@ -428,7 +428,7 @@ export const SkillsPanel = ({
{skillsSearchQuery ? 'Try a different search term or switch filters.' - : 'Create your first skill to teach Claude a repeatable workflow, or import one you already use.'} + : 'Create your first skill to teach a repeatable workflow, or import one you already use.'}
- Habits and instructions you want Claude to remember everywhere. + Habits and instructions you want available everywhere.