diff --git a/apps/desktop/src/app/command-palette/index.tsx b/apps/desktop/src/app/command-palette/index.tsx index df8f2e9717f53..ce9f0149e5059 100644 --- a/apps/desktop/src/app/command-palette/index.tsx +++ b/apps/desktop/src/app/command-palette/index.tsx @@ -385,7 +385,15 @@ const toSessionEntry = (session: SessionRow): SessionEntry => ({ }) type NonConfigSettingsLabel = - 'about' | 'archivedChats' | 'gateway' | 'keysSettings' | 'keysTools' | 'mcp' | 'providerAccounts' | 'providerApiKeys' + | 'about' + | 'archivedChats' + | 'gateway' + | 'keysSettings' + | 'keysTools' + | 'mcp' + | 'plugins' + | 'providerAccounts' + | 'providerApiKeys' const NON_CONFIG_SETTINGS: ReadonlyArray<{ icon: IconComponent @@ -418,6 +426,12 @@ const NON_CONFIG_SETTINGS: ReadonlyArray<{ labelKey: 'keysSettings', tab: 'keys&kview=settings' }, + { + icon: Package, + keywords: ['plugins', 'extensions', 'desktop plugins', 'addon', 'add-on'], + labelKey: 'plugins', + tab: 'plugins' + }, { icon: Archive, keywords: ['history', 'archived'], labelKey: 'archivedChats', tab: 'sessions' }, { icon: Info, keywords: ['version', 'about'], labelKey: 'about', tab: 'about' } ]