agent-relay 2.0.0 → 2.0.4

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 (360) hide show
  1. package/deploy/workspace/entrypoint.sh +4 -0
  2. package/dist/dashboard/out/404.html +1 -1
  3. package/dist/dashboard/out/app/onboarding.html +1 -1
  4. package/dist/dashboard/out/app/onboarding.txt +1 -1
  5. package/dist/dashboard/out/app.html +1 -1
  6. package/dist/dashboard/out/app.txt +1 -1
  7. package/dist/dashboard/out/cloud/link.html +1 -1
  8. package/dist/dashboard/out/cloud/link.txt +1 -1
  9. package/dist/dashboard/out/connect-repos.html +1 -1
  10. package/dist/dashboard/out/connect-repos.txt +1 -1
  11. package/dist/dashboard/out/history.html +1 -1
  12. package/dist/dashboard/out/history.txt +1 -1
  13. package/dist/dashboard/out/index.html +1 -1
  14. package/dist/dashboard/out/index.txt +1 -1
  15. package/dist/dashboard/out/login.html +1 -1
  16. package/dist/dashboard/out/login.txt +1 -1
  17. package/dist/dashboard/out/metrics.html +1 -1
  18. package/dist/dashboard/out/metrics.txt +1 -1
  19. package/dist/dashboard/out/pricing.html +1 -1
  20. package/dist/dashboard/out/pricing.txt +1 -1
  21. package/dist/dashboard/out/providers/setup/claude.html +1 -1
  22. package/dist/dashboard/out/providers/setup/claude.txt +1 -1
  23. package/dist/dashboard/out/providers/setup/codex.html +1 -1
  24. package/dist/dashboard/out/providers/setup/codex.txt +1 -1
  25. package/dist/dashboard/out/providers/setup/cursor.html +1 -1
  26. package/dist/dashboard/out/providers/setup/cursor.txt +1 -1
  27. package/dist/dashboard/out/providers.html +1 -1
  28. package/dist/dashboard/out/providers.txt +1 -1
  29. package/dist/dashboard/out/signup.html +1 -1
  30. package/dist/dashboard/out/signup.txt +1 -1
  31. package/dist/src/cli/index.js +7 -5
  32. package/package.json +10 -10
  33. package/packages/api-types/package.json +1 -1
  34. package/packages/bridge/dist/spawner.js +3 -1
  35. package/packages/bridge/package.json +12 -7
  36. package/packages/cloud/package.json +11 -6
  37. package/packages/config/dist/project-namespace.d.ts +4 -0
  38. package/packages/config/dist/project-namespace.js +8 -0
  39. package/packages/config/dist/relay-config.d.ts +14 -6
  40. package/packages/config/dist/relay-config.js +14 -6
  41. package/packages/config/package.json +7 -2
  42. package/packages/continuity/package.json +6 -1
  43. package/packages/daemon/package.json +16 -11
  44. package/packages/dashboard/dist/server.js +89 -17
  45. package/packages/dashboard/package.json +14 -22
  46. package/packages/dashboard/ui/react-components/SpawnModal.tsx +119 -29
  47. package/packages/dashboard/ui-dist/404.html +1 -1
  48. package/packages/dashboard/ui-dist/_next/static/chunks/677-7323947c23b35979.js +1 -0
  49. package/packages/dashboard/ui-dist/app/onboarding.html +1 -1
  50. package/packages/dashboard/ui-dist/app/onboarding.txt +1 -1
  51. package/packages/dashboard/ui-dist/app.html +1 -1
  52. package/packages/dashboard/ui-dist/app.txt +1 -1
  53. package/packages/dashboard/ui-dist/cloud/link.html +1 -1
  54. package/packages/dashboard/ui-dist/cloud/link.txt +1 -1
  55. package/packages/dashboard/ui-dist/connect-repos.html +1 -1
  56. package/packages/dashboard/ui-dist/connect-repos.txt +1 -1
  57. package/packages/dashboard/ui-dist/history.html +1 -1
  58. package/packages/dashboard/ui-dist/history.txt +1 -1
  59. package/packages/dashboard/ui-dist/index.html +1 -1
  60. package/packages/dashboard/ui-dist/index.txt +1 -1
  61. package/packages/dashboard/ui-dist/login.html +1 -1
  62. package/packages/dashboard/ui-dist/login.txt +1 -1
  63. package/packages/dashboard/ui-dist/metrics.html +1 -1
  64. package/packages/dashboard/ui-dist/metrics.txt +1 -1
  65. package/packages/dashboard/ui-dist/pricing.html +1 -1
  66. package/packages/dashboard/ui-dist/pricing.txt +1 -1
  67. package/packages/dashboard/ui-dist/providers/setup/claude.html +1 -1
  68. package/packages/dashboard/ui-dist/providers/setup/claude.txt +1 -1
  69. package/packages/dashboard/ui-dist/providers/setup/codex.html +1 -1
  70. package/packages/dashboard/ui-dist/providers/setup/codex.txt +1 -1
  71. package/packages/dashboard/ui-dist/providers/setup/cursor.html +1 -1
  72. package/packages/dashboard/ui-dist/providers/setup/cursor.txt +1 -1
  73. package/packages/dashboard/ui-dist/providers.html +1 -1
  74. package/packages/dashboard/ui-dist/providers.txt +1 -1
  75. package/packages/dashboard/ui-dist/signup.html +1 -1
  76. package/packages/dashboard/ui-dist/signup.txt +1 -1
  77. package/packages/dashboard-server/package.json +18 -12
  78. package/packages/hooks/package.json +9 -4
  79. package/packages/mcp/README.md +135 -19
  80. package/packages/mcp/dist/cloud.js +50 -1
  81. package/packages/mcp/package.json +1 -1
  82. package/packages/memory/package.json +7 -2
  83. package/packages/policy/package.json +7 -2
  84. package/packages/protocol/package.json +6 -1
  85. package/packages/resiliency/package.json +6 -1
  86. package/packages/sdk/README.md +160 -43
  87. package/packages/sdk/dist/client.d.ts +99 -3
  88. package/packages/sdk/dist/client.js +113 -6
  89. package/packages/sdk/dist/discovery.d.ts +29 -0
  90. package/packages/sdk/dist/discovery.js +126 -0
  91. package/packages/sdk/dist/index.d.ts +1 -0
  92. package/packages/sdk/dist/index.js +2 -0
  93. package/packages/sdk/dist/standalone.js +1 -0
  94. package/packages/sdk/package.json +2 -2
  95. package/packages/spawner/package.json +2 -2
  96. package/packages/state/package.json +6 -1
  97. package/packages/storage/package.json +7 -2
  98. package/packages/trajectory/package.json +7 -2
  99. package/packages/user-directory/package.json +7 -2
  100. package/packages/utils/package.json +6 -1
  101. package/packages/wrapper/dist/base-wrapper.d.ts +25 -1
  102. package/packages/wrapper/dist/base-wrapper.js +44 -2
  103. package/packages/wrapper/dist/relay-pty-orchestrator.d.ts +2 -0
  104. package/packages/wrapper/dist/relay-pty-orchestrator.js +55 -10
  105. package/packages/wrapper/dist/shared.d.ts +25 -0
  106. package/packages/wrapper/dist/shared.js +40 -0
  107. package/packages/wrapper/dist/tmux-wrapper.d.ts +7 -0
  108. package/packages/wrapper/dist/tmux-wrapper.js +62 -9
  109. package/packages/wrapper/package.json +7 -7
  110. package/.turbo/cache/013415461711937f-meta.json +0 -1
  111. package/.turbo/cache/013415461711937f.tar.zst +0 -0
  112. package/.turbo/cache/0562b1ff326acd6d-meta.json +0 -1
  113. package/.turbo/cache/0562b1ff326acd6d.tar.zst +0 -0
  114. package/.turbo/cache/0b46e0e17254882f-meta.json +0 -1
  115. package/.turbo/cache/0b46e0e17254882f.tar.zst +0 -0
  116. package/.turbo/cache/3799eda981d53d14-meta.json +0 -1
  117. package/.turbo/cache/3799eda981d53d14.tar.zst +0 -0
  118. package/.turbo/cache/47e9d8f404ed064d-meta.json +0 -1
  119. package/.turbo/cache/47e9d8f404ed064d.tar.zst +0 -0
  120. package/.turbo/cache/4cde1d1e5b298099-meta.json +0 -1
  121. package/.turbo/cache/4cde1d1e5b298099.tar.zst +0 -0
  122. package/.turbo/cache/538eea955c0936ef-meta.json +0 -1
  123. package/.turbo/cache/538eea955c0936ef.tar.zst +0 -0
  124. package/.turbo/cache/5dceac7f229f5d5d-meta.json +0 -1
  125. package/.turbo/cache/5dceac7f229f5d5d.tar.zst +0 -0
  126. package/.turbo/cache/64c15b201819367d-meta.json +0 -1
  127. package/.turbo/cache/64c15b201819367d.tar.zst +0 -0
  128. package/.turbo/cache/6d6a21a05efca434-meta.json +0 -1
  129. package/.turbo/cache/6d6a21a05efca434.tar.zst +0 -0
  130. package/.turbo/cache/7562610cb03ec040-meta.json +0 -1
  131. package/.turbo/cache/7562610cb03ec040.tar.zst +0 -0
  132. package/.turbo/cache/81a2456e17af4d7f-meta.json +0 -1
  133. package/.turbo/cache/81a2456e17af4d7f.tar.zst +0 -0
  134. package/.turbo/cache/823fc2a7b12f724c-meta.json +0 -1
  135. package/.turbo/cache/823fc2a7b12f724c.tar.zst +0 -0
  136. package/.turbo/cache/9daad16a073d1f91-meta.json +0 -1
  137. package/.turbo/cache/9daad16a073d1f91.tar.zst +0 -0
  138. package/.turbo/cache/b81ccbab0a606b60-meta.json +0 -1
  139. package/.turbo/cache/b81ccbab0a606b60.tar.zst +0 -0
  140. package/.turbo/cache/cf98487988bfcf91-meta.json +0 -1
  141. package/.turbo/cache/cf98487988bfcf91.tar.zst +0 -0
  142. package/.turbo/cache/cfdf7c57dca71f27-meta.json +0 -1
  143. package/.turbo/cache/cfdf7c57dca71f27.tar.zst +0 -0
  144. package/.turbo/cache/d3063ef43811b1e5-meta.json +0 -1
  145. package/.turbo/cache/d3063ef43811b1e5.tar.zst +0 -0
  146. package/.turbo/cache/de28892eb7678e65-meta.json +0 -1
  147. package/.turbo/cache/de28892eb7678e65.tar.zst +0 -0
  148. package/.turbo/cache/ec29adce408132ba-meta.json +0 -1
  149. package/.turbo/cache/ec29adce408132ba.tar.zst +0 -0
  150. package/.turbo/cache/f70450d8d305f172-meta.json +0 -1
  151. package/.turbo/cache/f70450d8d305f172.tar.zst +0 -0
  152. package/.turbo/cache/fe384d5d6b7a983a-meta.json +0 -1
  153. package/.turbo/cache/fe384d5d6b7a983a.tar.zst +0 -0
  154. package/bin/relay-pty +0 -0
  155. package/packages/dashboard/ui/.next/BUILD_ID +0 -1
  156. package/packages/dashboard/ui/.next/app-build-manifest.json +0 -135
  157. package/packages/dashboard/ui/.next/app-path-routes-manifest.json +0 -1
  158. package/packages/dashboard/ui/.next/build-manifest.json +0 -32
  159. package/packages/dashboard/ui/.next/cache/config.json +0 -7
  160. package/packages/dashboard/ui/.next/cache/eslint/.cache_1asv1h5 +0 -1
  161. package/packages/dashboard/ui/.next/cache/webpack/client-production/0.pack +0 -0
  162. package/packages/dashboard/ui/.next/cache/webpack/client-production/index.pack +0 -0
  163. package/packages/dashboard/ui/.next/cache/webpack/edge-server-production/0.pack +0 -0
  164. package/packages/dashboard/ui/.next/cache/webpack/edge-server-production/index.pack +0 -0
  165. package/packages/dashboard/ui/.next/cache/webpack/server-production/0.pack +0 -0
  166. package/packages/dashboard/ui/.next/cache/webpack/server-production/index.pack +0 -0
  167. package/packages/dashboard/ui/.next/export-detail.json +0 -1
  168. package/packages/dashboard/ui/.next/export-marker.json +0 -1
  169. package/packages/dashboard/ui/.next/images-manifest.json +0 -1
  170. package/packages/dashboard/ui/.next/next-minimal-server.js.nft.json +0 -1
  171. package/packages/dashboard/ui/.next/next-server.js.nft.json +0 -1
  172. package/packages/dashboard/ui/.next/package.json +0 -1
  173. package/packages/dashboard/ui/.next/prerender-manifest.json +0 -1
  174. package/packages/dashboard/ui/.next/react-loadable-manifest.json +0 -1970
  175. package/packages/dashboard/ui/.next/required-server-files.json +0 -1
  176. package/packages/dashboard/ui/.next/routes-manifest.json +0 -1
  177. package/packages/dashboard/ui/.next/server/app/_not-found/page.js +0 -1
  178. package/packages/dashboard/ui/.next/server/app/_not-found/page.js.nft.json +0 -1
  179. package/packages/dashboard/ui/.next/server/app/_not-found/page_client-reference-manifest.js +0 -1
  180. package/packages/dashboard/ui/.next/server/app/_not-found.html +0 -1
  181. package/packages/dashboard/ui/.next/server/app/_not-found.meta +0 -6
  182. package/packages/dashboard/ui/.next/server/app/_not-found.rsc +0 -9
  183. package/packages/dashboard/ui/.next/server/app/app/onboarding/page.js +0 -6
  184. package/packages/dashboard/ui/.next/server/app/app/onboarding/page.js.nft.json +0 -1
  185. package/packages/dashboard/ui/.next/server/app/app/onboarding/page_client-reference-manifest.js +0 -1
  186. package/packages/dashboard/ui/.next/server/app/app/onboarding.html +0 -1
  187. package/packages/dashboard/ui/.next/server/app/app/onboarding.meta +0 -5
  188. package/packages/dashboard/ui/.next/server/app/app/onboarding.rsc +0 -7
  189. package/packages/dashboard/ui/.next/server/app/app/page.js +0 -436
  190. package/packages/dashboard/ui/.next/server/app/app/page.js.nft.json +0 -1
  191. package/packages/dashboard/ui/.next/server/app/app/page_client-reference-manifest.js +0 -1
  192. package/packages/dashboard/ui/.next/server/app/app.html +0 -1
  193. package/packages/dashboard/ui/.next/server/app/app.meta +0 -5
  194. package/packages/dashboard/ui/.next/server/app/app.rsc +0 -7
  195. package/packages/dashboard/ui/.next/server/app/apple-icon.png/route.js +0 -12
  196. package/packages/dashboard/ui/.next/server/app/apple-icon.png/route.js.nft.json +0 -1
  197. package/packages/dashboard/ui/.next/server/app/apple-icon.png.body +0 -0
  198. package/packages/dashboard/ui/.next/server/app/apple-icon.png.meta +0 -1
  199. package/packages/dashboard/ui/.next/server/app/cloud/link/page.js +0 -1
  200. package/packages/dashboard/ui/.next/server/app/cloud/link/page.js.nft.json +0 -1
  201. package/packages/dashboard/ui/.next/server/app/cloud/link/page_client-reference-manifest.js +0 -1
  202. package/packages/dashboard/ui/.next/server/app/cloud/link.html +0 -1
  203. package/packages/dashboard/ui/.next/server/app/cloud/link.meta +0 -5
  204. package/packages/dashboard/ui/.next/server/app/cloud/link.rsc +0 -7
  205. package/packages/dashboard/ui/.next/server/app/connect-repos/page.js +0 -6
  206. package/packages/dashboard/ui/.next/server/app/connect-repos/page.js.nft.json +0 -1
  207. package/packages/dashboard/ui/.next/server/app/connect-repos/page_client-reference-manifest.js +0 -1
  208. package/packages/dashboard/ui/.next/server/app/connect-repos.html +0 -1
  209. package/packages/dashboard/ui/.next/server/app/connect-repos.meta +0 -5
  210. package/packages/dashboard/ui/.next/server/app/connect-repos.rsc +0 -7
  211. package/packages/dashboard/ui/.next/server/app/history/page.js +0 -1
  212. package/packages/dashboard/ui/.next/server/app/history/page.js.nft.json +0 -1
  213. package/packages/dashboard/ui/.next/server/app/history/page_client-reference-manifest.js +0 -1
  214. package/packages/dashboard/ui/.next/server/app/history.html +0 -1
  215. package/packages/dashboard/ui/.next/server/app/history.meta +0 -5
  216. package/packages/dashboard/ui/.next/server/app/history.rsc +0 -7
  217. package/packages/dashboard/ui/.next/server/app/index.html +0 -1
  218. package/packages/dashboard/ui/.next/server/app/index.meta +0 -5
  219. package/packages/dashboard/ui/.next/server/app/index.rsc +0 -7
  220. package/packages/dashboard/ui/.next/server/app/login/page.js +0 -6
  221. package/packages/dashboard/ui/.next/server/app/login/page.js.nft.json +0 -1
  222. package/packages/dashboard/ui/.next/server/app/login/page_client-reference-manifest.js +0 -1
  223. package/packages/dashboard/ui/.next/server/app/login.html +0 -5
  224. package/packages/dashboard/ui/.next/server/app/login.meta +0 -5
  225. package/packages/dashboard/ui/.next/server/app/login.rsc +0 -7
  226. package/packages/dashboard/ui/.next/server/app/metrics/page.js +0 -1
  227. package/packages/dashboard/ui/.next/server/app/metrics/page.js.nft.json +0 -1
  228. package/packages/dashboard/ui/.next/server/app/metrics/page_client-reference-manifest.js +0 -1
  229. package/packages/dashboard/ui/.next/server/app/metrics.html +0 -1
  230. package/packages/dashboard/ui/.next/server/app/metrics.meta +0 -5
  231. package/packages/dashboard/ui/.next/server/app/metrics.rsc +0 -7
  232. package/packages/dashboard/ui/.next/server/app/page.js +0 -1
  233. package/packages/dashboard/ui/.next/server/app/page.js.nft.json +0 -1
  234. package/packages/dashboard/ui/.next/server/app/page_client-reference-manifest.js +0 -1
  235. package/packages/dashboard/ui/.next/server/app/pricing/page.js +0 -5
  236. package/packages/dashboard/ui/.next/server/app/pricing/page.js.nft.json +0 -1
  237. package/packages/dashboard/ui/.next/server/app/pricing/page_client-reference-manifest.js +0 -1
  238. package/packages/dashboard/ui/.next/server/app/pricing.html +0 -13
  239. package/packages/dashboard/ui/.next/server/app/pricing.meta +0 -5
  240. package/packages/dashboard/ui/.next/server/app/pricing.rsc +0 -7
  241. package/packages/dashboard/ui/.next/server/app/providers/page.js +0 -2
  242. package/packages/dashboard/ui/.next/server/app/providers/page.js.nft.json +0 -1
  243. package/packages/dashboard/ui/.next/server/app/providers/page_client-reference-manifest.js +0 -1
  244. package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page.js +0 -1
  245. package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page.js.nft.json +0 -1
  246. package/packages/dashboard/ui/.next/server/app/providers/setup/[provider]/page_client-reference-manifest.js +0 -1
  247. package/packages/dashboard/ui/.next/server/app/providers/setup/claude.html +0 -1
  248. package/packages/dashboard/ui/.next/server/app/providers/setup/claude.meta +0 -5
  249. package/packages/dashboard/ui/.next/server/app/providers/setup/claude.rsc +0 -8
  250. package/packages/dashboard/ui/.next/server/app/providers/setup/codex.html +0 -1
  251. package/packages/dashboard/ui/.next/server/app/providers/setup/codex.meta +0 -5
  252. package/packages/dashboard/ui/.next/server/app/providers/setup/codex.rsc +0 -8
  253. package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.html +0 -1
  254. package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.meta +0 -5
  255. package/packages/dashboard/ui/.next/server/app/providers/setup/cursor.rsc +0 -8
  256. package/packages/dashboard/ui/.next/server/app/providers.html +0 -1
  257. package/packages/dashboard/ui/.next/server/app/providers.meta +0 -5
  258. package/packages/dashboard/ui/.next/server/app/providers.rsc +0 -7
  259. package/packages/dashboard/ui/.next/server/app/signup/page.js +0 -6
  260. package/packages/dashboard/ui/.next/server/app/signup/page.js.nft.json +0 -1
  261. package/packages/dashboard/ui/.next/server/app/signup/page_client-reference-manifest.js +0 -1
  262. package/packages/dashboard/ui/.next/server/app/signup.html +0 -6
  263. package/packages/dashboard/ui/.next/server/app/signup.meta +0 -5
  264. package/packages/dashboard/ui/.next/server/app/signup.rsc +0 -7
  265. package/packages/dashboard/ui/.next/server/app-paths-manifest.json +0 -16
  266. package/packages/dashboard/ui/.next/server/chunks/190.js +0 -1
  267. package/packages/dashboard/ui/.next/server/chunks/205.js +0 -1
  268. package/packages/dashboard/ui/.next/server/chunks/251.js +0 -9
  269. package/packages/dashboard/ui/.next/server/chunks/288.js +0 -1
  270. package/packages/dashboard/ui/.next/server/chunks/434.js +0 -1
  271. package/packages/dashboard/ui/.next/server/chunks/471.js +0 -2
  272. package/packages/dashboard/ui/.next/server/chunks/621.js +0 -1
  273. package/packages/dashboard/ui/.next/server/chunks/680.js +0 -5
  274. package/packages/dashboard/ui/.next/server/chunks/682.js +0 -6
  275. package/packages/dashboard/ui/.next/server/chunks/684.js +0 -1
  276. package/packages/dashboard/ui/.next/server/chunks/71.js +0 -196
  277. package/packages/dashboard/ui/.next/server/chunks/711.js +0 -1
  278. package/packages/dashboard/ui/.next/server/chunks/90.js +0 -17
  279. package/packages/dashboard/ui/.next/server/chunks/948.js +0 -2
  280. package/packages/dashboard/ui/.next/server/chunks/font-manifest.json +0 -1
  281. package/packages/dashboard/ui/.next/server/font-manifest.json +0 -1
  282. package/packages/dashboard/ui/.next/server/functions-config-manifest.json +0 -1
  283. package/packages/dashboard/ui/.next/server/interception-route-rewrite-manifest.js +0 -1
  284. package/packages/dashboard/ui/.next/server/middleware-build-manifest.js +0 -1
  285. package/packages/dashboard/ui/.next/server/middleware-manifest.json +0 -6
  286. package/packages/dashboard/ui/.next/server/middleware-react-loadable-manifest.js +0 -1
  287. package/packages/dashboard/ui/.next/server/next-font-manifest.js +0 -1
  288. package/packages/dashboard/ui/.next/server/next-font-manifest.json +0 -1
  289. package/packages/dashboard/ui/.next/server/pages/404.html +0 -1
  290. package/packages/dashboard/ui/.next/server/pages/500.html +0 -1
  291. package/packages/dashboard/ui/.next/server/pages/_app.js +0 -1
  292. package/packages/dashboard/ui/.next/server/pages/_app.js.nft.json +0 -1
  293. package/packages/dashboard/ui/.next/server/pages/_document.js +0 -1
  294. package/packages/dashboard/ui/.next/server/pages/_document.js.nft.json +0 -1
  295. package/packages/dashboard/ui/.next/server/pages/_error.js +0 -1
  296. package/packages/dashboard/ui/.next/server/pages/_error.js.nft.json +0 -1
  297. package/packages/dashboard/ui/.next/server/pages-manifest.json +0 -1
  298. package/packages/dashboard/ui/.next/server/server-reference-manifest.js +0 -1
  299. package/packages/dashboard/ui/.next/server/server-reference-manifest.json +0 -1
  300. package/packages/dashboard/ui/.next/server/webpack-runtime.js +0 -1
  301. package/packages/dashboard/ui/.next/static/chunks/116-a883fca163f3a5bc.js +0 -1
  302. package/packages/dashboard/ui/.next/static/chunks/117-c8afed19e821a35d.js +0 -2
  303. package/packages/dashboard/ui/.next/static/chunks/282-980c2eb8fff20123.js +0 -1
  304. package/packages/dashboard/ui/.next/static/chunks/532-bace199897eeab37.js +0 -9
  305. package/packages/dashboard/ui/.next/static/chunks/631-af51bad94027527a.js +0 -1
  306. package/packages/dashboard/ui/.next/static/chunks/648-acb2ff9f77cbfbd3.js +0 -1
  307. package/packages/dashboard/ui/.next/static/chunks/677-30e60cb0b47875b6.js +0 -1
  308. package/packages/dashboard/ui/.next/static/chunks/766-2aea80818f7eb0d8.js +0 -1
  309. package/packages/dashboard/ui/.next/static/chunks/83-4f08122d4e7e79a6.js +0 -1
  310. package/packages/dashboard/ui/.next/static/chunks/847-f1f467060f32afff.js +0 -1
  311. package/packages/dashboard/ui/.next/static/chunks/891-5cb1513eeb97a891.js +0 -1
  312. package/packages/dashboard/ui/.next/static/chunks/app/_not-found/page-60501fddbafba9dc.js +0 -1
  313. package/packages/dashboard/ui/.next/static/chunks/app/app/onboarding/page-9914652442f7e4fb.js +0 -1
  314. package/packages/dashboard/ui/.next/static/chunks/app/app/page-44813aa26ad19681.js +0 -1
  315. package/packages/dashboard/ui/.next/static/chunks/app/cloud/link/page-fa1d5842aa90e8a6.js +0 -1
  316. package/packages/dashboard/ui/.next/static/chunks/app/connect-repos/page-113060009ef35bc2.js +0 -1
  317. package/packages/dashboard/ui/.next/static/chunks/app/history/page-9965d2483011b846.js +0 -1
  318. package/packages/dashboard/ui/.next/static/chunks/app/layout-6b91e33784c20610.js +0 -1
  319. package/packages/dashboard/ui/.next/static/chunks/app/login/page-a0ca6f7ca6a100b8.js +0 -1
  320. package/packages/dashboard/ui/.next/static/chunks/app/metrics/page-1e37ef8e73940b40.js +0 -1
  321. package/packages/dashboard/ui/.next/static/chunks/app/page-7993778218818ace.js +0 -1
  322. package/packages/dashboard/ui/.next/static/chunks/app/pricing/page-9db3ebdfa567a7c9.js +0 -1
  323. package/packages/dashboard/ui/.next/static/chunks/app/providers/page-bcf46064ac4474ce.js +0 -1
  324. package/packages/dashboard/ui/.next/static/chunks/app/providers/setup/[provider]/page-4dbe33f0f7691b7c.js +0 -1
  325. package/packages/dashboard/ui/.next/static/chunks/app/signup/page-1ede2205b58649ca.js +0 -1
  326. package/packages/dashboard/ui/.next/static/chunks/e868780c-48e5f147c90a3a41.js +0 -18
  327. package/packages/dashboard/ui/.next/static/chunks/fd9d1056-609918ca7b6280bb.js +0 -1
  328. package/packages/dashboard/ui/.next/static/chunks/framework-f66176bb897dc684.js +0 -1
  329. package/packages/dashboard/ui/.next/static/chunks/main-5a40a5ae29646e1b.js +0 -1
  330. package/packages/dashboard/ui/.next/static/chunks/main-app-fdbeb09028f57c9f.js +0 -1
  331. package/packages/dashboard/ui/.next/static/chunks/pages/_app-72b849fbd24ac258.js +0 -1
  332. package/packages/dashboard/ui/.next/static/chunks/pages/_error-7ba65e1336b92748.js +0 -1
  333. package/packages/dashboard/ui/.next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
  334. package/packages/dashboard/ui/.next/static/chunks/webpack-1cdd8ed57114d5e1.js +0 -1
  335. package/packages/dashboard/ui/.next/static/css/4034f236dd1a3178.css +0 -1
  336. package/packages/dashboard/ui/.next/static/css/99c2552394077586.css +0 -1
  337. package/packages/dashboard/ui/.next/trace +0 -63
  338. package/packages/dashboard/ui/.next/types/app/app/onboarding/page.ts +0 -79
  339. package/packages/dashboard/ui/.next/types/app/app/page.ts +0 -79
  340. package/packages/dashboard/ui/.next/types/app/cloud/link/page.ts +0 -79
  341. package/packages/dashboard/ui/.next/types/app/connect-repos/page.ts +0 -79
  342. package/packages/dashboard/ui/.next/types/app/history/page.ts +0 -79
  343. package/packages/dashboard/ui/.next/types/app/layout.ts +0 -79
  344. package/packages/dashboard/ui/.next/types/app/login/page.ts +0 -79
  345. package/packages/dashboard/ui/.next/types/app/metrics/page.ts +0 -79
  346. package/packages/dashboard/ui/.next/types/app/page.ts +0 -79
  347. package/packages/dashboard/ui/.next/types/app/pricing/page.ts +0 -79
  348. package/packages/dashboard/ui/.next/types/app/providers/page.ts +0 -79
  349. package/packages/dashboard/ui/.next/types/app/providers/setup/[provider]/page.ts +0 -79
  350. package/packages/dashboard/ui/.next/types/app/signup/page.ts +0 -79
  351. package/packages/dashboard/ui/.next/types/package.json +0 -1
  352. package/packages/dashboard/ui-dist/_next/static/chunks/677-30e60cb0b47875b6.js +0 -1
  353. /package/dist/dashboard/out/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_buildManifest.js +0 -0
  354. /package/dist/dashboard/out/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_ssgManifest.js +0 -0
  355. /package/packages/dashboard/ui-dist/_next/static/{HR7W9z1PPVPFqUboUVZFZ → 0AsOfRemPXJmtynCKT-rx}/_buildManifest.js +0 -0
  356. /package/packages/dashboard/ui-dist/_next/static/{HR7W9z1PPVPFqUboUVZFZ → 0AsOfRemPXJmtynCKT-rx}/_ssgManifest.js +0 -0
  357. /package/packages/dashboard/ui-dist/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_buildManifest.js +0 -0
  358. /package/packages/dashboard/ui-dist/_next/static/{ZCFjHbkF8yDKS2md3lVgb → 72btMIJ64BCAB4UgVkpaq}/_ssgManifest.js +0 -0
  359. /package/packages/dashboard/{ui/.next/static/HR7W9z1PPVPFqUboUVZFZ → ui-dist/_next/static/clUN2n0bz9HCjKI0qlOxU}/_buildManifest.js +0 -0
  360. /package/packages/dashboard/{ui/.next/static/HR7W9z1PPVPFqUboUVZFZ → ui-dist/_next/static/clUN2n0bz9HCjKI0qlOxU}/_ssgManifest.js +0 -0
