From f8a50cdd95c8fcdba6a948bd4453ea40967f9498 Mon Sep 17 00:00:00 2001 From: Saravana Achu Mac Date: Tue, 31 Mar 2026 13:05:46 -0700 Subject: [PATCH] feat(ui): add Workspace chat to command palette Static action opens /chat for quick navigation from the palette. Made-with: Cursor --- web/src/components/CommandPalette.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/web/src/components/CommandPalette.tsx b/web/src/components/CommandPalette.tsx index 4dbe53d..5290171 100644 --- a/web/src/components/CommandPalette.tsx +++ b/web/src/components/CommandPalette.tsx @@ -15,6 +15,7 @@ type PaletteItem = const STATIC_ACTIONS: PaletteItem[] = [ { kind: "action", id: "a-dash", label: "Dashboard", hint: "Home", href: "/dashboard" }, { kind: "action", id: "a-search", label: "Search", hint: "Find notes", href: "/search" }, + { kind: "action", id: "a-chat", label: "Workspace chat", hint: "Ask over your notes", href: "/chat" }, { kind: "action", id: "a-reviews", label: "Reviews", hint: "Agent approvals", href: "/reviews" }, { kind: "action", id: "a-ws", label: "Workspaces", hint: "All workspaces", href: "/workspaces" }, { kind: "action", id: "a-settings", label: "Settings", hint: "Account", href: "/settings" },