feat(ui): add Workspace chat to command palette

Static action opens /chat for quick navigation from the palette.

Made-with: Cursor
This commit is contained in:
Saravana Achu Mac 2026-03-31 13:05:46 -07:00
parent 32b5e1cd6c
commit f8a50cdd95

View File

@ -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" },