@@ -1 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/99c2552394077586.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-c8afed19e821a35d.js" async=""></script><script src="/_next/static/chunks/main-app-fdbeb09028f57c9f.js" async=""></script><script src="/_next/static/chunks/648-acb2ff9f77cbfbd3.js" async=""></script><script src="/_next/static/chunks/116-a883fca163f3a5bc.js" async=""></script><script src="/_next/static/chunks/app/history/page-9965d2483011b846.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-bg-primary text-text-primary font-sans"><header class="sticky top-0 z-50 bg-sidebar-bg border-b border-sidebar-border px-4 md:px-8 py-4"><div class="max-w-[1400px] mx-auto flex items-center justify-between"><div class="flex items-center gap-4"><a class="flex items-center gap-2 text-text-muted text-sm font-medium px-3 py-2 rounded-md transition-all hover:text-accent hover:bg-accent/10" href="/"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M19 12H5M12 19l-7-7 7-7"></path></svg><span class="hidden sm:inline">Dashboard</span></a><div class="flex items-center gap-3"><div class="w-8 h-8 bg-gradient-to-br from-accent/80 to-accent rounded-lg flex items-center justify-center border border-accent/30"><svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><circle cx="12" cy="12" r="10"></circle><polyline points="12 6 12 12 16 14"></polyline></svg></div><div class="text-lg font-semibold tracking-tight">Conversation <span class="text-accent">History</span></div></div></div></div></header><main class="max-w-[1400px] mx-auto px-4 md:px-8 py-6"><div class="flex flex-col md:flex-row md:items-center gap-4 mb-6"><div class="flex gap-1 bg-bg-secondary rounded-lg p-1 border border-border"><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors bg-accent text-white"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>Conversations</button><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors text-text-muted hover:text-text-primary hover:bg-bg-tertiary"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>Sessions</button><button class="flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-md transition-colors text-text-muted hover:text-text-primary hover:bg-bg-tertiary"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg>Messages</button></div><div class="flex-1 flex items-center gap-3"></div></div><div class="flex items-center justify-center h-[60vh]"><div class="flex flex-col items-center gap-4"><div class="w-10 h-10 border-2 border-border border-t-accent rounded-full animate-spin"></div><p class="text-text-muted text-sm">Loading history...</p></div></div></main></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/99c2552394077586.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[8615,[\"648\",\"static/chunks/648-acb2ff9f77cbfbd3.js\",\"116\",\"static/chunks/116-a883fca163f3a5bc.js\",\"811\",\"static/chunks/app/history/page-9965d2483011b846.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"HR7W9z1PPVPFqUboUVZFZ\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"history\"],\"initialTree\":[\"\",{\"children\":[\"history\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"history\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"history\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/99c2552394077586.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
@@ -1,5 +0,0 @@
1
- {
2
- "headers": {
3
- "x-next-cache-tags": "_N_T_/layout,_N_T_/history/layout,_N_T_/history/page,_N_T_/history"
4
- }
5
- }
@@ -1,7 +0,0 @@
1
- 2:I[9107,[],"ClientPageRoot"]
2
- 3:I[8615,["648","static/chunks/648-acb2ff9f77cbfbd3.js","116","static/chunks/116-a883fca163f3a5bc.js","811","static/chunks/app/history/page-9965d2483011b846.js"],"default",1]
3
- 4:I[4707,[],""]
4
- 5:I[6423,[],""]
5
- 0:["HR7W9z1PPVPFqUboUVZFZ",[[["",{"children":["history",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["history",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","history","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/99c2552394077586.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
6
- 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
7
- 1:null
@@ -1 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/99c2552394077586.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/css/4034f236dd1a3178.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-c8afed19e821a35d.js" async=""></script><script src="/_next/static/chunks/main-app-fdbeb09028f57c9f.js" async=""></script><script src="/_next/static/chunks/e868780c-48e5f147c90a3a41.js" async=""></script><script src="/_next/static/chunks/532-bace199897eeab37.js" async=""></script><script src="/_next/static/chunks/116-a883fca163f3a5bc.js" async=""></script><script src="/_next/static/chunks/891-5cb1513eeb97a891.js" async=""></script><script src="/_next/static/chunks/83-4f08122d4e7e79a6.js" async=""></script><script src="/_next/static/chunks/677-30e60cb0b47875b6.js" async=""></script><script src="/_next/static/chunks/766-2aea80818f7eb0d8.js" async=""></script><script src="/_next/static/chunks/app/page-7993778218818ace.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="flex h-screen bg-bg-deep font-sans text-text-primary items-center justify-center"><div class="text-text-muted">Loading...</div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/99c2552394077586.css\",\"style\"]\n2:HL[\"/_next/static/css/4034f236dd1a3178.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[2846,[],\"\"]\n5:I[9107,[],\"ClientPageRoot\"]\n6:I[7340,[\"30\",\"static/chunks/e868780c-48e5f147c90a3a41.js\",\"532\",\"static/chunks/532-bace199897eeab37.js\",\"116\",\"static/chunks/116-a883fca163f3a5bc.js\",\"891\",\"static/chunks/891-5cb1513eeb97a891.js\",\"83\",\"static/chunks/83-4f08122d4e7e79a6.js\",\"677\",\"static/chunks/677-30e60cb0b47875b6.js\",\"766\",\"static/chunks/766-2aea80818f7eb0d8.js\",\"931\",\"static/chunks/app/page-7993778218818ace.js\"],\"default\",1]\n7:I[4707,[],\"\"]\n8:I[6423,[],\"\"]\na:I[1060,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"HR7W9z1PPVPFqUboUVZFZ\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"\"],\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"$L5\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$6\"}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/4034f236dd1a3178.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/99c2552394077586.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>
@@ -1,5 +0,0 @@
1
- {
2
- "headers": {
3
- "x-next-cache-tags": "_N_T_/layout,_N_T_/page,_N_T_/"
4
- }
5
- }
@@ -1,7 +0,0 @@
1
- 2:I[9107,[],"ClientPageRoot"]
2
- 3:I[7340,["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","116","static/chunks/116-a883fca163f3a5bc.js","891","static/chunks/891-5cb1513eeb97a891.js","83","static/chunks/83-4f08122d4e7e79a6.js","677","static/chunks/677-30e60cb0b47875b6.js","766","static/chunks/766-2aea80818f7eb0d8.js","931","static/chunks/app/page-7993778218818ace.js"],"default",1]
3
- 4:I[4707,[],""]
4
- 5:I[6423,[],""]
5
- 0:["HR7W9z1PPVPFqUboUVZFZ",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/4034f236dd1a3178.css","precedence":"next","crossOrigin":"$undefined"}]]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/99c2552394077586.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
6
- 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
7
- 1:null
@@ -1,6 +0,0 @@
1
- (()=>{var e={};e.id=626,e.ids=[626],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},5315:e=>{"use strict";e.exports=require("path")},7360:e=>{"use strict";e.exports=require("url")},1991:(e,t,r)=>{"use strict";r.r(t),r.d(t,{GlobalError:()=>i.a,__next_app__:()=>h,originalPathname:()=>u,pages:()=>d,routeModule:()=>x,tree:()=>c}),r(4687),r(1506),r(5866);var a=r(3191),n=r(8716),s=r(7922),i=r.n(s),o=r(5231),l={};for(let e in o)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(l[e]=()=>o[e]);r.d(t,l);let c=["",{children:["login",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(r.bind(r,4687)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx"]}]},{metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(r.bind(r,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(r.bind(r,1506)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(r.t.bind(r,5866,23)),"next/dist/client/components/not-found-error"],metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(r.bind(r,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}],d=["/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx"],u="/login/page",h={require:r,loadChunk:()=>Promise.resolve()},x=new a.AppPageRouteModule({definition:{kind:n.x.APP_PAGE,page:"/login/page",pathname:"/login",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:c}})},1802:()=>{},9513:(e,t,r)=>{Promise.resolve().then(r.bind(r,1442))},1493:(e,t,r)=>{Promise.resolve().then(r.t.bind(r,2994,23)),Promise.resolve().then(r.t.bind(r,6114,23)),Promise.resolve().then(r.t.bind(r,9727,23)),Promise.resolve().then(r.t.bind(r,9671,23)),Promise.resolve().then(r.t.bind(r,1868,23)),Promise.resolve().then(r.t.bind(r,4759,23))},1442:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>d});var a=r(326),n=r(7577),s=r(5047),i=r(8711),o=r(48);function l(){return a.jsx("div",{className:"min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex flex-col items-center justify-center p-4",children:a.jsx("div",{className:"relative z-10 w-full max-w-md",children:(0,a.jsxs)("div",{className:"flex flex-col items-center mb-8",children:[a.jsx(o.K7,{size:48,withGlow:!0}),a.jsx("h1",{className:"mt-4 text-2xl font-bold text-white",children:"Agent Relay"}),a.jsx("p",{className:"mt-2 text-text-muted",children:"Loading..."})]})})})}function c(){let e=(0,s.useSearchParams)(),[t,r]=(0,n.useState)(!1),[l,c]=(0,n.useState)(!1),[d,u]=(0,n.useState)(""),[h,x]=(0,n.useState)(""),m=e.get("return"),p=(0,n.useRef)(null),g=async e=>{let t=await fetch(`/api/auth/nango/login-status/${e}`,{credentials:"include"});if(!t.ok)throw Error("Auth status not ready");return t.json()},f=async e=>{try{u("Completing authentication...");let t=Date.now(),r=async()=>{if(Date.now()-t>3e4)throw Error("Authentication timed out. Please try again.");try{let t=await g(e);if(t&&t.ready){m?window.location.href=m:window.location.href=t.hasRepos?"/app":"/connect-repos";return}return await new Promise(e=>setTimeout(e,1e3)),r()}catch{return await new Promise(e=>setTimeout(e,1e3)),r()}};await r()}catch(e){console.error("[AUTH] Authentication error:",e),x(e instanceof Error?e.message:"Authentication failed"),c(!1),u("")}},b=async()=>{if(!p.current){x("Not ready. Please refresh the page.");return}c(!0),x(""),u("Connecting to GitHub...");try{let e=await p.current.auth("github");if(e&&"connectionId"in e)await f(e.connectionId);else throw Error("No connection ID returned")}catch(e){if(console.error("GitHub auth error:",e),"user_cancelled"===e.type||e.message?.includes("closed")){c(!1),u(""),fetch("/api/auth/nango/login-session",{credentials:"include"}).then(e=>e.json()).then(e=>{e.sessionToken&&(p.current=new i.ZP({connectSessionToken:e.sessionToken}),r(!0))});return}x(e.message||"Authentication failed"),c(!1),u("")}};return(0,a.jsxs)("div",{className:"min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex flex-col items-center justify-center p-4",children:[a.jsx("div",{className:"fixed inset-0 opacity-10",children:a.jsx("div",{className:"absolute inset-0",style:{backgroundImage:`linear-gradient(rgba(0, 217, 255, 0.1) 1px, transparent 1px),
2
- linear-gradient(90deg, rgba(0, 217, 255, 0.1) 1px, transparent 1px)`,backgroundSize:"50px 50px"}})}),(0,a.jsxs)("div",{className:"relative z-10 w-full max-w-md",children:[(0,a.jsxs)("div",{className:"flex flex-col items-center mb-8",children:[a.jsx(o.K7,{size:48,withGlow:!0}),a.jsx("h1",{className:"mt-4 text-2xl font-bold text-white",children:"Agent Relay"}),a.jsx("p",{className:"mt-2 text-text-muted",children:"Sign in to continue"})]}),a.jsx("div",{className:"bg-bg-primary/80 backdrop-blur-sm border border-border-subtle rounded-2xl p-8 shadow-xl",children:(0,a.jsxs)("div",{children:[h&&a.jsx("div",{className:"mb-4 p-3 bg-error/10 border border-error/20 rounded-lg",children:a.jsx("p",{className:"text-error text-sm",children:h})}),a.jsx("button",{type:"button",onClick:b,disabled:!t||l,className:"w-full py-4 px-6 bg-[#24292e] hover:bg-[#2f363d] border border-[#444d56] rounded-xl text-white font-medium flex items-center justify-center gap-3 transition-colors disabled:opacity-50 disabled:cursor-not-allowed",children:t?l?(0,a.jsxs)(a.Fragment,{children:[(0,a.jsxs)("svg",{className:"w-5 h-5 animate-spin",fill:"none",viewBox:"0 0 24 24",children:[a.jsx("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),a.jsx("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"})]}),a.jsx("span",{children:d||"Connecting..."})]}):(0,a.jsxs)(a.Fragment,{children:[a.jsx("svg",{className:"w-6 h-6",fill:"currentColor",viewBox:"0 0 24 24",children:a.jsx("path",{d:"M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"})}),a.jsx("span",{children:"Continue with GitHub"})]}):(0,a.jsxs)(a.Fragment,{children:[(0,a.jsxs)("svg",{className:"w-5 h-5 animate-spin",fill:"none",viewBox:"0 0 24 24",children:[a.jsx("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),a.jsx("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"})]}),a.jsx("span",{children:"Loading..."})]})}),(0,a.jsxs)("p",{className:"mt-6 text-center text-text-muted text-sm",children:["By signing in, you agree to our"," ",a.jsx("a",{href:"/terms",className:"text-accent-cyan hover:underline",children:"Terms of Service"})," ","and"," ",a.jsx("a",{href:"/privacy",className:"text-accent-cyan hover:underline",children:"Privacy Policy"})]})]})}),a.jsx("div",{className:"mt-6 text-center",children:(0,a.jsxs)("p",{className:"text-text-muted",children:["Don't have an account?"," ",a.jsx("a",{href:"/signup",className:"text-accent-cyan hover:underline font-medium",children:"Sign up"})]})}),a.jsx("div",{className:"mt-4 text-center",children:a.jsx("a",{href:"/",className:"text-text-muted hover:text-white transition-colors text-sm",children:"Back to home"})})]})]})}function d(){return a.jsx(n.Suspense,{fallback:a.jsx(l,{}),children:a.jsx(c,{})})}},5047:(e,t,r)=>{"use strict";var a=r(7389);r.o(a,"useRouter")&&r.d(t,{useRouter:function(){return a.useRouter}}),r.o(a,"useSearchParams")&&r.d(t,{useSearchParams:function(){return a.useSearchParams}})},48:(e,t,r)=>{"use strict";r.d(t,{K7:()=>n});var a=r(326);function n({size:e=24,className:t="",withGlow:r=!1}){return(0,a.jsxs)("svg",{width:e,height:e,viewBox:"0 0 100 100",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:`
3
- transition-all duration-300
4
- ${r?"drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]":""}
5
- ${t}
6
- `,"aria-label":"Agent Relay Logo",role:"img",children:[a.jsx("path",{d:"M30 80 L 50 20 L 70 80",stroke:"#00d9ff",strokeWidth:"5",strokeLinejoin:"round",strokeLinecap:"round",fill:"none"}),a.jsx("line",{x1:"40",y1:"50",x2:"60",y2:"50",stroke:"#00d9ff",strokeWidth:"5",strokeLinecap:"round"}),a.jsx("path",{d:"M50 20 L 50 80",stroke:"#00ffc8",strokeWidth:"2.5",strokeLinecap:"round",opacity:"0.7"}),a.jsx("path",{d:"M50 20 C 80 20 80 50 50 50 L 80 80",stroke:"#00ffc8",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",fill:"none",opacity:"0.7"})]})}r(7577)},1506:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>s,metadata:()=>n});var a=r(9510);r(7272);let n={title:"Agent Relay Dashboard",description:"Fleet control dashboard for Agent Relay"};function s({children:e}){return a.jsx("html",{lang:"en",children:a.jsx("body",{children:e})})}},4687:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>a});let a=(0,r(8570).createProxy)(String.raw`/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx#default`)},3226:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>n});var a=r(6621);let n=e=>[{type:"image/png",sizes:"256x256",url:(0,a.fillMetadataSegment)(".",e.params,"apple-icon.png")+"?9e7a840704165ca6"}]},7272:()=>{}};var t=require("../../webpack-runtime.js");t.C(e);var r=e=>t(t.s=e),a=t.X(0,[948,471,621,711],()=>r(1991));module.exports=a})();
@@ -1 +0,0 @@
1
- {"version":1,"files":["../../../../node_modules/next/dist/client/components/action-async-storage-instance.js","../../../../node_modules/next/dist/client/components/action-async-storage.external.js","../../../../node_modules/next/dist/client/components/async-local-storage.js","../../../../node_modules/next/dist/client/components/request-async-storage-instance.js","../../../../node_modules/next/dist/client/components/request-async-storage.external.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/package.json","../../../../package.json","../../../package.json","../../chunks/471.js","../../chunks/621.js","../../chunks/711.js","../../chunks/948.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +0,0 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/login/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"80":{"*":{"id":"1868","name":"*","chunks":[],"async":false}},"1060":{"*":{"id":"9727","name":"*","chunks":[],"async":false}},"2846":{"*":{"id":"2994","name":"*","chunks":[],"async":false}},"3330":{"*":{"id":"3094","name":"*","chunks":[],"async":false}},"4011":{"*":{"id":"9213","name":"*","chunks":[],"async":false}},"4665":{"*":{"id":"7722","name":"*","chunks":[],"async":false}},"4676":{"*":{"id":"3787","name":"*","chunks":[],"async":false}},"4680":{"*":{"id":"1249","name":"*","chunks":[],"async":false}},"4707":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5804":{"*":{"id":"1343","name":"*","chunks":[],"async":false}},"5844":{"*":{"id":"5100","name":"*","chunks":[],"async":false}},"6374":{"*":{"id":"1442","name":"*","chunks":[],"async":false}},"6423":{"*":{"id":"4759","name":"*","chunks":[],"async":false}},"7340":{"*":{"id":"8743","name":"*","chunks":[],"async":false}},"8615":{"*":{"id":"3947","name":"*","chunks":[],"async":false}},"9107":{"*":{"id":"6114","name":"*","chunks":[],"async":false}},"9197":{"*":{"id":"153","name":"*","chunks":[],"async":false}},"9992":{"*":{"id":"8687","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/globals.css":{"id":7960,"name":"*","chunks":["185","static/chunks/app/layout-6b91e33784c20610.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":{"id":4011,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":{"id":3330,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":{"id":4680,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":{"id":9992,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":{"id":8615,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":{"id":6374,"name":"*","chunks":["282","static/chunks/282-980c2eb8fff20123.js","626","static/chunks/app/login/page-a0ca6f7ca6a100b8.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":{"id":7340,"name":"*","chunks":["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","116","static/chunks/116-a883fca163f3a5bc.js","891","static/chunks/891-5cb1513eeb97a891.js","83","static/chunks/83-4f08122d4e7e79a6.js","677","static/chunks/677-30e60cb0b47875b6.js","766","static/chunks/766-2aea80818f7eb0d8.js","931","static/chunks/app/page-7993778218818ace.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":{"id":5804,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":{"id":4676,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":{"id":9197,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":{"id":4665,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":{"id":5844,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/relay/relay/packages/dashboard/ui/":[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout":["static/css/99c2552394077586.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page":["static/css/4034f236dd1a3178.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page":[]}}
@@ -1,5 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/99c2552394077586.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-c8afed19e821a35d.js" async=""></script><script src="/_next/static/chunks/main-app-fdbeb09028f57c9f.js" async=""></script><script src="/_next/static/chunks/282-980c2eb8fff20123.js" async=""></script><script src="/_next/static/chunks/app/login/page-a0ca6f7ca6a100b8.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex flex-col items-center justify-center p-4"><div class="relative z-10 w-full max-w-md"><div class="flex flex-col items-center mb-8"><svg width="48" height="48" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" class="
2
- transition-all duration-300
3
- drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
4
-
5
- " aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><h1 class="mt-4 text-2xl font-bold text-white">Agent Relay</h1><p class="mt-2 text-text-muted">Loading...</p></div></div></div><!--/$--><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/99c2552394077586.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[6374,[\"282\",\"static/chunks/282-980c2eb8fff20123.js\",\"626\",\"static/chunks/app/login/page-a0ca6f7ca6a100b8.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"HR7W9z1PPVPFqUboUVZFZ\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"login\"],\"initialTree\":[\"\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"login\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/99c2552394077586.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
@@ -1,5 +0,0 @@
1
- {
2
- "headers": {
3
- "x-next-cache-tags": "_N_T_/layout,_N_T_/login/layout,_N_T_/login/page,_N_T_/login"
4
- }
5
- }
@@ -1,7 +0,0 @@
1
- 2:I[9107,[],"ClientPageRoot"]
2
- 3:I[6374,["282","static/chunks/282-980c2eb8fff20123.js","626","static/chunks/app/login/page-a0ca6f7ca6a100b8.js"],"default",1]
3
- 4:I[4707,[],""]
4
- 5:I[6423,[],""]
5
- 0:["HR7W9z1PPVPFqUboUVZFZ",[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["login",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","login","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/99c2552394077586.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
6
- 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
7
- 1:null
@@ -1 +0,0 @@
1
- (()=>{var e={};e.id=860,e.ids=[860],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},5315:e=>{"use strict";e.exports=require("path")},7360:e=>{"use strict";e.exports=require("url")},3587:(e,t,s)=>{"use strict";s.r(t),s.d(t,{GlobalError:()=>l.a,__next_app__:()=>m,originalPathname:()=>x,pages:()=>d,routeModule:()=>u,tree:()=>o}),s(8127),s(1506),s(5866);var r=s(3191),a=s(8716),n=s(7922),l=s.n(n),i=s(5231),c={};for(let e in i)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(c[e]=()=>i[e]);s.d(t,c);let o=["",{children:["metrics",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(s.bind(s,8127)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx"]}]},{metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(s.bind(s,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(s.bind(s,1506)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(s.t.bind(s,5866,23)),"next/dist/client/components/not-found-error"],metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(s.bind(s,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}],d=["/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx"],x="/metrics/page",m={require:s,loadChunk:()=>Promise.resolve()},u=new r.AppPageRouteModule({definition:{kind:a.x.APP_PAGE,page:"/metrics/page",pathname:"/metrics",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:o}})},1253:(e,t,s)=>{Promise.resolve().then(s.bind(s,1343))},1343:(e,t,s)=>{"use strict";s.r(t),s.d(t,{default:()=>x});var r=s(326),a=s(7577),n=s(434);s(6824);let l=["#4a9eff","#b388ff","#ff9e40","#00e676","#ff5c5c","#00ffc8"];function i(e){let t=0;for(let s=0;s<e.length;s++)t=e.charCodeAt(s)+((t<<5)-t);return l[Math.abs(t)%l.length]}function c(e){return e.slice(0,2).toUpperCase()}function o(e){return e<60?`${e}s`:e<3600?`${Math.floor(e/60)}m`:e<86400?`${Math.floor(e/3600)}h ${Math.floor(e%3600/60)}m`:`${Math.floor(e/86400)}d ${Math.floor(e%86400/3600)}h`}function d(e){return new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}function x(){let[e,t]=(0,a.useState)(null),[s,l]=(0,a.useState)(null),[i,c]=(0,a.useState)(null),[x,v]=(0,a.useState)(!0),[k,M]=(0,a.useState)(!1);if(x)return r.jsx("div",{className:"min-h-screen bg-bg-primary text-text-primary font-sans",children:(0,r.jsxs)("div",{className:"flex flex-col items-center justify-center h-screen gap-4",children:[r.jsx("div",{className:"w-8 h-8 border-2 border-border border-t-accent rounded-full animate-spin"}),r.jsx("p",{className:"text-text-muted text-sm",children:"Loading metrics..."})]})});if(i||!e)return r.jsx("div",{className:"min-h-screen bg-bg-primary text-text-primary font-sans",children:(0,r.jsxs)("div",{className:"flex flex-col items-center justify-center h-screen gap-4",children:[r.jsx("div",{className:"w-12 h-12 rounded-full bg-error/10 flex items-center justify-center",children:r.jsx("svg",{className:"w-6 h-6 text-error",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",strokeWidth:2,children:r.jsx("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})}),r.jsx("p",{className:"text-text-secondary",children:i||"No metrics available"}),r.jsx("button",{onClick:()=>window.location.reload(),className:"px-5 py-2.5 bg-accent text-white rounded-lg text-sm font-medium transition-colors hover:bg-accent-hover",children:"Retry"})]})});let A=(e.sessions?.errorRate??0)<=1?"healthy":(e.sessions?.errorRate??0)<=5?"warning":"critical";return(0,r.jsxs)("div",{className:"min-h-screen bg-bg-primary text-text-primary font-sans",children:[r.jsx("header",{className:"sticky top-0 z-50 bg-sidebar-bg border-b border-sidebar-border px-4 md:px-8 py-4",children:(0,r.jsxs)("div",{className:"max-w-[1400px] mx-auto flex items-center justify-between",children:[(0,r.jsxs)("div",{className:"flex items-center gap-4",children:[(0,r.jsxs)(n.default,{href:"/app",className:"flex items-center gap-2 text-text-muted text-sm font-medium px-3 py-2 rounded-md transition-all hover:text-accent hover:bg-accent/10",children:[r.jsx("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:r.jsx("path",{d:"M19 12H5M12 19l-7-7 7-7"})}),r.jsx("span",{className:"hidden sm:inline",children:"Dashboard"})]}),(0,r.jsxs)("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-8 h-8 bg-gradient-to-br from-accent/80 to-accent rounded-lg flex items-center justify-center border border-accent/30",children:(0,r.jsxs)("svg",{width:"18",height:"18",viewBox:"0 0 24 24",fill:"none",stroke:"white",strokeWidth:"2",children:[r.jsx("path",{d:"M3 3v18h18"}),r.jsx("path",{d:"M18 17V9"}),r.jsx("path",{d:"M13 17V5"}),r.jsx("path",{d:"M8 17v-3"})]})}),(0,r.jsxs)("div",{className:"text-lg font-semibold tracking-tight",children:["Agent ",r.jsx("span",{className:"text-accent",children:"Metrics"})]})]})]}),(0,r.jsxs)("div",{className:"flex items-center gap-2 px-3 py-1.5 bg-success/10 border border-success/30 rounded-full",children:[r.jsx("span",{className:"w-2 h-2 bg-success rounded-full animate-pulse shadow-[0_0_8px_rgba(43,172,118,0.5)]"}),r.jsx("span",{className:"text-success text-xs font-semibold font-mono tracking-wide",children:"LIVE"})]})]})}),(0,r.jsxs)("main",{className:"max-w-[1400px] mx-auto px-4 md:px-8 py-6",children:[(0,r.jsxs)("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 mb-6",children:[r.jsx(m,{label:"Total Agents",value:e.totalAgents,subtext:`${e.onlineAgents} online / ${e.offlineAgents} offline`,accent:"cyan"}),r.jsx(m,{label:"Online Now",value:e.onlineAgents,subtext:`${e.totalAgents>0?Math.round(e.onlineAgents/e.totalAgents*100):0}% availability`,accent:"green"}),r.jsx(m,{label:"Total Messages",value:e.totalMessages.toLocaleString(),subtext:"all time",accent:"purple"}),r.jsx(m,{label:"Avg. Throughput",value:e.throughput.avgMessagesPerMinute,subtext:"messages / minute",accent:"orange"})]}),(0,r.jsxs)("section",{className:"mb-6",children:[r.jsx(u,{title:"Message Throughput"}),r.jsx("div",{className:"bg-bg-secondary border border-border rounded-lg p-6",children:(0,r.jsxs)("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6",children:[r.jsx(g,{value:e.throughput.messagesLastMinute,label:"Last Minute",max:10}),r.jsx(g,{value:e.throughput.messagesLastHour,label:"Last Hour",max:100}),r.jsx(g,{value:e.throughput.messagesLast24Hours,label:"Last 24 Hours",max:1e3}),r.jsx(g,{value:e.throughput.avgMessagesPerMinute,label:"Avg / Min",max:5})]})})]}),e.sessions&&(0,r.jsxs)("section",{className:"mb-6",children:[(0,r.jsxs)("div",{className:"flex items-center justify-between mb-3",children:[r.jsx(u,{title:"Session Lifecycle"}),r.jsx(p,{rate:e.sessions.errorRate||0,status:A})]}),(0,r.jsxs)("div",{className:"bg-bg-secondary border border-border rounded-lg p-6",children:[(0,r.jsxs)("div",{className:"grid grid-cols-2 sm:grid-cols-3 lg:grid-cols-5 gap-5 mb-6",children:[r.jsx(h,{value:e.sessions.totalSessions,label:"Total Sessions",accent:"purple"}),r.jsx(h,{value:e.sessions.activeSessions,label:"Active",accent:"blue"}),r.jsx(h,{value:e.sessions.closedByAgent,label:"Clean Close",accent:"green"}),r.jsx(h,{value:e.sessions.closedByDisconnect,label:"Disconnect",accent:"orange"}),r.jsx(h,{value:e.sessions.closedByError,label:"Error",accent:"red"})]}),e.sessions.recentSessions&&e.sessions.recentSessions.length>0&&r.jsx("div",{className:"overflow-x-auto -mx-6 px-6",children:(0,r.jsxs)("table",{className:"w-full min-w-[500px]",children:[r.jsx("thead",{children:(0,r.jsxs)("tr",{className:"border-b border-border",children:[r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Agent"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Status"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Messages"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Started"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Duration"})]})}),r.jsx("tbody",{children:e.sessions.recentSessions.slice(0,5).map((e,t)=>{let s=new Date(e.startedAt),a=Math.floor(((e.endedAt?new Date(e.endedAt):new Date).getTime()-s.getTime())/1e3);return(0,r.jsxs)("tr",{className:"border-b border-border/50 last:border-0",children:[r.jsx("td",{className:"py-3 px-4",children:r.jsx(b,{name:e.agentName})}),r.jsx("td",{className:"py-3 px-4",children:r.jsx(j,{closedBy:e.closedBy})}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-accent",children:e.messageCount}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-text-muted",children:d(e.startedAt)}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-text-muted",children:o(a)})]},t)})})]})})]})]}),(0,r.jsxs)("section",{className:"mb-6",children:[r.jsx(u,{title:"Agent Health"}),r.jsx("div",{className:"bg-bg-secondary border border-border rounded-lg overflow-hidden",children:0===e.agents.length?(0,r.jsxs)("div",{className:"py-12 text-center",children:[(0,r.jsxs)("svg",{className:"w-12 h-12 mx-auto mb-4 text-text-muted opacity-50",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",children:[r.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),r.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),r.jsx("p",{className:"text-text-muted text-sm",children:"No agents registered yet"})]}):r.jsx("div",{className:"overflow-x-auto",children:(0,r.jsxs)("table",{className:"w-full min-w-[700px]",children:[r.jsx("thead",{children:(0,r.jsxs)("tr",{className:"bg-bg-tertiary border-b border-border",children:[r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Agent"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Status"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Sent"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Received"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Uptime"}),r.jsx("th",{className:"text-left py-3 px-4 text-xs font-semibold uppercase tracking-wider text-text-muted",children:"Last Seen"})]})}),r.jsx("tbody",{children:e.agents.map(e=>(0,r.jsxs)("tr",{className:"border-b border-border/50 last:border-0 transition-colors hover:bg-bg-hover",children:[r.jsx("td",{className:"py-3 px-4",children:r.jsx(b,{name:e.name})}),r.jsx("td",{className:"py-3 px-4",children:r.jsx(f,{isOnline:e.isOnline})}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-accent",children:e.messagesSent.toLocaleString()}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-[#a78bfa]",children:e.messagesReceived.toLocaleString()}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-text-muted",children:o(e.uptimeSeconds)}),r.jsx("td",{className:"py-3 px-4 font-mono text-sm text-text-muted",children:d(e.lastSeen)})]},e.name))})]})})})]}),s&&s.agents.length>0&&(0,r.jsxs)("section",{className:"mb-6",children:[(0,r.jsxs)("div",{className:"flex items-center justify-between mb-3",children:[r.jsx(u,{title:"Agent Memory & Resources"}),r.jsx(N,{system:s.system})]}),(0,r.jsxs)("div",{className:"bg-bg-secondary border border-border rounded-lg p-6",children:[(0,r.jsxs)("div",{className:"grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 mb-6",children:[r.jsx(y,{label:"Total Agents",value:s.agents.length,subtext:"being monitored",accent:"cyan"}),r.jsx(y,{label:"Healthy",value:s.agents.filter(e=>"normal"===e.alertLevel).length,subtext:"normal memory",accent:"green"}),r.jsx(y,{label:"Warning",value:s.agents.filter(e=>"warning"===e.alertLevel).length,subtext:"elevated usage",accent:"orange"}),r.jsx(y,{label:"Critical",value:s.agents.filter(e=>"critical"===e.alertLevel||"oom_imminent"===e.alertLevel).length,subtext:"needs attention",accent:"red"})]}),r.jsx("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-4",children:s.agents.map(e=>r.jsx(w,{agent:e},e.name))})]})]}),(0,r.jsxs)("div",{className:"text-center py-4 text-text-muted text-xs font-mono",children:["Last updated: ",d(e.timestamp)]})]})]})}function m({label:e,value:t,subtext:s,accent:a}){return(0,r.jsxs)("div",{className:"bg-bg-secondary border border-border rounded-lg p-5 transition-all hover:border-border-dark hover:bg-bg-tertiary group",children:[r.jsx("div",{className:"text-[11px] font-semibold uppercase tracking-wide text-text-muted mb-2",children:e}),r.jsx("div",{className:`font-mono text-3xl font-bold ${{cyan:"text-accent",green:"text-success",purple:"text-[#a78bfa]",orange:"text-warning"}[a]} transition-transform group-hover:scale-105 origin-left`,children:t}),r.jsx("div",{className:"text-xs text-text-muted font-mono mt-2",children:s})]})}function u({title:e}){return(0,r.jsxs)("h2",{className:"flex items-center gap-2.5 text-xs font-semibold uppercase tracking-wider text-text-muted mb-3",children:[r.jsx("span",{className:"w-[3px] h-3.5 bg-accent rounded-sm"}),e]})}function g({value:e,label:t,max:s}){let a=Math.min(e/s*100,100);return(0,r.jsxs)("div",{className:"text-center",children:[r.jsx("div",{className:"font-mono text-4xl font-bold text-accent leading-none",children:e}),r.jsx("div",{className:"text-xs text-text-muted uppercase tracking-wide mt-2",children:t}),r.jsx("div",{className:"h-1 bg-border rounded-full mt-3 overflow-hidden",children:r.jsx("div",{className:"h-full bg-gradient-to-r from-accent to-[#6366f1] rounded-full transition-all duration-500",style:{width:`${a}%`}})})]})}function h({value:e,label:t,accent:s}){return(0,r.jsxs)("div",{className:"text-center",children:[r.jsx("div",{className:`font-mono text-3xl font-bold ${{purple:"text-[#a78bfa]",blue:"text-accent",green:"text-success",orange:"text-warning",red:"text-error"}[s]} leading-none`,children:e}),r.jsx("div",{className:"text-[11px] text-text-muted uppercase tracking-wide mt-2",children:t})]})}function p({rate:e,status:t}){return(0,r.jsxs)("span",{className:`inline-flex items-center gap-1.5 px-2.5 py-1 rounded-full text-xs font-semibold font-mono border ${{healthy:"bg-success/15 text-success border-success/30",warning:"bg-warning/15 text-warning border-warning/30",critical:"bg-error/15 text-error border-error/30"}[t]}`,children:[e.toFixed(1),"% error rate"]})}function b({name:e}){return(0,r.jsxs)("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-8 h-8 rounded-md flex items-center justify-center text-white text-xs font-semibold",style:{backgroundColor:i(e)},children:c(e)}),r.jsx("span",{className:"font-semibold font-mono text-sm",children:e})]})}function f({isOnline:e}){return(0,r.jsxs)("span",{className:`inline-flex items-center gap-1.5 px-2.5 py-1 rounded-full text-xs font-medium ${e?"bg-success/15 text-success":"bg-bg-hover text-text-muted"}`,children:[r.jsx("span",{className:`w-1.5 h-1.5 rounded-full ${e?"bg-success":"bg-text-muted"}`}),e?"Online":"Offline"]})}function j({closedBy:e}){let t={agent:{label:"Clean",className:"bg-success/15 text-success"},disconnect:{label:"Disconnect",className:"bg-warning/15 text-warning"},error:{label:"Error",className:"bg-error/15 text-error"},active:{label:"Active",className:"bg-accent/15 text-accent"}}[e||"active"];return r.jsx("span",{className:`inline-flex items-center px-2 py-0.5 rounded-lg text-[11px] font-medium ${t.className}`,children:t.label})}function v(e){if(0===e)return"0 B";let t=Math.floor(Math.log(Math.abs(e))/Math.log(1024));return`${(e/Math.pow(1024,t)).toFixed(1)} ${["B","KB","MB","GB","TB"][t]}`}function N({system:e}){let t=Math.round((e.totalMemory-e.freeMemory)/e.totalMemory*100);return(0,r.jsxs)("div",{className:"flex items-center gap-3 px-3 py-1.5 bg-bg-tertiary border border-border rounded-lg",children:[(0,r.jsxs)("div",{className:"flex items-center gap-2",children:[(0,r.jsxs)("svg",{className:"w-4 h-4 text-accent",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[r.jsx("rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}),r.jsx("rect",{x:"8",y:"8",width:"8",height:"8",rx:"1",fill:"currentColor",opacity:"0.3"})]}),r.jsx("span",{className:"text-xs text-text-muted",children:"System:"})]}),(0,r.jsxs)("div",{className:"flex items-center gap-2",children:[r.jsx("div",{className:"w-24 h-2 bg-border rounded-full overflow-hidden",children:r.jsx("div",{className:`h-full rounded-full transition-all ${t>90?"bg-error":t>70?"bg-warning":"bg-accent"}`,style:{width:`${t}%`}})}),(0,r.jsxs)("span",{className:"text-xs font-mono text-text-muted",children:[t,"%"]})]}),(0,r.jsxs)("span",{className:"text-xs font-mono text-text-muted",children:[v(e.freeMemory)," free"]})]})}function y({label:e,value:t,subtext:s,accent:a}){return(0,r.jsxs)("div",{className:"bg-bg-tertiary border border-border/50 rounded-lg p-4 text-center",children:[r.jsx("div",{className:`font-mono text-3xl font-bold ${{cyan:"text-accent",green:"text-success",orange:"text-warning",red:"text-error"}[a]} leading-none`,children:t}),r.jsx("div",{className:"text-[11px] text-text-muted uppercase tracking-wide mt-2",children:e}),r.jsx("div",{className:"text-xs text-text-muted mt-1",children:s})]})}function w({agent:e}){let t=e.rssBytes?e.rssBytes/1048576:0,s={normal:{bg:"bg-success/10",border:"border-success/30",text:"text-success",label:"Healthy"},warning:{bg:"bg-warning/10",border:"border-warning/30",text:"text-warning",label:"Warning"},critical:{bg:"bg-error/10",border:"border-error/30",text:"text-error",label:"Critical"},oom_imminent:{bg:"bg-error/20",border:"border-error/50",text:"text-error",label:"OOM Risk"}}[e.alertLevel||"normal"],a={growing:{icon:"↑",color:"text-warning",label:"Growing"},stable:{icon:"→",color:"text-success",label:"Stable"},shrinking:{icon:"↓",color:"text-accent",label:"Shrinking"},unknown:{icon:"?",color:"text-text-muted",label:"Unknown"}}[e.trend||"unknown"];return(0,r.jsxs)("div",{className:`${s.bg} border ${s.border} rounded-lg p-4 transition-all hover:scale-[1.01]`,children:[(0,r.jsxs)("div",{className:"flex items-center justify-between mb-4",children:[(0,r.jsxs)("div",{className:"flex items-center gap-3",children:[r.jsx("div",{className:"w-10 h-10 rounded-lg flex items-center justify-center text-white text-sm font-semibold",style:{backgroundColor:i(e.name)},children:c(e.name)}),(0,r.jsxs)("div",{children:[r.jsx("div",{className:"font-semibold font-mono text-sm text-text-primary",children:e.name}),(0,r.jsxs)("div",{className:"text-xs text-text-muted",children:["PID: ",e.pid||"N/A"," • ",e.status]})]})]}),r.jsx("div",{className:"flex items-center gap-2",children:r.jsx("span",{className:`inline-flex items-center gap-1 px-2 py-1 rounded-full text-xs font-medium ${s.bg} ${s.text}`,children:s.label})})]}),(0,r.jsxs)("div",{className:"mb-4",children:[(0,r.jsxs)("div",{className:"flex items-center justify-between mb-1.5",children:[r.jsx("span",{className:"text-xs text-text-muted",children:"Memory Usage"}),r.jsx("span",{className:"text-sm font-mono font-semibold text-text-primary",children:v(e.rssBytes||0)})]}),r.jsx("div",{className:"h-3 bg-bg-primary rounded-full overflow-hidden",children:r.jsx("div",{className:`h-full rounded-full transition-all duration-500 ${"critical"===e.alertLevel||"oom_imminent"===e.alertLevel?"bg-gradient-to-r from-error to-error/70":"warning"===e.alertLevel?"bg-gradient-to-r from-warning to-warning/70":"bg-gradient-to-r from-accent to-[#6366f1]"}`,style:{width:`${Math.min(t/2048*100,100)}%`}})}),(0,r.jsxs)("div",{className:"flex items-center justify-between mt-1",children:[r.jsx("span",{className:"text-[10px] text-text-muted",children:"0"}),r.jsx("span",{className:"text-[10px] text-text-muted",children:"2 GB"})]})]}),(0,r.jsxs)("div",{className:"grid grid-cols-3 gap-3",children:[(0,r.jsxs)("div",{className:"text-center",children:[(0,r.jsxs)("div",{className:"text-lg font-mono font-bold text-accent",children:[e.cpuPercent?.toFixed(1)||"0","%"]}),r.jsx("div",{className:"text-[10px] text-text-muted uppercase",children:"CPU"})]}),(0,r.jsxs)("div",{className:"text-center",children:[(0,r.jsxs)("div",{className:`text-lg font-mono font-bold ${a.color} flex items-center justify-center gap-1`,children:[r.jsx("span",{children:a.icon}),r.jsx("span",{className:"text-xs",children:a.label})]}),r.jsx("div",{className:"text-[10px] text-text-muted uppercase",children:"Trend"})]}),(0,r.jsxs)("div",{className:"text-center",children:[r.jsx("div",{className:"text-lg font-mono font-bold text-[#a78bfa]",children:v(e.highWatermark||0)}),r.jsx("div",{className:"text-[10px] text-text-muted uppercase",children:"Peak"})]})]}),e.uptimeMs&&(0,r.jsxs)("div",{className:"mt-3 pt-3 border-t border-border/30 flex items-center justify-between",children:[r.jsx("span",{className:"text-xs text-text-muted",children:"Uptime"}),r.jsx("span",{className:"text-xs font-mono text-text-muted",children:o(Math.floor(e.uptimeMs/1e3))})]})]})}},8127:(e,t,s)=>{"use strict";s.r(t),s.d(t,{default:()=>r});let r=(0,s(8570).createProxy)(String.raw`/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx#default`)}};var t=require("../../webpack-runtime.js");t.C(e);var s=e=>t(t.s=e),r=t.X(0,[948,471,621,434,684],()=>s(3587));module.exports=r})();
@@ -1 +0,0 @@
1
- {"version":1,"files":["../../../../node_modules/next/dist/client/components/action-async-storage-instance.js","../../../../node_modules/next/dist/client/components/action-async-storage.external.js","../../../../node_modules/next/dist/client/components/async-local-storage.js","../../../../node_modules/next/dist/client/components/request-async-storage-instance.js","../../../../node_modules/next/dist/client/components/request-async-storage.external.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/package.json","../../../../package.json","../../../package.json","../../chunks/434.js","../../chunks/471.js","../../chunks/621.js","../../chunks/684.js","../../chunks/948.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +0,0 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/metrics/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"80":{"*":{"id":"1868","name":"*","chunks":[],"async":false}},"1060":{"*":{"id":"9727","name":"*","chunks":[],"async":false}},"2846":{"*":{"id":"2994","name":"*","chunks":[],"async":false}},"3330":{"*":{"id":"3094","name":"*","chunks":[],"async":false}},"4011":{"*":{"id":"9213","name":"*","chunks":[],"async":false}},"4665":{"*":{"id":"7722","name":"*","chunks":[],"async":false}},"4676":{"*":{"id":"3787","name":"*","chunks":[],"async":false}},"4680":{"*":{"id":"1249","name":"*","chunks":[],"async":false}},"4707":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5804":{"*":{"id":"1343","name":"*","chunks":[],"async":false}},"5844":{"*":{"id":"5100","name":"*","chunks":[],"async":false}},"6374":{"*":{"id":"1442","name":"*","chunks":[],"async":false}},"6423":{"*":{"id":"4759","name":"*","chunks":[],"async":false}},"7340":{"*":{"id":"8743","name":"*","chunks":[],"async":false}},"8615":{"*":{"id":"3947","name":"*","chunks":[],"async":false}},"9107":{"*":{"id":"6114","name":"*","chunks":[],"async":false}},"9197":{"*":{"id":"153","name":"*","chunks":[],"async":false}},"9992":{"*":{"id":"8687","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/globals.css":{"id":7960,"name":"*","chunks":["185","static/chunks/app/layout-6b91e33784c20610.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":{"id":4011,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":{"id":3330,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":{"id":4680,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":{"id":9992,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":{"id":8615,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":{"id":6374,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":{"id":7340,"name":"*","chunks":["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","116","static/chunks/116-a883fca163f3a5bc.js","891","static/chunks/891-5cb1513eeb97a891.js","83","static/chunks/83-4f08122d4e7e79a6.js","677","static/chunks/677-30e60cb0b47875b6.js","766","static/chunks/766-2aea80818f7eb0d8.js","931","static/chunks/app/page-7993778218818ace.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":{"id":5804,"name":"*","chunks":["648","static/chunks/648-acb2ff9f77cbfbd3.js","116","static/chunks/116-a883fca163f3a5bc.js","860","static/chunks/app/metrics/page-1e37ef8e73940b40.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":{"id":4676,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":{"id":9197,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":{"id":4665,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":{"id":5844,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/relay/relay/packages/dashboard/ui/":[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout":["static/css/99c2552394077586.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page":["static/css/4034f236dd1a3178.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page":[]}}
@@ -1 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/99c2552394077586.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-c8afed19e821a35d.js" async=""></script><script src="/_next/static/chunks/main-app-fdbeb09028f57c9f.js" async=""></script><script src="/_next/static/chunks/648-acb2ff9f77cbfbd3.js" async=""></script><script src="/_next/static/chunks/116-a883fca163f3a5bc.js" async=""></script><script src="/_next/static/chunks/app/metrics/page-1e37ef8e73940b40.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-bg-primary text-text-primary font-sans"><div class="flex flex-col items-center justify-center h-screen gap-4"><div class="w-8 h-8 border-2 border-border border-t-accent rounded-full animate-spin"></div><p class="text-text-muted text-sm">Loading metrics...</p></div></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/99c2552394077586.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[2846,[],\"\"]\n4:I[9107,[],\"ClientPageRoot\"]\n5:I[5804,[\"648\",\"static/chunks/648-acb2ff9f77cbfbd3.js\",\"116\",\"static/chunks/116-a883fca163f3a5bc.js\",\"860\",\"static/chunks/app/metrics/page-1e37ef8e73940b40.js\"],\"default\",1]\n6:I[4707,[],\"\"]\n7:I[6423,[],\"\"]\n9:I[1060,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"HR7W9z1PPVPFqUboUVZFZ\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"metrics\"],\"initialTree\":[\"\",{\"children\":[\"metrics\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"metrics\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"metrics\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/99c2552394077586.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
@@ -1,5 +0,0 @@
1
- {
2
- "headers": {
3
- "x-next-cache-tags": "_N_T_/layout,_N_T_/metrics/layout,_N_T_/metrics/page,_N_T_/metrics"
4
- }
5
- }
@@ -1,7 +0,0 @@
1
- 2:I[9107,[],"ClientPageRoot"]
2
- 3:I[5804,["648","static/chunks/648-acb2ff9f77cbfbd3.js","116","static/chunks/116-a883fca163f3a5bc.js","860","static/chunks/app/metrics/page-1e37ef8e73940b40.js"],"default",1]
3
- 4:I[4707,[],""]
4
- 5:I[6423,[],""]
5
- 0:["HR7W9z1PPVPFqUboUVZFZ",[[["",{"children":["metrics",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["metrics",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","metrics","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/99c2552394077586.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
6
- 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
7
- 1:null
@@ -1 +0,0 @@
1
- (()=>{var e={};e.id=931,e.ids=[931],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},5315:e=>{"use strict";e.exports=require("path")},7360:e=>{"use strict";e.exports=require("url")},1607:(e,t,r)=>{"use strict";r.r(t),r.d(t,{GlobalError:()=>i.a,__next_app__:()=>c,originalPathname:()=>u,pages:()=>p,routeModule:()=>x,tree:()=>d}),r(908),r(1506),r(5866);var a=r(3191),s=r(8716),n=r(7922),i=r.n(n),o=r(5231),l={};for(let e in o)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(l[e]=()=>o[e]);r.d(t,l);let d=["",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(r.bind(r,908)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx"],metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(r.bind(r,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(r.bind(r,1506)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(r.t.bind(r,5866,23)),"next/dist/client/components/not-found-error"],metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(r.bind(r,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}],p=["/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx"],u="/page",c={require:r,loadChunk:()=>Promise.resolve()},x=new a.AppPageRouteModule({definition:{kind:s.x.APP_PAGE,page:"/page",pathname:"/",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:d}})},9936:(e,t,r)=>{Promise.resolve().then(r.bind(r,8743))},8743:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>o});var a=r(326),s=r(7577),n=r(3288),i=r(4071);function o(){let[e,t]=(0,s.useState)(!1),[r,o]=(0,s.useState)(!1);return r?e?a.jsx(n.fy,{}):a.jsx(i.gV,{}):a.jsx("div",{className:"flex h-screen bg-bg-deep font-sans text-text-primary items-center justify-center",children:a.jsx("div",{className:"text-text-muted",children:"Loading..."})})}},908:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>a});let a=(0,r(8570).createProxy)(String.raw`/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx#default`)}};var t=require("../webpack-runtime.js");t.C(e);var r=e=>t(t.s=e),a=t.X(0,[948,471,621,90,251,684,680,205,71,288],()=>r(1607));module.exports=a})();
@@ -1 +0,0 @@
1
- {"version":1,"files":["../../../node_modules/next/dist/client/components/action-async-storage-instance.js","../../../node_modules/next/dist/client/components/action-async-storage.external.js","../../../node_modules/next/dist/client/components/async-local-storage.js","../../../node_modules/next/dist/client/components/request-async-storage-instance.js","../../../node_modules/next/dist/client/components/request-async-storage.external.js","../../../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../node_modules/next/dist/server/lib/trace/constants.js","../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../node_modules/next/package.json","../../../package.json","../../package.json","../chunks/205.js","../chunks/251.js","../chunks/288.js","../chunks/471.js","../chunks/621.js","../chunks/680.js","../chunks/684.js","../chunks/71.js","../chunks/90.js","../chunks/948.js","../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +0,0 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"80":{"*":{"id":"1868","name":"*","chunks":[],"async":false}},"1060":{"*":{"id":"9727","name":"*","chunks":[],"async":false}},"2846":{"*":{"id":"2994","name":"*","chunks":[],"async":false}},"3330":{"*":{"id":"3094","name":"*","chunks":[],"async":false}},"4011":{"*":{"id":"9213","name":"*","chunks":[],"async":false}},"4665":{"*":{"id":"7722","name":"*","chunks":[],"async":false}},"4676":{"*":{"id":"3787","name":"*","chunks":[],"async":false}},"4680":{"*":{"id":"1249","name":"*","chunks":[],"async":false}},"4707":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5804":{"*":{"id":"1343","name":"*","chunks":[],"async":false}},"5844":{"*":{"id":"5100","name":"*","chunks":[],"async":false}},"6374":{"*":{"id":"1442","name":"*","chunks":[],"async":false}},"6423":{"*":{"id":"4759","name":"*","chunks":[],"async":false}},"7340":{"*":{"id":"8743","name":"*","chunks":[],"async":false}},"8615":{"*":{"id":"3947","name":"*","chunks":[],"async":false}},"9107":{"*":{"id":"6114","name":"*","chunks":[],"async":false}},"9197":{"*":{"id":"153","name":"*","chunks":[],"async":false}},"9992":{"*":{"id":"8687","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/globals.css":{"id":7960,"name":"*","chunks":["185","static/chunks/app/layout-6b91e33784c20610.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":{"id":4011,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":{"id":3330,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":{"id":4680,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":{"id":9992,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":{"id":8615,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":{"id":6374,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":{"id":7340,"name":"*","chunks":["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","116","static/chunks/116-a883fca163f3a5bc.js","891","static/chunks/891-5cb1513eeb97a891.js","83","static/chunks/83-4f08122d4e7e79a6.js","677","static/chunks/677-30e60cb0b47875b6.js","766","static/chunks/766-2aea80818f7eb0d8.js","931","static/chunks/app/page-7993778218818ace.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":{"id":5804,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":{"id":4676,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":{"id":9197,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":{"id":4665,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":{"id":5844,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/relay/relay/packages/dashboard/ui/":[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout":["static/css/99c2552394077586.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page":["static/css/4034f236dd1a3178.css"]}}
@@ -1,5 +0,0 @@
1
- (()=>{var e={};e.id=979,e.ids=[979],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},5315:e=>{"use strict";e.exports=require("path")},7360:e=>{"use strict";e.exports=require("url")},4276:(e,r,t)=>{"use strict";t.r(r),t.d(r,{GlobalError:()=>o.a,__next_app__:()=>c,originalPathname:()=>u,pages:()=>p,routeModule:()=>h,tree:()=>d}),t(4537),t(1506),t(5866);var a=t(3191),n=t(8716),i=t(7922),o=t.n(i),s=t(5231),l={};for(let e in s)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(l[e]=()=>s[e]);t.d(r,l);let d=["",{children:["pricing",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(t.bind(t,4537)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx"]}]},{metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(t.bind(t,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}]},{layout:[()=>Promise.resolve().then(t.bind(t,1506)),"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(t.t.bind(t,5866,23)),"next/dist/client/components/not-found-error"],metadata:{icon:[],apple:[async e=>(await Promise.resolve().then(t.bind(t,3226))).default(e)],openGraph:[],twitter:[],manifest:void 0}}],p=["/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx"],u="/pricing/page",c={require:t,loadChunk:()=>Promise.resolve()},h=new a.AppPageRouteModule({definition:{kind:n.x.APP_PAGE,page:"/pricing/page",pathname:"/pricing",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:d}})},1802:()=>{},4221:(e,r,t)=>{Promise.resolve().then(t.bind(t,3787))},1493:(e,r,t)=>{Promise.resolve().then(t.t.bind(t,2994,23)),Promise.resolve().then(t.t.bind(t,6114,23)),Promise.resolve().then(t.t.bind(t,9727,23)),Promise.resolve().then(t.t.bind(t,9671,23)),Promise.resolve().then(t.t.bind(t,1868,23)),Promise.resolve().then(t.t.bind(t,4759,23))},3787:(e,r,t)=>{"use strict";t.r(r),t.d(r,{default:()=>i});var a=t(326),n=t(3288);function i(){return a.jsx(n.Wv,{})}},48:(e,r,t)=>{"use strict";t.d(r,{K7:()=>n});var a=t(326);function n({size:e=24,className:r="",withGlow:t=!1}){return(0,a.jsxs)("svg",{width:e,height:e,viewBox:"0 0 100 100",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:`
2
- transition-all duration-300
3
- ${t?"drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]":""}
4
- ${r}
5
- `,"aria-label":"Agent Relay Logo",role:"img",children:[a.jsx("path",{d:"M30 80 L 50 20 L 70 80",stroke:"#00d9ff",strokeWidth:"5",strokeLinejoin:"round",strokeLinecap:"round",fill:"none"}),a.jsx("line",{x1:"40",y1:"50",x2:"60",y2:"50",stroke:"#00d9ff",strokeWidth:"5",strokeLinecap:"round"}),a.jsx("path",{d:"M50 20 L 50 80",stroke:"#00ffc8",strokeWidth:"2.5",strokeLinecap:"round",opacity:"0.7"}),a.jsx("path",{d:"M50 20 C 80 20 80 50 50 50 L 80 80",stroke:"#00ffc8",strokeWidth:"2.5",strokeLinecap:"round",strokeLinejoin:"round",fill:"none",opacity:"0.7"})]})}t(7577)},1506:(e,r,t)=>{"use strict";t.r(r),t.d(r,{default:()=>i,metadata:()=>n});var a=t(9510);t(7272);let n={title:"Agent Relay Dashboard",description:"Fleet control dashboard for Agent Relay"};function i({children:e}){return a.jsx("html",{lang:"en",children:a.jsx("body",{children:e})})}},4537:(e,r,t)=>{"use strict";t.r(r),t.d(r,{default:()=>a});let a=(0,t(8570).createProxy)(String.raw`/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx#default`)},3226:(e,r,t)=>{"use strict";t.r(r),t.d(r,{default:()=>n});var a=t(6621);let n=e=>[{type:"image/png",sizes:"256x256",url:(0,a.fillMetadataSegment)(".",e.params,"apple-icon.png")+"?9e7a840704165ca6"}]},7272:()=>{}};var r=require("../../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),a=r.X(0,[948,471,621,288],()=>t(4276));module.exports=a})();
@@ -1 +0,0 @@
1
- {"version":1,"files":["../../../../node_modules/next/dist/client/components/action-async-storage-instance.js","../../../../node_modules/next/dist/client/components/action-async-storage.external.js","../../../../node_modules/next/dist/client/components/async-local-storage.js","../../../../node_modules/next/dist/client/components/request-async-storage-instance.js","../../../../node_modules/next/dist/client/components/request-async-storage.external.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../node_modules/next/dist/server/lib/trace/constants.js","../../../../node_modules/next/dist/server/lib/trace/tracer.js","../../../../node_modules/next/package.json","../../../../package.json","../../../package.json","../../chunks/288.js","../../chunks/471.js","../../chunks/621.js","../../chunks/948.js","../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -1 +0,0 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/pricing/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"80":{"*":{"id":"1868","name":"*","chunks":[],"async":false}},"1060":{"*":{"id":"9727","name":"*","chunks":[],"async":false}},"2846":{"*":{"id":"2994","name":"*","chunks":[],"async":false}},"3330":{"*":{"id":"3094","name":"*","chunks":[],"async":false}},"4011":{"*":{"id":"9213","name":"*","chunks":[],"async":false}},"4665":{"*":{"id":"7722","name":"*","chunks":[],"async":false}},"4676":{"*":{"id":"3787","name":"*","chunks":[],"async":false}},"4680":{"*":{"id":"1249","name":"*","chunks":[],"async":false}},"4707":{"*":{"id":"9671","name":"*","chunks":[],"async":false}},"5804":{"*":{"id":"1343","name":"*","chunks":[],"async":false}},"5844":{"*":{"id":"5100","name":"*","chunks":[],"async":false}},"6374":{"*":{"id":"1442","name":"*","chunks":[],"async":false}},"6423":{"*":{"id":"4759","name":"*","chunks":[],"async":false}},"7340":{"*":{"id":"8743","name":"*","chunks":[],"async":false}},"8615":{"*":{"id":"3947","name":"*","chunks":[],"async":false}},"9107":{"*":{"id":"6114","name":"*","chunks":[],"async":false}},"9197":{"*":{"id":"153","name":"*","chunks":[],"async":false}},"9992":{"*":{"id":"8687","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/app-router.js":{"id":2846,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/client-page.js":{"id":9107,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":1060,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/layout-router.js":{"id":4707,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":80,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":6423,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/globals.css":{"id":7960,"name":"*","chunks":["185","static/chunks/app/layout-6b91e33784c20610.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":{"id":4011,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":{"id":3330,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":{"id":4680,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":{"id":9992,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":{"id":8615,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":{"id":6374,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":{"id":7340,"name":"*","chunks":["30","static/chunks/e868780c-48e5f147c90a3a41.js","532","static/chunks/532-bace199897eeab37.js","116","static/chunks/116-a883fca163f3a5bc.js","891","static/chunks/891-5cb1513eeb97a891.js","83","static/chunks/83-4f08122d4e7e79a6.js","677","static/chunks/677-30e60cb0b47875b6.js","766","static/chunks/766-2aea80818f7eb0d8.js","931","static/chunks/app/page-7993778218818ace.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":{"id":5804,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":{"id":4676,"name":"*","chunks":["766","static/chunks/766-2aea80818f7eb0d8.js","979","static/chunks/app/pricing/page-9db3ebdfa567a7c9.js"],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":{"id":9197,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":{"id":4665,"name":"*","chunks":[],"async":false},"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":{"id":5844,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/relay/relay/packages/dashboard/ui/":[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout":["static/css/99c2552394077586.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page":["static/css/4034f236dd1a3178.css"],"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page":["static/css/4034f236dd1a3178.css"]}}
@@ -1,13 +0,0 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/99c2552394077586.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/css/4034f236dd1a3178.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js"/><script src="/_next/static/chunks/fd9d1056-609918ca7b6280bb.js" async=""></script><script src="/_next/static/chunks/117-c8afed19e821a35d.js" async=""></script><script src="/_next/static/chunks/main-app-fdbeb09028f57c9f.js" async=""></script><script src="/_next/static/chunks/766-2aea80818f7eb0d8.js" async=""></script><script src="/_next/static/chunks/app/pricing/page-9db3ebdfa567a7c9.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="pricing-page"><div class="pricing-bg"><div class="grid-bg"><div class="grid-lines"></div><div class="grid-glow"></div></div><div class="glow-orbs"><div class="orb orb-1"></div><div class="orb orb-2"></div></div></div><nav class="nav "><div class="nav-inner"><a href="/" class="nav-logo"><svg width="28" height="28" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" class="
2
- transition-all duration-300
3
- drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
4
-
5
- " aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><div class="nav-links"><a href="/#demo">Demo</a><a href="/#features">Features</a><a href="/pricing" class="active">Pricing</a><a href="/docs" class="nav-docs">Docs</a></div><div class="nav-actions"><a href="/login" class="btn-ghost">Sign In</a><a href="/signup" class="btn-primary">Get Started</a></div></div></nav><main><section class="pricing-hero"><div class="pricing-hero-content"><div class="hero-badge"><span class="badge-icon">◈</span><span>Simple, transparent pricing</span></div><h1><span class="title-line">Choose Your</span><span class="title-line gradient">Mission Control</span></h1><p class="hero-subtitle">Start free. Scale as you grow. Pay only for what you use.<br/>All plans include a 14-day free trial.</p><div class="billing-toggle"><button class="active">Monthly</button><button class="">Annual<span class="save-badge">Save 20%</span></button></div></div></section><section class="plans-section"><div class="plans-grid"><div class="plan-card "><div class="plan-header"><h3>Free</h3><p class="plan-tagline">Try AI agent workflows</p></div><div class="plan-price"><span class="price">$0</span><span class="period">forever</span></div><p class="plan-description">Explore agent orchestration with limited resources. Perfect for testing.</p><div class="plan-limits"><div class="limit-item"><span class="limit-icon">◇</span><span class="limit-value">1</span><span class="limit-label">workspaces</span></div><div class="limit-item"><span class="limit-icon">◈</span><span class="limit-value">2</span><span class="limit-label">repos</span></div><div class="limit-item"><span class="limit-icon">⬡</span><span class="limit-value">2</span><span class="limit-label">agents</span></div><div class="limit-item"><span class="limit-icon">⏱</span><span class="limit-value">5</span><span class="limit-label">hours/mo</span></div></div><a href="/signup" class="btn-ghost btn-full">Get Started Free</a></div><div class="plan-card highlighted"><div class="plan-badge">Most Popular</div><div class="plan-header"><h3>Pro</h3><p class="plan-tagline">For professional developers</p></div><div class="plan-price"><span class="price">$69</span><span class="period">/month</span></div><p class="plan-description">Build with AI agents daily. Includes auto-scaling and session persistence.</p><div class="plan-limits"><div class="limit-item"><span class="limit-icon">◇</span><span class="limit-value">5</span><span class="limit-label">workspaces</span></div><div class="limit-item"><span class="limit-icon">◈</span><span class="limit-value">10</span><span class="limit-label">repos</span></div><div class="limit-item"><span class="limit-icon">⬡</span><span class="limit-value">5</span><span class="limit-label">agents</span></div><div class="limit-item"><span class="limit-icon">⏱</span><span class="limit-value">50</span><span class="limit-label">hours/mo</span></div></div><a href="/signup?plan=pro" class="btn-primary btn-full">Start Free Trial</a></div><div class="plan-card "><div class="plan-header"><h3>Team</h3><p class="plan-tagline">For growing teams</p></div><div class="plan-price"><span class="price">$129</span><span class="period">/month</span></div><p class="plan-description">Dedicated CPUs, priority support, and team collaboration features.</p><div class="plan-limits"><div class="limit-item"><span class="limit-icon">◇</span><span class="limit-value">20</span><span class="limit-label">workspaces</span></div><div class="limit-item"><span class="limit-icon">◈</span><span class="limit-value">100</span><span class="limit-label">repos</span></div><div class="limit-item"><span class="limit-icon">⬡</span><span class="limit-value">10</span><span class="limit-label">agents</span></div><div class="limit-item"><span class="limit-icon">⏱</span><span class="limit-value">200</span><span class="limit-label">hours/mo</span></div></div><a href="/signup?plan=team" class="btn-ghost btn-full">Start Free Trial</a></div><div class="plan-card "><div class="plan-header"><h3>Enterprise</h3><p class="plan-tagline">For organizations at scale</p></div><div class="plan-price"><span class="price">$499</span><span class="period">/month</span></div><p class="plan-description">Unlimited resources, SSO, SLA guarantees, and dedicated support.</p><div class="plan-limits"><div class="limit-item"><span class="limit-icon">◇</span><span class="limit-value">∞</span><span class="limit-label">workspaces</span></div><div class="limit-item"><span class="limit-icon">◈</span><span class="limit-value">∞</span><span class="limit-label">repos</span></div><div class="limit-item"><span class="limit-icon">⬡</span><span class="limit-value">∞</span><span class="limit-label">agents</span></div><div class="limit-item"><span class="limit-icon">⏱</span><span class="limit-value">∞</span><span class="limit-label">hours/mo</span></div></div><a href="/contact?subject=enterprise" class="btn-ghost btn-full">Contact Sales</a></div></div></section><section class="comparison-section"><div class="section-header"><span class="section-tag">Compare Plans</span><h2>Feature Comparison</h2><p>See exactly what&#x27;s included in each plan.</p></div><div class="comparison-table-wrapper"><table class="comparison-table"><thead><tr><th class="feature-col">Feature</th><th class="">Free</th><th class="highlighted">Pro</th><th class="">Team</th><th class="">Enterprise</th></tr></thead><tbody><tr><td class="feature-col">Workspaces</td><td class=""><span class="feature-value">1</span></td><td class="highlighted"><span class="feature-value">5</span></td><td class=""><span class="feature-value">20</span></td><td class=""><span class="feature-value">Unlimited</span></td></tr><tr><td class="feature-col">Repositories</td><td class=""><span class="feature-value">2</span></td><td class="highlighted"><span class="feature-value">10</span></td><td class=""><span class="feature-value">100</span></td><td class=""><span class="feature-value">Unlimited</span></td></tr><tr><td class="feature-col">Concurrent agents</td><td class=""><span class="feature-value">2</span></td><td class="highlighted"><span class="feature-value">5</span></td><td class=""><span class="feature-value">10</span></td><td class=""><span class="feature-value">Unlimited</span></td></tr><tr><td class="feature-col">Compute hours/month</td><td class=""><span class="feature-value">5</span></td><td class="highlighted"><span class="feature-value">50</span></td><td class=""><span class="feature-value">200</span></td><td class=""><span class="feature-value">Unlimited</span></td></tr><tr><td class="feature-col">CPU type</td><td class=""><span class="feature-value">Shared</span></td><td class="highlighted"><span class="feature-value">Shared</span></td><td class=""><span class="feature-value">Dedicated</span></td><td class=""><span class="feature-value">Dedicated</span></td></tr><tr><td class="feature-col">Coordinator agents</td><td class=""><span class="dash">—</span></td><td class="highlighted"><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td></tr><tr><td class="feature-col">Auto-scaling</td><td class=""><span class="dash">—</span></td><td class="highlighted"><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td></tr><tr><td class="feature-col">Session persistence</td><td class=""><span class="dash">—</span></td><td class="highlighted"><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Yes</span></td></tr><tr><td class="feature-col">Priority support</td><td class=""><span class="dash">—</span></td><td class="highlighted"><span class="dash">—</span></td><td class=""><span class="feature-value">Yes</span></td><td class=""><span class="feature-value">Dedicated</span></td></tr><tr><td class="feature-col">SSO/SAML</td><td class=""><span class="dash">—</span></td><td class="highlighted"><span class="dash">—</span></td><td class=""><span class="dash">—</span></td><td class=""><span class="feature-value">Yes</span></td></tr></tbody></table></div></section><section class="faq-section"><div class="section-header"><span class="section-tag">FAQ</span><h2>Questions? Answers.</h2><p>Everything you need to know about Agent Relay pricing.</p></div><div class="faq-grid"><div class="faq-item "><div class="faq-question"><span>What counts as a &quot;compute hour&quot;?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>A compute hour is measured when your agents are actively running in our cloud infrastructure. Time spent waiting for your input or idle time doesn&#x27;t count. We track usage to the second and round up to the nearest minute for billing.</p></div></div><div class="faq-item "><div class="faq-question"><span>Can I use my own AI API keys?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>Yes! Agent Relay orchestrates your agents—you connect your own Claude, Codex, or Gemini instances. We don&#x27;t charge for AI API usage; that&#x27;s between you and your AI provider. Our pricing covers the orchestration infrastructure.</p></div></div><div class="faq-item "><div class="faq-question"><span>What are coordinator agents?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>Coordinators are special agents that oversee project groups. They delegate tasks to other agents, track progress, and ensure work is completed efficiently across multiple repositories. Available on Pro plans and above.</p></div></div><div class="faq-item "><div class="faq-question"><span>What happens if I exceed my limits?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>We&#x27;ll notify you when you&#x27;re approaching your limits. If you exceed them, new agent spawns will be blocked until you upgrade or wait for the next billing cycle. Your existing agents will continue running.</p></div></div><div class="faq-item "><div class="faq-question"><span>Can I change plans anytime?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>Absolutely. Upgrade instantly and get prorated billing. Downgrade takes effect at the end of your billing cycle. No long-term contracts required.</p></div></div><div class="faq-item "><div class="faq-question"><span>Do you offer discounts for startups or open source?</span><span class="faq-toggle">+</span></div><div class="faq-answer"><p>Yes! We offer 50% off for verified startups (less than $1M raised) and free Pro accounts for maintainers of popular open source projects. Contact us to apply.</p></div></div></div></section><section class="cta-section"><div class="cta-card"><div class="cta-content"><h2>Ready to orchestrate?</h2><p>Start free and upgrade when you need more power.</p><div class="cta-buttons"><a href="/signup" class="btn-primary btn-large"><span>Get Started Free</span><span class="btn-arrow">→</span></a><a href="/contact" class="btn-ghost btn-large">Talk to Sales</a></div></div><div class="cta-visual"><div class="orbit"><div class="orbit-ring ring-1"></div><div class="orbit-ring ring-2"></div><div class="orbit-ring ring-3"></div><div class="orbit-center"><svg width="40" height="40" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" class="
6
- transition-all duration-300
7
- drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
8
-
9
- " aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg></div><div class="orbit-dot dot-1">◈</div><div class="orbit-dot dot-2">⬡</div><div class="orbit-dot dot-3">◇</div></div></div></div></section></main><footer class="footer"><div class="footer-inner"><div class="footer-brand"><a href="/" class="footer-logo"><svg width="24" height="24" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg" class="
10
- transition-all duration-300
11
- drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
12
-
13
- " aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><p>Orchestrate AI agents like a symphony.</p></div><div class="footer-links"><div class="footer-column"><h4>Product</h4><a href="/#features">Features</a><a href="/pricing">Pricing</a><a href="/docs">Documentation</a><a href="/changelog">Changelog</a></div><div class="footer-column"><h4>Company</h4><a href="/about">About</a><a href="/blog">Blog</a><a href="/careers">Careers</a><a href="/contact">Contact</a></div><div class="footer-column"><h4>Legal</h4><a href="/privacy">Privacy</a><a href="/terms">Terms</a><a href="/security">Security</a></div></div></div><div class="footer-bottom"><p>© 2025 Agent Relay. All rights reserved.</p><div class="social-links"><a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path></svg></a><a href="https://twitter.com/agent_relay" aria-label="Twitter"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg></a><a href="https://discord.gg/agentrelay" aria-label="Discord"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M20.317 4.37a19.791 19.791 0 00-4.885-1.515.074.074 0 00-.079.037c-.21.375-.444.864-.608 1.25a18.27 18.27 0 00-5.487 0 12.64 12.64 0 00-.617-1.25.077.077 0 00-.079-.037A19.736 19.736 0 003.677 4.37a.07.07 0 00-.032.027C.533 9.046-.32 13.58.099 18.057a.082.082 0 00.031.057 19.9 19.9 0 005.993 3.03.078.078 0 00.084-.028c.462-.63.874-1.295 1.226-1.994a.076.076 0 00-.041-.106 13.107 13.107 0 01-1.872-.892.077.077 0 01-.008-.128 10.2 10.2 0 00.372-.292.074.074 0 01.077-.01c3.928 1.793 8.18 1.793 12.062 0a.074.074 0 01.078.01c.12.098.246.198.373.292a.077.077 0 01-.006.127 12.299 12.299 0 01-1.873.892.077.077 0 00-.041.107c.36.698.772 1.362 1.225 1.993a.076.076 0 00.084.028 19.839 19.839 0 006.002-3.03.077.077 0 00.032-.054c.5-5.177-.838-9.674-3.549-13.66a.061.061 0 00-.031-.03zM8.02 15.33c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.956-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.956 2.418-2.157 2.418zm7.975 0c-1.183 0-2.157-1.085-2.157-2.419 0-1.333.955-2.419 2.157-2.419 1.21 0 2.176 1.096 2.157 2.42 0 1.333-.946 2.418-2.157 2.418z"></path></svg></a></div></div></footer></div><script src="/_next/static/chunks/webpack-1cdd8ed57114d5e1.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/99c2552394077586.css\",\"style\"]\n2:HL[\"/_next/static/css/4034f236dd1a3178.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[2846,[],\"\"]\n5:I[9107,[],\"ClientPageRoot\"]\n6:I[4676,[\"766\",\"static/chunks/766-2aea80818f7eb0d8.js\",\"979\",\"static/chunks/app/pricing/page-9db3ebdfa567a7c9.js\"],\"default\",1]\n7:I[4707,[],\"\"]\n8:I[6423,[],\"\"]\na:I[1060,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"HR7W9z1PPVPFqUboUVZFZ\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"pricing\"],\"initialTree\":[\"\",{\"children\":[\"pricing\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"pricing\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"$L5\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$6\"}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/4034f236dd1a3178.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[null,[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"pricing\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/99c2552394077586.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>