reflex-agent 0.2.1

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 (365) hide show
  1. package/.next/BUILD_ID +1 -0
  2. package/.next/app-build-manifest.json +319 -0
  3. package/.next/app-path-routes-manifest.json +34 -0
  4. package/.next/build-manifest.json +33 -0
  5. package/.next/diagnostics/build-diagnostics.json +6 -0
  6. package/.next/diagnostics/framework.json +1 -0
  7. package/.next/export-marker.json +6 -0
  8. package/.next/images-manifest.json +58 -0
  9. package/.next/next-minimal-server.js.nft.json +1 -0
  10. package/.next/next-server.js.nft.json +1 -0
  11. package/.next/package.json +1 -0
  12. package/.next/prerender-manifest.json +160 -0
  13. package/.next/react-loadable-manifest.json +8 -0
  14. package/.next/required-server-files.json +337 -0
  15. package/.next/routes-manifest.json +282 -0
  16. package/.next/server/app/_not-found/page.js +2 -0
  17. package/.next/server/app/_not-found/page.js.nft.json +1 -0
  18. package/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  19. package/.next/server/app/_not-found.html +1 -0
  20. package/.next/server/app/_not-found.meta +8 -0
  21. package/.next/server/app/_not-found.rsc +18 -0
  22. package/.next/server/app/agents/[agentId]/page.js +3 -0
  23. package/.next/server/app/agents/[agentId]/page.js.nft.json +1 -0
  24. package/.next/server/app/agents/[agentId]/page_client-reference-manifest.js +1 -0
  25. package/.next/server/app/api/agents/[agentId]/respond/route.js +2 -0
  26. package/.next/server/app/api/agents/[agentId]/respond/route.js.nft.json +1 -0
  27. package/.next/server/app/api/agents/[agentId]/respond/route_client-reference-manifest.js +1 -0
  28. package/.next/server/app/api/images/[rootId]/[file]/route.js +1 -0
  29. package/.next/server/app/api/images/[rootId]/[file]/route.js.nft.json +1 -0
  30. package/.next/server/app/api/images/[rootId]/[file]/route_client-reference-manifest.js +1 -0
  31. package/.next/server/app/api/oauth/callback/route.js +22 -0
  32. package/.next/server/app/api/oauth/callback/route.js.nft.json +1 -0
  33. package/.next/server/app/api/oauth/callback/route_client-reference-manifest.js +1 -0
  34. package/.next/server/app/api/oauth/start/route.js +1 -0
  35. package/.next/server/app/api/oauth/start/route.js.nft.json +1 -0
  36. package/.next/server/app/api/oauth/start/route_client-reference-manifest.js +1 -0
  37. package/.next/server/app/api/roots/[id]/attachments/route.js +0 -0
  38. package/.next/server/app/api/roots/[id]/attachments/route.js.nft.json +1 -0
  39. package/.next/server/app/api/roots/[id]/attachments/route_client-reference-manifest.js +1 -0
  40. package/.next/server/app/api/roots/[id]/chat/[topicId]/send/route.js +2 -0
  41. package/.next/server/app/api/roots/[id]/chat/[topicId]/send/route.js.nft.json +1 -0
  42. package/.next/server/app/api/roots/[id]/chat/[topicId]/send/route_client-reference-manifest.js +1 -0
  43. package/.next/server/app/api/roots/[id]/chat/[topicId]/stop/route.js +2 -0
  44. package/.next/server/app/api/roots/[id]/chat/[topicId]/stop/route.js.nft.json +1 -0
  45. package/.next/server/app/api/roots/[id]/chat/[topicId]/stop/route_client-reference-manifest.js +1 -0
  46. package/.next/server/app/api/roots/[id]/chat/[topicId]/stream/route.js +8 -0
  47. package/.next/server/app/api/roots/[id]/chat/[topicId]/stream/route.js.nft.json +1 -0
  48. package/.next/server/app/api/roots/[id]/chat/[topicId]/stream/route_client-reference-manifest.js +1 -0
  49. package/.next/server/app/api/roots/[id]/dashboard/route.js +1 -0
  50. package/.next/server/app/api/roots/[id]/dashboard/route.js.nft.json +1 -0
  51. package/.next/server/app/api/roots/[id]/dashboard/route_client-reference-manifest.js +1 -0
  52. package/.next/server/app/api/roots/[id]/suggestions/route.js +1 -0
  53. package/.next/server/app/api/roots/[id]/suggestions/route.js.nft.json +1 -0
  54. package/.next/server/app/api/roots/[id]/suggestions/route_client-reference-manifest.js +1 -0
  55. package/.next/server/app/api/utilities/[scope]/[id]/bundle.js/route.js +1 -0
  56. package/.next/server/app/api/utilities/[scope]/[id]/bundle.js/route.js.nft.json +1 -0
  57. package/.next/server/app/api/utilities/[scope]/[id]/bundle.js/route_client-reference-manifest.js +1 -0
  58. package/.next/server/app/api/utilities/[scope]/[id]/host/route.js +2 -0
  59. package/.next/server/app/api/utilities/[scope]/[id]/host/route.js.nft.json +1 -0
  60. package/.next/server/app/api/utilities/[scope]/[id]/host/route_client-reference-manifest.js +1 -0
  61. package/.next/server/app/api/utilities/[scope]/[id]/host-api.mjs/route.js +55 -0
  62. package/.next/server/app/api/utilities/[scope]/[id]/host-api.mjs/route.js.nft.json +1 -0
  63. package/.next/server/app/api/utilities/[scope]/[id]/host-api.mjs/route_client-reference-manifest.js +1 -0
  64. package/.next/server/app/api/utilities/[scope]/[id]/host-ui.mjs/route.js +114 -0
  65. package/.next/server/app/api/utilities/[scope]/[id]/host-ui.mjs/route.js.nft.json +1 -0
  66. package/.next/server/app/api/utilities/[scope]/[id]/host-ui.mjs/route_client-reference-manifest.js +1 -0
  67. package/.next/server/app/api/utilities/[scope]/[id]/iframe/route.js +21 -0
  68. package/.next/server/app/api/utilities/[scope]/[id]/iframe/route.js.nft.json +1 -0
  69. package/.next/server/app/api/utilities/[scope]/[id]/iframe/route_client-reference-manifest.js +1 -0
  70. package/.next/server/app/api/utilities/[scope]/[id]/style.css/route.js +1 -0
  71. package/.next/server/app/api/utilities/[scope]/[id]/style.css/route.js.nft.json +1 -0
  72. package/.next/server/app/api/utilities/[scope]/[id]/style.css/route_client-reference-manifest.js +1 -0
  73. package/.next/server/app/audit/page.js +2 -0
  74. package/.next/server/app/audit/page.js.nft.json +1 -0
  75. package/.next/server/app/audit/page_client-reference-manifest.js +1 -0
  76. package/.next/server/app/index.html +1 -0
  77. package/.next/server/app/index.meta +9 -0
  78. package/.next/server/app/index.rsc +19 -0
  79. package/.next/server/app/onboarding/page.js +10 -0
  80. package/.next/server/app/onboarding/page.js.nft.json +1 -0
  81. package/.next/server/app/onboarding/page_client-reference-manifest.js +1 -0
  82. package/.next/server/app/page.js +2 -0
  83. package/.next/server/app/page.js.nft.json +1 -0
  84. package/.next/server/app/page_client-reference-manifest.js +1 -0
  85. package/.next/server/app/roots/[id]/chat/[topicId]/page.js +7 -0
  86. package/.next/server/app/roots/[id]/chat/[topicId]/page.js.nft.json +1 -0
  87. package/.next/server/app/roots/[id]/chat/[topicId]/page_client-reference-manifest.js +1 -0
  88. package/.next/server/app/roots/[id]/kb/[...slug]/page.js +6 -0
  89. package/.next/server/app/roots/[id]/kb/[...slug]/page.js.nft.json +1 -0
  90. package/.next/server/app/roots/[id]/kb/[...slug]/page_client-reference-manifest.js +1 -0
  91. package/.next/server/app/roots/[id]/page.js +5 -0
  92. package/.next/server/app/roots/[id]/page.js.nft.json +1 -0
  93. package/.next/server/app/roots/[id]/page_client-reference-manifest.js +1 -0
  94. package/.next/server/app/roots/[id]/workflows/[wfId]/page.js +2 -0
  95. package/.next/server/app/roots/[id]/workflows/[wfId]/page.js.nft.json +1 -0
  96. package/.next/server/app/roots/[id]/workflows/[wfId]/page_client-reference-manifest.js +1 -0
  97. package/.next/server/app/roots/[id]/workflows/page.js +2 -0
  98. package/.next/server/app/roots/[id]/workflows/page.js.nft.json +1 -0
  99. package/.next/server/app/roots/[id]/workflows/page_client-reference-manifest.js +1 -0
  100. package/.next/server/app/roots/new/page.js +5 -0
  101. package/.next/server/app/roots/new/page.js.nft.json +1 -0
  102. package/.next/server/app/roots/new/page_client-reference-manifest.js +1 -0
  103. package/.next/server/app/roots/new.html +1 -0
  104. package/.next/server/app/roots/new.meta +7 -0
  105. package/.next/server/app/roots/new.rsc +21 -0
  106. package/.next/server/app/settings/page.js +65 -0
  107. package/.next/server/app/settings/page.js.nft.json +1 -0
  108. package/.next/server/app/settings/page_client-reference-manifest.js +1 -0
  109. package/.next/server/app/settings.html +1 -0
  110. package/.next/server/app/settings.meta +7 -0
  111. package/.next/server/app/settings.rsc +22 -0
  112. package/.next/server/app/share/[id]/file/page.js +2 -0
  113. package/.next/server/app/share/[id]/file/page.js.nft.json +1 -0
  114. package/.next/server/app/share/[id]/file/page_client-reference-manifest.js +1 -0
  115. package/.next/server/app/share/[id]/page.js +2 -0
  116. package/.next/server/app/share/[id]/page.js.nft.json +1 -0
  117. package/.next/server/app/share/[id]/page_client-reference-manifest.js +1 -0
  118. package/.next/server/app/utilities/[scope]/[id]/page.js +2 -0
  119. package/.next/server/app/utilities/[scope]/[id]/page.js.nft.json +1 -0
  120. package/.next/server/app/utilities/[scope]/[id]/page_client-reference-manifest.js +1 -0
  121. package/.next/server/app/utilities/page.js +17 -0
  122. package/.next/server/app/utilities/page.js.nft.json +1 -0
  123. package/.next/server/app/utilities/page_client-reference-manifest.js +1 -0
  124. package/.next/server/app-paths-manifest.json +34 -0
  125. package/.next/server/chunks/1088.js +1 -0
  126. package/.next/server/chunks/1105.js +1 -0
  127. package/.next/server/chunks/1223.js +1 -0
  128. package/.next/server/chunks/1244.js +1 -0
  129. package/.next/server/chunks/133.js +490 -0
  130. package/.next/server/chunks/1888.js +1 -0
  131. package/.next/server/chunks/192.js +1 -0
  132. package/.next/server/chunks/1960.js +1 -0
  133. package/.next/server/chunks/1961.js +1 -0
  134. package/.next/server/chunks/1986.js +1 -0
  135. package/.next/server/chunks/2035.js +1 -0
  136. package/.next/server/chunks/2356.js +1 -0
  137. package/.next/server/chunks/2433.js +1 -0
  138. package/.next/server/chunks/2485.js +6 -0
  139. package/.next/server/chunks/2503.js +1 -0
  140. package/.next/server/chunks/3240.js +1 -0
  141. package/.next/server/chunks/3295.js +1 -0
  142. package/.next/server/chunks/3332.js +1 -0
  143. package/.next/server/chunks/3657.js +1 -0
  144. package/.next/server/chunks/4031.js +6 -0
  145. package/.next/server/chunks/4066.js +1 -0
  146. package/.next/server/chunks/4553.js +1 -0
  147. package/.next/server/chunks/4833.js +1 -0
  148. package/.next/server/chunks/4840.js +1 -0
  149. package/.next/server/chunks/4842.js +1 -0
  150. package/.next/server/chunks/4925.js +1 -0
  151. package/.next/server/chunks/5087.js +1 -0
  152. package/.next/server/chunks/5152.js +1 -0
  153. package/.next/server/chunks/5243.js +1 -0
  154. package/.next/server/chunks/5319.js +1 -0
  155. package/.next/server/chunks/5373.js +1 -0
  156. package/.next/server/chunks/5401.js +1 -0
  157. package/.next/server/chunks/5436.js +1 -0
  158. package/.next/server/chunks/5543.js +1 -0
  159. package/.next/server/chunks/569.js +1 -0
  160. package/.next/server/chunks/5895.js +16 -0
  161. package/.next/server/chunks/5986.js +3 -0
  162. package/.next/server/chunks/613.js +1 -0
  163. package/.next/server/chunks/6216.js +1 -0
  164. package/.next/server/chunks/6435.js +1 -0
  165. package/.next/server/chunks/6536.js +3 -0
  166. package/.next/server/chunks/6602.js +4 -0
  167. package/.next/server/chunks/6730.js +1 -0
  168. package/.next/server/chunks/6909.js +488 -0
  169. package/.next/server/chunks/7188.js +1 -0
  170. package/.next/server/chunks/7300.js +128 -0
  171. package/.next/server/chunks/7508.js +1 -0
  172. package/.next/server/chunks/7572.js +2 -0
  173. package/.next/server/chunks/8056.js +1 -0
  174. package/.next/server/chunks/8124.js +1 -0
  175. package/.next/server/chunks/8262.js +1 -0
  176. package/.next/server/chunks/8404.js +62 -0
  177. package/.next/server/chunks/8514.js +1 -0
  178. package/.next/server/chunks/8843.js +1 -0
  179. package/.next/server/chunks/9098.js +1 -0
  180. package/.next/server/chunks/9293.js +1 -0
  181. package/.next/server/chunks/9328.js +179 -0
  182. package/.next/server/chunks/94.js +1 -0
  183. package/.next/server/chunks/9579.js +1 -0
  184. package/.next/server/chunks/9631.js +16 -0
  185. package/.next/server/chunks/9692.js +6 -0
  186. package/.next/server/chunks/9739.js +108 -0
  187. package/.next/server/chunks/9803.js +22 -0
  188. package/.next/server/chunks/9835.js +1 -0
  189. package/.next/server/chunks/9842.js +1 -0
  190. package/.next/server/chunks/9861.js +128 -0
  191. package/.next/server/chunks/9995.js +1 -0
  192. package/.next/server/edge-runtime-webpack.js +2 -0
  193. package/.next/server/edge-runtime-webpack.js.map +1 -0
  194. package/.next/server/functions-config-manifest.json +21 -0
  195. package/.next/server/interception-route-rewrite-manifest.js +1 -0
  196. package/.next/server/middleware-build-manifest.js +1 -0
  197. package/.next/server/middleware-manifest.json +32 -0
  198. package/.next/server/middleware-react-loadable-manifest.js +1 -0
  199. package/.next/server/middleware.js +14 -0
  200. package/.next/server/middleware.js.map +1 -0
  201. package/.next/server/next-font-manifest.js +1 -0
  202. package/.next/server/next-font-manifest.json +1 -0
  203. package/.next/server/pages/404.html +1 -0
  204. package/.next/server/pages/500.html +1 -0
  205. package/.next/server/pages/_app.js +1 -0
  206. package/.next/server/pages/_app.js.nft.json +1 -0
  207. package/.next/server/pages/_document.js +1 -0
  208. package/.next/server/pages/_document.js.nft.json +1 -0
  209. package/.next/server/pages/_error.js +19 -0
  210. package/.next/server/pages/_error.js.nft.json +1 -0
  211. package/.next/server/pages-manifest.json +6 -0
  212. package/.next/server/server-reference-manifest.js +1 -0
  213. package/.next/server/server-reference-manifest.json +1 -0
  214. package/.next/server/webpack-runtime.js +1 -0
  215. package/.next/static/chunks/1217-407174d9b164a499.js +1 -0
  216. package/.next/static/chunks/146-ccee3b26755b68c8.js +1 -0
  217. package/.next/static/chunks/3335-5647a38ab2cfa88d.js +1 -0
  218. package/.next/static/chunks/3954-fe27ff41d9bf012d.js +1 -0
  219. package/.next/static/chunks/4108.d6ed46bc2fcab462.js +1 -0
  220. package/.next/static/chunks/4400-cdb1f7913ae34e09.js +1 -0
  221. package/.next/static/chunks/4895-712004156efeccf2.js +1 -0
  222. package/.next/static/chunks/5097-f07f6aeee3f60a33.js +1 -0
  223. package/.next/static/chunks/5235-990ba9c4c8446446.js +62 -0
  224. package/.next/static/chunks/6489-ecde2d94e57eb8a9.js +1 -0
  225. package/.next/static/chunks/6568-e4d2de23d9f8d347.js +1 -0
  226. package/.next/static/chunks/6727-d38536774bdb32d5.js +1 -0
  227. package/.next/static/chunks/6734-9d524ec49e4ba49c.js +1 -0
  228. package/.next/static/chunks/6744-dbfe3cc4ce461613.js +1 -0
  229. package/.next/static/chunks/6fe292aa-7126ff9d6732e864.js +1 -0
  230. package/.next/static/chunks/8566-5d4c89b722d9cee1.js +1 -0
  231. package/.next/static/chunks/8775-890699c74c28df61.js +1 -0
  232. package/.next/static/chunks/9045-731ff0865352dd95.js +1 -0
  233. package/.next/static/chunks/app/_not-found/page-ffead1b4e248e14d.js +1 -0
  234. package/.next/static/chunks/app/agents/[agentId]/page-0b5c2838354d0eba.js +1 -0
  235. package/.next/static/chunks/app/api/agents/[agentId]/respond/route-7e2f82a91b10b7e2.js +1 -0
  236. package/.next/static/chunks/app/api/images/[rootId]/[file]/route-7e2f82a91b10b7e2.js +1 -0
  237. package/.next/static/chunks/app/api/oauth/callback/route-7e2f82a91b10b7e2.js +1 -0
  238. package/.next/static/chunks/app/api/oauth/start/route-7e2f82a91b10b7e2.js +1 -0
  239. package/.next/static/chunks/app/api/roots/[id]/attachments/route-7e2f82a91b10b7e2.js +1 -0
  240. package/.next/static/chunks/app/api/roots/[id]/chat/[topicId]/send/route-7e2f82a91b10b7e2.js +1 -0
  241. package/.next/static/chunks/app/api/roots/[id]/chat/[topicId]/stop/route-7e2f82a91b10b7e2.js +1 -0
  242. package/.next/static/chunks/app/api/roots/[id]/chat/[topicId]/stream/route-7e2f82a91b10b7e2.js +1 -0
  243. package/.next/static/chunks/app/api/roots/[id]/dashboard/route-7e2f82a91b10b7e2.js +1 -0
  244. package/.next/static/chunks/app/api/roots/[id]/suggestions/route-7e2f82a91b10b7e2.js +1 -0
  245. package/.next/static/chunks/app/api/utilities/[scope]/[id]/bundle.js/route-7e2f82a91b10b7e2.js +1 -0
  246. package/.next/static/chunks/app/api/utilities/[scope]/[id]/host/route-7e2f82a91b10b7e2.js +1 -0
  247. package/.next/static/chunks/app/api/utilities/[scope]/[id]/host-api.mjs/route-7e2f82a91b10b7e2.js +1 -0
  248. package/.next/static/chunks/app/api/utilities/[scope]/[id]/host-ui.mjs/route-7e2f82a91b10b7e2.js +1 -0
  249. package/.next/static/chunks/app/api/utilities/[scope]/[id]/iframe/route-7e2f82a91b10b7e2.js +1 -0
  250. package/.next/static/chunks/app/api/utilities/[scope]/[id]/style.css/route-7e2f82a91b10b7e2.js +1 -0
  251. package/.next/static/chunks/app/audit/page-e3445076d462aa80.js +1 -0
  252. package/.next/static/chunks/app/layout-c7a35075cfbfa3e3.js +1 -0
  253. package/.next/static/chunks/app/onboarding/page-cde5b92b13b03c63.js +1 -0
  254. package/.next/static/chunks/app/page-ddaeffdc9a15f597.js +1 -0
  255. package/.next/static/chunks/app/roots/[id]/chat/[topicId]/page-1b55f68984817d29.js +1 -0
  256. package/.next/static/chunks/app/roots/[id]/kb/[...slug]/page-d4358cb6042740c4.js +1 -0
  257. package/.next/static/chunks/app/roots/[id]/layout-7e2f82a91b10b7e2.js +1 -0
  258. package/.next/static/chunks/app/roots/[id]/page-703d96bf8208af2f.js +1 -0
  259. package/.next/static/chunks/app/roots/[id]/workflows/[wfId]/page-738e8e4128baa722.js +1 -0
  260. package/.next/static/chunks/app/roots/[id]/workflows/page-e3445076d462aa80.js +1 -0
  261. package/.next/static/chunks/app/roots/new/page-534769dce46d0d29.js +1 -0
  262. package/.next/static/chunks/app/settings/page-86ee3d07ea1acbc7.js +1 -0
  263. package/.next/static/chunks/app/share/[id]/file/page-93e0105d7903f777.js +1 -0
  264. package/.next/static/chunks/app/share/[id]/page-5bbc8503cb9a9eeb.js +1 -0
  265. package/.next/static/chunks/app/utilities/[scope]/[id]/page-72546d245b840091.js +1 -0
  266. package/.next/static/chunks/app/utilities/page-9f949d831421d314.js +1 -0
  267. package/.next/static/chunks/framework-aaa7c1a953276299.js +1 -0
  268. package/.next/static/chunks/main-app-ebe67847147d19aa.js +1 -0
  269. package/.next/static/chunks/main-bfb98fc1d6aa1d45.js +1 -0
  270. package/.next/static/chunks/pages/_app-bf8bc157ace53d59.js +1 -0
  271. package/.next/static/chunks/pages/_error-da89ab2956f0cf38.js +1 -0
  272. package/.next/static/chunks/polyfills-42372ed130431b0a.js +1 -0
  273. package/.next/static/chunks/webpack-2e8cca5826414cc6.js +1 -0
  274. package/.next/static/css/87e01f779d555d04.css +1 -0
  275. package/.next/static/p8t15rbWhT5Rrs5fOXWZ6/_buildManifest.js +1 -0
  276. package/.next/static/p8t15rbWhT5Rrs5fOXWZ6/_ssgManifest.js +1 -0
  277. package/.next/trace +46 -0
  278. package/.next/types/app/agents/[agentId]/page.ts +84 -0
  279. package/.next/types/app/api/agents/[agentId]/respond/route.ts +347 -0
  280. package/.next/types/app/api/images/[rootId]/[file]/route.ts +347 -0
  281. package/.next/types/app/api/oauth/callback/route.ts +347 -0
  282. package/.next/types/app/api/oauth/start/route.ts +347 -0
  283. package/.next/types/app/api/roots/[id]/attachments/route.ts +347 -0
  284. package/.next/types/app/api/roots/[id]/chat/[topicId]/send/route.ts +347 -0
  285. package/.next/types/app/api/roots/[id]/chat/[topicId]/stop/route.ts +347 -0
  286. package/.next/types/app/api/roots/[id]/chat/[topicId]/stream/route.ts +347 -0
  287. package/.next/types/app/api/roots/[id]/dashboard/route.ts +347 -0
  288. package/.next/types/app/api/roots/[id]/suggestions/route.ts +347 -0
  289. package/.next/types/app/api/utilities/[scope]/[id]/bundle.js/route.ts +347 -0
  290. package/.next/types/app/api/utilities/[scope]/[id]/host/route.ts +347 -0
  291. package/.next/types/app/api/utilities/[scope]/[id]/host-api.mjs/route.ts +347 -0
  292. package/.next/types/app/api/utilities/[scope]/[id]/host-ui.mjs/route.ts +347 -0
  293. package/.next/types/app/api/utilities/[scope]/[id]/iframe/route.ts +347 -0
  294. package/.next/types/app/api/utilities/[scope]/[id]/style.css/route.ts +347 -0
  295. package/.next/types/app/audit/page.ts +84 -0
  296. package/.next/types/app/onboarding/page.ts +84 -0
  297. package/.next/types/app/page.ts +84 -0
  298. package/.next/types/app/roots/[id]/chat/[topicId]/page.ts +84 -0
  299. package/.next/types/app/roots/[id]/kb/[...slug]/page.ts +84 -0
  300. package/.next/types/app/roots/[id]/layout.ts +84 -0
  301. package/.next/types/app/roots/[id]/page.ts +84 -0
  302. package/.next/types/app/roots/[id]/workflows/[wfId]/page.ts +84 -0
  303. package/.next/types/app/roots/[id]/workflows/page.ts +84 -0
  304. package/.next/types/app/roots/new/page.ts +84 -0
  305. package/.next/types/app/settings/page.ts +84 -0
  306. package/.next/types/app/share/[id]/file/page.ts +84 -0
  307. package/.next/types/app/share/[id]/page.ts +84 -0
  308. package/.next/types/app/utilities/[scope]/[id]/page.ts +84 -0
  309. package/.next/types/app/utilities/page.ts +84 -0
  310. package/.next/types/cache-life.d.ts +141 -0
  311. package/.next/types/package.json +1 -0
  312. package/.next/types/routes.d.ts +103 -0
  313. package/.next/types/validator.ts +349 -0
  314. package/README.md +72 -0
  315. package/dist/bin/cli.js +82 -0
  316. package/dist/bin/cli.js.map +1 -0
  317. package/dist/lib/reflex/agents/backend.js +14 -0
  318. package/dist/lib/reflex/agents/backend.js.map +1 -0
  319. package/dist/lib/reflex/agents/claude-code.js +48 -0
  320. package/dist/lib/reflex/agents/claude-code.js.map +1 -0
  321. package/dist/lib/reflex/agents/codex.js +46 -0
  322. package/dist/lib/reflex/agents/codex.js.map +1 -0
  323. package/dist/lib/reflex/agents/index.js +13 -0
  324. package/dist/lib/reflex/agents/index.js.map +1 -0
  325. package/dist/lib/reflex/agents/prompts.js +228 -0
  326. package/dist/lib/reflex/agents/prompts.js.map +1 -0
  327. package/dist/lib/reflex/commands/chat.js +41 -0
  328. package/dist/lib/reflex/commands/chat.js.map +1 -0
  329. package/dist/lib/reflex/commands/init.js +38 -0
  330. package/dist/lib/reflex/commands/init.js.map +1 -0
  331. package/dist/lib/reflex/commands/start.js +64 -0
  332. package/dist/lib/reflex/commands/start.js.map +1 -0
  333. package/dist/lib/reflex/commands/watch.js +137 -0
  334. package/dist/lib/reflex/commands/watch.js.map +1 -0
  335. package/dist/lib/reflex/config.js +42 -0
  336. package/dist/lib/reflex/config.js.map +1 -0
  337. package/dist/lib/reflex/ignore.js +83 -0
  338. package/dist/lib/reflex/ignore.js.map +1 -0
  339. package/dist/lib/reflex/kb.js +48 -0
  340. package/dist/lib/reflex/kb.js.map +1 -0
  341. package/dist/lib/reflex/paths.js +33 -0
  342. package/dist/lib/reflex/paths.js.map +1 -0
  343. package/dist/lib/reflex/prompts/defaults.js +363 -0
  344. package/dist/lib/reflex/prompts/defaults.js.map +1 -0
  345. package/dist/lib/reflex/prompts/render.js +14 -0
  346. package/dist/lib/reflex/prompts/render.js.map +1 -0
  347. package/dist/lib/reflex/prompts/store.js +54 -0
  348. package/dist/lib/reflex/prompts/store.js.map +1 -0
  349. package/dist/lib/reflex/walker.js +55 -0
  350. package/dist/lib/reflex/walker.js.map +1 -0
  351. package/next.config.ts +33 -0
  352. package/package.json +87 -0
  353. package/packages/utilities/learn-anything/README.md +41 -0
  354. package/packages/utilities/learn-anything/actions/_json.ts +191 -0
  355. package/packages/utilities/learn-anything/actions/_store.ts +248 -0
  356. package/packages/utilities/learn-anything/actions/buildModule.ts +487 -0
  357. package/packages/utilities/learn-anything/actions/explainSelection.ts +64 -0
  358. package/packages/utilities/learn-anything/actions/generateOutline.ts +170 -0
  359. package/packages/utilities/learn-anything/actions/generateQuiz.ts +72 -0
  360. package/packages/utilities/learn-anything/actions/generateTrainer.ts +106 -0
  361. package/packages/utilities/learn-anything/actions/refreshCourseCard.ts +76 -0
  362. package/packages/utilities/learn-anything/actions/tutorAsk.ts +93 -0
  363. package/packages/utilities/learn-anything/article-view.tsx +464 -0
  364. package/packages/utilities/learn-anything/manifest.json +42 -0
  365. package/packages/utilities/learn-anything/ui.tsx +1589 -0
