From c70ebfe9a53fffaf7ed109a8409ba6b21397e0cf Mon Sep 17 00:00:00 2001 From: 777genius Date: Fri, 17 Apr 2026 21:36:16 +0300 Subject: [PATCH] fix(extensions): clarify multimodel plugin roadmap --- src/renderer/components/extensions/ExtensionStoreView.tsx | 2 +- src/renderer/components/extensions/plugins/PluginsPanel.tsx | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/renderer/components/extensions/ExtensionStoreView.tsx b/src/renderer/components/extensions/ExtensionStoreView.tsx index a7ff89d2..a1677a31 100644 --- a/src/renderer/components/extensions/ExtensionStoreView.tsx +++ b/src/renderer/components/extensions/ExtensionStoreView.tsx @@ -162,7 +162,7 @@ export const ExtensionStoreView = (): React.JSX.Element => { label: 'Plugins', icon: Puzzle, description: - 'Small add-ons for the runtime. In multimodel mode they currently apply to Anthropic sessions when supported.', + 'Small add-ons for the runtime. In multimodel mode they currently apply to Anthropic sessions when supported. Broader provider support is in development.', }, { value: 'mcp-servers' as const, diff --git a/src/renderer/components/extensions/plugins/PluginsPanel.tsx b/src/renderer/components/extensions/plugins/PluginsPanel.tsx index 10859fde..1f846423 100644 --- a/src/renderer/components/extensions/plugins/PluginsPanel.tsx +++ b/src/renderer/components/extensions/plugins/PluginsPanel.tsx @@ -192,7 +192,8 @@ export const PluginsPanel = ({ return (
- In the multimodel runtime, plugins currently apply only to Anthropic sessions. + In the multimodel runtime, plugins currently apply only to Anthropic sessions. Broader + plugin support across providers is in development. {capability.reason ? ` ${capability.reason}` : ''}
);