@agent-relay/dashboard 2.0.81 → 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/{dYlczDQI12PIQ3tqq3N4Y → IxfA6RZu4trcsEMYlkQra}/_buildManifest.js +0 -0
  242. /package/out/_next/static/{dYlczDQI12PIQ3tqq3N4Y → 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,278 @@
1
+ /**
2
+ * FleetOverview Component
3
+ *
4
+ * Displays a grid of fleet servers with aggregate stats,
5
+ * health monitoring, and quick server selection.
6
+ */
7
+
8
+ import React, { useMemo, useState } from 'react';
9
+ import { ServerCard, type ServerInfo } from './ServerCard';
10
+ import type { Agent } from '../types';
11
+ import { getAgentColor, getAgentInitials } from '../lib/colors';
12
+
13
+ export interface FleetOverviewProps {
14
+ servers: ServerInfo[];
15
+ agents: Agent[];
16
+ selectedServerId?: string;
17
+ onServerSelect?: (serverId: string) => void;
18
+ onServerReconnect?: (serverId: string) => void;
19
+ isLoading?: boolean;
20
+ }
21
+
22
+ export function FleetOverview({
23
+ servers,
24
+ agents,
25
+ selectedServerId,
26
+ onServerSelect,
27
+ onServerReconnect,
28
+ isLoading = false,
29
+ }: FleetOverviewProps) {
30
+ const [viewMode, setViewMode] = useState<'grid' | 'list'>('grid');
31
+
32
+ // Aggregate stats
33
+ const stats = useMemo(() => {
34
+ const online = servers.filter((s) => s.status === 'online').length;
35
+ const totalAgents = servers.reduce((sum, s) => sum + s.agentCount, 0);
36
+ const avgLatency =
37
+ servers.filter((s) => s.latency !== undefined).length > 0
38
+ ? Math.round(
39
+ servers.reduce((sum, s) => sum + (s.latency || 0), 0) /
40
+ servers.filter((s) => s.latency !== undefined).length
41
+ )
42
+ : null;
43
+ const totalMessages = servers.reduce((sum, s) => sum + (s.messageRate || 0), 0);
44
+
45
+ return { online, total: servers.length, totalAgents, avgLatency, totalMessages };
46
+ }, [servers]);
47
+
48
+ // Group agents by server (using region as proxy for now)
49
+ const agentsByServer = useMemo(() => {
50
+ const groups: Record<string, Agent[]> = {};
51
+ servers.forEach((s) => {
52
+ groups[s.id] = [];
53
+ });
54
+ // In a real implementation, agents would have a serverId
55
+ // For now, distribute agents across servers
56
+ agents.forEach((agent, i) => {
57
+ const serverIndex = i % servers.length;
58
+ if (servers[serverIndex]) {
59
+ groups[servers[serverIndex].id].push(agent);
60
+ }
61
+ });
62
+ return groups;
63
+ }, [servers, agents]);
64
+
65
+ if (isLoading) {
66
+ return (
67
+ <div className="bg-bg-card rounded-lg border border-border-subtle overflow-hidden flex flex-col items-center justify-center p-12 text-text-muted text-center">
68
+ <Spinner />
69
+ <span className="mt-3 text-sm">Loading fleet data...</span>
70
+ </div>
71
+ );
72
+ }
73
+
74
+ if (servers.length === 0) {
75
+ return (
76
+ <div className="bg-bg-card rounded-lg border border-border-subtle overflow-hidden flex flex-col items-center justify-center p-12 text-text-muted text-center">
77
+ <EmptyIcon />
78
+ <h3 className="mt-4 mb-2 text-base font-semibold text-text-primary">No Fleet Servers</h3>
79
+ <p className="text-sm">Connect to peer servers to enable fleet view</p>
80
+ </div>
81
+ );
82
+ }
83
+
84
+ return (
85
+ <div className="bg-bg-card rounded-lg border border-border-subtle overflow-hidden">
86
+ {/* Header with stats */}
87
+ <div className="flex items-center gap-6 p-4 border-b border-border-subtle bg-bg-secondary">
88
+ <div className="flex items-center gap-2 font-semibold text-sm text-text-primary">
89
+ <FleetIcon />
90
+ <span>Fleet Overview</span>
91
+ </div>
92
+
93
+ <div className="flex gap-6 flex-1">
94
+ <div className="flex flex-col items-center">
95
+ <span className="text-base font-semibold text-text-primary">
96
+ {stats.online}/{stats.total}
97
+ </span>
98
+ <span className="text-xs text-text-muted uppercase tracking-wide">Servers</span>
99
+ </div>
100
+ <div className="flex flex-col items-center">
101
+ <span className="text-base font-semibold text-text-primary">{stats.totalAgents}</span>
102
+ <span className="text-xs text-text-muted uppercase tracking-wide">Agents</span>
103
+ </div>
104
+ {stats.avgLatency !== null && (
105
+ <div className="flex flex-col items-center">
106
+ <span className="text-base font-semibold text-text-primary">{stats.avgLatency}ms</span>
107
+ <span className="text-xs text-text-muted uppercase tracking-wide">Avg Latency</span>
108
+ </div>
109
+ )}
110
+ <div className="flex flex-col items-center">
111
+ <span className="text-base font-semibold text-text-primary">{stats.totalMessages}/s</span>
112
+ <span className="text-xs text-text-muted uppercase tracking-wide">Messages</span>
113
+ </div>
114
+ </div>
115
+
116
+ <div className="flex gap-1 bg-bg-tertiary rounded-md p-0.5">
117
+ <button
118
+ className={`flex items-center justify-center w-7 h-7 bg-transparent border-none rounded cursor-pointer transition-all duration-150 ${
119
+ viewMode === 'grid'
120
+ ? 'bg-bg-card text-text-primary shadow-sm'
121
+ : 'text-text-muted hover:text-text-secondary'
122
+ }`}
123
+ onClick={() => setViewMode('grid')}
124
+ title="Grid view"
125
+ >
126
+ <GridIcon />
127
+ </button>
128
+ <button
129
+ className={`flex items-center justify-center w-7 h-7 bg-transparent border-none rounded cursor-pointer transition-all duration-150 ${
130
+ viewMode === 'list'
131
+ ? 'bg-bg-card text-text-primary shadow-sm'
132
+ : 'text-text-muted hover:text-text-secondary'
133
+ }`}
134
+ onClick={() => setViewMode('list')}
135
+ title="List view"
136
+ >
137
+ <ListIcon />
138
+ </button>
139
+ </div>
140
+ </div>
141
+
142
+ {/* Health bar */}
143
+ <div className="flex h-1 bg-bg-tertiary">
144
+ {servers.map((server) => {
145
+ const statusColors: Record<string, string> = {
146
+ online: 'bg-success',
147
+ offline: 'bg-error',
148
+ degraded: 'bg-warning',
149
+ connecting: 'bg-accent-purple',
150
+ };
151
+ return (
152
+ <div
153
+ key={server.id}
154
+ className={`transition-all duration-300 ${statusColors[server.status] || 'bg-text-dim'}`}
155
+ style={{ flex: server.agentCount || 1 }}
156
+ title={`${server.name}: ${server.agentCount} agents`}
157
+ />
158
+ );
159
+ })}
160
+ </div>
161
+
162
+ {/* Server grid/list */}
163
+ <div
164
+ className={`p-4 ${
165
+ viewMode === 'grid'
166
+ ? 'grid grid-cols-[repeat(auto-fill,minmax(280px,1fr))] gap-4'
167
+ : 'flex flex-col gap-2'
168
+ }`}
169
+ >
170
+ {servers.map((server) => (
171
+ <div key={server.id} className="flex flex-col gap-2">
172
+ <ServerCard
173
+ server={server}
174
+ isSelected={server.id === selectedServerId}
175
+ onClick={() => onServerSelect?.(server.id)}
176
+ onReconnect={() => onServerReconnect?.(server.id)}
177
+ compact={viewMode === 'list'}
178
+ />
179
+
180
+ {/* Agent preview for grid view */}
181
+ {viewMode === 'grid' && agentsByServer[server.id]?.length > 0 && (
182
+ <div className="flex gap-1 px-2">
183
+ {agentsByServer[server.id].slice(0, 5).map((agent, idx) => {
184
+ const colors = getAgentColor(agent.name);
185
+ return (
186
+ <div
187
+ key={agent.name}
188
+ className="w-6 h-6 rounded-md flex items-center justify-center text-[9px] font-semibold border-2 border-bg-card"
189
+ style={{
190
+ backgroundColor: colors.primary,
191
+ color: colors.text,
192
+ marginLeft: idx > 0 ? '-4px' : 0,
193
+ }}
194
+ title={agent.name}
195
+ >
196
+ {getAgentInitials(agent.name)}
197
+ </div>
198
+ );
199
+ })}
200
+ {agentsByServer[server.id].length > 5 && (
201
+ <div
202
+ className="w-6 h-6 rounded-md flex items-center justify-center text-[9px] font-semibold bg-bg-tertiary text-text-muted border-2 border-bg-card"
203
+ style={{ marginLeft: '-4px' }}
204
+ >
205
+ +{agentsByServer[server.id].length - 5}
206
+ </div>
207
+ )}
208
+ </div>
209
+ )}
210
+ </div>
211
+ ))}
212
+ </div>
213
+ </div>
214
+ );
215
+ }
216
+
217
+ // Icon components
218
+ function FleetIcon() {
219
+ return (
220
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
221
+ <rect x="2" y="3" width="20" height="14" rx="2" ry="2" />
222
+ <line x1="8" y1="21" x2="16" y2="21" />
223
+ <line x1="12" y1="17" x2="12" y2="21" />
224
+ </svg>
225
+ );
226
+ }
227
+
228
+ function GridIcon() {
229
+ return (
230
+ <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
231
+ <rect x="3" y="3" width="7" height="7" />
232
+ <rect x="14" y="3" width="7" height="7" />
233
+ <rect x="3" y="14" width="7" height="7" />
234
+ <rect x="14" y="14" width="7" height="7" />
235
+ </svg>
236
+ );
237
+ }
238
+
239
+ function ListIcon() {
240
+ return (
241
+ <svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2">
242
+ <line x1="8" y1="6" x2="21" y2="6" />
243
+ <line x1="8" y1="12" x2="21" y2="12" />
244
+ <line x1="8" y1="18" x2="21" y2="18" />
245
+ <line x1="3" y1="6" x2="3.01" y2="6" />
246
+ <line x1="3" y1="12" x2="3.01" y2="12" />
247
+ <line x1="3" y1="18" x2="3.01" y2="18" />
248
+ </svg>
249
+ );
250
+ }
251
+
252
+ function EmptyIcon() {
253
+ return (
254
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="1.5">
255
+ <rect x="2" y="2" width="20" height="8" rx="2" ry="2" />
256
+ <rect x="2" y="14" width="20" height="8" rx="2" ry="2" />
257
+ <line x1="6" y1="6" x2="6.01" y2="6" />
258
+ <line x1="6" y1="18" x2="6.01" y2="18" />
259
+ </svg>
260
+ );
261
+ }
262
+
263
+ function Spinner() {
264
+ return (
265
+ <svg className="animate-spin" width="24" height="24" viewBox="0 0 24 24">
266
+ <circle
267
+ cx="12"
268
+ cy="12"
269
+ r="10"
270
+ stroke="currentColor"
271
+ strokeWidth="2"
272
+ fill="none"
273
+ strokeDasharray="32"
274
+ strokeLinecap="round"
275
+ />
276
+ </svg>
277
+ );
278
+ }
@@ -0,0 +1,310 @@
1
+ /**
2
+ * LogViewer Component
3
+ *
4
+ * A real-time PTY log viewer with terminal-inspired aesthetics.
5
+ * Supports inline (embedded in chat) and dedicated panel modes.
6
+ * Features auto-scroll, search/filter, and ANSI color parsing.
7
+ */
8
+
9
+ import React, { useState, useRef, useEffect, useCallback, useMemo } from 'react';
10
+ import { useAgentLogs, type LogLine } from './hooks/useAgentLogs';
11
+ import { getAgentColor } from '../lib/colors';
12
+ import { XTermLogViewer } from './XTermLogViewer';
13
+
14
+ export type LogViewerMode = 'inline' | 'panel';
15
+
16
+ export interface LogViewerProps {
17
+ /** Agent name to stream logs from */
18
+ agentName: string;
19
+ /** Display mode: inline (compact) or panel (full-featured) */
20
+ mode?: LogViewerMode;
21
+ /** Maximum height in panel mode */
22
+ maxHeight?: string;
23
+ /** Whether to show the header bar */
24
+ showHeader?: boolean;
25
+ /** Whether to enable auto-scroll by default */
26
+ autoScrollDefault?: boolean;
27
+ /** Callback when close button is clicked (panel mode) */
28
+ onClose?: () => void;
29
+ /** Callback when expand button is clicked (inline mode) */
30
+ onExpand?: () => void;
31
+ /** Custom class name */
32
+ className?: string;
33
+ }
34
+
35
+ export function LogViewer({
36
+ agentName,
37
+ mode = 'panel',
38
+ maxHeight = '500px',
39
+ showHeader = true,
40
+ autoScrollDefault = true,
41
+ onClose,
42
+ onExpand,
43
+ className = '',
44
+ }: LogViewerProps) {
45
+ const [autoScroll, setAutoScroll] = useState(autoScrollDefault);
46
+
47
+ const scrollContainerRef = useRef<HTMLDivElement>(null);
48
+
49
+ const {
50
+ logs,
51
+ isConnected,
52
+ isConnecting,
53
+ } = useAgentLogs({ agentName, autoConnect: true });
54
+
55
+ const colors = getAgentColor(agentName);
56
+
57
+ // Filter logs to remove empty, whitespace-only, and spinner-fragment lines
58
+ const filteredLogs = useMemo(() => {
59
+ return logs.filter((log) => {
60
+ const stripped = sanitizeLogContent(log.content).trim();
61
+
62
+ // Filter out empty lines
63
+ if (stripped.length === 0) return false;
64
+
65
+ // Filter out likely spinner fragments (single char or very short non-word content)
66
+ // Common spinner chars: ⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏ | - \ / * . etc.
67
+ const spinnerPattern = /^[⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏⣾⣽⣻⢿⡿⣟⣯⣷◐◓◑◒●○◉◎|\\\/\-*.\u2800-\u28FF]+$/;
68
+ if (stripped.length <= 2 && spinnerPattern.test(stripped)) return false;
69
+
70
+ return true;
71
+ });
72
+ }, [logs]);
73
+
74
+ // Auto-scroll to bottom when new logs arrive
75
+ useEffect(() => {
76
+ if (autoScroll && scrollContainerRef.current) {
77
+ const container = scrollContainerRef.current;
78
+ container.scrollTop = container.scrollHeight;
79
+ }
80
+ }, [logs, autoScroll]);
81
+
82
+ // Handle scroll to detect manual scroll (disable/enable auto-scroll)
83
+ const handleScroll = useCallback(() => {
84
+ if (!scrollContainerRef.current) return;
85
+
86
+ const container = scrollContainerRef.current;
87
+ const isAtBottom =
88
+ container.scrollHeight - container.scrollTop - container.clientHeight < 50;
89
+
90
+ // Re-enable auto-scroll when user scrolls to bottom
91
+ if (isAtBottom && !autoScroll) {
92
+ setAutoScroll(true);
93
+ }
94
+ // Disable auto-scroll when user scrolls away from bottom
95
+ else if (!isAtBottom && autoScroll) {
96
+ setAutoScroll(false);
97
+ }
98
+ }, [autoScroll]);
99
+
100
+ // Inline mode - compact view
101
+ if (mode === 'inline') {
102
+ return (
103
+ <div
104
+ className={`log-viewer-inline rounded-lg overflow-hidden border border-[#2a2d35] ${className}`}
105
+ style={{
106
+ background: 'linear-gradient(180deg, #0d0f14 0%, #12151c 100%)',
107
+ boxShadow: 'inset 0 1px 0 rgba(255,255,255,0.02), 0 4px 12px rgba(0,0,0,0.3)',
108
+ }}
109
+ >
110
+ <div
111
+ className="flex items-center justify-between px-3 py-2 border-b border-[#2a2d35]"
112
+ style={{
113
+ background: 'linear-gradient(180deg, #161b22 0%, #0d1117 100%)',
114
+ }}
115
+ >
116
+ <div className="flex items-center gap-2">
117
+ <TerminalIcon />
118
+ <span
119
+ className="text-xs font-medium"
120
+ style={{ color: colors.primary }}
121
+ >
122
+ Live logs
123
+ </span>
124
+ <ConnectionBadge isConnected={isConnected} isConnecting={isConnecting} />
125
+ </div>
126
+ <div className="flex items-center gap-1">
127
+ <button
128
+ className="p-1.5 rounded-lg hover:bg-[#21262d] text-[#8b949e] hover:text-accent-cyan transition-all duration-200 hover:shadow-[0_0_8px_rgba(0,217,255,0.15)]"
129
+ onClick={onExpand}
130
+ title="Expand"
131
+ >
132
+ <ExpandIcon />
133
+ </button>
134
+ </div>
135
+ </div>
136
+ <div
137
+ className="font-mono text-xs leading-relaxed p-3 overflow-y-auto touch-pan-y"
138
+ style={{
139
+ maxHeight: '150px',
140
+ WebkitOverflowScrolling: 'touch',
141
+ overscrollBehavior: 'contain',
142
+ touchAction: 'pan-y',
143
+ }}
144
+ ref={scrollContainerRef}
145
+ onScroll={handleScroll}
146
+ >
147
+ {filteredLogs.slice(-20).map((log) => (
148
+ <LogLineItem key={log.id} log={log} compact />
149
+ ))}
150
+ {filteredLogs.length === 0 && (
151
+ <div className="text-[#484f58] italic flex items-center gap-2">
152
+ <span className="w-1.5 h-1.5 rounded-full bg-[#484f58] animate-pulse" />
153
+ Waiting for output...
154
+ </div>
155
+ )}
156
+ </div>
157
+ </div>
158
+ );
159
+ }
160
+
161
+ // Panel mode - use xterm.js for proper terminal emulation
162
+ return (
163
+ <XTermLogViewer
164
+ agentName={agentName}
165
+ maxHeight={maxHeight}
166
+ showHeader={showHeader}
167
+ onClose={onClose}
168
+ className={className}
169
+ />
170
+ );
171
+ }
172
+
173
+ // Log line component for inline mode
174
+ interface LogLineItemProps {
175
+ log: LogLine;
176
+ compact?: boolean;
177
+ }
178
+
179
+ function LogLineItem({ log, compact = false }: LogLineItemProps) {
180
+ const sanitizedContent = sanitizeLogContent(log.content);
181
+
182
+ const getTypeStyles = () => {
183
+ switch (log.type) {
184
+ case 'stderr':
185
+ return 'text-[#f85149]';
186
+ case 'system':
187
+ return 'text-[#58a6ff] italic';
188
+ case 'input':
189
+ return 'text-[#d29922]';
190
+ default:
191
+ return 'text-[#c9d1d9]';
192
+ }
193
+ };
194
+
195
+ return (
196
+ <div className={`${getTypeStyles()} leading-5 whitespace-pre-wrap break-all min-w-0 overflow-hidden`}>
197
+ {sanitizedContent}
198
+ </div>
199
+ );
200
+ }
201
+
202
+ // Connection status badge
203
+ function ConnectionBadge({
204
+ isConnected,
205
+ isConnecting,
206
+ }: {
207
+ isConnected: boolean;
208
+ isConnecting: boolean;
209
+ }) {
210
+ if (isConnecting) {
211
+ return (
212
+ <span className="flex items-center gap-1 px-1.5 py-0.5 rounded-full bg-[#d29922]/20 text-[10px] text-[#d29922] uppercase tracking-wider">
213
+ <span className="w-1.5 h-1.5 rounded-full bg-[#d29922] animate-pulse" />
214
+ connecting
215
+ </span>
216
+ );
217
+ }
218
+
219
+ if (isConnected) {
220
+ return (
221
+ <span className="flex items-center gap-1 px-1.5 py-0.5 rounded-full bg-[#238636]/20 text-[10px] text-[#3fb950] uppercase tracking-wider">
222
+ <span className="w-1.5 h-1.5 rounded-full bg-[#3fb950] shadow-[0_0_4px_rgba(63,185,80,0.5)]" />
223
+ live
224
+ </span>
225
+ );
226
+ }
227
+
228
+ return (
229
+ <span className="flex items-center gap-1 px-1.5 py-0.5 rounded-full bg-[#484f58]/20 text-[10px] text-[#484f58] uppercase tracking-wider">
230
+ <span className="w-1.5 h-1.5 rounded-full bg-[#484f58]" />
231
+ offline
232
+ </span>
233
+ );
234
+ }
235
+
236
+ /**
237
+ * Strip ANSI escape codes (including degraded sequences like "[38;5;216m")
238
+ * and control characters so logs render as clean text.
239
+ */
240
+ function sanitizeLogContent(text: string): string {
241
+ if (!text) return '';
242
+
243
+ let result = text;
244
+
245
+ // Remove OSC sequences (like window title): \x1b]...(\x07|\x1b\\)
246
+ result = result.replace(/\x1b\].*?(?:\x07|\x1b\\)/gs, '');
247
+
248
+ // Remove DCS (Device Control String) sequences: \x1bP...\x1b\\
249
+ result = result.replace(/\x1bP.*?\x1b\\/gs, '');
250
+
251
+ // Remove standard ANSI escape sequences (CSI, SGR, etc.)
252
+ result = result.replace(/\x1b\[[0-9;?]*[ -/]*[@-~]/g, '');
253
+
254
+ // Remove single-character escapes
255
+ result = result.replace(/\x1b[@-Z\\-_]/g, '');
256
+
257
+ // Remove orphaned CSI sequences that lost their escape byte
258
+ result = result.replace(/^\[\??\d+[hlKJHfABCDGPXsu]/gm, '');
259
+
260
+ // Remove literal SGR sequences that show up without ESC (e.g. "[38;5;216m")
261
+ result = result.replace(/\[\d+(?:;\d+)*m/g, '');
262
+
263
+ // Remove carriage returns/backspaces and other control chars (except newline/tab)
264
+ result = result.replace(/\r/g, '');
265
+ result = result.replace(/.\x08/g, '');
266
+ result = result.replace(/\x08+/g, '');
267
+ result = result.replace(/[\x00-\x08\x0B\x0C\x0E-\x1F]/g, '');
268
+
269
+ return result;
270
+ }
271
+
272
+ // Icon components
273
+ function TerminalIcon({ size = 16 }: { size?: number }) {
274
+ return (
275
+ <svg
276
+ width={size}
277
+ height={size}
278
+ viewBox="0 0 24 24"
279
+ fill="none"
280
+ stroke="currentColor"
281
+ strokeWidth="2"
282
+ strokeLinecap="round"
283
+ strokeLinejoin="round"
284
+ className="text-[#8b949e]"
285
+ >
286
+ <polyline points="4 17 10 11 4 5" />
287
+ <line x1="12" y1="19" x2="20" y2="19" />
288
+ </svg>
289
+ );
290
+ }
291
+
292
+ function ExpandIcon() {
293
+ return (
294
+ <svg
295
+ width="14"
296
+ height="14"
297
+ viewBox="0 0 24 24"
298
+ fill="none"
299
+ stroke="currentColor"
300
+ strokeWidth="2"
301
+ >
302
+ <polyline points="15 3 21 3 21 9" />
303
+ <polyline points="9 21 3 21 3 15" />
304
+ <line x1="21" y1="3" x2="14" y2="10" />
305
+ <line x1="3" y1="21" x2="10" y2="14" />
306
+ </svg>
307
+ );
308
+ }
309
+
310
+ export default LogViewer;