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
@@ -25,7 +25,7 @@ import { findAgentConfig } from '@agent-relay/config/agent-config';
25
25
  import { getTrajectoryIntegration, detectPhaseFromContent, detectToolCalls, detectErrors, getCompactTrailInstructions, getTrailEnvVars, } from '@agent-relay/wrapper';
26
26
  import { escapeForShell } from '@agent-relay/config/bridge-utils';
27
27
  import { detectProviderAuthRevocation } from './auth-detection.js';
28
- import { stripAnsi, sleep, getDefaultRelayPrefix, buildInjectionString, injectWithRetry as sharedInjectWithRetry, INJECTION_CONSTANTS, CLI_QUIRKS, AdaptiveThrottle, } from './shared.js';
28
+ import { stripAnsi, sleep, getDefaultRelayPrefix, buildInjectionString, injectWithRetry as sharedInjectWithRetry, INJECTION_CONSTANTS, CLI_QUIRKS, AdaptiveThrottle, sortByPriority, getPriorityFromImportance, } from './shared.js';
29
29
  import { getTmuxPanePid } from './idle-detector.js';
30
30
  import { DEFAULT_TMUX_WRAPPER_CONFIG } from '@agent-relay/config/relay-config';
31
31
  const execAsync = promisify(exec);
@@ -1357,6 +1357,7 @@ export class TmuxWrapper extends BaseWrapper {
1357
1357
  /**
1358
1358
  * Check if we should inject a message.
1359
1359
  * Uses UniversalIdleDetector (from BaseWrapper) for robust cross-CLI idle detection.
1360
+ * Processes messages by priority (urgent first).
1360
1361
  */
1361
1362
  checkForInjectionOpportunity() {
1362
1363
  if (this.messageQueue.length === 0)
@@ -1365,11 +1366,21 @@ export class TmuxWrapper extends BaseWrapper {
1365
1366
  return;
1366
1367
  if (!this.running)
1367
1368
  return;
1369
+ // Sort queue by priority before processing (urgent messages first)
1370
+ if (this.messageQueue.length > 1) {
1371
+ this.messageQueue = sortByPriority(this.messageQueue);
1372
+ }
1373
+ // Check the priority of the next message
1374
+ const nextMsg = this.messageQueue[0];
1375
+ const priority = getPriorityFromImportance(nextMsg?.importance);
1368
1376
  // Use universal idle detector for more reliable detection (inherited from BaseWrapper)
1369
1377
  const idleResult = this.checkIdleForInjection();
1370
- if (!idleResult.isIdle) {
1371
- // Not idle yet, retry later
1372
- const retryMs = this.config.injectRetryMs ?? 500;
1378
+ // Urgent messages (priority 0) can proceed with lower idle confidence
1379
+ const idleThreshold = priority === 0 ? 0.5 : 0.7;
1380
+ if (!idleResult.isIdle && idleResult.confidence < idleThreshold) {
1381
+ // Not idle yet, retry later (urgent messages retry faster)
1382
+ const baseRetryMs = this.config.injectRetryMs ?? 300;
1383
+ const retryMs = priority <= 1 ? Math.floor(baseRetryMs / 2) : baseRetryMs;
1373
1384
  setTimeout(() => this.checkForInjectionOpportunity(), retryMs);
1374
1385
  return;
1375
1386
  }
@@ -1400,12 +1411,14 @@ export class TmuxWrapper extends BaseWrapper {
1400
1411
  return;
1401
1412
  }
1402
1413
  // Ensure pane output is stable to avoid interleaving with active generation
1403
- const stablePane = await this.waitForStablePane(this.config.outputStabilityTimeoutMs ?? 2000, this.config.outputStabilityPollMs ?? 200);
1414
+ // Pass message priority for adaptive timeout (urgent messages wait less)
1415
+ const msgPriority = getPriorityFromImportance(msg.importance);
1416
+ const stablePane = await this.waitForStablePane(this.config.outputStabilityTimeoutMs ?? 800, this.config.outputStabilityPollMs ?? 150, 2, msgPriority);
1404
1417
  if (!stablePane) {
1405
1418
  this.logStderr('Output still active, re-queuing injection');
1406
1419
  this.messageQueue.unshift(msg);
1407
1420
  this.isInjecting = false;
1408
- setTimeout(() => this.checkForInjectionOpportunity(), this.config.injectRetryMs ?? 500);
1421
+ setTimeout(() => this.checkForInjectionOpportunity(), this.config.injectRetryMs ?? 300);
1409
1422
  return;
1410
1423
  }
1411
1424
  // For Gemini: check if we're at a shell prompt ($) vs chat prompt (>)
@@ -1684,14 +1697,48 @@ export class TmuxWrapper extends BaseWrapper {
1684
1697
  }
1685
1698
  /**
1686
1699
  * Wait for pane output to stabilize before injecting to avoid interleaving with ongoing output.
1700
+ * Uses adaptive timeout based on idle detector confidence for faster injection when safe.
1701
+ *
1702
+ * @param maxWaitMs - Maximum time to wait (default from config)
1703
+ * @param pollIntervalMs - Polling interval (default from config)
1704
+ * @param requiredStablePolls - Consecutive stable polls needed (default 2)
1705
+ * @param priority - Message priority (lower = more urgent, can use shorter timeout)
1687
1706
  */
1688
- async waitForStablePane(maxWaitMs = 2000, pollIntervalMs = 200, requiredStablePolls = 2) {
1707
+ async waitForStablePane(maxWaitMs = 800, pollIntervalMs = 150, requiredStablePolls = 2, priority) {
1689
1708
  const start = Date.now();
1709
+ // Adaptive timeout based on idle confidence and priority
1710
+ // If idle detector shows high confidence (process state), we can be more aggressive
1711
+ const idleResult = this.checkIdleForInjection();
1712
+ const highConfidence = idleResult.confidence >= 0.9;
1713
+ // Priority-based timeout adjustment (urgent messages get shorter timeout)
1714
+ let effectiveMaxWait = maxWaitMs;
1715
+ if (priority !== undefined && priority <= 1) {
1716
+ // Urgent/high priority: reduce timeout by 50%
1717
+ effectiveMaxWait = Math.min(maxWaitMs, highConfidence ? 200 : 400);
1718
+ }
1719
+ else if (highConfidence) {
1720
+ // High confidence from process state: reduce timeout by 60%
1721
+ effectiveMaxWait = Math.floor(maxWaitMs * 0.4);
1722
+ }
1690
1723
  let lastSig = await this.capturePaneSignature();
1691
1724
  if (!lastSig)
1692
1725
  return false;
1693
1726
  let stableCount = 0;
1694
- while (Date.now() - start < maxWaitMs) {
1727
+ // Fast initial check - if already stable, exit quickly
1728
+ await sleep(Math.min(pollIntervalMs, 50));
1729
+ const initialSig = await this.capturePaneSignature();
1730
+ if (initialSig && initialSig === lastSig) {
1731
+ stableCount = 1;
1732
+ // If high confidence and initial check stable, we're good
1733
+ if (highConfidence && stableCount >= 1) {
1734
+ this.logStderr(`waitForStablePane: fast exit (high confidence, ${Date.now() - start}ms)`);
1735
+ return true;
1736
+ }
1737
+ }
1738
+ else if (initialSig) {
1739
+ lastSig = initialSig;
1740
+ }
1741
+ while (Date.now() - start < effectiveMaxWait) {
1695
1742
  await sleep(pollIntervalMs);
1696
1743
  const sig = await this.capturePaneSignature();
1697
1744
  if (!sig)
@@ -1699,6 +1746,7 @@ export class TmuxWrapper extends BaseWrapper {
1699
1746
  if (sig === lastSig) {
1700
1747
  stableCount++;
1701
1748
  if (stableCount >= requiredStablePolls) {
1749
+ this.logStderr(`waitForStablePane: stable after ${Date.now() - start}ms`);
1702
1750
  return true;
1703
1751
  }
1704
1752
  }
@@ -1707,7 +1755,12 @@ export class TmuxWrapper extends BaseWrapper {
1707
1755
  lastSig = sig;
1708
1756
  }
1709
1757
  }
1710
- this.logStderr(`waitForStablePane: timed out after ${maxWaitMs}ms`);
1758
+ // Even on timeout, if we had at least 1 stable poll and high confidence, proceed
1759
+ if (stableCount >= 1 && highConfidence) {
1760
+ this.logStderr(`waitForStablePane: proceeding with partial stability (high confidence)`);
1761
+ return true;
1762
+ }
1763
+ this.logStderr(`waitForStablePane: timed out after ${Date.now() - start}ms`);
1711
1764
  return false;
1712
1765
  }
1713
1766
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-relay/wrapper",
3
- "version": "2.0.0",
3
+ "version": "2.0.4",
4
4
  "description": "CLI agent wrappers for Agent Relay - tmux, pty integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -30,11 +30,11 @@
30
30
  "clean": "rm -rf dist"
31
31
  },
32
32
  "dependencies": {
33
- "@agent-relay/api-types": "2.0.0",
34
- "@agent-relay/protocol": "2.0.0",
35
- "@agent-relay/config": "2.0.0",
36
- "@agent-relay/continuity": "2.0.0",
37
- "@agent-relay/resiliency": "2.0.0"
33
+ "@agent-relay/api-types": "2.0.4",
34
+ "@agent-relay/protocol": "2.0.4",
35
+ "@agent-relay/config": "2.0.4",
36
+ "@agent-relay/continuity": "2.0.4",
37
+ "@agent-relay/resiliency": "2.0.4"
38
38
  },
39
39
  "devDependencies": {
40
40
  "typescript": "^5.9.3",
@@ -56,7 +56,7 @@
56
56
  ],
57
57
  "repository": {
58
58
  "type": "git",
59
- "url": "https://github.com/AgentWorkforce/relay.git",
59
+ "url": "git+https://github.com/AgentWorkforce/relay.git",
60
60
  "directory": "packages/wrapper"
61
61
  },
62
62
  "license": "MIT"
@@ -1 +0,0 @@
1
- {"hash":"013415461711937f","duration":1990}
@@ -1 +0,0 @@
1
- {"hash":"0562b1ff326acd6d","duration":4071}
@@ -1 +0,0 @@
1
- {"hash":"0b46e0e17254882f","duration":6308}
@@ -1 +0,0 @@
1
- {"hash":"3799eda981d53d14","duration":3392}
@@ -1 +0,0 @@
1
- {"hash":"47e9d8f404ed064d","duration":12055}
@@ -1 +0,0 @@
1
- {"hash":"4cde1d1e5b298099","duration":6325}
@@ -1 +0,0 @@
1
- {"hash":"538eea955c0936ef","duration":7319}
@@ -1 +0,0 @@
1
- {"hash":"5dceac7f229f5d5d","duration":8534}
@@ -1 +0,0 @@
1
- {"hash":"64c15b201819367d","duration":10106}
@@ -1 +0,0 @@
1
- {"hash":"6d6a21a05efca434","duration":41274}
@@ -1 +0,0 @@
1
- {"hash":"7562610cb03ec040","duration":2768}
@@ -1 +0,0 @@
1
- {"hash":"81a2456e17af4d7f","duration":8632}
@@ -1 +0,0 @@
1
- {"hash":"823fc2a7b12f724c","duration":4097}
@@ -1 +0,0 @@
1
- {"hash":"9daad16a073d1f91","duration":5391}
@@ -1 +0,0 @@
1
- {"hash":"b81ccbab0a606b60","duration":2766}
@@ -1 +0,0 @@
1
- {"hash":"cf98487988bfcf91","duration":10958}
@@ -1 +0,0 @@
1
- {"hash":"cfdf7c57dca71f27","duration":6018}
@@ -1 +0,0 @@
1
- {"hash":"d3063ef43811b1e5","duration":2458}
@@ -1 +0,0 @@
1
- {"hash":"de28892eb7678e65","duration":2239}
@@ -1 +0,0 @@
1
- {"hash":"ec29adce408132ba","duration":2980}
@@ -1 +0,0 @@
1
- {"hash":"f70450d8d305f172","duration":9573}
@@ -1 +0,0 @@
1
- {"hash":"fe384d5d6b7a983a","duration":2653}
package/bin/relay-pty DELETED
Binary file
@@ -1 +0,0 @@
1
- HR7W9z1PPVPFqUboUVZFZ
@@ -1,135 +0,0 @@
1
- {
2
- "pages": {
3
- "/_not-found/page": [
4
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
5
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
6
- "static/chunks/117-c8afed19e821a35d.js",
7
- "static/chunks/main-app-fdbeb09028f57c9f.js",
8
- "static/chunks/app/_not-found/page-60501fddbafba9dc.js"
9
- ],
10
- "/layout": [
11
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
12
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
13
- "static/chunks/117-c8afed19e821a35d.js",
14
- "static/chunks/main-app-fdbeb09028f57c9f.js",
15
- "static/css/99c2552394077586.css",
16
- "static/chunks/app/layout-6b91e33784c20610.js"
17
- ],
18
- "/app/onboarding/page": [
19
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
20
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
21
- "static/chunks/117-c8afed19e821a35d.js",
22
- "static/chunks/main-app-fdbeb09028f57c9f.js",
23
- "static/chunks/app/app/onboarding/page-9914652442f7e4fb.js"
24
- ],
25
- "/app/page": [
26
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
27
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
28
- "static/chunks/117-c8afed19e821a35d.js",
29
- "static/chunks/main-app-fdbeb09028f57c9f.js",
30
- "static/chunks/e868780c-48e5f147c90a3a41.js",
31
- "static/chunks/532-bace199897eeab37.js",
32
- "static/chunks/116-a883fca163f3a5bc.js",
33
- "static/chunks/891-5cb1513eeb97a891.js",
34
- "static/chunks/83-4f08122d4e7e79a6.js",
35
- "static/chunks/677-30e60cb0b47875b6.js",
36
- "static/chunks/631-af51bad94027527a.js",
37
- "static/chunks/app/app/page-44813aa26ad19681.js"
38
- ],
39
- "/cloud/link/page": [
40
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
41
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
42
- "static/chunks/117-c8afed19e821a35d.js",
43
- "static/chunks/main-app-fdbeb09028f57c9f.js",
44
- "static/chunks/847-f1f467060f32afff.js",
45
- "static/chunks/116-a883fca163f3a5bc.js",
46
- "static/chunks/app/cloud/link/page-fa1d5842aa90e8a6.js"
47
- ],
48
- "/connect-repos/page": [
49
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
50
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
51
- "static/chunks/117-c8afed19e821a35d.js",
52
- "static/chunks/main-app-fdbeb09028f57c9f.js",
53
- "static/chunks/282-980c2eb8fff20123.js",
54
- "static/chunks/app/connect-repos/page-113060009ef35bc2.js"
55
- ],
56
- "/history/page": [
57
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
58
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
59
- "static/chunks/117-c8afed19e821a35d.js",
60
- "static/chunks/main-app-fdbeb09028f57c9f.js",
61
- "static/chunks/648-acb2ff9f77cbfbd3.js",
62
- "static/chunks/116-a883fca163f3a5bc.js",
63
- "static/chunks/app/history/page-9965d2483011b846.js"
64
- ],
65
- "/login/page": [
66
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
67
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
68
- "static/chunks/117-c8afed19e821a35d.js",
69
- "static/chunks/main-app-fdbeb09028f57c9f.js",
70
- "static/chunks/282-980c2eb8fff20123.js",
71
- "static/chunks/app/login/page-a0ca6f7ca6a100b8.js"
72
- ],
73
- "/page": [
74
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
75
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
76
- "static/chunks/117-c8afed19e821a35d.js",
77
- "static/chunks/main-app-fdbeb09028f57c9f.js",
78
- "static/css/4034f236dd1a3178.css",
79
- "static/chunks/e868780c-48e5f147c90a3a41.js",
80
- "static/chunks/532-bace199897eeab37.js",
81
- "static/chunks/116-a883fca163f3a5bc.js",
82
- "static/chunks/891-5cb1513eeb97a891.js",
83
- "static/chunks/83-4f08122d4e7e79a6.js",
84
- "static/chunks/677-30e60cb0b47875b6.js",
85
- "static/chunks/766-2aea80818f7eb0d8.js",
86
- "static/chunks/app/page-7993778218818ace.js"
87
- ],
88
- "/metrics/page": [
89
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
90
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
91
- "static/chunks/117-c8afed19e821a35d.js",
92
- "static/chunks/main-app-fdbeb09028f57c9f.js",
93
- "static/chunks/648-acb2ff9f77cbfbd3.js",
94
- "static/chunks/116-a883fca163f3a5bc.js",
95
- "static/chunks/app/metrics/page-1e37ef8e73940b40.js"
96
- ],
97
- "/pricing/page": [
98
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
99
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
100
- "static/chunks/117-c8afed19e821a35d.js",
101
- "static/chunks/main-app-fdbeb09028f57c9f.js",
102
- "static/css/4034f236dd1a3178.css",
103
- "static/chunks/766-2aea80818f7eb0d8.js",
104
- "static/chunks/app/pricing/page-9db3ebdfa567a7c9.js"
105
- ],
106
- "/providers/page": [
107
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
108
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
109
- "static/chunks/117-c8afed19e821a35d.js",
110
- "static/chunks/main-app-fdbeb09028f57c9f.js",
111
- "static/chunks/e868780c-48e5f147c90a3a41.js",
112
- "static/chunks/891-5cb1513eeb97a891.js",
113
- "static/chunks/83-4f08122d4e7e79a6.js",
114
- "static/chunks/631-af51bad94027527a.js",
115
- "static/chunks/app/providers/page-bcf46064ac4474ce.js"
116
- ],
117
- "/signup/page": [
118
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
119
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
120
- "static/chunks/117-c8afed19e821a35d.js",
121
- "static/chunks/main-app-fdbeb09028f57c9f.js",
122
- "static/chunks/282-980c2eb8fff20123.js",
123
- "static/chunks/app/signup/page-1ede2205b58649ca.js"
124
- ],
125
- "/providers/setup/[provider]/page": [
126
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
127
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
128
- "static/chunks/117-c8afed19e821a35d.js",
129
- "static/chunks/main-app-fdbeb09028f57c9f.js",
130
- "static/chunks/e868780c-48e5f147c90a3a41.js",
131
- "static/chunks/891-5cb1513eeb97a891.js",
132
- "static/chunks/app/providers/setup/[provider]/page-4dbe33f0f7691b7c.js"
133
- ]
134
- }
135
- }
@@ -1 +0,0 @@
1
- {"/_not-found/page":"/_not-found","/app/onboarding/page":"/app/onboarding","/app/page":"/app","/apple-icon.png/route":"/apple-icon.png","/cloud/link/page":"/cloud/link","/connect-repos/page":"/connect-repos","/history/page":"/history","/login/page":"/login","/page":"/","/metrics/page":"/metrics","/pricing/page":"/pricing","/providers/page":"/providers","/signup/page":"/signup","/providers/setup/[provider]/page":"/providers/setup/[provider]"}
@@ -1,32 +0,0 @@
1
- {
2
- "polyfillFiles": [
3
- "static/chunks/polyfills-42372ed130431b0a.js"
4
- ],
5
- "devFiles": [],
6
- "ampDevFiles": [],
7
- "lowPriorityFiles": [
8
- "static/HR7W9z1PPVPFqUboUVZFZ/_buildManifest.js",
9
- "static/HR7W9z1PPVPFqUboUVZFZ/_ssgManifest.js"
10
- ],
11
- "rootMainFiles": [
12
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
13
- "static/chunks/fd9d1056-609918ca7b6280bb.js",
14
- "static/chunks/117-c8afed19e821a35d.js",
15
- "static/chunks/main-app-fdbeb09028f57c9f.js"
16
- ],
17
- "pages": {
18
- "/_app": [
19
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
20
- "static/chunks/framework-f66176bb897dc684.js",
21
- "static/chunks/main-5a40a5ae29646e1b.js",
22
- "static/chunks/pages/_app-72b849fbd24ac258.js"
23
- ],
24
- "/_error": [
25
- "static/chunks/webpack-1cdd8ed57114d5e1.js",
26
- "static/chunks/framework-f66176bb897dc684.js",
27
- "static/chunks/main-5a40a5ae29646e1b.js",
28
- "static/chunks/pages/_error-7ba65e1336b92748.js"
29
- ]
30
- },
31
- "ampFirstPages": []
32
- }
@@ -1,7 +0,0 @@
1
- {
2
- "telemetry": {
3
- "notifiedAt": "1769174006146",
4
- "anonymousId": "05baa4655284e7350f43f647cd3400d6c04f431558cae415420038f2a3aac854",
5
- "salt": "bb37f16b218712efe5ee72a3511a3896"
6
- }
7
- }
@@ -1 +0,0 @@
1
- [{"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx":"1","/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx":"2","/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx":"3","/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx":"4","/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx":"5","/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx":"6","/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx":"7","/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx":"8","/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx":"9","/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx":"10","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx":"11","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx":"12","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/constants.ts":"13","/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/page.tsx":"14","/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx":"15","/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.test.ts":"16","/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.ts":"17","/home/runner/work/relay/relay/packages/dashboard/ui/lib/api.ts":"18","/home/runner/work/relay/relay/packages/dashboard/ui/lib/cloudApi.ts":"19","/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.test.ts":"20","/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.ts":"21","/home/runner/work/relay/relay/packages/dashboard/ui/lib/hierarchy.ts":"22","/home/runner/work/relay/relay/packages/dashboard/ui/lib/stuckDetection.ts":"23"},{"size":17135,"mtime":1769173722165,"results":"24","hashOfConfig":"25"},{"size":27673,"mtime":1769173722165,"results":"26","hashOfConfig":"25"},{"size":19753,"mtime":1769173722165,"results":"27","hashOfConfig":"25"},{"size":17637,"mtime":1769173722165,"results":"28","hashOfConfig":"25"},{"size":24487,"mtime":1769173722166,"results":"29","hashOfConfig":"25"},{"size":472,"mtime":1769173722166,"results":"30","hashOfConfig":"25"},{"size":10532,"mtime":1769173722166,"results":"31","hashOfConfig":"25"},{"size":31104,"mtime":1769173722166,"results":"32","hashOfConfig":"25"},{"size":1971,"mtime":1769173722166,"results":"33","hashOfConfig":"25"},{"size":130,"mtime":1769173722166,"results":"34","hashOfConfig":"25"},{"size":7343,"mtime":1769173722166,"results":"35","hashOfConfig":"25"},{"size":5296,"mtime":1769173722166,"results":"36","hashOfConfig":"25"},{"size":662,"mtime":1769173722166,"results":"37","hashOfConfig":"25"},{"size":1317,"mtime":1769173722166,"results":"38","hashOfConfig":"25"},{"size":14159,"mtime":1769173722166,"results":"39","hashOfConfig":"25"},{"size":1367,"mtime":1769173722167,"results":"40","hashOfConfig":"25"},{"size":947,"mtime":1769173722167,"results":"41","hashOfConfig":"25"},{"size":31248,"mtime":1769173722167,"results":"42","hashOfConfig":"25"},{"size":22105,"mtime":1769173722167,"results":"43","hashOfConfig":"25"},{"size":5201,"mtime":1769173722167,"results":"44","hashOfConfig":"25"},{"size":5719,"mtime":1769173722167,"results":"45","hashOfConfig":"25"},{"size":5912,"mtime":1769173722167,"results":"46","hashOfConfig":"25"},{"size":3733,"mtime":1769173722167,"results":"47","hashOfConfig":"25"},{"filePath":"48","messages":"49","suppressedMessages":"50","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1oi8jc3",{"filePath":"51","messages":"52","suppressedMessages":"53","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"54","messages":"55","suppressedMessages":"56","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"57","messages":"58","suppressedMessages":"59","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"60","messages":"61","suppressedMessages":"62","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"63","messages":"64","suppressedMessages":"65","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"66","messages":"67","suppressedMessages":"68","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"69","messages":"70","suppressedMessages":"71","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"72","messages":"73","suppressedMessages":"74","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"75","messages":"76","suppressedMessages":"77","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"78","messages":"79","suppressedMessages":"80","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"81","messages":"82","suppressedMessages":"83","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"84","messages":"85","suppressedMessages":"86","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"87","messages":"88","suppressedMessages":"89","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"90","messages":"91","suppressedMessages":"92","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"93","messages":"94","suppressedMessages":"95","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"96","messages":"97","suppressedMessages":"98","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"99","messages":"100","suppressedMessages":"101","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"102","messages":"103","suppressedMessages":"104","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"105","messages":"106","suppressedMessages":"107","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"108","messages":"109","suppressedMessages":"110","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"111","messages":"112","suppressedMessages":"113","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"114","messages":"115","suppressedMessages":"116","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/onboarding/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/app/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/cloud/link/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/connect-repos/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/history/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/layout.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/login/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/metrics/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/pricing/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/ProviderSetupClient.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/constants.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/providers/setup/[provider]/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/app/signup/page.tsx",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.test.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/agent-merge.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/api.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/cloudApi.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.test.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/colors.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/hierarchy.ts",[],[],"/home/runner/work/relay/relay/packages/dashboard/ui/lib/stuckDetection.ts",[],[]]
@@ -1 +0,0 @@
1
- {"version":1,"outDirectory":"/home/runner/work/relay/relay/packages/dashboard/ui/out","success":true}
@@ -1 +0,0 @@
1
- {"version":1,"hasExportPathMap":false,"exportTrailingSlash":false,"isNextImageImported":false}
@@ -1 +0,0 @@
1
- {"version":1,"images":{"deviceSizes":[640,750,828,1080,1200,1920,2048,3840],"imageSizes":[16,32,48,64,96,128,256,384],"path":"/_next/image","loader":"default","loaderFile":"","domains":[],"disableStaticImages":false,"minimumCacheTTL":60,"formats":["image/webp"],"dangerouslyAllowSVG":false,"contentSecurityPolicy":"script-src 'none'; frame-src 'none'; sandbox;","contentDispositionType":"inline","remotePatterns":[],"unoptimized":false,"sizes":[640,750,828,1080,1200,1920,2048,3840,16,32,48,64,96,128,256,384]}}
@@ -1 +0,0 @@
1
- {"version":1,"files":["../node_modules/styled-jsx/index.js","../node_modules/styled-jsx/package.json","../node_modules/styled-jsx/dist/index/index.js","../node_modules/react/package.json","../node_modules/react/index.js","../node_modules/client-only/package.json","../node_modules/react/cjs/react.production.min.js","../node_modules/client-only/index.js","../node_modules/styled-jsx/style.js","../node_modules/next/dist/compiled/next-server/server.runtime.prod.js","../node_modules/next/package.json","../node_modules/next/dist/server/body-streams.js","../node_modules/next/dist/lib/constants.js","../node_modules/next/dist/lib/picocolors.js","../node_modules/next/dist/shared/lib/constants.js","../node_modules/next/dist/server/web/utils.js","../node_modules/next/dist/client/components/app-router-headers.js","../node_modules/next/dist/server/lib/trace/tracer.js","../node_modules/next/dist/server/lib/trace/constants.js","../node_modules/next/dist/client/components/static-generation-async-storage.external.js","../node_modules/next/dist/shared/lib/modern-browserslist-target.js","../node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../node_modules/next/dist/shared/lib/runtime-config.external.js","../node_modules/next/dist/compiled/ws/package.json","../node_modules/next/dist/compiled/node-html-parser/package.json","../node_modules/next/dist/compiled/lru-cache/package.json","../node_modules/@swc/helpers/_/_interop_require_default/package.json","../node_modules/next/dist/client/components/async-local-storage.js","../node_modules/next/dist/compiled/ws/index.js","../node_modules/next/dist/compiled/node-html-parser/index.js","../node_modules/next/dist/compiled/lru-cache/index.js","../node_modules/next/dist/compiled/@opentelemetry/api/package.json","../node_modules/@swc/helpers/package.json","../node_modules/next/dist/compiled/jsonwebtoken/package.json","../node_modules/next/dist/shared/lib/error-source.js","../node_modules/@swc/helpers/cjs/_interop_require_default.cjs","../node_modules/next/dist/compiled/@opentelemetry/api/index.js","../node_modules/next/dist/compiled/jsonwebtoken/index.js","../node_modules/next/dist/compiled/debug/package.json","../node_modules/next/dist/lib/semver-noop.js","../node_modules/next/dist/compiled/debug/index.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/amp-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/app-router-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/entrypoints.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/head-manager-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/hooks-client-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/html-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/image-config-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/loadable-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/loadable.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/router-context.js","../node_modules/next/dist/server/future/route-modules/app-page/vendored/contexts/server-inserted-html.js","../node_modules/next/dist/server/future/route-modules/app-page/module.compiled.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/amp-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/app-router-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/entrypoints.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/head-manager-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/hooks-client-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/html-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/image-config-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/loadable-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/loadable.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/router-context.js","../node_modules/next/dist/server/future/route-modules/pages/vendored/contexts/server-inserted-html.js","../node_modules/next/dist/server/future/route-modules/pages/module.compiled.js"]}