From 696c2e82655f05f21fd67408b35f5cc8a31b42a2 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Fri, 31 Jul 2026 22:49:07 -0500 Subject: [PATCH] feat(desktop): open Plugins from the command palette Settings Plugins was missing from cmd+K Settings group. Add the deep-link row next to the other non-config tabs so typing plugins lands on the page. --- apps/desktop/src/app/command-palette/index.tsx | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) 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' } ]