@@ -0,0 +1 @@
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/utilities/[scope]/[id]/host/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2018":{"*":{"id":"4080","name":"*","chunks":[],"async":false}},"2285":{"*":{"id":"99891","name":"*","chunks":[],"async":false}},"2604":{"*":{"id":"66188","name":"*","chunks":[],"async":false}},"3989":{"*":{"id":"62425","name":"*","chunks":[],"async":false}},"5369":{"*":{"id":"86253","name":"*","chunks":[],"async":false}},"6287":{"*":{"id":"53869","name":"*","chunks":[],"async":false}},"8190":{"*":{"id":"15620","name":"*","chunks":[],"async":false}},"8855":{"*":{"id":"20633","name":"*","chunks":[],"async":false}},"12537":{"*":{"id":"57673","name":"*","chunks":[],"async":false}},"13270":{"*":{"id":"14360","name":"*","chunks":[],"async":false}},"14884":{"*":{"id":"6912","name":"*","chunks":[],"async":false}},"16225":{"*":{"id":"21393","name":"*","chunks":[],"async":false}},"16381":{"*":{"id":"92256","name":"*","chunks":[],"async":false}},"17280":{"*":{"id":"18282","name":"*","chunks":[],"async":false}},"18487":{"*":{"id":"87177","name":"*","chunks":[],"async":false}},"19078":{"*":{"id":"14848","name":"*","chunks":[],"async":false}},"21968":{"*":{"id":"19908","name":"*","chunks":[],"async":false}},"22121":{"*":{"id":"49289","name":"*","chunks":[],"async":false}},"23119":{"*":{"id":"76181","name":"*","chunks":[],"async":false}},"23136":{"*":{"id":"10884","name":"*","chunks":[],"async":false}},"26957":{"*":{"id":"41833","name":"*","chunks":[],"async":false}},"27237":{"*":{"id":"66643","name":"*","chunks":[],"async":false}},"28050":{"*":{"id":"66180","name":"*","chunks":[],"async":false}},"33705":{"*":{"id":"63921","name":"*","chunks":[],"async":false}},"33976":{"*":{"id":"90044","name":"*","chunks":[],"async":false}},"36167":{"*":{"id":"4940","name":"*","chunks":[],"async":false}},"39211":{"*":{"id":"39991","name":"*","chunks":[],"async":false}},"40284":{"*":{"id":"58352","name":"*","chunks":[],"async":false}},"40836":{"*":{"id":"85684","name":"*","chunks":[],"async":false}},"41287":{"*":{"id":"11066","name":"*","chunks":[],"async":false}},"41372":{"*":{"id":"81654","name":"*","chunks":[],"async":false}},"41923":{"*":{"id":"43151","name":"*","chunks":[],"async":false}},"43450":{"*":{"id":"99668","name":"*","chunks":[],"async":false}},"43831":{"*":{"id":"79318","name":"*","chunks":[],"async":false}},"45407":{"*":{"id":"13813","name":"*","chunks":[],"async":false}},"46109":{"*":{"id":"65597","name":"*","chunks":[],"async":false}},"48572":{"*":{"id":"82064","name":"*","chunks":[],"async":false}},"49455":{"*":{"id":"81669","name":"*","chunks":[],"async":false}},"49833":{"*":{"id":"5147","name":"*","chunks":[],"async":false}},"53511":{"*":{"id":"71615","name":"*","chunks":[],"async":false}},"54400":{"*":{"id":"1056","name":"*","chunks":[],"async":false}},"56360":{"*":{"id":"54972","name":"*","chunks":[],"async":false}},"56703":{"*":{"id":"19874","name":"*","chunks":[],"async":false}},"59487":{"*":{"id":"26411","name":"*","chunks":[],"async":false}},"63739":{"*":{"id":"13829","name":"*","chunks":[],"async":false}},"67854":{"*":{"id":"53710","name":"*","chunks":[],"async":false}},"69050":{"*":{"id":"30544","name":"*","chunks":[],"async":false}},"72849":{"*":{"id":"1857","name":"*","chunks":[],"async":false}},"73868":{"*":{"id":"12156","name":"*","chunks":[],"async":false}},"76161":{"*":{"id":"34100","name":"*","chunks":[],"async":false}},"80200":{"*":{"id":"19324","name":"*","chunks":[],"async":false}},"83524":{"*":{"id":"88237","name":"*","chunks":[],"async":false}},"85314":{"*":{"id":"13976","name":"*","chunks":[],"async":false}},"85980":{"*":{"id":"89338","name":"*","chunks":[],"async":false}},"86631":{"*":{"id":"61193","name":"*","chunks":[],"async":false}},"86727":{"*":{"id":"50613","name":"*","chunks":[],"async":false}},"89061":{"*":{"id":"89343","name":"*","chunks":[],"async":false}},"89134":{"*":{"id":"85414","name":"*","chunks":[],"async":false}},"89146":{"*":{"id":"44896","name":"*","chunks":[],"async":false}},"89808":{"*":{"id":"22192","name":"*","chunks":[],"async":false}},"91074":{"*":{"id":"68394","name":"*","chunks":[],"async":false}},"94904":{"*":{"id":"75266","name":"*","chunks":[],"async":false}},"96253":{"*":{"id":"51189","name":"*","chunks":[],"async":false}},"97369":{"*":{"id":"25211","name":"*","chunks":[],"async":false}},"97485":{"*":{"id":"97053","name":"*","chunks":[],"async":false}},"98346":{"*":{"id":"87634","name":"*","chunks":[],"async":false}},"99730":{"*":{"id":"6786","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/builtin/global-error.js":{"id":6287,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":6287,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/client-page.js":{"id":40836,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/client-page.js":{"id":40836,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/client-segment.js":{"id":85980,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/client-segment.js":{"id":85980,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":46109,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":46109,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/layout-router.js":{"id":26957,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/layout-router.js":{"id":26957,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":33705,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":33705,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/render-from-template-context.js":{"id":97369,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":97369,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/framework/boundary-components.js":{"id":21968,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":21968,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":22121,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":22121,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/app-sidebar.tsx":{"id":41287,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/globals.css":{"id":60290,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/components/ui/sonner.tsx":{"id":43450,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/agents/[agentId]/_components/agent-event-stream.tsx":{"id":40284,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/components/ui/separator.tsx":{"id":91074,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-accordion@1.2.12_@types+react-dom@19.2.3_@types+react@19.2.14__@types+r_dd042184823cb7783b305fbc0c6ee2dd/node_modules/@radix-ui/react-accordion/dist/index.mjs":{"id":96253,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-alert-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@type_91d5036573779c1b9f41b61cd4660f3d/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs":{"id":28050,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-avatar@1.1.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_0ea80bc1497a6ecfd0bb5e124b1154c7/node_modules/@radix-ui/react-avatar/dist/index.mjs":{"id":94904,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_36946c77eec45f5a9fc04b1442c78a6c/node_modules/@radix-ui/react-checkbox/dist/index.mjs":{"id":13270,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-collapsible@1.1.12_@types+react-dom@19.2.3_@types+react@19.2.14__@types_e6de6020dad09a1b58742342f76b372e/node_modules/@radix-ui/react-collapsible/dist/index.mjs":{"id":99730,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-context-menu@2.2.16_@types+react-dom@19.2.3_@types+react@19.2.14__@type_f37cfa1787d19448013098dea4e28ec1/node_modules/@radix-ui/react-context-menu/dist/index.mjs":{"id":89146,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_340425d8afbecb0b8c61fd2281bc18a1/node_modules/@radix-ui/react-dialog/dist/index.mjs":{"id":19078,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-dropdown-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.14__@typ_4a94a496ca8ecf7aa0a759c94ddf8d47/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs":{"id":67854,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-form@0.1.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@1_47bc6dc07b089b01a31e6ae276fc360e/node_modules/@radix-ui/react-form/dist/index.mjs":{"id":69050,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-hover-card@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+_613291aa3f9ccfdc80950d764372b215/node_modules/@radix-ui/react-hover-card/dist/index.mjs":{"id":63739,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-label@2.1.7_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@_f0aed35acd5832478de9bf0eb04e4e73/node_modules/@radix-ui/react-label/dist/index.mjs":{"id":33976,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-menubar@1.1.16_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_c241a6baa37fac632bcc4c84e9bee107/node_modules/@radix-ui/react-menubar/dist/index.mjs":{"id":12537,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-navigation-menu@1.2.14_@types+react-dom@19.2.3_@types+react@19.2.14__@t_c2b468396dc2ba1a62f7bc4ec11745d1/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs":{"id":97485,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-one-time-password-field@0.1.8_@types+react-dom@19.2.3_@types+react@19.2_4f1c35a331f5409899cf6aa8a62bc07b/node_modules/@radix-ui/react-one-time-password-field/dist/index.mjs":{"id":41923,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-password-toggle-field@0.1.3_@types+react-dom@19.2.3_@types+react@19.2.1_ccd72623a720a0b92b4e37907f095b99/node_modules/@radix-ui/react-password-toggle-field/dist/index.mjs":{"id":73868,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-popover@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_70579f2082d5a15782122fa6c39e7d95/node_modules/@radix-ui/react-popover/dist/index.mjs":{"id":53511,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_266ca67294f168fbf2e025541d323e69/node_modules/@radix-ui/react-portal/dist/index.mjs":{"id":2018,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-progress@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_740b0bbe0b5580d832d94af6eeb5f557/node_modules/@radix-ui/react-progress/dist/index.mjs":{"id":18487,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+_c07779e275d27cb5d99f86b5919e57c8/node_modules/@radix-ui/react-radio-group/dist/index.mjs":{"id":98346,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-scroll-area@1.2.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types_3f2ac5445210224aefd6333ca2197426/node_modules/@radix-ui/react-scroll-area/dist/index.mjs":{"id":14884,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_682a989a3617012ce093f43297729adf/node_modules/@radix-ui/react-select/dist/index.mjs":{"id":85314,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-slider@1.3.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_4168059ceb0ad18c50e861ed8102d508/node_modules/@radix-ui/react-slider/dist/index.mjs":{"id":17280,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-switch@1.2.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_fb4779bfc166cf9d3db05474981c0df1/node_modules/@radix-ui/react-switch/dist/index.mjs":{"id":8855,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-tabs@1.1.13_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@_08684373bbac196273bdefb5472f93a8/node_modules/@radix-ui/react-tabs/dist/index.mjs":{"id":86631,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toast@1.2.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_6625e53ff8dc545622ac4ae2f6193cc7/node_modules/@radix-ui/react-toast/dist/index.mjs":{"id":2604,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toggle-group@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.14__@type_f53932d1010514ee55ce15134943c7f6/node_modules/@radix-ui/react-toggle-group/dist/index.mjs":{"id":27237,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toggle@1.1.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_1170d6428188a43ba2f1794b2158e623/node_modules/@radix-ui/react-toggle/dist/index.mjs":{"id":49455,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toolbar@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_855b867db56c182beb12942ab20dad4c/node_modules/@radix-ui/react-toolbar/dist/index.mjs":{"id":39211,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-tooltip@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_8c33d96ab4033e6041e8b8646beae976/node_modules/@radix-ui/react-tooltip/dist/index.mjs":{"id":56360,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/app-dir/link.js":{"id":54400,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/app-dir/link.js":{"id":54400,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/universal-chat-bar.tsx":{"id":89061,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/settings/_components/settings-form.tsx":{"id":89134,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/new/_components/directory-picker.tsx":{"id":41372,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/onboarding/_components/wizard.tsx":{"id":83524,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/utility-iframe.tsx":{"id":86727,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/share/_components/share-auth-form.tsx":{"id":16381,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/share-button.tsx":{"id":45407,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/[scope]/[id]/_components/manifest-panel.tsx":{"id":43831,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/[scope]/[id]/_components/utility-frame.tsx":{"id":49833,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/curated-gallery.tsx":{"id":59487,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-from-github-button.tsx":{"id":76161,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-from-mcp-button.tsx":{"id":56703,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-via-agent-button.tsx":{"id":23119,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/remove-utility-button.tsx":{"id":48572,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/chat-view.tsx":{"id":3989,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/delete-topic-button.tsx":{"id":16225,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/goal-badge.tsx":{"id":36167,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/kb/insert-image-button.tsx":{"id":2285,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/root-viewer.tsx":{"id":80200,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/workflows/[wfId]/_components/workflow-editor.tsx":{"id":72849,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/add-utility-button.tsx":{"id":23136,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/command-bar.tsx":{"id":8190,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/dashboard.tsx":{"id":89808,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/run-init-button.tsx":{"id":5369,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/reflex-agent/reflex-agent/":[],"/home/runner/work/reflex-agent/reflex-agent/app/layout":[{"inlined":false,"path":"static/css/87e01f779d555d04.css"}],"/home/runner/work/reflex-agent/reflex-agent/app/page":[],"/home/runner/work/reflex-agent/reflex-agent/app/api/utilities/[scope]/[id]/host/route":[]},"rscModuleMapping":{"2018":{"*":{"id":"37550","name":"*","chunks":[],"async":false}},"2285":{"*":{"id":"86673","name":"*","chunks":[],"async":false}},"2604":{"*":{"id":"41138","name":"*","chunks":[],"async":false}},"3989":{"*":{"id":"32471","name":"*","chunks":[],"async":false}},"5369":{"*":{"id":"770","name":"*","chunks":[],"async":false}},"6287":{"*":{"id":"47319","name":"*","chunks":[],"async":false}},"8190":{"*":{"id":"90558","name":"*","chunks":[],"async":false}},"8855":{"*":{"id":"391","name":"*","chunks":[],"async":false}},"12537":{"*":{"id":"24375","name":"*","chunks":[],"async":false}},"13270":{"*":{"id":"68146","name":"*","chunks":[],"async":false}},"14884":{"*":{"id":"65478","name":"*","chunks":[],"async":false}},"16225":{"*":{"id":"60231","name":"*","chunks":[],"async":false}},"16381":{"*":{"id":"41664","name":"*","chunks":[],"async":false}},"17280":{"*":{"id":"73552","name":"*","chunks":[],"async":false}},"18487":{"*":{"id":"96623","name":"*","chunks":[],"async":false}},"19078":{"*":{"id":"68902","name":"*","chunks":[],"async":false}},"21968":{"*":{"id":"59118","name":"*","chunks":[],"async":false}},"22121":{"*":{"id":"84583","name":"*","chunks":[],"async":false}},"23119":{"*":{"id":"29279","name":"*","chunks":[],"async":false}},"23136":{"*":{"id":"574","name":"*","chunks":[],"async":false}},"26957":{"*":{"id":"78767","name":"*","chunks":[],"async":false}},"27237":{"*":{"id":"60877","name":"*","chunks":[],"async":false}},"28050":{"*":{"id":"26922","name":"*","chunks":[],"async":false}},"33705":{"*":{"id":"75751","name":"*","chunks":[],"async":false}},"33976":{"*":{"id":"83594","name":"*","chunks":[],"async":false}},"36167":{"*":{"id":"4396","name":"*","chunks":[],"async":false}},"39211":{"*":{"id":"5637","name":"*","chunks":[],"async":false}},"40284":{"*":{"id":"95022","name":"*","chunks":[],"async":false}},"40836":{"*":{"id":"97654","name":"*","chunks":[],"async":false}},"41287":{"*":{"id":"30849","name":"*","chunks":[],"async":false}},"41372":{"*":{"id":"87628","name":"*","chunks":[],"async":false}},"41923":{"*":{"id":"85105","name":"*","chunks":[],"async":false}},"43450":{"*":{"id":"95422","name":"*","chunks":[],"async":false}},"43831":{"*":{"id":"11255","name":"*","chunks":[],"async":false}},"45407":{"*":{"id":"16805","name":"*","chunks":[],"async":false}},"46109":{"*":{"id":"73671","name":"*","chunks":[],"async":false}},"48572":{"*":{"id":"61254","name":"*","chunks":[],"async":false}},"49455":{"*":{"id":"7671","name":"*","chunks":[],"async":false}},"49833":{"*":{"id":"22137","name":"*","chunks":[],"async":false}},"53511":{"*":{"id":"33309","name":"*","chunks":[],"async":false}},"54400":{"*":{"id":"20594","name":"*","chunks":[],"async":false}},"56360":{"*":{"id":"36786","name":"*","chunks":[],"async":false}},"56703":{"*":{"id":"77287","name":"*","chunks":[],"async":false}},"59487":{"*":{"id":"60937","name":"*","chunks":[],"async":false}},"60290":{"*":{"id":"44427","name":"*","chunks":[],"async":false}},"63739":{"*":{"id":"93099","name":"*","chunks":[],"async":false}},"67854":{"*":{"id":"69644","name":"*","chunks":[],"async":false}},"69050":{"*":{"id":"49186","name":"*","chunks":[],"async":false}},"72849":{"*":{"id":"91334","name":"*","chunks":[],"async":false}},"73868":{"*":{"id":"41886","name":"*","chunks":[],"async":false}},"76161":{"*":{"id":"28487","name":"*","chunks":[],"async":false}},"80200":{"*":{"id":"68334","name":"*","chunks":[],"async":false}},"83524":{"*":{"id":"22660","name":"*","chunks":[],"async":false}},"85314":{"*":{"id":"97230","name":"*","chunks":[],"async":false}},"85980":{"*":{"id":"10432","name":"*","chunks":[],"async":false}},"86631":{"*":{"id":"4235","name":"*","chunks":[],"async":false}},"86727":{"*":{"id":"73478","name":"*","chunks":[],"async":false}},"89061":{"*":{"id":"56925","name":"*","chunks":[],"async":false}},"89134":{"*":{"id":"71903","name":"*","chunks":[],"async":false}},"89146":{"*":{"id":"65138","name":"*","chunks":[],"async":false}},"89808":{"*":{"id":"64845","name":"*","chunks":[],"async":false}},"91074":{"*":{"id":"60524","name":"*","chunks":[],"async":false}},"94904":{"*":{"id":"79008","name":"*","chunks":[],"async":false}},"96253":{"*":{"id":"50155","name":"*","chunks":[],"async":false}},"97369":{"*":{"id":"48609","name":"*","chunks":[],"async":false}},"97485":{"*":{"id":"67135","name":"*","chunks":[],"async":false}},"98346":{"*":{"id":"77372","name":"*","chunks":[],"async":false}},"99730":{"*":{"id":"60936","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
@@ -0,0 +1,55 @@
1
+ (()=>{var a={};a.id=4751,a.ids=[4751],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},10846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},19121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},29294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},44322:(a,b,c)=>{"use strict";c.r(b),c.d(b,{handler:()=>E,patchFetch:()=>D,routeModule:()=>z,serverHooks:()=>C,workAsyncStorage:()=>A,workUnitAsyncStorage:()=>B});var d={};c.r(d),c.d(d,{GET:()=>y,dynamic:()=>v,runtime:()=>w});var e=c(20797),f=c(99210),g=c(18505),h=c(36265),i=c(15003),j=c(261),k=c(55745),l=c(4079),m=c(11817),n=c(1082),o=c(76188),p=c(17478),q=c(53804),r=c(80269),s=c(86439),t=c(53875),u=c(56748);let v="force-static",w="nodejs",x=`const pending = new Map();
2
+ let nextId = 1;
3
+ window.addEventListener("message", (e) => {
4
+ const msg = e.data;
5
+ if (!msg || msg.type !== "host-rpc-result") return;
6
+ const slot = pending.get(msg.id);
7
+ if (!slot) return;
8
+ pending.delete(msg.id);
9
+ if (msg.ok) slot.resolve(msg.result);
10
+ else slot.reject(new Error(msg.error || "host call failed"));
11
+ });
12
+
13
+ function rpc(method, args) {
14
+ return new Promise((resolve, reject) => {
15
+ const id = nextId++;
16
+ pending.set(id, { resolve, reject });
17
+ try {
18
+ window.parent.postMessage({ type: "host-rpc", id, method, args }, "*");
19
+ } catch (err) {
20
+ pending.delete(id);
21
+ reject(err);
22
+ }
23
+ });
24
+ }
25
+
26
+ function ns(namespace) {
27
+ return new Proxy({}, {
28
+ get(_t, method) {
29
+ if (typeof method !== "string") return undefined;
30
+ return (args) => rpc(namespace + "." + method, args);
31
+ },
32
+ });
33
+ }
34
+
35
+ // Top-level Proxy mirrors the worker-side bootstrap: any namespace is
36
+ // resolved dynamically so adding a new host namespace on the server
37
+ // doesn't require redeploying the proxy. Explicit named exports below
38
+ // give static IDE hints to utility authors.
39
+ export const reflex = new Proxy({}, {
40
+ get(_target, namespace) {
41
+ if (typeof namespace !== "string") return undefined;
42
+ return ns(namespace);
43
+ },
44
+ });
45
+ export const llm = ns("llm");
46
+ export const kb = ns("kb");
47
+ export const fs = ns("fs");
48
+ export const web = ns("web");
49
+ export const audit = ns("audit");
50
+ export const actions = ns("actions");
51
+ export const mcp = ns("mcp");
52
+ export const secrets = ns("secrets");
53
+ export const agent = ns("agent");
54
+ export const workflow = ns("workflow");
55
+ `;async function y(){return new u.NextResponse(x,{headers:{"Content-Type":"application/javascript; charset=utf-8","Cache-Control":"public, max-age=60","Access-Control-Allow-Origin":"*"}})}let z=new e.AppRouteRouteModule({definition:{kind:f.RouteKind.APP_ROUTE,page:"/api/utilities/[scope]/[id]/host-api.mjs/route",pathname:"/api/utilities/[scope]/[id]/host-api.mjs",filename:"route",bundlePath:"app/api/utilities/[scope]/[id]/host-api.mjs/route"},distDir:".next",relativeProjectDir:"",resolvedPagePath:"/home/runner/work/reflex-agent/reflex-agent/app/api/utilities/[scope]/[id]/host-api.mjs/route.ts",nextConfigOutput:"",userland:d}),{workAsyncStorage:A,workUnitAsyncStorage:B,serverHooks:C}=z;function D(){return(0,g.patchFetch)({workAsyncStorage:A,workUnitAsyncStorage:B})}async function E(a,b,c){var d;let e="/api/utilities/[scope]/[id]/host-api.mjs/route";"/index"===e&&(e="/");let g=await z.prepare(a,b,{srcPage:e,multiZoneDraftMode:!1});if(!g)return b.statusCode=400,b.end("Bad Request"),null==c.waitUntil||c.waitUntil.call(c,Promise.resolve()),null;let{buildId:u,params:v,nextConfig:w,isDraftMode:x,prerenderManifest:y,routerServerContext:A,isOnDemandRevalidate:B,revalidateOnlyGenerated:C,resolvedPathname:D}=g,E=(0,j.normalizeAppPath)(e),F=!!(y.dynamicRoutes[E]||y.routes[D]);if(F&&!x){let a=!!y.routes[D],b=y.dynamicRoutes[E];if(b&&!1===b.fallback&&!a)throw new s.NoFallbackError}let G=null;!F||z.isDev||x||(G="/index"===(G=D)?"/":G);let H=!0===z.isDev||!F,I=F&&!H,J=a.method||"GET",K=(0,i.getTracer)(),L=K.getActiveScopeSpan(),M={params:v,prerenderManifest:y,renderOpts:{experimental:{cacheComponents:!!w.experimental.cacheComponents,authInterrupts:!!w.experimental.authInterrupts},supportsDynamicResponse:H,incrementalCache:(0,h.getRequestMeta)(a,"incrementalCache"),cacheLifeProfiles:null==(d=w.experimental)?void 0:d.cacheLife,isRevalidate:I,waitUntil:c.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:void 0,onInstrumentationRequestError:(b,c,d)=>z.onRequestError(a,b,d,A)},sharedContext:{buildId:u}},N=new k.NodeNextRequest(a),O=new k.NodeNextResponse(b),P=l.NextRequestAdapter.fromNodeNextRequest(N,(0,l.signalFromNodeResponse)(b));try{let d=async c=>z.handle(P,M).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let d=K.getRootSpanAttributes();if(!d)return;if(d.get("next.span_type")!==m.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${d.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let e=d.get("next.route");if(e){let a=`${J} ${e}`;c.setAttributes({"next.route":e,"http.route":e,"next.span_name":a}),c.updateName(a)}else c.updateName(`${J} ${a.url}`)}),g=async g=>{var i,j;let k=async({previousCacheEntry:f})=>{try{if(!(0,h.getRequestMeta)(a,"minimalMode")&&B&&C&&!f)return b.statusCode=404,b.setHeader("x-nextjs-cache","REVALIDATED"),b.end("This page could not be found"),null;let e=await d(g);a.fetchMetrics=M.renderOpts.fetchMetrics;let i=M.renderOpts.pendingWaitUntil;i&&c.waitUntil&&(c.waitUntil(i),i=void 0);let j=M.renderOpts.collectedTags;if(!F)return await (0,o.I)(N,O,e,M.renderOpts.pendingWaitUntil),null;{let a=await e.blob(),b=(0,p.toNodeOutgoingHttpHeaders)(e.headers);j&&(b[r.NEXT_CACHE_TAGS_HEADER]=j),!b["content-type"]&&a.type&&(b["content-type"]=a.type);let c=void 0!==M.renderOpts.collectedRevalidate&&!(M.renderOpts.collectedRevalidate>=r.INFINITE_CACHE)&&M.renderOpts.collectedRevalidate,d=void 0===M.renderOpts.collectedExpire||M.renderOpts.collectedExpire>=r.INFINITE_CACHE?void 0:M.renderOpts.collectedExpire;return{value:{kind:t.CachedRouteKind.APP_ROUTE,status:e.status,body:Buffer.from(await a.arrayBuffer()),headers:b},cacheControl:{revalidate:c,expire:d}}}}catch(b){throw(null==f?void 0:f.isStale)&&await z.onRequestError(a,b,{routerKind:"App Router",routePath:e,routeType:"route",revalidateReason:(0,n.c)({isRevalidate:I,isOnDemandRevalidate:B})},A),b}},l=await z.handleResponse({req:a,nextConfig:w,cacheKey:G,routeKind:f.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:y,isRoutePPREnabled:!1,isOnDemandRevalidate:B,revalidateOnlyGenerated:C,responseGenerator:k,waitUntil:c.waitUntil});if(!F)return null;if((null==l||null==(i=l.value)?void 0:i.kind)!==t.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==l||null==(j=l.value)?void 0:j.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});(0,h.getRequestMeta)(a,"minimalMode")||b.setHeader("x-nextjs-cache",B?"REVALIDATED":l.isMiss?"MISS":l.isStale?"STALE":"HIT"),x&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let m=(0,p.fromNodeOutgoingHttpHeaders)(l.value.headers);return(0,h.getRequestMeta)(a,"minimalMode")&&F||m.delete(r.NEXT_CACHE_TAGS_HEADER),!l.cacheControl||b.getHeader("Cache-Control")||m.get("Cache-Control")||m.set("Cache-Control",(0,q.getCacheControlHeader)(l.cacheControl)),await (0,o.I)(N,O,new Response(l.value.body,{headers:m,status:l.value.status||200})),null};L?await g(L):await K.withPropagatedContext(a.headers,()=>K.trace(m.BaseServerSpan.handleRequest,{spanName:`${J} ${a.url}`,kind:i.SpanKind.SERVER,attributes:{"http.method":J,"http.target":a.url}},g))}catch(b){if(b instanceof s.NoFallbackError||await z.onRequestError(a,b,{routerKind:"App Router",routePath:E,routeType:"route",revalidateReason:(0,n.c)({isRevalidate:I,isOnDemandRevalidate:B})}),F)throw b;return await (0,o.I)(N,O,new Response(null,{status:500})),null}}},44870:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},63033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},80432:()=>{},86439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},90160:()=>{}};var b=require("../../../../../../webpack-runtime.js");b.C(a);var c=b.X(0,[9803,4833],()=>b(b.s=44322));module.exports=c})();
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/constants.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/interop-default.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/is-error.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/semver-noop.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/cache-handlers/default.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/load-manifest.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/response-cache/types.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/router/utils/app-paths.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/segment.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/package.json","../../../../../../../../node_modules/next","../../../../../../../../package.json","../../../../../../../package.json","../../../../../../chunks/4833.js","../../../../../../chunks/9803.js","../../../../../../webpack-runtime.js","route_client-reference-manifest.js"]}
@@ -0,0 +1 @@
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/utilities/[scope]/[id]/host-api.mjs/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2018":{"*":{"id":"4080","name":"*","chunks":[],"async":false}},"2285":{"*":{"id":"99891","name":"*","chunks":[],"async":false}},"2604":{"*":{"id":"66188","name":"*","chunks":[],"async":false}},"3989":{"*":{"id":"62425","name":"*","chunks":[],"async":false}},"5369":{"*":{"id":"86253","name":"*","chunks":[],"async":false}},"6287":{"*":{"id":"53869","name":"*","chunks":[],"async":false}},"8190":{"*":{"id":"15620","name":"*","chunks":[],"async":false}},"8855":{"*":{"id":"20633","name":"*","chunks":[],"async":false}},"12537":{"*":{"id":"57673","name":"*","chunks":[],"async":false}},"13270":{"*":{"id":"14360","name":"*","chunks":[],"async":false}},"14884":{"*":{"id":"6912","name":"*","chunks":[],"async":false}},"16225":{"*":{"id":"21393","name":"*","chunks":[],"async":false}},"16381":{"*":{"id":"92256","name":"*","chunks":[],"async":false}},"17280":{"*":{"id":"18282","name":"*","chunks":[],"async":false}},"18487":{"*":{"id":"87177","name":"*","chunks":[],"async":false}},"19078":{"*":{"id":"14848","name":"*","chunks":[],"async":false}},"21968":{"*":{"id":"19908","name":"*","chunks":[],"async":false}},"22121":{"*":{"id":"49289","name":"*","chunks":[],"async":false}},"23119":{"*":{"id":"76181","name":"*","chunks":[],"async":false}},"23136":{"*":{"id":"10884","name":"*","chunks":[],"async":false}},"26957":{"*":{"id":"41833","name":"*","chunks":[],"async":false}},"27237":{"*":{"id":"66643","name":"*","chunks":[],"async":false}},"28050":{"*":{"id":"66180","name":"*","chunks":[],"async":false}},"33705":{"*":{"id":"63921","name":"*","chunks":[],"async":false}},"33976":{"*":{"id":"90044","name":"*","chunks":[],"async":false}},"36167":{"*":{"id":"4940","name":"*","chunks":[],"async":false}},"39211":{"*":{"id":"39991","name":"*","chunks":[],"async":false}},"40284":{"*":{"id":"58352","name":"*","chunks":[],"async":false}},"40836":{"*":{"id":"85684","name":"*","chunks":[],"async":false}},"41287":{"*":{"id":"11066","name":"*","chunks":[],"async":false}},"41372":{"*":{"id":"81654","name":"*","chunks":[],"async":false}},"41923":{"*":{"id":"43151","name":"*","chunks":[],"async":false}},"43450":{"*":{"id":"99668","name":"*","chunks":[],"async":false}},"43831":{"*":{"id":"79318","name":"*","chunks":[],"async":false}},"45407":{"*":{"id":"13813","name":"*","chunks":[],"async":false}},"46109":{"*":{"id":"65597","name":"*","chunks":[],"async":false}},"48572":{"*":{"id":"82064","name":"*","chunks":[],"async":false}},"49455":{"*":{"id":"81669","name":"*","chunks":[],"async":false}},"49833":{"*":{"id":"5147","name":"*","chunks":[],"async":false}},"53511":{"*":{"id":"71615","name":"*","chunks":[],"async":false}},"54400":{"*":{"id":"1056","name":"*","chunks":[],"async":false}},"56360":{"*":{"id":"54972","name":"*","chunks":[],"async":false}},"56703":{"*":{"id":"19874","name":"*","chunks":[],"async":false}},"59487":{"*":{"id":"26411","name":"*","chunks":[],"async":false}},"63739":{"*":{"id":"13829","name":"*","chunks":[],"async":false}},"67854":{"*":{"id":"53710","name":"*","chunks":[],"async":false}},"69050":{"*":{"id":"30544","name":"*","chunks":[],"async":false}},"72849":{"*":{"id":"1857","name":"*","chunks":[],"async":false}},"73868":{"*":{"id":"12156","name":"*","chunks":[],"async":false}},"76161":{"*":{"id":"34100","name":"*","chunks":[],"async":false}},"80200":{"*":{"id":"19324","name":"*","chunks":[],"async":false}},"83524":{"*":{"id":"88237","name":"*","chunks":[],"async":false}},"85314":{"*":{"id":"13976","name":"*","chunks":[],"async":false}},"85980":{"*":{"id":"89338","name":"*","chunks":[],"async":false}},"86631":{"*":{"id":"61193","name":"*","chunks":[],"async":false}},"86727":{"*":{"id":"50613","name":"*","chunks":[],"async":false}},"89061":{"*":{"id":"89343","name":"*","chunks":[],"async":false}},"89134":{"*":{"id":"85414","name":"*","chunks":[],"async":false}},"89146":{"*":{"id":"44896","name":"*","chunks":[],"async":false}},"89808":{"*":{"id":"22192","name":"*","chunks":[],"async":false}},"91074":{"*":{"id":"68394","name":"*","chunks":[],"async":false}},"94904":{"*":{"id":"75266","name":"*","chunks":[],"async":false}},"96253":{"*":{"id":"51189","name":"*","chunks":[],"async":false}},"97369":{"*":{"id":"25211","name":"*","chunks":[],"async":false}},"97485":{"*":{"id":"97053","name":"*","chunks":[],"async":false}},"98346":{"*":{"id":"87634","name":"*","chunks":[],"async":false}},"99730":{"*":{"id":"6786","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/builtin/global-error.js":{"id":6287,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":6287,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/client-page.js":{"id":40836,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/client-page.js":{"id":40836,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/client-segment.js":{"id":85980,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/client-segment.js":{"id":85980,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":46109,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":46109,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/layout-router.js":{"id":26957,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/layout-router.js":{"id":26957,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":33705,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":33705,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/render-from-template-context.js":{"id":97369,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":97369,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/framework/boundary-components.js":{"id":21968,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":21968,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":22121,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":22121,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/app-sidebar.tsx":{"id":41287,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/globals.css":{"id":60290,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/components/ui/sonner.tsx":{"id":43450,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9045","static/chunks/9045-731ff0865352dd95.js","7177","static/chunks/app/layout-c7a35075cfbfa3e3.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/agents/[agentId]/_components/agent-event-stream.tsx":{"id":40284,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/components/ui/separator.tsx":{"id":91074,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-accordion@1.2.12_@types+react-dom@19.2.3_@types+react@19.2.14__@types+r_dd042184823cb7783b305fbc0c6ee2dd/node_modules/@radix-ui/react-accordion/dist/index.mjs":{"id":96253,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-alert-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@type_91d5036573779c1b9f41b61cd4660f3d/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs":{"id":28050,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-avatar@1.1.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_0ea80bc1497a6ecfd0bb5e124b1154c7/node_modules/@radix-ui/react-avatar/dist/index.mjs":{"id":94904,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_36946c77eec45f5a9fc04b1442c78a6c/node_modules/@radix-ui/react-checkbox/dist/index.mjs":{"id":13270,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-collapsible@1.1.12_@types+react-dom@19.2.3_@types+react@19.2.14__@types_e6de6020dad09a1b58742342f76b372e/node_modules/@radix-ui/react-collapsible/dist/index.mjs":{"id":99730,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-context-menu@2.2.16_@types+react-dom@19.2.3_@types+react@19.2.14__@type_f37cfa1787d19448013098dea4e28ec1/node_modules/@radix-ui/react-context-menu/dist/index.mjs":{"id":89146,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-dialog@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_340425d8afbecb0b8c61fd2281bc18a1/node_modules/@radix-ui/react-dialog/dist/index.mjs":{"id":19078,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-dropdown-menu@2.1.16_@types+react-dom@19.2.3_@types+react@19.2.14__@typ_4a94a496ca8ecf7aa0a759c94ddf8d47/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs":{"id":67854,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-form@0.1.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@1_47bc6dc07b089b01a31e6ae276fc360e/node_modules/@radix-ui/react-form/dist/index.mjs":{"id":69050,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-hover-card@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+_613291aa3f9ccfdc80950d764372b215/node_modules/@radix-ui/react-hover-card/dist/index.mjs":{"id":63739,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-label@2.1.7_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@_f0aed35acd5832478de9bf0eb04e4e73/node_modules/@radix-ui/react-label/dist/index.mjs":{"id":33976,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-menubar@1.1.16_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_c241a6baa37fac632bcc4c84e9bee107/node_modules/@radix-ui/react-menubar/dist/index.mjs":{"id":12537,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-navigation-menu@1.2.14_@types+react-dom@19.2.3_@types+react@19.2.14__@t_c2b468396dc2ba1a62f7bc4ec11745d1/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs":{"id":97485,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-one-time-password-field@0.1.8_@types+react-dom@19.2.3_@types+react@19.2_4f1c35a331f5409899cf6aa8a62bc07b/node_modules/@radix-ui/react-one-time-password-field/dist/index.mjs":{"id":41923,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-password-toggle-field@0.1.3_@types+react-dom@19.2.3_@types+react@19.2.1_ccd72623a720a0b92b4e37907f095b99/node_modules/@radix-ui/react-password-toggle-field/dist/index.mjs":{"id":73868,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-popover@1.1.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_70579f2082d5a15782122fa6c39e7d95/node_modules/@radix-ui/react-popover/dist/index.mjs":{"id":53511,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_266ca67294f168fbf2e025541d323e69/node_modules/@radix-ui/react-portal/dist/index.mjs":{"id":2018,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-progress@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_740b0bbe0b5580d832d94af6eeb5f557/node_modules/@radix-ui/react-progress/dist/index.mjs":{"id":18487,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+_c07779e275d27cb5d99f86b5919e57c8/node_modules/@radix-ui/react-radio-group/dist/index.mjs":{"id":98346,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-scroll-area@1.2.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types_3f2ac5445210224aefd6333ca2197426/node_modules/@radix-ui/react-scroll-area/dist/index.mjs":{"id":14884,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-select@2.2.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_682a989a3617012ce093f43297729adf/node_modules/@radix-ui/react-select/dist/index.mjs":{"id":85314,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-slider@1.3.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_4168059ceb0ad18c50e861ed8102d508/node_modules/@radix-ui/react-slider/dist/index.mjs":{"id":17280,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-switch@1.2.6_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_fb4779bfc166cf9d3db05474981c0df1/node_modules/@radix-ui/react-switch/dist/index.mjs":{"id":8855,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-tabs@1.1.13_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react@_08684373bbac196273bdefb5472f93a8/node_modules/@radix-ui/react-tabs/dist/index.mjs":{"id":86631,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toast@1.2.15_@types+react-dom@19.2.3_@types+react@19.2.14__@types+react_6625e53ff8dc545622ac4ae2f6193cc7/node_modules/@radix-ui/react-toast/dist/index.mjs":{"id":2604,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toggle-group@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.14__@type_f53932d1010514ee55ce15134943c7f6/node_modules/@radix-ui/react-toggle-group/dist/index.mjs":{"id":27237,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toggle@1.1.10_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_1170d6428188a43ba2f1794b2158e623/node_modules/@radix-ui/react-toggle/dist/index.mjs":{"id":49455,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-toolbar@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.14__@types+rea_855b867db56c182beb12942ab20dad4c/node_modules/@radix-ui/react-toolbar/dist/index.mjs":{"id":39211,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/@radix-ui+react-tooltip@1.2.8_@types+react-dom@19.2.3_@types+react@19.2.14__@types+reac_8c33d96ab4033e6041e8b8646beae976/node_modules/@radix-ui/react-tooltip/dist/index.mjs":{"id":56360,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/app-dir/link.js":{"id":54400,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/esm/client/app-dir/link.js":{"id":54400,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/universal-chat-bar.tsx":{"id":89061,"name":"*","chunks":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","3954","static/chunks/3954-fe27ff41d9bf012d.js","6489","static/chunks/6489-ecde2d94e57eb8a9.js","8974","static/chunks/app/page-ddaeffdc9a15f597.js"],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/settings/_components/settings-form.tsx":{"id":89134,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/new/_components/directory-picker.tsx":{"id":41372,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/onboarding/_components/wizard.tsx":{"id":83524,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/utility-iframe.tsx":{"id":86727,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/share/_components/share-auth-form.tsx":{"id":16381,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/share-button.tsx":{"id":45407,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/[scope]/[id]/_components/manifest-panel.tsx":{"id":43831,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/[scope]/[id]/_components/utility-frame.tsx":{"id":49833,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/curated-gallery.tsx":{"id":59487,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-from-github-button.tsx":{"id":76161,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-from-mcp-button.tsx":{"id":56703,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/install-via-agent-button.tsx":{"id":23119,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/utilities/_components/remove-utility-button.tsx":{"id":48572,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/chat-view.tsx":{"id":3989,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/delete-topic-button.tsx":{"id":16225,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/chat/[topicId]/_components/goal-badge.tsx":{"id":36167,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/_components/kb/insert-image-button.tsx":{"id":2285,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/root-viewer.tsx":{"id":80200,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/workflows/[wfId]/_components/workflow-editor.tsx":{"id":72849,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/add-utility-button.tsx":{"id":23136,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/command-bar.tsx":{"id":8190,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/dashboard.tsx":{"id":89808,"name":"*","chunks":[],"async":false},"/home/runner/work/reflex-agent/reflex-agent/app/roots/[id]/_components/run-init-button.tsx":{"id":5369,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/reflex-agent/reflex-agent/":[],"/home/runner/work/reflex-agent/reflex-agent/app/layout":[{"inlined":false,"path":"static/css/87e01f779d555d04.css"}],"/home/runner/work/reflex-agent/reflex-agent/app/page":[],"/home/runner/work/reflex-agent/reflex-agent/app/api/utilities/[scope]/[id]/host-api.mjs/route":[]},"rscModuleMapping":{"2018":{"*":{"id":"37550","name":"*","chunks":[],"async":false}},"2285":{"*":{"id":"86673","name":"*","chunks":[],"async":false}},"2604":{"*":{"id":"41138","name":"*","chunks":[],"async":false}},"3989":{"*":{"id":"32471","name":"*","chunks":[],"async":false}},"5369":{"*":{"id":"770","name":"*","chunks":[],"async":false}},"6287":{"*":{"id":"47319","name":"*","chunks":[],"async":false}},"8190":{"*":{"id":"90558","name":"*","chunks":[],"async":false}},"8855":{"*":{"id":"391","name":"*","chunks":[],"async":false}},"12537":{"*":{"id":"24375","name":"*","chunks":[],"async":false}},"13270":{"*":{"id":"68146","name":"*","chunks":[],"async":false}},"14884":{"*":{"id":"65478","name":"*","chunks":[],"async":false}},"16225":{"*":{"id":"60231","name":"*","chunks":[],"async":false}},"16381":{"*":{"id":"41664","name":"*","chunks":[],"async":false}},"17280":{"*":{"id":"73552","name":"*","chunks":[],"async":false}},"18487":{"*":{"id":"96623","name":"*","chunks":[],"async":false}},"19078":{"*":{"id":"68902","name":"*","chunks":[],"async":false}},"21968":{"*":{"id":"59118","name":"*","chunks":[],"async":false}},"22121":{"*":{"id":"84583","name":"*","chunks":[],"async":false}},"23119":{"*":{"id":"29279","name":"*","chunks":[],"async":false}},"23136":{"*":{"id":"574","name":"*","chunks":[],"async":false}},"26957":{"*":{"id":"78767","name":"*","chunks":[],"async":false}},"27237":{"*":{"id":"60877","name":"*","chunks":[],"async":false}},"28050":{"*":{"id":"26922","name":"*","chunks":[],"async":false}},"33705":{"*":{"id":"75751","name":"*","chunks":[],"async":false}},"33976":{"*":{"id":"83594","name":"*","chunks":[],"async":false}},"36167":{"*":{"id":"4396","name":"*","chunks":[],"async":false}},"39211":{"*":{"id":"5637","name":"*","chunks":[],"async":false}},"40284":{"*":{"id":"95022","name":"*","chunks":[],"async":false}},"40836":{"*":{"id":"97654","name":"*","chunks":[],"async":false}},"41287":{"*":{"id":"30849","name":"*","chunks":[],"async":false}},"41372":{"*":{"id":"87628","name":"*","chunks":[],"async":false}},"41923":{"*":{"id":"85105","name":"*","chunks":[],"async":false}},"43450":{"*":{"id":"95422","name":"*","chunks":[],"async":false}},"43831":{"*":{"id":"11255","name":"*","chunks":[],"async":false}},"45407":{"*":{"id":"16805","name":"*","chunks":[],"async":false}},"46109":{"*":{"id":"73671","name":"*","chunks":[],"async":false}},"48572":{"*":{"id":"61254","name":"*","chunks":[],"async":false}},"49455":{"*":{"id":"7671","name":"*","chunks":[],"async":false}},"49833":{"*":{"id":"22137","name":"*","chunks":[],"async":false}},"53511":{"*":{"id":"33309","name":"*","chunks":[],"async":false}},"54400":{"*":{"id":"20594","name":"*","chunks":[],"async":false}},"56360":{"*":{"id":"36786","name":"*","chunks":[],"async":false}},"56703":{"*":{"id":"77287","name":"*","chunks":[],"async":false}},"59487":{"*":{"id":"60937","name":"*","chunks":[],"async":false}},"60290":{"*":{"id":"44427","name":"*","chunks":[],"async":false}},"63739":{"*":{"id":"93099","name":"*","chunks":[],"async":false}},"67854":{"*":{"id":"69644","name":"*","chunks":[],"async":false}},"69050":{"*":{"id":"49186","name":"*","chunks":[],"async":false}},"72849":{"*":{"id":"91334","name":"*","chunks":[],"async":false}},"73868":{"*":{"id":"41886","name":"*","chunks":[],"async":false}},"76161":{"*":{"id":"28487","name":"*","chunks":[],"async":false}},"80200":{"*":{"id":"68334","name":"*","chunks":[],"async":false}},"83524":{"*":{"id":"22660","name":"*","chunks":[],"async":false}},"85314":{"*":{"id":"97230","name":"*","chunks":[],"async":false}},"85980":{"*":{"id":"10432","name":"*","chunks":[],"async":false}},"86631":{"*":{"id":"4235","name":"*","chunks":[],"async":false}},"86727":{"*":{"id":"73478","name":"*","chunks":[],"async":false}},"89061":{"*":{"id":"56925","name":"*","chunks":[],"async":false}},"89134":{"*":{"id":"71903","name":"*","chunks":[],"async":false}},"89146":{"*":{"id":"65138","name":"*","chunks":[],"async":false}},"89808":{"*":{"id":"64845","name":"*","chunks":[],"async":false}},"91074":{"*":{"id":"60524","name":"*","chunks":[],"async":false}},"94904":{"*":{"id":"79008","name":"*","chunks":[],"async":false}},"96253":{"*":{"id":"50155","name":"*","chunks":[],"async":false}},"97369":{"*":{"id":"48609","name":"*","chunks":[],"async":false}},"97485":{"*":{"id":"67135","name":"*","chunks":[],"async":false}},"98346":{"*":{"id":"77372","name":"*","chunks":[],"async":false}},"99730":{"*":{"id":"60936","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
@@ -0,0 +1,114 @@
1
+ (()=>{var a={};a.id=1119,a.ids=[1119],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},10846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},16062:(a,b,c)=>{"use strict";c.r(b),c.d(b,{handler:()=>J,patchFetch:()=>I,routeModule:()=>E,serverHooks:()=>H,workAsyncStorage:()=>F,workUnitAsyncStorage:()=>G});var d={};c.r(d),c.d(d,{GET:()=>D,dynamic:()=>z,runtime:()=>A});var e=c(20797),f=c(99210),g=c(18505),h=c(36265),i=c(15003),j=c(261),k=c(55745),l=c(4079),m=c(11817),n=c(1082),o=c(76188),p=c(17478),q=c(53804),r=c(80269),s=c(86439),t=c(53875),u=c(56748),v=c(71152),w=c(76760),x=c.n(w),y=c(85933);let z="force-static",A="nodejs",B=null;async function C(){if(B)return B;let a=await v.build({stdin:{contents:y.g,resolveDir:x().join(process.cwd(),"node_modules"),sourcefile:"host-ui.mjs",loader:"js"},bundle:!0,format:"esm",platform:"browser",target:"es2022",write:!1,logLevel:"silent"});if(a.errors.length>0)throw Error("host-ui bundle failed: "+a.errors.map(a=>a.text).join("; "));return B=a.outputFiles[0].text}async function D(){let a=await C();return new u.NextResponse(a,{headers:{"Content-Type":"application/javascript; charset=utf-8","Cache-Control":"public, max-age=60","Access-Control-Allow-Origin":"*"}})}let E=new e.AppRouteRouteModule({definition:{kind:f.RouteKind.APP_ROUTE,page:"/api/utilities/[scope]/[id]/host-ui.mjs/route",pathname:"/api/utilities/[scope]/[id]/host-ui.mjs",filename:"route",bundlePath:"app/api/utilities/[scope]/[id]/host-ui.mjs/route"},distDir:".next",relativeProjectDir:"",resolvedPagePath:"/home/runner/work/reflex-agent/reflex-agent/app/api/utilities/[scope]/[id]/host-ui.mjs/route.ts",nextConfigOutput:"",userland:d}),{workAsyncStorage:F,workUnitAsyncStorage:G,serverHooks:H}=E;function I(){return(0,g.patchFetch)({workAsyncStorage:F,workUnitAsyncStorage:G})}async function J(a,b,c){var d;let e="/api/utilities/[scope]/[id]/host-ui.mjs/route";"/index"===e&&(e="/");let g=await E.prepare(a,b,{srcPage:e,multiZoneDraftMode:!1});if(!g)return b.statusCode=400,b.end("Bad Request"),null==c.waitUntil||c.waitUntil.call(c,Promise.resolve()),null;let{buildId:u,params:v,nextConfig:w,isDraftMode:x,prerenderManifest:y,routerServerContext:z,isOnDemandRevalidate:A,revalidateOnlyGenerated:B,resolvedPathname:C}=g,D=(0,j.normalizeAppPath)(e),F=!!(y.dynamicRoutes[D]||y.routes[C]);if(F&&!x){let a=!!y.routes[C],b=y.dynamicRoutes[D];if(b&&!1===b.fallback&&!a)throw new s.NoFallbackError}let G=null;!F||E.isDev||x||(G="/index"===(G=C)?"/":G);let H=!0===E.isDev||!F,I=F&&!H,J=a.method||"GET",K=(0,i.getTracer)(),L=K.getActiveScopeSpan(),M={params:v,prerenderManifest:y,renderOpts:{experimental:{cacheComponents:!!w.experimental.cacheComponents,authInterrupts:!!w.experimental.authInterrupts},supportsDynamicResponse:H,incrementalCache:(0,h.getRequestMeta)(a,"incrementalCache"),cacheLifeProfiles:null==(d=w.experimental)?void 0:d.cacheLife,isRevalidate:I,waitUntil:c.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:void 0,onInstrumentationRequestError:(b,c,d)=>E.onRequestError(a,b,d,z)},sharedContext:{buildId:u}},N=new k.NodeNextRequest(a),O=new k.NodeNextResponse(b),P=l.NextRequestAdapter.fromNodeNextRequest(N,(0,l.signalFromNodeResponse)(b));try{let d=async c=>E.handle(P,M).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let d=K.getRootSpanAttributes();if(!d)return;if(d.get("next.span_type")!==m.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${d.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let e=d.get("next.route");if(e){let a=`${J} ${e}`;c.setAttributes({"next.route":e,"http.route":e,"next.span_name":a}),c.updateName(a)}else c.updateName(`${J} ${a.url}`)}),g=async g=>{var i,j;let k=async({previousCacheEntry:f})=>{try{if(!(0,h.getRequestMeta)(a,"minimalMode")&&A&&B&&!f)return b.statusCode=404,b.setHeader("x-nextjs-cache","REVALIDATED"),b.end("This page could not be found"),null;let e=await d(g);a.fetchMetrics=M.renderOpts.fetchMetrics;let i=M.renderOpts.pendingWaitUntil;i&&c.waitUntil&&(c.waitUntil(i),i=void 0);let j=M.renderOpts.collectedTags;if(!F)return await (0,o.I)(N,O,e,M.renderOpts.pendingWaitUntil),null;{let a=await e.blob(),b=(0,p.toNodeOutgoingHttpHeaders)(e.headers);j&&(b[r.NEXT_CACHE_TAGS_HEADER]=j),!b["content-type"]&&a.type&&(b["content-type"]=a.type);let c=void 0!==M.renderOpts.collectedRevalidate&&!(M.renderOpts.collectedRevalidate>=r.INFINITE_CACHE)&&M.renderOpts.collectedRevalidate,d=void 0===M.renderOpts.collectedExpire||M.renderOpts.collectedExpire>=r.INFINITE_CACHE?void 0:M.renderOpts.collectedExpire;return{value:{kind:t.CachedRouteKind.APP_ROUTE,status:e.status,body:Buffer.from(await a.arrayBuffer()),headers:b},cacheControl:{revalidate:c,expire:d}}}}catch(b){throw(null==f?void 0:f.isStale)&&await E.onRequestError(a,b,{routerKind:"App Router",routePath:e,routeType:"route",revalidateReason:(0,n.c)({isRevalidate:I,isOnDemandRevalidate:A})},z),b}},l=await E.handleResponse({req:a,nextConfig:w,cacheKey:G,routeKind:f.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:y,isRoutePPREnabled:!1,isOnDemandRevalidate:A,revalidateOnlyGenerated:B,responseGenerator:k,waitUntil:c.waitUntil});if(!F)return null;if((null==l||null==(i=l.value)?void 0:i.kind)!==t.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==l||null==(j=l.value)?void 0:j.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});(0,h.getRequestMeta)(a,"minimalMode")||b.setHeader("x-nextjs-cache",A?"REVALIDATED":l.isMiss?"MISS":l.isStale?"STALE":"HIT"),x&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let m=(0,p.fromNodeOutgoingHttpHeaders)(l.value.headers);return(0,h.getRequestMeta)(a,"minimalMode")&&F||m.delete(r.NEXT_CACHE_TAGS_HEADER),!l.cacheControl||b.getHeader("Cache-Control")||m.get("Cache-Control")||m.set("Cache-Control",(0,q.getCacheControlHeader)(l.cacheControl)),await (0,o.I)(N,O,new Response(l.value.body,{headers:m,status:l.value.status||200})),null};L?await g(L):await K.withPropagatedContext(a.headers,()=>K.trace(m.BaseServerSpan.handleRequest,{spanName:`${J} ${a.url}`,kind:i.SpanKind.SERVER,attributes:{"http.method":J,"http.target":a.url}},g))}catch(b){if(b instanceof s.NoFallbackError||await E.onRequestError(a,b,{routerKind:"App Router",routePath:D,routeType:"route",revalidateReason:(0,n.c)({isRevalidate:I,isOnDemandRevalidate:A})}),F)throw b;return await (0,o.I)(N,O,new Response(null,{status:500})),null}}},19121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},29294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},44870:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},63033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},71152:a=>{"use strict";a.exports=require("esbuild")},76760:a=>{"use strict";a.exports=require("node:path")},80432:()=>{},85933:(a,b,c)=>{"use strict";c.d(b,{g:()=>d});let d=String.raw`import { createElement, forwardRef } from "react";
2
+
3
+ function cls(...parts) {
4
+ return parts.filter(Boolean).join(" ");
5
+ }
6
+
7
+ export const Button = forwardRef(function Button(
8
+ { variant = "default", size = "default", className, ...props },
9
+ ref,
10
+ ) {
11
+ const v = {
12
+ default: "bg-slate-900 text-white hover:bg-slate-800",
13
+ secondary: "bg-slate-100 text-slate-900 hover:bg-slate-200",
14
+ outline: "border border-slate-300 bg-white hover:bg-slate-50",
15
+ destructive: "bg-red-600 text-white hover:bg-red-700",
16
+ ghost: "hover:bg-slate-100",
17
+ }[variant] ?? "";
18
+ const s = {
19
+ default: "h-9 px-4 py-2 text-sm",
20
+ sm: "h-8 px-3 text-xs",
21
+ lg: "h-11 px-6 text-base",
22
+ icon: "h-9 w-9 p-0",
23
+ }[size] ?? "";
24
+ return createElement("button", {
25
+ ref,
26
+ className: cls(
27
+ "inline-flex items-center justify-center rounded-md font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-slate-400 disabled:opacity-50 disabled:pointer-events-none",
28
+ v, s, className,
29
+ ),
30
+ ...props,
31
+ });
32
+ });
33
+
34
+ export const Input = forwardRef(function Input({ className, ...props }, ref) {
35
+ return createElement("input", {
36
+ ref,
37
+ className: cls(
38
+ "flex h-9 w-full rounded-md border border-slate-300 bg-white px-3 py-1 text-sm placeholder:text-slate-400 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-slate-400 disabled:opacity-50",
39
+ className,
40
+ ),
41
+ ...props,
42
+ });
43
+ });
44
+
45
+ export const Textarea = forwardRef(function Textarea({ className, ...props }, ref) {
46
+ return createElement("textarea", {
47
+ ref,
48
+ className: cls(
49
+ "flex min-h-[80px] w-full rounded-md border border-slate-300 bg-white px-3 py-2 text-sm placeholder:text-slate-400 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-slate-400 disabled:opacity-50",
50
+ className,
51
+ ),
52
+ ...props,
53
+ });
54
+ });
55
+
56
+ export function Label({ className, ...props }) {
57
+ return createElement("label", {
58
+ className: cls("text-xs font-medium text-slate-600", className),
59
+ ...props,
60
+ });
61
+ }
62
+
63
+ export function Card({ className, ...props }) {
64
+ return createElement("div", {
65
+ className: cls(
66
+ "rounded-lg border border-slate-200 bg-white shadow-sm",
67
+ className,
68
+ ),
69
+ ...props,
70
+ });
71
+ }
72
+
73
+ export function CardContent({ className, ...props }) {
74
+ return createElement("div", {
75
+ className: cls("p-4", className),
76
+ ...props,
77
+ });
78
+ }
79
+
80
+ export function CardHeader({ className, ...props }) {
81
+ return createElement("div", {
82
+ className: cls("p-4 border-b border-slate-100", className),
83
+ ...props,
84
+ });
85
+ }
86
+
87
+ export function CardTitle({ className, ...props }) {
88
+ return createElement("h3", {
89
+ className: cls("text-base font-semibold", className),
90
+ ...props,
91
+ });
92
+ }
93
+
94
+ export function Badge({ variant = "default", className, ...props }) {
95
+ const v = {
96
+ default: "bg-slate-900 text-white",
97
+ secondary: "bg-slate-100 text-slate-900",
98
+ outline: "border border-slate-300 text-slate-700",
99
+ }[variant] ?? "";
100
+ return createElement("span", {
101
+ className: cls(
102
+ "inline-flex items-center gap-1 rounded-full px-2 py-0.5 text-[11px] font-medium",
103
+ v, className,
104
+ ),
105
+ ...props,
106
+ });
107
+ }
108
+
109
+ export function ScrollArea({ className, children }) {
110
+ return createElement("div", {
111
+ className: cls("overflow-y-auto", className),
112
+ }, children);
113
+ }
114
+ `},86439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},90160:()=>{}};var b=require("../../../../../../webpack-runtime.js");b.C(a);var c=b.X(0,[9803,4833],()=>b(b.s=16062));module.exports=c})();
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.28.0/node_modules/@esbuild/linux-x64/bin/esbuild","../../../../../../../../node_modules/.pnpm/@esbuild+linux-x64@0.28.0/node_modules/@esbuild/linux-x64/package.json","../../../../../../../../node_modules/.pnpm/esbuild@0.28.0/node_modules/@esbuild/linux-x64","../../../../../../../../node_modules/.pnpm/esbuild@0.28.0/node_modules/esbuild/lib/main.js","../../../../../../../../node_modules/.pnpm/esbuild@0.28.0/node_modules/esbuild/package.json","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/client/components/app-router-headers.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/jsonwebtoken/index.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/jsonwebtoken/package.json","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/compiled/next-server/app-route.runtime.prod.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/client-and-server-references.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/constants.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/interop-default.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/is-error.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/lib/semver-noop.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/action-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/action-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/after-task-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/async-local-storage.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/cache-signal.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/cache-handlers/default.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/lru-cache.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/trace/constants.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/lib/trace/tracer.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/load-manifest.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/server/response-cache/types.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/deep-freeze.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/invariant-error.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/is-plain-object.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/is-thenable.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/no-fallback-error.external.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/router/utils/app-paths.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/segment.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/dist/shared/lib/server-reference-info.js","../../../../../../../../node_modules/.pnpm/next@15.5.18_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/next/package.json","../../../../../../../../node_modules/esbuild","../../../../../../../../node_modules/next","../../../../../../../../package.json","../../../../../../../package.json","../../../../../../chunks/4833.js","../../../../../../chunks/9803.js","../../../../../../webpack-runtime.js","route_client-reference-manifest.js"]}