@agent-relay/dashboard 2.0.80 → 2.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (244) hide show
  1. package/out/404.html +1 -1
  2. package/out/_next/static/chunks/{118-4c8241b0218335de.js → 118-ae2b650136a5a5fc.js} +1 -1
  3. package/out/_next/static/chunks/407-0c82986cf79c8ecb.js +1 -0
  4. package/out/_next/static/chunks/app/app/[[...slug]]/{page-1e81c047cff17212.js → page-f7eca1b66fb4249b.js} +1 -1
  5. package/out/_next/static/chunks/app/{page-6892fe2dd07fb48b.js → page-0ee604f7070d14c0.js} +1 -1
  6. package/out/_next/static/css/8968d98ed4c4d33f.css +1 -0
  7. package/out/about.html +2 -2
  8. package/out/about.txt +1 -1
  9. package/out/app/onboarding.html +1 -1
  10. package/out/app/onboarding.txt +1 -1
  11. package/out/app.html +1 -1
  12. package/out/app.txt +2 -2
  13. package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +2 -2
  14. package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
  15. package/out/blog/let-them-cook-multi-agent-orchestration.html +2 -2
  16. package/out/blog/let-them-cook-multi-agent-orchestration.txt +2 -2
  17. package/out/blog.html +2 -2
  18. package/out/blog.txt +1 -1
  19. package/out/careers.html +2 -2
  20. package/out/careers.txt +1 -1
  21. package/out/changelog.html +2 -2
  22. package/out/changelog.txt +1 -1
  23. package/out/cloud/link.html +1 -1
  24. package/out/cloud/link.txt +2 -2
  25. package/out/complete-profile.html +2 -2
  26. package/out/complete-profile.txt +1 -1
  27. package/out/connect-repos.html +1 -1
  28. package/out/connect-repos.txt +1 -1
  29. package/out/contact.html +2 -2
  30. package/out/contact.txt +1 -1
  31. package/out/docs.html +2 -2
  32. package/out/docs.txt +1 -1
  33. package/out/history.html +1 -1
  34. package/out/history.txt +2 -2
  35. package/out/index.html +1 -1
  36. package/out/index.txt +2 -2
  37. package/out/login.html +2 -2
  38. package/out/login.txt +1 -1
  39. package/out/metrics.html +1 -1
  40. package/out/metrics.txt +2 -2
  41. package/out/pricing.html +2 -2
  42. package/out/pricing.txt +1 -1
  43. package/out/privacy.html +2 -2
  44. package/out/privacy.txt +1 -1
  45. package/out/providers/setup/claude.html +1 -1
  46. package/out/providers/setup/claude.txt +1 -1
  47. package/out/providers/setup/codex.html +1 -1
  48. package/out/providers/setup/codex.txt +1 -1
  49. package/out/providers/setup/cursor.html +1 -1
  50. package/out/providers/setup/cursor.txt +1 -1
  51. package/out/providers.html +1 -1
  52. package/out/providers.txt +1 -1
  53. package/out/security.html +2 -2
  54. package/out/security.txt +1 -1
  55. package/out/signup.html +2 -2
  56. package/out/signup.txt +1 -1
  57. package/out/terms.html +2 -2
  58. package/out/terms.txt +1 -1
  59. package/package.json +7 -1
  60. package/src/app/about/page.tsx +7 -0
  61. package/src/app/app/[[...slug]]/DashboardPageClient.tsx +853 -0
  62. package/src/app/app/[[...slug]]/page.tsx +23 -0
  63. package/src/app/app/onboarding/page.tsx +394 -0
  64. package/src/app/apple-icon.png +0 -0
  65. package/src/app/blog/go-to-bed-wake-up-to-a-finished-product/page.tsx +88 -0
  66. package/src/app/blog/let-them-cook-multi-agent-orchestration/page.tsx +93 -0
  67. package/src/app/blog/page.tsx +15 -0
  68. package/src/app/careers/page.tsx +7 -0
  69. package/src/app/changelog/page.tsx +7 -0
  70. package/src/app/cloud/link/page.tsx +464 -0
  71. package/src/app/complete-profile/page.tsx +204 -0
  72. package/src/app/connect-repos/page.tsx +410 -0
  73. package/src/app/contact/page.tsx +7 -0
  74. package/src/app/docs/page.tsx +7 -0
  75. package/src/app/favicon.png +0 -0
  76. package/src/app/globals.css +200 -0
  77. package/src/app/history/page.tsx +658 -0
  78. package/src/app/layout.tsx +25 -0
  79. package/src/app/login/page.tsx +424 -0
  80. package/src/app/metrics/page.tsx +781 -0
  81. package/src/app/page.tsx +59 -0
  82. package/src/app/pricing/page.tsx +7 -0
  83. package/src/app/privacy/page.tsx +7 -0
  84. package/src/app/providers/page.tsx +193 -0
  85. package/src/app/providers/setup/[provider]/ProviderSetupClient.tsx +197 -0
  86. package/src/app/providers/setup/[provider]/constants.ts +35 -0
  87. package/src/app/providers/setup/[provider]/page.tsx +42 -0
  88. package/src/app/security/page.tsx +7 -0
  89. package/src/app/signup/page.tsx +533 -0
  90. package/src/app/terms/page.tsx +7 -0
  91. package/src/components/ActivityFeed.tsx +216 -0
  92. package/src/components/AddWorkspaceModal.tsx +170 -0
  93. package/src/components/AgentCard.test.tsx +134 -0
  94. package/src/components/AgentCard.tsx +585 -0
  95. package/src/components/AgentList.test.tsx +147 -0
  96. package/src/components/AgentList.tsx +419 -0
  97. package/src/components/AgentLogPreview.tsx +173 -0
  98. package/src/components/AgentProfilePanel.tsx +569 -0
  99. package/src/components/App.tsx +3424 -0
  100. package/src/components/BillingPanel.tsx +922 -0
  101. package/src/components/BillingResult.tsx +447 -0
  102. package/src/components/BroadcastComposer.tsx +690 -0
  103. package/src/components/ChannelAdminPanel.tsx +773 -0
  104. package/src/components/ChannelBrowser.tsx +385 -0
  105. package/src/components/ChannelChat.tsx +261 -0
  106. package/src/components/ChannelSidebar.tsx +399 -0
  107. package/src/components/CloudSessionProvider.tsx +130 -0
  108. package/src/components/CommandPalette.tsx +815 -0
  109. package/src/components/ConfirmationDialog.tsx +133 -0
  110. package/src/components/ConversationHistory.tsx +518 -0
  111. package/src/components/CoordinatorPanel.tsx +956 -0
  112. package/src/components/DecisionQueue.tsx +717 -0
  113. package/src/components/DirectMessageView.tsx +164 -0
  114. package/src/components/FileAutocomplete.tsx +368 -0
  115. package/src/components/FleetOverview.tsx +278 -0
  116. package/src/components/LogViewer.tsx +310 -0
  117. package/src/components/LogViewerPanel.tsx +482 -0
  118. package/src/components/Logo.tsx +284 -0
  119. package/src/components/MentionAutocomplete.tsx +384 -0
  120. package/src/components/MessageComposer.tsx +473 -0
  121. package/src/components/MessageList.tsx +725 -0
  122. package/src/components/MessageSenderName.tsx +91 -0
  123. package/src/components/MessageStatusIndicator.tsx +142 -0
  124. package/src/components/NewConversationModal.tsx +400 -0
  125. package/src/components/NotificationToast.tsx +488 -0
  126. package/src/components/OnlineUsersIndicator.tsx +164 -0
  127. package/src/components/Pagination.tsx +124 -0
  128. package/src/components/PricingPlans.tsx +386 -0
  129. package/src/components/ProjectList.tsx +711 -0
  130. package/src/components/ProviderAuthFlow.tsx +343 -0
  131. package/src/components/ProviderConnectionList.tsx +375 -0
  132. package/src/components/ProvisioningProgress.tsx +730 -0
  133. package/src/components/ReactionChips.tsx +70 -0
  134. package/src/components/ReactionPicker.tsx +121 -0
  135. package/src/components/RepoAccessPanel.tsx +787 -0
  136. package/src/components/RepositoriesPanel.tsx +901 -0
  137. package/src/components/ServerCard.tsx +202 -0
  138. package/src/components/SessionExpiredModal.tsx +128 -0
  139. package/src/components/SpawnModal.test.tsx +190 -0
  140. package/src/components/SpawnModal.tsx +1001 -0
  141. package/src/components/TaskAssignmentUI.tsx +375 -0
  142. package/src/components/TerminalProviderSetup.tsx +517 -0
  143. package/src/components/ThemeProvider.tsx +159 -0
  144. package/src/components/ThinkingIndicator.tsx +231 -0
  145. package/src/components/ThreadList.tsx +198 -0
  146. package/src/components/ThreadPanel.tsx +405 -0
  147. package/src/components/TrajectoryViewer.tsx +698 -0
  148. package/src/components/TypingIndicator.tsx +69 -0
  149. package/src/components/UsageBanner.tsx +231 -0
  150. package/src/components/UserProfilePanel.tsx +233 -0
  151. package/src/components/WorkspaceContext.tsx +95 -0
  152. package/src/components/WorkspaceSelector.tsx +234 -0
  153. package/src/components/WorkspaceStatusIndicator.tsx +396 -0
  154. package/src/components/XTermInteractive.tsx +516 -0
  155. package/src/components/XTermLogViewer.tsx +719 -0
  156. package/src/components/channels/ChannelDialogs.tsx +1411 -0
  157. package/src/components/channels/ChannelHeader.tsx +317 -0
  158. package/src/components/channels/ChannelMessageList.tsx +463 -0
  159. package/src/components/channels/ChannelViewV1.tsx +146 -0
  160. package/src/components/channels/MessageInput.tsx +302 -0
  161. package/src/components/channels/SearchInput.tsx +172 -0
  162. package/src/components/channels/SearchResults.tsx +336 -0
  163. package/src/components/channels/api.test.ts +1527 -0
  164. package/src/components/channels/api.ts +703 -0
  165. package/src/components/channels/index.ts +76 -0
  166. package/src/components/channels/mockApi.ts +344 -0
  167. package/src/components/channels/types.ts +566 -0
  168. package/src/components/hooks/index.ts +58 -0
  169. package/src/components/hooks/useAgentLogs.ts +504 -0
  170. package/src/components/hooks/useAgents.ts +127 -0
  171. package/src/components/hooks/useBroadcastDedup.test.ts +371 -0
  172. package/src/components/hooks/useBroadcastDedup.ts +86 -0
  173. package/src/components/hooks/useChannelAdmin.ts +329 -0
  174. package/src/components/hooks/useChannelBrowser.ts +239 -0
  175. package/src/components/hooks/useChannelCommands.ts +138 -0
  176. package/src/components/hooks/useChannels.ts +367 -0
  177. package/src/components/hooks/useDebounce.ts +29 -0
  178. package/src/components/hooks/useDirectMessage.test.ts +952 -0
  179. package/src/components/hooks/useDirectMessage.ts +141 -0
  180. package/src/components/hooks/useMessages.ts +310 -0
  181. package/src/components/hooks/useOrchestrator.test.ts +165 -0
  182. package/src/components/hooks/useOrchestrator.ts +424 -0
  183. package/src/components/hooks/usePinnedAgents.test.ts +356 -0
  184. package/src/components/hooks/usePinnedAgents.ts +140 -0
  185. package/src/components/hooks/usePresence.test.ts +245 -0
  186. package/src/components/hooks/usePresence.ts +377 -0
  187. package/src/components/hooks/useRecentRepos.ts +130 -0
  188. package/src/components/hooks/useSession.ts +209 -0
  189. package/src/components/hooks/useThread.ts +138 -0
  190. package/src/components/hooks/useTrajectory.ts +265 -0
  191. package/src/components/hooks/useWebSocket.ts +290 -0
  192. package/src/components/hooks/useWorkspaceMembers.ts +132 -0
  193. package/src/components/hooks/useWorkspaceRepos.ts +73 -0
  194. package/src/components/hooks/useWorkspaceStatus.ts +237 -0
  195. package/src/components/index.ts +81 -0
  196. package/src/components/layout/Header.tsx +311 -0
  197. package/src/components/layout/RepoContextHeader.tsx +361 -0
  198. package/src/components/layout/Sidebar.archive.test.tsx +126 -0
  199. package/src/components/layout/Sidebar.test.tsx +691 -0
  200. package/src/components/layout/Sidebar.tsx +900 -0
  201. package/src/components/layout/index.ts +7 -0
  202. package/src/components/settings/BillingSettingsPanel.tsx +564 -0
  203. package/src/components/settings/SettingsPage.tsx +683 -0
  204. package/src/components/settings/TeamSettingsPanel.tsx +560 -0
  205. package/src/components/settings/WorkspaceSettingsPanel.tsx +1368 -0
  206. package/src/components/settings/index.ts +11 -0
  207. package/src/components/settings/types.ts +79 -0
  208. package/src/components/utils/messageFormatting.test.tsx +331 -0
  209. package/src/components/utils/messageFormatting.tsx +597 -0
  210. package/src/index.ts +63 -0
  211. package/src/landing/AboutPage.tsx +77 -0
  212. package/src/landing/BlogContent.tsx +187 -0
  213. package/src/landing/BlogPage.tsx +47 -0
  214. package/src/landing/CareersPage.tsx +53 -0
  215. package/src/landing/ChangelogPage.tsx +33 -0
  216. package/src/landing/ContactPage.tsx +41 -0
  217. package/src/landing/DocsPage.tsx +43 -0
  218. package/src/landing/LandingPage.tsx +702 -0
  219. package/src/landing/PricingPage.tsx +549 -0
  220. package/src/landing/PrivacyPage.tsx +117 -0
  221. package/src/landing/SecurityPage.tsx +42 -0
  222. package/src/landing/StaticPage.tsx +165 -0
  223. package/src/landing/TermsPage.tsx +125 -0
  224. package/src/landing/blogData.ts +312 -0
  225. package/src/landing/index.ts +18 -0
  226. package/src/landing/styles.css +3673 -0
  227. package/src/lib/agent-merge.test.ts +43 -0
  228. package/src/lib/agent-merge.ts +35 -0
  229. package/src/lib/api.ts +1294 -0
  230. package/src/lib/cloudApi.ts +893 -0
  231. package/src/lib/colors.test.ts +175 -0
  232. package/src/lib/colors.ts +218 -0
  233. package/src/lib/config.ts +109 -0
  234. package/src/lib/hierarchy.ts +242 -0
  235. package/src/lib/stuckDetection.ts +142 -0
  236. package/src/lib/useUrlRouting.ts +190 -0
  237. package/src/types/index.ts +317 -0
  238. package/src/types/threading.ts +7 -0
  239. package/out/_next/static/chunks/285-dc644487a8d6500d.js +0 -1
  240. package/out/_next/static/css/4c58d9cf493aa626.css +0 -1
  241. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
  242. /package/out/_next/static/{AqelRhy1vr2nBUcU0Iqcp → IxfA6RZu4trcsEMYlkQra}/_ssgManifest.js +0 -0
  243. /package/out/_next/static/chunks/{528-d375bc8b46912d2c.js → 528-f5f676996d613c25.js} +0 -0
  244. /package/out/_next/static/chunks/app/blog/let-them-cook-multi-agent-orchestration/{page-a58308f43557b908.js → page-b194f207fbd91862.js} +0 -0
