Merge pull request #75822 from NousResearch/bb/cmdk-plugins

feat(desktop): open Plugins from Cmd+K
This commit is contained in:
brooklyn! 2026-07-31 22:55:28 -05:00 committed by GitHub
commit 8555c6d67a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 1 deletions

View File

@ -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' }
]