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,5 @@
1
+ (()=>{var a={};a.id=9429,a.ids=[9429],a.modules={261:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/app-paths")},879:(a,b,c)=>{"use strict";c.d(b,{G:()=>k});var d=c(73024),e=c(76760),f=c.n(e),g=c(55136),h=c.n(g),i=c(54287);class j{constructor(a,b){this.root=a,this.layers=b}static async create(a){return new j(a,[]).enter(a)}async enter(a){let b,c=f().join(a,i.KZ);try{b=await d.promises.readFile(c,"utf8")}catch{return this}let e=h()().add(b);return new j(this.root,[...this.layers,{dir:a,ig:e}])}ignores(a){let b=f().basename(a);if(i.Lj.has(b))return!0;for(let{dir:b,ig:c}of this.layers){let d=f().relative(b,a);if(!(!d||d.startsWith(".."))&&c.ignores(d))return!0}return!1}}async function*k(a,b={}){let{maxDepth:c=1/0,followSymlinks:d=!1}=b,e=f().resolve(a),g=await j.create(e);yield{abs:e,rel:".",isDir:!0},yield*l(e,e,g,0,c,d)}async function*l(a,b,c,e,g,h){let i;if(!(e>=g)){try{i=await d.promises.readdir(b,{withFileTypes:!0})}catch{return}for(let d of(i.sort((a,b)=>a.name.localeCompare(b.name)),i)){var j,k;let i=f().join(b,d.name);if(c.ignores(i))continue;let n=d.isSymbolicLink();if(n&&!h)continue;let o=d.isDirectory()||n&&await m(i),p=(j=a,k=i,f().relative(j,k).split(f().sep).join("/"));if(yield{abs:i,rel:p,isDir:o},o){let b=await c.enter(i);yield*l(a,i,b,e+1,g,h)}}}}async function m(a){try{return(await d.promises.stat(a)).isDirectory()}catch{return!1}}},1708:a=>{"use strict";a.exports=require("node:process")},3295:a=>{"use strict";a.exports=require("next/dist/server/app-render/after-task-async-storage.external.js")},4984:a=>{"use strict";a.exports=require("readline")},7206:a=>{"use strict";a.exports=import("execa")},8086:a=>{"use strict";a.exports=require("module")},10846:a=>{"use strict";a.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},17596:(a,b,c)=>{"use strict";c.d(b,{A:()=>d});let d=(0,c(19963).A)("ArrowLeft",[["path",{d:"m12 19-7-7 7-7",key:"1l729n"}],["path",{d:"M19 12H5",key:"x3x0zl"}]])},19121:a=>{"use strict";a.exports=require("next/dist/server/app-render/action-async-storage.external.js")},20567:(a,b,c)=>{"use strict";c.d(b,{AU:()=>j,Z9:()=>i});var d=c(73024);c(76760);var e=c(56149),f=c(54287);let g=e.Ik({watchDebounceMs:e.ai().int().min(f.a,{message:`watchDebounceMs must be ≥ ${f.a} ms`}).default(f.VU),agentBackend:e.k5(["codex","claude-code"]).default("claude-code"),ignoreFile:e.Yj().default(".reflexignore")}),h=g.parse({});async function i(a){let b=(0,f.eQ)(a);try{let a=await d.promises.readFile(b,"utf8");return g.parse(JSON.parse(a))}catch(a){var c;if("object"==typeof(c=a)&&null!==c&&"code"in c&&"ENOENT"===c.code)return h;throw a}}async function j(a,b){await d.promises.mkdir((0,f.FF)(a),{recursive:!0}),await d.promises.writeFile((0,f.eQ)(a),JSON.stringify(b,null,2)+"\n","utf8")}},21820:a=>{"use strict";a.exports=require("os")},24576:(a,b,c)=>{"use strict";c.d(b,{Zn:()=>r,_S:()=>s,mM:()=>n,qV:()=>q});var d=c(73024),e=c(76760),f=c.n(e),g=c(48161),h=c.n(g),i=c(77598),j=c.n(i);let k=f().join(h().homedir(),".reflex"),l=f().join(k,"registry.json"),m={version:1,entries:[]};function n(a){return j().createHash("sha1").update(f().resolve(a)).digest("hex").slice(0,16)}async function o(){try{let a=await d.promises.readFile(l,"utf8"),b=JSON.parse(a);if("object"==typeof b&&null!==b&&"entries"in b&&Array.isArray(b.entries))return b;return m}catch(a){if("object"==typeof a&&null!==a&&"code"in a&&"ENOENT"===a.code)return m;throw a}}async function p(a){await d.promises.mkdir(k,{recursive:!0}),await d.promises.writeFile(l,JSON.stringify(a,null,2)+"\n","utf8")}async function q(){return[...(await o()).entries].sort((a,b)=>Date.parse(b.addedAt)-Date.parse(a.addedAt))}async function r(a){return(await o()).entries.find(b=>b.id===a)??null}async function s(a){let b=f().resolve(a),c=n(b),d=await o(),e=d.entries.find(a=>a.id===c);if(e)return e;let g={id:c,path:b,addedAt:new Date().toISOString()};return await p({...d,entries:[...d.entries,g]}),g}},26290:(a,b,c)=>{"use strict";c.d(b,{cn:()=>f});var d=c(83243),e=c(86103);function f(...a){return(0,e.QP)((0,d.$)(a))}},26713:a=>{"use strict";a.exports=require("next/dist/shared/lib/router/utils/is-bot")},27724:(a,b,c)=>{Promise.resolve().then(c.bind(c,81654)),Promise.resolve().then(c.bind(c,51189)),Promise.resolve().then(c.bind(c,66180)),Promise.resolve().then(c.bind(c,75266)),Promise.resolve().then(c.bind(c,14360)),Promise.resolve().then(c.bind(c,6786)),Promise.resolve().then(c.bind(c,44896)),Promise.resolve().then(c.bind(c,14848)),Promise.resolve().then(c.bind(c,53710)),Promise.resolve().then(c.bind(c,30544)),Promise.resolve().then(c.bind(c,13829)),Promise.resolve().then(c.bind(c,90044)),Promise.resolve().then(c.bind(c,57673)),Promise.resolve().then(c.bind(c,97053)),Promise.resolve().then(c.bind(c,43151)),Promise.resolve().then(c.bind(c,12156)),Promise.resolve().then(c.bind(c,71615)),Promise.resolve().then(c.bind(c,4080)),Promise.resolve().then(c.bind(c,87177)),Promise.resolve().then(c.bind(c,87634)),Promise.resolve().then(c.bind(c,6912)),Promise.resolve().then(c.bind(c,13976)),Promise.resolve().then(c.bind(c,18282)),Promise.resolve().then(c.bind(c,20633)),Promise.resolve().then(c.bind(c,61193)),Promise.resolve().then(c.bind(c,66188)),Promise.resolve().then(c.bind(c,66643)),Promise.resolve().then(c.bind(c,81669)),Promise.resolve().then(c.bind(c,39991)),Promise.resolve().then(c.bind(c,54972)),Promise.resolve().then(c.t.bind(c,1056,23))},28074:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.d(b,{y:()=>l});var e=c(7206),f=c(73024),g=c(46726),h=c(78744),i=a([e]);e=(i.then?(await i)():i)[0];let k="claude",l={id:"claude-code",async analyzeScope(a){await j(),await f.promises.mkdir(a.reflexScope,{recursive:!0});let b=await (0,h.p)(a),c=["-p",b,"--permission-mode","acceptEdits","--allowedTools","Read,Write,Edit,LS,Glob,Grep","--add-dir",a.reflexScope];a.model&&c.push("--model",a.model),await (0,e.execa)(k,c,{cwd:a.root,stdio:"inherit"})},async chat(a){await j();let b=await (0,h.M)(a);await (0,e.execa)(k,["--append-system-prompt",b,"--add-dir",a.reflexScope],{cwd:a.scope,stdio:"inherit"})}};async function j(){try{await (0,e.execa)(k,["--version"],{stdio:"ignore"})}catch(a){throw new g.g("claude-code",a)}}d()}catch(a){d(a)}})},28354:a=>{"use strict";a.exports=require("util")},29021:a=>{"use strict";a.exports=require("fs")},29294:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-async-storage.external.js")},31041:(a,b,c)=>{"use strict";c.d(b,{BT:()=>i,Wu:()=>j,ZB:()=>h,Zp:()=>f,aR:()=>g,wL:()=>k});var d=c(64173);c(17240);var e=c(91344);function f({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card",className:(0,e.cn)("flex flex-col gap-6 rounded-xl border bg-card py-6 text-card-foreground shadow-sm",a),...b})}function g({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card-header",className:(0,e.cn)("@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6",a),...b})}function h({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card-title",className:(0,e.cn)("leading-none font-semibold",a),...b})}function i({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card-description",className:(0,e.cn)("text-sm text-muted-foreground",a),...b})}function j({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card-content",className:(0,e.cn)("px-6",a),...b})}function k({className:a,...b}){return(0,d.jsx)("div",{"data-slot":"card-footer",className:(0,e.cn)("flex items-center px-6 [.border-t]:pt-6",a),...b})}},31421:a=>{"use strict";a.exports=require("node:child_process")},33873:a=>{"use strict";a.exports=require("path")},35314:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.d(b,{j:()=>h});var e=c(28074),f=c(48519),g=a([e,f]);[e,f]=g.then?(await g)():g;let i={"claude-code":e.y,codex:f.C};function h(a){let b=i[a.agentBackend];if(!b)throw Error(`Unknown agent backend: ${a.agentBackend}`);return b}d()}catch(a){d(a)}})},36306:a=>{"use strict";a.exports=import("@tailwindcss/node")},38141:(a,b,c)=>{"use strict";c.r(b),c.d(b,{GlobalError:()=>E.a,__next_app__:()=>K,handler:()=>M,pages:()=>J,routeModule:()=>L,tree:()=>I});var d=c(61597),e=c(99210),f=c(1082),g=c(15003),h=c(36265),i=c(11817),j=c(45136),k=c(41809),l=c(55745),m=c(88963),n=c(69153),o=c(48343),p=c(15808),q=c(21238),r=c(2555),s=c(261),t=c(34370),u=c(89583),v=c(26713),w=c(53875),x=c(7952),y=c(54532),z=c(80269),A=c(17851),B=c(57865),C=c(86439),D=c(47319),E=c.n(D),F=c(1859),G=c(20498),H={};for(let a in F)0>["default","tree","pages","GlobalError","__next_app__","routeModule","handler"].indexOf(a)&&(H[a]=()=>F[a]);c.d(b,H);let I={children:["",{children:["roots",{children:["new",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(c.bind(c,99257)),"/home/runner/work/reflex-agent/reflex-agent/app/roots/new/page.tsx"]}]},{}]},{}]},{layout:[()=>Promise.resolve().then(c.bind(c,79459)),"/home/runner/work/reflex-agent/reflex-agent/app/layout.tsx"],"global-error":[()=>Promise.resolve().then(c.t.bind(c,47319,23)),"next/dist/client/components/builtin/global-error.js"],"not-found":[()=>Promise.resolve().then(c.t.bind(c,82295,23)),"next/dist/client/components/builtin/not-found.js"],forbidden:[()=>Promise.resolve().then(c.t.bind(c,91570,23)),"next/dist/client/components/builtin/forbidden.js"],unauthorized:[()=>Promise.resolve().then(c.t.bind(c,72845,23)),"next/dist/client/components/builtin/unauthorized.js"]}]}.children,J=["/home/runner/work/reflex-agent/reflex-agent/app/roots/new/page.tsx"],K={require:c,loadChunk:()=>Promise.resolve()},L=new d.AppPageRouteModule({definition:{kind:e.RouteKind.APP_PAGE,page:"/roots/new/page",pathname:"/roots/new",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:I},distDir:".next",relativeProjectDir:""});async function M(a,b,d){var D;let H="/roots/new/page";"/index"===H&&(H="/");let N=(0,h.getRequestMeta)(a,"postponed"),O=(0,h.getRequestMeta)(a,"minimalMode"),P=await L.prepare(a,b,{srcPage:H,multiZoneDraftMode:!1});if(!P)return b.statusCode=400,b.end("Bad Request"),null==d.waitUntil||d.waitUntil.call(d,Promise.resolve()),null;let{buildId:Q,query:R,params:S,parsedUrl:T,pageIsDynamic:U,buildManifest:V,nextFontManifest:W,reactLoadableManifest:X,serverActionsManifest:Y,clientReferenceManifest:Z,subresourceIntegrityManifest:$,prerenderManifest:_,isDraftMode:aa,resolvedPathname:ab,revalidateOnlyGenerated:ac,routerServerContext:ad,nextConfig:ae,interceptionRoutePatterns:af}=P,ag=T.pathname||"/",ah=(0,s.normalizeAppPath)(H),{isOnDemandRevalidate:ai}=P,aj=L.match(ag,_),ak=!!_.routes[ab],al=!!(aj||ak||_.routes[ah]),am=a.headers["user-agent"]||"",an=(0,v.getBotType)(am),ao=(0,q.isHtmlBotRequest)(a),ap=(0,h.getRequestMeta)(a,"isPrefetchRSCRequest")??"1"===a.headers[u.NEXT_ROUTER_PREFETCH_HEADER],aq=(0,h.getRequestMeta)(a,"isRSCRequest")??(0,n.f)(a.headers[u.RSC_HEADER]),ar=(0,t.getIsPossibleServerAction)(a),as=(0,m.checkIsAppPPREnabled)(ae.experimental.ppr)&&(null==(D=_.routes[ah]??_.dynamicRoutes[ah])?void 0:D.renderingMode)==="PARTIALLY_STATIC",at=!1,au=!1,av=as?N:void 0,aw=as&&aq&&!ap,ax=(0,h.getRequestMeta)(a,"segmentPrefetchRSCRequest"),ay=!am||(0,q.shouldServeStreamingMetadata)(am,ae.htmlLimitedBots);ao&&as&&(al=!1,ay=!1);let az=!0===L.isDev||!al||"string"==typeof N||aw,aA=ao&&as,aB=null;aa||!al||az||ar||av||aw||(aB=ab);let aC=aB;!aC&&L.isDev&&(aC=ab),L.isDev||aa||!al||!aq||aw||(0,k.d)(a.headers);let aD={...F,tree:I,pages:J,GlobalError:E(),handler:M,routeModule:L,__next_app__:K};Y&&Z&&(0,p.setReferenceManifestsSingleton)({page:H,clientReferenceManifest:Z,serverActionsManifest:Y,serverModuleMap:(0,r.createServerModuleMap)({serverActionsManifest:Y})});let aE=a.method||"GET",aF=(0,g.getTracer)(),aG=aF.getActiveScopeSpan();try{let f=L.getVaryHeader(ab,af);b.setHeader("Vary",f);let k=async(c,d)=>{let e=new l.NodeNextRequest(a),f=new l.NodeNextResponse(b);return L.render(e,f,d).finally(()=>{if(!c)return;c.setAttributes({"http.status_code":b.statusCode,"next.rsc":!1});let d=aF.getRootSpanAttributes();if(!d)return;if(d.get("next.span_type")!==i.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=`${aE} ${e}`;c.setAttributes({"next.route":e,"http.route":e,"next.span_name":a}),c.updateName(a)}else c.updateName(`${aE} ${a.url}`)})},m=async({span:e,postponed:f,fallbackRouteParams:g})=>{let i={query:R,params:S,page:ah,sharedContext:{buildId:Q},serverComponentsHmrCache:(0,h.getRequestMeta)(a,"serverComponentsHmrCache"),fallbackRouteParams:g,renderOpts:{App:()=>null,Document:()=>null,pageConfig:{},ComponentMod:aD,Component:(0,j.T)(aD),params:S,routeModule:L,page:H,postponed:f,shouldWaitOnAllReady:aA,serveStreamingMetadata:ay,supportsDynamicResponse:"string"==typeof f||az,buildManifest:V,nextFontManifest:W,reactLoadableManifest:X,subresourceIntegrityManifest:$,serverActionsManifest:Y,clientReferenceManifest:Z,setIsrStatus:null==ad?void 0:ad.setIsrStatus,dir:c(33873).join(process.cwd(),L.relativeProjectDir),isDraftMode:aa,isRevalidate:al&&!f&&!aw,botType:an,isOnDemandRevalidate:ai,isPossibleServerAction:ar,assetPrefix:ae.assetPrefix,nextConfigOutput:ae.output,crossOrigin:ae.crossOrigin,trailingSlash:ae.trailingSlash,previewProps:_.preview,deploymentId:ae.deploymentId,enableTainting:ae.experimental.taint,htmlLimitedBots:ae.htmlLimitedBots,devtoolSegmentExplorer:ae.experimental.devtoolSegmentExplorer,reactMaxHeadersLength:ae.reactMaxHeadersLength,multiZoneDraftMode:!1,incrementalCache:(0,h.getRequestMeta)(a,"incrementalCache"),cacheLifeProfiles:ae.experimental.cacheLife,basePath:ae.basePath,serverActions:ae.experimental.serverActions,...at?{nextExport:!0,supportsDynamicResponse:!1,isStaticGeneration:!0,isRevalidate:!0,isDebugDynamicAccesses:at}:{},experimental:{isRoutePPREnabled:as,expireTime:ae.expireTime,staleTimes:ae.experimental.staleTimes,cacheComponents:!!ae.experimental.cacheComponents,clientSegmentCache:!!ae.experimental.clientSegmentCache,clientParamParsing:!!ae.experimental.clientParamParsing,dynamicOnHover:!!ae.experimental.dynamicOnHover,inlineCss:!!ae.experimental.inlineCss,authInterrupts:!!ae.experimental.authInterrupts,clientTraceMetadata:ae.experimental.clientTraceMetadata||[]},waitUntil:d.waitUntil,onClose:a=>{b.on("close",a)},onAfterTaskError:()=>{},onInstrumentationRequestError:(b,c,d)=>L.onRequestError(a,b,d,ad),err:(0,h.getRequestMeta)(a,"invokeError"),dev:L.isDev}},l=await k(e,i),{metadata:m}=l,{cacheControl:n,headers:o={},fetchTags:p}=m;if(p&&(o[z.NEXT_CACHE_TAGS_HEADER]=p),a.fetchMetrics=m.fetchMetrics,al&&(null==n?void 0:n.revalidate)===0&&!L.isDev&&!as){let a=m.staticBailoutInfo,b=Object.defineProperty(Error(`Page changed from static to dynamic at runtime ${ab}${(null==a?void 0:a.description)?`, reason: ${a.description}`:""}
2
+ see more here https://nextjs.org/docs/messages/app-static-to-dynamic-error`),"__NEXT_ERROR_CODE",{value:"E132",enumerable:!1,configurable:!0});if(null==a?void 0:a.stack){let c=a.stack;b.stack=b.message+c.substring(c.indexOf("\n"))}throw b}return{value:{kind:w.CachedRouteKind.APP_PAGE,html:l,headers:o,rscData:m.flightData,postponed:m.postponed,status:m.statusCode,segmentData:m.segmentData},cacheControl:n}},n=async({hasResolved:c,previousCacheEntry:f,isRevalidating:g,span:i})=>{let j,k=!1===L.isDev,l=c||b.writableEnded;if(ai&&ac&&!f&&!O)return(null==ad?void 0:ad.render404)?await ad.render404(a,b):(b.statusCode=404,b.end("This page could not be found")),null;if(aj&&(j=(0,x.parseFallbackField)(aj.fallback)),j===x.FallbackMode.PRERENDER&&(0,v.isBot)(am)&&(!as||ao)&&(j=x.FallbackMode.BLOCKING_STATIC_RENDER),(null==f?void 0:f.isStale)===-1&&(ai=!0),ai&&(j!==x.FallbackMode.NOT_FOUND||f)&&(j=x.FallbackMode.BLOCKING_STATIC_RENDER),!O&&j!==x.FallbackMode.BLOCKING_STATIC_RENDER&&aC&&!l&&!aa&&U&&(k||!ak)){let b;if((k||aj)&&j===x.FallbackMode.NOT_FOUND)throw new C.NoFallbackError;if(as&&!aq){let c="string"==typeof(null==aj?void 0:aj.fallback)?aj.fallback:k?ah:null;if(b=await L.handleResponse({cacheKey:c,req:a,nextConfig:ae,routeKind:e.RouteKind.APP_PAGE,isFallback:!0,prerenderManifest:_,isRoutePPREnabled:as,responseGenerator:async()=>m({span:i,postponed:void 0,fallbackRouteParams:k||au?(0,o.u)(ah):null}),waitUntil:d.waitUntil}),null===b)return null;if(b)return delete b.cacheControl,b}}let n=ai||g||!av?void 0:av;if(at&&void 0!==n)return{cacheControl:{revalidate:1,expire:void 0},value:{kind:w.CachedRouteKind.PAGES,html:y.default.EMPTY,pageData:{},headers:void 0,status:void 0}};let p=U&&as&&((0,h.getRequestMeta)(a,"renderFallbackShell")||au)?(0,o.u)(ag):null;return m({span:i,postponed:n,fallbackRouteParams:p})},p=async c=>{var f,g,i,j,k;let l,o=await L.handleResponse({cacheKey:aB,responseGenerator:a=>n({span:c,...a}),routeKind:e.RouteKind.APP_PAGE,isOnDemandRevalidate:ai,isRoutePPREnabled:as,req:a,nextConfig:ae,prerenderManifest:_,waitUntil:d.waitUntil});if(aa&&b.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate"),L.isDev&&b.setHeader("Cache-Control","no-store, must-revalidate"),!o){if(aB)throw Object.defineProperty(Error("invariant: cache entry required but not generated"),"__NEXT_ERROR_CODE",{value:"E62",enumerable:!1,configurable:!0});return null}if((null==(f=o.value)?void 0:f.kind)!==w.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant app-page handler received invalid cache entry ${null==(i=o.value)?void 0:i.kind}`),"__NEXT_ERROR_CODE",{value:"E707",enumerable:!1,configurable:!0});let p="string"==typeof o.value.postponed;al&&!aw&&(!p||ap)&&(O||b.setHeader("x-nextjs-cache",ai?"REVALIDATED":o.isMiss?"MISS":o.isStale?"STALE":"HIT"),b.setHeader(u.NEXT_IS_PRERENDER_HEADER,"1"));let{value:q}=o;if(av)l={revalidate:0,expire:void 0};else if(O&&aq&&!ap&&as)l={revalidate:0,expire:void 0};else if(!L.isDev)if(aa)l={revalidate:0,expire:void 0};else if(al){if(o.cacheControl)if("number"==typeof o.cacheControl.revalidate){if(o.cacheControl.revalidate<1)throw Object.defineProperty(Error(`Invalid revalidate configuration provided: ${o.cacheControl.revalidate} < 1`),"__NEXT_ERROR_CODE",{value:"E22",enumerable:!1,configurable:!0});l={revalidate:o.cacheControl.revalidate,expire:(null==(j=o.cacheControl)?void 0:j.expire)??ae.expireTime}}else l={revalidate:z.CACHE_ONE_YEAR,expire:void 0}}else b.getHeader("Cache-Control")||(l={revalidate:0,expire:void 0});if(o.cacheControl=l,"string"==typeof ax&&(null==q?void 0:q.kind)===w.CachedRouteKind.APP_PAGE&&q.segmentData){b.setHeader(u.NEXT_DID_POSTPONE_HEADER,"2");let c=null==(k=q.headers)?void 0:k[z.NEXT_CACHE_TAGS_HEADER];O&&al&&c&&"string"==typeof c&&b.setHeader(z.NEXT_CACHE_TAGS_HEADER,c);let d=q.segmentData.get(ax);return void 0!==d?(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:y.default.fromStatic(d,u.RSC_CONTENT_TYPE_HEADER),cacheControl:o.cacheControl}):(b.statusCode=204,(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:y.default.EMPTY,cacheControl:o.cacheControl}))}let r=(0,h.getRequestMeta)(a,"onCacheEntry");if(r&&await r({...o,value:{...o.value,kind:"PAGE"}},{url:(0,h.getRequestMeta)(a,"initURL")}))return null;if(p&&av)throw Object.defineProperty(Error("Invariant: postponed state should not be present on a resume request"),"__NEXT_ERROR_CODE",{value:"E396",enumerable:!1,configurable:!0});if(q.headers){let a={...q.headers};for(let[c,d]of(O&&al||delete a[z.NEXT_CACHE_TAGS_HEADER],Object.entries(a)))if(void 0!==d)if(Array.isArray(d))for(let a of d)b.appendHeader(c,a);else"number"==typeof d&&(d=d.toString()),b.appendHeader(c,d)}let s=null==(g=q.headers)?void 0:g[z.NEXT_CACHE_TAGS_HEADER];if(O&&al&&s&&"string"==typeof s&&b.setHeader(z.NEXT_CACHE_TAGS_HEADER,s),!q.status||aq&&as||(b.statusCode=q.status),!O&&q.status&&G.RedirectStatusCode[q.status]&&aq&&(b.statusCode=200),p&&b.setHeader(u.NEXT_DID_POSTPONE_HEADER,"1"),aq&&!aa){if(void 0===q.rscData){if(q.postponed)throw Object.defineProperty(Error("Invariant: Expected postponed to be undefined"),"__NEXT_ERROR_CODE",{value:"E372",enumerable:!1,configurable:!0});return(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:q.html,cacheControl:aw?{revalidate:0,expire:void 0}:o.cacheControl})}return(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:y.default.fromStatic(q.rscData,u.RSC_CONTENT_TYPE_HEADER),cacheControl:o.cacheControl})}let t=q.html;if(!p||O||aq)return(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:t,cacheControl:o.cacheControl});if(at)return t.push(new ReadableStream({start(a){a.enqueue(A.ENCODED_TAGS.CLOSED.BODY_AND_HTML),a.close()}})),(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:t,cacheControl:{revalidate:0,expire:void 0}});let v=new TransformStream;return t.push(v.readable),m({span:c,postponed:q.postponed,fallbackRouteParams:null}).then(async a=>{var b,c;if(!a)throw Object.defineProperty(Error("Invariant: expected a result to be returned"),"__NEXT_ERROR_CODE",{value:"E463",enumerable:!1,configurable:!0});if((null==(b=a.value)?void 0:b.kind)!==w.CachedRouteKind.APP_PAGE)throw Object.defineProperty(Error(`Invariant: expected a page response, got ${null==(c=a.value)?void 0:c.kind}`),"__NEXT_ERROR_CODE",{value:"E305",enumerable:!1,configurable:!0});await a.value.html.pipeTo(v.writable)}).catch(a=>{v.writable.abort(a).catch(a=>{console.error("couldn't abort transformer",a)})}),(0,B.sendRenderResult)({req:a,res:b,generateEtags:ae.generateEtags,poweredByHeader:ae.poweredByHeader,result:t,cacheControl:{revalidate:0,expire:void 0}})};if(!aG)return await aF.withPropagatedContext(a.headers,()=>aF.trace(i.BaseServerSpan.handleRequest,{spanName:`${aE} ${a.url}`,kind:g.SpanKind.SERVER,attributes:{"http.method":aE,"http.target":a.url}},p));await p(aG)}catch(b){throw b instanceof C.NoFallbackError||await L.onRequestError(a,b,{routerKind:"App Router",routePath:H,routeType:"render",revalidateReason:(0,f.c)({isRevalidate:al,isOnDemandRevalidate:ai})},ad),b}}},40876:(a,b,c)=>{Promise.resolve().then(c.bind(c,87628)),Promise.resolve().then(c.bind(c,50155)),Promise.resolve().then(c.bind(c,26922)),Promise.resolve().then(c.bind(c,79008)),Promise.resolve().then(c.bind(c,68146)),Promise.resolve().then(c.bind(c,60936)),Promise.resolve().then(c.bind(c,65138)),Promise.resolve().then(c.bind(c,68902)),Promise.resolve().then(c.bind(c,69644)),Promise.resolve().then(c.bind(c,49186)),Promise.resolve().then(c.bind(c,93099)),Promise.resolve().then(c.bind(c,83594)),Promise.resolve().then(c.bind(c,24375)),Promise.resolve().then(c.bind(c,67135)),Promise.resolve().then(c.bind(c,85105)),Promise.resolve().then(c.bind(c,41886)),Promise.resolve().then(c.bind(c,33309)),Promise.resolve().then(c.bind(c,37550)),Promise.resolve().then(c.bind(c,96623)),Promise.resolve().then(c.bind(c,77372)),Promise.resolve().then(c.bind(c,65478)),Promise.resolve().then(c.bind(c,97230)),Promise.resolve().then(c.bind(c,73552)),Promise.resolve().then(c.bind(c,391)),Promise.resolve().then(c.bind(c,4235)),Promise.resolve().then(c.bind(c,41138)),Promise.resolve().then(c.bind(c,60877)),Promise.resolve().then(c.bind(c,7671)),Promise.resolve().then(c.bind(c,5637)),Promise.resolve().then(c.bind(c,36786)),Promise.resolve().then(c.t.bind(c,20594,23))},41025:a=>{"use strict";a.exports=require("next/dist/server/app-render/dynamic-access-async-storage.external.js")},46726:(a,b,c)=>{"use strict";c.d(b,{g:()=>d});class d extends Error{constructor(a,b){super(`Agent backend "${a}" is unavailable: ${b instanceof Error?b.message:String(b)}`),this.name="AgentUnavailableError"}}},47071:(a,b,c)=>{"use strict";c.d(b,{p:()=>f});var d=c(64173);c(17240);var e=c(91344);function f({className:a,type:b,...c}){return(0,d.jsx)("input",{type:b,"data-slot":"input",className:(0,e.cn)("h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-xs transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm dark:bg-input/30","focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50","aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40",a),...c})}},48161:a=>{"use strict";a.exports=require("node:os")},48519:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.d(b,{C:()=>l});var e=c(7206),f=c(73024),g=c(46726),h=c(78744),i=a([e]);e=(i.then?(await i)():i)[0];let k="codex",l={id:"codex",async analyzeScope(a){await j(),await f.promises.mkdir(a.reflexScope,{recursive:!0});let b=await (0,h.p)(a),c=["exec","--cd",a.root,"--sandbox","workspace-write","--add-dir",a.reflexScope];a.model&&c.push("--model",a.model),c.push(b),await (0,e.execa)(k,c,{stdio:"inherit"})},async chat(a){await j();let b=await (0,h.M)(a);await (0,e.execa)(k,["--system",b],{cwd:a.scope,stdio:"inherit"})}};async function j(){try{await (0,e.execa)(k,["--version"],{stdio:"ignore"})}catch(a){throw new g.g("codex",a)}}d()}catch(a){d(a)}})},50108:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.d(b,{E:()=>m});var e=c(73024),f=c(76760),g=c.n(f),h=c(20567),i=c(35314),j=c(79734),k=c(54287),l=a([i]);async function m(a,b={}){let c=g().resolve(a);await n(c),await e.promises.mkdir((0,k.FF)(c),{recursive:!0});let d=await (0,h.Z9)(c);if(await (0,h.AU)(c,d),await (0,j.D)(c),b.scaffoldOnly)return void process.stdout.write(`Reflex scaffolded at ${(0,k.FF)(c)} (scaffold-only).
3
+ `);let f=b.harness?{...d,agentBackend:b.harness}:d,l=await (0,j.z)({root:c,scope:c}),o={...l,...b.model?{model:b.model}:{},...b.language?{language:b.language}:{}};process.stdout.write(`Running ${f.agentBackend}${b.model?` (${b.model})`:""}${b.language?` [lang=${b.language}]`:""} over ${c} (${l.files.length} files visible)…
4
+ `);let p=(0,i.j)(f);await p.analyzeScope(o),process.stdout.write(`Done. KB written under ${(0,k.FF)(c)}
5
+ `)}async function n(a){let b=await e.promises.stat(a).catch(()=>null);if(!b||!b.isDirectory())throw Error(`Not a directory: ${a}`)}i=(l.then?(await l)():l)[0],d()}catch(a){d(a)}})},57075:a=>{"use strict";a.exports=require("node:stream")},61279:(a,b,c)=>{"use strict";c.d(b,{F:()=>m,o:()=>n});var d=c(73745);c(66493);var e=c(73024),f=c(76760),g=c.n(f),h=c(48161),i=c.n(h);let j=new Set([".Trash","Library",".cache"]);async function k(a){let b=g().resolve(a?.length?a:i().homedir());if(!(await e.promises.stat(b)).isDirectory())throw Error(`Not a directory: ${b}`);let c=await e.promises.readdir(b,{withFileTypes:!0}),d=[];for(let a of c){if(j.has(a.name))continue;let c=g().join(b,a.name),e=a.isDirectory()||a.isSymbolicLink()&&await l(c);d.push({name:a.name,absPath:c,isDir:e,hidden:a.name.startsWith(".")})}d.sort((a,b)=>a.isDir!==b.isDir?a.isDir?-1:1:a.name.localeCompare(b.name));let f=g().dirname(b);return{path:b,parent:f===b?null:f,entries:d}}async function l(a){try{return(await e.promises.stat(a)).isDirectory()}catch{return!1}}async function m(a){try{let b=await k(a);return{ok:!0,...b}}catch(a){return{ok:!1,error:a instanceof Error?a.message:String(a)}}}async function n(a,b){try{if(!a||!b)return{ok:!1,error:"Не указан родитель или имя"};let c=b.trim();if(!c)return{ok:!1,error:"Пустое имя"};if("."===c||".."===c||c.includes("/")||c.includes("\\")||c.includes("\0"))return{ok:!1,error:"Недопустимое имя папки"};let d=g().resolve(a),f=await e.promises.stat(d).catch(()=>null);if(!f||!f.isDirectory())return{ok:!1,error:"Родительский путь не является каталогом"};let h=g().join(d,c),i=g().relative(d,h);if(i.startsWith("..")||g().isAbsolute(i))return{ok:!1,error:"Недопустимый путь"};try{await e.promises.mkdir(h,{recursive:!1})}catch(a){if("object"==typeof a&&null!==a&&"code"in a&&"EEXIST"===a.code)return{ok:!1,error:"Папка с таким именем уже существует"};throw a}return{ok:!0,path:h}}catch(a){return{ok:!1,error:a instanceof Error?a.message:String(a)}}}(0,c(63781).D)([m,n]),(0,d.A)(m,"400addb0ef2d99d42eabe890f969a2b5a864caafcf",null),(0,d.A)(n,"60cd50d727cdcf3c21d895644f3535576faaf265ed",null)},63033:a=>{"use strict";a.exports=require("next/dist/server/app-render/work-unit-async-storage.external.js")},63351:(a,b,c)=>{"use strict";c.d(b,{A:()=>d});let d=(0,c(42557).A)("RefreshCw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]])},68461:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.r(b),c.d(b,{"00cd2d83814844e1283c9ba1e1c423e61ddf47de12":()=>g.i,"4004b94298efc15333005b9320b07464f06bc3c084":()=>f.z,"400addb0ef2d99d42eabe890f969a2b5a864caafcf":()=>j.F,"400d51d12215216f88212560005beda5ad7620fb46":()=>h.$z,"404575294f71a7ea865a16ef72c6a4c90a6516112c":()=>i.K9,"40666a72ba7136ed91a114ab4f47e7f9d4bc0daca3":()=>e.nY,"40939ebfea7436d72cf3d1e0af94f840b0bc73bb3c":()=>h.MU,"409b688b5a310bae92c1556c0243fee7a15cadb469":()=>f.u,"40d75f616a66027d5730682fe19f1910b8e73402bf":()=>e.nC,"40e44a93ef40a332fb1aaff074a7a7dec71ed51937":()=>i.rg,"600252a190752f43aa43643959677019accdba5c83":()=>e.L4,"6051e3107875786292470bca9b46ee55d3d1ce7bcf":()=>e.T$,"6085fdd91989747bc73031c5e5853218191211cf79":()=>h.Tc,"609b01efeb645bf501dbb883d7f01e8afab86a8c6e":()=>e.OQ,"60cd50d727cdcf3c21d895644f3535576faaf265ed":()=>j.o,"7091b99a789641a5b42e215c5d4df0e01635ea4d0c":()=>e.h$,"709dd87102de8878abef1db8ab3bf995bfed3ba357":()=>i.Ik,"78aa2f0aa9b7272a731bab5e297ecdda045a5f8e9d":()=>e.g3});var e=c(13415),f=c(3890),g=c(50995),h=c(15754),i=c(78645),j=c(61279),k=a([e,h,i]);[e,h,i]=k.then?(await k)():k,d()}catch(a){d(a)}})},71152:a=>{"use strict";a.exports=require("esbuild")},73024:a=>{"use strict";a.exports=require("node:fs")},73136:a=>{"use strict";a.exports=require("node:url")},75919:a=>{"use strict";a.exports=require("node:worker_threads")},76760:a=>{"use strict";a.exports=require("node:path")},77598:a=>{"use strict";a.exports=require("node:crypto")},78474:a=>{"use strict";a.exports=require("node:events")},78645:(a,b,c)=>{"use strict";c.a(a,async(a,d)=>{try{c.d(b,{Ik:()=>n,K9:()=>m,rg:()=>o});var e=c(73745);c(66493);var f=c(73024),g=c(65326),h=c(53905),i=c(50108),j=c(36017),k=c(63781),l=a([i]);async function m(a){try{let b=await f.promises.stat(a).catch(()=>null);if(!b||!b.isDirectory())return{ok:!1,error:`Not a directory: ${a}`};let c=await (0,h._S)(a);return(0,g.revalidatePath)("/"),{ok:!0,id:c.id}}catch(a){return{ok:!1,error:p(a)}}}async function n(a,b,c=!1){try{let d=await (0,j.M)(),e=d.assignments.analyze,f="claude-code"===e.harness||"codex"===e.harness?e.harness:void 0;return await (0,i.E)(a,{scaffoldOnly:c,language:d.language,...f?{harness:f}:{},...f?{model:e.model}:{}}),c||await (0,h.Qu)(b),(0,g.revalidatePath)("/"),(0,g.revalidatePath)(`/roots/${b}`),{ok:!0}}catch(a){return{ok:!1,error:p(a)}}}async function o(a){try{return await (0,h.L7)(a),(0,g.revalidatePath)("/"),{ok:!0}}catch(a){return{ok:!1,error:p(a)}}}function p(a){if(a instanceof Error){try{let b=JSON.parse(a.message);if(Array.isArray(b))return b.map(a=>"object"==typeof a&&null!==a&&"message"in a?String(a.message):String(a)).join("; ")}catch{}return a.message}return String(a)}i=(l.then?(await l)():l)[0],(0,k.D)([m,n,o]),(0,e.A)(m,"404575294f71a7ea865a16ef72c6a4c90a6516112c",null),(0,e.A)(n,"709dd87102de8878abef1db8ab3bf995bfed3ba357",null),(0,e.A)(o,"40e44a93ef40a332fb1aaff074a7a7dec71ed51937",null),d()}catch(a){d(a)}})},78724:(a,b,c)=>{"use strict";c.d(b,{A:()=>d});let d=(0,c(42557).A)("ChevronUp",[["path",{d:"m18 15-6-6-6 6",key:"153udz"}]])},79428:a=>{"use strict";a.exports=require("buffer")},79646:a=>{"use strict";a.exports=require("child_process")},79734:(a,b,c)=>{"use strict";c.d(b,{D:()=>j,z:()=>i});var d=c(73024),e=c(76760),f=c.n(e),g=c(879),h=c(54287);async function i(a){let b=f().resolve(a.root),c=f().resolve(a.scope),d=f().relative(b,c);if(d.startsWith(".."))throw Error(`Scope ${c} is outside root ${b}`);let e=d?(0,h.x9)(b,d):f().join(b,h.fW),i=[];for await(let a of(0,g.G)(c))"."!==a.rel&&(a.isDir||i.push(a.rel));return{root:b,scope:c,reflexScope:e,files:i}}async function j(a){let b=f().join(a,h.KZ);try{await d.promises.access(b);return}catch{}await d.promises.writeFile(b,"# .reflexignore — gitignore syntax\n# Patterns listed here are excluded from Reflex's analysis and watchers.\n\nnode_modules/\ndist/\nbuild/\n.venv/\n__pycache__/\n*.log\n","utf8")}},81654:(a,b,c)=>{"use strict";c.d(b,{DirectoryPicker:()=>B});var d=c(64173),e=c(17240),f=c(87671);let g=(0,c(42557).A)("House",[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}]]);var h=c(63351),i=c(78724),j=c(51348),k=c(61636),l=c(62261),m=c(66979),n=c(58405),o=c(58507),p=c(98463),q=c(44052),r=c(20583),s=c(31041),t=c(47071),u=c(27456),v=c(68394),w=c(3265);let x=(0,w.createServerReference)("404575294f71a7ea865a16ef72c6a4c90a6516112c",w.callServer,void 0,w.findSourceMapURL,"addRootAction");var y=c(88724);let z=(0,w.createServerReference)("400addb0ef2d99d42eabe890f969a2b5a864caafcf",w.callServer,void 0,w.findSourceMapURL,"browseAction"),A=(0,w.createServerReference)("60cd50d727cdcf3c21d895644f3535576faaf265ed",w.callServer,void 0,w.findSourceMapURL,"createDirectoryAction");function B({initialPath:a}){let[b,c]=(0,e.useState)(a),[n,o]=(0,e.useState)(a),[p,w]=(0,e.useState)(null),[B,D]=(0,e.useState)([]),[H,I]=(0,e.useState)(a),[J,K]=(0,e.useState)(!1),[L,M]=(0,e.useTransition)(),[N,O]=(0,e.useTransition)(),[P,Q]=(0,e.useState)(!1),[R,S]=(0,e.useState)(""),[T,U]=(0,e.useTransition)(),V=(0,f.useRouter)(),W=a=>{M(async()=>{let b=await z(a);if(!b.ok)return void q.oR.error(b.error??"Failed to browse");c(b.path),o(b.path),w(b.parent),I(b.path),D(b.entries.filter(a=>a.isDir).map(a=>E(a.name,a.absPath,a.hidden)))})},X=async a=>{let b=function a(b,c){for(let d of b){if(d.absPath===c)return d;if(d.expanded){let b=a(d.children,c);if(b)return b}}return null}(B,a);if(!b)return;if(b.expanded)return void D(b=>F(b,a,a=>({...a,expanded:!1})));if(b.loaded)return void D(b=>F(b,a,a=>({...a,expanded:!0})));D(b=>F(b,a,a=>({...a,loading:!0})));let c=await z(a);if(!c.ok){q.oR.error(c.error??"Failed to browse"),D(b=>F(b,a,a=>({...a,loading:!1})));return}let d=c.entries.filter(a=>a.isDir).map(a=>E(a.name,a.absPath,a.hidden));D(b=>F(b,a,a=>({...a,loading:!1,loaded:!0,expanded:!0,children:d})))},Y=async a=>{if(a===b){let b=await z(a);b.ok&&D(b.entries.filter(a=>a.isDir).map(a=>E(a.name,a.absPath,a.hidden)));return}let c=await z(a);if(!c.ok)return;let d=c.entries.filter(a=>a.isDir).map(a=>E(a.name,a.absPath,a.hidden));D(b=>F(b,a,a=>({...a,children:d,loaded:!0,expanded:!0})))};return(0,d.jsxs)(s.Zp,{children:[(0,d.jsxs)(s.aR,{children:[(0,d.jsxs)(s.ZB,{className:"flex items-center justify-between gap-4",children:[(0,d.jsx)("span",{children:"Browse"}),(0,d.jsxs)(r.$,{variant:"ghost",size:"sm",onClick:()=>W(a),disabled:L,children:[(0,d.jsx)(g,{className:"mr-1 h-4 w-4"})," Home"]})]}),(0,d.jsxs)("form",{className:"flex gap-2 mt-2",onSubmit:a=>{a.preventDefault(),W(n)},children:[(0,d.jsx)(t.p,{value:n,onChange:a=>o(a.target.value),placeholder:"/absolute/path",className:"font-mono text-xs"}),(0,d.jsx)(r.$,{type:"submit",variant:"secondary",disabled:L,children:(0,d.jsx)(h.A,{className:`h-4 w-4 ${L?"animate-spin":""}`})})]})]}),(0,d.jsx)(v.Separator,{}),(0,d.jsx)(s.Wu,{className:"px-2 py-2",children:(0,d.jsxs)(u.F,{className:"h-[460px]",children:[(0,d.jsxs)("div",{className:"px-2 py-1 flex items-center gap-2",children:[(0,d.jsxs)(r.$,{variant:"ghost",size:"sm",disabled:!p||L,onClick:()=>p&&W(p),className:"h-8",children:[(0,d.jsx)(i.A,{className:"mr-1 h-4 w-4"})," Up"]}),(0,d.jsxs)("button",{type:"button",onClick:()=>I(b),className:`flex-1 flex items-center gap-2 px-2 py-1 text-sm rounded-md hover:bg-accent ${H===b?"bg-accent":""}`,title:b,children:[(0,d.jsx)(j.A,{className:"h-4 w-4 text-muted-foreground shrink-0"}),(0,d.jsx)("span",{className:"truncate font-mono text-xs",children:"."}),(0,d.jsxs)("span",{className:"text-muted-foreground text-[11px] truncate",children:["(",G(b),")"]})]}),(0,d.jsxs)(r.$,{variant:"ghost",size:"sm",disabled:L||T,onClick:()=>{Q(a=>!a),S("")},className:"h-8",title:`Создать папку в ${G(H)}`,children:[(0,d.jsx)(k.A,{className:"mr-1 h-4 w-4"})," Создать"]}),(0,d.jsxs)("label",{className:"flex items-center gap-1 text-xs text-muted-foreground select-none",children:[(0,d.jsx)("input",{type:"checkbox",checked:J,onChange:a=>K(a.target.checked)}),"hidden"]})]}),P&&(0,d.jsxs)("form",{className:"px-2 pb-2 flex items-center gap-2",onSubmit:a=>{a.preventDefault();let b=R.trim();b&&U(async()=>{let a=await A(H,b);if(!a.ok)return void q.oR.error(a.error??"Не удалось создать папку");q.oR.success("Папка создана"),Q(!1),S(""),await Y(H),I(a.path)})},children:[(0,d.jsxs)("span",{className:"text-[11px] text-muted-foreground font-mono truncate max-w-[40%]",children:[H,"/"]}),(0,d.jsx)(t.p,{autoFocus:!0,value:R,onChange:a=>S(a.target.value),placeholder:"имя новой папки",className:"h-8 text-sm flex-1",disabled:T,onKeyDown:a=>{"Escape"===a.key&&(a.preventDefault(),Q(!1),S(""))}}),(0,d.jsxs)(r.$,{type:"submit",size:"sm",disabled:T||!R.trim(),className:"h-8",children:[T?(0,d.jsx)(l.A,{className:"mr-1 h-3.5 w-3.5 animate-spin"}):(0,d.jsx)(k.A,{className:"mr-1 h-3.5 w-3.5"}),"Создать"]}),(0,d.jsx)(r.$,{type:"button",size:"sm",variant:"ghost",onClick:()=>{Q(!1),S("")},className:"h-8",children:(0,d.jsx)(m.A,{className:"h-3.5 w-3.5"})})]}),(0,d.jsx)(v.Separator,{className:"my-1"}),L?(0,d.jsxs)("div",{className:"flex items-center justify-center py-10 text-sm text-muted-foreground",children:[(0,d.jsx)(l.A,{className:"mr-2 h-4 w-4 animate-spin"})," Loading…"]}):0===B.length?(0,d.jsx)("div",{className:"px-4 py-10 text-center text-sm text-muted-foreground",children:"No subdirectories."}):(0,d.jsx)(C,{nodes:B,selected:H,onSelect:I,onToggle:X,showHidden:J,depth:0})]})}),(0,d.jsx)(v.Separator,{}),(0,d.jsxs)(s.wL,{className:"flex items-center justify-between gap-4",children:[(0,d.jsxs)("div",{className:"text-xs text-muted-foreground font-mono truncate",children:["Selected: ",H]}),(0,d.jsx)(r.$,{onClick:()=>{O(async()=>{let a=await x(H);if(!a.ok)return void q.oR.error(a.error??"Failed to add");q.oR.success("Directory added"),(0,y.$d)(y.Zi.rootsChanged),V.push(`/roots/${a.id}`)})},disabled:N||L,children:N?(0,d.jsxs)(d.Fragment,{children:[(0,d.jsx)(l.A,{className:"mr-2 h-4 w-4 animate-spin"})," Adding…"]}):"Add this directory"})]})]})}function C({nodes:a,selected:b,onSelect:c,onToggle:e,showHidden:f,depth:g}){return(0,d.jsx)("ul",{children:a.filter(a=>f||!a.hidden).map(a=>(0,d.jsxs)("li",{children:[(0,d.jsx)(D,{node:a,depth:g,selected:b,onSelect:c,onToggle:e}),a.expanded&&a.children.length>0&&(0,d.jsx)(C,{nodes:a.children,selected:b,onSelect:c,onToggle:e,showHidden:f,depth:g+1}),a.expanded&&a.loaded&&0===a.children.length&&(0,d.jsx)("div",{className:"text-xs text-muted-foreground italic px-2 py-1",style:{paddingLeft:16*g+44},children:"(empty)"})]},a.absPath))})}function D({node:a,depth:b,selected:c,onSelect:e,onToggle:f}){let g=c===a.absPath;return(0,d.jsxs)("div",{className:`group flex items-center gap-1 pr-2 py-1 rounded-md hover:bg-accent/60 ${g?"bg-accent":""}`,style:{paddingLeft:16*b+4},children:[(0,d.jsx)("button",{type:"button",onClick:()=>f(a.absPath),className:"h-6 w-6 flex items-center justify-center text-muted-foreground hover:text-foreground shrink-0","aria-label":a.expanded?"Collapse":"Expand",children:a.loading?(0,d.jsx)(l.A,{className:"h-3.5 w-3.5 animate-spin"}):a.expanded?(0,d.jsx)(n.A,{className:"h-3.5 w-3.5"}):(0,d.jsx)(o.A,{className:"h-3.5 w-3.5"})}),(0,d.jsxs)("button",{type:"button",onClick:()=>e(a.absPath),onDoubleClick:()=>f(a.absPath),className:"flex-1 min-w-0 flex items-center gap-2 text-left text-sm",children:[a.expanded?(0,d.jsx)(j.A,{className:"h-4 w-4 text-muted-foreground shrink-0"}):(0,d.jsx)(p.A,{className:"h-4 w-4 text-muted-foreground shrink-0"}),(0,d.jsx)("span",{className:`truncate ${a.hidden?"opacity-60":""}`,children:a.name})]})]})}function E(a,b,c){return{name:a,absPath:b,hidden:c,loaded:!1,loading:!1,expanded:!1,children:[]}}function F(a,b,c){return a.map(a=>a.absPath===b?c(a):a.children.length>0?{...a,children:F(a.children,b,c)}:a)}function G(a){let b=a.split("/").filter(Boolean);return b[b.length-1]??a}},84913:(a,b,c)=>{"use strict";c.d(b,{$:()=>i});var d=c(63003);c(34750);var e=c(86209),f=c(65715),g=c(26290);let h=(0,e.F)("inline-flex shrink-0 items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/90",destructive:"bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40",outline:"border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",secondary:"bg-secondary text-secondary-foreground hover:bg-secondary/80",ghost:"hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-9 px-4 py-2 has-[>svg]:px-3",xs:"h-6 gap-1 rounded-md px-2 text-xs has-[>svg]:px-1.5 [&_svg:not([class*='size-'])]:size-3",sm:"h-8 gap-1.5 rounded-md px-3 has-[>svg]:px-2.5",lg:"h-10 rounded-md px-6 has-[>svg]:px-4",icon:"size-9","icon-xs":"size-6 rounded-md [&_svg:not([class*='size-'])]:size-3","icon-sm":"size-8","icon-lg":"size-10"}},defaultVariants:{variant:"default",size:"default"}});function i({className:a,variant:b="default",size:c="default",asChild:e=!1,...i}){let j=e?f.bL:"button";return(0,d.jsx)(j,{"data-slot":"button","data-variant":b,"data-size":c,className:(0,g.cn)(h({variant:b,size:c,className:a})),...i})}},86439:a=>{"use strict";a.exports=require("next/dist/shared/lib/no-fallback-error.external")},87628:(a,b,c)=>{"use strict";c.d(b,{DirectoryPicker:()=>d});let d=(0,c(54491).registerClientReference)(function(){throw Error("Attempted to call DirectoryPicker() from the server but DirectoryPicker is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"/home/runner/work/reflex-agent/reflex-agent/app/roots/new/_components/directory-picker.tsx","DirectoryPicker")},99257:(a,b,c)=>{"use strict";c.r(b),c.d(b,{default:()=>l});var d=c(63003),e=c(20594),f=c.n(e),g=c(17596),h=c(84913),i=c(87628);c(73024),c(76760);var j=c(48161),k=c.n(j);async function l(){return(0,d.jsxs)("main",{className:"mx-auto w-full max-w-4xl flex-1 px-6 py-10",children:[(0,d.jsxs)("header",{className:"mb-8",children:[(0,d.jsx)(h.$,{asChild:!0,variant:"ghost",size:"sm",className:"mb-2 -ml-3",children:(0,d.jsxs)(f(),{href:"/",children:[(0,d.jsx)(g.A,{className:"mr-1 h-4 w-4"})," Back"]})}),(0,d.jsx)("h1",{className:"text-3xl font-semibold tracking-tight",children:"Add a directory"}),(0,d.jsx)("p",{className:"text-muted-foreground mt-1",children:"Pick the directory you want Reflex to index. After it's registered, you can run the initial analysis from the directory page."})]}),(0,d.jsx)(i.DirectoryPicker,{initialPath:k().homedir()})]})}}};var b=require("../../../webpack-runtime.js");b.C(a);var c=b.X(0,[9803,2356,9739,5895,8056,133],()=>b(b.s=38141));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/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs","../../../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js","../../../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/gen-mapping/package.json","../../../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/sourcemap-codec","../../../../../node_modules/.pnpm/@jridgewell+gen-mapping@0.3.13/node_modules/@jridgewell/trace-mapping","../../../../../node_modules/.pnpm/@jridgewell+remapping@2.3.5/node_modules/@jridgewell/gen-mapping","../../../../../node_modules/.pnpm/@jridgewell+remapping@2.3.5/node_modules/@jridgewell/remapping/dist/remapping.mjs","../../../../../node_modules/.pnpm/@jridgewell+remapping@2.3.5/node_modules/@jridgewell/remapping/dist/remapping.umd.js","../../../../../node_modules/.pnpm/@jridgewell+remapping@2.3.5/node_modules/@jridgewell/remapping/package.json","../../../../../node_modules/.pnpm/@jridgewell+remapping@2.3.5/node_modules/@jridgewell/trace-mapping","../../../../../node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs","../../../../../node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js","../../../../../node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri/package.json","../../../../../node_modules/.pnpm/@jridgewell+sourcemap-codec@1.5.5/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs","../../../../../node_modules/.pnpm/@jridgewell+sourcemap-codec@1.5.5/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js","../../../../../node_modules/.pnpm/@jridgewell+sourcemap-codec@1.5.5/node_modules/@jridgewell/sourcemap-codec/package.json","../../../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/resolve-uri","../../../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/sourcemap-codec","../../../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs","../../../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js","../../../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.31/node_modules/@jridgewell/trace-mapping/package.json","../../../../../node_modules/.pnpm/@sec-ant+readable-stream@0.4.1/node_modules/@sec-ant/readable-stream/dist/ponyfill/asyncIterator.js","../../../../../node_modules/.pnpm/@sec-ant+readable-stream@0.4.1/node_modules/@sec-ant/readable-stream/dist/ponyfill/fromAnyIterable.js","../../../../../node_modules/.pnpm/@sec-ant+readable-stream@0.4.1/node_modules/@sec-ant/readable-stream/dist/ponyfill/index.js","../../../../../node_modules/.pnpm/@sec-ant+readable-stream@0.4.1/node_modules/@sec-ant/readable-stream/package.json","../../../../../node_modules/.pnpm/@sindresorhus+merge-streams@4.0.0/node_modules/@sindresorhus/merge-streams/index.js","../../../../../node_modules/.pnpm/@sindresorhus+merge-streams@4.0.0/node_modules/@sindresorhus/merge-streams/package.json","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/@jridgewell/remapping","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/@tailwindcss/node/dist/index.mjs","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/@tailwindcss/node/package.json","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/enhanced-resolve","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/jiti","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/lightningcss","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/magic-string","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/source-map-js","../../../../../node_modules/.pnpm/@tailwindcss+node@4.3.0/node_modules/tailwindcss","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/index.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/enoent.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/parse.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/escape.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/readShebang.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/lib/util/resolveCommand.js","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/cross-spawn/package.json","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/path-key","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/shebang-command","../../../../../node_modules/.pnpm/cross-spawn@7.0.6/node_modules/which","../../../../../node_modules/.pnpm/detect-libc@2.1.2/node_modules/detect-libc/lib/detect-libc.js","../../../../../node_modules/.pnpm/detect-libc@2.1.2/node_modules/detect-libc/lib/elf.js","../../../../../node_modules/.pnpm/detect-libc@2.1.2/node_modules/detect-libc/lib/filesystem.js","../../../../../node_modules/.pnpm/detect-libc@2.1.2/node_modules/detect-libc/lib/process.js","../../../../../node_modules/.pnpm/detect-libc@2.1.2/node_modules/detect-libc/package.json","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/AliasFieldPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/AliasPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/AliasUtils.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/AppendPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/CachedInputFileSystem.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/CloneBasenamePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ConditionalPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/DescriptionFilePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/DescriptionFileUtils.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/DirectoryExistsPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ExportsFieldPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ExtensionAliasPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/FileExistsPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ImportsFieldPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/JoinRequestPartPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/JoinRequestPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/LogInfoPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/MainFieldPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ModulesInHierarchicalDirectoriesPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ModulesInRootPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ModulesUtils.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/NextPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ParsePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/PnpPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/Resolver.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ResolverFactory.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/RestrictionsPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/ResultPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/RootsPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/SelfReferencePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/SymlinkPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/SyncAsyncFileSystemDecorator.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/TryNextPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/TsconfigPathsPlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/UnsafeCachePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/UseFilePlugin.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/createInnerContext.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/forEachBail.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/getInnerRequest.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/getPaths.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/index.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/entrypoints.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/fs.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/identifier.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/memoize.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/path.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/lib/util/strip-json-comments.js","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/enhanced-resolve/package.json","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/graceful-fs","../../../../../node_modules/.pnpm/enhanced-resolve@5.21.3/node_modules/tapable","../../../../../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/execa@9.6.1/node_modules/@sindresorhus/merge-streams","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/cross-spawn","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/index.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/command.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/cwd.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/encoding-option.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/escape.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/fd-options.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/file-url.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/options.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/shell.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/arguments/specific.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/add.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/concurrent.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/duplex.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/iterable.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/readable.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/shared.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/convert/writable.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/contents.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/input-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/iterate.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/max-buffer.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/output-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/output-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/pipeline.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/io/strip-newline.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/array.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/buffer-messages.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/forward.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/get-each.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/get-one.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/graceful.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/incoming.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/ipc-input.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/methods.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/outgoing.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/reference.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/send.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/strict.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/ipc/validation.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/bind.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/command.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/create.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/main-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/main-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/node.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/parameters.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/promise.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/script.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/methods/template.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/abort.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/pipe-arguments.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/sequence.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/setup.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/streaming.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/pipe/throw.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/all-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/all-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/exit-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/exit-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/stdio.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/wait-stream.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/resolve/wait-subprocess.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/duration.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/early-error.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/final-error.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/message.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/reject.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/return/result.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/direction.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/duplicate.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/handle-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/handle-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/handle.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/input-option.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/native.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/stdio-option.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/stdio/type.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/cancel.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/cleanup.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/graceful.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/kill.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/signal.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/terminate/timeout.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/encoding-transform.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/generator.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/normalize.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/object-mode.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/run-async.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/run-sync.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/split.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/transform/validate.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/utils/abort-signal.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/utils/deferred.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/utils/max-listeners.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/utils/standard-stream.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/utils/uint-array.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/complete.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/custom.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/default.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/error.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/info.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/ipc.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/log.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/output.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/start.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/lib/verbose/values.js","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/execa/package.json","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/figures","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/get-stream","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/human-signals","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/is-plain-obj","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/is-stream","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/npm-run-path","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/pretty-ms","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/signal-exit","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/strip-final-newline","../../../../../node_modules/.pnpm/execa@9.6.1/node_modules/yoctocolors","../../../../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/index.js","../../../../../node_modules/.pnpm/figures@6.1.0/node_modules/figures/package.json","../../../../../node_modules/.pnpm/figures@6.1.0/node_modules/is-unicode-supported","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/@sec-ant/readable-stream","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/package.json","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/array-buffer.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/array.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/buffer.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/contents.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/exports.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/index.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/stream.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/string.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/get-stream/source/utils.js","../../../../../node_modules/.pnpm/get-stream@9.0.1/node_modules/is-stream","../../../../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/clone.js","../../../../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js","../../../../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/legacy-streams.js","../../../../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/package.json","../../../../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/polyfills.js","../../../../../node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals/build/src/core.js","../../../../../node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals/build/src/main.js","../../../../../node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals/build/src/realtime.js","../../../../../node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals/build/src/signals.js","../../../../../node_modules/.pnpm/human-signals@8.0.1/node_modules/human-signals/package.json","../../../../../node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","../../../../../node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/package.json","../../../../../node_modules/.pnpm/is-stream@4.0.1/node_modules/is-stream/index.js","../../../../../node_modules/.pnpm/is-stream@4.0.1/node_modules/is-stream/package.json","../../../../../node_modules/.pnpm/is-unicode-supported@2.1.0/node_modules/is-unicode-supported/index.js","../../../../../node_modules/.pnpm/is-unicode-supported@2.1.0/node_modules/is-unicode-supported/package.json","../../../../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/index.js","../../../../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/mode.js","../../../../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/package.json","../../../../../node_modules/.pnpm/isexe@2.0.0/node_modules/isexe/windows.js","../../../../../node_modules/.pnpm/jiti@2.7.0/node_modules/jiti/dist/babel.cjs","../../../../../node_modules/.pnpm/jiti@2.7.0/node_modules/jiti/dist/jiti.cjs","../../../../../node_modules/.pnpm/jiti@2.7.0/node_modules/jiti/lib/jiti.cjs","../../../../../node_modules/.pnpm/jiti@2.7.0/node_modules/jiti/lib/jiti.mjs","../../../../../node_modules/.pnpm/jiti@2.7.0/node_modules/jiti/package.json","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/detect-libc","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/browserslistToTargets.js","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/composeVisitors.js","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/flags.js","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/index.js","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/node/index.mjs","../../../../../node_modules/.pnpm/lightningcss@1.32.0/node_modules/lightningcss/package.json","../../../../../node_modules/.pnpm/magic-string@0.30.21/node_modules/@jridgewell/sourcemap-codec","../../../../../node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string/dist/magic-string.cjs.js","../../../../../node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string/dist/magic-string.es.mjs","../../../../../node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string/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/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/router/utils/html-bots.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/is-bot.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/.pnpm/npm-run-path@6.0.0/node_modules/npm-run-path/index.js","../../../../../node_modules/.pnpm/npm-run-path@6.0.0/node_modules/npm-run-path/package.json","../../../../../node_modules/.pnpm/npm-run-path@6.0.0/node_modules/path-key","../../../../../node_modules/.pnpm/npm-run-path@6.0.0/node_modules/unicorn-magic","../../../../../node_modules/.pnpm/parse-ms@4.0.0/node_modules/parse-ms/index.js","../../../../../node_modules/.pnpm/parse-ms@4.0.0/node_modules/parse-ms/package.json","../../../../../node_modules/.pnpm/path-key@3.1.1/node_modules/path-key/index.js","../../../../../node_modules/.pnpm/path-key@3.1.1/node_modules/path-key/package.json","../../../../../node_modules/.pnpm/path-key@4.0.0/node_modules/path-key/index.js","../../../../../node_modules/.pnpm/path-key@4.0.0/node_modules/path-key/package.json","../../../../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/parse-ms","../../../../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/index.js","../../../../../node_modules/.pnpm/pretty-ms@9.3.0/node_modules/pretty-ms/package.json","../../../../../node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command/index.js","../../../../../node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-command/package.json","../../../../../node_modules/.pnpm/shebang-command@2.0.0/node_modules/shebang-regex","../../../../../node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex/index.js","../../../../../node_modules/.pnpm/shebang-regex@3.0.0/node_modules/shebang-regex/package.json","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/cjs/index.js","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/cjs/package.json","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/cjs/signals.js","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/mjs/index.js","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/mjs/package.json","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/dist/mjs/signals.js","../../../../../node_modules/.pnpm/signal-exit@4.1.0/node_modules/signal-exit/package.json","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/array-set.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64-vlq.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/base64.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/binary-search.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/mapping-list.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/quick-sort.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-map-consumer.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-map-generator.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/source-node.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/lib/util.js","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/package.json","../../../../../node_modules/.pnpm/source-map-js@1.2.1/node_modules/source-map-js/source-map.js","../../../../../node_modules/.pnpm/strip-final-newline@4.0.0/node_modules/strip-final-newline/index.js","../../../../../node_modules/.pnpm/strip-final-newline@4.0.0/node_modules/strip-final-newline/package.json","../../../../../node_modules/.pnpm/tailwindcss@4.3.0/node_modules/tailwindcss/dist/chunk-4VTQOGRC.mjs","../../../../../node_modules/.pnpm/tailwindcss@4.3.0/node_modules/tailwindcss/dist/chunk-TDNFF6A4.mjs","../../../../../node_modules/.pnpm/tailwindcss@4.3.0/node_modules/tailwindcss/dist/chunk-X4GG3EDV.mjs","../../../../../node_modules/.pnpm/tailwindcss@4.3.0/node_modules/tailwindcss/dist/lib.mjs","../../../../../node_modules/.pnpm/tailwindcss@4.3.0/node_modules/tailwindcss/package.json","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncParallelBailHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncParallelHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncSeriesBailHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncSeriesHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncSeriesLoopHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/AsyncSeriesWaterfallHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/Hook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/HookCodeFactory.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/HookMap.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/MultiHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/SyncBailHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/SyncHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/SyncLoopHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/SyncWaterfallHook.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/lib/index.js","../../../../../node_modules/.pnpm/tapable@2.3.3/node_modules/tapable/package.json","../../../../../node_modules/.pnpm/unicorn-magic@0.3.0/node_modules/unicorn-magic/default.js","../../../../../node_modules/.pnpm/unicorn-magic@0.3.0/node_modules/unicorn-magic/node.js","../../../../../node_modules/.pnpm/unicorn-magic@0.3.0/node_modules/unicorn-magic/package.json","../../../../../node_modules/.pnpm/which@2.0.2/node_modules/isexe","../../../../../node_modules/.pnpm/which@2.0.2/node_modules/which/package.json","../../../../../node_modules/.pnpm/which@2.0.2/node_modules/which/which.js","../../../../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/base.js","../../../../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/index.js","../../../../../node_modules/.pnpm/yoctocolors@2.1.2/node_modules/yoctocolors/package.json","../../../../../node_modules/@tailwindcss/node","../../../../../node_modules/esbuild","../../../../../node_modules/execa","../../../../../node_modules/next","../../../../../package.json","../../../../package.json","../../../chunks/1223.js","../../../chunks/133.js","../../../chunks/1888.js","../../../chunks/1961.js","../../../chunks/2356.js","../../../chunks/4031.js","../../../chunks/4066.js","../../../chunks/5087.js","../../../chunks/569.js","../../../chunks/5895.js","../../../chunks/7508.js","../../../chunks/8056.js","../../../chunks/8262.js","../../../chunks/8514.js","../../../chunks/9098.js","../../../chunks/94.js","../../../chunks/9739.js","../../../chunks/9803.js","../../../chunks/9861.js","../../../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -0,0 +1 @@
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/roots/new/page"]={"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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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","9429","static/chunks/app/roots/new/page-534769dce46d0d29.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":["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9429","static/chunks/app/roots/new/page-534769dce46d0d29.js"],"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/roots/new/page":[]},"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 @@
1
+ <!DOCTYPE html><!--p8t15rbWhT5Rrs5fOXWZ6--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/87e01f779d555d04.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-2e8cca5826414cc6.js"/><script src="/_next/static/chunks/6fe292aa-7126ff9d6732e864.js" async=""></script><script src="/_next/static/chunks/146-ccee3b26755b68c8.js" async=""></script><script src="/_next/static/chunks/main-app-ebe67847147d19aa.js" async=""></script><script src="/_next/static/chunks/4400-cdb1f7913ae34e09.js" async=""></script><script src="/_next/static/chunks/1217-407174d9b164a499.js" async=""></script><script src="/_next/static/chunks/3335-5647a38ab2cfa88d.js" async=""></script><script src="/_next/static/chunks/5097-f07f6aeee3f60a33.js" async=""></script><script src="/_next/static/chunks/app/roots/new/page-534769dce46d0d29.js" async=""></script><script src="/_next/static/chunks/9045-731ff0865352dd95.js" async=""></script><script src="/_next/static/chunks/app/layout-c7a35075cfbfa3e3.js" async=""></script><title>Reflex</title><meta name="description" content="Local-first knowledge base built by an agent."/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div class="h-screen flex"><aside class="w-72 shrink-0 border-r bg-muted/30 flex flex-col"><div class="px-4 py-4 flex items-center gap-2 border-b"><span class="reflex-gradient inline-flex h-7 w-7 items-center justify-center rounded-lg text-white shadow-sm"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-sparkles h-4 w-4"><path d="M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z"></path><path d="M20 3v4"></path><path d="M22 5h-4"></path><path d="M4 17v2"></path><path d="M5 18H3"></path></svg></span><div class="leading-tight"><a class="text-sm font-semibold tracking-tight hover:underline" href="/">Reflex</a><div class="text-[10px] uppercase tracking-wider text-muted-foreground">knowledge base</div></div></div><div dir="ltr" data-slot="scroll-area" class="relative flex-1" style="position:relative;--radix-scroll-area-corner-width:0px;--radix-scroll-area-corner-height:0px"><style>[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}</style><div data-radix-scroll-area-viewport="" data-slot="scroll-area-viewport" class="size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1" style="overflow-x:hidden;overflow-y:hidden"><div style="min-width:100%;display:table"><nav class="px-2 pt-3 pb-6"><div class="px-2 mb-1 text-[10px] uppercase tracking-wider text-muted-foreground">Пространства</div><div class="px-2 py-3 text-xs text-muted-foreground">Пока пусто.</div><div class="mt-2 px-2"><a data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 h-7 w-full justify-start text-xs" href="/roots/new"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-plus mr-1 h-3.5 w-3.5"><path d="M12 10v6"></path><path d="M9 13h6"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg> Добавить пространство</a></div></nav></div></div></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px"></div><div class="px-2 py-2 space-y-0.5"><a data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 w-full justify-start" href="/utilities"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-boxes mr-2 h-4 w-4"><path d="M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z"></path><path d="m7 16.5-4.74-2.85"></path><path d="m7 16.5 5-3"></path><path d="M7 16.5v5.17"></path><path d="M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z"></path><path d="m17 16.5-5-3"></path><path d="m17 16.5 4.74-2.85"></path><path d="M17 16.5v5.17"></path><path d="M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z"></path><path d="M12 8 7.26 5.15"></path><path d="m12 8 4.74-2.85"></path><path d="M12 13.5V8"></path></svg> Мини-приложения</a><a data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 w-full justify-start" href="/audit"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-search mr-2 h-4 w-4"><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"></path><path d="m9 18-1.5-1.5"></path><circle cx="5" cy="14" r="3"></circle></svg> Аудит</a><a data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 w-full justify-start" href="/settings"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-settings mr-2 h-4 w-4"><path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"></path><circle cx="12" cy="12" r="3"></circle></svg> Settings</a></div></aside><main class="flex-1 min-w-0 flex flex-col"><main class="mx-auto w-full max-w-4xl flex-1 px-6 py-10"><header class="mb-8"><a data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 mb-2 -ml-3" href="/"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-left mr-1 h-4 w-4"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg> Back</a><h1 class="text-3xl font-semibold tracking-tight">Add a directory</h1><p class="text-muted-foreground mt-1">Pick the directory you want Reflex to index. After it&#x27;s registered, you can run the initial analysis from the directory page.</p></header><div data-slot="card" class="flex flex-col gap-6 rounded-xl border bg-card py-6 text-card-foreground shadow-sm"><div data-slot="card-header" class="@container/card-header grid auto-rows-min grid-rows-[auto_auto] items-start gap-2 px-6 has-data-[slot=card-action]:grid-cols-[1fr_auto] [.border-b]:pb-6"><div data-slot="card-title" class="leading-none font-semibold flex items-center justify-between gap-4"><span>Browse</span><button data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-house mr-1 h-4 w-4"><path d="M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"></path><path d="M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"></path></svg> Home</button></div><form class="flex gap-2 mt-2"><input data-slot="input" class="h-9 w-full min-w-0 rounded-md border border-input bg-transparent px-3 py-1 shadow-xs transition-[color,box-shadow] outline-none selection:bg-primary selection:text-primary-foreground file:inline-flex file:h-7 file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm dark:bg-input/30 focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 font-mono text-xs" placeholder="/absolute/path" value="/home/runner"/><button data-slot="button" data-variant="secondary" data-size="default" class="inline-flex shrink-0 items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 bg-secondary text-secondary-foreground hover:bg-secondary/80 h-9 px-4 py-2 has-[&gt;svg]:px-3" type="submit"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-refresh-cw h-4 w-4"><path d="M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"></path><path d="M21 3v5h-5"></path><path d="M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"></path><path d="M8 16H3v5"></path></svg></button></form></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px"></div><div data-slot="card-content" class="px-2 py-2"><div dir="ltr" data-slot="scroll-area" class="relative h-[460px]" style="position:relative;--radix-scroll-area-corner-width:0px;--radix-scroll-area-corner-height:0px"><style>[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}</style><div data-radix-scroll-area-viewport="" data-slot="scroll-area-viewport" class="size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1" style="overflow-x:hidden;overflow-y:hidden"><div style="min-width:100%;display:table"><div class="px-2 py-1 flex items-center gap-2"><button data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 h-8" disabled=""><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-up mr-1 h-4 w-4"><path d="m18 15-6-6-6 6"></path></svg> Up</button><button type="button" class="flex-1 flex items-center gap-2 px-2 py-1 text-sm rounded-md hover:bg-accent bg-accent" title="/home/runner"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-4 w-4 text-muted-foreground shrink-0"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg><span class="truncate font-mono text-xs">.</span><span class="text-muted-foreground text-[11px] truncate">(<!-- -->runner<!-- -->)</span></button><button data-slot="button" data-variant="ghost" data-size="sm" class="inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 gap-1.5 rounded-md px-3 has-[&gt;svg]:px-2.5 h-8" title="Создать папку в runner"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-plus mr-1 h-4 w-4"><path d="M12 10v6"></path><path d="M9 13h6"></path><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"></path></svg> Создать</button><label class="flex items-center gap-1 text-xs text-muted-foreground select-none"><input type="checkbox"/>hidden</label></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px my-1"></div><div class="px-4 py-10 text-center text-sm text-muted-foreground">No subdirectories.</div></div></div></div></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px"></div><div data-slot="card-footer" class="px-6 [.border-t]:pt-6 flex items-center justify-between gap-4"><div class="text-xs text-muted-foreground font-mono truncate">Selected: <!-- -->/home/runner</div><button data-slot="button" data-variant="default" data-size="default" class="inline-flex shrink-0 items-center justify-center gap-2 rounded-md text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 bg-primary text-primary-foreground hover:bg-primary/90 h-9 px-4 py-2 has-[&gt;svg]:px-3">Add this directory</button></div></div></main><!--$--><!--/$--></main></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-2e8cca5826414cc6.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n3:I[26957,[],\"\"]\n4:I[97369,[],\"\"]\n6:I[21968,[],\"OutletBoundary\"]\n8:I[33705,[],\"AsyncMetadataOutlet\"]\na:I[21968,[],\"ViewportBoundary\"]\nc:I[21968,[],\"MetadataBoundary\"]\nd:\"$Sreact.suspense\"\nf:I[6287,[],\"\"]\n:HL[\"/_next/static/css/87e01f779d555d04.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"p8t15rbWhT5Rrs5fOXWZ6\",\"p\":\"\",\"c\":[\"\",\"roots\",\"new\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"roots\",{\"children\":[\"new\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/87e01f779d555d04.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],\"$L2\"]}],{\"children\":[\"roots\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"new\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[\"$L5\",null,[\"$\",\"$L6\",null,{\"children\":[\"$L7\",[\"$\",\"$L8\",null,{\"promise\":\"$@9\"}]]}]]}],{},null,false]},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$La\",null,{\"children\":\"$Lb\"}],null],[\"$\",\"$Lc\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$d\",null,{\"fallback\":null,\"children\":\"$Le\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"10:I[54400,[\"4400\",\"static/chunks/4400-cdb1f7913ae34e09.js\",\"1217\",\"static/chunks/1217-407174d9b164a499.js\",\"3335\",\"static/chunks/3335-5647a38ab2cfa88d.js\",\"5097\",\"static/chunks/5097-f07f6aeee3f60a33.js\",\"9429\",\"static/chunks/app/roots/new/page-534769dce46d0d29.js\"],\"\"]\n11:I[41372,[\"4400\",\"static/chunks/4400-cdb1f7913ae34e09.js\",\"1217\",\"static/chunks/1217-407174d9b164a499.js\",\"3335\",\"static/chunks/3335-5647a38ab2cfa88d.js\",\"5097\",\"static/chunks/5097-f07f6aeee3f60a33.js\",\"9429\",\"static/chunks/app/roots/new/page-534769dce46d0d29.js\"],\"DirectoryPicker\"]\n"])</script><script>self.__next_f.push([1,"5:[\"$\",\"main\",null,{\"className\":\"mx-auto w-full max-w-4xl flex-1 px-6 py-10\",\"children\":[[\"$\",\"header\",null,{\"className\":\"mb-8\",\"children\":[[\"$\",\"$L10\",null,{\"href\":\"/\",\"children\":[[\"$\",\"svg\",null,{\"ref\":\"$undefined\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"width\":24,\"height\":24,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":2,\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"className\":\"lucide lucide-arrow-left mr-1 h-4 w-4\",\"children\":[[\"$\",\"path\",\"1l729n\",{\"d\":\"m12 19-7-7 7-7\"}],[\"$\",\"path\",\"x3x0zl\",{\"d\":\"M19 12H5\"}],\"$undefined\"]}],\" Back\"],\"data-slot\":\"button\",\"data-variant\":\"ghost\",\"data-size\":\"sm\",\"className\":\"inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [\u0026_svg]:pointer-events-none [\u0026_svg]:shrink-0 [\u0026_svg:not([class*='size-'])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[\u003esvg]:px-2.5 mb-2 -ml-3\",\"ref\":null}],[\"$\",\"h1\",null,{\"className\":\"text-3xl font-semibold tracking-tight\",\"children\":\"Add a directory\"}],[\"$\",\"p\",null,{\"className\":\"text-muted-foreground mt-1\",\"children\":\"Pick the directory you want Reflex to index. After it's registered, you can run the initial analysis from the directory page.\"}]]}],[\"$\",\"$L11\",null,{\"initialPath\":\"/home/runner\"}]]}]\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n7:null\n"])</script><script>self.__next_f.push([1,"9:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Reflex\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Local-first knowledge base built by an agent.\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"e:\"$9:metadata\"\n"])</script><script>self.__next_f.push([1,"12:I[41287,[\"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\"],\"AppSidebar\"]\n13:I[43450,[\"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\"],\"Toaster\"]\n"])</script><script>self.__next_f.push([1,"2:[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"children\":[[\"$\",\"div\",null,{\"className\":\"h-screen flex\",\"children\":[[\"$\",\"$L12\",null,{\"initialRoots\":[]}],[\"$\",\"main\",null,{\"className\":\"flex-1 min-w-0 flex flex-col\",\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}],[\"$\",\"$L13\",null,{\"richColors\":true,\"closeButton\":true}]]}]}]\n"])</script></body></html>
@@ -0,0 +1,7 @@
1
+ {
2
+ "headers": {
3
+ "x-nextjs-stale-time": "300",
4
+ "x-nextjs-prerender": "1",
5
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/roots/layout,_N_T_/roots/new/layout,_N_T_/roots/new/page,_N_T_/roots/new"
6
+ }
7
+ }
@@ -0,0 +1,21 @@
1
+ 1:"$Sreact.fragment"
2
+ 3:I[26957,[],""]
3
+ 4:I[97369,[],""]
4
+ 6:I[21968,[],"OutletBoundary"]
5
+ 8:I[33705,[],"AsyncMetadataOutlet"]
6
+ a:I[21968,[],"ViewportBoundary"]
7
+ c:I[21968,[],"MetadataBoundary"]
8
+ d:"$Sreact.suspense"
9
+ f:I[6287,[],""]
10
+ :HL["/_next/static/css/87e01f779d555d04.css","style"]
11
+ 0:{"P":null,"b":"p8t15rbWhT5Rrs5fOXWZ6","p":"","c":["","roots","new"],"i":false,"f":[[["",{"children":["roots",{"children":["new",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/87e01f779d555d04.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],"$L2"]}],{"children":["roots",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["new",["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":["$L5",null,["$","$L6",null,{"children":["$L7",["$","$L8",null,{"promise":"$@9"}]]}]]}],{},null,false]},null,false]},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$La",null,{"children":"$Lb"}],null],["$","$Lc",null,{"children":["$","div",null,{"hidden":true,"children":["$","$d",null,{"fallback":null,"children":"$Le"}]}]}]]}],false]],"m":"$undefined","G":["$f",[]],"s":false,"S":true}
12
+ 10:I[54400,["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9429","static/chunks/app/roots/new/page-534769dce46d0d29.js"],""]
13
+ 11:I[41372,["4400","static/chunks/4400-cdb1f7913ae34e09.js","1217","static/chunks/1217-407174d9b164a499.js","3335","static/chunks/3335-5647a38ab2cfa88d.js","5097","static/chunks/5097-f07f6aeee3f60a33.js","9429","static/chunks/app/roots/new/page-534769dce46d0d29.js"],"DirectoryPicker"]
14
+ 5:["$","main",null,{"className":"mx-auto w-full max-w-4xl flex-1 px-6 py-10","children":[["$","header",null,{"className":"mb-8","children":[["$","$L10",null,{"href":"/","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-arrow-left mr-1 h-4 w-4","children":[["$","path","1l729n",{"d":"m12 19-7-7 7-7"}],["$","path","x3x0zl",{"d":"M19 12H5"}],"$undefined"]}]," Back"],"data-slot":"button","data-variant":"ghost","data-size":"sm","className":"inline-flex shrink-0 items-center justify-center text-sm font-medium whitespace-nowrap transition-all outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-8 gap-1.5 rounded-md px-3 has-[>svg]:px-2.5 mb-2 -ml-3","ref":null}],["$","h1",null,{"className":"text-3xl font-semibold tracking-tight","children":"Add a directory"}],["$","p",null,{"className":"text-muted-foreground mt-1","children":"Pick the directory you want Reflex to index. After it's registered, you can run the initial analysis from the directory page."}]]}],["$","$L11",null,{"initialPath":"/home/runner"}]]}]
15
+ b:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
16
+ 7:null
17
+ 9:{"metadata":[["$","title","0",{"children":"Reflex"}],["$","meta","1",{"name":"description","content":"Local-first knowledge base built by an agent."}]],"error":null,"digest":"$undefined"}
18
+ e:"$9:metadata"
19
+ 12:I[41287,["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"],"AppSidebar"]
20
+ 13:I[43450,["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"],"Toaster"]
21
+ 2:["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"children":[["$","div",null,{"className":"h-screen flex","children":[["$","$L12",null,{"initialRoots":[]}],["$","main",null,{"className":"flex-1 min-w-0 flex flex-col","children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}],["$","$L13",null,{"richColors":true,"closeButton":true}]]}]}]