@@ -0,0 +1,815 @@
1
+ /**
2
+ * CommandPalette Component
3
+ *
4
+ * A Slack/VS Code-style command palette with fuzzy search,
5
+ * keyboard navigation, and categorized commands.
6
+ * Includes inline task assignment flow that creates beads.
7
+ */
8
+
9
+ import React, { useState, useRef, useEffect, useCallback, useMemo } from 'react';
10
+ import type { Agent, Project } from '../types';
11
+ import { getAgentColor, getAgentInitials } from '../lib/colors';
12
+
13
+ export interface Command {
14
+ id: string;
15
+ label: string;
16
+ description?: string;
17
+ category: 'agents' | 'actions' | 'navigation' | 'settings' | 'projects' | 'channels';
18
+ icon?: React.ReactNode;
19
+ shortcut?: string;
20
+ action: () => void;
21
+ }
22
+
23
+ export type TaskPriority = 'critical' | 'high' | 'medium' | 'low';
24
+
25
+ export interface TaskCreateRequest {
26
+ agentName: string;
27
+ title: string;
28
+ priority: TaskPriority;
29
+ }
30
+
31
+ const CATEGORY_ORDER = ['projects', 'agents', 'actions', 'channels', 'navigation', 'settings'] as const;
32
+
33
+ export const PRIORITY_CONFIG: Record<TaskPriority, { label: string; beadsPriority: number; color: string }> = {
34
+ critical: { label: 'Critical', beadsPriority: 0, color: '#ef4444' },
35
+ high: { label: 'High', beadsPriority: 1, color: '#f97316' },
36
+ medium: { label: 'Medium', beadsPriority: 2, color: '#f59e0b' },
37
+ low: { label: 'Low', beadsPriority: 3, color: '#6366f1' },
38
+ };
39
+
40
+ export interface CommandPaletteProps {
41
+ isOpen: boolean;
42
+ onClose: () => void;
43
+ agents: Agent[];
44
+ projects?: Project[];
45
+ currentProject?: string;
46
+ onAgentSelect: (agent: Agent) => void;
47
+ onProjectSelect?: (project: Project) => void;
48
+ onSpawnClick: () => void;
49
+ onTaskAssignClick?: () => void;
50
+ onTaskCreate?: (task: TaskCreateRequest) => Promise<void>;
51
+ onSettingsClick?: () => void;
52
+ onGeneralClick?: () => void;
53
+ customCommands?: Command[];
54
+ }
55
+
56
+ export function CommandPalette(props: CommandPaletteProps) {
57
+ if (!props.isOpen) return null;
58
+ return <CommandPaletteContent {...props} />;
59
+ }
60
+
61
+ type PaletteMode = 'search' | 'task-select-agent' | 'task-details';
62
+
63
+ function CommandPaletteContent({
64
+ onClose,
65
+ agents,
66
+ projects = [],
67
+ currentProject,
68
+ onAgentSelect,
69
+ onProjectSelect,
70
+ onSpawnClick,
71
+ onTaskCreate,
72
+ onSettingsClick,
73
+ onGeneralClick,
74
+ customCommands = [],
75
+ }: CommandPaletteProps) {
76
+ const [query, setQuery] = useState('');
77
+ const [selectedIndex, setSelectedIndex] = useState(0);
78
+ const [activeCategory, setActiveCategory] = useState<typeof CATEGORY_ORDER[number] | null>(null);
79
+ const selectedIndexRef = useRef(selectedIndex);
80
+ const inputRef = useRef<HTMLInputElement>(null);
81
+ const listRef = useRef<HTMLDivElement>(null);
82
+ const itemRefs = useRef<(HTMLButtonElement | null)[]>([]);
83
+
84
+ // Task assignment mode state
85
+ const [mode, setMode] = useState<PaletteMode>('search');
86
+ const [taskAgent, setTaskAgent] = useState<Agent | null>(null);
87
+ const [taskTitle, setTaskTitle] = useState('');
88
+ const [taskPriority, setTaskPriority] = useState<TaskPriority>('medium');
89
+ const [isSubmitting, setIsSubmitting] = useState(false);
90
+
91
+ // Available agents for task assignment (exclude offline)
92
+ const availableAgents = useMemo(() => {
93
+ return agents.filter((a) => a.status !== 'offline' && a.status !== 'error');
94
+ }, [agents]);
95
+
96
+ // Filter agents based on query in task-select-agent mode
97
+ const filteredAgents = useMemo(() => {
98
+ if (!query.trim()) return availableAgents;
99
+ const lowerQuery = query.toLowerCase();
100
+ return availableAgents.filter((a) => a.name.toLowerCase().includes(lowerQuery));
101
+ }, [availableAgents, query]);
102
+
103
+ // Reset task state when entering task mode
104
+ const enterTaskMode = useCallback(() => {
105
+ setMode('task-select-agent');
106
+ setQuery('');
107
+ setSelectedIndex(0);
108
+ setTaskAgent(null);
109
+ setTaskTitle('');
110
+ setTaskPriority('medium');
111
+ }, []);
112
+
113
+ // Handle task submission
114
+ const handleTaskSubmit = useCallback(async () => {
115
+ if (!taskAgent || !taskTitle.trim() || !onTaskCreate) return;
116
+
117
+ setIsSubmitting(true);
118
+ try {
119
+ await onTaskCreate({
120
+ agentName: taskAgent.name,
121
+ title: taskTitle.trim(),
122
+ priority: taskPriority,
123
+ });
124
+ onClose();
125
+ } catch (err) {
126
+ console.error('Failed to create task:', err);
127
+ } finally {
128
+ setIsSubmitting(false);
129
+ }
130
+ }, [taskAgent, taskTitle, taskPriority, onTaskCreate, onClose]);
131
+
132
+ // Keep ref in sync with state
133
+ useEffect(() => {
134
+ selectedIndexRef.current = selectedIndex;
135
+ }, [selectedIndex]);
136
+
137
+ // Build command list
138
+ const commands = useMemo(() => {
139
+ // Sort projects: current project first, then alphabetically
140
+ const sortedProjects = [...projects].sort((a, b) => {
141
+ const aIsCurrent = a.id === currentProject;
142
+ const bIsCurrent = b.id === currentProject;
143
+ if (aIsCurrent && !bIsCurrent) return -1;
144
+ if (!aIsCurrent && bIsCurrent) return 1;
145
+ const aName = a.name || a.path.split('/').pop() || a.id;
146
+ const bName = b.name || b.path.split('/').pop() || b.id;
147
+ return aName.localeCompare(bName);
148
+ });
149
+
150
+ const cmds: Command[] = [
151
+ ...sortedProjects.map((project) => {
152
+ const displayName = project.name || project.path.split('/').pop() || project.id;
153
+ const isCurrent = project.id === currentProject;
154
+ return {
155
+ id: `project-${project.id}`,
156
+ label: displayName,
157
+ description: isCurrent
158
+ ? `Current project • ${project.agents.length} agents`
159
+ : `${project.agents.length} agents`,
160
+ category: 'projects' as const,
161
+ icon: isCurrent ? <CurrentProjectIcon /> : <FolderIcon />,
162
+ action: () => {
163
+ onProjectSelect?.(project);
164
+ onClose();
165
+ },
166
+ };
167
+ }),
168
+ ...agents.map((agent) => ({
169
+ id: `agent-${agent.name}`,
170
+ label: agent.name,
171
+ description: agent.currentTask || agent.status,
172
+ category: 'agents' as const,
173
+ icon: <AgentIcon name={agent.name} />,
174
+ action: () => {
175
+ onAgentSelect(agent);
176
+ onClose();
177
+ },
178
+ })),
179
+ {
180
+ id: 'spawn-agent',
181
+ label: 'Spawn Agent',
182
+ description: 'Launch a new agent instance',
183
+ category: 'actions',
184
+ icon: <PlusIcon />,
185
+ shortcut: '⌘⇧S',
186
+ action: () => {
187
+ onSpawnClick();
188
+ onClose();
189
+ },
190
+ },
191
+ {
192
+ id: 'broadcast',
193
+ label: 'Broadcast Message',
194
+ description: 'Send message to all agents',
195
+ category: 'actions',
196
+ icon: <BroadcastIcon />,
197
+ action: () => {
198
+ onClose();
199
+ },
200
+ },
201
+ ...(onTaskCreate
202
+ ? [
203
+ {
204
+ id: 'assign-task',
205
+ label: 'Assign Task',
206
+ description: 'Create a task for an agent (creates bead)',
207
+ category: 'actions' as const,
208
+ icon: <TaskIcon />,
209
+ shortcut: '⌘⇧T',
210
+ action: () => {
211
+ enterTaskMode();
212
+ },
213
+ },
214
+ ]
215
+ : []),
216
+ {
217
+ id: 'nav-general',
218
+ label: 'Go to #general',
219
+ description: 'General discussion channel',
220
+ category: 'navigation',
221
+ icon: <HashIcon />,
222
+ action: () => {
223
+ onGeneralClick?.();
224
+ onClose();
225
+ },
226
+ },
227
+ ...(onSettingsClick
228
+ ? [
229
+ {
230
+ id: 'settings',
231
+ label: 'Settings',
232
+ description: 'Configure dashboard preferences',
233
+ category: 'settings' as const,
234
+ icon: <SettingsIcon />,
235
+ shortcut: '⌘,',
236
+ action: () => {
237
+ onSettingsClick();
238
+ onClose();
239
+ },
240
+ },
241
+ ]
242
+ : []),
243
+ ...customCommands,
244
+ ];
245
+ return cmds;
246
+ }, [agents, projects, currentProject, onAgentSelect, onProjectSelect, onSpawnClick, onSettingsClick, onGeneralClick, onClose, customCommands]);
247
+
248
+ const filteredCommands = useMemo(() => {
249
+ let filtered = commands;
250
+
251
+ // Filter by active category if set
252
+ if (activeCategory) {
253
+ filtered = filtered.filter((cmd) => cmd.category === activeCategory);
254
+ }
255
+
256
+ // Filter by search query
257
+ if (query.trim()) {
258
+ const lowerQuery = query.toLowerCase();
259
+ filtered = filtered.filter(
260
+ (cmd) =>
261
+ cmd.label.toLowerCase().includes(lowerQuery) ||
262
+ cmd.description?.toLowerCase().includes(lowerQuery) ||
263
+ cmd.category.toLowerCase().includes(lowerQuery)
264
+ );
265
+ }
266
+
267
+ return filtered;
268
+ }, [commands, query, activeCategory]);
269
+
270
+ const groupedCommands = useMemo(() => {
271
+ const groups: Record<string, Command[]> = {};
272
+ for (const cmd of filteredCommands) {
273
+ if (!groups[cmd.category]) {
274
+ groups[cmd.category] = [];
275
+ }
276
+ groups[cmd.category].push(cmd);
277
+ }
278
+ return groups;
279
+ }, [filteredCommands]);
280
+
281
+ const flatCommands = useMemo(() => {
282
+ return CATEGORY_ORDER.flatMap((cat) => groupedCommands[cat] || []);
283
+ }, [groupedCommands]);
284
+
285
+ useEffect(() => {
286
+ setSelectedIndex(0);
287
+ }, [query]);
288
+
289
+ // Reset state when component mounts (palette opens)
290
+ useEffect(() => {
291
+ setQuery('');
292
+ setSelectedIndex(0);
293
+ setActiveCategory(null); // Show all categories by default
294
+ setMode('search');
295
+ setTaskAgent(null);
296
+ setTaskTitle('');
297
+ setTaskPriority('medium');
298
+ }, []);
299
+
300
+ // Scroll selected item into view
301
+ useEffect(() => {
302
+ const selectedItem = itemRefs.current[selectedIndex];
303
+ if (selectedItem) {
304
+ selectedItem.scrollIntoView({ block: 'nearest', behavior: 'smooth' });
305
+ }
306
+ }, [selectedIndex]);
307
+
308
+ // Keyboard navigation
309
+ useEffect(() => {
310
+ const handleKeyDown = (e: KeyboardEvent) => {
311
+ // Handle task-details mode separately
312
+ if (mode === 'task-details') {
313
+ if (e.key === 'Escape') {
314
+ e.preventDefault();
315
+ setMode('task-select-agent');
316
+ setQuery('');
317
+ } else if (e.key === 'Enter' && (e.metaKey || e.ctrlKey)) {
318
+ e.preventDefault();
319
+ handleTaskSubmit();
320
+ }
321
+ return;
322
+ }
323
+
324
+ // Handle task-select-agent mode
325
+ if (mode === 'task-select-agent') {
326
+ switch (e.key) {
327
+ case 'ArrowDown':
328
+ e.preventDefault();
329
+ setSelectedIndex(prev => Math.min(prev + 1, filteredAgents.length - 1));
330
+ break;
331
+ case 'ArrowUp':
332
+ e.preventDefault();
333
+ setSelectedIndex(prev => Math.max(prev - 1, 0));
334
+ break;
335
+ case 'Enter':
336
+ e.preventDefault();
337
+ if (filteredAgents[selectedIndexRef.current]) {
338
+ setTaskAgent(filteredAgents[selectedIndexRef.current]);
339
+ setMode('task-details');
340
+ setQuery('');
341
+ }
342
+ break;
343
+ case 'Escape':
344
+ e.preventDefault();
345
+ setMode('search');
346
+ setQuery('');
347
+ break;
348
+ }
349
+ return;
350
+ }
351
+
352
+ // Default search mode
353
+ switch (e.key) {
354
+ case 'ArrowDown':
355
+ e.preventDefault();
356
+ setSelectedIndex(prev => Math.min(prev + 1, flatCommands.length - 1));
357
+ break;
358
+ case 'ArrowUp':
359
+ e.preventDefault();
360
+ setSelectedIndex(prev => Math.max(prev - 1, 0));
361
+ break;
362
+ case 'Enter':
363
+ e.preventDefault();
364
+ if (flatCommands[selectedIndexRef.current]) {
365
+ flatCommands[selectedIndexRef.current].action();
366
+ }
367
+ break;
368
+ case 'Tab':
369
+ e.preventDefault();
370
+ // Cycle through categories: null -> projects -> agents -> actions -> ... -> null
371
+ setActiveCategory(prev => {
372
+ if (prev === null) return CATEGORY_ORDER[0];
373
+ const currentIdx = CATEGORY_ORDER.indexOf(prev);
374
+ if (e.shiftKey) {
375
+ // Shift+Tab: go backwards
376
+ return currentIdx === 0 ? null : CATEGORY_ORDER[currentIdx - 1];
377
+ } else {
378
+ // Tab: go forwards
379
+ return currentIdx === CATEGORY_ORDER.length - 1 ? null : CATEGORY_ORDER[currentIdx + 1];
380
+ }
381
+ });
382
+ setSelectedIndex(0);
383
+ break;
384
+ case 'Escape':
385
+ e.preventDefault();
386
+ // If filtering by category, clear filter first
387
+ if (activeCategory) {
388
+ setActiveCategory(null);
389
+ setSelectedIndex(0);
390
+ } else {
391
+ onClose();
392
+ }
393
+ break;
394
+ }
395
+ };
396
+
397
+ window.addEventListener('keydown', handleKeyDown);
398
+ return () => window.removeEventListener('keydown', handleKeyDown);
399
+ }, [flatCommands, filteredAgents, mode, selectedIndex, activeCategory, onClose, handleTaskSubmit]);
400
+
401
+ const categoryLabels: Record<string, string> = {
402
+ projects: 'Projects',
403
+ agents: 'Agents',
404
+ actions: 'Actions',
405
+ navigation: 'Navigation',
406
+ settings: 'Settings',
407
+ };
408
+
409
+ let globalIndex = 0;
410
+
411
+ // Render task-select-agent mode
412
+ if (mode === 'task-select-agent') {
413
+ return (
414
+ <div
415
+ className="fixed inset-0 bg-black/60 flex items-start justify-center pt-[15vh] z-[1000] animate-fade-in"
416
+ onClick={() => { setMode('search'); setQuery(''); }}
417
+ >
418
+ <div
419
+ className="bg-sidebar-bg border border-sidebar-border rounded-xl w-[560px] max-w-[90vw] max-h-[60vh] flex flex-col shadow-modal animate-slide-down"
420
+ onClick={(e) => e.stopPropagation()}
421
+ >
422
+ <div className="flex items-center gap-3 p-4 border-b border-sidebar-border">
423
+ <button
424
+ className="p-1 rounded hover:bg-sidebar-border text-text-muted"
425
+ onClick={() => { setMode('search'); setQuery(''); }}
426
+ >
427
+ <BackIcon />
428
+ </button>
429
+ <TaskIcon />
430
+ <input
431
+ ref={inputRef}
432
+ autoFocus
433
+ type="text"
434
+ className="flex-1 border-none text-base font-sans outline-none bg-transparent text-text-primary placeholder:text-text-muted"
435
+ placeholder="Select agent to assign task..."
436
+ value={query}
437
+ onChange={(e) => { setQuery(e.target.value); setSelectedIndex(0); }}
438
+ />
439
+ <kbd className="bg-sidebar-border border border-sidebar-hover rounded px-1.5 py-0.5 text-xs text-text-muted font-sans">
440
+ ESC
441
+ </kbd>
442
+ </div>
443
+
444
+ <div className="flex-1 overflow-y-auto p-2" ref={listRef}>
445
+ {filteredAgents.length === 0 ? (
446
+ <div className="py-8 text-center text-text-muted text-sm">
447
+ {query ? `No agents matching "${query}"` : 'No available agents'}
448
+ </div>
449
+ ) : (
450
+ <>
451
+ <div className="text-xs font-semibold text-text-muted uppercase tracking-wider py-2 px-3">
452
+ Select Agent
453
+ </div>
454
+ {filteredAgents.map((agent, idx) => {
455
+ const colors = getAgentColor(agent.name);
456
+ return (
457
+ <button
458
+ key={agent.name}
459
+ ref={el => { itemRefs.current[idx] = el; }}
460
+ className={`
461
+ flex items-center gap-3 w-full py-2.5 px-3 border-none rounded-lg cursor-pointer text-left font-sans transition-colors duration-100
462
+ ${idx === selectedIndex ? 'bg-accent-light border border-accent/30' : 'bg-transparent hover:bg-sidebar-border'}
463
+ `}
464
+ onClick={() => {
465
+ setTaskAgent(agent);
466
+ setMode('task-details');
467
+ setQuery('');
468
+ }}
469
+ onMouseEnter={() => setSelectedIndex(idx)}
470
+ >
471
+ <div
472
+ className="w-7 h-7 rounded-md flex items-center justify-center text-xs font-semibold"
473
+ style={{ backgroundColor: colors.primary, color: colors.text }}
474
+ >
475
+ {getAgentInitials(agent.name)}
476
+ </div>
477
+ <span className="flex-1 min-w-0 flex flex-col gap-0.5">
478
+ <span className="text-sm font-medium text-text-primary">{agent.name}</span>
479
+ <span className="text-xs text-text-muted truncate">
480
+ {agent.currentTask || agent.status}
481
+ </span>
482
+ </span>
483
+ </button>
484
+ );
485
+ })}
486
+ </>
487
+ )}
488
+ </div>
489
+ </div>
490
+ </div>
491
+ );
492
+ }
493
+
494
+ // Render task-details mode
495
+ if (mode === 'task-details' && taskAgent) {
496
+ const agentColors = getAgentColor(taskAgent.name);
497
+ return (
498
+ <div
499
+ className="fixed inset-0 bg-black/60 flex items-start justify-center pt-[15vh] z-[1000] animate-fade-in"
500
+ onClick={() => { setMode('task-select-agent'); setQuery(''); }}
501
+ >
502
+ <div
503
+ className="bg-sidebar-bg border border-sidebar-border rounded-xl w-[560px] max-w-[90vw] flex flex-col shadow-modal animate-slide-down"
504
+ onClick={(e) => e.stopPropagation()}
505
+ >
506
+ <div className="flex items-center gap-3 p-4 border-b border-sidebar-border">
507
+ <button
508
+ className="p-1 rounded hover:bg-sidebar-border text-text-muted"
509
+ onClick={() => { setMode('task-select-agent'); setQuery(''); }}
510
+ >
511
+ <BackIcon />
512
+ </button>
513
+ <div
514
+ className="w-7 h-7 rounded-md flex items-center justify-center text-xs font-semibold"
515
+ style={{ backgroundColor: agentColors.primary, color: agentColors.text }}
516
+ >
517
+ {getAgentInitials(taskAgent.name)}
518
+ </div>
519
+ <span className="text-base font-medium text-text-primary">
520
+ Assign task to {taskAgent.name}
521
+ </span>
522
+ </div>
523
+
524
+ <div className="p-4 flex flex-col gap-4">
525
+ {/* Task Title */}
526
+ <div>
527
+ <label className="block text-xs font-medium text-text-muted mb-1.5">
528
+ Task Title
529
+ </label>
530
+ <input
531
+ autoFocus
532
+ type="text"
533
+ value={taskTitle}
534
+ onChange={(e) => setTaskTitle(e.target.value)}
535
+ placeholder="What needs to be done?"
536
+ className="w-full px-3 py-2 text-sm bg-bg-tertiary border border-sidebar-border rounded-md text-text-primary placeholder:text-text-dim focus:outline-none focus:border-accent-cyan"
537
+ />
538
+ </div>
539
+
540
+ {/* Priority */}
541
+ <div>
542
+ <label className="block text-xs font-medium text-text-muted mb-1.5">
543
+ Priority
544
+ </label>
545
+ <div className="flex gap-2">
546
+ {(Object.keys(PRIORITY_CONFIG) as TaskPriority[]).map((p) => {
547
+ const config = PRIORITY_CONFIG[p];
548
+ const isSelected = taskPriority === p;
549
+ return (
550
+ <button
551
+ key={p}
552
+ type="button"
553
+ className={`px-3 py-1.5 text-xs font-medium rounded-md border transition-all ${
554
+ isSelected
555
+ ? 'border-transparent text-white'
556
+ : 'border-sidebar-border text-text-muted hover:border-sidebar-hover'
557
+ }`}
558
+ style={{
559
+ backgroundColor: isSelected ? config.color : 'transparent',
560
+ }}
561
+ onClick={() => setTaskPriority(p)}
562
+ >
563
+ {config.label}
564
+ </button>
565
+ );
566
+ })}
567
+ </div>
568
+ <p className="text-xs text-text-dim mt-1.5">
569
+ Maps to beads priority P{PRIORITY_CONFIG[taskPriority].beadsPriority}
570
+ </p>
571
+ </div>
572
+
573
+ {/* Submit */}
574
+ <div className="flex justify-end gap-2 pt-2 border-t border-sidebar-border">
575
+ <button
576
+ type="button"
577
+ className="px-4 py-2 text-sm text-text-muted hover:text-text-primary transition-colors"
578
+ onClick={() => { setMode('task-select-agent'); setQuery(''); }}
579
+ >
580
+ Back
581
+ </button>
582
+ <button
583
+ type="button"
584
+ disabled={!taskTitle.trim() || isSubmitting}
585
+ onClick={handleTaskSubmit}
586
+ className="px-4 py-2 text-sm font-medium bg-accent-cyan text-bg-deep rounded-md hover:bg-accent-cyan/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed flex items-center gap-2"
587
+ >
588
+ {isSubmitting ? (
589
+ <>
590
+ <SpinnerIcon />
591
+ Creating...
592
+ </>
593
+ ) : (
594
+ <>
595
+ Create Task
596
+ <kbd className="bg-black/20 rounded px-1 py-0.5 text-[10px]">⌘↵</kbd>
597
+ </>
598
+ )}
599
+ </button>
600
+ </div>
601
+ </div>
602
+ </div>
603
+ </div>
604
+ );
605
+ }
606
+
607
+ // Default search mode
608
+ return (
609
+ <div
610
+ className="fixed inset-0 bg-black/60 flex items-start justify-center pt-[15vh] z-[1000] animate-fade-in"
611
+ onClick={onClose}
612
+ >
613
+ <div
614
+ className="bg-sidebar-bg border border-sidebar-border rounded-xl w-[560px] max-w-[90vw] max-h-[60vh] flex flex-col shadow-modal animate-slide-down"
615
+ onClick={(e) => e.stopPropagation()}
616
+ >
617
+ <div className="flex items-center gap-3 p-4 border-b border-sidebar-border">
618
+ <SearchIcon />
619
+ {activeCategory && (
620
+ <button
621
+ onClick={() => { setActiveCategory(null); setSelectedIndex(0); }}
622
+ className="flex items-center gap-1 px-2 py-0.5 text-xs font-medium bg-accent-cyan/20 text-accent-cyan rounded-md hover:bg-accent-cyan/30 transition-colors"
623
+ >
624
+ {categoryLabels[activeCategory]}
625
+ <span className="text-accent-cyan/60">×</span>
626
+ </button>
627
+ )}
628
+ <input
629
+ ref={inputRef}
630
+ autoFocus
631
+ type="text"
632
+ className="flex-1 border-none text-base font-sans outline-none bg-transparent text-text-primary placeholder:text-text-muted"
633
+ placeholder={activeCategory ? `Search ${categoryLabels[activeCategory].toLowerCase()}...` : "Search commands, agents..."}
634
+ value={query}
635
+ onChange={(e) => setQuery(e.target.value)}
636
+ />
637
+ <kbd className="bg-sidebar-border border border-sidebar-hover rounded px-1.5 py-0.5 text-xs text-text-muted font-sans" title="Cycle categories">
638
+ Tab
639
+ </kbd>
640
+ <kbd className="bg-sidebar-border border border-sidebar-hover rounded px-1.5 py-0.5 text-xs text-text-muted font-sans">
641
+ ESC
642
+ </kbd>
643
+ </div>
644
+
645
+ <div className="flex-1 overflow-y-auto p-2" ref={listRef}>
646
+ {flatCommands.length === 0 ? (
647
+ <div className="py-8 text-center text-text-muted text-sm">
648
+ No results for "{query}"
649
+ </div>
650
+ ) : (
651
+ CATEGORY_ORDER.map((category) => {
652
+ const cmds = groupedCommands[category];
653
+ if (!cmds?.length) return null;
654
+ return (
655
+ <div key={category} className="mb-2">
656
+ <div className="text-xs font-semibold text-text-muted uppercase tracking-wider py-2 px-3">
657
+ {categoryLabels[category] || category}
658
+ </div>
659
+ {cmds.map((cmd) => {
660
+ const idx = globalIndex++;
661
+ return (
662
+ <button
663
+ key={cmd.id}
664
+ ref={el => { itemRefs.current[idx] = el; }}
665
+ className={`
666
+ flex items-center gap-3 w-full py-2.5 px-3 border-none rounded-lg cursor-pointer text-left font-sans transition-colors duration-100
667
+ ${idx === selectedIndex ? 'bg-accent-light border border-accent/30' : 'bg-transparent hover:bg-sidebar-border'}
668
+ `}
669
+ onClick={cmd.action}
670
+ onMouseEnter={() => setSelectedIndex(idx)}
671
+ >
672
+ <span className="flex items-center justify-center w-7 h-7 text-text-muted">{cmd.icon}</span>
673
+ <span className="flex-1 min-w-0 flex flex-col gap-0.5">
674
+ <span className="text-sm font-medium text-text-primary">{cmd.label}</span>
675
+ {cmd.description && (
676
+ <span className="text-xs text-text-muted truncate">{cmd.description}</span>
677
+ )}
678
+ </span>
679
+ {cmd.shortcut && (
680
+ <kbd className="bg-sidebar-border border border-sidebar-hover rounded px-1.5 py-0.5 text-xs text-text-muted font-sans">
681
+ {cmd.shortcut}
682
+ </kbd>
683
+ )}
684
+ </button>
685
+ );
686
+ })}
687
+ </div>
688
+ );
689
+ })
690
+ )}
691
+ </div>
692
+ </div>
693
+ </div>
694
+ );
695
+ }
696
+
697
+ function AgentIcon({ name }: { name: string }) {
698
+ const colors = getAgentColor(name);
699
+ return (
700
+ <div
701
+ className="w-7 h-7 rounded-md flex items-center justify-center text-xs font-semibold"
702
+ style={{ backgroundColor: colors.primary, color: colors.text }}
703
+ >
704
+ {getAgentInitials(name)}
705
+ </div>
706
+ );
707
+ }
708
+
709
+ function SearchIcon() {
710
+ return (
711
+ <svg className="text-text-muted shrink-0" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
712
+ <circle cx="11" cy="11" r="8" />
713
+ <line x1="21" y1="21" x2="16.65" y2="16.65" />
714
+ </svg>
715
+ );
716
+ }
717
+
718
+ function PlusIcon() {
719
+ return (
720
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
721
+ <line x1="12" y1="5" x2="12" y2="19" />
722
+ <line x1="5" y1="12" x2="19" y2="12" />
723
+ </svg>
724
+ );
725
+ }
726
+
727
+ function BroadcastIcon() {
728
+ return (
729
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
730
+ <circle cx="12" cy="12" r="2" />
731
+ <path d="M16.24 7.76a6 6 0 0 1 0 8.49m-8.48-.01a6 6 0 0 1 0-8.49m11.31-2.82a10 10 0 0 1 0 14.14m-14.14 0a10 10 0 0 1 0-14.14" />
732
+ </svg>
733
+ );
734
+ }
735
+
736
+ function HashIcon() {
737
+ return (
738
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
739
+ <line x1="4" y1="9" x2="20" y2="9" />
740
+ <line x1="4" y1="15" x2="20" y2="15" />
741
+ <line x1="10" y1="3" x2="8" y2="21" />
742
+ <line x1="16" y1="3" x2="14" y2="21" />
743
+ </svg>
744
+ );
745
+ }
746
+
747
+ function SettingsIcon() {
748
+ return (
749
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
750
+ <circle cx="12" cy="12" r="3" />
751
+ <path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" />
752
+ </svg>
753
+ );
754
+ }
755
+
756
+ function FolderIcon() {
757
+ return (
758
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
759
+ <path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
760
+ </svg>
761
+ );
762
+ }
763
+
764
+ function CurrentProjectIcon() {
765
+ return (
766
+ <div className="relative">
767
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className="text-accent-cyan">
768
+ <path d="M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5l2 3h9a2 2 0 0 1 2 2z" />
769
+ </svg>
770
+ <svg
771
+ className="absolute -bottom-0.5 -right-0.5 text-accent-cyan bg-sidebar-bg rounded-full"
772
+ width="10"
773
+ height="10"
774
+ viewBox="0 0 24 24"
775
+ fill="currentColor"
776
+ >
777
+ <path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z" />
778
+ </svg>
779
+ </div>
780
+ );
781
+ }
782
+
783
+ function TaskIcon() {
784
+ return (
785
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" className="text-text-muted">
786
+ <path d="M9 11l3 3L22 4" />
787
+ <path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11" />
788
+ </svg>
789
+ );
790
+ }
791
+
792
+ function BackIcon() {
793
+ return (
794
+ <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
795
+ <polyline points="15 18 9 12 15 6" />
796
+ </svg>
797
+ );
798
+ }
799
+
800
+ function SpinnerIcon() {
801
+ return (
802
+ <svg className="animate-spin" width="14" height="14" viewBox="0 0 24 24">
803
+ <circle
804
+ cx="12"
805
+ cy="12"
806
+ r="10"
807
+ stroke="currentColor"
808
+ strokeWidth="2"
809
+ fill="none"
810
+ strokeDasharray="32"
811
+ strokeLinecap="round"
812
+ />
813
+ </svg>
814
+ );
815
+ }