@codeyam/codeyam-cli 0.1.11 → 0.1.13

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 (214) hide show
  1. package/analyzer-template/.build-info.json +8 -8
  2. package/analyzer-template/log.txt +3 -3
  3. package/analyzer-template/package.json +2 -2
  4. package/analyzer-template/packages/ai/package.json +1 -1
  5. package/analyzer-template/packages/aws/package.json +1 -1
  6. package/analyzer-template/packages/database/package.json +1 -1
  7. package/analyzer-template/packages/database/src/lib/kysely/tables/editorScenariosTable.ts +42 -16
  8. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts +3 -1
  9. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts.map +1 -1
  10. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js +44 -16
  11. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -1
  12. package/codeyam-cli/src/cli.js +9 -0
  13. package/codeyam-cli/src/cli.js.map +1 -1
  14. package/codeyam-cli/src/commands/__tests__/editor.isolateArgs.test.js +51 -0
  15. package/codeyam-cli/src/commands/__tests__/editor.isolateArgs.test.js.map +1 -0
  16. package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js +11 -0
  17. package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js.map +1 -1
  18. package/codeyam-cli/src/commands/editor.js +1360 -201
  19. package/codeyam-cli/src/commands/editor.js.map +1 -1
  20. package/codeyam-cli/src/commands/editorIsolateArgs.js +25 -0
  21. package/codeyam-cli/src/commands/editorIsolateArgs.js.map +1 -0
  22. package/codeyam-cli/src/commands/telemetry.js +37 -0
  23. package/codeyam-cli/src/commands/telemetry.js.map +1 -0
  24. package/codeyam-cli/src/utils/__tests__/editorAudit.test.js +893 -1
  25. package/codeyam-cli/src/utils/__tests__/editorAudit.test.js.map +1 -1
  26. package/codeyam-cli/src/utils/__tests__/editorBroadcastViewport.test.js +76 -0
  27. package/codeyam-cli/src/utils/__tests__/editorBroadcastViewport.test.js.map +1 -0
  28. package/codeyam-cli/src/utils/__tests__/editorDeleteScenario.test.js +100 -0
  29. package/codeyam-cli/src/utils/__tests__/editorDeleteScenario.test.js.map +1 -0
  30. package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js +76 -3
  31. package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js.map +1 -1
  32. package/codeyam-cli/src/utils/__tests__/editorEntityHelpers.test.js +261 -0
  33. package/codeyam-cli/src/utils/__tests__/editorEntityHelpers.test.js.map +1 -0
  34. package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js +75 -1
  35. package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js.map +1 -1
  36. package/codeyam-cli/src/utils/__tests__/editorMigration.test.js +435 -0
  37. package/codeyam-cli/src/utils/__tests__/editorMigration.test.js.map +1 -0
  38. package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js +441 -17
  39. package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js.map +1 -1
  40. package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js +67 -0
  41. package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js.map +1 -1
  42. package/codeyam-cli/src/utils/__tests__/editorSeedAdapterPrismaValidation.test.js +143 -0
  43. package/codeyam-cli/src/utils/__tests__/editorSeedAdapterPrismaValidation.test.js.map +1 -0
  44. package/codeyam-cli/src/utils/__tests__/editorSessionFilter.test.js +66 -0
  45. package/codeyam-cli/src/utils/__tests__/editorSessionFilter.test.js.map +1 -0
  46. package/codeyam-cli/src/utils/__tests__/editorShouldRevalidate.test.js +53 -0
  47. package/codeyam-cli/src/utils/__tests__/editorShouldRevalidate.test.js.map +1 -0
  48. package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js +67 -9
  49. package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js.map +1 -1
  50. package/codeyam-cli/src/utils/__tests__/routePatternMatching.test.js +118 -0
  51. package/codeyam-cli/src/utils/__tests__/routePatternMatching.test.js.map +1 -0
  52. package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js +40 -1
  53. package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js.map +1 -1
  54. package/codeyam-cli/src/utils/__tests__/telemetry.test.js +159 -0
  55. package/codeyam-cli/src/utils/__tests__/telemetry.test.js.map +1 -0
  56. package/codeyam-cli/src/utils/analysisRunner.js +3 -1
  57. package/codeyam-cli/src/utils/analysisRunner.js.map +1 -1
  58. package/codeyam-cli/src/utils/editorAudit.js +145 -0
  59. package/codeyam-cli/src/utils/editorAudit.js.map +1 -1
  60. package/codeyam-cli/src/utils/editorBroadcastViewport.js +26 -0
  61. package/codeyam-cli/src/utils/editorBroadcastViewport.js.map +1 -0
  62. package/codeyam-cli/src/utils/editorDeleteScenario.js +67 -0
  63. package/codeyam-cli/src/utils/editorDeleteScenario.js.map +1 -0
  64. package/codeyam-cli/src/utils/editorEntityChangeStatus.js +13 -7
  65. package/codeyam-cli/src/utils/editorEntityChangeStatus.js.map +1 -1
  66. package/codeyam-cli/src/utils/editorEntityHelpers.js +129 -0
  67. package/codeyam-cli/src/utils/editorEntityHelpers.js.map +1 -0
  68. package/codeyam-cli/src/utils/editorLoaderHelpers.js +40 -1
  69. package/codeyam-cli/src/utils/editorLoaderHelpers.js.map +1 -1
  70. package/codeyam-cli/src/utils/editorMigration.js +224 -0
  71. package/codeyam-cli/src/utils/editorMigration.js.map +1 -0
  72. package/codeyam-cli/src/utils/editorScenarios.js +163 -2
  73. package/codeyam-cli/src/utils/editorScenarios.js.map +1 -1
  74. package/codeyam-cli/src/utils/editorSeedAdapter.js +253 -4
  75. package/codeyam-cli/src/utils/editorSeedAdapter.js.map +1 -1
  76. package/codeyam-cli/src/utils/editorShouldRevalidate.js +21 -0
  77. package/codeyam-cli/src/utils/editorShouldRevalidate.js.map +1 -0
  78. package/codeyam-cli/src/utils/entityChangeStatus.js +19 -2
  79. package/codeyam-cli/src/utils/entityChangeStatus.js.map +1 -1
  80. package/codeyam-cli/src/utils/entityChangeStatus.server.js +7 -3
  81. package/codeyam-cli/src/utils/entityChangeStatus.server.js.map +1 -1
  82. package/codeyam-cli/src/utils/fileWatcher.js +38 -0
  83. package/codeyam-cli/src/utils/fileWatcher.js.map +1 -1
  84. package/codeyam-cli/src/utils/install-skills.js +9 -0
  85. package/codeyam-cli/src/utils/install-skills.js.map +1 -1
  86. package/codeyam-cli/src/utils/routePatternMatching.js +129 -0
  87. package/codeyam-cli/src/utils/routePatternMatching.js.map +1 -0
  88. package/codeyam-cli/src/utils/scenarioCoverage.js +8 -9
  89. package/codeyam-cli/src/utils/scenarioCoverage.js.map +1 -1
  90. package/codeyam-cli/src/utils/scenariosManifest.js +18 -10
  91. package/codeyam-cli/src/utils/scenariosManifest.js.map +1 -1
  92. package/codeyam-cli/src/utils/telemetry.js +106 -0
  93. package/codeyam-cli/src/utils/telemetry.js.map +1 -0
  94. package/codeyam-cli/src/utils/telemetryMiddleware.js +22 -0
  95. package/codeyam-cli/src/utils/telemetryMiddleware.js.map +1 -0
  96. package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js +35 -0
  97. package/codeyam-cli/src/webserver/__tests__/buildPtyEnv.test.js.map +1 -0
  98. package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js +61 -0
  99. package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js.map +1 -1
  100. package/codeyam-cli/src/webserver/app/types/editor.js +8 -0
  101. package/codeyam-cli/src/webserver/app/types/editor.js.map +1 -0
  102. package/codeyam-cli/src/webserver/backgroundServer.js +18 -4
  103. package/codeyam-cli/src/webserver/backgroundServer.js.map +1 -1
  104. package/codeyam-cli/src/webserver/build/client/assets/CopyButton-CzTDWkF2.js +1 -0
  105. package/codeyam-cli/src/webserver/build/client/assets/{EntityItem-BcgbViKV.js → EntityItem-BFbq6iFk.js} +3 -3
  106. package/codeyam-cli/src/webserver/build/client/assets/EntityTypeBadge-CQgyEGV-.js +1 -0
  107. package/codeyam-cli/src/webserver/build/client/assets/{EntityTypeIcon-CQIG2qda.js → EntityTypeIcon-B6OMi58N.js} +1 -1
  108. package/codeyam-cli/src/webserver/build/client/assets/InlineSpinner-DuYodzo1.js +1 -0
  109. package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-CXo9EeCl.js +25 -0
  110. package/codeyam-cli/src/webserver/build/client/assets/LibraryFunctionPreview-DYCNb2It.js +3 -0
  111. package/codeyam-cli/src/webserver/build/client/assets/{LoadingDots-BU_OAEMP.js → LoadingDots-By5zI316.js} +1 -1
  112. package/codeyam-cli/src/webserver/build/client/assets/{LogViewer-ceAyBX-H.js → LogViewer-CZgY3sxX.js} +3 -3
  113. package/codeyam-cli/src/webserver/build/client/assets/{ReportIssueModal-BzHcG7SE.js → ReportIssueModal-CnYYwRDw.js} +2 -2
  114. package/codeyam-cli/src/webserver/build/client/assets/SafeScreenshot-CDoF7ZpU.js +1 -0
  115. package/codeyam-cli/src/webserver/build/client/assets/{ScenarioViewer-TSD3C211.js → ScenarioViewer-DrnfvaLL.js} +3 -3
  116. package/codeyam-cli/src/webserver/build/client/assets/Spinner-Df3UCi8k.js +34 -0
  117. package/codeyam-cli/src/webserver/build/client/assets/TruncatedFilePath-CK7-NaPZ.js +1 -0
  118. package/codeyam-cli/src/webserver/build/client/assets/ViewportInspectBar-DRKR9T0U.js +1 -0
  119. package/codeyam-cli/src/webserver/build/client/assets/{_index-DLxKhri3.js → _index-ClR-g3tY.js} +2 -2
  120. package/codeyam-cli/src/webserver/build/client/assets/{activity.(_tab)-BcY3q6nt.js → activity.(_tab)-DTH6ydEA.js} +3 -3
  121. package/codeyam-cli/src/webserver/build/client/assets/{addon-web-links-Duc5hnl7.js → addon-web-links-74hnHF59.js} +1 -1
  122. package/codeyam-cli/src/webserver/build/client/assets/{agent-transcripts-Bni3iiUj.js → agent-transcripts-B8CYhCO9.js} +3 -3
  123. package/codeyam-cli/src/webserver/build/client/assets/api.editor-rename-scenario-l0sNRNKZ.js +1 -0
  124. package/codeyam-cli/src/webserver/build/client/assets/api.editor-save-seed-state-l0sNRNKZ.js +1 -0
  125. package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-prompt-l0sNRNKZ.js +1 -0
  126. package/codeyam-cli/src/webserver/build/client/assets/{book-open-BYOypzCa.js → book-open-CLaoh4ac.js} +1 -1
  127. package/codeyam-cli/src/webserver/build/client/assets/{chevron-down-C_Pmso5S.js → chevron-down-BZ2DZxbW.js} +1 -1
  128. package/codeyam-cli/src/webserver/build/client/assets/{chunk-JZWAC4HX-C4pqxYJB.js → chunk-JZWAC4HX-BBXArFPl.js} +13 -21
  129. package/codeyam-cli/src/webserver/build/client/assets/{circle-check-BVMi9VA5.js → circle-check-CT4unAk-.js} +1 -1
  130. package/codeyam-cli/src/webserver/build/client/assets/{copy-n2FB0_Sw.js → copy-zK0B6Nu-.js} +1 -1
  131. package/codeyam-cli/src/webserver/build/client/assets/{createLucideIcon-CC6AbExI.js → createLucideIcon-DJB0YQJL.js} +1 -1
  132. package/codeyam-cli/src/webserver/build/client/assets/dev.empty-CkXFP_i-.js +1 -0
  133. package/codeyam-cli/src/webserver/build/client/assets/editor._tab-DPw7NZHc.js +1 -0
  134. package/codeyam-cli/src/webserver/build/client/assets/editor.entity.(_sha)-CjC3_6JI.js +58 -0
  135. package/codeyam-cli/src/webserver/build/client/assets/editorPreview-DBa7T2FK.js +41 -0
  136. package/codeyam-cli/src/webserver/build/client/assets/{entity._sha._-DwCV5__E.js → entity._sha._-BqAN7hyG.js} +2 -2
  137. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.dev-BOi8kpwd.js +6 -0
  138. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.fullscreen-Dg1NhIms.js +6 -0
  139. package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-CJX6kkkV.js +6 -0
  140. package/codeyam-cli/src/webserver/build/client/assets/{entity._sha_.edit._scenarioId-BMvVHNXU.js → entity._sha_.edit._scenarioId-BhVjZhKg.js} +2 -2
  141. package/codeyam-cli/src/webserver/build/client/assets/{entry.client-DTvKq3TY.js → entry.client-_gzKltPN.js} +6 -6
  142. package/codeyam-cli/src/webserver/build/client/assets/fileTableUtils-Daa96Fr1.js +1 -0
  143. package/codeyam-cli/src/webserver/build/client/assets/files-CV_17tZS.js +1 -0
  144. package/codeyam-cli/src/webserver/build/client/assets/git-D-YXmMbR.js +1 -0
  145. package/codeyam-cli/src/webserver/build/client/assets/globals-DRvOjyO3.css +1 -0
  146. package/codeyam-cli/src/webserver/build/client/assets/{index-yHOVb4rc.js → index-Blo6EK8G.js} +1 -1
  147. package/codeyam-cli/src/webserver/build/client/assets/{index-10oVnAAH.js → index-BsX0F-9C.js} +1 -1
  148. package/codeyam-cli/src/webserver/build/client/assets/{index-BcvgDzbZ.js → index-CCrgCshv.js} +1 -1
  149. package/codeyam-cli/src/webserver/build/client/assets/jsx-runtime-D_zvdyIk.js +9 -0
  150. package/codeyam-cli/src/webserver/build/client/assets/labs-Byazq8Pv.js +1 -0
  151. package/codeyam-cli/src/webserver/build/client/assets/{loader-circle-DaAZ_H2w.js → loader-circle-DVQ0oHR7.js} +1 -1
  152. package/codeyam-cli/src/webserver/build/client/assets/manifest-75b1b319.js +1 -0
  153. package/codeyam-cli/src/webserver/build/client/assets/{memory-9gnxSZlb.js → memory-b-VmA2Vj.js} +2 -2
  154. package/codeyam-cli/src/webserver/build/client/assets/{pause-f5-1lKBt.js → pause-DGcndCAa.js} +1 -1
  155. package/codeyam-cli/src/webserver/build/client/assets/{root-DBjt6o04.js → root-F-k2uYj5.js} +15 -15
  156. package/codeyam-cli/src/webserver/build/client/assets/{search-Di64LWVb.js → search-C0Uw0bcK.js} +1 -1
  157. package/codeyam-cli/src/webserver/build/client/assets/settings-OoNgHIfW.js +1 -0
  158. package/codeyam-cli/src/webserver/build/client/assets/simulations-Bcemfu8a.js +1 -0
  159. package/codeyam-cli/src/webserver/build/client/assets/{terminal-Br7MOqts.js → terminal-BgMmG7R9.js} +1 -1
  160. package/codeyam-cli/src/webserver/build/client/assets/{triangle-alert-BLdiCuG-.js → triangle-alert-Cs87hJYK.js} +1 -1
  161. package/codeyam-cli/src/webserver/build/client/assets/useCustomSizes-BR3Rs7JY.js +1 -0
  162. package/codeyam-cli/src/webserver/build/client/assets/{useLastLogLine-C14nCb1q.js → useLastLogLine-BxxP_XF9.js} +1 -1
  163. package/codeyam-cli/src/webserver/build/client/assets/useReportContext-BermyNU5.js +1 -0
  164. package/codeyam-cli/src/webserver/build/client/assets/useToast-a_QN_W9_.js +1 -0
  165. package/codeyam-cli/src/webserver/build/server/assets/analysisRunner-lv2ooewK.js +13 -0
  166. package/codeyam-cli/src/webserver/build/server/assets/{index-DsZjKspK.js → index-Im3Smyei.js} +1 -1
  167. package/codeyam-cli/src/webserver/build/server/assets/init-BjuAFKGM.js +10 -0
  168. package/codeyam-cli/src/webserver/build/server/assets/progress-CHTtrxFG.js +1 -0
  169. package/codeyam-cli/src/webserver/build/server/assets/server-build-CNjF0B9B.js +551 -0
  170. package/codeyam-cli/src/webserver/build/server/index.js +1 -1
  171. package/codeyam-cli/src/webserver/build-info.json +5 -5
  172. package/codeyam-cli/src/webserver/editorProxy.js +112 -13
  173. package/codeyam-cli/src/webserver/editorProxy.js.map +1 -1
  174. package/codeyam-cli/src/webserver/mockStateEvents.js +28 -0
  175. package/codeyam-cli/src/webserver/mockStateEvents.js.map +1 -0
  176. package/codeyam-cli/src/webserver/server.js +41 -0
  177. package/codeyam-cli/src/webserver/server.js.map +1 -1
  178. package/codeyam-cli/src/webserver/terminalServer.js +74 -8
  179. package/codeyam-cli/src/webserver/terminalServer.js.map +1 -1
  180. package/codeyam-cli/templates/editor-step-hook.py +104 -20
  181. package/codeyam-cli/templates/nextjs-prisma-sqlite/seed-adapter.ts +42 -7
  182. package/codeyam-cli/templates/seed-adapters/supabase.ts +282 -0
  183. package/codeyam-cli/templates/skills/codeyam-editor/SKILL.md +62 -0
  184. package/package.json +2 -1
  185. package/packages/database/src/lib/kysely/tables/editorScenariosTable.js +44 -16
  186. package/packages/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -1
  187. package/codeyam-cli/src/webserver/build/client/assets/CopyButton-BPXZwM4t.js +0 -1
  188. package/codeyam-cli/src/webserver/build/client/assets/EntityTypeBadge-g3saevPb.js +0 -1
  189. package/codeyam-cli/src/webserver/build/client/assets/InlineSpinner-Bu6c6aDe.js +0 -1
  190. package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-DYFW3lDD.js +0 -25
  191. package/codeyam-cli/src/webserver/build/client/assets/LibraryFunctionPreview-DLeucoVX.js +0 -3
  192. package/codeyam-cli/src/webserver/build/client/assets/SafeScreenshot-BED4B6sP.js +0 -1
  193. package/codeyam-cli/src/webserver/build/client/assets/Spinner-Bb5uFQ5V.js +0 -34
  194. package/codeyam-cli/src/webserver/build/client/assets/TruncatedFilePath-C8OKAR5x.js +0 -1
  195. package/codeyam-cli/src/webserver/build/client/assets/ViewportInspectBar-oAf2Kqsf.js +0 -1
  196. package/codeyam-cli/src/webserver/build/client/assets/dev.empty-Ii3inc0_.js +0 -1
  197. package/codeyam-cli/src/webserver/build/client/assets/editor-16o0AIFV.js +0 -15
  198. package/codeyam-cli/src/webserver/build/client/assets/editorPreview-7Uga8I59.js +0 -41
  199. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.dev-BwKcai0j.js +0 -6
  200. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.fullscreen-CHMiAog3.js +0 -6
  201. package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-p9hhkjJM.js +0 -6
  202. package/codeyam-cli/src/webserver/build/client/assets/fileTableUtils-cPo8LiG3.js +0 -1
  203. package/codeyam-cli/src/webserver/build/client/assets/files-BZrlFE1F.js +0 -1
  204. package/codeyam-cli/src/webserver/build/client/assets/git-DdZcvjGh.js +0 -1
  205. package/codeyam-cli/src/webserver/build/client/assets/globals-CQPR0pFR.css +0 -1
  206. package/codeyam-cli/src/webserver/build/client/assets/labs-Zk7ryIM1.js +0 -1
  207. package/codeyam-cli/src/webserver/build/client/assets/manifest-76e7b62c.js +0 -1
  208. package/codeyam-cli/src/webserver/build/client/assets/settings-0OrEMU6J.js +0 -1
  209. package/codeyam-cli/src/webserver/build/client/assets/simulations-DWT-CvLy.js +0 -1
  210. package/codeyam-cli/src/webserver/build/client/assets/useCustomSizes-C-_hOl_g.js +0 -1
  211. package/codeyam-cli/src/webserver/build/client/assets/useReportContext-O-jkvSPx.js +0 -1
  212. package/codeyam-cli/src/webserver/build/client/assets/useToast-9FIWuYfK.js +0 -1
  213. package/codeyam-cli/src/webserver/build/server/assets/init-DdqKD2p4.js +0 -10
  214. package/codeyam-cli/src/webserver/build/server/assets/server-build-CKKeWtVK.js +0 -444
@@ -1,444 +0,0 @@
1
- var Wc=Object.defineProperty;var So=e=>{throw TypeError(e)};var Jc=(e,t,r)=>t in e?Wc(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var Yn=(e,t,r)=>Jc(e,typeof t!="symbol"?t+"":t,r),Hc=(e,t,r)=>t.has(e)||So("Cannot "+r);var ko=(e,t,r)=>(Hc(e,t,"read from private field"),r?r.call(e):t.get(e)),Eo=(e,t,r)=>t.has(e)?So("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,r);import{jsx as n,jsxs as d,Fragment as pe}from"react/jsx-runtime";import{PassThrough as Vc}from"node:stream";import{createReadableStreamFromReadable as Gc}from"@react-router/node";import{ServerRouter as qc,useFetcher as Le,useLocation as ss,useNavigate as Nt,Link as fe,UNSAFE_withComponentProps as Ye,Meta as Kc,Links as Qc,ScrollRestoration as Zc,Scripts as Xc,useLoaderData as He,useRevalidator as Ct,Outlet as ed,data as Z,useSearchParams as kn,useRouteLoaderData as td,useParams as Ui,useActionData as nd,redirect as _o}from"react-router";import{isbot as rd}from"isbot";import{renderToPipeableStream as sd}from"react-dom/server";import{useState as M,useEffect as te,useCallback as le,createContext as Ea,useContext as as,useRef as be,useMemo as oe,forwardRef as ad,useImperativeHandle as od,Component as id}from"react";import{Settings as Ao,CheckCircle2 as _a,Bug as Wi,AlertTriangle as zr,Check as lt,Copy as pt,Loader2 as mt,PencilRuler as ld,HomeIcon as cd,GitCommitIcon as Po,File as dd,RefreshCw as ud,BookOpen as Br,FlaskConical as md,SettingsIcon as pd,PanelsTopLeftIcon as hd,ComponentIcon as fd,FileText as jo,Code as To,Box as gd,List as yd,BarChart3 as xd,Tag as bd,Image as er,Code2 as Ji,Activity as Rs,ChevronDown as it,CircleEqual as wd,ArrowLeft as vd,Terminal as Yr,Search as sr,ChevronLeft as Nd,ChevronRight as zt,Save as Cd,MessageSquare as Sd,Pause as Hi,ListTodo as kd,PauseCircle as Ed,FileCode as Ur,GripVertical as _d,Ban as Ad,CheckCircle as Pd,FolderOpen as jd,CodeXml as Td,Zap as Md,Pencil as $d,Trash2 as Id,X as En,Folder as Vi,Info as sa,Plus as Aa,Eye as Rd,FolderTree as Dd,ChevronsUpDown as Gi,ChevronsDownUp as qi}from"lucide-react";import"fetch-retry";import Od from"better-sqlite3";import{Pool as Ld}from"pg";import*as q from"fs";import ge,{existsSync as Rt,readdirSync as Fd,rmSync as Ds}from"fs";import*as B from"path";import X,{join as Mo}from"path";import{OperationNodeTransformer as zd,sql as et,Kysely as Ki,ParseJSONResultsPlugin as Bd,SqliteDialect as Yd,PostgresDialect as Ud}from"kysely";import*as Wd from"kysely/helpers/sqlite";import*as Jd from"kysely/helpers/postgres";import Be from"typescript";import*as Ne from"fs/promises";import Se,{writeFile as Gn,readFile as aa,mkdir as Hd}from"fs/promises";import*as Pa from"os";import oa from"os";import Vd from"prompts";import Wr from"chalk";import*as Gd from"crypto";import ar,{randomUUID as ja,createHmac as qd}from"crypto";import{execSync as Pe,spawn as St,exec as Ta}from"child_process";import{fileURLToPath as os}from"url";import{promisify as Ma}from"util";import Kd from"dotenv";import Qd,{EventEmitter as is}from"events";import{v4 as Zd}from"uuid";import $a from"http";import Qi from"net";import{WebSocket as Ia}from"ws";import"node-pty";import Xd from"openai";import eu from"p-queue";import $o from"p-retry";import{DynamoDBClient as ls,PutItemCommand as tu}from"@aws-sdk/client-dynamodb";import{LRUCache as Ra}from"lru-cache";import"pluralize";import"piscina";import nu from"json5";import{marshall as ru}from"@aws-sdk/util-dynamodb";import su from"v8";import{Prism as au}from"react-syntax-highlighter";import{vscDarkPlus as ou}from"react-syntax-highlighter/dist/cjs/styles/prism/index.js";import{randomUUID as iu}from"node:crypto";import{minimatch as ia}from"minimatch";import lu from"react-markdown";import cu from"remark-gfm";import du from"react-diff-viewer-continued";const Zi=5e3;function uu(e,t,r,s,a){return e.method.toUpperCase()==="HEAD"?new Response(null,{status:t,headers:r}):new Promise((o,i)=>{let l=!1,c=e.headers.get("user-agent"),m=c&&rd(c)||s.isSpaMode?"onAllReady":"onShellReady",u=setTimeout(()=>h(),Zi+1e3);const{pipe:p,abort:h}=sd(n(qc,{context:s,url:e.url}),{[m](){l=!0;const f=new Vc({final(y){clearTimeout(u),u=void 0,y()}}),g=Gc(f);r.set("Content-Type","text/html"),p(f),o(new Response(g,{headers:r,status:t}))},onShellError(f){i(f)},onError(f){t=500,l&&console.error(f)}})})}const mu=Object.freeze(Object.defineProperty({__proto__:null,default:uu,streamTimeout:Zi},Symbol.toStringTag,{value:"Module"}));function pu({id:e,selected:t,onClick:r,icon:s,name:a}){const[o,i]=M(!1);te(()=>{i(!0)},[]);const l=le(()=>{r==null||r(e)},[r,e]);return d("button",{className:`
2
- w-full px-1.5 py-2 cursor-pointer focus:outline-none
3
- flex flex-col items-center justify-center gap-1 transition-colors
4
- ${t?"text-[#CBF3FA]":"text-[#568B94] hover:text-[#CBF3FA]"}
5
- `,onClick:l,children:[n("div",{className:`${t?"bg-[#CBF3FA] text-[#022A35]":""} w-9 h-9 rounded-lg flex items-center justify-center transition-colors`,children:o&&s}),n("span",{className:`text-[10px] font-normal text-center leading-tight ${t?"text-[#CBF3FA]":""}`,style:t?{color:"#CBF3FA !important"}:void 0,children:a})]})}const cs="/assets/cy-logo-cli-CCKUIm0S.svg";function hu(e){return e.scenarioName&&e.entityName?`${e.entityName} → "${e.scenarioName}"`:e.entityName?e.entityName:e.scenarioId?`Scenario: ${e.scenarioId.slice(0,8)}...`:e.entitySha?`Entity: ${e.entitySha.slice(0,8)}...`:"General feedback"}function fu({content:e,className:t=""}){const[r,s]=M(!1),a=le(()=>{navigator.clipboard.writeText(e).then(()=>{s(!0),setTimeout(()=>s(!1),2e3)}).catch(o=>{console.error("Failed to copy:",o)})},[e]);return n("button",{onClick:a,className:`cursor-pointer flex items-center gap-1 ${t}`,disabled:r,"aria-label":r?"Copied to clipboard":"Copy to clipboard",children:r?d(pe,{children:[n(lt,{size:14}),"Copied"]}):d(pe,{children:[n(pt,{size:14}),"Copy"]})})}function Xi({isOpen:e,onClose:t,context:r,defaultEmail:s="",screenshotDataUrl:a}){const[o,i]=M(""),[l,c]=M(s),[m,u]=M(!1),[p,h]=M(!1),[f,g]=M(null),[y,x]=M(null),b=Le(),w=b.state!=="idle",v=!!(r.scenarioId||r.analysisId),C=r.analysisId||r.scenarioId||"",A=()=>{const k=`/codeyam-diagnose ${C}`;return o.trim()?`${k} ${o.trim()}`:k};if(b.data&&!p&&!y){const k=b.data;k.success&&k.reportId?(h(!0),g(k.reportId)):k.error&&x(k.error)}const S=async()=>{x(null);const k=new FormData;if(k.append("issueType","other"),k.append("description",o),k.append("email",l),k.append("source",r.source),k.append("entitySha",r.entitySha||""),k.append("scenarioId",r.scenarioId||""),k.append("analysisId",r.analysisId||""),k.append("currentUrl",r.currentUrl),k.append("entityName",r.entityName||""),k.append("entityType",r.entityType||""),k.append("scenarioName",r.scenarioName||""),k.append("errorMessage",r.errorMessage||""),a)try{const T=await(await fetch(a)).blob();k.append("screenshot",T,"screenshot.jpg")}catch(j){console.error("Failed to convert screenshot:",j)}b.submit(k,{method:"post",action:"/api/generate-report",encType:"multipart/form-data"})},E=()=>{i(""),u(!1),h(!1),g(null),x(null),t()},N=k=>{k.key==="Escape"&&E()};return e?n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",onKeyDown:N,children:d("div",{className:"bg-white rounded-lg max-w-lg w-full p-6 shadow-xl max-h-[90vh] overflow-y-auto",children:[d("div",{className:"flex items-center justify-between mb-6",children:[d("div",{className:"flex items-center gap-3",children:[w?n("div",{className:"animate-spin",children:n(Ao,{size:24,style:{strokeWidth:1.5}})}):p?n(_a,{size:24,style:{color:"#10B981",strokeWidth:1.5}}):n(Wi,{size:24,style:{color:"#005C75",strokeWidth:1.5}}),n("h2",{className:"text-xl font-semibold text-gray-900",children:p?"Report Submitted":"Report Issue"})]}),n("button",{onClick:E,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),p?d("div",{children:[d("div",{className:"mb-6 p-4 bg-green-50 rounded-lg border border-green-200",children:[n("p",{className:"text-sm text-green-800 font-medium mb-1",children:"Thank you for your feedback!"}),d("p",{className:"text-xs text-green-700",children:["Report ID:"," ",n("code",{className:"bg-green-100 px-1 rounded",children:f})]})]}),n("p",{className:"text-sm text-gray-600 mb-6",children:"The CodeYam team will investigate and may reach out if you provided an email address."}),n("div",{className:"flex justify-end",children:n("button",{onClick:E,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer",children:"Done"})})]}):d("div",{children:[d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[d("div",{className:"flex items-center justify-between",children:[n("div",{className:"text-sm font-medium text-gray-900",title:`${r.source}${r.entitySha?` • Entity: ${r.entitySha}`:""}${r.scenarioId?` • Scenario: ${r.scenarioId}`:""}${r.analysisId?` • Analysis: ${r.analysisId}`:""}`,children:hu(r)}),n("button",{type:"button",onClick:()=>u(!m),className:"text-xs text-gray-500 hover:text-gray-700 underline cursor-pointer",children:m?"Hide":"Details"})]}),m&&d("div",{className:"mt-2 pt-2 border-t border-gray-200 text-xs text-gray-600 space-y-1 break-all",children:[d("div",{children:[n("span",{className:"text-gray-400",children:"Source:"})," ",r.source]}),d("div",{children:[n("span",{className:"text-gray-400",children:"URL:"})," ",r.currentUrl]}),r.entitySha&&d("div",{children:[n("span",{className:"text-gray-400",children:"Entity:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.entitySha})]}),r.scenarioId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Scenario:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.scenarioId})]}),r.analysisId&&d("div",{children:[n("span",{className:"text-gray-400",children:"Analysis:"})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:r.analysisId})]})]})]}),a&&d("div",{className:"mb-4 p-3 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-xs text-gray-500 mb-2",children:"Screenshot (will be included in report)"}),n("img",{src:a,alt:"Page screenshot",className:"w-full max-h-[150px] object-contain rounded border border-gray-300"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"description",className:"block text-sm font-medium text-gray-700 mb-2",children:"What happened?"}),n("textarea",{id:"description",value:o,onChange:k=>i(k.target.value),placeholder:"Optional: Describe what you expected vs what happened...",rows:3,className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] resize-none"})]}),v&&d(pe,{children:[d("div",{className:"mb-4 p-4 bg-purple-50 rounded-lg border border-purple-200",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("span",{className:"text-lg",children:"🔧"}),n("h3",{className:"text-sm font-semibold text-purple-900",children:"Diagnose & Fix (Recommended)"})]}),n("p",{className:"text-xs text-purple-700 mb-3",children:"Run this command in Claude Code to investigate the issue locally and potentially fix it. A detailed report will also be uploaded."}),d("div",{className:"relative",children:[n("div",{className:"bg-gray-800 text-gray-50 px-3 py-2.5 pr-20 rounded-md text-xs font-mono overflow-x-auto whitespace-nowrap",children:A()}),n(fu,{content:A(),className:"absolute top-1.5 right-2 px-2 py-1 bg-purple-600 text-white border-none rounded text-[11px] font-medium hover:bg-purple-700 transition-colors"})]})]}),d("div",{className:"relative my-5",children:[n("div",{className:"absolute inset-0 flex items-center",children:n("div",{className:"w-full border-t border-gray-300"})}),n("div",{className:"relative flex justify-center",children:n("span",{className:"bg-white px-3 text-xs text-gray-500 uppercase",children:"or"})})]})]}),d("div",{className:v?"opacity-75":"",children:[v&&d("div",{className:"flex items-center gap-2 mb-3",children:[n("span",{className:"text-lg",children:"📤"}),n("h3",{className:"text-sm font-semibold text-gray-700",children:"Quick Report"}),n("span",{className:"text-xs text-gray-500",children:"(won't investigate locally)"})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"email",className:"block text-sm font-medium text-gray-700 mb-2",children:"Your email"}),n("input",{id:"email",type:"email",value:l,onChange:k=>c(k.target.value),placeholder:"you@example.com",className:"w-full px-3 py-2 border border-gray-300 rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"})]}),d("div",{className:"mb-4 p-3 bg-amber-50 rounded-lg border border-amber-200 flex gap-2",children:[n(zr,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#D97706"}}),d("div",{className:"text-xs text-amber-800",children:[n("p",{className:"font-medium mb-1",children:"Source code will be uploaded"}),n("p",{children:"This report includes your project source code, git history, and CodeYam logs. Only submit if you're comfortable sharing this with the CodeYam team."})]})]}),w&&n("div",{className:"mb-4 text-center",children:n("p",{className:"text-sm text-gray-600",children:b.formData?"Uploading report...":"Creating archive..."})}),y&&d("div",{className:"mb-4 p-3 bg-red-50 rounded-lg border border-red-200 flex gap-2",children:[n(zr,{size:16,className:"flex-shrink-0 mt-0.5",style:{color:"#DC2626"}}),d("div",{className:"text-xs text-red-800",children:[n("p",{className:"font-medium mb-1",children:"Upload failed"}),n("p",{children:y})]})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:E,disabled:w,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-gray-300 transition-colors disabled:opacity-50 cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>void S(),disabled:w,className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors disabled:bg-gray-300 disabled:cursor-not-allowed flex items-center gap-2 cursor-pointer",children:w?d(pe,{children:[n("div",{className:"animate-spin",children:n(Ao,{size:16,style:{strokeWidth:1.5}})}),"Submitting..."]}):y?"Try Again":"Submit Report"})]})]})]})]})}):null}const Io={source:"navbar"},Da=Ea(void 0);function gu({children:e}){const[t,r]=M(Io),s=le(o=>{r(o)},[]),a=le(()=>{r(Io)},[]);return n(Da.Provider,{value:{contextData:t,setContextData:s,resetContextData:a},children:e})}function gt(e){const t=as(Da),r=be(t);te(()=>{if(r.current)return r.current.setContextData(e),()=>{var s;(s=r.current)==null||s.resetContextData()}},[e.source,e.entitySha,e.scenarioId,e.analysisId,e.entityName,e.entityType,e.scenarioName,e.errorMessage])}function yu(){const e=as(Da),t=ss();return e?{source:e.contextData.source,entitySha:e.contextData.entitySha,scenarioId:e.contextData.scenarioId,analysisId:e.contextData.analysisId,currentUrl:t.pathname,entityName:e.contextData.entityName,entityType:e.contextData.entityType,scenarioName:e.contextData.scenarioName,errorMessage:e.contextData.errorMessage}:{source:"navbar",currentUrl:t.pathname}}function xu({labs:e,isAdmin:t,editorMode:r}){var S;const s=ss(),a=Nt(),[o,i]=M(),[l,c]=M(!1),[m,u]=M(!1),[p,h]=M(null),f=Le();te(()=>{f.state==="idle"&&!f.data&&f.load("/api/generate-report")},[f]);const g=((S=f.data)==null?void 0:S.defaultEmail)||"",y={width:"20px",height:"20px",strokeWidth:1.5},x=(e==null?void 0:e.simulations)??!1,b=[{id:"editor",icon:n(ld,{style:y}),link:"/editor",name:"Editor",hidden:!r},{id:"dashboard",icon:n(cd,{style:y}),link:"/",name:"Dashboard",hidden:!x},{id:"simulations",icon:d("svg",{width:"20",height:"20",viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:y,children:[n("path",{d:"M9 12.75V15.75",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 15.75H12",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6.75 12.7498L11.325 8.17483C11.6067 7.89873 11.9858 7.7447 12.3803 7.7461C12.7747 7.74751 13.1528 7.90423 13.4325 8.18233L16.5 11.2498",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M6 8.25C6.82843 8.25 7.5 7.57843 7.5 6.75C7.5 5.92157 6.82843 5.25 6 5.25C5.17157 5.25 4.5 5.92157 4.5 6.75C4.5 7.57843 5.17157 8.25 6 8.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),n("path",{d:"M15 2.25H3C2.17157 2.25 1.5 2.92157 1.5 3.75V11.25C1.5 12.0784 2.17157 12.75 3 12.75H15C15.8284 12.75 16.5 12.0784 16.5 11.25V3.75C16.5 2.92157 15.8284 2.25 15 2.25Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})]}),link:"/simulations",name:"Simulations",hidden:!x},{id:"git",icon:n(Po,{style:y}),link:"/git",name:"Git",hidden:!x},{id:"files",icon:n(dd,{style:y}),link:"/files",name:"Files",hidden:!x},{id:"activity",icon:n(ud,{style:y}),link:"/activity",name:"Activity",hidden:!x},{id:"memory",icon:n(Br,{style:y}),link:"/memory",name:"Memory"},{id:"labs",icon:n(md,{style:y}),link:"/labs",name:"Labs"},{id:"settings",icon:n(pd,{style:y}),link:"/settings",name:"Settings"},{id:"commits",icon:n(Po,{style:y}),link:"/commits",name:"Commits",hidden:!0},{id:"pages",icon:n(hd,{style:y}),link:"/pages",name:"Pages",hidden:!0},{id:"components",icon:n(fd,{style:y}),link:"/components",name:"Components",hidden:!0}],w=le(E=>{const N=b.find(k=>k.id===E);N!=null&&N.link&&a(N.link),i(k=>k===E?void 0:E)},[b,a]);te(()=>{const E={editor:["editor"],dashboard:["/","/home"],git:["git"],commits:["commits"],simulations:["simulations"],activity:["activity"],memory:["memory","agent-transcripts"],files:["files"],labs:["labs"],settings:["settings"],pages:["pages"],components:["components"]};for(const[N,k]of Object.entries(E))if(k.some(j=>j==="/"?s.pathname==="/":s.pathname.includes(j))){i(N);return}i(void 0)},[s]);const v=async()=>{u(!0);try{const{default:E}=await import("html2canvas-pro"),k=(await E(document.body)).toDataURL("image/jpeg",.8);h(k),c(!0)}catch(E){console.error("Screenshot capture failed:",E),c(!0)}finally{u(!1)}},C=()=>{c(!1),h(null)},A=yu();return d(pe,{children:[d("div",{id:"sidebar",className:"sticky top-0 w-full h-screen bg-[#051C22] flex flex-col justify-between py-3",children:[d("div",{className:"w-full flex flex-col items-center",children:[n("div",{className:"py-3 mt-2 mb-4",children:n(fe,{to:"/",className:"flex items-center justify-center cursor-pointer",children:n("img",{src:cs,alt:"CodeYam",className:"h-6"})})}),b.filter(E=>!E.hidden).map(E=>n(pu,{id:E.id,selected:E.id===o,onClick:w,icon:E.icon,name:E.name},`sidebar-button-${E.id}`))]}),t&&n("div",{className:"w-full flex flex-col items-center pb-2",children:d("button",{onClick:()=>void v(),disabled:m,className:"w-full px-1.5 py-2 flex flex-col items-center justify-center gap-1 text-[#568B94] hover:text-[#CBF3FA] transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-wait",children:[n("div",{className:"w-9 h-9 rounded-lg flex items-center justify-center",children:m?n(mt,{style:{width:"20px",height:"20px",strokeWidth:1.5},className:"animate-spin"}):n(Wi,{style:{width:"20px",height:"20px",strokeWidth:1.5}})}),n("span",{className:"text-[9px] font-normal text-center leading-tight whitespace-pre-line",children:m?"Capturing...":`Report
6
- Bug`})]})})]}),l&&n(Xi,{isOpen:!0,onClose:C,context:A,defaultEmail:g,screenshotDataUrl:p??void 0})]})}const el=Ea(void 0);function bu({children:e}){const[t,r]=M([]),s=le((o,i="info",l=5e3)=>{const m={id:`toast-${Date.now()}-${Math.random()}`,message:o,type:i,duration:l};r(u=>[...u,m])},[]),a=le(o=>{r(i=>i.filter(l=>l.id!==o))},[]);return n(el.Provider,{value:{toasts:t,showToast:s,closeToast:a},children:e})}function Oa(){const e=as(el);if(!e)throw new Error("useToast must be used within a ToastProvider");return e}function wu({toast:e,onClose:t}){te(()=>{const a=e.duration||5e3;if(a>0){const o=setTimeout(()=>{t(e.id)},a);return()=>clearTimeout(o)}},[e.id,e.duration,t]);const r={success:"✅",error:"❌",info:"ℹ️",warning:"⚠️"};return d("div",{className:`flex items-center gap-3 px-4 py-3 rounded-lg border-2 shadow-lg min-w-[320px] max-w-[500px] animate-[slideIn_0.3s_ease-out] ${{success:"bg-emerald-50 border-emerald-200 text-emerald-900",error:"bg-red-50 border-red-200 text-red-900",info:"bg-blue-50 border-blue-200 text-blue-900",warning:"bg-amber-50 border-amber-200 text-amber-900"}[e.type]}`,children:[n("span",{className:"text-2xl",children:r[e.type]}),n("p",{className:"flex-1 text-sm font-medium m-0",children:e.message}),n("button",{onClick:()=>t(e.id),className:"text-gray-500 hover:text-gray-700 text-xl leading-none bg-transparent border-none cursor-pointer p-0 w-6 h-6 flex items-center justify-center rounded transition-colors hover:bg-black/10",children:"×"})]})}function vu({toasts:e,onClose:t}){return e.length===0?null:d("div",{className:"fixed top-4 right-4 z-10000 flex flex-col gap-2",children:[n("style",{children:`
7
- @keyframes slideIn {
8
- from {
9
- transform: translateX(400px);
10
- opacity: 0;
11
- }
12
- to {
13
- transform: translateX(0);
14
- opacity: 1;
15
- }
16
- }
17
- `}),e.map(r=>n(wu,{toast:r,onClose:t},r.id))]})}function kt(e,t){const[r,s]=M(""),[a,o]=M(!1),[i,l]=M(null),[c,m]=M(!1);te(()=>{t&&(m(!1),o(!1),l(null))},[t]),te(()=>{if(!e||!t){t||s("");return}const p=async()=>{if(!c)try{const f=await fetch(`/api/logs/${e}`);if(f.ok){const y=(await f.text()).trim().split(`
18
- `).filter(w=>w.length>0);if(y.length<3){o(!1),m(!1),l(null),s("");return}const x=y.filter(w=>w.includes("CodeYam Log Level 1"));if(x.length>0){const w=x[x.length-1];s(w.replace(/.*CodeYam Log Level 1: /,""))}const b=y.find(w=>w.includes("$$INTERACTIVE_SERVER_URL$$:"));if(b){const w=b.split("$$INTERACTIVE_SERVER_URL$$:")[1].trim();l(w),m(!0)}y.some(w=>w.includes("CodeYam: Exiting start.js"))&&o(!0)}}catch{}};p().catch(()=>{});const h=setInterval(()=>{p().catch(()=>{})},500);return()=>clearInterval(h)},[e,t,c]);const u=le(()=>{s(""),o(!1),l(null),m(!1)},[]);return{lastLine:r,interactiveUrl:i,isCompleted:a,resetLogs:u}}function Ot({projectSlug:e,onClose:t}){const[r,s]=M("Loading logs..."),[a,o]=M(!0),[i,l]=M(!0),[c,m]=M("all"),u=be(null);return te(()=>{const p=async()=>{try{const h=await fetch(`/api/logs/${e}`);if(h.ok){const f=await h.text();if(c==="all")s(f);else{const g=f.trim().split(`
19
- `).filter(y=>{if(y.length===0)return!1;const x=y.match(/^.*CodeYam Log Level (\d+):/);return!!x&&Number(x[1])<=c});s(g.map(y=>y.replace(/^.*CodeYam Log Level \d+:\s*/,"")).join(`
20
- `))}i&&u.current&&setTimeout(()=>{var g;(g=u.current)==null||g.scrollTo({top:u.current.scrollHeight,behavior:"smooth"})},100)}else s(`Error: ${h.status} - ${await h.text()}`)}catch(h){s(`Error fetching logs: ${h.message}`)}};if(p().catch(()=>{}),a){const h=setInterval(()=>{p().catch(()=>{})},2e3);return()=>clearInterval(h)}},[e,a,i,c]),te(()=>{const p=h=>{h.key==="Escape"&&t()};return window.addEventListener("keydown",p),()=>window.removeEventListener("keydown",p)},[t]),n("div",{className:"fixed inset-0 bg-black/70 flex items-center justify-center z-9999 p-5",onClick:t,children:d("div",{className:"bg-[#1e1e1e] rounded-lg shadow-2xl flex flex-col max-w-[1200px] w-full max-h-[90vh] overflow-hidden",onClick:p=>p.stopPropagation(),children:[d("div",{className:"flex justify-between items-center px-5 py-4 border-b border-[#333] bg-[#252525]",children:[d("h3",{className:"m-0 text-lg font-semibold text-white",children:["Analysis Logs - ",e]}),d("div",{className:"flex items-center gap-4",children:[d("label",{className:"flex items-center gap-2 text-sm text-[#ccc] select-none",children:[n("span",{children:"Log Level:"}),d("select",{value:c,onChange:p=>m(p.target.value==="all"?"all":Number(p.target.value)),className:"bg-[#333] text-white border border-[#555] rounded px-2 py-1 text-sm cursor-pointer outline-none transition-all hover:border-[#777] hover:bg-[#3a3a3a] focus:border-blue-600",children:[n("option",{value:"1",children:"1"}),n("option",{value:"2",children:"2"}),n("option",{value:"3",children:"3"}),n("option",{value:"4",children:"4"}),n("option",{value:"all",children:"All"})]})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:a,onChange:p=>o(p.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-refresh"})]}),d("label",{className:"flex items-center gap-1.5 text-sm text-[#ccc] cursor-pointer select-none group",children:[n("input",{type:"checkbox",checked:i,onChange:p=>l(p.target.checked),className:"cursor-pointer"}),n("span",{className:"group-hover:text-white",children:"Auto-scroll"})]}),n("button",{onClick:t,className:"bg-transparent border-none text-[#999] text-2xl cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-all hover:bg-[#333] hover:text-white",title:"Close (Esc)",children:"✕"})]})]}),n("pre",{className:"flex-1 m-0 px-5 py-4 overflow-auto font-mono text-[13px] leading-relaxed text-[#d4d4d4] bg-[#1e1e1e] whitespace-pre-wrap wrap-break-word scrollbar-thin scrollbar-thumb-[#424242] scrollbar-track-[#1e1e1e] hover:scrollbar-thumb-[#4f4f4f]",ref:u,children:r})]})})}function nt({type:e,size:t="default"}){const r={visual:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},library:{iconColor:"#06b6d5",bgColor:"bg-[#e6fbff]",bgHex:"#e6fbff"},type:{iconColor:"#db2627",bgColor:"bg-[#ffe1e1]",bgHex:"#ffe1e1"},data:{iconColor:"#2563eb",bgColor:"bg-blue-100",bgHex:"#dbeafe"},index:{iconColor:"#ea580c",bgColor:"bg-orange-100",bgHex:"#ffedd5"},functionCall:{iconColor:"#7c3aed",bgColor:"bg-purple-100",bgHex:"#f3e8ff"},class:{iconColor:"#059669",bgColor:"bg-emerald-100",bgHex:"#d1fae5"},method:{iconColor:"#0891b2",bgColor:"bg-cyan-100",bgHex:"#cffafe"},other:{iconColor:"#6b7280",bgColor:"bg-gray-100",bgHex:"#f3f4f6"}},s=r[e]||r.other,a=t==="large"?18:14,o=t==="large"?32:18,i=()=>{switch(e){case"library":return n(Ji,{size:a,color:s.iconColor});case"visual":return n(er,{size:a,color:s.iconColor});case"type":return n(bd,{size:a,color:s.iconColor});case"data":return n(xd,{size:a,color:s.iconColor});case"index":return n(yd,{size:a,color:s.iconColor});case"functionCall":return n(To,{size:a,color:s.iconColor});case"class":return n(gd,{size:a,color:s.iconColor});case"method":return n(To,{size:a,color:s.iconColor});case"other":return n(jo,{size:a,color:s.iconColor});default:return n(jo,{size:a,color:s.iconColor})}};return n("span",{className:`flex items-center justify-center rounded ${s.bgColor}`,style:{width:`${o}px`,height:`${o}px`},children:i()})}function tl({filePath:e,maxLength:t=60,className:r,style:s}){const o=((l,c)=>{if(l.length<=c)return l;const m="...",u=c-m.length,p=Math.ceil(u*.4),h=Math.floor(u*.6),f=l.slice(0,p),g=l.slice(-h),y=f.lastIndexOf("/"),x=g.indexOf("/"),b=y>p*.5?f.slice(0,y+1):f,w=x!==-1&&x<h*.5?g.slice(x):g;return`${b}${m}${w}`})(e,t),i=o!==e;return n("span",{className:r||"font-normal text-gray-900 text-[14px] select-text cursor-text",style:{...s,display:"inline-block",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},title:i?e:void 0,children:o})}function Os({entity:e,nameSize:t="11px",pathSize:r="10px",pathMaxLength:s=50,showScenarioCount:a=!1,scenarioCount:o=0,additionalContent:i}){return d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"flex items-center gap-1",children:[n(nt,{type:e.entityType||"other"}),d(fe,{to:`/entity/${e.sha}`,className:"hover:underline shrink-0 cursor-pointer",style:{fontSize:t,fontWeight:500,color:"#000",whiteSpace:"nowrap"},children:[e.name,a&&o>0&&` (${o})`]}),n(tl,{filePath:e.filePath,maxLength:s,style:{fontSize:r,color:"#8E8E8E"}})]}),i]})}const Ls={fontSize:"9px",color:"#005C75",fontStyle:"italic"};function Nu({currentRun:e,projectSlug:t,currentEntities:r=[],isAnalysisStarting:s=!1,queuedJobCount:a=0,queueJobs:o=[],currentlyExecuting:i=null,historicalRuns:l=[]}){var H,F,z;const[c,m]=M(!1),[u,p]=M(!1),[h,f]=M(null),[g,y]=M(new Set),[x,b]=M(new Set),[w,v]=M(!1),C=!!i||o.length>0,A=!!i,S=(i==null?void 0:i.entities)||r,E=!!(e!=null&&e.analysisCompletedAt),N=(e==null?void 0:e.readyToBeCaptured)??0,k=(e==null?void 0:e.capturesCompleted)??0;e!=null&&e.captureCompletedAt||E&&(N===0||k>=N);const j=(e==null?void 0:e.currentEntityShas)&&e.currentEntityShas.length>0,T=C,{lastLine:P}=kt(t,T),R=A||o.length>0,I=new Set(((H=i==null?void 0:i.entities)==null?void 0:H.map(U=>U.sha))||[]),$=l.filter(U=>!(U.currentEntityShas||[]).some(_=>I.has(_))),L=(()=>{const O=Date.now()-1440*60*1e3;if(e!=null&&e.createdAt&&j){const _=e.analysisCompletedAt||e.createdAt;if(new Date(_).getTime()>O)return!0}if($.length>0){const _=$[0],Y=_.analysisCompletedAt||_.archivedAt||_.createdAt;if(Y&&new Date(Y).getTime()>O)return!0}return!1})();return te(()=>{const U=(i==null?void 0:i.id)||null;C&&!u&&U!==h&&p(!0),!C&&h!==null&&f(null)},[C,i==null?void 0:i.id,u,h]),d(pe,{children:[d("div",{className:`fixed bottom-4 right-4 z-9998 bg-white rounded shadow-lg border-2 border-primary-100 transition-all duration-200 ${u?"min-w-[350px] max-w-[500px]":"w-auto"}`,children:[!u&&d("div",{onClick:()=>{p(!0),f(null)},className:"flex items-center gap-2 px-3 py-2 cursor-pointer hover:bg-gray-50 transition-colors",title:"Click to expand",children:[R?n(mt,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(Rs,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:R?"Analyzing...":"Activity: No Activity Yet"}),R&&n("button",{onClick:U=>{U.stopPropagation(),m(!0)},className:"ml-auto px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),u&&d("div",{children:[d("div",{className:"flex items-center justify-between px-3 py-2",children:[d("div",{className:"flex items-center gap-2",children:[R?n(mt,{size:16,className:"animate-spin",style:{color:"#005C75"}}):n("div",{className:"flex items-center justify-center rounded",style:{backgroundColor:"#E0E9EC",width:"20px",height:"20px"},children:n(Rs,{size:16,style:{color:"#005C75"}})}),n("span",{style:{fontSize:"12px",fontWeight:500,color:"#343434"},children:R?"Analyzing...":"Activity"})]}),d("div",{className:"flex items-center gap-2",children:[n("button",{onClick:()=>m(!0),className:"px-2 py-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC",color:"#005C75",fontSize:"10px",fontWeight:600},children:"View Logs"}),n("button",{onClick:()=>{p(!1),f((i==null?void 0:i.id)||null)},className:"p-1 rounded transition-colors cursor-pointer",style:{backgroundColor:"#E0E9EC"},title:"Collapse","aria-label":"Collapse",children:n(it,{size:16,style:{color:"#646464"}})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),d("div",{className:"px-3 pt-2 pb-3 space-y-3",children:[R&&i&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(Rs,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Current Activity"})]}),n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:S.length>0?d("div",{className:"space-y-1.5",children:[(w?S:S.slice(0,3)).map(U=>n(Os,{entity:U,nameSize:"11px",pathSize:"10px",pathMaxLength:150},U.sha)),S.length>3&&n("button",{onClick:()=>v(U=>!U),className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Ls,"aria-label":w?"Show fewer entities":`Show ${S.length-3} more entities`,children:w?"Show less":`+${S.length-3} more`}),P&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:P})]}):d("div",{children:[i.entityNames&&i.entityNames.length>0?d("div",{className:"space-y-0.5",children:[i.entityNames.slice(0,5).map((U,O)=>n("div",{style:{fontSize:"11px",color:"#343434"},children:U},O)),i.entityNames.length>5&&d("div",{className:"italic",style:{fontSize:"10px",color:"#666"},children:["+",i.entityNames.length-5," ","more"]})]}):d("div",{style:{fontSize:"11px",color:"#343434"},children:["Analyzing"," ",((F=i.entityShas)==null?void 0:F.length)||0," ",((z=i.entityShas)==null?void 0:z.length)===1?"entity":"entities","..."]}),P&&n("div",{style:{fontSize:"10px",color:"#005C75",marginTop:"4px"},children:P})]})})]}),o.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(wd,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Queued Activity"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:o.map(U=>{var Y,Q;const O=g.has(U.id),_=O?U.entities:U.entities.slice(0,3);return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:U.entities.length>0?d("div",{className:"space-y-1.5",children:[_.map(K=>n(Os,{entity:K,nameSize:"10px",pathSize:"9px",pathMaxLength:120},K.sha)),U.entities.length>3&&n("button",{onClick:()=>{y(K=>{const ae=new Set(K);return ae.has(U.id)?ae.delete(U.id):ae.add(U.id),ae})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Ls,"aria-label":O?"Show fewer entities":`Show ${U.entities.length-3} more entities`,children:O?"Show less":`+${U.entities.length-3} more`})]}):d("div",{style:{fontSize:"10px",color:"#343434"},children:[U.type==="analysis"&&n(pe,{children:U.entityNames&&U.entityNames.length>0?d("div",{className:"space-y-0.5",children:[U.entityNames.slice(0,5).map((K,ae)=>n("div",{children:K},ae)),U.entityNames.length>5&&d("div",{className:"italic",children:["+",U.entityNames.length-5," more"]})]}):`Analyzing ${((Y=U.entityShas)==null?void 0:Y.length)||0} ${((Q=U.entityShas)==null?void 0:Q.length)===1?"entity":"entities"}`}),U.type==="recapture"&&"Recapturing scenario",U.type==="debug-setup"&&"Setting up debug environment"]})},U.id)})})]}),L&&$.length>0&&d("div",{children:[d("div",{className:"flex items-center gap-1.5 mb-2",children:[n(_a,{size:12,style:{color:"#005C75"}}),n("h4",{style:{fontSize:"11px",fontWeight:600,color:"#343434"},children:"Recently Completed"})]}),n("div",{className:"space-y-2 max-h-[200px] overflow-y-auto",children:$.slice(0,3).map((U,O)=>{const _=U.entities||[],Y=U.analysisCompletedAt||U.archivedAt||U.createdAt||"",Q=(()=>{if(!Y)return"";const D=Date.now()-new Date(Y).getTime(),W=Math.floor(D/6e4),G=Math.floor(D/36e5);return G>0?`${G}h ago`:W>0?`${W}m ago`:"just now"})(),K=x.has(O),J=(K?_:_.slice(0,3)).map(D=>{var W,G,ne;return{...D,scenarioCount:((ne=(G=(W=D.analyses)==null?void 0:W[0])==null?void 0:G.scenarios)==null?void 0:ne.length)||0}});return n("div",{className:"rounded p-2",style:{backgroundColor:"#f5f5f5"},children:_.length>0&&d("div",{className:"space-y-1.5",children:[J.map((D,W)=>d("div",{className:"flex items-start justify-between gap-2",children:[n("div",{className:"flex-1 min-w-0",children:n(Os,{entity:D,nameSize:"10px",pathSize:"9px",pathMaxLength:100,showScenarioCount:!0,scenarioCount:D.scenarioCount})}),W===0&&Q&&n("div",{style:{fontSize:"9px",color:"#8E8E8E",whiteSpace:"nowrap",paddingTop:"2px"},children:Q})]},D.sha)),_.length>3&&n("button",{onClick:()=>{b(D=>{const W=new Set(D);return W.has(O)?W.delete(O):W.add(O),W})},className:"cursor-pointer bg-transparent border-none p-0 hover:underline",style:Ls,"aria-label":K?"Show fewer entities":`Show ${_.length-3} more entities`,children:K?"Show less":`+${_.length-3} more`})]})},O)})})]})]}),n("div",{style:{height:"1px",backgroundColor:"#E0E9EC",margin:"0 12px"}}),n("div",{className:"px-3 pb-2",children:n(fe,{to:"/activity",className:"text-xs font-medium hover:underline cursor-pointer",style:{color:"#005C75"},children:"View All Activity →"})})]})]}),c&&t&&n(Ot,{projectSlug:t,onClose:()=>m(!1)})]})}function rt(e){return Object.fromEntries(Object.entries(e).map(([t,r])=>[t,r===null?void 0:r]))}function or(e){const{file_id:t,project_id:r,commit_id:s,file_path:a,entity_type:o,entity_branches:i,analyses:l,commit:c,created_at:m,updated_at:u,...p}=e,h=(i??[]).map(y=>y.branch_id),f=l?l.map(Et):void 0,g=c?nn(c):void 0;return rt({...p,fileId:t,projectId:r,commitId:s,filePath:a,entityType:o,commit:g,analyses:f,branchIds:h,createdAt:m,updatedAt:u})}function La(e){return rt({id:e.id,projectId:e.project_id,name:e.name,path:e.path,deleted:!!e.deleted,metadata:e.metadata??void 0,createdAt:e.created_at,updatedAt:e.updated_at??void 0})}function ds(e){const{branches:t,files:r,analyzed_at:s,content_changed_at:a,created_at:o,updated_at:i,github_token:l,configuration:c,team_id:m,...u}=e;return rt({...u,branches:t?t.map(rn):void 0,files:r?r.map(La):void 0,analyzedAt:s,contentChangedAt:a,createdAt:o,updatedAt:i})}function Cu(e){const{id:t,project_id:r,user_id:s,scenario_id:a,thumbs_up:o,user:i}=e,l=i?{username:i.github_username,avatarUrl:i.github_user.avatar_url}:void 0;return rt({id:t,projectId:r,userId:s,scenarioId:a,thumbsUp:!!o,user:l})}function Su(e){const{id:t,project_id:r,user_id:s,scenario_id:a,text:o,created_at:i,updated_at:l,user:c}=e,m=c?{username:c.github_username,avatarUrl:c.github_user.avatar_url}:void 0;return rt({id:t,projectId:r,userId:s,scenarioId:a,text:o,createdAt:i,updatedAt:l,user:m})}function nl(e){const{project_id:t,analysis_id:r,previous_version_id:s,analysis:a,user_scenarios:o,scenario_comments:i,approved:l,...c}=e,m=a?Et(a):void 0,u=o?o.map(Cu):void 0,p=i?i.map(Su):void 0;return rt({...c,projectId:t,analysisId:r,previousVersionId:s,analysis:m,userScenarios:u,comments:p})}function ku(e){return rt({id:e.id,analysisId:e.analysis_id,entitySha:e.entity_sha,branchId:e.branch_id,active:!!e.active,analysis:e.analysis?Et(e.analysis):void 0,entity:e.entity?or(e.entity):void 0,branch:e.branch?rn(e.branch):void 0,createdAt:e.created_at})}function Et(e){const{project_id:t,commit_id:r,file_id:s,file_path:a,entity_sha:o,entity_type:i,entity_name:l,previous_analysis_id:c,file:m,entity:u,commit:p,project:h,scenarios:f,analysis_branches:g,dependency_analyzed_tree_sha:y,analyzed_tree_sha:x,branch_commit_sha:b,committed_at:w,completed_at:v,created_at:C,updated_at:A,indirect:S,...E}=e,N=u?or(u):void 0,k=m?La(m):void 0,j=h?ds(h):void 0,T=p?nn(p):void 0,P=f?f.map(nl):void 0,R=g?g.map(ku):void 0,I=R?R.map($=>$.branch):void 0;return rt({...E,projectId:t,commitId:r,fileId:s,filePath:a,entitySha:o,entityType:i,entityName:l,previousAnalysisId:c,entity:N,file:k,commit:T,project:j,scenarios:P,analysisBranches:R,branches:I,dependencyAnalyzedTreeSha:y,analyzedTreeSha:x,branchCommitSha:b,committedAt:w,completedAt:v,createdAt:C,updatedAt:A,indirect:!!S})}function Fa(e){return rt({id:e.id,commitId:e.commit_id,branchId:e.branch_id,active:!!e.active,commit:e.commit?nn(e.commit):void 0,branch:e.branch?rn(e.branch):void 0})}function Eu(e){const{project_id:t,commit_id:r,created_at:s,updated_at:a,success:o,...i}=e;return rt({...i,projectId:t,commitId:r,createdAt:s,updatedAt:a,success:!!o})}function nn(e){const{project_id:t,branch_id:r,branch:s,background_jobs:a,merged_branch_id:o,mergedBranch:i,ai_message:l,html_url:c,author:m,analyses:u,entities:p,commit_branches:h,committed_at:f,analyzed_at:g,...y}=e,x=s?rn(s):void 0,b=i?rn(i):void 0,w=(a==null?void 0:a.length)>0?Eu(a[a.length-1]):void 0,v=(u??[]).map(Et),C=(p??[]).map(or),A=(h==null?void 0:h.length)>0?h.map(Fa):void 0;return m&&(m.username=m.preferredUsername??m.username),rt({...y,projectId:t,branchId:r,branch:x,backgroundJob:w,mergedBranchId:o,mergedBranch:b,aiMessage:l,htmlUrl:c,author:m,analyses:v,entities:C,commitBranches:A,committedAt:f,analyzedAt:g})}function rn(e){const{project_id:t,content_changed_at:r,commits:s,analysis_branches:a,active_at:o,created_at:i,updated_at:l,primary:c,...m}=e,u=s?s.map(nn):void 0,p=a?a.flatMap(h=>Et(h.analysis)):void 0;return rt({...m,projectId:t,contentChangedAt:r,commits:u,analyses:p,activeAt:o,createdAt:i,updatedAt:l,primary:!!c})}var ns;class _u{constructor(){Eo(this,ns,new Au)}transformQuery(t){return ko(this,ns).transformNode(t.node)}transformResult(t){return Promise.resolve(t.result)}}ns=new WeakMap;class Au extends zd{transformValue(t){return{...super.transformValue(t),value:typeof t.value=="boolean"?t.value?1:0:t.value}}transformPrimitiveValueList(t){return{...t,values:t.values.map(r=>typeof r=="boolean"?r?1:0:r)}}}const ue=()=>null;function Re(e=!1){return t=>(t=t.defaultTo(et`CURRENT_TIMESTAMP`),e&&(t=t.notNull()),t)}const Pu={analyzed_at:ue(),configuration:ue(),content_changed_at:ue(),created_at:ue(),description:ue(),github_token:ue(),id:ue(),metadata:ue(),name:ue(),path:ue(),slug:ue(),team_id:ue(),updated_at:ue()},ju=Object.keys(Pu);async function Tu(e){await e.schema.createTable("projects").addColumn("id","uuid",t=>t.primaryKey()).addColumn("name","text").addColumn("slug","text",t=>t.notNull()).addColumn("github_token","text").addColumn("description","text").addColumn("path","text").addColumn("configuration","text").addColumn("metadata","text").addColumn("content_changed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re()).addColumn("team_id","integer").ifNotExists().execute()}async function Mu(e){await e.schema.createTable("analyses").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("entity_sha","varchar").addColumn("entity_name","varchar").addColumn("status","text").addColumn("metadata","text").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re(!0)).addColumn("tree_sha","text").addColumn("analyzed_tree_sha","text").addColumn("dependency_analyzed_tree_sha","text").addColumn("previous_analysis_id","uuid").addColumn("branch_commit_sha","varchar").addColumn("indirect","boolean").addColumn("committed_at","datetime").addColumn("completed_at","datetime").addColumn("file_path","varchar").addColumn("entity_type","varchar").ifNotExists().execute()}const $u={active:ue(),analysis_id:ue(),branch_id:ue(),created_at:ue(),entity_sha:ue(),id:ue()},Iu=Object.keys($u);async function Ru(e){await e.schema.createTable("analysis_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("analysis_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addColumn("created_at","datetime",Re()).ifNotExists().execute()}async function Du(e){await e.schema.createTable("background_jobs").addColumn("commit_id","uuid",t=>t.notNull()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("progress","text").addColumn("success","boolean").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime").addPrimaryKeyConstraint("background_jobs_pkey",["project_id","commit_id"]).ifNotExists().execute()}const Ou={active_at:ue(),content_changed_at:ue(),created_at:ue(),id:ue(),metadata:ue(),name:ue(),primary:ue(),project_id:ue(),ref:ue(),sha:ue(),updated_at:ue()},rl=Object.keys(Ou);async function Lu(e){await e.schema.createTable("branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("ref","text").addColumn("name","text").addColumn("sha","text").addColumn("primary","boolean",t=>t.notNull().defaultTo(!1)).addColumn("metadata","text").addColumn("content_changed_at","datetime",Re()).addColumn("active_at","datetime").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re()).ifNotExists().execute()}async function Fu(e){await e.schema.createTable("commit_branches").addColumn("id","uuid",t=>t.primaryKey()).addColumn("branch_id","uuid").addColumn("commit_id","uuid").addColumn("active","boolean").addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}const zu={ai_message:ue(),analyzed_at:ue(),author_github_username:ue(),branch_id:ue(),committed_at:ue(),created_at:ue(),files:ue(),html_url:ue(),id:ue(),merged_branch_id:ue(),message:ue(),metadata:ue(),project_id:ue(),sha:ue(),title:ue(),url:ue()},sl=Object.keys(zu),Bu=sl.filter(e=>e!=="files");async function Yu(e){await e.schema.createTable("commits").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("branch_id","uuid").addColumn("merged_branch_id","uuid").addColumn("message","text").addColumn("ai_message","text").addColumn("title","varchar").addColumn("author_github_username","varchar").addColumn("url","varchar").addColumn("html_url","varchar").addColumn("sha","varchar",t=>t.notNull()).addColumn("files","text").addColumn("metadata","text").addColumn("committed_at","datetime").addColumn("analyzed_at","datetime").addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function Uu(e){await e.schema.createTable("debug_reports").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull()).addColumn("s3_key","varchar",t=>t.notNull()).addColumn("file_size_bytes","bigint").addColumn("metadata","text").addColumn("status","varchar").addColumn("created_at","datetime",Re(!0)).addColumn("uploaded_at","datetime").addColumn("base_sha","varchar").addColumn("delta_size_bytes","bigint").ifNotExists().execute()}async function Wu(e){await e.schema.createTable("labs_requests").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_slug","varchar",t=>t.notNull().unique()).addColumn("name","varchar",t=>t.notNull()).addColumn("email","varchar",t=>t.notNull()).addColumn("org_name","varchar").addColumn("org_size","varchar").addColumn("project_size","varchar").addColumn("tech_stack","varchar").addColumn("status","varchar").addColumn("unlock_code","varchar").addColumn("created_at","datetime",Re(!0)).addColumn("approved_at","datetime").ifNotExists().execute()}const Ju={commit_id:ue(),created_at:ue(),description:ue(),documentation:ue(),entity_type:ue(),file_id:ue(),file_path:ue(),metadata:ue(),name:ue(),project_id:ue(),quality:ue(),sha:ue(),updated_at:ue()},al=Object.keys(Ju);async function Hu(e){await e.schema.createTable("entities").addColumn("project_id","uuid",t=>t.notNull()).addColumn("file_id","uuid").addColumn("commit_id","uuid").addColumn("name","varchar").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("entity_type","varchar").addColumn("file_path","varchar").addColumn("description","text").addColumn("documentation","text").addColumn("metadata","text").addColumn("quality","text").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime").ifNotExists().execute()}const Vu={active:ue(),branch_id:ue(),entity_sha:ue()},Gu=Object.keys(Vu);async function qu(e){await e.schema.createTable("entity_branches").addColumn("branch_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("active","boolean",t=>t.defaultTo(!0)).addPrimaryKeyConstraint("entity_branches_pkey",["branch_id","entity_sha"]).ifNotExists().execute()}async function Ku(e){await e.schema.createTable("entity_statements").addColumn("id","integer",t=>t.autoIncrement().primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("entity_sha","varchar",t=>t.notNull()).addColumn("statement_sha","varchar",t=>t.notNull()).addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}const Qu={created_at:ue(),deleted:ue(),id:ue(),metadata:ue(),name:ue(),path:ue(),project_id:ue(),updated_at:ue()},Zu=Object.keys(Qu);async function Xu(e){await e.schema.createTable("files").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar").addColumn("path","varchar",t=>t.notNull()).addColumn("deleted","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re()).addColumn("metadata","text").ifNotExists().execute()}async function em(e){await e.schema.createTable("github_payloads").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("payload_type","varchar").addColumn("payload","text").addColumn("after","varchar").addColumn("commit_sha","varchar").addColumn("ref","varchar").addColumn("committed_at","datetime").addColumn("error","text").addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function tm(e){await e.schema.createTable("github_users").addColumn("username","varchar",t=>t.primaryKey()).addColumn("preferred_username","varchar").addColumn("avatar_url","varchar").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re()).ifNotExists().execute()}async function nm(e){await e.schema.createTable("scenario_comments").addColumn("id","serial",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("scenario_id","uuid").addColumn("user_id","uuid").addColumn("text","text").addColumn("metadata","text").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re(!0)).ifNotExists().execute()}async function rm(e){await e.schema.createTable("editor_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("name","varchar",t=>t.notNull()).addColumn("description","text").addColumn("component_name","varchar").addColumn("component_path","varchar").addColumn("url","varchar").addColumn("type","varchar").addColumn("screenshot_path","varchar").addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re(!0)).ifNotExists().execute();for(const t of["component_name","component_path","url","type","screenshot_path"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"varchar").execute()}catch{}for(const t of["viewport_width","viewport_height"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"integer").execute()}catch{}try{await e.schema.alterTable("editor_scenarios").addColumn("dimension","varchar").execute()}catch{}for(const t of["dimensions","screenshot_paths"])try{await e.schema.alterTable("editor_scenarios").addColumn(t,"text").execute()}catch{}try{const t=await e.selectFrom("editor_scenarios").select(["id","dimension","screenshot_path"]).execute();for(const r of t){const s=r;if(s.dimension&&!s.dimensions&&await e.updateTable("editor_scenarios").set({dimensions:JSON.stringify([s.dimension])}).where("id","=",s.id).execute(),s.screenshot_path&&!s.screenshot_paths){const a=s.dimension||"Default";await e.updateTable("editor_scenarios").set({screenshot_paths:JSON.stringify({[a]:s.screenshot_path})}).where("id","=",s.id).execute()}}}catch{}}const sm={analysis_id:ue(),approved:ue(),created_at:ue(),description:ue(),id:ue(),metadata:ue(),name:ue(),previous_version_id:ue(),project_id:ue()},Jr=Object.keys(sm);async function am(e){await e.schema.createTable("scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid").addColumn("analysis_id","uuid").addColumn("name","varchar").addColumn("description","text").addColumn("metadata","text").addColumn("approved","boolean").addColumn("previous_version_id","uuid").addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function om(e){await e.schema.createTable("statements").addColumn("sha","varchar",t=>t.primaryKey()).addColumn("text","text",t=>t.notNull()).addColumn("llm_call_id","varchar").addColumn("results","text").addColumn("issues","text").addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function im(e){await e.schema.createTable("teams").addColumn("id","serial",t=>t.primaryKey()).addColumn("name","varchar",t=>t.notNull()).addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function lm(e){await e.schema.createTable("user_scenarios").addColumn("id","uuid",t=>t.primaryKey()).addColumn("project_id","uuid",t=>t.notNull()).addColumn("scenario_id","uuid",t=>t.notNull()).addColumn("user_id","uuid",t=>t.notNull()).addColumn("thumbs_up","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Re(!0)).ifNotExists().execute()}async function cm(e){await e.schema.createTable("user_teams").addColumn("team_id","integer",t=>t.notNull()).addColumn("user_auth_id","uuid",t=>t.notNull()).addPrimaryKeyConstraint("user_teams_pkey",["team_id","user_auth_id"]).ifNotExists().execute()}async function dm(e){await e.schema.createTable("users").addColumn("auth_id","uuid",t=>t.primaryKey()).addColumn("email","varchar").addColumn("github_username","varchar").addColumn("github_token","varchar").addColumn("verified","boolean",t=>t.defaultTo(!1)).addColumn("created_at","datetime",Re(!0)).addColumn("updated_at","datetime",Re()).ifNotExists().execute()}const um=!!sn("ENABLE_QUERY_LOGGING"),mm=!!sn("ENABLE_QUERY_ERROR_LOGGING");sn("USE_LOCAL_POSTGRESQL_FOR_TESTING");let Nr;function je(){if(!Nr){const e=il();if(e==="sqlite")Nr=pm();else if(e==="postgresql")Nr=hm();else throw new Error(`Unknown database type: ${e}`)}return Nr}function pm(e){if(e||(e=sn("SQLITE_PATH")),e===":memory:"||e==="memory")throw new Error("In-memory SQLite not supported in getDatabase(). Use getDatabaseForTesting() instead.");const t=q.existsSync(e),r=B.dirname(e);if(!q.existsSync(r))q.mkdirSync(r,{recursive:!0,mode:493});else try{q.chmodSync(r,493)}catch(a){console.warn(`Warning: Could not set permissions on database directory: ${a.message}`)}const s=new Od(e,{readonly:!1,fileMustExist:!1});if(s.pragma("journal_mode = WAL"),s.pragma("busy_timeout = 5000"),s.pragma("synchronous = FULL"),!process.env.CLAUDE_CODE_MODE)try{const a=s.prepare("SELECT COUNT(*) as count FROM sqlite_master WHERE type='table' AND name='projects'").get();t&&a.count===0&&(console.error("CodeYam DB ERROR: Database file existed but projects table is missing!"),console.error("This likely means SQLite created a new empty database instead of opening the existing one."),console.error("Possible causes: corruption, WAL file issues, or file locking problems."))}catch(a){console.error("CodeYam DB ERROR: Failed to verify database schema:",a)}return new Ki({dialect:new Yd({database:s}),plugins:[new Bd,new _u],log:ol})}function hm(){const e=gm();console.log(`CodeYam: Using PostgreSQL database at: ${e}`);const t=new Ld({connectionString:e,max:3,idleTimeoutMillis:1e4});return t.on("error",(r,s)=>{console.error("CodeYam: Unexpected error on idle PostgreSQL client",r)}),new Ki({dialect:new Ud({pool:t}),log:ol})}let Fs=null;function on(){return Fs||(Fs=fm(il())),Fs}function ol(e){e.level==="error"?mm&&console.error("Query failed : ",{durationMs:e.queryDurationMillis,error:e.error,sql:e.query.sql,params:e.query.parameters}):um&&console.log("Query executed : ",{durationMs:e.queryDurationMillis,sql:e.query.sql,params:e.query.parameters})}function fm(e){if(e==="sqlite")return Wd;if(e==="postgresql")return Jd;throw new Error(`Unknown database type: ${e}`)}function il(){if(sn("SQLITE_PATH"))return"sqlite";if(sn("POSTGRESQL_URL"))return"postgresql";throw new Error("No database configuration found. Set SQLITE_PATH for SQLite or POSTGRESQL_URL for PostgreSQL")}async function cS(e){await Tu(e),await Mu(e),await Ru(e),await Du(e),await Lu(e),await Fu(e),await Yu(e),await Uu(e),await rm(e),await Hu(e),await qu(e),await Ku(e),await Xu(e),await em(e),await tm(e),await Wu(e),await nm(e),await am(e),await om(e),await im(e),await lm(e),await cm(e),await dm(e)}function gm(){const e=sn("POSTGRESQL_URL");if(!e)throw new Error("No PostgreSQL connection string found. Set POSTGRESQL_URL environment variable.");return e}function sn(e){var t;return typeof window<"u"?(t=window.env)==null?void 0:t[e]:process.env[e]}const ym=()=>crypto.randomUUID();function xm(e){const{id:t,projectId:r,activeAt:s,contentChangedAt:a,metadata:o,...i}=e;return delete i.commits,delete i.files,delete i.analyses,delete i.createdAt,delete i.updatedAt,{...i,id:t??ym(),project_id:r,active_at:s,content_changed_at:a,metadata:o?JSON.stringify(o):null}}var Je=(e=>(e.Remix="Remix",e.CodeYam="CodeYam",e.CRA="CRA",e.Next="Next",e.NextPages="NextPages",e.Vite="Vite",e.Expo="Expo",e.Unknown="Unknown",e))(Je||{});const us="Default Scenario";let bm="<main>";function wm(){return bm}function Ro(e,...t){Me(`CodeYam Log Level ${e}: ${t[0]}`,...t.slice(1))}function Me(...e){const t=wm(),r=e.map(a=>{if(a)return typeof a=="string"?a:a instanceof Error?`${a.name}: ${a.message}
21
- ${a.stack}`:typeof a=="object"?vm(a):String(a)}).filter(Boolean).join(`
22
- `),s=`${t} ${r}`;if(!process.env.CODEYAM_ECS_TASK_ARN){console.log(s+`
23
- `);return}console.log(s.replace(/\n/g,"\r"))}function vm(e,t=2){function r(s,a=new WeakMap){return s===null||typeof s!="object"?s:a.has(s)?`"[Circular: ${s.constructor.name}]"`:(a.set(s,!0),Array.isArray(s)?`[${s.map(l=>{const c=r(l,a);return typeof l=="string"?`"${c}"`:c}).join(",")}]`:`{${Object.entries(s).map(([i,l])=>{let c;return typeof l>"u"?null:(typeof l=="function"?c=`"(function: ${l.name||"anonymous"})"`:l instanceof Date?c=`"${l.toISOString()}"`:typeof l=="object"&&l!==null?c=r(l,a):typeof l=="string"?c=`"${l.replace(/"/g,'\\"')}"`:c=JSON.stringify(l),`"${i.replace(/"/g,'\\"')}":${c}`)}).filter(Boolean).join(",")}}`)}try{return JSON.stringify(e,null,t)}catch(s){const a=r(e);if(!t)return a;try{return JSON.stringify(JSON.parse(r(e)),null,t)}catch(o){return console.log("CodeYam Error: error stringifying object to provide proper spacing",{error:o,pureStringifyError:s,serialized:a}),a}}}function Hr(e,t){try{let r=function(o){var i,l;if(Be.isFunctionDeclaration(o)&&Un(o)){const c=((i=o.name)==null?void 0:i.text)||"default",m=o.getText(s),u=zs(o);a.push({name:c,code:m,sha:Ht(t,c,m),entityType:"function",isDefault:u})}else if(Be.isClassDeclaration(o)&&Un(o)){const c=((l=o.name)==null?void 0:l.text)||"default",m=o.getText(s),u=zs(o),p=m.includes("React.")||m.includes("jsx")||m.includes("tsx");a.push({name:c,code:m,sha:Ht(t,c,m),entityType:p?"component":"class",isDefault:u})}else if(Be.isInterfaceDeclaration(o)&&Un(o)){const c=o.name.text,m=o.getText(s);a.push({name:c,code:m,sha:Ht(t,c,m),entityType:"interface",isDefault:!1})}else if(Be.isTypeAliasDeclaration(o)&&Un(o)){const c=o.name.text,m=o.getText(s);a.push({name:c,code:m,sha:Ht(t,c,m),entityType:"type",isDefault:!1})}else if(Be.isVariableStatement(o)&&Un(o)){const c=zs(o);o.declarationList.declarations.forEach(m=>{var u;if(Be.isIdentifier(m.name)){const p=m.name.text,h=o.getText(s),f=((u=m.initializer)==null?void 0:u.getText(s))||"",g=(t.endsWith(".tsx")||t.endsWith(".jsx"))&&f.includes("=>")&&(f.includes("<")||f.includes("React."));a.push({name:p,code:h,sha:Ht(t,p,h),entityType:g?"component":"variable",isDefault:c})}})}else if(Be.isExportAssignment(o)){const c=o.getText(s);a.push({name:"default",code:c,sha:Ht(t,"default",c),entityType:"unknown",isDefault:!0})}else if(Be.isExportDeclaration(o)&&o.exportClause&&Be.isNamedExports(o.exportClause)){const c=o.getText(s);for(const m of o.exportClause.elements){const u=m.name.text;a.push({name:u,code:c,sha:Ht(t,u,c),entityType:"unknown",isDefault:!1})}}Be.forEachChild(o,r)};const s=Be.createSourceFile(t,e,Be.ScriptTarget.Latest,!0),a=[];return r(s),a}catch(r){return console.error(`Failed to extract entities from ${t}:`,r),[]}}function Un(e){if(!Be.canHaveModifiers(e))return!1;const t=Be.getModifiers(e);return t?t.some(r=>r.kind===Be.SyntaxKind.ExportKeyword):!1}function zs(e){if(!Be.canHaveModifiers(e))return!1;const t=Be.getModifiers(e);return t?t.some(r=>r.kind===Be.SyntaxKind.DefaultKeyword):!1}function Ht(e,t,r){const s=ar.createHash("sha256");return s.update(`${e}:${t}:${r}`),s.digest("hex").substring(0,40)}function Nm(e){var m;const{webapp:t,port:r,environmentVariables:s,packageManager:a}=e,o=t==null?void 0:t.startCommand;if(!o)return`${a} ${a==="npm"?"run ":""}dev`;const i=((m=o.args)==null?void 0:m.map(u=>u.replace(/\$PORT/g,String(r))))??[],l=[];for(const u of s)if(u.key&&u.value!==void 0){const p=String(u.value).replace(/'/g,"'\\''");l.push(`${u.key}='${p}'`)}if(o.env)for(const[u,p]of Object.entries(o.env)){const f=String(p).replace(/\$PORT/g,String(r)).replace(/'/g,"'\\''");l.push(`${u}='${f}'`)}const c=l.length>0?l.join(" ")+" ":"";return o.command==="sh"&&i[0]==="-c"&&i[1]?`${c}sh -c "${i[1]}"`:`${c}${o.command} ${i.join(" ")}`}function Cm(e,t){if(!t||t.length===0)return;if(t.length===1)return t[0];const r=B.normalize(e),s=[...t].sort((a,o)=>{var i,l;return(((i=o.path)==null?void 0:i.length)??0)-(((l=a.path)==null?void 0:l.length)??0)});for(const a of s){const o=B.normalize(a.path??".");if(o==="."||r.startsWith(o+B.sep)||r===o)return a}return t[0]}function Sm(e){const{filePath:t,webapps:r,environmentVariables:s,port:a,packageManager:o}=e;if(!r||r.length===0)throw new Error("No webapps configured. Please run CodeYam init again.");const i=Cm(t,r);if(!i)throw new Error("Could not find webapp for file path: "+t);const l=Nm({webapp:i,port:a,environmentVariables:s,packageManager:o});return{webapp:i,webappPath:i.path??".",framework:i.framework,packageManager:i.packageManager??o,startCommand:l,url:`http://localhost:${a}/static/codeyam-sample`}}function _n(e,t,r=[]){const s=Array.isArray(t)?t:[t];return a=>a.columns(s).doUpdateSet(o=>{const i=Object.keys(e).filter(l=>l!==t&&!r.includes(l));return Object.fromEntries(i.map(l=>[l,o.ref(`excluded.${l}`)]))})}async function km(e){if(e.length===0)return[];const t=je(),r=e.map(xm);try{return(await t.insertInto("branches").values(r).onConflict(_n(r[0],"id",["created_at"])).returningAll().execute()).map(rn)}catch(s){return Me("CodeYam Error: Database error upserting branches",s,{branchCount:e.length,branchIds:e.map(a=>a.id)}),[]}}function Em(e){const{jsonObjectFrom:t}=on();return t(e.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",e.ref("commits.author_github_username")))}async function _m({ids:e,analysisId:t}){const r=je();try{let s=r.deleteFrom("scenarios");if(e){if(e.length===0)return;s=s.where("id","in",e)}else if(t)s=s.where("analysis_id","=",t);else throw Me("CodeYam Error: No deletion criteria provided",null,{ids:e,analysisId:t}),new Error("No deletion criteria provided for scenarios");await s.execute()}catch(s){throw Me("CodeYam Error: Database error deleting scenarios",s,{ids:e,analysisId:t}),s}}function Am(...e){try{const t=ar.createHash("sha256");for(const r of e)t.update(r);return t.digest("hex")}catch(t){throw console.log("CodeYam Error: Error generating sha",e),t}}function Bs(e,t){return t.map(r=>Pm(e,r))}function Pm(e,t){return et` ${et.ref(e)}.${et.ref(t)}`.as(t)}function jm(e,t,r){return t.map(s=>Tm(e,s,r))}function Tm(e,t,r){return et` ${et.ref(e)}.${et.ref(t)}`.as(`_cy_${r}:${t}`)}function Mm(e,...t){const r={};for(const[s,a]of Object.entries(e)){const o=s.match(/^_cy_(.+?):(.+)$/);if(o){const[,i,l]=o;if(t.includes(i)){r[i]||(r[i]={}),r[i][l]=a;continue}console.warn(`CodeYam Warning: Unrecognized prefix in key '${s}'`);continue}r[s]=a}return r}const $m=50;function Im(e,t){return e.length<=t?[e]:Array.from({length:Math.ceil(e.length/t)},(r,s)=>e.slice(s*t,s*t+t))}function Do({projectId:e,ids:t,fileIds:r,entityName:s,entityShas:a,commitIds:o,branchCommitSha:i,limit:l,excludeMetadata:c}){const m=je(),{jsonObjectFrom:u,jsonArrayFrom:p}=on();let h=c?m.selectFrom("analyses").select(["analyses.id","analyses.project_id","analyses.file_id","analyses.commit_id","analyses.entity_sha","analyses.entity_name","analyses.entity_type","analyses.file_path","analyses.status","analyses.created_at","analyses.updated_at","analyses.tree_sha","analyses.analyzed_tree_sha","analyses.dependency_analyzed_tree_sha","analyses.previous_analysis_id","analyses.branch_commit_sha","analyses.indirect","analyses.committed_at","analyses.completed_at"]):m.selectFrom("analyses").selectAll("analyses");if(e&&(h=h.where("project_id","=",e)),t){if(t.length===0)return null;h=h.where("id","in",t)}if(r){if(r.length===0)return null;h=h.where("file_id","in",r)}if(o){if(o.length===0)return null;h=h.where("commit_id","in",o)}return s&&(h=h.where("entity_name","=",s)),a&&(h=h.where("entity_sha","in",a)),i&&(h=h.where("branch_commit_sha","=",i)),l&&(h=h.limit(l)),c?m.with("filtered_analyses",()=>h).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[p(f.selectFrom("scenarios").select(Bs("scenarios",Jr)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),p(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")]):m.with("filtered_analyses",()=>h).selectFrom("filtered_analyses").selectAll("filtered_analyses").select(f=>[u(f.selectFrom("entities").select(Bs("entities",al)).whereRef("entities.sha","=","filtered_analyses.entity_sha").limit(1)).as("entity"),p(f.selectFrom("scenarios").select(Bs("scenarios",Jr)).whereRef("scenarios.analysis_id","=","filtered_analyses.id")).as("scenarios"),p(f.selectFrom("analysis_branches").select(["id","branch_id"]).whereRef("analysis_branches.analysis_id","=","filtered_analyses.id")).as("analysis_branches")])}async function Lt(e){const{ids:t,fileIds:r,entityShas:s,commitIds:a}=e;try{const i=Object.entries({id:{arr:t,key:"ids"},file_id:{arr:r,key:"fileIds"},entity_sha:{arr:s,key:"entityShas"},commit_id:{arr:a,key:"commitIds"}}).find(([c,{arr:m}])=>(m==null?void 0:m.length)>0);let l=[];if(i){const[c,{arr:m,key:u}]=i,p=Im(m,$m),h=[];for(let f=0;f<p.length;f++){const g=p[f],x=await Do({...e,[u]:g}).execute();x&&h.push(...x)}l=h}else{const m=await Do(e).execute();if(!m||m.length===0)return Me("CodeYam: No analyses found",null,e),null;l=m}return l.length===0?null:l.map(Et)}catch(o){return Me("CodeYam Error: Database error in loadAnalyses",o,e),null}}function Rm(e,t){const{jsonArrayFrom:r,jsonObjectFrom:s}=on();let a=e.selectFrom("analysis_branches").select(Iu).select(o=>s(o.selectFrom("branches").select(rl).whereRef("id","=","analysis_branches.branch_id")).as("branch"));return t&&(a=t(a)),r(a)}async function _t({id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:m,includeCommitAndBranch:u,includeScenarios:p,includeBranches:h}){const f=je(),g=Date.now();try{let y=f.selectFrom("analyses").selectAll("analyses");e&&(y=y.where("id","=",e)),r&&(y=y.where("project_id","=",r)),i?y=y.where("dependency_analyzed_tree_sha","=",i):l?y=y.where("analyzed_tree_sha","=",l):s&&(y=y.where("file_id","=",s)),o&&(y=y.where("entity_name","=",o)),a?y=y.where("commit_id","=",a):y=y.orderBy("created_at","desc").limit(1),t&&(y=y.innerJoin("analysis_branches","analyses.id","analysis_branches.analysis_id").where("analysis_branches.id","=",t));const{jsonObjectFrom:x,jsonArrayFrom:b}=on();y=y.select(C=>{const A=[];return A.push(x(C.selectFrom("entities").select(al).whereRef("entities.sha","=","analyses.entity_sha")).as("entity")),c&&A.push(x(C.selectFrom("files").select(Zu).whereRef("files.id","=","analyses.file_id")).as("file")),m&&A.push(x(C.selectFrom("projects").select(ju).whereRef("projects.id","=","analyses.project_id")).as("project")),p&&A.push(b(C.selectFrom("scenarios").select(Jr).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")),h&&A.push(Rm(C,S=>S.whereRef("analysis_branches.analysis_id","=","analyses.id")).as("analysis_branches")),u&&A.push(x(C.selectFrom("commits").select(sl).select(S=>Em(S).as("author")).whereRef("commits.id","=","analyses.commit_id")).as("commit")),A});const w=await y.executeTakeFirst(),v=Date.now()-g;if(!w)return Me("CodeYam Error: Analysis not found",null,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:m,includeCommitAndBranch:u,includeScenarios:p,includeBranches:h}),null;if(v>100&&u){const C=w.commit,A=C!=null&&C.files?JSON.stringify(C.files).length:0;console.log(`CodeYam DEBUG: [CommitFilesTiming] loadAnalysis took ${v}ms (files: ${Math.round(A/1024)}KB)`,{id:w.id,entityName:w.entity_name})}return Et(w)}catch(y){return Me("CodeYam Error: Database error loading analysis",y,{id:e,analysisBranchId:t,projectId:r,fileId:s,commitId:a,entityName:o,dependencyAnalyzedTreeSha:i,analyzedTreeSha:l,includeFile:c,includeProject:m,includeCommitAndBranch:u,includeScenarios:p,includeBranches:h}),null}}async function za({projectId:e,ids:t,names:r,includeInactive:s}){const a=je();try{let o=a.selectFrom("branches").selectAll("branches").where("project_id","=",e);if(t){if(t.length===0)return[];o=o.where("id","in",t)}if(r){if(r.length===0)return[];o=o.where("name","in",r)}return s||(o=o.where("active_at","is not",null)),(await o.execute()).map(rn)}catch(o){return Me("CodeYam Error: Database error loading branches",o,{projectId:e,ids:t,names:r,includeInactive:s}),[]}}async function Dm({projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}){const o=je();try{let i=o.selectFrom("commit_branches").selectAll("commit_branches").innerJoin("branches","commit_branches.branch_id","branches.id").$if(a,m=>m.select(jm("branches",rl,"branch"))).where("branches.project_id","=",e);t&&(i=i.where("commit_branches.commit_id","=",t)),r&&(i=i.where("commit_branches.branch_id","=",r)),s!==void 0&&(i=i.where("commit_branches.active","=",s));const l=await i.execute();return!l||l.length===0?null:l.map(m=>Mm(m,"branch")).map(Fa)}catch(i){return Me("CodeYam Error: Error loading commit branches",i,{projectId:e,commitId:t,branchId:r,active:s,includeBranches:a}),null}}async function Om(e){if(e.length===0)return new Map;const t=je();try{const r=await t.selectFrom("commits").select(["id","branch_id","merged_branch_id"]).where("id","in",e).execute(),s=new Set;if(r.forEach(o=>{o.branch_id&&s.add(o.branch_id),o.merged_branch_id&&s.add(o.merged_branch_id)}),s.size===0)return new Map;const a=await t.selectFrom("branches").selectAll().where("id","in",Array.from(s)).execute();return new Map(a.map(o=>[o.id,o]))}catch(r){return Me("CodeYam Error: Loading branches for commits",r,{commitIds:e}),new Map}}async function Lm(e){if(e.length===0)return new Map;const t=je(),{jsonObjectFrom:r,jsonArrayFrom:s}=on();try{const a=await t.selectFrom("analyses").selectAll("analyses").select(i=>[r(i.selectFrom("files").select(["id","name","path"]).whereRef("files.id","=","analyses.file_id")).as("file"),s(i.selectFrom("scenarios").select(Jr).whereRef("scenarios.analysis_id","=","analyses.id")).as("scenarios")]).where("commit_id","in",e).execute(),o=new Map;return a.forEach(i=>{const l=o.get(i.commit_id)||[];l.push(i),o.set(i.commit_id,l)}),o}catch(a){return Me("CodeYam Error: Loading analyses for commits",a,{commitIds:e}),new Map}}async function Fm(e){if(e.length===0)return new Map;const t=je();try{const r=await t.selectFrom("entities").selectAll().where("commit_id","in",e).execute(),s=new Map;return r.forEach(a=>{const o=s.get(a.commit_id)||[];o.push(a),s.set(a.commit_id,o)}),s}catch(r){return Me("CodeYam Error: Loading entities for commits",r,{commitIds:e}),new Map}}async function Vr({projectId:e,branchId:t,ids:r,shas:s,fileNames:a,limit:o=10,skipRelations:i=!1}){if(!e&&!r)throw new Error("Must provide projectId or ids");const l=je(),{jsonObjectFrom:c}=on(),m=Date.now();try{let u;if(i){const w=Bu.map(v=>`commits.${v}`);u=l.selectFrom("commits").select(w)}else u=l.selectFrom("commits").selectAll("commits").select(w=>[c(w.selectFrom("github_users").select(["username","preferred_username as preferredUsername","avatar_url as avatarUrl"]).where("github_users.username","=",w.ref("commits.author_github_username"))).as("author")]);if(e&&(u=u.where("project_id","=",e)),r){if(r.length===0)return[];u=u.where("id","in",r)}if(s){if(s.length===0)return[];u=u.where("sha","in",s)}if(a&&a.length>0){const w=et.join(a.map(v=>et`${v}`),et`, `);u=u.where(et`
24
- EXISTS (
25
- SELECT 1
26
- FROM json_each(${et.ref("commits.files")}) AS f
27
- WHERE json_extract(f.value, '$.fileName') IN (${w})
28
- )
29
- `)}t&&(u=u.where("branch_id","=",t));const p=await u.orderBy("committed_at","desc").limit(o).execute(),h=Date.now()-m;if(!p||p.length===0)return[];if(h>100){const w=p.reduce((v,C)=>v+(C.files?JSON.stringify(C.files).length:0),0);console.log(`CodeYam DEBUG: [CommitFilesTiming] loadCommits took ${h}ms (${p.length} commits, totalFiles: ${Math.round(w/1024)}KB)`)}if(i)return p.map(v=>({...v,branch:void 0,mergedBranch:void 0,analyses:[],entities:[]})).map(nn);const f=p.map(w=>w.id),[g,y,x]=await Promise.all([Om(f),Lm(f),Fm(f)]);return p.map(w=>{const v=w.branch_id?g.get(w.branch_id):void 0,C=w.merged_branch_id?g.get(w.merged_branch_id):void 0,A=y.get(w.id)||[],S=x.get(w.id)||[];return{...w,branch:v,mergedBranch:C,analyses:A,entities:S}}).map(nn)}catch(u){return Me("CodeYam Error: Database error loading commits",u,{projectId:e,branchId:t,ids:r,shas:s,limit:o}),[]}}async function tt({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:o,excludeMetadata:i}){if(r&&r.length==0||s&&s.length==0||a&&a.length==0||o&&o.length==0)return[];if(o&&o.length>50){const c=[];for(let m=0;m<o.length;m+=50){const u=o.slice(m,m+50),p=await tt({projectId:e,branchId:t,fileIds:r,filePaths:s,names:a,shas:u,excludeMetadata:i});p&&c.push(...p)}return c}const l=je();try{const u=await(i?l.selectFrom("entities").select(["entities.project_id","entities.file_id","entities.commit_id","entities.name","entities.sha","entities.entity_type","entities.file_path","entities.description","entities.documentation","entities.quality","entities.created_at","entities.updated_at"]):l.selectFrom("entities").selectAll("entities")).$if(!!t,p=>p.innerJoin("entity_branches","entity_branches.entity_sha","entities.sha").where("entity_branches.branch_id","=",t)).$if(!!e,p=>p.where("entities.project_id","=",e)).$if(!!o,p=>p.where("entities.sha","in",o)).$if(!!s,p=>p.where("entities.file_path","in",s)).$if(!!a,p=>p.where("entities.name","in",a)).$if(!!r,p=>p.where("entities.file_id","in",r)).execute();return!u||u.length===0?null:u.map(or)}catch(c){return console.log("Load Entities: Error occurred",c,{projectId:e,fileIds:r,filePaths:s,shas:o}),null}}function zm(e,t){const{jsonArrayFrom:r}=on();let s=e.selectFrom("entity_branches").select(Gu);return t&&(s=t(s)),r(s)}async function ll({projectId:e,sha:t}){const r=je();try{const s=await r.selectFrom("entities").innerJoin("files","entities.file_id","files.id").selectAll("entities").select(a=>zm(a,o=>o.whereRef("entity_branches.entity_sha","=","entities.sha")).as("entity_branches")).where("files.project_id","=",e).where("entities.sha","=",t).executeTakeFirst();return s?or(s):(process.env.CODEYAM_E2E_BASELINE_MODE!=="true"&&Me("CodeYam Error: Load Entity: Entity not found",null,{projectId:e,sha:t}),null)}catch(s){return Me("CodeYam Error: Load Entity: Database error",s,{projectId:e,sha:t}),null}}const Ys=1e3;async function cl({projectId:e,filePaths:t,fileIds:r,fileNames:s}){if(t&&t.length>50){const l=[];for(let c=0;c<t.length;c+=50){const m=t.slice(c,c+50),u=await cl({projectId:e,filePaths:m,fileIds:r,fileNames:s});u&&l.push(...u)}return l}const a=je(),o=[];let i=0;try{for(;;){let l=a.selectFrom("files").selectAll().where("project_id","=",e).limit(Ys).offset(i);if(t){if(t.length===0)return[];l=l.where("path","in",t)}if(r){if(r.length===0)return[];l=l.where("id","in",r)}if(s){if(s.length===0)return[];l=l.where("name","in",s)}const c=await l.execute();if(!c||c.length===0||(o.push(...c),c.length<Ys))break;i+=Ys}return o==null?void 0:o.map(La)}catch(l){return console.log("CodeYam Error: Error loading project files in loadFiles",l),null}}async function Ba({id:e,slug:t,withBranches:r,withFiles:s,silent:a}){try{let i=je().selectFrom("projects").selectAll();if(e)i=i.where("id","=",e);else if(t)i=i.where("slug","=",t);else throw new Error("Either id or slug must be provided");const l=await i.executeTakeFirst();if(!l)return null;const c=ds(l);return s&&(c.files=await cl({projectId:c.id})),r&&(c.branches=await za({projectId:c.id,includeInactive:!1})),c}catch{return null}}function Gr(e,t){const r={...e};for(const s in t){const a=t[s],o=e[s];a!=null&&typeof a=="object"&&!Array.isArray(a)&&o!==void 0&&o!==null&&typeof o=="object"&&!Array.isArray(o)?r[s]=Gr(o,a):a!==void 0&&(r[s]=a)}return r}async function Dt({commitId:e,commitSha:t,metadataUpdate:r,runStatusUpdate:s,archiveCurrentRun:a,updateCallback:o}){for(let c=0;c<=4;c++)try{return await je().transaction().execute(async m=>{const u=await m.selectFrom("commits").select(["id","metadata"]).$if(!!e,f=>f.where("id","=",e)).$if(!!t,f=>f.where("sha","=",t)).executeTakeFirst();if(!u)return Me(`CodeYam Error: updateCommitMetadata(): Commit ${e} not found`),null;const p=u.metadata||{};if(s)s.lastUpdatedAt??(s.lastUpdatedAt=new Date().toISOString()),r=Gr(r??{},{currentRun:s});else if(!r&&!o)return p;const h=r?Gr(p,r):p;if(a&&h.currentRun){const f={...h.currentRun,archivedAt:new Date().toISOString()};h.historicalRuns=[...h.historicalRuns||[],f]}o&&await o(h);try{return await m.updateTable("commits").set({metadata:JSON.stringify(h)}).where("id","=",u.id).returning(["id"]).executeTakeFirst()?h:(Me(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`),p)}catch(f){return Me(`CodeYam Error: updateCommitMetadata(): Failed to update commit ${e}`,f),p}})}catch(m){const u=m instanceof Error&&m.message.includes("database is locked");if(u&&c<4){const p=250*Math.pow(2,c);await new Promise(h=>setTimeout(h,p));continue}return Me(`CodeYam Error: updateCommitMetadata(): Transaction failed for commit ${e}${u?` after ${c+1} attempts`:""}`,m),null}return null}async function dl(e,t,r="analysis"){try{return await je().transaction().execute(async s=>{const a=await s.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!a)return Me(`CodeYam Error: updateFreshAnalysisMetadata(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const o=Et(a);return t(o.metadata,o),await s.updateTable("analyses").set({metadata:JSON.stringify(o.metadata)}).where("id","=",e).returningAll().executeTakeFirst()?o.metadata:(Me(`CodeYam Error: updateFreshAnalysisMetadata(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(s){return Me(`CodeYam Error: updateFreshAnalysisMetadata(): Transaction failed for analysis ${e} (source: ${r})`,s,{analysisId:e,source:r}),null}}async function An(e,t,r="capture"){for(let o=0;o<=4;o++)try{return await je().transaction().execute(async i=>{const l=await i.selectFrom("analyses").selectAll().where("id","=",e).executeTakeFirst();if(!l)return Me(`CodeYam Error: updateFreshAnalysisStatus(): Analysis ${e} not found (source: ${r})`,null,{analysisId:e,source:r}),null;const c=Et(l);return t(c.status,c),await i.updateTable("analyses").set({status:JSON.stringify(c.status)}).where("id","=",e).returningAll().executeTakeFirst()?c.status:(Me(`CodeYam Error: updateFreshAnalysisStatus(): Failed to update analysis ${e} (source: ${r})`,null,{analysisId:e,source:r}),null)})}catch(i){const l=i instanceof Error&&i.message.includes("database is locked");if(l&&o<4){const c=250*Math.pow(2,o);await new Promise(m=>setTimeout(m,c));continue}return Me(`CodeYam Error: updateFreshAnalysisStatus(): Transaction failed for analysis ${e} (source: ${r})${l?` after ${o+1} attempts`:""}`,i,{analysisId:e,source:r}),null}return null}async function Cn({projectId:e,projectSlug:t,metadataUpdate:r,updateCallback:s}){if(!e&&!t)throw new Error("Either projectId or projectSlug must be provided");try{return await je().transaction().execute(async a=>{const o=await a.selectFrom("projects").selectAll().$if(!!e,c=>c.where("id","=",e)).$if(!!t,c=>c.where("slug","=",t)).executeTakeFirst();if(!o)return Me(`CodeYam Error: updateProjectMetadata(): Project ${e} not found`),null;const i=o.metadata||{};if(!r&&!s)return i;const l=r?Gr(i,r):i;s&&await s(l,ds(o));try{return await a.updateTable("projects").set({metadata:JSON.stringify(l)}).where("id","=",o.id).returningAll().executeTakeFirst()?l:(Me(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`),null)}catch(c){return Me(`CodeYam Error: updateProjectMetadata(): Failed to update project ${e}`,c),null}})}catch(a){return Me(`CodeYam Error: updateProjectMetadata(): Transaction failed for project ${e}`,a),null}}const Bm=()=>crypto.randomUUID();function Ym(e){const{id:t,projectId:r,analysisId:s,previousVersionId:a,analysis:o,metadata:i,data:l,...c}=e;return delete c.userScenarios,delete c.comments,"created_at"in c&&delete c.created_at,{...c,id:t??Bm(),metadata:i?JSON.stringify(i):null,project_id:r,analysis_id:s,previous_version_id:a}}async function Um(e){if(e.length===0)return[];const t=je(),r=e.map(Ym);try{return(await t.insertInto("scenarios").values(r).onConflict(_n(r[0],"id",["created_at"])).returningAll().execute()).map(nl)}catch(s){return Me("CodeYam Error: Database error upserting scenarios",s,{scenarioCount:e.length}),null}}const Wm=()=>crypto.randomUUID();function Jm(e){const{id:t,commitId:r,branchId:s,...a}=e;return delete a.commit,delete a.branch,{...a,id:t??Wm(),commit_id:r,branch_id:s}}async function Oo(e){if(e.length===0)return[];const t=je(),r=e.map(Jm);try{return(await t.insertInto("commit_branches").values(r).onConflict(_n(r[0],"id",["created_at"])).returningAll().execute()).map(Fa)}catch(s){return Me("CodeYam Error: Database error upserting commit branches",s,{commitBranchCount:e.length,commitBranchIds:e.map(a=>a.id)}),[]}}async function Hm(e,t){const r=je(),s={username:e,avatar_url:t};try{return await r.insertInto("github_users").values(s).onConflict(_n(s,"username",[])).returningAll().executeTakeFirst()||null}catch(a){return Me("CodeYam Error: Error upserting github user",a,{username:e,avatarUrl:t}),null}}const Vm=()=>crypto.randomUUID();function Gm(e,t){const{id:r,projectId:s,branchId:a,mergedBranchId:o,aiMessage:i,htmlUrl:l,analyzedAt:c,committedAt:m,author:u,metadata:p,files:h,...f}=e;return delete f.branch,delete f.mergedBranch,delete f.backgroundJob,delete f.analyses,delete f.parents,delete f.entities,delete f.commitBranches,{...f,id:r??Vm(),project_id:s??String(t),metadata:p?JSON.stringify(p):void 0,files:h?JSON.stringify(h):void 0,branch_id:a,merged_branch_id:o,author_github_username:u==null?void 0:u.username,html_url:l,ai_message:i,analyzed_at:c,committed_at:m}}async function qm({projectId:e,commits:t}){const r=je();try{const s=t.reduce((i,l)=>{const{author:c}=l;return c!=null&&c.username&&(c!=null&&c.avatarUrl)&&(i[c.username]=c.avatarUrl),i},{});for(const i in s)await Hm(i,s[i]);const a=t.map(i=>Gm(i,e));return(await r.insertInto("commits").values(a).onConflict(_n(a[0],"id",["created_at"])).returningAll().execute()).map(nn)}catch(s){return Me("CodeYam Error: Error saving commits",s,{projectId:e,commitCount:t.length,commitIds:t.map(a=>a.id).filter(Boolean)}),[]}}const Km=()=>crypto.randomUUID();function Qm(e){const{id:t,files:r,branches:s,team:a,analyzedAt:o,contentChangedAt:i,createdAt:l,updatedAt:c,metadata:m,...u}=e;return{...u,id:t??Km(),analyzed_at:o||null,content_changed_at:i||null,created_at:l||new Date().toISOString(),updated_at:c||null,metadata:m?JSON.stringify(m):null,github_token:null,configuration:null,team_id:null}}async function Zm(e){try{if(e.length===0)return null;const t=je(),r=e.map(o=>Qm(o)),s=await t.insertInto("projects").values(r).onConflict(_n(r[0],"id",["created_at"])).returningAll().execute(),a=s==null?void 0:s[0];return a?ds(a):null}catch(t){return console.log("Error saving project",t),null}}const qr=B.join(Pa.homedir(),".codeyam","secrets.json"),Kr=B.join(process.cwd(),".codeyam","secrets.json");async function Bt(){let e={};try{if(q.existsSync(Kr)){const o=await Ne.readFile(Kr,"utf8");e=JSON.parse(o)}}catch{console.warn(Wr.yellow("⚠ Could not read project secrets file, trying home directory"))}if(!e.OPENAI_API_KEY&&!e.ANTHROPIC_API_KEY)try{if(q.existsSync(qr)){const o=await Ne.readFile(qr,"utf8");e={...JSON.parse(o),...e}}}catch{console.warn(Wr.yellow("⚠ Could not read home secrets file, falling back to environment variables"))}const t={},r=e.OPENAI_API_KEY||process.env.OPENAI_API_KEY;r&&(t.OPENAI_API_KEY=r);const s=e.ANTHROPIC_API_KEY||process.env.ANTHROPIC_API_KEY;s&&(t.ANTHROPIC_API_KEY=s);const a=e.GROQ_API_KEY||process.env.GROQ_API_KEY;return a&&(t.GROQ_API_KEY=a),t}async function Xm(e,t=!0){const r=t?qr:Kr,s=B.dirname(r);await Ne.mkdir(s,{recursive:!0}),await Ne.writeFile(r,JSON.stringify(e,null,2)),await Ne.chmod(r,384)}function ep(e=!0){return e?qr:Kr}async function Lo(){const e=await Bt(),t=[];for(const r of t)e[r];return{isValid:!0,missing:[],secrets:e}}async function tp(e){console.log(),console.log(Wr.blue("ℹ Configuration needed")),console.log();const t={};for(const r of e)switch(r){case"OPENAI_API_KEY":const s=await Vd({type:"password",name:"key",message:"OpenAI API Key",validate:a=>a&&!a.startsWith("sk-")?"OpenAI API key should start with sk-":!0});s.key&&(t.OPENAI_API_KEY=s.key);break}return t}async function np(e=!0){const t=await Lo();if(t.isValid)return t.secrets;const r=await tp(t.missing),a={...await Bt(),...r};await Xm(a,e);const o=ep(e);return console.log(Wr.green(`✓ Configuration saved to ${o}`)),(await Lo()).secrets}function rp(e){const t=B.resolve(e),r=B.parse(t).root;return t===r||t===B.resolve(Pa.homedir())}function ul(e=process.cwd()){let t=B.resolve(e);const r=B.parse(t).root;for(;t!==r;){if(rp(t))return null;const s=B.join(t,".codeyam","config.json");if(q.existsSync(s))return t;t=B.dirname(t)}return null}let ml=ul();function ye(){return ml}function sp(e){ml=e}function pl(e){const t={...e};for(const r in e)if(r.includes(".")){const s=r.replace(/\./g,"");t[s]=e[r]}return t}const ap={"Accordion.Item":e=>`<CYAccordion.Root type="single" collapsible>${e}</CYAccordion.Root>`,"Accordion.Header":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"Accordion.Trigger":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1"><CYAccordion.Header>${e}</CYAccordion.Header></CYAccordion.Item></CYAccordion.Root>`,"Accordion.Content":e=>`<CYAccordion.Root type="single" collapsible><CYAccordion.Item value="item-1">${e}</CYAccordion.Item></CYAccordion.Root>`,"AlertDialog.Trigger":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Portal":e=>`<CYAlertDialog.Root>${e}</CYAlertDialog.Root>`,"AlertDialog.Overlay":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Content":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal>${e}</CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Title":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Description":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Action":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"AlertDialog.Cancel":e=>`<CYAlertDialog.Root><CYAlertDialog.Portal><CYAlertDialog.Content>${e}</CYAlertDialog.Content></CYAlertDialog.Portal></CYAlertDialog.Root>`,"Avatar.Image":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Avatar.Fallback":e=>`<CYAvatar.Root>${e}</CYAvatar.Root>`,"Checkbox.Indicator":e=>`<CYCheckbox.Root>${e}</CYCheckbox.Root>`,"Collapsible.Trigger":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"Collapsible.Content":e=>`<CYCollapsible.Root>${e}</CYCollapsible.Root>`,"ContextMenu.Trigger":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Portal":e=>`<CYContextMenu.Root>${e}</CYContextMenu.Root>`,"ContextMenu.Content":e=>`<CYContextMenu.Root><CYContextMenu.Portal>${e}</CYContextMenu.Portal></CYContextMenu.Root>`,"ContextMenu.Item":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.CheckboxItem":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioGroup":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.RadioItem":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.RadioGroup value="item-1">${e}</CYContextMenu.RadioGroup></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.ItemIndicator":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.CheckboxItem checked>${e}</CYContextMenu.CheckboxItem></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Label":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Separator":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.Sub":e=>`<CYContextMenu.Root><CYContextMenu.Content>${e}</CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubTrigger":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"ContextMenu.SubContent":e=>`<CYContextMenu.Root><CYContextMenu.Content><CYContextMenu.Sub>${e}</CYContextMenu.Sub></CYContextMenu.Content></CYContextMenu.Root>`,"Dialog.Trigger":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Portal":e=>`<CYDialog.Root>${e}</CYDialog.Root>`,"Dialog.Overlay":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Content":e=>`<CYDialog.Root><CYDialog.Portal>${e}</CYDialog.Portal></CYDialog.Root>`,"Dialog.Title":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Description":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"Dialog.Close":e=>`<CYDialog.Root><CYDialog.Portal><CYDialog.Content>${e}</CYDialog.Content></CYDialog.Portal></CYDialog.Root>`,"DropdownMenu.Trigger":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Portal":e=>`<CYDropdownMenu.Root>${e}</CYDropdownMenu.Root>`,"DropdownMenu.Content":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Portal>${e}</CYDropdownMenu.Portal></CYDropdownMenu.Root>`,"DropdownMenu.Item":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.CheckboxItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioGroup":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.RadioItem":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.RadioGroup value="item-1">${e}</CYDropdownMenu.RadioGroup></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.ItemIndicator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.CheckboxItem checked>${e}</CYDropdownMenu.CheckboxItem></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Label":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Separator":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.Sub":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content>${e}</CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubTrigger":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"DropdownMenu.SubContent":e=>`<CYDropdownMenu.Root><CYDropdownMenu.Content><CYDropdownMenu.Sub>${e}</CYDropdownMenu.Sub></CYDropdownMenu.Content></CYDropdownMenu.Root>`,"Form.Field":e=>`<CYForm.Root>${e}</CYForm.Root>`,"Form.Label":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Control":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Message":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.ValidityState":e=>`<CYForm.Root><CYForm.Field name="test-field">${e}</CYForm.Field></CYForm.Root>`,"Form.Submit":e=>`<CYForm.Root>${e}</CYForm.Root>`,"HoverCard.Trigger":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Portal":e=>`<CYHoverCard.Root>${e}</CYHoverCard.Root>`,"HoverCard.Content":e=>`<CYHoverCard.Root><CYHoverCard.Portal>${e}</CYHoverCard.Portal></CYHoverCard.Root>`,"Menubar.Menu":e=>`<CYMenubar.Root>${e}</CYMenubar.Root>`,"Menubar.Trigger":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Portal":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Content":e=>`<CYMenubar.Root><CYMenubar.Menu>${e}</CYMenubar.Menu></CYMenubar.Root>`,"Menubar.Item":e=>`<CYMenubar.Root><CYMenubar.Menu><CYMenubar.Content>${e}</CYMenubar.Content></CYMenubar.Menu></CYMenubar.Root>`,"NavigationMenu.List":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"NavigationMenu.Item":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Trigger":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Content":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Link":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item>${e}</CYNavigationMenu.Item></CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Indicator":e=>`<CYNavigationMenu.Root><CYNavigationMenu.List><CYNavigationMenu.Item><CYNavigationMenu.Trigger />{/* Dummy trigger for context */}</CYNavigationMenu.Item>${e}</CYNavigationMenu.List></CYNavigationMenu.Root>`,"NavigationMenu.Viewport":e=>`<CYNavigationMenu.Root>${e}</CYNavigationMenu.Root>`,"Popover.Trigger":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Portal":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Popover.Content":e=>`<CYPopover.Root><CYPopover.Portal>${e}</CYPopover.Portal></CYPopover.Root>`,"Popover.Close":e=>`<CYPopover.Root><CYPopover.Content>${e}</CYPopover.Content></CYPopover.Root>`,"Popover.Anchor":e=>`<CYPopover.Root>${e}</CYPopover.Root>`,"Progress.Indicator":e=>`<CYProgress.Root value={50}>${e}</CYProgress.Root>`,"RadioGroup.Item":e=>`<CYRadioGroup.Root>${e}</CYRadioGroup.Root>`,"RadioGroup.Indicator":e=>`<CYRadioGroup.Root><CYRadioGroup.Item value="item-1">${e}</CYRadioGroup.Item></CYRadioGroup.Root>`,"ScrollArea.Viewport":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Scrollbar":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"ScrollArea.Thumb":e=>`<CYScrollArea.Root><CYScrollArea.Scrollbar orientation="vertical">${e}</CYScrollArea.Scrollbar></CYScrollArea.Root>`,"ScrollArea.Corner":e=>`<CYScrollArea.Root>${e}</CYScrollArea.Root>`,"Select.Trigger":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Value":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Icon":e=>`<CYSelect.Root><CYSelect.Trigger>${e}</CYSelect.Trigger></CYSelect.Root>`,"Select.Portal":e=>`<CYSelect.Root>${e}</CYSelect.Root>`,"Select.Content":e=>`<CYSelect.Root><CYSelect.Portal>${e}</CYSelect.Portal></CYSelect.Root>`,"Select.Viewport":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Item":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.ItemText":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.ItemIndicator":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Item value="item-1">${e}</CYSelect.Item></CYSelect.Content></CYSelect.Root>`,"Select.Group":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Select.Label":e=>`<CYSelect.Root><CYSelect.Content><CYSelect.Group>${e}</CYSelect.Group></CYSelect.Content></CYSelect.Root>`,"Select.Separator":e=>`<CYSelect.Root><CYSelect.Content>${e}</CYSelect.Content></CYSelect.Root>`,"Slider.Track":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Slider.Range":e=>`<CYSlider.Root><CYSlider.Track>${e}</CYSlider.Track></CYSlider.Root>`,"Slider.Thumb":e=>`<CYSlider.Root>${e}</CYSlider.Root>`,"Switch.Thumb":e=>`<CYSwitch.Root>${e}</CYSwitch.Root>`,"Tabs.List":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Tabs.Trigger":e=>`<CYTabs.Root defaultValue="tab1"><CYTabs.List>${e}</CYTabs.List></CYTabs.Root>`,"Tabs.Content":e=>`<CYTabs.Root defaultValue="tab1">${e}</CYTabs.Root>`,"Toast.Root":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"Toast.Title":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Description":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Action":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Close":e=>`<CYToast.Provider><CYToast.Root>${e}</CYToast.Root></CYToast.Provider>`,"Toast.Viewport":e=>`<CYToast.Provider>${e}</CYToast.Provider>`,"ToggleGroup.Item":e=>`<CYToggleGroup.Root type="single">${e}</CYToggleGroup.Root>`,"Toolbar.Button":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Link":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.Separator":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleGroup":e=>`<CYToolbar.Root>${e}</CYToolbar.Root>`,"Toolbar.ToggleItem":e=>`<CYToolbar.Root><CYToolbar.ToggleGroup type="single">${e}</CYToolbar.ToggleGroup></CYToolbar.Root>`,"Tooltip.Root":e=>`<CYTooltip.Provider>${e}</CYTooltip.Provider>`,"Tooltip.Trigger":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Portal":e=>`<CYTooltip.Provider><CYTooltip.Root>${e}</CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Content":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Portal>${e}</CYTooltip.Portal></CYTooltip.Root></CYTooltip.Provider>`,"Tooltip.Arrow":e=>`<CYTooltip.Provider><CYTooltip.Root><CYTooltip.Content>${e}</CYTooltip.Content></CYTooltip.Root></CYTooltip.Provider>`};pl(ap);const op={"Command.Input":e=>`<CYCommand>${e}</CYCommand>`,"Command.List":e=>`<CYCommand>${e}</CYCommand>`,"Command.Item":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Group":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Separator":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Empty":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Loading":e=>`<CYCommand><CYCommand.List>${e}</CYCommand.List></CYCommand>`,"Command.Shortcut":e=>`<CYCommand><CYCommand.List><CYCommand.Item value="x">${e}</CYCommand.Item></CYCommand.List></CYCommand>`,"Command.Dialog":e=>`<CYCommand.Dialog open>${e}</CYCommand.Dialog>`};pl(op);function qn(e,t,r=new WeakSet){if(!t)return e;if(!e)return t;try{if(typeof t=="object"&&t!==null){if(r.has(t))throw new Error("Circular reference detected during deep merge");r.add(t)}if(Array.isArray(t)){const a=Array.isArray(e)?e:[],o=[];for(let i=0;i<t.length;i++){const l=t[i];l&&typeof l=="object"&&!Array.isArray(l)||Array.isArray(l)?o[i]=qn(a[i],l,r):o[i]=l}return o}const s={...e};for(const a in t)if(t[a]===null)s[a]=null;else if(Array.isArray(t[a])){const o=Array.isArray(e[a])?e[a]:[];s[a]=[];for(let i=0;i<t[a].length;i++){const l=t[a][i];typeof l=="object"&&l!==null?s[a][i]=qn(o[i],l,r):s[a][i]=l}}else typeof t[a]=="object"&&t[a]!==null?s[a]=qn(s[a]??{},t[a],r):s[a]=t[a];return s}catch(s){throw console.log("CodeYam: Error merging data",e,t),s}}async function ip({projectId:e,commit:t,branch:r}){var l,c,m,u,p,h,f;let s;const a={commitId:t.id,branchId:r.id,active:!0},o=await Dm({projectId:e,commitId:t.id,includeBranches:!0});if(o&&o.length>0){s=(l=o.sort((y,x)=>{var b,w,v,C;return(((w=(b=y.branch.metadata)==null?void 0:b.permanent)==null?void 0:w.order)??999)-(((C=(v=x.branch.metadata)==null?void 0:v.permanent)==null?void 0:C.order)??999)})[0])==null?void 0:l.branch,s&&((m=(c=r.metadata)==null?void 0:c.permanent)==null?void 0:m.order)!==void 0&&(((p=(u=r.metadata)==null?void 0:u.permanent)==null?void 0:p.order)<=((f=(h=s.metadata)==null?void 0:h.permanent)==null?void 0:f.order)?s=r:a.active=!1);const g=o.filter(y=>y.active&&y.branch.id!==s.id||!y.active&&y.branch.id===s.id);g.length>0&&await Oo(g.map(y=>({...y,active:y.branchId===s.id})))}(o==null?void 0:o.find(g=>g.branchId===a.branchId))||await Oo([a])}let Fo=!1;function Yt(){if(process.env.SQLITE_PATH)return process.env.SQLITE_PATH;const e=ye();if(!e)throw new Error("Could not find project root. Please run this command inside a CodeYam project.");return X.join(e,".codeyam","db.sqlite3")}async function Fe(){if(!Fo){Fo=!0;const t=ye();t&&await cp(t)}const e=await np();process.env.SQLITE_PATH=Yt(),e.OPENAI_API_KEY&&(process.env.OPENAI_API_KEY=e.OPENAI_API_KEY)}async function dS(){try{return await Fe(),await Ba({slug:"__test_connection__",silent:!0}),!0}catch(e){return console.error("Database connection test failed:",e),!1}}async function Oe(e){await Fe();const t=await Ba({slug:e,silent:!0});if(!t)throw new Error(`Project with slug "${e}" not found in database`);const r=await za({projectId:t.id,names:["_local"]}),s=r==null?void 0:r[0];if(!s)throw new Error(`Local development branch not found for project "${e}". Please run "codeyam init" to set up local analysis.`);return{project:t,branch:s}}async function uS(e){await Fe();const t=await Ba({slug:e.slug,silent:!0});if(t)return{project:t,created:!1};const r={id:ja(),name:e.slug,slug:e.slug,path:`local:${process.cwd()}`,metadata:{packageManager:e.packageManager,unapprovedPaths:e.unapprovedPaths,webapps:e.webapps}};try{return{project:await Zm([r]),created:!0}}catch(s){throw new Error(`Failed to create project: ${s.message}`)}}async function mS(e){await Fe();const t=await za({projectId:e.id,names:["_local"]});if(t&&t.length>0)return{branch:t[0],created:!1};const r={projectId:e.id,name:"_local",ref:"_local",primary:!0,activeAt:new Date().toISOString(),contentChangedAt:new Date().toISOString(),metadata:{contributors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],commits:{total:0,last7Days:[]},timeline:[{title:"Local branch created",date:new Date().toISOString(),authors:[{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"}],sha:"local-init"}]}},s=await km([r]);if(!s||s.length===0)throw new Error("Failed to create _local branch");return{branch:s[0],created:!0}}async function lp(e,t,r){await Fe();const s=ye(),a=Am(`${e.slug}-local-${Date.now()}-${Math.random()}`),o=r.map(c=>{let m="";if(s)try{if(m=Pe(`git diff HEAD -- "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10}),!m)try{const u=Pe(`cat "${c}"`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]});if(u){const p=u.split(`
30
- `);m=`@@ -0,0 +1,${p.length} @@
31
- ${p.map(h=>`+${h}`).join(`
32
- `)}`}}catch{}}catch{}return{fileName:c,status:"modified",patch:m}}),i={sha:a,projectId:e.id,branchId:t.id,message:`Local analysis: ${r.join(", ")} at ${new Date().toISOString()}`,url:`local://codeyam/${e.slug}/${a}`,htmlUrl:`local://codeyam/${e.slug}/${a}`,author:{username:"local-dev",avatarUrl:"https://github.com/identicons/local-dev.png"},committedAt:new Date().toISOString(),parents:[],files:o,metadata:{baseline:!1,receivedAt:new Date().toISOString()}},l=await qm({projectId:e.id,commits:[i]});if(!l||l.length===0)throw new Error("Failed to create fake commit");return await ip({projectId:e.id,commit:l[0],branch:t}),l[0]}async function cp(e){const t=X.join(e,".codeyam","db.sqlite3"),r=X.join(e,".codeyam","config.json");if(q.existsSync(t)||!q.existsSync(r))return!1;const{default:s}=await import("./init-DdqKD2p4.js");return await s.handler({force:!0,autoInit:!0,$0:"",_:[]}),!0}async function ln(){await Fe();const e=await tt({excludeMetadata:!0});if(!e||e.length===0)return[];const t=new Map;for(const c of e){const m=`${c.name}::${c.filePath}`,u=t.get(m);(!u||c.createdAt&&u.createdAt&&c.createdAt>u.createdAt)&&t.set(m,c)}const r=[...t.values()],s=e.map(c=>c.sha),a=await Lt({entityShas:s,excludeMetadata:!0}),o=new Map;if(a)for(const c of a)o.has(c.entitySha)||o.set(c.entitySha,[]),o.get(c.entitySha).push(c);const i=new Map;for(const c of e){const m=`${c.name}::${c.filePath}`,u=i.get(m)||[];u.push(c.sha),i.set(m,u)}return r.map(c=>{const m=o.get(c.sha)||[];if(m.length>0)return{...c,analyses:m};const u=`${c.name}::${c.filePath}`,p=i.get(u)||[];for(const h of p){if(h===c.sha)continue;const f=o.get(h);if(f&&f.length>0)return{...c,analyses:f}}return{...c,analyses:[]}})}async function ms(e,t){await Fe();const r=await Lt({entityShas:[e],limit:1});if(r&&r.length>0&&t){const s=await ll({projectId:r[0].projectId,sha:e});if(s)for(const a of r)a.entity=s}return r||[]}async function ps(e){if(await Fe(),e.name&&e.projectId){const r=await Lt({projectId:e.projectId,entityName:e.name,limit:10});if(r&&r.length>0){const s=r.filter(o=>{const i=o.scenarios&&o.scenarios.length>0,l=!e.filePath||o.filePath===e.filePath;return i&&l});if(s.length>0)return s.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),s[0];const a=r.filter(o=>o.scenarios&&o.scenarios.length>0);if(a.length>0)return a.sort((o,i)=>{const l=new Date(o.createdAt||0).getTime();return new Date(i.createdAt||0).getTime()-l}),a[0]}}const t=await Lt({entityShas:[e.sha],limit:1});return t&&t.length>0?t[0]:null}async function hl(e){await Fe();const t=await Lt({entityShas:[e],limit:1});return(t==null?void 0:t[0])??null}async function an(e){await Fe();const t=await De();if(!t)return null;const{project:r}=await Oe(t);return await ll({projectId:r.id,sha:e})}async function fl(e){var s,a,o,i,l,c,m,u;await Fe();const t=[],r=[];if((s=e.metadata)!=null&&s.importedExports&&e.metadata.importedExports.length>0){const p=e.metadata.importedExports;for(const h of p){if(!h.filePath||!h.name)continue;const f=h.resolvedFilePath??h.filePath,g=h.resolvedName??h.name;let y=await tt({projectId:e.projectId,filePaths:[f],names:[g]});if((!y||y.length===0)&&h.resolvedIsDefault&&(y=await tt({projectId:e.projectId,filePaths:[f],names:["default"]})),y&&y.length>0){const x=y[0],b=await Lt({entityShas:[x.sha],limit:1});let w,v,C;if(b&&b.length>0&&b[0].scenarios){const A=b[0],S=A.scenarios||[],E=S.length,N=S.find(j=>{var T,P;return(P=(T=j.metadata)==null?void 0:T.screenshotPaths)==null?void 0:P[0]});N&&(w=(o=(a=N.metadata)==null?void 0:a.screenshotPaths)==null?void 0:o[0],v=N.name),C={status:((i=x.metadata)==null?void 0:i.previousVersionWithAnalyses)||A.entitySha!==x.sha?"out_of_date":"up_to_date",scenarioCount:E,timestamp:A.createdAt?new Date(A.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else C={status:"not_analyzed"};t.push({...x,screenshotPath:w,scenarioName:v,analysisStatus:C})}}}if((l=e.metadata)!=null&&l.importedBy){const p=[];for(const h in e.metadata.importedBy)for(const f in e.metadata.importedBy[h]){const g=e.metadata.importedBy[h][f];g.shas&&p.push(...g.shas)}if(p.length>0){const h=await tt({projectId:e.projectId,shas:p});if(h)for(const f of h){const g=await Lt({entityShas:[f.sha],limit:1});let y,x,b;if(g&&g.length>0&&g[0].scenarios){const w=g[0],v=w.scenarios||[],C=v.length,A=v.find(E=>{var N,k;return(k=(N=E.metadata)==null?void 0:N.screenshotPaths)==null?void 0:k[0]});A&&(y=(m=(c=A.metadata)==null?void 0:c.screenshotPaths)==null?void 0:m[0],x=A.name),b={status:((u=f.metadata)==null?void 0:u.previousVersionWithAnalyses)||w.entitySha!==f.sha?"out_of_date":"up_to_date",scenarioCount:C,timestamp:w.createdAt?new Date(w.createdAt).toLocaleDateString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit"}):void 0}}else b={status:"not_analyzed"};r.push({...f,screenshotPath:y,scenarioName:x,analysisStatus:b})}}}return{importedEntities:t,importingEntities:r}}async function De(){try{const e=ye();if(!e)return null;const t=X.join(e,".codeyam","config.json");return JSON.parse(await Se.readFile(t,"utf8")).projectSlug||null}catch(e){return console.error("[getProjectSlug] Error:",e),null}}async function Pn(){await Fe();try{const e=await De();if(!e)return null;const{project:t,branch:r}=await Oe(e),s=await Vr({projectId:t.id,branchId:r.id,limit:1,skipRelations:!0});return s&&s.length>0?s[0]:null}catch(e){return console.error("[getCurrentCommit] Error:",e),null}}async function hs(){try{const e=ye();if(!e)return null;const t=X.join(e,".codeyam","config.json");return JSON.parse(await Se.readFile(t,"utf8"))}catch(e){return console.error("[getProjectConfig] Error:",e),null}}async function gl(e){try{const t=ye();if(!t)return console.error("[getEntityCodeFromFilesystem] No project root found"),null;if(!e.filePath)return console.error("[getEntityCodeFromFilesystem] Entity has no filePath"),null;const r=X.join(t,e.filePath);return await Se.readFile(r,"utf8")}catch(t){return console.error("[getEntityCodeFromFilesystem] Error reading file:",t),null}}async function yl(e){try{const t=ye();if(!t||!e.filePath)return!1;const r=X.join(t,e.filePath),a=(await Se.stat(r)).mtime.getTime(),o=e.updatedAt||e.createdAt;if(!o)return!1;const i=new Date(o).getTime();return a>i+1e3}catch{return!1}}async function xl(e){if(await Fe(),!e.filePath||!e.name||!e.projectId)return console.error("[getEntityHistory] Entity missing required fields (filePath, name, or projectId)"),[];const t=await tt({projectId:e.projectId,filePaths:[e.filePath],names:[e.name]});if(!t||t.length===0)return[];const r=t.map(i=>i.sha),s=await Lt({entityShas:r}),a=new Map;if(s)for(const i of s)a.has(i.entitySha)||a.set(i.entitySha,[]),a.get(i.entitySha).push(i);for(const[i,l]of a.entries())l.sort((c,m)=>{const u=new Date(c.createdAt||0).getTime();return new Date(m.createdAt||0).getTime()-u});const o=t.map(i=>({...i,analyses:a.get(i.sha)||[]}));return o.sort((i,l)=>{var u,p;const c=((u=i.analyses[0])==null?void 0:u.createdAt)||i.createdAt||"",m=((p=l.analyses[0])==null?void 0:p.createdAt)||l.createdAt||"";return new Date(m).getTime()-new Date(c).getTime()}),o}async function bl(e){try{const t=ye();if(!t)return console.error("[updateProjectConfig] No project root found"),!1;const r=X.join(t,".codeyam","config.json"),s=await Se.readFile(r,"utf8"),a=JSON.parse(s),o={...a,...e},i=JSON.stringify(o,null,2);if(await Se.writeFile(r,i,"utf8"),a.projectSlug){const l={};e.universalMocks!==void 0&&(l.universalMocks=e.universalMocks),e.pathsToIgnore!==void 0&&(l.pathsToIgnore=e.pathsToIgnore),e.webapps!==void 0&&(l.webapps=e.webapps),await Cn({projectSlug:a.projectSlug,metadataUpdate:l})}return!0}catch(t){return console.error("[updateProjectConfig] Error:",t),!1}}const dp=Object.freeze(Object.defineProperty({__proto__:null,getAllEntities:ln,getAnalysesForEntity:ms,getAnalysisForExactEntitySha:hl,getCurrentCommit:Pn,getEntityBySha:an,getEntityCodeFromFilesystem:gl,getEntityHistory:xl,getLatestAnalysisForEntity:ps,getProjectConfig:hs,getProjectSlug:De,getRelatedEntities:fl,hasFileBeenModifiedSinceEntity:yl,requireBranchAndProject:Oe,updateProjectConfig:bl},Symbol.toStringTag,{value:"Module"})),wl="secrets.json";function vl(e){return X.join(e,".codeyam",wl)}function Nl(){return X.join(oa.homedir(),".codeyam",wl)}async function fs(e){let t={};try{const r=Nl(),s=await Se.readFile(r,"utf-8");t=JSON.parse(s)}catch{}try{const r=vl(e),s=await Se.readFile(r,"utf-8"),a=JSON.parse(s);t={...t,...a}}catch{}return t}async function up(e,t,r=!0){const s=r?Nl():vl(e),a=X.dirname(s);await Se.mkdir(a,{recursive:!0}),await Se.writeFile(s,JSON.stringify(t,null,2)+`
33
- `,"utf-8")}async function mp(e){const t=await fs(e);return!!(t.ANTHROPIC_API_KEY&&t.ANTHROPIC_API_KEY.length>0)||!!(t.OPENAI_API_KEY&&t.OPENAI_API_KEY.length>0)||!!(t.GROQ_API_KEY&&t.GROQ_API_KEY.length>0)||!!(t.OPENROUTER_API_KEY&&t.OPENROUTER_API_KEY.length>0)}const pp=3;let Wn=0;async function Cr(e){if(!e||e.length===0)return[];if(Wn>=pp)return console.warn(`[Loader] Circuit breaker open (${Wn} consecutive timeouts), skipping entity fetch for ${e.length} entities`),[];const t=Math.min(Math.max(e.length*2e3,1e4),6e4);return new Promise(r=>{let s=!1;const a=setTimeout(()=>{s||(s=!0,Wn++,console.warn(`[Loader] Entity fetch timeout after ${t}ms for ${e.length} entities`),r([]))},t);tt({shas:e,excludeMetadata:!0}).then(o=>{s||(s=!0,clearTimeout(a),Wn=0,r(o||[]))}).catch(()=>{s||(s=!0,clearTimeout(a),Wn++,r([]))})})}function hp({sourcePath:e,destinationPath:t,excludes:r,silent:s}){if(process.platform!=="darwin")return!1;if(Rt(t))try{if(Fd(t).length>0)return!1;Ds(t,{recursive:!0})}catch{return!1}try{Pe(`cp -c -R "${e}" "${t}"`,{stdio:"pipe",timeout:3e5});for(const a of r)if(a.includes("*"))try{Pe(`rm -rf "${Mo(t,a)}"`,{stdio:"pipe",shell:"/bin/sh"})}catch{}else{const o=Mo(t,a);Rt(o)&&Ds(o,{recursive:!0,force:!0})}return s||console.log(`Directory cloned (APFS CoW) from ${e} to ${t}`),!0}catch{if(Rt(t))try{Ds(t,{recursive:!0})}catch{}return!1}}async function fp({sourcePath:e,destinationPath:t,excludes:r=[],keepExisting:s=!1,silent:a=!1,extraArgs:o=[]}){const i=Date.now();if(!s&&o.length===0&&hp({sourcePath:e,destinationPath:t,excludes:r,silent:a})){if(!a){const c=((Date.now()-i)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${c}s]`)}return}return new Promise((l,c)=>{const m=e.endsWith("/")?e:`${e}/`,u=t.endsWith("/")?t:`${t}/`,p=["-a","--no-specials"];s||p.push("--delete","--force"),p.push(...o);for(const f of r)p.push(`--exclude=${f}`);p.push(m,u);const h=St("rsync",p);h.on("exit",f=>{if(f===0){if(!a){const g=((Date.now()-i)/1e3).toFixed(1);console.log(`Directory synced from ${e} to ${t} [Time: ${g}s]`)}l()}else console.error(`CodeYam Error: rsync failed with code: ${f}`,JSON.stringify({rsyncArgs:p},null,2)),c(new Error(`rsync failed with exit code ${f}`))}),h.on("error",f=>{a||console.log("Error occurred:",f),c(f)})})}const gp=Ma(Ta);async function yp(e){return new Promise(t=>setTimeout(t,e))}function xp(e){try{return process.kill(e,0),!0}catch{return!1}}async function Cl(e){try{const{stdout:t}=await gp(`ps -A -o pid=,ppid= | awk '$2 == ${e} { print $1 }'`),r=t.trim().split(`
34
- `).filter(a=>a.trim()).map(a=>parseInt(a.trim(),10)).filter(a=>!isNaN(a)),s=[...r];for(const a of r){const o=await Cl(a);s.push(...o)}return s}catch{return[]}}function zo(e,t,r){try{process.kill(e,t)}catch(s){r==null||r(`Error sending ${t} to process ${e}: ${s}`)}}async function bp(e,t,r){const s=await Cl(e);for(const a of s.reverse())await zo(a,t,r);await zo(e,t,r)}async function tr(e,t=console.log,r=1){if(e==process.pid)throw new Error(`Eek! killProcess(${e}) called on self!`);let s=0;async function a(o,i){await bp(e,o,t);for(let l=0;l<i;l++)if(await yp(1e3),s+=1e3,!await xp(e))return t(`Process tree ${e} successfully killed with ${o} after ${s/1e3} seconds.`),!0;return t(`Process tree still running after ${o}...`),!1}if(await a("SIGINT",5)||await a("SIGTERM",5))return!0;for(let o=0;o<r;o++)if(await a("SIGKILL",2))return!0;return console.warn(`CodeYam Warning: Completely failed to kill process tree ${e} after ${s/1e3} seconds.`),!1}function wp(e){const t=new Date().toISOString();e.currentRun&&(e.currentRun.archivedAt=t,e.historicalRuns??(e.historicalRuns=[]),e.historicalRuns.push(e.currentRun)),e.currentRun={id:iu(),createdAt:t}}Kd.config({quiet:!0});var Sl=(e=>(e.Server="server",e.Analyzer="analyzer",e.Capture="capture",e.Controller="controller",e.Worker="worker",e.Project="project",e.Other="other",e))(Sl||{});class vp extends Qd{constructor(){super(...arguments),this.processes=new Map}register(t){const r=Zd(),{process:s,type:a,name:o,metadata:i,parentId:l}=t,c={id:r,type:a,name:o,pid:s.pid,state:"running",startedAt:Date.now(),metadata:i,parentId:l,children:[]};if(this.processes.set(r,{info:c,process:s}),l){const p=this.processes.get(l);p&&(p.info.children=p.info.children||[],p.info.children.push(r))}const m=(p,h)=>{this.handleProcessExit(r,p,h)},u=p=>{this.handleProcessError(r,p)};return s.on("exit",m),s.on("error",u),s.__cleanup=()=>{s.removeListener("exit",m),s.removeListener("error",u)},this.emit("processStarted",c),r}unregister(t){const r=this.processes.get(t);return r?(r.process.__cleanup&&r.process.__cleanup(),this.processes.delete(t),!0):!1}getInfo(t){const r=this.processes.get(t);return r?{...r.info}:null}listAll(){return Array.from(this.processes.values()).map(t=>({...t.info}))}listByType(t){return this.listAll().filter(r=>r.type===t)}listByState(t){return this.listAll().filter(r=>r.state===t)}findByName(t){return this.listAll().filter(r=>r.name===t)}async shutdown(t,r={}){const s=this.processes.get(t);if(!s)throw new Error(`Process not found: ${t}`);const{info:a,process:o}=s;if(a.state==="completed"||a.state==="failed"||a.state==="killed")return;if(r.shutdownChildren&&a.children&&a.children.length>0&&await Promise.all(a.children.map(l=>this.shutdown(l,r))),o.pid)try{await tr(o.pid,l=>console.log(`[Process ${t}] ${l}`))}catch(l){console.warn(`Error killing process ${t}:`,l)}await new Promise(l=>setTimeout(l,100)),a.state==="running"&&(a.state="killed",a.endedAt=Date.now());const i=o.__cleanup;i&&i()}async shutdownByType(t,r={}){const s=this.listByType(t);await Promise.all(s.map(a=>this.shutdown(a.id,r)))}async shutdownAll(t={}){const r=this.listAll();await Promise.all(r.map(s=>this.shutdown(s.id,t)))}cleanupCompleted(t={}){const{retentionMs:r=6e4}=t,s=Date.now();for(const[a,o]of this.processes.entries()){const{info:i}=o;if((i.state==="completed"||i.state==="failed"||i.state==="killed")&&i.endedAt&&s-i.endedAt>r){const l=o.process.__cleanup;l&&l(),this.processes.delete(a)}}}handleProcessExit(t,r,s){const a=this.processes.get(t);if(!a)return;const{info:o}=a;o.endedAt=Date.now(),o.exitCode=r,o.signal=s,r===0?o.state="completed":s?o.state="killed":o.state="failed",this.emit("processExited",o)}handleProcessError(t,r){const s=this.processes.get(t);if(!s)return;const{info:a}=s;a.endedAt=Date.now(),a.state="failed",a.metadata={...a.metadata,error:r.message},this.emit("processExited",a)}}let Us=null;function Np(){return Us||(Us=new vp),Us}const Cp={stdoutToConsole:!0,stdoutToFile:!0,stderrToConsole:!0,stderrToFile:!0};function Sp({command:e,args:t,workingDir:r,outputOptions:s=Cp,processName:a,env:o}){const i={...process.env,...o||{},CODEYAM_PROCESS_NAME:`codeyam-${a}`},l=St(e,t,{cwd:r,env:i});return Np().register({process:l,type:Sl.Other,name:a,metadata:{command:e,args:t,workingDir:r}}),{promise:new Promise(u=>{const p=f=>{const g=X.join(r,"log.txt");q.appendFile(g,f,y=>{y&&console.log("Error writing to log file:",y)})},h=(f,g="")=>{const y=new Date().toLocaleString();return f.split(`
35
- `).map(b=>b.trim()?`[${y}]${g} ${b}`:b).join(`
36
- `)};l.stdout.on("data",function(f){const g=(f==null?void 0:f.toString())??"",y=h(g);s.stdoutToConsole&&console.log(y),s.stdoutToFile&&p(y+`
37
- `),s.stdoutCallback&&s.stdoutCallback(g)}),l.stderr.on("data",function(f){const g=(f==null?void 0:f.toString())??"",y=h(g,"<STDERR>");s.stderrToConsole&&console.error(y),s.stderrToFile&&p(y+`
38
- `),s.stderrCallback&&s.stderrCallback(g)}),l.on("exit",function(f){u(f)})}),process:l}}function kp(e){const t=[];return Object.keys(e).forEach(r=>{const s=e[r];s!==void 0&&(typeof s=="boolean"?s&&t.push(`--${r}`):s!==null&&t.push(`--${r}`,String(s)))}),t}function Ep({absoluteCodeyamRootPath:e,startEnv:t,startArgs:r,outputOptions:s}){const a=Object.entries(t).map(([i,l])=>`${i}=${l}`).join(`
39
- `);q.writeFileSync(`${e}/.env`,a);const o=kp(r);return Sp({command:"node",args:["--enable-source-maps","./dist/project/start.js",...o],workingDir:e,outputOptions:s,processName:"analyzer",env:t})}const _p="/tmp/codeyam/local-dev";function kl(e){return B.join(_p,e)}function El(e){return B.join(kl(e),"codeyam")}function ht(e){return B.join(kl(e),"project")}function gs(e){return B.join(El(e),"log.txt")}const Ap=[".sync-metadata.json","__codeyamMocks__"];async function Pp(e,t={}){const{port:r,silent:s=!0}=t,a=ht(e);if(r)try{Pe(`lsof -ti:${r} | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}try{Pe(`lsof +D "${a}" 2>/dev/null | grep node | awk '{print $2}' | xargs kill -9 2>/dev/null || true`,{stdio:s?"ignore":"inherit"})}catch{}await new Promise(o=>setTimeout(o,500))}async function jp(e,t={}){const{killProcesses:r=!0,port:s,silent:a=!0}=t,o=ht(e),i=[],l=[];if(!q.existsSync(o))return{removed:i,errors:l};r&&await Pp(e,{port:s,silent:a});for(const c of Ap){const m=B.join(o,c);if(q.existsSync(m))try{(await Ne.stat(m)).isDirectory()?await Ne.rm(m,{recursive:!0,force:!0}):await Ne.unlink(m),i.push(c)}catch(u){l.push(`${c}: ${u instanceof Error?u.message:String(u)}`)}}return{removed:i,errors:l}}const Tp=B.dirname(os(import.meta.url));function Mp(e){let t=e;for(;t!==B.dirname(t);){const r=B.join(t,"package.json");if(q.existsSync(r))try{if(JSON.parse(q.readFileSync(r,"utf8")).name==="@codeyam/codeyam-cli")return t}catch{}t=B.dirname(t)}throw new Error("Could not find @codeyam/codeyam-cli package root")}function ys(){const e=Mp(Tp);return B.join(e,"analyzer-template")}function jn(e){return El(e)}function $p(){const e=ys();return q.existsSync(B.join(e,".finalized"))}async function Bo(e){const t=ys(),r=jn(e);if(!q.existsSync(t))throw new Error(`Analyzer template not found at ${t}. Did the build process complete successfully?`);await Ne.mkdir(B.dirname(r),{recursive:!0}),await fp({sourcePath:t,destinationPath:r,silent:!0}),q.existsSync(B.join(r,"dist"))||Pe("npm install --include=dev && npm run build",{cwd:r,stdio:"pipe",timeout:3e5})}function Tn(e,t,r,s){const a=jn(e);if(!q.existsSync(a))throw new Error(`Analyzer not found at ${a}. The analyzer template may not be initialized. Try running 'codeyam init' or contact support if the issue persists.`);const o=void 0;return Ep({absoluteCodeyamRootPath:a,startEnv:t,startArgs:r,outputOptions:{stdoutToConsole:!1,stdoutToFile:!0,stdoutCallback:o,stderrToConsole:!1,stderrToFile:!0,stderrCallback:o}})}function Ip(e){const t=ys(),r=jn(e),s=B.join(t,".build-info.json"),a=B.join(r,".build-info.json");if(!q.existsSync(s))return{isFresh:!1,reason:"Template build marker missing - template may be corrupted"};if(!q.existsSync(r))return{isFresh:!1,reason:"Cached analyzer does not exist"};if(!q.existsSync(a))return{isFresh:!1,reason:"Cached analyzer build marker missing - was created with old version"};try{const o=JSON.parse(q.readFileSync(s,"utf8")),i=JSON.parse(q.readFileSync(a,"utf8"));return o.buildTime>i.buildTime?{isFresh:!1,reason:`Template is newer (${o.buildTimestamp}) than cached version (${i.buildTimestamp})`}:{isFresh:!0}}catch(o){return{isFresh:!1,reason:`Error reading build markers: ${o.message}`}}}async function ir(e,t){const r=jn(e);if(!q.existsSync(r)){t.update("Creating analyzer..."),await Bo(e);return}const s=Ip(e);s.isFresh||(t.update(`Updating analyzer (${s.reason})...`),await Bo(e))}async function Ya(e){await jp(e,{killProcesses:!1})}const Rp=B.dirname(os(import.meta.url));function xs(){let e=Rp;for(;e!==B.dirname(e);){const t=B.join(e,"package.json");if(q.existsSync(t))try{if(JSON.parse(q.readFileSync(t,"utf8")).name==="@codeyam/codeyam-cli")return e}catch{}e=B.dirname(e)}return null}function Nn(e){if(!q.existsSync(e))return null;try{return JSON.parse(q.readFileSync(e,"utf8"))}catch{return null}}function Dp(){const e=xs();if(e){const t=[B.join(e,"src/webserver/build-info.json"),B.join(e,"codeyam-cli/src/webserver/build-info.json")];for(const r of t){const s=Nn(r);if(s!=null&&s.semanticVersion)return s.semanticVersion}}return"unknown"}function Op(){const e=xs();if(e){const t=B.join(e,"package.json");try{const r=JSON.parse(q.readFileSync(t,"utf8"));if(r.version)return r.version}catch{}}return"unknown"}const Ua=Dp(),Ws=Op();function Wa(){if(Ws!=="unknown"&&Ws!=="0.1.0")return Ws;const e=xs();if(e)for(const t of[B.join(e,"src/webserver/build-info.json"),B.join(e,"codeyam-cli/src/webserver/build-info.json")]){const r=Nn(t);if(r!=null&&r.buildNumber)return`dev (build ${r.buildNumber})`}return"dev"}function _l(e){const t=xs();let r=null;if(t){const c=[B.join(t,"src/webserver/build-info.json"),B.join(t,"codeyam-cli/src/webserver/build-info.json")];for(const m of c)if(r=Nn(m),r)break}const s=ys(),a=B.join(s,".build-info.json"),o=Nn(a);let i=null;if(e){const c=jn(e),m=B.join(c,".build-info.json");i=Nn(m)}let l=!1;return o&&i?l=o.buildTime>i.buildTime:o&&!i&&e&&(l=!0),{cliVersion:Ua,webserverVersion:r,templateVersion:o,cachedAnalyzerVersion:i,isCacheStale:l}}function bs(e){const t=jn(e),r=B.join(t,".build-info.json"),s=Nn(r);return(s==null?void 0:s.version)??null}function Al(){const e=ye();return e?B.join(e,".codeyam","server.json"):null}function ws(){const e=Al();if(!e||!q.existsSync(e))return null;try{const t=q.readFileSync(e,"utf8");return JSON.parse(t)}catch{return null}}function Ja(){const e=Al();if(e)try{q.unlinkSync(e)}catch{}}function Pl(e){try{return process.kill(e,0),!0}catch{return!1}}function jl(){try{const e=process.platform==="win32",r=Pe(e?'tasklist /FI "IMAGENAME eq node.exe" /FO CSV /NH':"ps aux | grep codeyam-server | grep -v grep",{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim();if(!r)return[];const s=[];if(e)for(const a of r.split(`
40
- `)){const o=a.match(/"[^"]*","(\d+)"/);if(o){const i=parseInt(o[1],10);if(!isNaN(i))try{Pe(`wmic process where "ProcessId=${i}" get CommandLine /FORMAT:LIST`,{encoding:"utf8",stdio:["pipe","pipe","pipe"]}).includes("codeyam-server")&&s.push(i)}catch{}}}else for(const a of r.split(`
41
- `)){const o=a.trim().split(/\s+/);if(o.length>=2){const i=parseInt(o[1],10);isNaN(i)||s.push(i)}}return s}catch{return[]}}function pS(){const e=ws();if(e)if(!Pl(e.pid))Ja();else return{running:!0,state:e};const t=jl();return t.length>0?{running:!0,pids:t}:{running:!1}}function Lp(e,t=5e3){if(e.length===0)return!0;const r=Date.now()+t;for(;Date.now()<r;){if(!e.some(a=>Pl(a)))return!0;Atomics.wait(new Int32Array(new SharedArrayBuffer(4)),0,0,100)}return!1}function hS(){let e=!1;const t=[],r=ws();if(r){try{process.kill(r.pid,"SIGTERM"),t.push(r.pid),e=!0}catch{}Ja()}const s=jl();for(const a of s)try{process.kill(a,"SIGTERM"),t.includes(a)||t.push(a),e=!0}catch{}return Lp(t),e}const Fp="/assets/globals-CQPR0pFR.css";function Yo({text:e,subtext:t,linkText:r,linkTo:s}){const[a,o]=M(!1);return a?null:n("div",{className:"bg-blue-100 border rounded border-blue-800 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-yellow-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-blue-900",children:e}),n("p",{className:"text-xs text-blue-700 mt-0.5",children:t})]}),n(fe,{to:s,className:"shrink-0 px-4 py-2 bg-blue-600 text-white text-sm font-medium rounded hover:bg-blue-700 transition-colors",children:r})]}),n("button",{type:"button",onClick:()=>o(!0),className:"shrink-0 ml-4 p-1 rounded text-blue-600 hover:text-blue-800 hover:bg-blue-100 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}function zp({version:e}){return n("div",{className:"px-6 sm:px-12 pb-8 mt-auto pt-8",children:d("div",{className:"border-t border-cygray-30 pt-6 flex flex-wrap justify-between items-center gap-4",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"font-mono text-sm font-semibold tracking-widest text-cyblack-100",children:"CODEYAM"}),e&&n("span",{className:"font-mono text-xs text-gray-400",children:e})]}),d("div",{className:"flex items-center gap-4 font-mono text-xs uppercase tracking-widest",children:[n("a",{href:"https://blog.codeyam.com/",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Read the Blog"}),n("span",{className:"text-cygray-30",children:"|"}),n("a",{href:"https://discord.gg/x4uAgaRdwF",target:"_blank",rel:"noopener noreferrer",className:"text-cyblack-100 underline underline-offset-4 hover:text-primary-100",children:"Join Discord"})]})]})})}function Bp({serverVersion:e}){const[t,r]=M("stale"),[s,a]=M(null),o=async()=>{r("restarting"),a(null);try{if(!(await fetch("/api/restart-server",{method:"POST"})).ok)throw new Error("Failed to restart server");r("reconnecting");let l=0;const c=30,m=1e3,u=async()=>{try{if((await fetch("/api/health")).ok){window.location.reload();return}}catch{}l++,l<c?setTimeout(()=>void u(),m):(a("Server took too long to restart. Please refresh manually."),r("stale"))};setTimeout(()=>void u(),500)}catch(i){a(i instanceof Error?i.message:"Failed to restart server"),r("stale")}};return n("div",{className:"bg-amber-100 border rounded border-amber-700 shadow-sm mx-6 mt-6",children:n("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-amber-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"})})}),d("div",{className:"flex-1",children:[t==="stale"&&d(pe,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Dashboard server is out of date"}),d("p",{className:"text-xs text-amber-700 mt-0.5",children:["Server version: ",e,". A newer version of CodeYam CLI is installed. Restart the server to get the latest features."]}),s&&n("p",{className:"text-xs text-red-600 mt-1",children:s})]}),t==="restarting"&&d(pe,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Restarting server..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Please wait while the server restarts."})]}),t==="reconnecting"&&d(pe,{children:[n("p",{className:"text-sm font-medium text-amber-900",children:"Reconnecting..."}),n("p",{className:"text-xs text-amber-700 mt-0.5",children:"Waiting for the server to come back online."})]})]}),t==="stale"&&n("button",{type:"button",onClick:()=>void o(),className:"shrink-0 px-4 py-2 bg-amber-600 text-white text-sm font-medium rounded hover:bg-amber-700 transition-colors cursor-pointer",children:"Restart Server"}),(t==="restarting"||t==="reconnecting")&&d("div",{className:"shrink-0 flex items-center gap-2 px-4 py-2 text-amber-700 text-sm",children:[d("svg",{className:"w-4 h-4 animate-spin",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),t==="restarting"?"Stopping...":"Reconnecting..."]})]})})})}function At({content:e,label:t="Copy",copiedLabel:r="✓ Copied!",className:s="",duration:a=2e3,ariaLabel:o,icon:i=!1,iconSize:l=14}){const[c,m]=M(!1),u=le(()=>{navigator.clipboard.writeText(e).then(()=>{m(!0),setTimeout(()=>m(!1),a)}).catch(p=>{console.error("Failed to copy:",p)})},[e,a]);return n("button",{onClick:u,className:`cursor-pointer ${s}`,disabled:c,"aria-label":o||(c?"Copied to clipboard":"Copy to clipboard"),"aria-live":"polite",children:i?c?n(lt,{size:l,className:"text-green-500"}):n(pt,{size:l}):c?r:t})}function Yp({currentVersion:e,latestVersion:t}){const[r,s]=M(!1);if(r)return null;const a="npm install -g @codeyam/codeyam-cli@latest && codeyam stop && codeyam";return n("div",{className:"bg-emerald-100 border rounded border-emerald-700 shadow-sm mx-6 mt-6",children:d("div",{className:"max-w-7xl mx-auto px-4 py-3 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{className:"shrink-0",children:n("svg",{className:"w-5 h-5 text-emerald-600",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M7 11l5-5m0 0l5 5m-5-5v12"})})}),d("div",{className:"flex-1",children:[n("p",{className:"text-sm font-medium text-emerald-900",children:"A new version of CodeYam CLI is available"}),d("p",{className:"text-xs text-emerald-700 mt-0.5",children:["Current: ",e," → Latest: ",t]})]}),d("div",{className:"shrink-0 flex items-center gap-2",children:[n("code",{className:"text-xs bg-emerald-200 text-emerald-900 px-2 py-1.5 rounded font-mono",children:a}),n(At,{content:a,label:"Copy",copiedLabel:"Copied!",className:"px-3 py-1.5 bg-emerald-600 text-white text-xs font-medium rounded hover:bg-emerald-700 transition-colors"})]})]}),n("button",{type:"button",onClick:()=>s(!0),className:"shrink-0 ml-4 p-1 rounded text-emerald-600 hover:text-emerald-800 hover:bg-emerald-200 transition-colors cursor-pointer","aria-label":"Dismiss banner",children:n("svg",{className:"w-5 h-5",fill:"none",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{d:"M6 18L18 6M6 6l12 12"})})})]})})}let Jn=null,Sr=0;const Up=3600*1e3;function Wp(e,t){const r=e.split(".").map(Number),s=t.split(".").map(Number);for(let a=0;a<Math.max(r.length,s.length);a++){const o=r[a]??0,i=s[a]??0;if(isNaN(o)||isNaN(i))return!1;if(o>i)return!0;if(o<i)return!1}return!1}async function Jp(){const e=Wa();if(Jn&&Date.now()-Sr<Up)return Jn;try{const t=new AbortController,r=setTimeout(()=>t.abort(),5e3),s=await fetch("https://registry.npmjs.org/@codeyam/codeyam-cli/latest",{signal:t.signal});if(clearTimeout(r),!s.ok){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return Jn=l,Sr=Date.now(),l}const o=(await s.json()).version;if(!o){const l={updateAvailable:!1,latestVersion:null,currentVersion:e};return Jn=l,Sr=Date.now(),l}const i={updateAvailable:Wp(o,e),latestVersion:o,currentVersion:e};return Jn=i,Sr=Date.now(),i}catch{return{updateAvailable:!1,latestVersion:null,currentVersion:e}}}function Qr(e){return B.join(e,".codeyam","queue.json")}function Kn(e){const t=Qr(e);if(!q.existsSync(t))return{paused:!1,jobs:[]};try{const r=q.readFileSync(t,"utf8");return JSON.parse(r)}catch(r){return console.error("Failed to load queue state:",r),{paused:!1,jobs:[]}}}function Hp(e,t){const r=Qr(e),s=B.dirname(r);q.existsSync(s)||q.mkdirSync(s,{recursive:!0});try{q.writeFileSync(r,JSON.stringify(t,null,2),"utf8")}catch(a){throw console.error("Failed to save queue state:",a),a}}const rs=class rs extends is{constructor(t){super(),this.watcher=null,this.debounceTimers=new Map,this.DEBOUNCE_MS=300,this.options=t}start(){try{this.watcher=ge.watch(this.options.projectRootPath,{recursive:!0},(t,r)=>{if(!r||!/\.(ts|tsx|js|jsx|css|scss|json|svg|html)$/.test(r)||rs.IGNORED_DIRS.some(a=>r.includes(a+"/")||r.includes(a+"\\")))return;const s=this.debounceTimers.get(r);s&&clearTimeout(s),this.debounceTimers.set(r,setTimeout(()=>{this.debounceTimers.delete(r),this.syncFile(r)},this.DEBOUNCE_MS))}),console.log(`[InteractiveSyncWatcher] Watching ${this.options.projectRootPath} for changes`)}catch(t){console.error("[InteractiveSyncWatcher] Failed to start:",t)}}syncFile(t){const r=X.join(this.options.projectRootPath,t),s=X.join(this.options.tmpProjectPath,t);try{if(!ge.existsSync(r)){ge.existsSync(s)&&(ge.unlinkSync(s),console.log(`[InteractiveSyncWatcher] Removed: ${t}`));return}const a=X.dirname(s);ge.existsSync(a)||ge.mkdirSync(a,{recursive:!0}),ge.copyFileSync(r,s);const o=X.basename(t);console.log(`[InteractiveSyncWatcher] Synced: ${t}`);const i={type:"file-synced",fileName:o,filePath:t,timestamp:Date.now()};this.emit("sync",i)}catch(a){console.error(`[InteractiveSyncWatcher] Error syncing ${t}:`,a);const o={type:"error",fileName:X.basename(t),filePath:t,timestamp:Date.now()};this.emit("sync",o)}}stop(){this.watcher&&(this.watcher.close(),this.watcher=null);for(const t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),console.log("[InteractiveSyncWatcher] Stopped")}};rs.IGNORED_DIRS=["node_modules",".git",".codeyam","__codeyamMocks__",".next","dist","build",".turbo",".vercel","coverage",".cache"];let la=rs,Vp=class extends is{constructor(){super(),this.setMaxListeners(20)}emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}};const ca="__codeyam_dev_mode_event_emitter__";globalThis[ca]||(globalThis[ca]=new Vp);const Uo=globalThis[ca],da=new Map;async function Gp(e,t,r){console.log(`[Queue] Executing job ${e.id} (${e.type})`);try{if(e.type==="analysis")await qp(e,t,r);else if(e.type==="baseline")await Kp(e,t,r);else if(e.type==="recapture")await Qp(e,t,r);else if(e.type==="capture-only")await Zp(e,t,r);else if(e.type==="debug-setup")await Xp(e,t,r);else if(e.type==="interactive-start")await eh(e,t,r);else if(e.type==="interactive-stop")await th(e,t,r);else throw new Error(`Unknown job type: ${e.type}`);console.log(`[Queue] Job ${e.id} completed successfully`)}catch(s){throw console.error(`[Queue] Job ${e.id} failed:`,s),s}}async function qp(e,t,r){var y,x,b,w;const{projectSlug:s,commitSha:a,entityShas:o}=e;if(!a)throw new Error("Analysis job missing commitSha");const i=o||[],{project:l}=await Oe(s);await Ya(s),await ir(s,{update:v=>console.log(`[Queue] ${v}`)});const c=bs(s),m={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),...i.length>0?{ENTITY_SHAS:i.join(",")}:{},...e.onlyDataStructure?{ONLY_DATA_STRUCTURE:"true"}:{},...c?{ANALYZER_VERSION:c}:{},...process.env.CODEYAM_TRACE_TRANSFORMS?{CODEYAM_TRACE_TRANSFORMS:process.env.CODEYAM_TRACE_TRANSFORMS}:{}},u=(x=(y=l.metadata)==null?void 0:y.webapps)==null?void 0:x[0];if(!u)throw new Error("No webapps found in project metadata");const p=e.onlyDataStructure,h={packageManager:((b=l.metadata)==null?void 0:b.packageManager)||"npm",absoluteProjectRootPath:ht(s),port:0,noServer:!0,framework:u.framework,...p?{}:{orchestrateCapture:"local-sequential"}},f=Tn(s,m,h),g=v=>{try{return process.kill(v,0),!0}catch{return!1}};await Dt({commitSha:a,runStatusUpdate:{currentEntityShas:i,entityCount:i.length||((w=e.filePaths)==null?void 0:w.length)||0,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString(),analyzerPid:f.process.pid}}),r==null||r.notifyChange("commit");try{try{const v=new Promise((C,A)=>setTimeout(()=>A(new Error("Analysis timed out after 60 minutes")),36e5));await Promise.race([f.promise,v]),await Dt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),await Dt({commitSha:a,runStatusUpdate:{currentEntityShas:[]}}),r==null||r.notifyChange("commit"),await new Promise(C=>setTimeout(C,2e3))}finally{if(f.process.pid)try{g(f.process.pid)&&await tr(f.process.pid,()=>{})}catch{}}}catch(v){if(console.error(`[Queue] Analysis job ${e.id} failed:`,v),f.process.pid&&g(f.process.pid))try{await tr(f.process.pid,()=>{})}catch{}try{await Dt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:v instanceof Error?v.message:String(v)}}),r==null||r.notifyChange("commit")}catch(C){console.error("[Queue] Failed to update commit metadata after job failure:",C)}throw v}}async function Kp(e,t,r){var h,f,g;const{projectSlug:s,commitSha:a}=e;if(!a)throw new Error("Baseline job missing commitSha");console.log(`[Queue] Starting baseline analysis for ${s}`);const{project:o}=await Oe(s);await Ya(s),await ir(s,{update:y=>console.log(`[Queue] ${y}`)});const i=bs(s),l={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",BRANCH_COMMIT_SHA:a,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),...i?{ANALYZER_VERSION:i}:{}},c=(f=(h=o.metadata)==null?void 0:h.webapps)==null?void 0:f[0];if(!c)throw new Error("No webapps found in project metadata");const m={packageManager:((g=o.metadata)==null?void 0:g.packageManager)||"npm",absoluteProjectRootPath:ht(s),port:0,noServer:!0,framework:c.framework,orchestrateCapture:"local-sequential"},u=Tn(s,l,m),p=y=>{try{return process.kill(y,0),!0}catch{return!1}};await Dt({commitSha:a,runStatusUpdate:{createdAt:new Date().toISOString(),analyzerPid:u.process.pid}}),r==null||r.notifyChange("commit");try{const y=new Promise((x,b)=>setTimeout(()=>b(new Error("Baseline timed out after 4 hours")),144e5));await Promise.race([u.promise,y]),await Dt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0},archiveCurrentRun:!0}),r==null||r.notifyChange("commit"),console.log(`[Queue] Baseline completed for ${s}`),await new Promise(x=>setTimeout(x,2e3))}finally{if(u.process.pid)try{p(u.process.pid)&&await tr(u.process.pid,()=>{})}catch{}}}async function Qp(e,t,r){var f,g,y,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Recapture job missing analysisId");const l=await _t({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:b}=await import("./index-DsZjKspK.js"),w=b(),v=await w.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let C={};v!=null&&v.metadata&&(typeof v.metadata=="string"?C=JSON.parse(v.metadata):C=v.metadata),C.defaultWidth=i,await w.updateTable("entities").set({metadata:JSON.stringify(C)}).where("sha","=",l.entitySha).execute()}await An(a,b=>{if(b.readyToBeCaptured=!0,b.scenarios)for(const w of b.scenarios)(!o||w.name===o)&&(delete w.finishedAt,delete w.startedAt,delete w.screenshotStartedAt,delete w.screenshotFinishedAt,delete w.interactiveStartedAt,delete w.interactiveFinishedAt,delete w.error,delete w.errorStack);delete b.finishedAt});const{project:c}=await Oe(s);await ir(s,{update:b=>console.log(`[Queue] ${b}`)});const m=bs(s),u={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...m?{ANALYZER_VERSION:m}:{}},p={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:ht(s),port:void 0,noServer:!0,framework:((x=(y=(g=c.metadata)==null?void 0:g.webapps)==null?void 0:y[0])==null?void 0:x.framework)??Je.Next,orchestrateCapture:"local-sequential"},h=Tn(s,u,p);try{await h.promise}finally{try{h.process.kill("SIGTERM")}catch{}}}async function Zp(e,t,r){var f,g,y,x;const{projectSlug:s,analysisId:a,scenarioId:o,defaultWidth:i}=e;if(!a)throw new Error("Capture-only job missing analysisId");const l=await _t({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!l||!l.commit)throw new Error(`Analysis ${a} not found`);if(i){const{getDatabase:b}=await import("./index-DsZjKspK.js"),w=b(),v=await w.selectFrom("entities").select(["metadata"]).where("sha","=",l.entitySha).executeTakeFirst();let C={};v!=null&&v.metadata&&(typeof v.metadata=="string"?C=JSON.parse(v.metadata):C=v.metadata),C.defaultWidth=i,await w.updateTable("entities").set({metadata:JSON.stringify(C)}).where("sha","=",l.entitySha).execute()}await An(a,b=>{if(b.readyToBeCaptured=!0,b.scenarios)for(const w of b.scenarios)(!o||w.name===o)&&(delete w.finishedAt,delete w.startedAt,delete w.screenshotStartedAt,delete w.screenshotFinishedAt,delete w.interactiveStartedAt,delete w.interactiveFinishedAt,delete w.error,delete w.errorStack);delete b.finishedAt});const{project:c}=await Oe(s);await ir(s,{update:b=>console.log(`[Queue] ${b}`)});const m=bs(s);console.log("[Queue] executeCaptureOnlyJob: Setting CAPTURE_ONLY=true for capture without file regeneration");const u={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:l.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),READY_TO_BE_CAPTURED:"true",CAPTURE_ONLY:"true",ANALYSIS_IDS:a,...o?{SCENARIO_IDS:o}:{},...m?{ANALYZER_VERSION:m}:{}},p={packageManager:((f=c.metadata)==null?void 0:f.packageManager)||"npm",absoluteProjectRootPath:ht(s),port:void 0,noServer:!0,fast:!0,framework:((x=(y=(g=c.metadata)==null?void 0:g.webapps)==null?void 0:y[0])==null?void 0:x.framework)??Je.Next,orchestrateCapture:"local-sequential"},h=Tn(s,u,p);try{await h.promise}finally{try{h.process.kill("SIGTERM")}catch{}}}async function Xp(e,t,r){var h,f,g,y;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Debug setup job missing analysisId");const i=await _t({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Oe(s);await Ya(s),await ir(s,{update:x=>console.log(`[Queue] ${x}`)});const c={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,PREP_ONLY:"true"};o&&(c.SCENARIO_IDS=o);const m={packageManager:((h=l.metadata)==null?void 0:h.packageManager)||"npm",absoluteProjectRootPath:ht(s),port:void 0,noServer:!1,framework:((y=(g=(f=l.metadata)==null?void 0:f.webapps)==null?void 0:g[0])==null?void 0:y.framework)||Je.Next},p=await Tn(s,c,m).promise;if(p!==0)throw new Error(`Prep process exited with code ${p}`)}async function eh(e,t,r){var x,b,w,v;const{projectSlug:s,analysisId:a,scenarioId:o}=e;if(!a)throw new Error("Interactive start job missing analysisId");const i=await _t({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!i||!i.commit)throw new Error(`Analysis ${a} not found`);const{project:l}=await Oe(s),c={...await Bt(),PROJECT_SLUG:s,USE_WORKER_THREADS:"true",COMMIT_SHA:i.commit.sha,CODEYAM_LOCAL_PROJECT_PATH:t,SQLITE_PATH:Yt(),READY_TO_BE_CAPTURED:"true",ANALYSIS_IDS:a,INTERACTIVE_MODE:"true"};o&&(c.SCENARIO_IDS=o);const m=ht(s),u=X.join(m,".next","dev","lock");if(ge.existsSync(u)){console.log("[Queue] Found stale .next/dev/lock, cleaning up old processes");try{const C=Pe(`pgrep -f ${JSON.stringify(m)} 2>/dev/null || true`,{encoding:"utf-8"}).trim();if(C)for(const A of C.split(`
42
- `).filter(Boolean))try{process.kill(parseInt(A,10),"SIGTERM"),console.log(`[Queue] Killed stale process ${A}`)}catch{}}catch{}try{ge.unlinkSync(u),console.log("[Queue] Removed stale lock file")}catch{}}const p=ge.existsSync(m)&&ge.existsSync(X.join(m,"package.json")),h={packageManager:((x=l.metadata)==null?void 0:x.packageManager)||"npm",absoluteProjectRootPath:m,port:void 0,noServer:!1,fast:p,framework:((v=(w=(b=l.metadata)==null?void 0:b.webapps)==null?void 0:w[0])==null?void 0:v.framework)||Je.Next};await An(a,C=>{C.readyToBeCaptured=!0});const f=Tn(s,c,h);await dl(a,C=>{C.interactiveMode={pid:f.process.pid,startedAt:new Date().toISOString(),jobId:e.id}}),console.log(`[Queue] Interactive mode started for analysis ${a}, PID: ${f.process.pid}`);const g=ht(s),y=new la({projectRootPath:t,tmpProjectPath:g});y.on("sync",C=>{C.type==="file-synced"?Uo.emitFileSynced(C.fileName,C.filePath):C.type==="error"&&Uo.emitError(C.fileName,C.filePath)}),y.start(),da.set(a,y),console.log(`[Queue] File sync watcher started for analysis ${a}`)}async function th(e,t,r){var m;const{projectSlug:s,analysisId:a}=e;if(!a)throw new Error("Interactive stop job missing analysisId");const o=await _t({id:a,includeScenarios:!0,includeCommitAndBranch:!0});if(!o)throw new Error(`Analysis ${a} not found`);const i=(m=o.metadata)==null?void 0:m.interactiveMode;if(!(i!=null&&i.pid)){console.log(`[Queue] No interactive mode process found for analysis ${a}`);return}const l=da.get(a);l&&(l.stop(),da.delete(a),console.log(`[Queue] File sync watcher stopped for analysis ${a}`));const c=i.pid;console.log(`[Queue] Stopping interactive mode for analysis ${a}, killing PID: ${c}`);try{try{process.kill(c,0)}catch{console.log(`[Queue] Process ${c} already exited`);return}await tr(c,()=>{}),console.log(`[Queue] Successfully killed interactive mode process ${c}`)}catch(u){throw console.error(`[Queue] Failed to kill process ${c}:`,u),u}finally{await dl(a,u=>{u.interactiveMode=null})}}class nh{constructor(t,r){this.processing=!1,this.completionCallbacks=new Map,this.completedJobs=new Map,this.projectRoot=t,this.state={paused:!1,jobs:[]},r&&(typeof r=="function"?this.notifier={notifyChange:()=>r()}:this.notifier=r)}start(){this.state=Kn(this.projectRoot),this.state.currentlyExecuting&&(console.log(`[Queue] Clearing stale currentlyExecuting job from previous session: ${this.state.currentlyExecuting.id}`),this.state.currentlyExecuting=void 0,this.save()),this.state.jobs.length>0?(this.state.paused=!0,this.save(),console.log(`[Queue] Found ${this.state.jobs.length} queued jobs from previous session (paused)`)):this.state.paused=!1}enqueue(t){const r=t.commitSha||ja(),s={...t,id:r,queuedAt:new Date().toISOString()};this.state.jobs.push(s),this.save(),console.log(`[Queue] Enqueued job ${r} (${s.type})`);const a=new Promise((o,i)=>{this.completionCallbacks.set(r,l=>{l?i(l):o()})});return this.state.paused||this.processNext().catch(o=>{console.error("[Queue] ERROR in processNext():",o)}),{jobId:r,completion:a}}resume(){console.log("[Queue] Resuming queue"),this.state.paused=!1,this.save(),this.processNext()}pause(){console.log("[Queue] Pausing queue"),this.state.paused=!0,this.save()}getState(){return{...this.state}}getJobResult(t){return this.completedJobs.get(t)}removeJob(t){const r=this.state.jobs.length;this.state.jobs=this.state.jobs.filter(a=>a.id!==t);const s=this.state.jobs.length<r;if(s){console.log(`[Queue] Removed job ${t}`),this.save();const a=this.completionCallbacks.get(t);a&&(setImmediate(()=>a(new Error("Job cancelled by user"))),this.completionCallbacks.delete(t))}else console.log(`[Queue] Job ${t} not found in queue`);return s}clearQueue(){const t=this.state.jobs.length;return t===0?0:(this.state.jobs.forEach(r=>{const s=this.completionCallbacks.get(r.id);s&&(setImmediate(()=>s(new Error("Job cancelled by user"))),this.completionCallbacks.delete(r.id))}),this.state.jobs=[],console.log(`[Queue] Cleared ${t} jobs`),this.save(),t)}reorderJob(t,r){const s=this.state.jobs.findIndex(i=>i.id===t);if(s===-1)return console.log(`[Queue] Job ${t} not found in queue`),!1;const a=r==="up"?s-1:s+1;if(a<0||a>=this.state.jobs.length)return console.log(`[Queue] Cannot move job ${t} ${r}: at boundary`),!1;const o=this.state.jobs[s];return this.state.jobs[s]=this.state.jobs[a],this.state.jobs[a]=o,console.log(`[Queue] Moved job ${t} ${r} (position ${s} -> ${a})`),this.save(),!0}async processNext(){if(this.state.paused||this.processing)return;if(this.state.jobs.length===0){console.log("[Queue] No jobs to process");return}this.processing=!0;const t=this.state.jobs[0];console.log(`[Queue] Starting job ${t.id} (${t.type})`);try{this.state.currentlyExecuting=this.state.jobs.shift(),this.save(),await Gp(t,this.projectRoot,this.notifier),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"success",completedAt:new Date().toISOString()});const r=this.completionCallbacks.get(t.id);r&&(r(),this.completionCallbacks.delete(t.id)),console.log(`[Queue] Job ${t.id} completed successfully`)}catch(r){console.error(`[Queue] Job ${t.id} failed:`,r),this.state.currentlyExecuting=void 0,this.save(),this.completedJobs.set(t.id,{id:t.id,status:"error",error:(r==null?void 0:r.message)||"Unknown error",completedAt:new Date().toISOString()});const s=this.completionCallbacks.get(t.id);s&&(s(r),this.completionCallbacks.delete(t.id))}finally{this.processing=!1,!this.state.paused&&this.state.jobs.length>0&&setImmediate(()=>void this.processNext())}}save(){Hp(this.projectRoot,this.state),this.notifier&&this.notifier.notifyChange("queue")}}class rh{constructor(t,r,s=100){this.watcher=null,this.debounceTimer=null,this.projectRoot=t,this.onChange=r,this.debounceMs=s}start(){const t=Qr(this.projectRoot);if(!q.existsSync(t)){console.log("[QueueFileWatcher] Queue file does not exist yet, will start watching when created"),this.watchDirectory();return}this.watchFile(t)}watchDirectory(){const t=Qr(this.projectRoot),r=t.substring(0,t.lastIndexOf("/"));try{this.watcher=q.watch(r,(s,a)=>{a==="queue.json"&&(this.stop(),this.watchFile(t),this.notifyChange())}),console.log("[QueueFileWatcher] Watching .codeyam directory for queue.json creation")}catch(s){console.error("[QueueFileWatcher] Failed to watch directory:",s)}}watchFile(t){try{this.watcher=q.watch(t,r=>{r==="change"&&this.notifyChange()}),console.log("[QueueFileWatcher] Watching queue.json for changes")}catch(r){console.error("[QueueFileWatcher] Failed to watch queue file:",r)}}notifyChange(){this.debounceTimer&&clearTimeout(this.debounceTimer),this.debounceTimer=setTimeout(()=>{this.onChange(),this.debounceTimer=null},this.debounceMs)}stop(){this.watcher&&(this.watcher.close(),this.watcher=null),this.debounceTimer&&(clearTimeout(this.debounceTimer),this.debounceTimer=null)}}class sh{constructor(t,r,s){this.fileWatcher=null,this.serverInfo=t,this.projectRoot=r,this.onStateChange=s,this.cachedState=Kn(r)}start(){this.cachedState=Kn(this.projectRoot),console.log(`[ProxyQueue] Connected to background server at ${this.serverInfo.url}`),console.log(`[ProxyQueue] Current queue has ${this.cachedState.jobs.length} jobs`),this.fileWatcher=new rh(this.projectRoot,()=>{console.log("[ProxyQueue] Detected queue.json change from background server"),this.refreshState()}),this.fileWatcher.start()}enqueue(t){let r,s;const a=new Promise((i,l)=>{r=i,s=l}),o=`proxy-${Date.now()}-${Math.random().toString(36).slice(2)}`;return this.enqueueRemote(t).then(i=>{console.log(`[ProxyQueue] Job enqueued on background server: ${i.jobId}`),this.refreshState(),r()}).catch(i=>{console.error("[ProxyQueue] Failed to enqueue job:",i),s(i)}),{jobId:o,completion:a}}async enqueueRemote(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"enqueue",...t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to enqueue: ${r.status} ${s}`)}return r.json()}resume(){console.log("[ProxyQueue] Sending resume command to background server"),this.sendAction("resume").catch(t=>{console.error("[ProxyQueue] Failed to resume:",t)})}pause(){console.log("[ProxyQueue] Sending pause command to background server"),this.sendAction("pause").catch(t=>{console.error("[ProxyQueue] Failed to pause:",t)})}async sendAction(t){const r=await fetch(`${this.serverInfo.url}/api/queue`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:t})});if(!r.ok){const s=await r.text();throw new Error(`Failed to ${t}: ${r.status} ${s}`)}this.refreshState()}getState(){return this.cachedState=Kn(this.projectRoot),{...this.cachedState}}refreshState(){this.cachedState=Kn(this.projectRoot),this.onStateChange&&this.onStateChange()}async isServerAlive(){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${this.serverInfo.url}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}getServerInfo(){return{...this.serverInfo}}stop(){this.fileWatcher&&(this.fileWatcher.stop(),this.fileWatcher=null)}}function ah(e){const t=B.join(e,".codeyam","server.json");if(!q.existsSync(t))return null;try{const r=q.readFileSync(t,"utf8");return JSON.parse(r)}catch{return null}}function oh(e){try{return process.kill(e,0),!0}catch{return!1}}async function ih(e){try{const t=new AbortController,r=setTimeout(()=>t.abort(),2e3),s=await fetch(`${e}/api/health`,{signal:t.signal});return clearTimeout(r),s.ok}catch{return!1}}async function lh(e){const t=ah(e);return!t||!oh(t.pid)||!await ih(t.url)?null:{url:t.url,port:t.port,pid:t.pid}}class ch extends is{constructor(){super();Yn(this,"watcher",null);Yn(this,"dbPath",null);Yn(this,"isWatching",!1);this.setMaxListeners(20)}async start(){if(!this.isWatching)try{this.dbPath=Yt();const{default:r}=await import("chokidar"),s=[this.dbPath,`${this.dbPath}-wal`,`${this.dbPath}-shm`];this.watcher=r.watch(s,{persistent:!0,ignoreInitial:!0,usePolling:!0,interval:1e3}),this.watcher.on("change",a=>{const o=Date.now(),i=new Date(o).toISOString();console.log("[dbNotifier] ========================================"),console.log(`[dbNotifier] Database file changed: ${a}`),console.log(`[dbNotifier] Timestamp: ${i} (${o})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:"unknown",timestamp:o})}).on("error",a=>{console.error("Database watcher error:",a),this.emit("error",a)}),this.isWatching=!0}catch(r){console.error("Failed to start database watcher:",r),this.emit("error",r)}}notifyChange(r="unknown"){const s=Date.now(),a=new Date(s).toISOString();console.log("[dbNotifier] ========================================"),console.log("[dbNotifier] Manual notification triggered"),console.log(`[dbNotifier] Change type: ${r}`),console.log(`[dbNotifier] Timestamp: ${a} (${s})`),console.log(`[dbNotifier] Listeners count: ${this.listenerCount("change")}`),console.log("[dbNotifier] ========================================"),this.emit("change",{type:r,timestamp:s})}stop(){this.watcher&&(this.watcher.close(),this.watcher=null,this.isWatching=!1,console.log("Database watcher stopped"))}}const ot=new ch;let en=null,Qn=null;async function dh(){if(!en){if(Qn){await Qn;return}Qn=(async()=>{try{const e=process.env.CODEYAM_ROOT_PATH||ul()||process.cwd();if(sp(e),console.log(`[GlobalQueue] Project root: ${e}`),await Fe(),process.env.NODE_ENV==="development")try{const r=X.join(e,".codeyam","config.json"),a=JSON.parse(await ge.promises.readFile(r,"utf8")).projectSlug;a&&(await Cn({projectSlug:a,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),console.log("[GlobalQueue] Labs & Simulations auto-enabled for dev mode"))}catch(r){console.warn("[GlobalQueue] Could not auto-enable labs:",r)}const t=await lh(e);if(t){console.log(`[GlobalQueue] Detected background server at ${t.url} (PID: ${t.pid})`),console.log("[GlobalQueue] Using proxy queue");const r=new sh(t,e,()=>{ot.notifyChange("unknown")});await r.start(),en=r}else{console.log("[GlobalQueue] No background server detected, using local queue");const r=new nh(e,ot);await r.start(),en=r}console.log("[GlobalQueue] Queue initialized")}catch(e){throw console.error("[GlobalQueue] Failed to initialize queue:",e),e}})(),await Qn}}async function Pt(){return en||await dh(),en}function uh(){return en||(Qn&&console.warn("[GlobalQueue] Queue still initializing, loader may see empty state"),null)}const mh=()=>[{rel:"stylesheet",href:Fp},{rel:"icon",type:"image/x-icon",href:"/favicon.ico"}],ph={currentRun:void 0,projectSlug:null,currentEntities:[],availableAPIKeys:[],queuedJobCount:0,queueJobs:[],currentlyExecuting:null,historicalRuns:[],isServerOutOfDate:!1,serverVersion:"unknown",npmUpdate:null,labs:null,simulationsEnabled:!1,isSimulationsReady:!1,isAdmin:!1,editorMode:!1,displayVersion:Wa()};async function hh({request:e,context:t}){var r,s,a,o,i,l,c,m,u,p,h;try{const f=e.signal,g=()=>{if(f.aborted)throw new Response(null,{status:499})};g();const y=ye()||process.cwd(),[x,b,w]=await Promise.all([De(),fs(y),Jp().catch(()=>null)]);if(!x)throw new Error("Project slug not found");const{project:v,branch:C}=await Oe(x);g();const A=await Vr({projectId:v.id,branchId:C.id,limit:20,skipRelations:!0});g();const S=A.length>0?A[0]:null,E=t.analysisQueue||uh(),N=E==null?void 0:E.getState();g();const k=await Promise.all(((N==null?void 0:N.jobs)||[]).map(async G=>{var se;const ne=await Cr(G.entityShas||[]);return ne.length===0&&((se=G.entityShas)!=null&&se.length)&&console.warn("[Loader] Entity fetch timeout/failed for job",G.id),{...G,entities:ne}}));let j=null;if(N!=null&&N.currentlyExecuting){const G=N.currentlyExecuting,ne=await Cr(G.entityShas||[]);ne.length===0&&((r=G.entityShas)!=null&&r.length)&&console.warn("[Loader] Entity fetch timeout/failed for currentlyExecuting",G.id),j={...G,entities:ne}}const T=j?k.filter(G=>G.id!==j.id):k;let P=((a=(s=S==null?void 0:S.metadata)==null?void 0:s.currentRun)==null?void 0:a.currentEntityShas)||[];if(P.length===0){const G=((o=S==null?void 0:S.metadata)==null?void 0:o.historicalRuns)||[];if(G.length>0){const se=[...G].sort((re,ee)=>{const de=re.archivedAt||re.createdAt||"";return(ee.archivedAt||ee.createdAt||"").localeCompare(de)})[0];if(se){const re=se.analysisCompletedAt||se.createdAt;if(re){const ee=new Date(re).getTime(),me=Date.now()-1440*60*1e3;ee>me&&(P=se.currentEntityShas||[])}}}}const R=await Cr(P),I=[];b.ANTHROPIC_API_KEY&&I.push("ANTHROPIC_API_KEY"),b.GROQ_API_KEY&&I.push("GROQ_API_KEY"),b.OPENAI_API_KEY&&I.push("OPENAI_API_KEY"),b.OPENROUTER_API_KEY&&I.push("OPENROUTER_API_KEY"),g();const $=[];for(const G of A){const ne=((i=G.metadata)==null?void 0:i.historicalRuns)||[];for(const se of ne)$.push(se)}$.sort((G,ne)=>{const se=G.archivedAt||G.analysisCompletedAt||G.createdAt||"";return(ne.archivedAt||ne.analysisCompletedAt||ne.createdAt||"").localeCompare(se)});const L=new Set(((l=j==null?void 0:j.entities)==null?void 0:l.map(G=>G.sha))||[]),F=$.filter(G=>!(G.currentEntityShas||[]).some(se=>L.has(se))).slice(0,3),z=new Set;for(const G of F)for(const ne of G.currentEntityShas||[])z.add(ne);const U=await Cr(Array.from(z)),O=new Map;for(const G of U)O.set(G.sha,G);const _=F.map(G=>({...G,entities:(G.currentEntityShas||[]).map(ne=>O.get(ne)).filter(ne=>ne!=null)})),Y=ws(),Q=(Y==null?void 0:Y.cliVersion)??"unknown",K=Q!=="unknown"&&Q!==Ua,ae=((m=(c=v.metadata)==null?void 0:c.labs)==null?void 0:m.simulations)??!1,J=ae?$p():!1,D=((u=v.metadata)==null?void 0:u.editorMode)??!1,W={currentRun:(p=S==null?void 0:S.metadata)==null?void 0:p.currentRun,projectSlug:x,currentEntities:R,availableAPIKeys:I,queuedJobCount:T.length,queueJobs:T,currentlyExecuting:j,historicalRuns:_,isServerOutOfDate:K,serverVersion:Q,npmUpdate:w!=null&&w.updateAvailable&&w.latestVersion?{latestVersion:w.latestVersion,currentVersion:w.currentVersion}:null,labs:((h=v.metadata)==null?void 0:h.labs)??null,simulationsEnabled:ae,isSimulationsReady:J,isAdmin:!!process.env.CODEYAM_ADMIN,editorMode:D,displayVersion:Wa()};return Z(W)}catch(f){return f instanceof Response&&f.status===499||console.error("Failed to load root data:",f),Z(ph)}}function fh(){const{currentRun:e,projectSlug:t,currentEntities:r,availableAPIKeys:s,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l,isServerOutOfDate:c,serverVersion:m,npmUpdate:u,labs:p,simulationsEnabled:h,isSimulationsReady:f,isAdmin:g,editorMode:y,displayVersion:x}=He(),{toasts:b,closeToast:w}=Oa(),v=Ct(),C=be(v),A=ss();te(()=>{C.current=v},[v]);const S=A.pathname.startsWith("/entity/")&&A.pathname.includes("/edit/")||A.pathname.startsWith("/dev/")||A.pathname.startsWith("/editor"),E=A.pathname.includes("/fullscreen")||A.pathname.startsWith("/editor");return te(()=>{let N=null,k=null,j=0;const T=2e3;function P(){N||(N=new EventSource("/api/events"),N.addEventListener("message",$=>{const L=JSON.parse($.data);if(L.type==="queue")C.current.revalidate(),j=Date.now();else if(L.type==="db-change"||L.type==="unknown"){const H=Date.now(),F=H-j;F<T?(k&&clearTimeout(k),k=setTimeout(()=>{C.current.revalidate(),j=Date.now(),k=null},T-F)):(C.current.revalidate(),j=H)}}),N.addEventListener("error",()=>{}))}function R(){k&&(clearTimeout(k),k=null),N&&(N.close(),N=null)}function I(){document.hidden?R():(P(),C.current.revalidate())}return document.hidden||P(),document.addEventListener("visibilitychange",I),()=>{document.removeEventListener("visibilitychange",I),R()}},[]),d(pe,{children:[d("div",{className:`min-h-screen ${S?"":"grid"} bg-cygray-10`,style:S?void 0:{gridTemplateColumns:"65px minmax(0, 1fr)"},children:[!S&&n(xu,{labs:p,isAdmin:g,editorMode:y}),d("div",{className:"max-h-screen overflow-auto bg-cygray-10 flex flex-col min-h-screen",children:[c&&n(Bp,{serverVersion:m}),u&&u.currentVersion&&n(Yp,{currentVersion:u.currentVersion,latestVersion:u.latestVersion}),h&&s.length===0&&n(Yo,{text:"No AI API keys configured. Please provide an AI API key at your earliest convenience.",subtext:"An API key is required for stable, frequent use of CodeYam",linkText:"Configure API Keys",linkTo:"/settings"}),h&&!f&&n(Yo,{text:"Simulations enabled but not yet configured",subtext:"Run /codeyam-setup in Claude Code to install the analyzer and configure your dev server",linkText:"View Labs",linkTo:"/labs"}),n("div",{className:"flex-1",children:n(ed,{})}),n(zp,{version:x})]})]}),n(vu,{toasts:b,onClose:w}),!E&&h&&n(Nu,{currentRun:e,projectSlug:t,currentEntities:r,isAnalysisStarting:!1,queuedJobCount:a,queueJobs:o,currentlyExecuting:i,historicalRuns:l})]})}const gh=Ye(function(){return d("html",{lang:"en",children:[d("head",{children:[n("meta",{charSet:"utf-8"}),n("meta",{name:"viewport",content:"width=device-width,initial-scale=1"}),n(Kc,{}),n(Qc,{})]}),d("body",{children:[n(bu,{children:n(gu,{children:n(fh,{})})}),n(Zc,{}),n(Xc,{})]})]})}),yh=Object.freeze(Object.defineProperty({__proto__:null,default:gh,links:mh,loader:hh},Symbol.toStringTag,{value:"Module"}));function kr(e){const t=e.replace(/[^a-zA-Z0-9_]+/g,"_");return t.slice(0,1).toUpperCase()+t.slice(1)}function cn({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:o=!0,refreshTrigger:i=0}){const l=Le(),[c,m]=M(null),[u,p]=M(!1),[h,f]=M(!1),[g,y]=M(!1),x=be(!1),b=be(null),w=be(null),v=be(null),[C,A]=M(0),[S,E]=M(0),N=be(null),k=be(!1),{interactiveUrl:j,resetLogs:T}=kt(a,o),P=be(t),R=be(i);te(()=>{R.current!==i&&(R.current=i,c&&(console.log("[useInteractiveMode] Manual refresh triggered"),f(!0),y(!1),A(0),E($=>$+1),k.current=!1,N.current&&(clearTimeout(N.current),N.current=null)))},[i,c]),te(()=>{if(P.current!==t&&(P.current=t,b.current&&w.current&&r)){let $=b.current;if(v.current&&s){const F=kr(v.current),z=kr(s);F!==z&&($=$.replace(F,z),v.current=s)}const L=kr(w.current),H=kr(r);$=$.replace(L,H),w.current=r,m($),f(!0),y(!1),A(0),E(F=>F+1),k.current=!1,N.current&&(clearTimeout(N.current),N.current=null);return}},[t,r,s]),te(()=>{if(j){const $=j+"?width=600px";b.current=$,r&&(w.current=r),s&&(v.current=s),m($),p(!1),f(!0)}},[j]),te(()=>{const $=L=>{L.data.type==="codeyam-resize"&&(k.current||(k.current=!0,N.current&&(clearTimeout(N.current),N.current=null),A(0),y(!0),requestAnimationFrame(()=>{requestAnimationFrame(()=>{f(!1)})})))};return window.addEventListener("message",$),()=>window.removeEventListener("message",$)},[]);const I=()=>{k.current=!1,N.current&&clearTimeout(N.current);const $=300*Math.pow(2,C);N.current=setTimeout(()=>{k.current||(C<2?(A(L=>L+1),E(L=>L+1),f(!0)):(console.error("[useInteractiveMode] Interactive mode failed to load after 3 attempts - showing iframe anyway"),y(!0),f(!1)))},$)};return te(()=>{o&&!x.current&&t&&e&&(x.current=!0,p(!0),y(!1),m(null),(async()=>{if(a)try{await fetch(`/api/logs/${a}`,{method:"DELETE"})}catch(L){console.error("[useInteractiveMode] Failed to clear log file:",L)}T(),l.submit({action:"start",analysisId:e,scenarioId:t},{method:"post",action:"/api/interactive-mode"})})())},[o,t,e,T,a]),te(()=>{const $=e,L=()=>{if(x.current&&$){const F=new URLSearchParams({action:"stop",analysisId:$});console.log("[useInteractiveMode] Sending stop request via sendBeacon");const z=navigator.sendBeacon("/api/interactive-mode",F);console.log("[useInteractiveMode] sendBeacon result:",z),z||(console.log("[useInteractiveMode] sendBeacon failed, using fetch fallback"),fetch("/api/interactive-mode",{method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},body:F,keepalive:!0}).catch(U=>console.error("Failed to stop interactive mode:",U)))}},H=()=>{L()};return window.addEventListener("beforeunload",H),()=>{window.removeEventListener("beforeunload",H),console.log("[useInteractiveMode] Cleanup running:",{hasStarted:x.current,analysisId:$}),L()}},[e]),{interactiveServerUrl:c,isStarting:u,isLoading:h,showIframe:g,iframeKey:S,onIframeLoad:I}}const Er=10,xh=1024;function Ha({currentViewportWidth:e,currentPresetName:t,onDevicePresetClick:r,devicePresets:s,onHoverChange:a,hideLabel:o=!1,lightMode:i=!1}){const[l,c]=M(null),m=be(null),u=oe(()=>[...s].sort((w,v)=>w.width-v.width),[s]),{fittingPresets:p,overflowPresets:h}=oe(()=>{const w=[],v=[];for(const C of u)C.width<=xh?w.push(C):v.push(C);return v.sort((C,A)=>A.width-C.width),{fittingPresets:w,overflowPresets:v}},[u]),f=le(w=>{if(!m.current)return null;const v=m.current.getBoundingClientRect(),C=w-v.left,A=v.width,S=A/2,N=(p.length>0?p[p.length-1].width:0)/2,k=S-N,j=S+N,T=h.length>0?(h.length-1)*Er:0;if(h.length>0){if(C<k){if(C<=T){const R=Math.min(Math.floor(C/Er),h.length-1);return h[R]}return h[h.length-1]}if(C>j){const R=A-C;if(R<=T){const I=Math.min(Math.floor(R/Er),h.length-1);return h[I]}return h[h.length-1]}}const P=Math.abs(C-S);for(let R=p.length-1;R>=0;R--){const I=p[R],$=p[R-1],L=I.width/2,H=$?$.width/2:0;if(P<=L&&P>=H)return I}return p[0]||h[h.length-1]||null},[p,h]),g=le(w=>{const v=f(w.clientX);c(v),a==null||a(v)},[f,a]),y=le(()=>{c(null),a==null||a(null)},[a]),x=le(w=>{const v=f(w.clientX);v&&r(v)},[f,r]),b=l||{name:t,width:e};return d("div",{ref:m,className:"relative h-6 shrink-0 overflow-hidden cursor-pointer",onMouseMove:g,onMouseLeave:y,onClick:x,children:[l&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:n("div",{className:"h-full transition-all duration-100 bg-[#005C75]",style:{width:`${l.width}px`}})}),n("div",{className:"absolute inset-0 pointer-events-none",children:p.map(w=>{const v=w.width===e,C=(l==null?void 0:l.name)===w.name,A=w.width/2;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% - ${A}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${v||C?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{left:`calc(50% + ${A}px)`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${v||C?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},w.name)})}),n("div",{className:"absolute inset-0 pointer-events-none",children:h.map((w,v)=>{const C=v*Er,A=w.width===e,S=(l==null?void 0:l.name)===w.name;return d("div",{children:[n("div",{className:"absolute top-0 bottom-0",style:{left:`${C}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${A||S?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})}),n("div",{className:"absolute top-0 bottom-0",style:{right:`${C}px`},children:n("div",{className:`w-0.5 h-full transition-colors duration-75 ${A||S?i?"bg-gray-900":"bg-white":i?"bg-[rgba(0,0,0,0.2)]":"bg-[rgba(255,255,255,0.3)]"}`})})]},w.name)})}),!o&&n("div",{className:"absolute inset-0 flex items-center justify-center pointer-events-none",children:d("div",{className:`text-[10px] px-2 py-0.5 rounded shadow-sm whitespace-nowrap transition-colors ${l?"bg-[#005c75] text-white":"bg-white/90 text-[#005c75] border border-[rgba(0,92,117,0.25)]"}`,children:[b.name," - ",b.width,"px"]})})]})}function bh({currentWidth:e,currentHeight:t,devicePresets:r,customSizes:s,onApply:a,onSave:o,onRemove:i,onClose:l}){const[c,m]=M(String(e)),[u,p]=M(String(t)),[h,f]=M(""),[g,y]=M(!1),x=be(null),b=be(null);te(()=>{const k=j=>{x.current&&!x.current.contains(j.target)&&l()};return document.addEventListener("mousedown",k),()=>document.removeEventListener("mousedown",k)},[l]),te(()=>{const k=j=>{j.key==="Escape"&&l()};return document.addEventListener("keydown",k),()=>document.removeEventListener("keydown",k)},[l]),te(()=>{var k;(k=b.current)==null||k.select()},[]);const w=parseInt(c,10),v=parseInt(u,10),C=w>0&&v>0,A=C&&(w!==e||v!==t),S=()=>{C&&(a({name:"Custom",width:w,height:v}),l())},E=()=>{const k=h.trim();!k||!C||(o(k,w,v),a({name:k,width:w,height:v}),l())},N=k=>{k.key==="Enter"&&(g&&h.trim()?E():A&&S())};return d("div",{ref:x,className:"absolute top-full mt-1 right-0 bg-[#2a2a2a] border border-[#444] rounded-lg shadow-xl z-50 w-64",children:[r&&r.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Presets"}),r.map(k=>d("button",{onClick:()=>{a(k),l()},className:`w-full px-3 py-1.5 text-left text-xs transition-colors cursor-pointer ${k.width===e&&k.height===t?"text-white bg-[#444]":"text-gray-300 hover:text-white hover:bg-[#333]"}`,children:[n("span",{className:"font-medium",children:k.name}),d("span",{className:"text-gray-500 ml-1.5",children:[k.width,"×",k.height]})]},k.name))]}),s.length>0&&d("div",{className:"border-b border-[#444]",children:[n("div",{className:"px-3 py-1.5 text-[10px] uppercase tracking-wider text-gray-500",children:"Saved Sizes"}),s.map(k=>d("div",{className:"flex items-center group hover:bg-[#333] transition-colors",children:[d("button",{onClick:()=>{a(k),l()},className:"flex-1 px-3 py-1.5 text-left text-xs text-gray-300 hover:text-white transition-colors cursor-pointer",children:[n("span",{className:"font-medium",children:k.name}),d("span",{className:"text-gray-500 ml-1.5",children:[k.width,"×",k.height]})]}),n("button",{onClick:()=>i(k.name),className:"px-2 py-1.5 text-gray-600 hover:text-red-400 opacity-0 group-hover:opacity-100 transition-all cursor-pointer",title:"Remove",children:n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M18 6L6 18M6 6l12 12"})})})]},k.name))]}),d("div",{className:"p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n("input",{ref:b,type:"number",value:c,onChange:k=>m(k.target.value),onKeyDown:N,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Width"}),n("span",{className:"text-gray-500 text-xs flex-shrink-0",children:"×"}),n("input",{type:"number",value:u,onChange:k=>p(k.target.value),onKeyDown:N,min:"100",max:"7680",className:"w-full px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white text-center focus:outline-none focus:border-[#007a99] [appearance:textfield] [&::-webkit-outer-spin-button]:appearance-none [&::-webkit-inner-spin-button]:appearance-none",placeholder:"Height"})]}),d("div",{className:"flex gap-2",children:[n("button",{onClick:S,disabled:!C||!A,className:"flex-1 px-2 py-1.5 bg-[#007a99] text-white text-xs font-medium rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"Apply"}),g?d("div",{className:"flex gap-1",children:[n("input",{type:"text",value:h,onChange:k=>f(k.target.value),onKeyDown:N,placeholder:"Name",className:"w-20 px-2 py-1.5 bg-[#1a1a1a] border border-[#555] rounded text-xs text-white focus:outline-none focus:border-[#007a99]",autoFocus:!0}),n("button",{onClick:E,disabled:!h.trim()||!C,className:"px-2 py-1.5 bg-[#007a99] text-white text-xs rounded hover:bg-[#006080] transition-colors cursor-pointer disabled:bg-[#333] disabled:text-gray-600 disabled:cursor-not-allowed",children:"OK"})]}):n("button",{onClick:()=>y(!0),disabled:!C,className:"px-2 py-1.5 bg-[#333] text-gray-300 text-xs rounded hover:bg-[#444] transition-colors cursor-pointer disabled:text-gray-600 disabled:cursor-not-allowed",title:"Save as preset",children:"Save"})]})]})]})}function Va({width:e,height:t,onSave:r,onCancel:s}){const[a,o]=M(""),[i,l]=M(""),c=()=>{const m=a.trim();if(!m){l("Please enter a name");return}r(m)};return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-md w-full p-6 shadow-xl",children:[d("div",{className:"flex items-center justify-between mb-6",children:[n("h2",{className:"text-xl font-semibold text-gray-900",children:"Save Custom Size"}),n("button",{onClick:s,className:"text-gray-400 hover:text-gray-600 transition-colors cursor-pointer","aria-label":"Close",children:n("svg",{className:"w-5 h-5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]}),d("div",{className:"mb-6 p-4 bg-gray-50 rounded-lg border border-gray-200",children:[n("div",{className:"text-sm text-gray-500 mb-1",children:"Dimensions"}),d("div",{className:"text-lg font-medium text-gray-900",children:[e,"px × ",t,"px"]})]}),d("div",{className:"mb-6",children:[n("label",{htmlFor:"custom-size-name",className:"block text-sm font-medium text-gray-700 mb-2",children:"Name"}),n("input",{id:"custom-size-name",type:"text",value:a,onChange:m=>{o(m.target.value),l("")},onKeyDown:m=>{m.key==="Enter"&&a.trim()&&c(),m.key==="Escape"&&s()},placeholder:"e.g., iPhone 15 Pro",className:`w-full px-3 py-2 border rounded-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75] ${i?"border-red-300":"border-gray-300"}`,autoFocus:!0}),i&&n("p",{className:"mt-1 text-sm text-red-600",children:i})]}),d("div",{className:"flex gap-3 justify-end",children:[n("button",{onClick:s,className:"px-4 py-2 bg-gray-100 text-gray-700 text-sm font-medium rounded-md hover:bg-gray-200 transition-colors cursor-pointer",children:"Cancel"}),n("button",{onClick:c,disabled:!a.trim(),className:"px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] transition-colors cursor-pointer disabled:bg-gray-300 disabled:cursor-not-allowed",children:"Save"})]})]})})}function vs(e){const[t,r]=M([]),s=e?`codeyam-custom-sizes-${e}`:null;te(()=>{if(!s||typeof window>"u"){r([]);return}try{const l=localStorage.getItem(s);if(l){const c=JSON.parse(l);Array.isArray(c)&&r(c)}}catch(l){console.error("[useCustomSizes] Failed to load custom sizes:",l),r([])}},[s]);const a=le(l=>{if(!(!s||typeof window>"u"))try{localStorage.setItem(s,JSON.stringify(l))}catch(c){console.error("[useCustomSizes] Failed to save custom sizes:",c)}},[s]),o=le((l,c,m)=>{r(u=>{const p=u.findIndex(g=>g.name===l),h={name:l,width:c,height:m};let f;return p>=0?(f=[...u],f[p]=h):f=[...u,h],a(f),f})},[a]),i=le(l=>{r(c=>{const m=c.filter(u=>u.name!==l);return a(m),m})},[a]);return{customSizes:t,addCustomSize:o,removeCustomSize:i}}function Ft(){return d("div",{className:"spinner-container",children:[n("span",{className:"loader"}),n("style",{children:`
43
- .loader {
44
- width: 48px;
45
- height: 48px;
46
- border: 3px solid rgba(0, 92, 117, 0.2);
47
- border-radius: 50%;
48
- display: inline-block;
49
- position: relative;
50
- box-sizing: border-box;
51
- animation: rotation 1s linear infinite;
52
- }
53
- .loader::after {
54
- content: '';
55
- box-sizing: border-box;
56
- position: absolute;
57
- left: 50%;
58
- top: 50%;
59
- transform: translate(-50%, -50%);
60
- width: 56px;
61
- height: 56px;
62
- border-radius: 50%;
63
- border: 3px solid;
64
- border-color: #005c75 transparent;
65
- }
66
-
67
- @keyframes rotation {
68
- 0% {
69
- transform: rotate(0deg);
70
- }
71
- 100% {
72
- transform: rotate(360deg);
73
- }
74
- }
75
- `})]})}const Wo=["⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷"],wh=80;function Sn(){const[e,t]=M(0);return te(()=>{const r=setInterval(()=>{t(s=>(s+1)%Wo.length)},wh);return()=>clearInterval(r)},[]),n("span",{className:"inline-block mr-2",children:Wo[e]})}async function vh({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw Z("Invalid parameters",{status:400});const s=await an(t);if(!s)throw Z("Entity not found",{status:404});const a=await ps(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw Z("Scenario not found",{status:404});const i=await De();return Z({entity:s,scenario:o,analysis:a,projectSlug:i})}const Js=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1920,height:1080}],Nh=Ye(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=He(),o=Nt(),[i]=kn(),[l,c]=M(null),[m,u]=M(1920),[p,h]=M({name:"Desktop",width:1920,height:1080}),[f,g]=M(!1),[y,x]=M(null),{customSizes:b,addCustomSize:w}=vs(a),v=oe(()=>[...Js,...b],[b]),C=be(null),[A,S]=M(1),E=le(()=>{if(!C.current)return;const D=32,W=C.current.clientWidth-D,G=C.current.clientHeight-D,ne=p.width,se=p.height??900,re=Math.min(1,W/ne,G/se);S(re)},[p.width,p.height]);te(()=>(E(),window.addEventListener("resize",E),()=>window.removeEventListener("resize",E)),[E]);const{interactiveServerUrl:N,isStarting:k,isLoading:j,showIframe:T,iframeKey:P,onIframeLoad:R}=cn({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0}),{lastLine:I}=kt(a,k||j),$=()=>{o(`/entity/${t.sha}`)},L=(D,W)=>{u(D);const G=v.find(se=>se.width===D&&se.height===W);c(G||null),h({name:(G==null?void 0:G.name)||"Custom",width:D,height:W})},H=D=>{c(D),u(D.width),h({name:D.name,width:D.width,height:D.height})},F=D=>{w(D,p.width,p.height??900),g(!1),h(W=>({...W,name:D}))},z=((s==null?void 0:s.scenarios)||[]).filter(D=>{var W;return!((W=D.metadata)!=null&&W.sameAsDefault)}),U=z.findIndex(D=>D.id===(r==null?void 0:r.id)),O=U+1,_=z.length,Y=U>0,Q=U<z.length-1,K=()=>{if(Y){const D=z[U-1],W=encodeURIComponent(`/entity/${t.sha}/scenarios/${D.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${D.id}/fullscreen?from=${W}`)}},ae=()=>{if(Q){const D=z[U+1],W=encodeURIComponent(`/entity/${t.sha}/scenarios/${D.id}/fullscreen`);o(`/entity/${t.sha}/scenarios/${D.id}/fullscreen?from=${W}`)}},J=k||j||!T;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:cs,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:K,disabled:!Y,className:`${Y?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[O,"/",_]}),n("button",{onClick:ae,disabled:!Q,className:`${Q?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]})]}),n("button",{onClick:$,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close fullscreen",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${Js[Js.length-1].width}px`,width:"100%"},children:n(Ha,{currentViewportWidth:m,currentPresetName:p.name,onDevicePresetClick:H,devicePresets:v,hideLabel:!0,onHoverChange:x,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(y==null?void 0:y.name)||p.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:p.name,onChange:D=>{const W=v.find(G=>G.name===D.target.value);W&&H(W)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[v.map(D=>n("option",{value:D.name,children:D.name},D.name)),p.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:p.width,onChange:D=>{const W=parseInt(D.target.value,10);!isNaN(W)&&W>0&&L(W,p.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"×"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:p.height??900}),p.name==="Custom"&&n("button",{onClick:()=>g(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{ref:C,className:"flex-1 flex items-center justify-center overflow-hidden p-4",style:{backgroundImage:`
76
- linear-gradient(45deg, #ebebeb 25%, transparent 25%),
77
- linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
78
- linear-gradient(45deg, transparent 75%, #ebebeb 75%),
79
- linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
80
- `,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:N?d("div",{className:"relative bg-white",style:{width:`${p.width}px`,height:`${p.height??900}px`,transform:`scale(${A})`,transformOrigin:"center center"},children:[J&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),I&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),I]})]})]})}),n("iframe",{src:N,className:"w-full h-full border-none",title:`Interactive preview: ${r==null?void 0:r.name}`,onLoad:R,style:{opacity:T?1:0}},P)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),I&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),I]})]})]})}),f&&n(Va,{width:p.width,height:p.height??900,onSave:F,onCancel:()=>g(!1)})]})}),Ch=Object.freeze(Object.defineProperty({__proto__:null,default:Nh,loader:vh},Symbol.toStringTag,{value:"Module"})),wn={sound:"soft-double-tap",systemNotification:!0},Sh=[{id:"soft-double-tap",label:"Soft double tap"},{id:"gentle-chime",label:"Gentle chime"},{id:"warm-ding",label:"Warm ding"},{id:"mellow-two-tone",label:"Mellow two-tone"},{id:"triangle-bell",label:"Triangle bell"},{id:"off",label:"No sound"}],Tl="codeyam-editor-notifications";function kh(){try{const e=localStorage.getItem(Tl);if(!e)return wn;const t=JSON.parse(e);return typeof t=="string"?t==="true"?wn:{...wn,sound:"off",systemNotification:!1}:{...wn,...t}}catch{return wn}}function Eh(e){localStorage.setItem(Tl,JSON.stringify(e))}function Ml(e){var t;if(e!=="off")try{const r=new AudioContext,s={"soft-double-tap":a=>{[0,.12].forEach(o=>{const i=a.createOscillator(),l=a.createGain();i.connect(l),l.connect(a.destination),i.type="sine",i.frequency.value=392,l.gain.setValueAtTime(.25,a.currentTime+o),l.gain.exponentialRampToValueAtTime(.01,a.currentTime+o+.1),i.start(a.currentTime+o),i.stop(a.currentTime+o+.1)})},"gentle-chime":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(523,a.currentTime),o.frequency.setValueAtTime(659,a.currentTime+.15),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.4),o.start(),o.stop(a.currentTime+.4)},"warm-ding":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.value=330,i.gain.setValueAtTime(.35,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.6),o.start(),o.stop(a.currentTime+.6)},"mellow-two-tone":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="sine",o.frequency.setValueAtTime(294,a.currentTime),o.frequency.setValueAtTime(440,a.currentTime+.18),i.gain.setValueAtTime(.3,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.5),o.start(),o.stop(a.currentTime+.5)},"triangle-bell":a=>{const o=a.createOscillator(),i=a.createGain();o.connect(i),i.connect(a.destination),o.type="triangle",o.frequency.value=523,i.gain.setValueAtTime(.4,a.currentTime),i.gain.exponentialRampToValueAtTime(.01,a.currentTime+.8),o.start(),o.stop(a.currentTime+.8)}};(t=s[e])==null||t.call(s,r)}catch{}}function $l({serverUrl:e,isStarting:t,projectSlug:r,devServerError:s,onStartServer:a,notificationSettings:o,onChangeNotificationSettings:i}){const[l,c]=M(null),[m,u]=M(!1),p=be(null),h=be(null);te(()=>{if(!r)return;const b=new EventSource("/api/dev-mode-events");return b.onmessage=w=>{try{const v=JSON.parse(w.data);v.type==="file-synced"&&(c(v.fileName),h.current&&clearTimeout(h.current),h.current=setTimeout(()=>{c(null)},5e3))}catch{}},()=>{b.close(),h.current&&clearTimeout(h.current)}},[r]),te(()=>{if(!m)return;function b(w){p.current&&!p.current.contains(w.target)&&u(!1)}return document.addEventListener("mousedown",b),()=>document.removeEventListener("mousedown",b)},[m]);let f;s?f="error":t?f="starting":e?f="running":f="stopped";const g={starting:"bg-yellow-400",running:"bg-green-400",stopped:"bg-gray-400",error:"bg-red-400"},y={starting:"Starting...",running:e||"Running",stopped:"Stopped",error:"Error"},x=o&&(o.sound!=="off"||o.systemNotification);return d("div",{className:"bg-[#1e1e1e] border-t border-[#3d3d3d] h-7 flex items-center px-4 gap-4 shrink-0 text-xs font-mono",children:[d("div",{className:"flex items-center gap-2",children:[n("div",{className:`w-2 h-2 rounded-full ${g[f]}`}),d("span",{className:"text-gray-400",children:["Server:"," ",n("span",{className:"text-gray-300",children:y[f]})]}),(f==="stopped"||f==="error")&&a&&n("button",{onClick:a,className:"ml-1 px-2.5 py-0.5 bg-[#005c75] hover:bg-[#007a9a] text-white text-[11px] font-medium rounded transition-colors cursor-pointer border-none leading-tight",children:"Start Server"})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"}),l&&d(pe,{children:[d("div",{className:"flex items-center gap-1.5",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"#4ade80",strokeWidth:"2",children:n("path",{d:"M20 6L9 17l-5-5"})}),d("span",{className:"text-green-400",children:["Synced: ",l]})]}),n("div",{className:"w-px h-3 bg-[#3d3d3d]"})]}),n("div",{className:"flex-1"}),i&&o&&d("div",{className:"relative",ref:p,children:[n("button",{onClick:()=>u(!m),className:`text-[11px] rounded transition-colors cursor-pointer ${x?"text-green-400 hover:text-green-300":"text-gray-500 hover:text-gray-300"}`,children:x?"Notifications On":"Notifications Off"}),m&&d("div",{className:"absolute bottom-full right-0 mb-2 w-56 bg-[#2d2d2d] border border-[#4d4d4d] rounded-lg shadow-xl p-3 flex flex-col gap-3 z-50",children:[d("div",{children:[n("div",{className:"text-[11px] text-gray-400 mb-1.5",children:"Notification sound"}),n("div",{className:"flex flex-col gap-0.5",children:Sh.map(b=>n("button",{onClick:()=>{i({...o,sound:b.id}),b.id!=="off"&&Ml(b.id)},className:`text-left text-[11px] px-2 py-1 rounded cursor-pointer transition-colors ${o.sound===b.id?"bg-[#444] text-white":"text-gray-300 hover:bg-[#3a3a3a]"}`,children:b.label},b.id))})]}),d("div",{className:"border-t border-[#4d4d4d] pt-2",children:[d("label",{className:"flex items-center gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:o.systemNotification,onChange:b=>{const w=b.target.checked;i({...o,systemNotification:w}),w&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},className:"accent-green-500"}),n("span",{className:"text-[11px] text-gray-300",children:"System notification"})]}),n("div",{className:"text-[10px] text-gray-500 mt-1 ml-5",children:"Shows when tab is not visible"})]})]})]})]})}async function _h(e,t){try{const{WebglAddon:s}=await import("@xterm/addon-webgl"),a=new s;return a.onContextLoss(()=>{t==null||t("webgl","canvas",new Error("WebGL context lost")),a.dispose(),Jo(e).then(o=>{o||t==null||t("canvas","dom",new Error("Canvas fallback failed after context loss"))})}),e.loadAddon(a),{type:"webgl",dispose:()=>a.dispose()}}catch(s){t==null||t("webgl","canvas",s)}const r=await Jo(e);return r||(t==null||t("canvas","dom",new Error("Canvas addon failed")),{type:"dom",dispose:()=>{}})}async function Jo(e){try{const{CanvasAddon:t}=await import("@xterm/addon-canvas"),r=new t;return e.loadAddon(r),{type:"canvas",dispose:()=>r.dispose()}}catch{return null}}const Ah=`
81
- .xterm { cursor: text; position: relative; user-select: none; -ms-user-select: none; -webkit-user-select: none; }
82
- .xterm.focus, .xterm:focus { outline: none; }
83
- .xterm .xterm-helpers { position: absolute; top: 0; z-index: 5; }
84
- .xterm .xterm-helper-textarea { padding: 0; border: 0; margin: 0; position: absolute; opacity: 0; left: -9999em; top: 0; width: 0; height: 0; z-index: -5; white-space: nowrap; overflow: hidden; resize: none; }
85
- .xterm .composition-view { background: #000; color: #FFF; display: none; position: absolute; white-space: nowrap; z-index: 1; }
86
- .xterm .composition-view.active { display: block; }
87
- .xterm .xterm-viewport { background-color: #000; overflow-y: scroll; cursor: default; position: absolute; right: 0; left: 0; top: 0; bottom: 0; }
88
- .xterm .xterm-screen { position: relative; }
89
- .xterm .xterm-screen canvas { position: absolute; left: 0; top: 0; }
90
- .xterm .xterm-scroll-area { visibility: hidden; }
91
- .xterm-char-measure-element { display: inline-block; visibility: hidden; position: absolute; top: 0; left: -9999em; line-height: normal; }
92
- .xterm.enable-mouse-events { cursor: default; }
93
- .xterm.xterm-cursor-pointer, .xterm .xterm-cursor-pointer { cursor: pointer; }
94
- .xterm.column-select.focus { cursor: crosshair; }
95
- .xterm .xterm-accessibility:not(.debug), .xterm .xterm-message { position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 10; color: transparent; pointer-events: none; }
96
- .xterm .xterm-accessibility-tree:not(.debug) *::selection { color: transparent; }
97
- .xterm .xterm-accessibility-tree { user-select: text; white-space: pre; }
98
- .xterm .live-region { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
99
- .xterm-dim { opacity: 1 !important; }
100
- .xterm-underline-1 { text-decoration: underline; }
101
- .xterm-underline-2 { text-decoration: double underline; }
102
- .xterm-underline-3 { text-decoration: wavy underline; }
103
- .xterm-underline-4 { text-decoration: dotted underline; }
104
- .xterm-underline-5 { text-decoration: dashed underline; }
105
- .xterm-overline { text-decoration: overline; }
106
- .xterm-strikethrough { text-decoration: line-through; }
107
- .xterm-screen .xterm-decoration-container .xterm-decoration { z-index: 6; position: absolute; }
108
- .xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer { z-index: 7; }
109
- .xterm-decoration-overview-ruler { z-index: 8; position: absolute; top: 0; right: 0; pointer-events: none; }
110
- .xterm-decoration-top { z-index: 2; position: relative; }
111
- `;function Ph(){if(document.getElementById("xterm-css"))return;const e=document.createElement("style");e.id="xterm-css",e.textContent=Ah,document.head.appendChild(e)}const Il=ad(function({entityName:t,entityType:r,entitySha:s,entityFilePath:a,scenarioName:o,scenarioDescription:i,analysisId:l,projectSlug:c,onRefreshPreview:m,onShowResults:u,onHideResults:p,onSetViewport:h,editorMode:f,onIdleChange:g,notificationSettings:y,buildTabActive:x,claudeStartMode:b,claudeSessionId:w},v){const C=be(null),A=be(null),S=be(null),E=be(null),N=be(null),k=be(!1),j=be(0),T=be(!1),P=be(g);P.current=g;const R=be(y);R.current=y;const I=be(x);I.current=x;const $=be(null);function L(){$.current&&($.current.close(),$.current=null)}te(()=>{function F(){L()}function z(){document.hidden||L()}return window.addEventListener("focus",F),document.addEventListener("visibilitychange",z),()=>{window.removeEventListener("focus",F),document.removeEventListener("visibilitychange",z)}},[]);const H=le(()=>{var F;(F=S.current)==null||F.focus()},[]);return od(v,()=>({sendInput(F){const z=E.current;z&&z.readyState===WebSocket.OPEN&&(z.send(JSON.stringify({type:"input",data:F})),setTimeout(()=>{z.readyState===WebSocket.OPEN&&z.send(JSON.stringify({type:"input",data:"\r"}))},100))},focus(){var F;(F=S.current)==null||F.focus()},scrollToBottom(){var z;const F=(z=C.current)==null?void 0:z.querySelector(".xterm-viewport");F&&(F.scrollTop=F.scrollHeight)}})),te(()=>{const F=C.current;if(!F)return;let z=!1;return Ph(),Promise.all([import("@xterm/xterm"),import("@xterm/addon-fit"),import("@xterm/addon-web-links")]).then(([U,O,_])=>{if(z)return;const Y=new U.Terminal({cursorBlink:!0,scrollback:5e3,fontSize:13,fontFamily:"'IBM Plex Mono', 'Menlo', 'Monaco', monospace",theme:{background:"#1e1e1e",foreground:"#d4d4d4",cursor:"#d4d4d4",selectionBackground:"#264f78"},linkHandler:{activate(se,re){try{const ee=new URL(re),de=ee.searchParams.get("scenario");if(de&&ee.pathname==="/editor"){const me=new BroadcastChannel("codeyam-editor");me.postMessage({type:"switch-scenario",scenarioId:de}),me.close();return}}catch{}window.open(re,"_blank")}}}),Q=new O.FitAddon;Y.loadAddon(Q),Y.loadAddon(new _.WebLinksAddon),Y.open(F);let K=null;_h(Y,(se,re,ee)=>{console.warn(`[Terminal] Renderer fallback: ${se} → ${re}`,ee)}).then(se=>{if(z){se.dispose();return}console.log(`[Terminal] Using ${se.type} renderer`),K=se.dispose}),requestAnimationFrame(()=>{try{Q.fit()}catch{}}),S.current=Y,Y.focus(),setTimeout(()=>Y.focus(),100),setTimeout(()=>Y.focus(),500);const ae=window.location.protocol==="https:"?"wss:":"ws:",J=window.location.host;function D(se){const re=new URLSearchParams;return re.set("entityName",t),r&&re.set("entityType",r),s&&re.set("entitySha",s),a&&re.set("entityFilePath",a),o&&re.set("scenarioName",o),i&&re.set("scenarioDescription",i),l&&re.set("analysisId",l),c&&re.set("projectSlug",c),f&&re.set("editorMode","true"),se&&re.set("reconnectId",se),b&&re.set("claudeStartMode",b),w&&re.set("claudeSessionId",w),`${ae}//${J}/ws/terminal?${re.toString()}`}function W(se){const re=D(se),ee=new WebSocket(re);E.current=ee,ee.onopen=()=>{j.current=0,T.current=!1,ee.send(JSON.stringify({type:"resize",cols:Y.cols,rows:Y.rows}))},ee.onmessage=de=>{var me,Te,xe;try{const Ce=JSON.parse(de.data);if(Ce.type==="session-id"){N.current=Ce.sessionId;return}if(Ce.type==="refresh-preview"){m==null||m(Ce.path,Ce.scenarioId);return}if(Ce.type==="show-results"){u==null||u();return}if(Ce.type==="hide-results"){p==null||p();return}if(Ce.type==="set-viewport"){h==null||h({name:Ce.name,width:Ce.width,height:Ce.height});return}if(Ce.type==="claude-idle"){(me=P.current)==null||me.call(P,!0);const $e=R.current;if(I.current)return;if($e!=null&&$e.sound&&$e.sound!=="off"&&Ml($e.sound),!document.hasFocus()&&($e!=null&&$e.systemNotification)&&typeof Notification<"u"&&Notification.permission==="granted"){$.current&&$.current.close();const Ae=new Notification("Claude is ready for you",{body:"Claude has finished and is waiting for your input.",tag:"claude-idle"});Ae.onclick=()=>{window.focus(),Ae.close()},$.current=Ae}return}if(Ce.type==="claude-active"){(Te=P.current)==null||Te.call(P,!1),$.current&&($.current.close(),$.current=null);return}Ce.type==="output"&&(Y.write(Ce.data),(xe=P.current)==null||xe.call(P,!1))}catch{Y.write(de.data)}},ee.onclose=()=>{if(k.current){Y.write(`\r
112
- \x1B[90m[Terminal session ended]\x1B[0m\r
113
- `);return}const de=j.current;if(de<5&&N.current){const me=1e3*Math.pow(2,Math.min(de,3));j.current=de+1,Y.write(`\r
114
- \x1B[33m[Reconnecting...]\x1B[0m\r
115
- `),setTimeout(()=>{k.current||W(N.current)},me)}else T.current?Y.write(`\r
116
- \x1B[90m[Terminal session ended]\x1B[0m\r
117
- `):(T.current=!0,Y.write(`\r
118
- \x1B[33m[Starting new session...]\x1B[0m\r
119
- `),N.current=null,j.current=0,W())},ee.onerror=()=>{}}W(),Y.onData(se=>{const re=E.current;re&&re.readyState===WebSocket.OPEN&&re.send(JSON.stringify({type:"input",data:se})),L()});let G=null;const ne=new ResizeObserver(()=>{G&&clearTimeout(G),G=setTimeout(()=>{let se;try{se=Q.proposeDimensions()}catch{return}if(!se||se.cols===Y.cols&&se.rows===Y.rows)return;const re=F.querySelector(".xterm-viewport");let ee,de=!0;re&&(ee=re.scrollTop,de=re.scrollTop+re.clientHeight>=re.scrollHeight-10),Q.fit(),re&&ee!==void 0&&(de?re.scrollTop=re.scrollHeight:re.scrollTop=ee);const me=E.current;me&&me.readyState===WebSocket.OPEN&&me.send(JSON.stringify({type:"resize",cols:Y.cols,rows:Y.rows}))},150)});ne.observe(F),A.current=()=>{var se;G&&clearTimeout(G),ne.disconnect(),k.current=!0,(se=E.current)==null||se.close(),E.current=null,K==null||K(),Y.dispose(),S.current=null}}),()=>{var U;z=!0,(U=A.current)==null||U.call(A),A.current=null}},[]),n("div",{ref:C,onClick:H,className:"w-full h-full",style:{padding:"4px 0 0 8px"}})});function Ge({screenshotPath:e,cacheBuster:t,alt:r,className:s="",title:a}){const[o,i]=M("loading"),[l,c]=M(!1),m=be(null),u=t?`/api/screenshot/${e}?cb=${t}`:`/api/screenshot/${e}`,p=()=>{i("success"),c(!0)},h=()=>{i("error"),c(!1)};return te(()=>{i("loading"),c(!1);const f=m.current;f!=null&&f.complete&&(f.naturalHeight!==0?(i("success"),c(!0)):(i("error"),c(!1)))},[u]),e?d("div",{className:"relative w-full h-full flex items-center justify-center",title:a,children:[n("img",{ref:m,src:u,alt:r,onLoad:p,onError:h,className:s||"max-w-full max-h-full object-contain",style:{visibility:l?"visible":"hidden",position:l?"relative":"absolute"}}),o==="loading"&&n("div",{className:"absolute inset-0 bg-gray-100 animate-pulse rounded flex items-center justify-center",children:n("svg",{className:"w-8 h-8 text-gray-300",fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 16l4.586-4.586a2 2 0 012.828 0L16 16m-2-2l1.586-1.586a2 2 0 012.828 0L20 14m-6-6h.01M6 20h12a2 2 0 002-2V6a2 2 0 00-2-2H6a2 2 0 00-2 2v12a2 2 0 002 2z"})})}),o==="error"&&d("div",{className:"absolute inset-0 border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",children:[n("span",{className:"text-2xl text-gray-400",children:"📷"}),n("span",{className:"text-gray-400 whitespace-nowrap",children:"No Screenshot"})]})]}):n("div",{className:"w-full h-full border-2 border-dashed border-gray-300 bg-gray-50 rounded flex flex-col items-center justify-center text-xs gap-1",title:a,children:n("span",{className:"text-2xl text-gray-400",children:"📷"})})}function jh({scenarios:e,currentScenarioId:t,entitySha:r,cacheBuster:s}){const a=Nt();return e.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8",children:n("p",{className:"text-gray-500 text-sm",children:"No scenarios found"})}):n("div",{className:"flex-1 overflow-y-auto p-3 space-y-3",children:e.map(o=>{var c,m;const i=o.id===t,l=(m=(c=o.metadata)==null?void 0:c.screenshotPaths)==null?void 0:m[0];return d("button",{onClick:()=>{a(`/entity/${r}/scenarios/${o.id}/dev`)},className:`w-full text-left rounded-lg overflow-hidden border transition-colors cursor-pointer flex ${i?"border-[#005c75] bg-[#1a3a44]":"border-[#3d3d3d] bg-[#252525] hover:border-[#555]"}`,children:[n("div",{className:"w-24 h-20 shrink-0 bg-[#1a1a1a]",children:n(Ge,{screenshotPath:l,cacheBuster:s,alt:o.name,className:"w-full h-full object-cover object-top"})}),d("div",{className:"p-2.5 min-w-0 flex-1",children:[d("div",{className:"text-white text-sm font-medium truncate",children:[i&&n("span",{className:"inline-block w-1.5 h-1.5 rounded-full bg-[#005c75] mr-1.5 relative top-[-1px]"}),o.name]}),o.description&&n("div",{className:"text-gray-400 text-xs mt-1 line-clamp-2",children:o.description})]})]},o.id)})})}function ft(e,t){const r=new Map;for(const s of e)r.set(t(s),s);return[...r.values()]}function vt(e){return e.replace(/[^a-zA-Z0-9_]+/g,"_")}function Rl(e){return e.toLowerCase().replace(/[^a-z0-9]+/g,"-").replace(/^-+|-+$/g,"")}function Ga(e){return e.replace("T"," ").replace(/\.\d{3}Z$/,"")}function Th(e,t){return!!(e.created_at&&e.created_at>=t||e.updated_at&&e.updated_at>=t)}const Mh=["defaultScreenSize","screenSizes","projectTitle","projectDescription"];function gS(e){try{const t=JSON.parse(ge.readFileSync(e,"utf8")),r={};for(const s of Mh)t[s]!==void 0&&(r[s]=t[s]);return r}catch{return{}}}function $h(e){const t=X.join(e,".codeyam","editor-step.json");try{ge.unlinkSync(t)}catch{}}function ua(e,t,r){const s=e&&e.startsWith("/");return s&&t?`${t}${e}`:e&&!s?e:t||r||null}function Ih(e){var t,r;try{const s=X.join(e,".codeyam","config.json"),a=JSON.parse(ge.readFileSync(s,"utf8"));if((t=a.defaultScreenSize)!=null&&t.width&&((r=a.defaultScreenSize)!=null&&r.height))return{width:a.defaultScreenSize.width,height:a.defaultScreenSize.height}}catch{}return null}function qa(e){try{const t=X.join(e,".codeyam","config.json"),r=JSON.parse(ge.readFileSync(t,"utf8"));if(r.screenSizes&&typeof r.screenSizes=="object"&&!Array.isArray(r.screenSizes))return r.screenSizes}catch{}return{}}function Rh(e){var t,r;return{width:e.bodyWidth||((t=e.projectDefault)==null?void 0:t.width)||1280,height:e.bodyHeight||((r=e.projectDefault)==null?void 0:r.height)||720}}function Zr(e){let t=null;if(e.dimension){const a=qa(e.codeyamRoot)[e.dimension];a!=null&&a.width&&(a!=null&&a.height)&&(t={width:a.width,height:a.height})}const r=t||Ih(e.codeyamRoot);return Rh({bodyWidth:e.bodyWidth,bodyHeight:e.bodyHeight,projectDefault:r})}async function Dh(e,t){const r=t.dimensions?JSON.stringify(t.dimensions):null,s=t.screenshotPaths?JSON.stringify(t.screenshotPaths):null,a=await e.selectFrom("editor_scenarios").selectAll().where("name","=",t.name).where("project_id","=",t.projectId).orderBy("created_at","desc").execute();if(a.length>0){const c=a[0].id,m={description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight,dimension:t.dimension,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};t.dimensions!==void 0&&(m.dimensions=r,m.screenshot_paths=s),await e.updateTable("editor_scenarios").set(m).where("id","=",c).execute();const u=a.slice(1).map(p=>p.id);return u.length>0&&await e.deleteFrom("editor_scenarios").where("id","in",u).execute(),{scenarioId:c,isNew:!1,cleanedUpIds:u}}const o=globalThis.crypto.randomUUID(),i={id:o,project_id:t.projectId,name:t.name,description:t.description,component_name:t.componentName,component_path:t.componentPath,url:t.url,type:t.type,viewport_width:t.viewportWidth,viewport_height:t.viewportHeight,dimension:t.dimension};return t.dimensions!==void 0&&(i.dimensions=r,i.screenshot_paths=s),await e.insertInto("editor_scenarios").values(i).execute(),{scenarioId:o,isNew:!0,cleanedUpIds:[]}}function Oh(e,t){const r=X.join(e,".codeyam","editor-scenarios"),s=X.join(r,"screenshots");for(const a of t){for(const o of[`${a}.json`,`${a}.seed.json`,X.join("screenshots",`${a}.png`)])try{ge.unlinkSync(X.join(r,o))}catch{}try{const o=ge.readdirSync(s);for(const i of o)if(i.startsWith(`${a}--`)&&i.endsWith(".png"))try{ge.unlinkSync(X.join(s,i))}catch{}}catch{}}}function Lh(e){const{activeAnalyzedScenario:t,analyzedPreviewUrl:r,activeScenarioId:s,scenarios:a,proxyUrl:o,devServerUrl:i,zoomComponent:l}=e;if(t&&r)return r;if(t&&!r)return null;if(s){const m=a.find(u=>u.id===s);if(m!=null&&m.url){const u=o||i;return u?m.url.startsWith("/")?`${u}${m.url}`:m.url:null}}const c=o||i;if(!c)return null;if(l&&s){const m=a.find(p=>p.id===s),u=m?vt(m.name):"Default";return`${c}/__codeyam__/${l}/${u}`}return c}function Dl(e,t){if(!e||!t)return e;try{const r=new URL(e),s=t.indexOf("?");return s>=0?(r.pathname=t.slice(0,s),r.search=t.slice(s)):(r.pathname=t,r.search=""),r.href}catch{return e}}function Fh(e,t){return e?e!==t:!1}function zh(e){if(e.length!==0)return e.find(t=>t.type==="application")||e[0]}function Hs(e,t,r){if(!e.viewportWidth||!e.viewportHeight)return r??null;const s=t.find(a=>a.width===e.viewportWidth&&a.height===e.viewportHeight);return{name:(s==null?void 0:s.name)||"Custom",width:e.viewportWidth,height:e.viewportHeight}}function Bh(e,t){const r=t.width,s=t.height??900,a=e.width,o=e.height;return r<=a&&s<=o?1:Math.min(a/r,o/s)}async function Yh({params:e}){var l;const{sha:t,scenarioId:r}=e;if(!t||!r)throw Z("Invalid parameters",{status:400});const s=await an(t);if(!s)throw Z("Entity not found",{status:404});const a=await ps(s),o=((l=a==null?void 0:a.scenarios)==null?void 0:l.find(c=>c.id===r))||null;if(!o)throw Z("Scenario not found",{status:404});const i=await De();return Z({entity:s,scenario:o,analysis:a,projectSlug:i})}const Vs=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],Uh=Ye(function(){const{entity:t,scenario:r,analysis:s,projectSlug:a}=He(),o=Nt(),i=be(null),l=be(null),[c,m]=M(null),[u,p]=M(1440),[h,f]=M({name:"Desktop",width:1440,height:900}),[g,y]=M(!1),[x,b]=M(null),[w,v]=M("chat"),[C,A]=M(0),[S,E]=M(null),N=le(ee=>{E(ee||null),A(de=>de+1)},[]),{customSizes:k,addCustomSize:j}=vs(a),T=oe(()=>[...Vs,...k],[k]),{interactiveServerUrl:P,isStarting:R,isLoading:I,showIframe:$,iframeKey:L,onIframeLoad:H}=cn({analysisId:s==null?void 0:s.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:a,enabled:!0,refreshTrigger:C}),F=oe(()=>Dl(P,S),[P,S]),{lastLine:z}=kt(a,R||I),U=()=>{o(`/entity/${t.sha}`)},O=(ee,de)=>{p(ee);const me=T.find(xe=>xe.width===ee&&xe.height===de);m(me||null),f({name:(me==null?void 0:me.name)||"Custom",width:ee,height:de})},_=ee=>{m(ee),p(ee.width),f({name:ee.name,width:ee.width,height:ee.height})},Y=ee=>{j(ee,h.width,h.height??900),y(!1),f(de=>({...de,name:ee}))},Q=()=>{var de;v("chat"),(de=l.current)==null||de.sendInput("Create a new scenario for this entity based on the work we've just done. Create a name and description that reflects what the live preview is showing. Use the scenario data you've changed to create a new scenario in the database. If the data structure was fixed in any way you need to update that in the database as well and backfill all existing scenarios, then save to the database and capture a screenshot. Remember the database is at `.codeyam/db.sqlite3`, the scenarios table has all scenarios and the analyses table contains the scenariosDataStructure is its metadata.")},K=((s==null?void 0:s.scenarios)||[]).filter(ee=>{var de;return!((de=ee.metadata)!=null&&de.sameAsDefault)}),ae=K.findIndex(ee=>ee.id===(r==null?void 0:r.id)),J=ae+1,D=K.length,W=ae>0,G=ae<K.length-1,ne=()=>{if(W){const ee=K[ae-1];o(`/entity/${t.sha}/scenarios/${ee.id}/dev`)}},se=()=>{if(G){const ee=K[ae+1];o(`/entity/${t.sha}/scenarios/${ee.id}/dev`)}},re=R||I||!$;return d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[d("div",{className:"bg-[#3d3d3d] h-12 flex items-center px-4 gap-4 shrink-0 z-20",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n("img",{src:cs,alt:"CodeYam",className:"h-6 brightness-0 invert"}),n("span",{className:"text-white font-medium text-sm whitespace-nowrap",children:t.name}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("button",{onClick:ne,disabled:!W,className:`${W?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Previous scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M12.5 15L7.5 10L12.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})}),d("span",{className:"text-gray-400 text-sm",children:[J,"/",D]}),n("button",{onClick:se,disabled:!G,className:`${G?"text-white hover:text-gray-300":"text-gray-600 cursor-not-allowed"} transition-colors`,"aria-label":"Next scenario",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M7.5 15L12.5 10L7.5 5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})})})]}),d("div",{className:"flex items-center gap-2 ml-2 min-w-0",children:[n("span",{className:"text-white font-semibold text-xs whitespace-nowrap shrink-0",children:r==null?void 0:r.name}),(r==null?void 0:r.description)&&d("div",{className:"relative group min-w-0",children:[n("span",{className:"text-gray-400 text-xs truncate block",children:r.description}),n("div",{className:"absolute left-0 top-full mt-1 hidden group-hover:block z-50 bg-black text-white text-xs px-3 py-2 rounded shadow-lg max-w-md",children:r.description})]})]}),n("span",{className:"bg-[#005c75] text-white text-[10px] font-bold px-2 py-0.5 rounded uppercase tracking-wider ml-2",children:"Dev Mode"})]}),n("button",{onClick:U,className:"text-white hover:text-gray-300 transition-colors ml-4","aria-label":"Close dev mode",children:n("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",children:n("path",{d:"M15 5L5 15M5 5L15 15",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"})})})]}),d("div",{className:"flex-1 flex min-h-0",children:[d("div",{className:"flex-1 flex flex-col min-w-0",children:[d("div",{className:"bg-[#e5e7eb] border-b border-[rgba(0,0,0,0.1)] shrink-0 z-10 h-6 flex items-center justify-center relative",children:[n("div",{className:"absolute inset-0 flex justify-center",children:n("div",{style:{maxWidth:`${Vs[Vs.length-1].width}px`,width:"100%"},children:n(Ha,{currentViewportWidth:u,currentPresetName:h.name,onDevicePresetClick:_,devicePresets:T,hideLabel:!0,onHoverChange:b,lightMode:!0})})}),d("div",{className:"relative z-10 flex items-center gap-2",children:[d("div",{className:"relative w-28 h-5",children:[d("div",{className:"absolute inset-0 bg-white text-gray-900 text-xs px-2 rounded flex items-center justify-between pointer-events-none border border-gray-300",children:[n("span",{className:"leading-none",children:(x==null?void 0:x.name)||h.name}),n("svg",{width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M3 4.5L6 7.5L9 4.5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),d("select",{value:h.name,onChange:ee=>{const de=T.find(me=>me.name===ee.target.value);de&&_(de)},className:"relative w-full h-full opacity-0 cursor-pointer",children:[T.map(ee=>n("option",{value:ee.name,children:ee.name},ee.name)),h.name==="Custom"&&n("option",{value:"Custom",children:"Custom"})]})]}),n("input",{type:"number",value:h.width,onChange:ee=>{const de=parseInt(ee.target.value,10);!isNaN(de)&&de>0&&O(de,h.height??900)},className:"bg-white text-gray-900 text-xs px-1 rounded border border-gray-300 outline-none w-16 text-center h-5 leading-none",min:"200",max:"3840"}),n("span",{className:"text-gray-400 text-xs h-5 flex items-center leading-none",children:"x"}),n("span",{className:"bg-gray-100 text-gray-600 text-xs px-1 rounded w-14 text-center h-5 flex items-center justify-center leading-none",children:h.height??900}),h.name==="Custom"&&n("button",{onClick:()=>y(!0),className:"bg-white text-gray-900 text-xs px-2 rounded h-5 flex items-center leading-none border border-gray-300 hover:bg-gray-50 transition-colors",children:"Save"})]})]}),n("div",{className:"flex-1 flex items-center justify-center overflow-auto p-8",style:{backgroundImage:`
120
- linear-gradient(45deg, #ebebeb 25%, transparent 25%),
121
- linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
122
- linear-gradient(45deg, transparent 75%, #ebebeb 75%),
123
- linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
124
- `,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:P?d("div",{className:"relative bg-white w-full h-full",style:{maxWidth:`${h.width}px`,maxHeight:`${h.height}px`},children:[re&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the dev server to be ready"}),z&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),z]})]})]})}),n("iframe",{ref:i,src:F||P,className:"w-full h-full border-none",title:`Dev mode preview: ${r==null?void 0:r.name}`,onLoad:H,style:{opacity:$?1:0}},L)]}):d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Dev Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment with live preview"}),z&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),z]})]})]})})]}),d("aside",{className:"w-[50%] min-w-[400px] max-w-[800px] bg-[#1e1e1e] border-l border-[#3d3d3d] shrink-0 flex flex-col overflow-hidden",children:[d("div",{className:"border-b border-[#3d3d3d] px-4 shrink-0 flex items-center justify-between",children:[d("div",{className:"flex items-center gap-0",children:[d("button",{onClick:()=>v("chat"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${w==="chat"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Chat",w==="chat"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]}),d("button",{onClick:()=>v("scenarios"),className:`px-3 py-2 text-xs font-medium transition-colors relative cursor-pointer ${w==="scenarios"?"text-white":"text-gray-500 hover:text-gray-300"}`,children:["Scenarios",w==="scenarios"&&n("span",{className:"absolute bottom-0 left-3 right-3 h-0.5 bg-[#005c75]"})]})]}),w==="chat"&&n("button",{onClick:Q,disabled:!P,className:"px-3 py-1 text-[11px] font-medium rounded bg-[#005c75] text-white hover:bg-[#004a5c] transition-colors disabled:bg-gray-600 disabled:text-gray-400 disabled:cursor-not-allowed cursor-pointer",children:"Save Scenario"})]}),n("div",{style:{display:w==="chat"?"flex":"none"},className:"flex-1 overflow-hidden flex-col",children:n(Il,{ref:l,entityName:t.name,entityType:t.entityType,entitySha:t.sha,entityFilePath:t.filePath||t.localFilePath,scenarioName:r==null?void 0:r.name,scenarioDescription:r==null?void 0:r.description,analysisId:s==null?void 0:s.id,projectSlug:a,onRefreshPreview:N})}),w==="scenarios"&&n(jh,{scenarios:K,currentScenarioId:r==null?void 0:r.id,entitySha:t.sha,cacheBuster:0})]})]}),n($l,{serverUrl:P,isStarting:R,projectSlug:a}),g&&n(Va,{width:h.width,height:h.height??900,onSave:Y,onCancel:()=>y(!1)})]})}),Wh=Object.freeze(Object.defineProperty({__proto__:null,default:Uh,loader:Yh},Symbol.toStringTag,{value:"Module"}));async function Jh({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{url:r,filename:s,viewportWidth:a,viewportHeight:o}=t;if(!r||!s)return new Response(JSON.stringify({error:"url and filename are required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=process.env.CODEYAM_ROOT_PATH||process.cwd(),l=B.join(i,".codeyam","journal","screenshots");await Ne.mkdir(l,{recursive:!0});const c=s.replace(/[^a-zA-Z0-9_\-T]/g,"_"),m=B.join(l,`${c}.png`),u=B.dirname(new URL(import.meta.url).pathname);let p=u;for(let w=0;w<5;w++){const v=B.dirname(p);if(B.basename(v)==="webserver"||B.basename(p)==="webserver"){p=B.basename(p)==="webserver"?p:v;break}p=v}const h=[B.join(p,"scripts","journalCapture.ts"),B.join(p,"app","lib","journalCapture.ts"),B.join(i,"codeyam-cli","src","webserver","app","lib","journalCapture.ts"),B.resolve(u,"..","lib","journalCapture.ts")];let f="";for(const w of h)try{await Ne.access(w),f=w;break}catch{}f||(console.warn(`[editor-journal-screenshot] journalCapture.ts not found in any of: ${h.join(", ")}`),f=h[0]);const g=Zr({bodyWidth:a,bodyHeight:o,codeyamRoot:i}),y=JSON.stringify({url:r,outputPath:m,viewportWidth:g.width,viewportHeight:g.height}),x=await new Promise(w=>{const v=St("npx",["tsx",f,y],{cwd:i,env:{...process.env}});let C="",A="";v.stdout.on("data",S=>{C+=S.toString()}),v.stderr.on("data",S=>{A+=S.toString()}),v.on("close",S=>{w(S===0?{success:!0,output:C}:{success:!1,output:C,error:A||`Process exited with code ${S}`})}),v.on("error",S=>{w({success:!1,output:"",error:S.message})})});if(!x.success)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:x.error}),{status:500,headers:{"Content-Type":"application/json"}});const b=`screenshots/${c}.png`;return new Response(JSON.stringify({success:!0,path:b}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-screenshot] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Hh=Object.freeze(Object.defineProperty({__proto__:null,action:Jh},Symbol.toStringTag,{value:"Module"})),Ol=Ea({dimensions:{height:720,width:1200},updateDimensions:()=>{},iframeRef:{current:null},scale:1,updateScale:()=>{},maxWidth:1200,updateMaxWidth:()=>{}}),Ka=()=>{const e=as(Ol);if(!e)throw new Error("useWebContainer must be used within a WebContainerProvider");return e},Ns=({children:e})=>{const[t,r]=M({height:720,width:1200}),[s,a]=M(1),[o,i]=M(1200),l=be(null),c=le(({height:p,width:h})=>{r(f=>({height:p??f.height,width:h??f.width}))},[]),m=le(p=>{a(p)},[]),u=le(p=>{i(p)},[]);return n(Ol.Provider,{value:{dimensions:t,updateDimensions:c,iframeRef:l,scale:s,updateScale:m,maxWidth:o,updateMaxWidth:u},children:e})},Vh=typeof window<"u";function Gh(){const[e,t]=M(null);return te(()=>{import("react-resizable").then(r=>{t(()=>r.ResizableBox)}),Promise.resolve({ })},[]),e}const qh=1200,Kh=720,Ho=30,Qh=({id:e,scenarioName:t,iframeUrl:r,defaultWidth:s=1440,defaultHeight:a=900,onDataOverride:o,onIframeLoad:i,onScaleChange:l,onDimensionChange:c})=>{const m=Gh(),[u,p]=M(!1),[h,f]=M(!1),[g,y]=M(qh),[x,b]=M(Kh),[w,v]=M(null),[C,A]=M(null),{dimensions:S,updateDimensions:E,iframeRef:N,updateScale:k,updateMaxWidth:j}=Ka(),T=oe(()=>Math.min(1,g/S.width),[g,S.width]),P=C!==null?C:T;te(()=>{u||(k(P),l==null||l(P))},[P,k,l,u]),te(()=>{j(g)},[g,j]);const R=le(()=>{p(!0),A(T)},[T]),I=le(()=>{p(!1),A(null)},[]),$=le((U,O)=>{const _=C!==null?C:1,Y=Math.round(O.size.width/_);E({width:Y}),c==null||c(Y,S.height)},[E,C,c,S.height]),L=le(()=>{setTimeout(()=>{f(!0)},100),i&&i()},[i]);te(()=>{const U=O=>{if(O.data.type==="codeyam-resize"){if(t&&O.data.name!==t||S.height===O.data.height||O.data.height===0)return;E({height:O.data.height})}};return window.addEventListener("message",U),()=>{window.removeEventListener("message",U)}},[N,t,s,S,E]),te(()=>{h&&o&&o(N.current)},[h,o,N]),te(()=>{if(!t)return;const U=setInterval(()=>{var O,_;(_=(O=N==null?void 0:N.current)==null?void 0:O.contentWindow)==null||_.postMessage({type:"codeyam-respond",name:t},"*")},1e3);return()=>clearInterval(U)},[t,N]),te(()=>{const U=()=>{const O=document.getElementById("scenario-container");if(!O)return;const _=O.getBoundingClientRect(),Y=O.clientWidth-Ho*2,Q=window.innerHeight-_.top-Ho*2,K=Math.max(Q,400),ae=window.innerHeight-_.top;y(Y),b(K),v(ae)};return U(),window.addEventListener("resize",U),()=>window.removeEventListener("resize",U)},[]),te(()=>{E({width:s,height:a})},[s,a,E]);const H=oe(()=>S.width*P,[S.width,P]),F=oe(()=>{const U=S.height,O=U*P;return U&&U!==720&&U!==900&&O<x?O:x},[S.height,x,P]),z=le(()=>{window.history.back()},[]);return!Vh||!m?n("div",{className:"relative bg-gray-100 w-full h-full flex items-center justify-center",children:n("p",{className:"text-gray-500",children:"Loading interactive view..."})}):d("div",{id:"scenario-container",className:"relative bg-gray-100 w-full flex items-center justify-center",style:w?{height:`${w}px`}:{},children:[u&&n("div",{className:"fixed inset-0 z-50 bg-transparent"}),n("style",{children:`
125
- .react-resizable-handle-e {
126
- display: flex !important;
127
- align-items: center !important;
128
- justify-content: center !important;
129
- width: 6px !important;
130
- height: 48px !important;
131
- right: -8px !important;
132
- top: 50% !important;
133
- transform: translateY(-50%) !important;
134
- cursor: ew-resize !important;
135
- background: #d1d5db !important;
136
- border-radius: 3px !important;
137
- opacity: 0 !important;
138
- transition: all 0.2s ease !important;
139
- }
140
- .react-resizable-handle-e:hover {
141
- opacity: 0.8 !important;
142
- background: #9ca3af !important;
143
- }
144
- .react-resizable:hover .react-resizable-handle-e {
145
- opacity: 0.4 !important;
146
- }
147
- `}),n(m,{width:H,height:F,minConstraints:[300,200],maxConstraints:[g,x],className:"relative bg-white rounded-lg shadow-md",resizeHandles:["e"],onResizeStart:R,onResizeStop:I,onResize:$,children:n("div",{className:"overflow-auto",style:{width:`${H}px`,height:`${F}px`},children:n("div",{style:{width:`${S.width}px`,height:`${S.height}px`,transform:`scale(${P})`,transformOrigin:"top left"},children:r?n("iframe",{ref:N,className:"w-full h-full rounded-lg",src:r,onLoad:L,sandbox:"allow-scripts allow-same-origin"}):d("p",{className:"w-full h-full flex flex-col gap-3 items-center justify-center",children:[n("span",{className:"text-xl font-light",children:"Oops! Looks like this scenario is not available yet. Please check back later."}),n("span",{className:"text-blue-600 cursor-pointer",onClick:z,children:"Go back"})]})})})},`resizable-box-${e}`)]})};function Zh({presets:e,customSizes:t,currentWidth:r,currentHeight:s,scale:a,onSizeChange:o,onSaveCustomSize:i,onRemoveCustomSize:l,className:c=""}){const[m,u]=M(!1),[p,h]=M(String(r)),[f,g]=M(String(s)),[y,x]=M(!1),[b,w]=M(!1),v=be(null);te(()=>{y||h(String(r))},[r,y]),te(()=>{b||g(String(s))},[s,b]),te(()=>{const P=R=>{v.current&&!v.current.contains(R.target)&&u(!1)};return document.addEventListener("mousedown",P),()=>document.removeEventListener("mousedown",P)},[]);const C=oe(()=>{const P=e.find(I=>I.width===r&&I.height===s);if(P)return P.name;const R=t.find(I=>I.width===r&&I.height===s);return R?R.name:"Custom"},[e,t,r,s]),A=C==="Custom",S=P=>{o(P.width,P.height),u(!1)},E=P=>{const R=P.target.value;h(R);const I=parseInt(R,10);!isNaN(I)&&I>0&&o(I,s)},N=P=>{const R=P.target.value;g(R);const I=parseInt(R,10);!isNaN(I)&&I>0&&o(r,I)},k=()=>{x(!1);const P=parseInt(p,10);(isNaN(P)||P<=0)&&h(String(r))},j=()=>{w(!1);const P=parseInt(f,10);(isNaN(P)||P<=0)&&g(String(s))},T=P=>{(P.key==="Enter"||P.key==="Escape")&&P.target.blur()};return d("div",{className:`flex items-center gap-3 ${c}`,children:[d("div",{className:"relative",ref:v,children:[d("button",{onClick:()=>u(!m),className:"flex items-center gap-2 px-3 py-1.5 bg-white border border-gray-300 rounded-md text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 min-w-[120px] justify-between",children:[n("span",{children:C}),n("svg",{className:`w-4 h-4 transition-transform ${m?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),m&&n("div",{className:"absolute top-full left-0 mt-1 min-w-full bg-white border border-gray-200 rounded-md shadow-lg z-50",children:d("div",{className:"py-1",children:[e.length>0&&d(pe,{children:[n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Presets"}),e.map(P=>d("button",{onClick:()=>S(P),className:`w-full text-left px-3 py-2 text-sm hover:bg-gray-100 flex justify-between items-center gap-4 whitespace-nowrap ${C===P.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[n("span",{children:P.name}),d("span",{className:"text-xs text-gray-500",children:[P.width," x ",P.height]})]},P.name))]}),t.length>0&&d(pe,{children:[n("div",{className:"border-t border-gray-100 my-1"}),n("div",{className:"px-3 py-1 text-xs font-semibold text-gray-500 uppercase tracking-wider whitespace-nowrap",children:"Custom"}),[...t].sort((P,R)=>P.width-R.width).map(P=>d("div",{className:`flex items-center gap-1 hover:bg-gray-100 ${C===P.name?"bg-[#f0f7f9] text-[#005c75]":"text-gray-700"}`,children:[d("button",{onClick:()=>S(P),className:"flex-1 text-left px-3 py-2 text-sm flex justify-between items-center gap-4 whitespace-nowrap cursor-pointer",children:[n("span",{children:P.name}),d("span",{className:"text-xs text-gray-500",children:[P.width," x ",P.height]})]}),l&&n("button",{onClick:R=>{R.stopPropagation(),C===P.name&&e.length>0&&o(e[0].width,e[0].height),l(P.name)},className:"p-1.5 mr-1 text-gray-400 hover:text-red-500 hover:bg-red-50 rounded cursor-pointer transition-colors",title:"Remove custom size",children:n("svg",{className:"w-4 h-4",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]},P.name))]})]})})]}),d("div",{className:"flex items-center gap-1 text-sm",children:[d("div",{className:"flex items-center",children:[n("input",{type:"text",value:p,onChange:E,onFocus:()=>x(!0),onBlur:k,onKeyDown:T,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),n("span",{className:"text-gray-400 mx-1",children:"×"}),d("div",{className:"flex items-center",children:[n("input",{type:"text",value:f,onChange:N,onFocus:()=>w(!0),onBlur:j,onKeyDown:T,className:"w-16 px-2 py-1 text-right border border-gray-300 rounded-l-md text-sm focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:border-[#005c75]"}),n("span",{className:"px-2 py-1 bg-gray-100 border border-l-0 border-gray-300 rounded-r-md text-gray-500 text-sm",children:"px"})]}),a!==void 0&&a<1&&d("span",{className:"text-xs text-gray-500 ml-1",children:["(",Math.round(a*100),"%)"]})]}),A&&n("button",{onClick:i,className:"px-3 py-1.5 bg-[#005c75] text-white text-sm font-medium rounded-md hover:bg-[#004a5c] focus:outline-none focus:ring-2 focus:ring-[#005c75] focus:ring-offset-1 transition-colors",children:"Save Custom Size"})]})}function Gs(e,t,r){if(Array.isArray(e)){if(!isNaN(parseInt(t)))return e[parseInt(t)];for(const s of e)if(s.name===t||s.title===t||s.id===t)return s}return e[t]}function ma(e){return e&&(typeof e=="object"||Array.isArray(e))}function Xh(e){return Array.isArray(e)?e.length:void 0}function ef(e){const{data:t,structure:r}=e;if(!(!t&&!r)){if(Array.isArray(r))return Array.isArray(t)?t.map((s,a)=>a.toString()):[];if(typeof r=="object")return[...new Set([...Object.keys(t),...Object.keys(r)])].sort((a,o)=>{const i=ma(t[a]),l=ma(t[o]);return i&&!l?1:!i&&l?-1:a.localeCompare(o)});if(typeof t=="object")return Object.keys(t).sort((a,o)=>a.localeCompare(o))}}function tf({scenarioFormData:e,handleInputChange:t}){return d("div",{className:"p-3 flex flex-col gap-3",children:[d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:"name",className:"text-sm font-medium text-gray-700",children:"Name"}),n("input",{type:"text",id:"name",placeholder:"Name",name:"name",value:e.name,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"})]}),d("div",{className:"grid w-full gap-1.5 pt-2",children:[n("label",{htmlFor:"description",className:"text-sm font-medium text-gray-700",children:"Description"}),n("textarea",{placeholder:"Type your message here.",id:"description",name:"description",value:e.description,onChange:t,required:!0,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 min-h-[100px]"})]}),n("button",{type:"submit",className:"mt-3 w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium",children:"Save Name & Description"})]})}function nf({path:e,namedPath:t,isArray:r,count:s,onClick:a}){const o=le(()=>{a&&a(e)},[a,e]);return d("div",{className:"bg-blue-50 p-3 rounded-lg flex items-center justify-between cursor-pointer group hover:bg-blue-100 transition-colors border border-blue-200",onClick:o,children:[d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-4 h-4 text-gray-500",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M4 6h16M4 12h16M4 18h16"})}),d("div",{className:"capitalize font-medium text-gray-900",children:[t[t.length-1],s!==void 0&&` (${s})`]})]}),d("div",{className:"flex items-center gap-3",children:[r&&n("svg",{className:"w-5 h-5 text-red-500 opacity-0 group-hover:opacity-100 transition-opacity",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"})}),n("svg",{className:"w-4 h-4 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]})]})}var Ll=(e=>(e.STRING="string",e.NUMBER="number",e.BOOLEAN="boolean",e.UNION="union",e.OBJECT="object",e.ARRAY="array",e))(Ll||{});const rf=({name:e,value:t,options:r,onChange:s})=>{const a=le(o=>{s({target:{name:e,value:o.target.value}})},[e,s]);return n("select",{name:e,value:t,onChange:a,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",children:r.map((o,i)=>n("option",{value:o.trim(),children:o.trim()},i))})},sf=({name:e,value:t,onChange:r})=>{const s=le(a=>{const o=a.target.checked;r({target:{name:e,value:o}})},[e,r]);return n("label",{className:"flex items-center gap-2 cursor-pointer",children:n("input",{type:"checkbox",name:e,checked:t,onChange:s,className:`w-10 h-6 rounded-full appearance-none cursor-pointer transition-colors relative
148
- bg-gray-300 checked:bg-blue-600
149
- after:content-[''] after:absolute after:top-1 after:left-1 after:w-4 after:h-4
150
- after:bg-white after:rounded-full after:transition-transform
151
- checked:after:translate-x-4`})})};function af({dataType:e,path:t,value:r,onChange:s}){const a=oe(()=>t[t.length-1],[t]),o=oe(()=>t.join("-"),[t]),i=le(c=>{s(t,c.target.value)},[s,t]),l=le(c=>{s(t,c.target.value)},[s,t]);return d("div",{className:"grid w-full max-w-sm items-center gap-1.5",children:[n("label",{htmlFor:o,className:"capitalize text-sm font-medium text-gray-700",children:a==="~~codeyam-code~~"?"Dynamic Field":a}),e.includes("|")?n(rf,{name:o,value:r,options:e.split("|"),onChange:i}):e===Ll.BOOLEAN?n(sf,{name:o,value:r??!1,onChange:l}):n("input",{id:o,name:o,type:"text",value:JSON.stringify(r??"").replace(/"/g,""),onChange:i,className:"w-full px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"},`Input-${o}`)]})}function of({analysis:e,scenarioName:t,dataItem:r,onResult:s,onGenerateData:a}){const[o,i]=M(!1),[l,c]=M(""),m=le(async()=>{if(!a){console.error("onGenerateData prop is required for AI data generation");return}i(!0);try{const p=e.scenarios.find(x=>x.name===t);if(!p)throw new Error("Scenario not found");const h=e.scenarios.find(x=>x.name===us),f=await a(l,r);if(!f){console.error("Error getting AI guess for scenario data"),i(!1);return}const g=(x,b)=>{const w=Object.assign({},x);return y(x)&&y(b)&&Object.keys(b).forEach(v=>{y(b[v])?v in x?w[v]=g(x[v],b[v]):Object.assign(w,{[v]:b[v]}):Object.assign(w,{[v]:b[v]})}),w},y=x=>x&&typeof x=="object"&&!Array.isArray(x);p.metadata.data=g(g((h==null?void 0:h.metadata.data)||{},p.metadata.data),f.data||{}),s(p),i(!1),c("")}catch(p){console.error("Error generating AI data:",p),i(!1)}},[e,l,r,t,s,a]),u=le(p=>{c(p.target.value)},[]);return d("div",{className:"w-full p-3 flex flex-col gap-2 rounded-lg border-2 border-blue-200 text-sm bg-blue-50",children:[n("div",{className:"font-medium text-gray-700",children:"Describe the data changes to the AI"}),n("textarea",{className:"peer w-full h-16 p-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500",placeholder:"Type your message here.",onChange:u,value:l}),n("button",{type:"button",disabled:o,className:`w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 disabled:bg-gray-400 disabled:cursor-not-allowed font-medium ${l.length>0?"flex":"hidden peer-focus-within:flex"} items-center justify-center gap-2`,onClick:()=>void m(),children:o?d(pe,{children:[d("svg",{className:"animate-spin h-4 w-4 text-white",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),"Please wait"]}):"Generate Data"})]})}function lf({namedPath:e,path:t,last:r,onClick:s}){const a=le(()=>s(r?t.slice(0,-1):t),[r,t,s]);return n("div",{className:"capitalize cursor-pointer hover:text-blue-600 transition-colors",onClick:a,children:e[e.length-1]})}function cf({dataItem:e,onClick:t}){const r=le(()=>t([]),[t]),s=oe(()=>e.namedPath.length>=2?e.namedPath.length-2:0,[e]);return d("div",{className:"text-sm flex items-center gap-2 py-3 px-2 border-b border-t border-gray-300 bg-gray-50",children:[n("svg",{className:"w-4 h-4 cursor-pointer hover:text-blue-600",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",onClick:r,children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M15 19l-7-7 7-7"})}),e.namedPath.length>2&&d("div",{className:"flex items-center gap-1",children:[n("div",{children:"..."}),n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]}),e.namedPath.slice(s).map((a,o)=>d("div",{className:"flex items-center gap-1",children:[n(lf,{namedPath:e.namedPath.slice(0,o+s+1),path:e.path.slice(0,o+s+1),last:o+s===e.namedPath.length-1,onClick:t}),o+s<e.namedPath.length-1&&n("svg",{className:"w-3 h-3",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 5l7 7-7 7"})})]},`path-${a}-${o+s}`))]})}function Vo({analysis:e,scenarioName:t,dataItem:r,onClick:s,onChange:a,onAIResult:o,onGenerateData:i,saveFeedback:l}){const c=oe(()=>r.data,[r]),m=oe(()=>ef(r),[r]);return d("div",{className:"w-full flex flex-col gap-6 px-3 mt-3",children:[r.path.length>0&&n(cf,{dataItem:r,onClick:s}),d("div",{className:"flex flex-col gap-3",children:[n(of,{analysis:e,scenarioName:t,dataItem:r,onResult:o,onGenerateData:i}),m==null?void 0:m.map((u,p)=>{var f;if(ma(c[u])){let g=u;isNaN(Number(u))||(g=c[u].name??c[u].title??c[u].id??`${r.path[r.path.length-1].replace(/s$/,"")} ${parseInt(u)+1}`);const y=[...r.path,u],x=[...r.namedPath,g];return n(nf,{path:y,namedPath:x,isArray:Array.isArray(c),count:Xh(c[u]),onClick:s},`data-${u}-${p}`)}if(u==="id")return null;const h=[...r.path,u];return n(af,{dataType:((f=r.structure)==null?void 0:f[u])??"string",path:h,value:c[u],onChange:a},`InputField-${h.join("-")}`)})]}),n("input",{type:"hidden",name:"recapture",id:"recapture-input",value:"false"}),d("div",{className:"flex gap-2",children:[n("button",{type:"submit",onClick:()=>{const u=document.getElementById("recapture-input");u&&(u.value="false")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:l!=null&&l.isSaving?"Saving...":"Save Changes"}),n("button",{type:"submit",onClick:()=>{const u=document.getElementById("recapture-input");u&&(u.value="true")},disabled:l==null?void 0:l.isSaving,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md hover:bg-gray-200 focus:outline-none focus:ring-2 focus:ring-blue-500 font-medium disabled:opacity-50 disabled:cursor-not-allowed",children:"Save & Recapture"})]}),(l==null?void 0:l.message)&&!(l!=null&&l.isSaving)&&n("div",{className:`mt-3 p-3 rounded-md text-sm font-medium ${l.isError?"bg-red-50 text-red-700 border border-red-200":"bg-green-50 text-green-700 border border-green-200"}`,children:l.message})]})}function Go({title:e,children:t,defaultOpen:r=!1,borderT:s=!1,borderB:a=!1}){const[o,i]=M(r),l=[];return s&&l.push("border-t"),a&&l.push("border-b"),d("div",{className:`${l.join(" ")} border-gray-300`,children:[d("button",{type:"button",onClick:()=>i(!o),className:"w-full px-4 py-3 flex items-center justify-between bg-gray-50 hover:bg-gray-100 transition-colors text-left font-semibold text-gray-900",children:[n("span",{children:e}),n("svg",{className:`transition-transform ${o?"rotate-180":""}`,fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",style:{width:"20px",height:"20px",minWidth:"20px",minHeight:"20px",maxWidth:"20px",maxHeight:"20px",flexShrink:0},children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}),o&&n("div",{className:"px-4 py-3",children:t})]})}const df=({currentScenario:e,defaultScenario:t,dataStructure:r,analysis:s,shouldCreateNewScenario:a,onSave:o,onNavigate:i,iframeRef:l,onGenerateData:c,saveFeedback:m})=>{const u=le((E,N)=>{const k=Object.assign({},E),j=T=>T&&typeof T=="object"&&!Array.isArray(T);return j(E)&&j(N)&&Object.keys(N).forEach(T=>{j(N[T])?T in E?k[T]=u(E[T],N[T]):Object.assign(k,{[T]:N[T]}):Object.assign(k,{[T]:N[T]})}),k},[]),[p,h]=M({name:e.name,description:e.description,data:u(t.metadata.data,e.metadata.data)}),[f,g]=M(null),y=oe(()=>({...p.data}),[p]),x=oe(()=>({...y.mockData?{"Retrieved Data":y.mockData}:{},...y.argumentsData?{"Function Arguments":y.argumentsData}:{}}),[y]),b=oe(()=>{const E={...r.arguments?{"Function Arguments":r.arguments}:{},...r.dataForMocks?{"Retrieved Data":r.dataForMocks}:{}};return Object.keys(E).reduce((N,k)=>{if(k.includes(".")){const[j,T]=k.split(".");N[j]||(N[j]={}),N[j][T]=E[k]}else N[k]=E[k];return N},{})},[r]),w=le(async E=>{E.preventDefault();const N=E.target.querySelector('input[name="recapture"]'),k=(N==null?void 0:N.value)==="true",j={mockData:p.data.mockData??{},argumentsData:p.data.argumentsData??[]};console.log("[ScenarioEditor] Saving scenario data:",{scenarioName:p.name,shouldRecapture:k,dataToSave:j,rawFormData:p.data,iframePayload:{arguments:y.argumentsData??[],...y.mockData??{}}}),console.log("[ScenarioEditor] Full dataToSave JSON:",JSON.stringify(j,null,2).substring(0,1e3));const T=s==null?void 0:s.scenarios.map(P=>!a&&P.name===e.name?{...P,name:p.name,description:p.description,metadata:{...P.metadata,data:j}}:P);a&&T.push({name:p.name,description:p.description,metadata:{data:j,interactiveExamplePath:s==null?void 0:s.scenarios[0].metadata.interactiveExamplePath}}),console.log("[ScenarioEditor] Updated scenarios to save:",T),o&&await o(T,{recapture:k}),i&&i(p.name)},[s,e.name,p,y,a,o,i]),v=le(E=>{h(N=>({...N,[E.target.name]:E.target.value}))},[]),C=le(E=>{g(N=>{if(!N)return null;for(const k of[{arguments:E.metadata.data.argumentsData},E.metadata.data.mockData]){let j=k;for(const T of N.path)if(j=Gs(j,T),!j)break;j&&(N.data=j)}return{...N}}),h({name:E.name,description:E.description,data:E.metadata.data})},[]),A=le((E,N)=>{h(k=>{for(const j of[{"Function Arguments":k.data.argumentsData},{"Retrieved Data":k.data.mockData}]){let T=j;for(const P of E.slice(0,-1))if(T=Gs(T,P),!T)break;if(T){const P=T[E[E.length-1]];g(R=>R?(R.namedPath[R.namedPath.length-1]===P&&(R.namedPath[R.namedPath.length-1]=N.toString()),R.data[E[E.length-1]]=N,{...R}):null),T[E[E.length-1]]=N}}return{...k}})},[]),S=le(E=>{var T,P,R;if(E.length===0){g(null);return}let N=x;const k=[];let j=b;for(const I of E){if(k.push(isNaN(parseInt(I))?I:((T=N[I])==null?void 0:T.name)??((P=N[I])==null?void 0:P.title)??((R=N[I])==null?void 0:R.id)??I),N=Gs(N,I),!N){console.log("Data not found",N,I),g(null);return}Array.isArray(j)?j=j[0]:j=j[I]}g({path:E,namedPath:k,data:N,structure:j})},[x,b]);return te(()=>{const E=N=>{var k;N.data.type==="codeyam-log"&&((k=N.data.data)!=null&&k.includes("Error"))&&console.error("[ScenarioEditor] Error from iframe:",N.data.data)};return window.addEventListener("message",E),()=>window.removeEventListener("message",E)},[]),te(()=>{var E;if((E=l==null?void 0:l.current)!=null&&E.contentWindow){const N={arguments:y.argumentsData??[],...y.mockData??{}},k={type:"codeyam-override-data",name:e.name,data:JSON.stringify(N)};console.log("[ScenarioEditor] → SENDING codeyam-override-data:",{type:k.type,name:k.name,dataPreview:JSON.stringify(N).substring(0,200)+"...",fullData:N}),l.current.contentWindow.postMessage(k,"*")}},[y,e,l]),n("form",{method:"post",onSubmit:E=>void w(E),children:f?n(Vo,{analysis:s,scenarioName:p.name,dataItem:f,onClick:S,onChange:A,onAIResult:C,onGenerateData:c,saveFeedback:m}):d(pe,{children:[n(Go,{title:"Edit Name and Description",borderT:!0,children:n(tf,{scenarioFormData:p,handleInputChange:v})}),e.metadata.data&&n(Go,{title:"Edit Scenario Data",defaultOpen:!0,borderT:!0,borderB:!0,children:n(Vo,{analysis:s,scenarioName:p.name,dataItem:{path:[],namedPath:[],data:x,structure:b},onClick:S,onChange:A,onAIResult:C,onGenerateData:c,saveFeedback:m})})]})})};function Cs({scenarioId:e,scenarioName:t,iframeUrl:r,isStarting:s,isLoading:a,showIframe:o,iframeKey:i,onIframeLoad:l,onScaleChange:c,onDimensionChange:m,projectSlug:u,defaultWidth:p=1440,defaultHeight:h=900,retryCount:f=0}){const{lastLine:g}=kt(u??null,s||a);return r?d("div",{className:"flex-1 min-h-0 relative",style:{background:"transparent"},children:[n("div",{style:{opacity:o?1:0,background:"transparent"},children:n(Qh,{id:e,scenarioName:t,iframeUrl:r,defaultWidth:p,defaultHeight:h,onIframeLoad:l,onScaleChange:c,onDimensionChange:m},i)}),!o&&(s||a)&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-white rounded-lg p-8 shadow-sm w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),g&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),g]})]})]})})]}):n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center",children:d("div",{className:"flex flex-col items-center justify-center gap-6 w-[500px] h-[300px] bg-white rounded-lg p-8 shadow-sm",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-black leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Starting Interactive Mode"}),n("p",{className:"text-sm text-[#666] leading-5 m-0 font-['IBM_Plex_Sans']",children:"Setting up a sandboxed environment for your component"}),g&&d("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 mt-3 font-['IBM_Plex_Mono'] uppercase",children:[n(Sn,{}),g]})]})]})})}const uf=({data:e})=>[{title:e!=null&&e.scenario?`Edit ${e.scenario.name} - CodeYam`:"Edit Scenario - CodeYam"},{name:"description",content:"Edit scenario data"}];async function mf({params:e}){var c,m;const{sha:t,scenarioId:r}=e;if(!t)throw new Response("Entity SHA is required",{status:400});if(!r)throw new Response("Scenario ID is required",{status:400});const s=await ms(t,!0),a=s&&s.length>0?s[0]:null;if(!a)throw new Response("Analysis not found",{status:404});const o=(c=a.scenarios)==null?void 0:c.find(u=>u.id===r);if(!o)throw new Response("Scenario not found",{status:404});const i=(m=a.scenarios)==null?void 0:m.find(u=>u.name===us),l=await De();return Z({analysis:a,scenario:o,defaultScenario:i||o,entitySha:t,projectSlug:l})}function pf(){var I,$,L;const e=He(),t=e.analysis,r=e.scenario,s=e.defaultScenario,a=e.entitySha,o=e.projectSlug,i=Nt(),{iframeRef:l}=Ka(),[c,m]=M(!1),[u,p]=M(null),[h,f]=M(null),[g,y]=M(!1),[x,b]=M(!1),[w,v]=M(null),{interactiveServerUrl:C,isStarting:A,isLoading:S,showIframe:E,iframeKey:N,onIframeLoad:k}=cn({analysisId:t==null?void 0:t.id,scenarioId:r==null?void 0:r.id,scenarioName:r==null?void 0:r.name,projectSlug:o,enabled:!0}),j=le(async(H,F)=>{m(!0),p(null),f(null),console.log("[EditScenario] Starting save with options:",F),console.log("[EditScenario] Scenarios to save:",H);try{const z={analysis:t,scenarios:H};console.log("[EditScenario] Sending to /api/save-scenarios:",{analysisId:t.id,scenarioCount:H.length,scenarioNames:H.map(_=>_.name)});const U=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(z)}),O=await U.json();if(console.log("[EditScenario] API response:",O),!U.ok||!O.success)throw new Error(O.error||"Failed to save scenarios");if(console.log("[EditScenario] Scenarios saved successfully"),F!=null&&F.recapture&&r.id&&C){console.log("[EditScenario] ========== DIRECT CAPTURE START =========="),console.log("[EditScenario] Taking screenshot from running server",{scenarioId:r.id,projectId:t.projectId,serverUrl:C}),p("Changes saved. Capturing screenshot...");const _={serverUrl:C,scenarioId:r.id,projectId:t.projectId,viewportWidth:1440};console.log("[EditScenario] Capture request body:",_);const Y=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify(_)});console.log("[EditScenario] Capture response status:",Y.status);const Q=await Y.json();if(console.log("[EditScenario] Capture response body:",Q),!Y.ok||!Q.success)throw console.error("[EditScenario] Capture failed:",Q),new Error(Q.error||"Failed to capture screenshot");console.log("[EditScenario] Screenshot captured successfully:",Q),console.log("[EditScenario] ========== DIRECT CAPTURE COMPLETE =========="),p("Recapture successful")}else if(F!=null&&F.recapture&&!C){console.log("[EditScenario] No running server, using queued recapture");const _=new FormData;_.append("analysisId",t.id||""),_.append("scenarioId",r.id||"");const Y=await fetch("/api/recapture-scenario",{method:"POST",body:_}),Q=await Y.json();if(!Y.ok||!Q.success)throw new Error(Q.error||"Failed to trigger recapture");console.log("Recapture queued:",Q),f(Q.jobId),p("Changes saved. Screenshot recapture queued.")}else p("Changes saved successfully.")}catch(z){console.error("Error saving scenarios:",z),p(`Error: ${z instanceof Error?z.message:String(z)}`)}finally{m(!1)}},[t,r.id,C]),T=le(H=>{},[]),P=le(async(H,F)=>{var O;const z=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:H,existingScenarios:t.scenarios,scenariosDataStructure:(O=t.metadata)==null?void 0:O.scenariosDataStructure,editingMockName:r.name,editingMockData:F==null?void 0:F.data})}),U=await z.json();if(!z.ok||!U.success)throw new Error(U.error||"Failed to generate scenario data");return U.data},[t,r.name]),R=le(async()=>{var H;if(!r.id){v("Cannot delete scenario without ID");return}y(!0),v(null);try{const F=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:r.id,screenshotPaths:((H=r.metadata)==null?void 0:H.screenshotPaths)||[]})}),z=await F.json();if(!F.ok||!z.success)throw new Error(z.error||"Failed to delete scenario");i(`/entity/${a}`)}catch(F){console.error("[EditScenario] Error deleting scenario:",F),v(F instanceof Error?F.message:"Failed to delete scenario"),b(!1)}finally{y(!1)}},[r.id,(I=r.metadata)==null?void 0:I.screenshotPaths,a,i]);return d("div",{className:"h-screen bg-gray-50 flex flex-col",children:[d("header",{className:"bg-white border-b border-gray-200 px-8 py-6 shrink-0",children:[n("div",{className:"mb-4",children:d(fe,{to:`/entity/${a}`,className:"text-blue-600 no-underline text-sm font-medium transition-colors hover:text-blue-700 hover:underline",children:["← Back to ",($=t.entity)==null?void 0:$.name]})}),d("h1",{className:"text-[32px] font-bold text-gray-900 m-0 mb-3",children:["Edit Scenario: ",r.name]}),r.description&&n("p",{className:"text-gray-600 text-[15px] leading-relaxed m-0",children:r.description})]}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[d("aside",{className:"w-[400px] bg-white border-r border-gray-200 overflow-y-auto shrink-0",children:[n(df,{currentScenario:r,defaultScenario:s,dataStructure:((L=t.metadata)==null?void 0:L.scenariosDataStructure)||{},analysis:t,shouldCreateNewScenario:!1,onSave:j,onNavigate:T,iframeRef:l,onGenerateData:P,saveFeedback:{isSaving:c,message:u,isError:(u==null?void 0:u.startsWith("Error"))??!1}}),u==="Recapture successful"&&n("div",{className:"px-4 pb-4",children:n(fe,{to:`/entity/${a}`,className:"text-blue-600 hover:text-blue-700 hover:underline text-sm",children:"View updated screenshot on entity page →"})}),d("div",{className:"border-t border-gray-200 p-4 mt-4",children:[n("div",{className:"text-sm text-gray-600 mb-3",children:"Permanently remove this scenario and its screenshots."}),x?d("div",{className:"space-y-3",children:[d("div",{className:"text-sm text-red-600 font-medium",children:['Are you sure you want to delete "',r.name,'"?']}),d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>void R(),disabled:g,className:"flex-1 px-4 py-2 bg-red-600 text-white rounded-md text-sm font-medium hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors",children:g?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>b(!1),disabled:g,className:"flex-1 px-4 py-2 bg-gray-100 text-gray-700 border border-gray-300 rounded-md text-sm font-medium hover:bg-gray-200 disabled:opacity-50 transition-colors",children:"Cancel"})]})]}):n("button",{onClick:()=>b(!0),className:"w-full px-4 py-2 bg-red-50 text-red-600 border border-red-200 rounded-md text-sm font-medium hover:bg-red-100 transition-colors",children:"Delete Scenario"}),w&&n("div",{className:"mt-3 text-sm text-red-600 bg-red-50 px-3 py-2 rounded-md",children:w})]})]}),n("main",{className:"flex-1 bg-gray-100 overflow-auto flex flex-col min-w-0",children:n(Cs,{scenarioId:r.id||r.name,scenarioName:r.name,iframeUrl:C,isStarting:A,isLoading:S,showIframe:E,iframeKey:N,onIframeLoad:k,projectSlug:o,defaultWidth:1440,defaultHeight:900})})]})]})}const hf=Ye(function(){return n(Ns,{children:n(pf,{})})}),ff=Object.freeze(Object.defineProperty({__proto__:null,default:hf,loader:mf,meta:uf},Symbol.toStringTag,{value:"Module"}));function gf(e){return ar.createHash("sha256").update(JSON.stringify(e)).digest("hex")}function yf(e){const t=e.match(/^(GET|POST|PUT|DELETE|PATCH)\s+(\/\S+)$/);return t?{method:t[1],pathPattern:t[2]}:{method:null,pathPattern:e}}function xf(e){const t=[],r=e.replace(/:([a-zA-Z_][a-zA-Z0-9_]*)/g,(s,a)=>(t.push(a),"([^/]+)"));return{regex:new RegExp(`^${r}$`),paramNames:t}}function bf(e,t){if(t.includes(e))return e;const r=e.lastIndexOf("/");if(r>0){const s=e.substring(0,r);if(t.includes(s))return s}return null}function wf(){let e=[],t={},r=null,s=null,a=!1,o=null;function i(m){const u=[],p=m.routes;if(p&&typeof p=="object")for(const[h,f]of Object.entries(p)){const{method:g,pathPattern:y}=yf(h),{regex:x,paramNames:b}=xf(y),w=typeof f=="object"&&f!==null?f:{body:f};u.push({method:g,pathPattern:y,pathRegex:x,paramNames:b,response:{body:w.body,status:typeof w.status=="number"?w.status:200}})}return u}function l(m){const u=m.state;if(u&&typeof u=="object"){a=!0,t={};for(const[p,h]of Object.entries(u))t[p]=Array.isArray(h)?JSON.parse(JSON.stringify(h)):[];r=JSON.stringify(u)}else a=!1,t={},r=null}return{loadScenario(m){const u=gf(m);s&&u===s||(s=u,o=m,e=i(m),l(m))},matchRequest(m,u,p){if(!o&&e.length===0&&!a)return null;const h=Object.keys(t);if(a){const g=bf(u,h);if(g&&m==="GET"&&g===u)return{body:t[g],status:200};if(g){const y=c(m,u);if(m==="POST"&&g===u&&y){const x=t[g],b=typeof p=="object"&&p!==null?{...p}:{};if(!("id"in b)){const w=x.reduce((v,C)=>{const A=typeof C.id=="number"?C.id:0;return Math.max(v,A)},0);b.id=w+1}return x.push(b),{body:b,status:y.response.status}}if(m==="DELETE"&&y&&y.params){const x=y.params.id,b=t[g],w=b.findIndex(v=>String(v.id)===String(x));return w===-1?{body:{error:"Not found"},status:404}:(b.splice(w,1),{body:null,status:y.response.status})}if(m==="PUT"&&y&&y.params){const x=y.params.id,b=t[g],w=b.findIndex(C=>String(C.id)===String(x));if(w===-1)return{body:{error:"Not found"},status:404};const v=typeof p=="object"&&p!==null?{...p}:b[w];return b[w]=v,{body:v,status:y.response.status}}}}const f=c(m,u);if(f)return{body:f.response.body??null,status:f.response.status,params:f.params};if(o&&m==="GET"){const g=u.match(/^\/api\/(.+)$/);if(g){const y=g[1];if(y in o&&y!=="routes"&&y!=="state")return{body:o[y],status:200}}}return null},resetState(){if(r){const m=JSON.parse(r);t={};for(const[u,p]of Object.entries(m))t[u]=Array.isArray(p)?JSON.parse(JSON.stringify(p)):[]}},getState(){return{...t}}};function c(m,u){for(const p of e)if(p.method!==null&&p.method===m&&p.paramNames.length===0&&p.pathRegex.exec(u))return{response:p.response};if(m==="GET"){for(const p of e)if(p.method===null&&p.paramNames.length===0&&p.pathRegex.exec(u))return{response:p.response}}for(const p of e)if(p.paramNames.length>0){if((p.method??"GET")!==m)continue;const f=p.pathRegex.exec(u);if(f){const g={};for(let y=0;y<p.paramNames.length;y++)g[p.paramNames[y]]=f[y+1];return{response:p.response,params:g}}}return null}}function vf(e){var a,o;const t=X.join(e,"package.json");if(!ge.existsSync(t))return{error:"No package.json found."};let r="npm",s=["run","dev"];try{const i=JSON.parse(ge.readFileSync(t,"utf8"));if(ge.existsSync(X.join(e,"pnpm-lock.yaml"))?r="pnpm":ge.existsSync(X.join(e,"yarn.lock"))?r="yarn":ge.existsSync(X.join(e,"bun.lockb"))&&(r="bun"),!((a=i.scripts)!=null&&a.dev))if((o=i.scripts)!=null&&o.start)s=["run","start"];else return{error:'No "dev" or "start" script found in package.json.'}}catch{}return{command:r,args:s}}function Nf(e,t){const r=t.toString(),s={PORT:r},a=X.join(e,".codeyam","config.json");if(ge.existsSync(a))try{const c=(JSON.parse(ge.readFileSync(a,"utf8")).webapps||[])[0];if(c!=null&&c.startCommand){const{command:m,args:u,env:p}=c.startCommand,h=(u||[]).map(f=>f.includes("$PORT")?f.replace(/\$PORT/g,r):f);if(p)for(const[f,g]of Object.entries(p))typeof g=="string"&&g.includes("$PORT")?s[f]=g.replace(/\$PORT/g,r):typeof g=="string"&&(s[f]=g);return{command:m,args:h,env:s}}}catch{}const o=vf(e);return"error"in o?o:{command:o.command,args:o.args,env:s}}function Fl(e){return{proxyPort:e+1,devServerPort:e+2}}const Cf=[/Local:\s+(https?:\/\/[^\s]+)/,/Ready on\s+(https?:\/\/[^\s]+)/i,/started at\s+(https?:\/\/[^\s]+)/i,/listening on\s+(https?:\/\/[^\s]+)/i,/waiting on\s+(https?:\/\/[^\s]+)/i,/http:\/\/localhost:\d+/];function Sf(e){for(const t of Cf){const r=e.match(t);if(r){const s=r[1]||r[0];return kf(s).trim()}}return null}function kf(e){return e.replace(/\x1b\[[0-9;]*m/g,"")}function zl(){const e=globalThis.__codeyam_editor_dev_server__;return e&&e.status==="running"&&e.url?e.url:null}async function Ef(e,t={}){const{intervalMs:r=2e3,maxAttempts:s=15}=t,a=`http://localhost:${e}`;for(let o=0;o<s;o++){try{const i=await fetch(a,{method:"HEAD",signal:AbortSignal.timeout(2e3)});if(i.ok||i.status===304)return a}catch{}o<s-1&&await new Promise(i=>setTimeout(i,r))}return null}function _f(e){const{exitCode:t,uptime:r,retryCount:s,wasRunning:a}=e,o=r<1e4;return t!==0&&t!==null&&o&&s===0?{action:"retry"}:t!==0&&t!==null?{action:"error"}:a===!1?{action:"error"}:{action:"stopped"}}function Af(e){try{return new URL(e).toString().replace(/\/$/,"")}catch{return e}}async function Pf(e){const t=["127.0.0.1","::1"];for(const r of t)try{if(await new Promise(a=>{const o=new Qi.Socket;o.setTimeout(1e3),o.once("connect",()=>{o.destroy(),a(!0)}),o.once("error",()=>{o.destroy(),a(!1)}),o.once("timeout",()=>{o.destroy(),a(!1)}),o.connect(e,r)}))return r}catch{}return null}const Bl="__codeyam_editor_proxy__",Yl="__codeyam_preview_health__";function Ul(){return globalThis[Yl]??null}function Wl(e){globalThis[Yl]=e}function jf(){return Ul()}function Jl(){Wl(null)}const Tf=`<script data-codeyam-health>
152
- (function() {
153
- var errors = [];
154
- var reported = false;
155
- function report(type, msg, stack) {
156
- errors.push({ type: type, message: msg, stack: stack, timestamp: Date.now() });
157
- if (!reported) {
158
- reported = true;
159
- setTimeout(function() { flush(); }, 500);
160
- }
161
- }
162
- function flush() {
163
- fetch('/__codeyam__/preview-health', {
164
- method: 'POST',
165
- headers: { 'Content-Type': 'application/json' },
166
- body: JSON.stringify({ errors: errors, url: location.href })
167
- }).catch(function(){});
168
- reported = false;
169
- errors = [];
170
- }
171
- window.addEventListener('error', function(e) {
172
- report('error', e.message, e.error && e.error.stack);
173
- });
174
- window.addEventListener('unhandledrejection', function(e) {
175
- report('unhandledrejection', String(e.reason), e.reason && e.reason.stack);
176
- });
177
- var origError = console.error;
178
- console.error = function() {
179
- report('console.error', Array.prototype.join.call(arguments, ' '));
180
- origError.apply(console, arguments);
181
- };
182
- window.addEventListener('load', function() {
183
- setTimeout(function() {
184
- var hasContent = document.body && document.body.innerText.trim().length > 0;
185
- fetch('/__codeyam__/preview-health', {
186
- method: 'POST',
187
- headers: { 'Content-Type': 'application/json' },
188
- body: JSON.stringify({
189
- loaded: true,
190
- hasContent: hasContent,
191
- url: location.href,
192
- errorCount: errors.length
193
- })
194
- }).catch(function(){});
195
- }, 1000);
196
- });
197
- })();
198
- <\/script>`,Mf=500;let wt={data:null,timestamp:0},Zt,Ss=null,ks=null,Es=null;const qo=10*1024*1024;function _s(){return globalThis[Bl]??null}function Hl(e){globalThis[Bl]=e}function Vl(){const e="__codeyam_mock_state__";return globalThis[e]||(globalThis[e]=wf()),globalThis[e]}function Gl(){const e=_s();return e?`http://localhost:${e.port}`:null}function $f(){const e=Date.now();if(wt.data!==null&&e-wt.timestamp<Mf)return wt.data;const t=ye()||process.env.CODEYAM_ROOT_PATH||process.cwd(),r=X.join(t,".codeyam","active-scenario.json");try{if(!ge.existsSync(r))return wt={data:null,timestamp:e},null;const s=JSON.parse(ge.readFileSync(r,"utf-8")),a=s.scenarioId;if(!a)return Es=s.prototypeId||null,wt={data:null,timestamp:e},null;const o=X.join(t,".codeyam","editor-scenarios",`${a}.json`);if(!ge.existsSync(o))return console.log(`[editorProxy] Scenario data file not found: ${o}`),wt={data:null,timestamp:e},null;const i=JSON.parse(ge.readFileSync(o,"utf-8"));Zt=i.session||null,Ss=i.localStorage||null,ks=a;const l=s.type||i.type||null;let c;return(l==="application"||l==="user")&&i.seed?i.externalApis&&typeof i.externalApis=="object"?c={routes:i.externalApis}:c={}:c=i,wt={data:c,timestamp:e},Vl().loadScenario(c),c}catch(s){return console.warn("[editorProxy] Error reading scenario data:",s),wt={data:null,timestamp:e},null}}function If(e){return new Promise(t=>{const r=[];let s=0;e.on("data",a=>{s+=a.length,s>qo?(t(null),e.resume()):r.push(a)}),e.on("end",()=>{s>qo||t(Buffer.concat(r))}),e.on("error",()=>{t(null)})})}function Qa(e){return e.startsWith("[")&&e.endsWith("]")?e.slice(1,-1):e}function Ko(e,t,r,s){const a=new URL(r),o=Qa(a.hostname),i={...e.headers,host:`${a.hostname}:${a.port}`};delete i["accept-encoding"],s&&(i["content-length"]=String(s.length));const l={hostname:o,port:a.port,path:e.url,method:e.method,headers:i},c=$a.request(l,m=>{const u=m.statusCode||200;u>=400&&console.warn(`[editorProxy] Target returned ${u} for ${e.method} ${e.url}`);const p={...m.headers};if(ql(p),(m.headers["content-type"]||"").includes("text/html")){Jl();const f=[];m.on("data",g=>f.push(g)),m.on("end",()=>{const g=Buffer.concat(f).toString("utf-8"),y=Kl(Ss,ks||"",Es),x=Ql(g,y);delete p["content-length"],delete p["content-encoding"],p["cache-control"]="no-store, must-revalidate",t.writeHead(u,p),t.end(x)});return}t.writeHead(u,p),m.pipe(t,{end:!0})});c.on("error",m=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${m.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),s&&s.length>0?c.end(s):c.end()}function Rf(e,t,r){const s=new URL(r),a=Qa(s.hostname),{"accept-encoding":o,...i}=e.headers,l={hostname:a,port:s.port,path:e.url,method:e.method,headers:{...i,host:`${s.hostname}:${s.port}`}},c=$a.request(l,m=>{const u=m.statusCode||200;u>=400&&console.warn(`[editorProxy] Target returned ${u} for ${e.method} ${e.url}`);const p={...m.headers};if(ql(p),(m.headers["content-type"]||"").includes("text/html")){Jl();const f=[];m.on("data",g=>f.push(g)),m.on("end",()=>{const g=Buffer.concat(f).toString("utf-8"),y=Kl(Ss,ks||"",Es),x=Ql(g,y);delete p["content-length"],delete p["content-encoding"],p["cache-control"]="no-store, must-revalidate",t.writeHead(u,p),t.end(x)});return}t.writeHead(u,p),m.pipe(t,{end:!0})});c.on("error",m=>{console.warn(`[editorProxy] Forward error for ${e.method} ${e.url}: ${m.message}`),t.headersSent||(t.writeHead(502,{"Content-Type":"text/plain"}),t.end("Bad Gateway — dev server unreachable"))}),e.pipe(c,{end:!0})}function ql(e){if(Zt===void 0)return;let t;Zt!=null&&Zt.cookieValue?t=`session-token=${Zt.cookieValue}; Path=/; SameSite=Lax`:t="session-token=; Path=/; Max-Age=0";const r=e["set-cookie"];r?e["set-cookie"]=[...Array.isArray(r)?r:[r],t]:e["set-cookie"]=[t]}function Kl(e,t,r){if(!e||typeof e!="object")return r?`<script data-codeyam-ls>
199
- (function() {
200
- if (localStorage.getItem('__codeyam_proto__') === ${JSON.stringify(r)}) return;
201
- localStorage.clear();
202
- localStorage.setItem('__codeyam_proto__', ${JSON.stringify(r)});
203
- })();
204
- <\/script>`:"";const s=Object.entries(e),a=s.map(([i])=>i),o=s.map(([i,l])=>{const c=typeof l=="string"?l:JSON.stringify(l);return`localStorage.setItem(${JSON.stringify(i)}, ${JSON.stringify(c)});`}).join(`
205
- `);return`<script data-codeyam-ls>
206
- (function() {
207
- if (localStorage.getItem('__codeyam_ls_sid__') === ${JSON.stringify(t)}) return;
208
- var prev = JSON.parse(localStorage.getItem('__codeyam_ls_keys__') || '[]');
209
- for (var i = 0; i < prev.length; i++) localStorage.removeItem(prev[i]);
210
- ${o}
211
- localStorage.setItem('__codeyam_ls_keys__', ${JSON.stringify(JSON.stringify(a))});
212
- localStorage.setItem('__codeyam_ls_sid__', ${JSON.stringify(t)});
213
- })();
214
- <\/script>`}function Ql(e,t){const r=(t||"")+Tf;return e.includes("</head>")?e.replace("</head>",r+"</head>"):e.includes("</body>")?e.replace("</body>",r+"</body>"):e+r}function Df(e,t){const r=[];e.on("data",s=>r.push(s)),e.on("end",()=>{try{const s=JSON.parse(Buffer.concat(r).toString("utf-8")),a=Ul()||{errors:[],loaded:!1,hasContent:!1,url:"",lastUpdated:0};s.errors&&Array.isArray(s.errors)&&(a.errors=a.errors.concat(s.errors)),s.loaded!==void 0&&(a.loaded=s.loaded),s.hasContent!==void 0&&(a.hasContent=s.hasContent),s.url&&(a.url=s.url),a.lastUpdated=Date.now(),Wl(a)}catch{}t.writeHead(204),t.end()})}function Of(e,t,r,s){const a=new URL(s),o=Qa(a.hostname),i=parseInt(a.port,10)||80;console.log(`[editorProxy] WebSocket upgrade: ${e.url} → ${o}:${i}`);const l=Qi.connect(i,o,()=>{const c=`${e.method} ${e.url} HTTP/${e.httpVersion}\r
215
- `,m=Object.entries(e.headers).filter(([,u])=>u!=null).map(([u,p])=>`${u}: ${Array.isArray(p)?p.join(", "):p}`).join(`\r
216
- `);l.write(c+m+`\r
217
- \r
218
- `),r.length>0&&l.write(r),l.pipe(t,{end:!0}),t.pipe(l,{end:!0})});l.on("error",c=>{console.warn(`[editorProxy] WebSocket proxy error: ${c.message}`),t.destroy()}),t.on("error",()=>{l.destroy()})}function Lf(e,t){const r=ye()||process.env.CODEYAM_ROOT_PATH||process.cwd(),s=X.join(r,".codeyam","proxy-config.json");try{ge.mkdirSync(X.dirname(s),{recursive:!0}),ge.writeFileSync(s,JSON.stringify({proxyUrl:`http://localhost:${e}`,devServerUrl:t}),"utf-8"),console.log(`[editorProxy] Wrote proxy config to ${s}`)}catch(a){console.warn("[editorProxy] Failed to write proxy-config.json:",a)}}function Ff(){const e=ye()||process.env.CODEYAM_ROOT_PATH||process.cwd(),t=X.join(e,".codeyam","proxy-config.json");try{ge.existsSync(t)&&ge.unlinkSync(t)}catch{}}async function pa(e){const t=_s();if(t)return console.log(`[editorProxy] Proxy already running on port ${t.port} → ${t.targetUrl}`),{port:t.port};await Zl();let r=Af(e.targetUrl),s=e.port;try{const l=new URL(r);if(l.hostname==="localhost"){const c=parseInt(l.port||"80",10),m=await Pf(c);m&&(l.hostname=m,r=l.toString().replace(/\/$/,""),console.log(`[editorProxy] Resolved localhost to ${m} for port ${c}`))}}catch{}console.log(`[editorProxy] Starting proxy (requested port ${s}, target ${r})`);const a=Vl(),o=$a.createServer((l,c)=>{(async()=>{const u=new URL(l.url||"/",`http://localhost:${s}`).pathname,p=l.method||"GET";if(p==="OPTIONS"){c.writeHead(204,{"Access-Control-Allow-Origin":"*","Access-Control-Allow-Methods":"GET, POST, PUT, DELETE, PATCH, OPTIONS","Access-Control-Allow-Headers":"Content-Type, Authorization, X-Requested-With","Access-Control-Max-Age":"86400"}),c.end();return}if(p==="POST"&&u==="/__codeyam__/preview-health"){Df(l,c);return}if($f(),p==="POST"||p==="PUT"||p==="DELETE"||p==="PATCH"){const g=await If(l);if(g===null){Ko(l,c,r,null);return}let y;if(g.length>0)try{y=JSON.parse(g.toString("utf-8"))}catch{}const x=a.matchRequest(p,u,y);if(x){console.log(`[editorProxy] Intercepted ${p} ${u} → mock response (status ${x.status})`),c.writeHead(x.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(x.body!=null?JSON.stringify(x.body):"");return}Ko(l,c,r,g);return}const f=a.matchRequest(p,u);if(f){console.log(`[editorProxy] Intercepted ${p} ${u} → mock response (status ${f.status})`),c.writeHead(f.status,{"Content-Type":"application/json","Access-Control-Allow-Origin":"*","X-CodeYam-Proxy":"scenario-data","Cache-Control":"no-store"}),c.end(f.body!=null?JSON.stringify(f.body):"");return}Rf(l,c,r)})()});o.on("upgrade",(l,c,m)=>{Of(l,c,m,r)});const i=10;for(let l=0;l<i;l++){const c=s+l;try{await new Promise((p,h)=>{o.once("error",h),o.listen(c,"0.0.0.0",()=>{o.removeListener("error",h),p()})});const m=o.address();return s=typeof m=="object"&&m!==null?m.port:c,Hl({server:o,port:s,targetUrl:r}),Lf(s,r),console.log(`[editorProxy] Proxy started on port ${s}, forwarding to ${r}`),{port:s}}catch(m){if((m==null?void 0:m.code)==="EADDRINUSE"&&l<i-1){console.log(`[editorProxy] Port ${c} in use, trying ${c+1}`);continue}return console.error("[editorProxy] Failed to start proxy:",m),null}}return null}async function Zl(){const e=_s();if(e)return console.log(`[editorProxy] Stopping proxy on port ${e.port}`),Ff(),new Promise(t=>{e.server.close(()=>{console.log("[editorProxy] Proxy stopped"),t()}),Hl(null),setTimeout(t,2e3)})}function Zn(){wt={data:null,timestamp:0},Zt=void 0,Ss=null,ks=null,Es=null}async function Qo(){const e=_s();if(!e)return console.warn("[editorProxy] Cannot verify — proxy is not running"),!1;try{const t=await fetch(`http://127.0.0.1:${e.port}/`,{method:"HEAD",signal:AbortSignal.timeout(5e3)});return t.status===502?(console.warn("[editorProxy] Verification failed — proxy returned 502 (target unreachable)"),!1):(console.log(`[editorProxy] Verification passed — proxy forwarding to ${e.targetUrl} (status ${t.status})`),!0)}catch{return console.warn(`[editorProxy] Verification failed — could not reach proxy on port ${e.port}`),!1}}async function Xl(){const e=Gl();if(e)return console.log(`[editorProxy] Proxy already running at ${e}`),e;const t=globalThis.__codeyam_editor_dev_server__;if(!t||t.status!=="running"||!t.url)return console.log("[editorProxy] Cannot start proxy — dev server not running"),null;const r=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:s}=Fl(r);console.log(`[editorProxy] Proxy not running, starting on-demand (port ${s}, target ${t.url})`);const a=await pa({port:s,targetUrl:t.url});if(a){const o=`http://localhost:${a.port}`;return console.log(`[editorProxy] On-demand proxy started at ${o}`),o}return console.error("[editorProxy] Failed to start on-demand proxy"),null}const zf=["/api/health","/__codeyam__/preview-health"];function ec(e){const t=[];for(const r of e.split(`
219
- `))if(r.includes("[JournalCapture] Page console.error:"))t.push(r.replace(/.*\[JournalCapture\] Page console\.error:\s*/,""));else if(r.includes("[JournalCapture] Network failed:")){if(zf.some(s=>r.includes(s)))continue;t.push(r.replace(/.*\[JournalCapture\] /,""))}return t}async function tc(e,t,r,s){const a=B.join(e,".codeyam","editor-scenarios","client-errors.json");let o={};try{const i=await Ne.readFile(a,"utf8");o=JSON.parse(i)}catch{}for(const[i,l]of Object.entries(o))i!==t&&l.scenarioName===r&&delete o[i];o[t]={scenarioName:r,capturedAt:new Date().toISOString(),errors:s},await Ne.mkdir(B.dirname(a),{recursive:!0}),await Ne.writeFile(a,JSON.stringify(o,null,2),"utf8")}async function nc(e){const t=B.join(e,".codeyam","editor-scenarios","client-errors.json");try{const r=await Ne.readFile(t,"utf8");return JSON.parse(r)}catch{return{}}}function ha(e){let r=B.dirname(new URL(e).pathname);for(let s=0;s<5;s++){const a=B.dirname(r);if(B.basename(a)==="webserver"||B.basename(r)==="webserver")return B.basename(r)==="webserver"?r:a;r=a}return r}async function fa(e,t){const r=[B.join(e,"scripts","journalCapture.ts"),B.join(e,"app","lib","journalCapture.ts"),B.join(t,"codeyam-cli","src","webserver","app","lib","journalCapture.ts")];for(const s of r)try{return await Ne.access(s),s}catch{}return r[0]}function ga(e,t,r){return new Promise(s=>{const a=e.endsWith(".ts"),l=St(a?"npx":e,a?["tsx",e,t]:[t],{cwd:r,env:{...process.env}});let c="",m="";l.stdout.on("data",u=>{c+=u.toString()}),l.stderr.on("data",u=>{m+=u.toString()}),l.on("close",u=>{s(u===0?{success:!0,output:c}:{success:!1,output:c,error:m||`Process exited with code ${u}`})}),l.on("error",u=>{s({success:!1,output:"",error:u.message})})})}const Bf=3e4;function Za(e,t,r){const s=Bf,a=B.basename(B.dirname(e))===".codeyam"?B.dirname(B.dirname(e)):B.dirname(e);return new Promise(o=>{const i=Date.now(),l=e.endsWith(".ts"),u=St(l?"npx":e,l?["tsx",e,t]:[t],{cwd:a,env:{...process.env}});let p="",h="",f=!1;const g=setTimeout(()=>{f=!0,u.kill("SIGTERM")},s);u.stdout.on("data",y=>{p+=y.toString()}),u.stderr.on("data",y=>{h+=y.toString()}),u.on("close",y=>{clearTimeout(g);const x=Date.now()-i;o(f?{success:!1,output:p,error:`Seed adapter timeout after ${s}ms`,durationMs:x}:y===0?{success:!0,output:p,durationMs:x}:{success:!1,output:p,error:h||`Seed adapter exited with code ${y}`,durationMs:x})}),u.on("error",y=>{clearTimeout(g),o({success:!1,output:"",error:y.message,durationMs:Date.now()-i})})})}function Xa(e){const t=["seed-adapter.ts","seed-adapter.js"];for(const r of t){const s=B.join(e,".codeyam",r);try{return q.accessSync(s),s}catch{}}return null}function Yf(e,t){const r={};for(const[s,a]of Object.entries(e))r[s]=JSON.parse(JSON.stringify(a));for(const[s,a]of Object.entries(t))r[s]=JSON.parse(JSON.stringify(a));return r}function Uf(e,t,r){const s=B.join(e,".codeyam","editor-scenarios",`${t}.json`);let a={};try{a=JSON.parse(q.readFileSync(s,"utf8"))}catch{return}a._metadata=r,q.writeFileSync(s,JSON.stringify(a,null,2),"utf8")}function Wf(e,t){const r=B.join(e,".codeyam","editor-scenarios");for(const s of[".json",".seed.json"]){const a=B.join(r,`${t}${s}`);try{q.unlinkSync(a)}catch{}}}const eo=globalThis.__codeyamTerminalSessions??(globalThis.__codeyamTerminalSessions=new Set);globalThis.__codeyamDetachedPtys??(globalThis.__codeyamDetachedPtys=new Map);function to(e,t){const r=JSON.stringify({type:"refresh-preview",...e&&{path:e},...t&&{scenarioId:t}});let s=0;for(const a of eo)try{a.ws.readyState===Ia.OPEN&&(a.ws.send(r),s++)}catch{}return s}function Jf(){const e=JSON.stringify({type:"hide-results"});let t=0;for(const r of eo)try{r.ws.readyState===Ia.OPEN&&(r.ws.send(e),t++)}catch{}return t}function rc(e){const t=JSON.stringify({type:"set-viewport",...e});let r=0;for(const s of eo)try{s.ws.readyState===Ia.OPEN&&(s.ws.send(t),r++)}catch{}return r}const Hf=Object.freeze(Object.defineProperty({__proto__:null,broadcastHideResults:Jf,broadcastPreviewRefresh:to,broadcastSetViewport:rc},Symbol.toStringTag,{value:"Module"}));let Vt=null;async function Vf(e){const{scenarioId:t,projectRoot:r}=e,s=X.join(r,".codeyam"),a=X.join(s,"editor-scenarios");let o=e.scenarioSlug||null;if(!o)try{const u=X.join(a,`${t}.json`);ge.existsSync(u)?o=JSON.parse(ge.readFileSync(u,"utf-8")).name||t:o=t}catch{o=t}let i=e.scenarioType||null;if(!i)try{const u=X.join(a,`${t}.json`);ge.existsSync(u)&&(i=JSON.parse(ge.readFileSync(u,"utf-8")).type||null)}catch{}const l=X.join(s,"active-scenario.json");ge.mkdirSync(s,{recursive:!0}),ge.writeFileSync(l,JSON.stringify({scenarioSlug:o,scenarioName:e.scenarioName||o,scenarioId:t,type:i,dataFile:`.codeyam/editor-scenarios/${t}.json`,switchedAt:new Date().toISOString()},null,2));let c=null;const m=i==="application"||i==="user";if(m)if(Vt&&Vt.scenarioId===t)c=await Vt.promise;else{const u=Xa(r),p=X.join(a,`${t}.seed.json`);if(u&&ge.existsSync(p)){const h=Za(u,p).then(f=>({success:f.success,error:f.error}));Vt={scenarioId:t,promise:h};try{c=await h}finally{Vt&&Vt.scenarioId===t&&(Vt=null)}}else u||(c={success:!1,error:"No seed adapter found"})}return{success:!0,scenarioSlug:o,scenarioId:t,type:i,seeded:m,...c?{seedResult:c}:{}}}function Gf(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const r=Pe("git status --porcelain",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]});return qf(r)}catch{return[]}}function qf(e){const t=e.trim().split(`
220
- `).filter(s=>s.length>0),r=[];for(const s of t){const a=s[0],o=s[1];let i=s.slice(2).replace(/^[ \t]+/,""),l,c=!1,m;if(a==="A"||o==="A")l="added",c=a==="A";else if(a==="M"||o==="M")l="modified",c=a==="M";else if(a==="D"||o==="D")l="deleted",c=a==="D";else if(a==="R"||o==="R"){l="renamed",c=a==="R";const u=i.indexOf(" -> ");u!==-1&&(m=i.slice(0,u).trim(),i=i.slice(u+4).trim())}else o==="?"?(l="untracked",c=!1):(l="modified",c=a!==" "&&a!=="?");if(i.endsWith("/")){const u=process.env.CODEYAM_ROOT_PATH||process.cwd(),p=X.join(u,i);try{const h=(g,y)=>{const x=ge.readdirSync(g,{withFileTypes:!0}),b=[];for(const w of x){const v=X.join(g,w.name),C=X.relative(u,v);w.isDirectory()?b.push(...h(v,y)):w.isFile()&&b.push(C)}return b},f=h(p,u);for(const g of f)r.push({path:g,status:l,staged:c,...m&&{oldPath:m}})}catch(h){console.error(`Failed to expand directory ${i}:`,h)}}else r.push({path:i,status:l,staged:c,...m&&{oldPath:m}})}return r}function Kf(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Pe("git branch --show-current",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()||null}catch(r){return console.error("Failed to get current branch:",r),null}}function Qf(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{const s=Pe('git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null || echo ""',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().match(/refs\/remotes\/origin\/(.+)/);if(s)return s[1];try{return Pe("git show-ref --verify --quiet refs/heads/main",{cwd:t,stdio:["pipe","pipe","ignore"]}),"main"}catch{try{return Pe("git show-ref --verify --quiet refs/heads/master",{cwd:t,stdio:["pipe","pipe","ignore"]}),"master"}catch{return"main"}}}catch(r){return console.error("Failed to get default branch:",r),"main"}}function Zf(e){const t=e||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Pe('git branch --format="%(refname:short)"',{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
221
- `).filter(s=>s.length>0)}catch(r){return console.error("Failed to get branches:",r),[]}}function Mn(){const e=ye();return e?Gf(e):[]}function Xf(){const e=ye();return e?Kf(e):null}function eg(){const e=ye();return e?Qf(e):"main"}function tg(){const e=ye();return e?Zf(e):[]}function sc(e,t){const r=ye();return r?ng(e,t,r):[]}function ng(e,t,r){const s=r||process.env.CODEYAM_ROOT_PATH||process.cwd();try{return Pe(`git diff --name-status ${e}...${t}`,{cwd:s,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim().split(`
222
- `).filter(i=>i.length>0).map(i=>{const l=i.split(" "),c=l[0];let m=l[1],u,p;return c==="A"?p="added":c==="M"?p="modified":c==="D"?p="deleted":c.startsWith("R")?(p="renamed",u=l[1],m=l[2]):p="modified",{path:m,status:p,...u&&{oldPath:u}}})}catch(a){return console.error("Failed to get branch diff:",a),[]}}function ac(e,t){const r=t||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let s="";try{s=Pe(`git show HEAD:"${e}"`,{cwd:r,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{s=""}let a="";try{a=ge.readFileSync(X.join(r,e),"utf8")}catch(o){console.error(`Failed to read current file ${e}:`,o),a=""}return{oldContent:s,newContent:a,fileName:e}}catch(s){return console.error(`Failed to get diff for ${e}:`,s),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function rg(e){const t=ye();return t?ac(e,t):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}function sg(e,t,r,s){const a=s||process.env.CODEYAM_ROOT_PATH||process.cwd();try{let o="";try{o=Pe(`git show ${t}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{o=""}let i="";try{i=Pe(`git show ${r}:"${e}"`,{cwd:a,encoding:"utf8",stdio:["pipe","pipe","ignore"],maxBuffer:1024*1024*10})}catch{i=""}return{oldContent:o,newContent:i,fileName:e}}catch(o){return console.error(`Failed to get branch diff for ${e}:`,o),{oldContent:"Error loading old content",newContent:"Error loading new content",fileName:e}}}function Dr(e,t,r){const s=ye();return s?sg(e,t,r,s):{oldContent:"Error: No project root",newContent:"Error: No project root",fileName:e}}function oc(e,t){const r=new Map;for(const s of e)s.status!=="deleted"&&(t||s.status==="added"||s.status==="untracked"?r.set(s.path,"new"):s.status==="modified"&&r.set(s.path,"edited"));return r}function Ke(e){if(!e||e==="/")return"Home";const t=e.split("?")[0].replace(/^\//,"");if(!t)return"Home";const r=t.split("/")[0];return r.charAt(0).toUpperCase()+r.slice(1)}function no(e){return e?e.includes("/isolated-components"):!1}function ro(e){return e.componentName?e.componentName:Ke(e.url)}function ic(e,t,r){var o;const s=[],a=new Set;for(const i of e){let l=null,c=null;if(i.componentName&&i.componentPath)l=i.componentName,c=i.componentPath;else if(!i.componentName&&i.url!==void 0){const m=Ke(i.url);t[m]&&(l=m,c=t[m])}if(l&&c&&!a.has(l)){a.add(l);const m=r.find(u=>u.name===l);s.push({name:l,filePath:c,importedBy:(o=m==null?void 0:m.metadata)==null?void 0:o.importedBy})}}return s}function ag(e,t){const r=[],s=new Set(t);for(const a of e)s.has(a.name)||(s.add(a.name),r.push({name:a.name,filePath:a.filePath}));return r}function og(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>t[r.name])}function ig(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>{if("componentName"in r){const a=ro(r);return!!t[a]}const s=r.name.indexOf(" - ");if(s!==-1){const a=r.name.slice(0,s);return!!t[a]}return!!t.Home})}function lg(e){const t=new Map;for(const r of e){const s=r.importedBy;if(!s||typeof s!="object")continue;const a=new Set;for(const o of Object.keys(s))for(const i of Object.keys(s[o]))a.add(i);a.size>0&&t.set(r.name,a)}return t}function cg(e,t){const r=new Map;for(const s of t){const a=e.get(s.filePath);a&&r.set(s.name,a)}return r}const dg=20;function lc(e,t,r=dg){const s={};if(t.length===0||e.size===0)return s;const a=new Map;for(const m of t)a.set(m.name,m);const o=lg(t),i=cg(e,t);for(const[m,u]of i)s[m]={status:u};const l=new Map;for(const[m]of i)l.set(m,new Set([m]));const c=[];for(const[m]of i)c.push({name:m,depth:0});for(;c.length>0;){const{name:m,depth:u}=c.shift();if(u>=r)continue;const p=l.get(m)||new Set,h=o.get(m);if(h)for(const f of h){if(!a.has(f))continue;l.has(f)||l.set(f,new Set);const g=l.get(f);let y=!1;for(const x of p)g.has(x)||(g.add(x),y=!0);y&&c.push({name:f,depth:u+1})}}for(const[m,u]of l){if(i.has(m))continue;const p=[];for(const h of u){const f=a.get(h),g=i.get(h);f&&g&&p.push({name:h,filePath:f.filePath,changeType:g})}p.sort((h,f)=>h.name.localeCompare(f.name)),s[m]={status:"impacted",impactedBy:p.length>0?p:void 0}}return s}async function ug(e,t,r){const s=B.join(e,".codeyam","journal"),a=B.join(s,"index.json");B.join(s,"screenshots");let o;try{const l=await Ne.readFile(a,"utf8");o=JSON.parse(l)}catch{return}let i=!1;for(const l of o.entries)if(!l.commitSha&&l.scenarioScreenshots)for(let c=0;c<l.scenarioScreenshots.length;c++){const m=l.scenarioScreenshots[c];if(m.name!==t)continue;const u=B.join(s,m.path);try{await Ne.copyFile(r,u),i=!0,console.log(`[editor-register-scenario] Updated journal screenshot for "${t}" in entry "${l.title}"`)}catch(p){console.warn(`[editor-register-scenario] Failed to update journal screenshot: ${p instanceof Error?p.message:p}`)}}i&&ot.notifyChange("journal")}const Zo=zl;async function mg({request:e}){var t,r;if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const s=await e.json();s.url=s.url||s.path||void 0;const{name:a,description:o,componentName:i,componentPath:l}=s;if(!a)return new Response(JSON.stringify({error:"name is required"}),{status:400,headers:{"Content-Type":"application/json"}});const c=await De();if(!c)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:m}=await Oe(c),u=je(),p=process.env.CODEYAM_ROOT_PATH||process.cwd();let h,f,g,y;if(!s.viewportWidth&&!s.viewportHeight&&!s.dimension&&!s.dimensions){const L=await u.selectFrom("editor_scenarios").selectAll().where("name","=",a).where("project_id","=",m.id).orderBy("created_at","desc").executeTakeFirst();if(L){h=L.viewport_width||void 0,f=L.viewport_height||void 0,g=L.dimension||void 0;try{const H=L.dimensions?JSON.parse(L.dimensions):void 0;Array.isArray(H)&&(y=H)}catch{}}}let x=null;s.dimensions&&s.dimensions.length>0?x=s.dimensions:s.dimension?x=[s.dimension]:y&&y.length>0?x=y:g&&(x=[g]);const b=(x==null?void 0:x[0])||s.dimension||g||void 0,w=Zr({bodyWidth:s.viewportWidth||h,bodyHeight:s.viewportHeight||f,dimension:b,codeyamRoot:p}),v=await Dh(u,{projectId:m.id,name:a,description:o||null,componentName:i||null,componentPath:l||null,url:s.url||null,type:s.type||null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:null}),C=v.scenarioId;v.cleanedUpIds.length>0&&(Oh(p,v.cleanedUpIds),console.log(`[editor-register-scenario] Cleaned up ${v.cleanedUpIds.length} duplicate(s) for "${a}"`));const A=s.type==="application"||s.type==="user";if(A&&s.seed){let L=s.seed;if(s.type==="user"&&s.baseScenario)try{const U=B.join(p,".codeyam","editor-scenarios",`${s.baseScenario}.json`),O=await Ne.readFile(U,"utf-8"),_=JSON.parse(O);_.seed&&(L=Yf(_.seed,s.seed),console.log(`[editor-register-scenario] Merged seed data from base scenario ${s.baseScenario}`))}catch(U){console.warn(`[editor-register-scenario] Could not read base scenario ${s.baseScenario}: ${U instanceof Error?U.message:U}`)}const H=B.join(p,".codeyam","editor-scenarios");await Ne.mkdir(H,{recursive:!0});const F=new Date().toISOString(),z={name:a,description:o||null,componentName:i||null,componentPath:l||null,url:s.url||null,type:s.type||null,screenshotPath:null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:null,createdAt:F,updatedAt:F};await Ne.writeFile(B.join(H,`${C}.json`),JSON.stringify({_metadata:z,type:s.type,seed:L,...s.externalApis?{externalApis:s.externalApis}:{},...s.session?{session:s.session}:{},...s.localStorage?{localStorage:s.localStorage}:{}},null,2)),await Ne.writeFile(B.join(H,`${C}.seed.json`),JSON.stringify(L,null,2))}else if(s.mockData||s.localStorage){const L=B.join(p,".codeyam","editor-scenarios");await Ne.mkdir(L,{recursive:!0});const H=new Date().toISOString(),z={_metadata:{name:a,description:o||null,componentName:i||null,componentPath:l||null,url:s.url||null,type:s.type||"component",screenshotPath:null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:null,createdAt:H,updatedAt:H},...s.mockData||{},...s.localStorage?{localStorage:s.localStorage}:{}};await Ne.writeFile(B.join(L,`${C}.json`),JSON.stringify(z,null,2))}else{const L=B.join(p,".codeyam","editor-scenarios");await Ne.mkdir(L,{recursive:!0});const H=new Date().toISOString(),F={name:a,description:o||null,componentName:i||null,componentPath:l||null,url:s.url||null,type:s.type||"component",screenshotPath:null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:null,createdAt:H,updatedAt:H};await Ne.writeFile(B.join(L,`${C}.json`),JSON.stringify({_metadata:F},null,2))}let S=null;if(A&&s.seed){const L=Xa(p);if(L){const H=B.join(p,".codeyam","editor-scenarios",`${C}.seed.json`);console.log(`[editor-register-scenario] Running seed adapter: ${L}`);const F=await Za(L,H);S={success:F.success,error:F.error},F.success?console.log(`[editor-register-scenario] Seed adapter completed in ${F.durationMs}ms`):console.warn(`[editor-register-scenario] Seed adapter failed: ${F.error}`)}else console.warn(`[editor-register-scenario] No seed adapter found at ${p}/.codeyam/seed-adapter.ts`),S={success:!1,error:"No seed adapter found. Create .codeyam/seed-adapter.ts to use seed-based scenarios."}}ot.notifyChange("scenario"),console.log(`[editor-register-scenario] Starting auto-capture for scenario "${a}" (id: ${C})`);const E=s.url&&s.url.startsWith("/"),N=!s.url||E?await Xl():null,k=Zo(),j=ua(s.url||null,N,k);console.log(`[editor-register-scenario] Capture URL resolution: explicit=${s.url||"none"}, isPath=${E}, proxy=${N||"none"}, devServer=${k||"none"} → using ${j||"none"}`);let T=null,P=null,R=[],I=null,$={};if(j){const L=vt(a),H=B.join(p,".codeyam","active-scenario.json");await Ne.writeFile(H,JSON.stringify({scenarioId:C,scenarioSlug:L,type:s.type||null,timestamp:new Date().toISOString()})),Zn(),console.log(`[editor-register-scenario] Active scenario set to "${L}" (${C}), cache invalidated`),await new Promise(K=>setTimeout(K,500));const F=(t=s.url)!=null&&t.startsWith("/")?`${Zo()||"http://localhost:3113"}${s.url}`:j;for(let K=0;K<5;K++){try{const ae=await fetch(F,{method:"GET",signal:AbortSignal.timeout(3e3)});if(ae.status<500)break;console.log(`[editor-register-scenario] Route returned ${ae.status}, waiting for HMR (attempt ${K+1}/5)...`)}catch{console.log(`[editor-register-scenario] Route not reachable, waiting for HMR (attempt ${K+1}/5)...`)}await new Promise(ae=>setTimeout(ae,2e3))}const z=B.join(p,".codeyam","editor-scenarios","screenshots");await Ne.mkdir(z,{recursive:!0});const U=ha(import.meta.url),O=await fa(U,p);console.log(`[editor-register-scenario] Capture script: ${O}`);const _=qa(p),Y=x&&x.length>0?x:[null];$={};let Q=null;for(let K=0;K<Y.length;K++){const ae=Y[K];let J=w;if(ae){const me=_[ae];me!=null&&me.width&&(me!=null&&me.height)&&(J={width:me.width,height:me.height})}const D=ae?Rl(ae):null,W=D&&Y.length>1?`${C}--${D}.png`:`${C}.png`,G=B.join(z,W),ne=`screenshots/${W}`;K===0&&(I=J,Q=G);const se=JSON.stringify({url:j,outputPath:G,viewportWidth:J.width,viewportHeight:J.height,...i?{selector:"#codeyam-capture"}:{}});console.log(`[editor-register-scenario] Capture ${ae||"default"}: ${J.width}×${J.height} → ${W}`);const re=Date.now(),ee=await ga(O,se,p),de=Date.now()-re;console.log(`[editor-register-scenario] Capture ${ae||"default"} ${ee.success?"succeeded":"FAILED"} in ${de}ms`),ee.success||(console.warn(`[editor-register-scenario] Capture stdout: ${ee.output.slice(0,500)}`),console.warn(`[editor-register-scenario] Capture stderr: ${(ee.error||"").slice(0,500)}`)),K===0&&(R=ec(ee.output),await tc(p,C,a,R),R.length>0&&console.warn(`[editor-register-scenario] ${R.length} client-side error(s) detected:`,R)),ee.success?(ae&&($[ae]=ne),K===0&&(T=ne)):K===0&&(P=ee.error||"Unknown capture error",console.warn(`[editor-register-scenario] Screenshot capture failed (non-blocking): ${P}`))}if(T){try{await u.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const K={screenshot_path:T};Object.keys($).length>0&&(K.screenshot_paths=JSON.stringify($)),await u.updateTable("editor_scenarios").set(K).where("id","=",C).execute(),ot.notifyChange("scenario"),Q&&await ug(p,a,Q)}}else console.log("[editor-register-scenario] Skipping screenshot — no capture URL available (dev server not running?)");if(console.log(`[editor-register-scenario] Done: scenario="${a}", screenshot=${T?"captured":"skipped"}`),j&&T)try{const L=ye()||process.cwd(),H=B.join(L,".codeyam","editor-step.json");let F=null;try{const z=q.readFileSync(H,"utf8");F=JSON.parse(z).featureStartedAt||null}catch{}if(F){const z=Ga(F),U=await u.selectFrom("editor_scenarios").selectAll().where("project_id","=",m.id).orderBy("created_at","asc").execute(),O=ft(U,Y=>`${Y.name}::${Y.url||"/"}`),_=Mn();if(_.length>0){let Y=!1;try{const{execSync:re}=await import("child_process"),ee=re("git rev-list --count HEAD",{cwd:L,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();Y=parseInt(ee,10)<=1}catch{Y=!0}const Q=oc(_,Y),K={},ae=B.join(L,"app");if(q.existsSync(ae)){const re=(ee,de)=>{for(const me of q.readdirSync(ee,{withFileTypes:!0}))if(me.name!=="isolated-components"){if(me.isDirectory())re(B.join(ee,me.name),de?`${de}/${me.name}`:me.name);else if(me.name==="page.tsx"||me.name==="page.js"){const Te=Ke(de?`/${de}`:"/");K[Te]=de?`app/${de}/${me.name}`:`app/${me.name}`}}};re(ae,"")}let J=[];try{await Fe(),J=await tt({})||[]}catch{}const D=O.map(re=>({componentName:re.component_name||null,componentPath:re.component_path||null,url:re.url??null})),W=ic(D,K,J),G=lc(Q,W),ne=O.filter(re=>re.created_at<z),se=new Map;for(const re of ne){const ee=re.component_name||Ke(re.url);((r=G[ee])==null?void 0:r.status)==="impacted"&&se.set(ee,re)}if(se.size>0){console.log(`[editor-register-scenario] Recapturing ${se.size} impacted older scenario(s): ${[...se.keys()].join(", ")}`);const re=ha(import.meta.url),ee=await fa(re,p),de=B.join(p,".codeyam","editor-scenarios","screenshots");for(const[Te,xe]of se)try{const Ce=vt(xe.name);await Vf({scenarioId:xe.id,scenarioSlug:Ce,projectRoot:p}),Zn(),await new Promise(st=>setTimeout(st,300));const $e=ua(xe.url||null,N,k);if(!$e)continue;const Ae=B.join(de,`${xe.id}.png`),ie=Zr({bodyWidth:xe.viewport_width||void 0,bodyHeight:xe.viewport_height||void 0,dimension:xe.dimension||void 0,codeyamRoot:p}),he=JSON.stringify({url:$e,outputPath:Ae,viewportWidth:ie.width,viewportHeight:ie.height,...xe.component_name?{selector:"#codeyam-capture"}:{}});console.log(`[editor-register-scenario] Recapturing "${xe.name}" (entity: ${Te})`);const ke=await ga(ee,he,p);ke.success?(await u.updateTable("editor_scenarios").set({screenshot_path:`screenshots/${xe.id}.png`}).where("id","=",xe.id).execute(),console.log(`[editor-register-scenario] Recapture succeeded for "${xe.name}"`)):console.warn(`[editor-register-scenario] Recapture failed for "${xe.name}": ${ke.error}`)}catch(Ce){console.warn(`[editor-register-scenario] Recapture error for "${xe.name}": ${Ce instanceof Error?Ce.message:Ce}`)}const me=B.join(p,".codeyam","active-scenario.json");await Ne.writeFile(me,JSON.stringify({scenarioId:C,scenarioSlug:vt(a),type:s.type||null,timestamp:new Date().toISOString()})),Zn(),ot.notifyChange("scenario")}}}}catch(L){console.warn(`[editor-register-scenario] Recapture of impacted scenarios failed (non-blocking): ${L instanceof Error?L.message:L}`)}try{const L=new Date().toISOString(),H=Object.keys($).length>0?$:null;Uf(p,C,{name:a,description:o||null,componentName:i||null,componentPath:l||null,url:s.url||null,type:s.type||null,screenshotPath:T||null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:H,createdAt:L,updatedAt:L})}catch(L){console.warn(`[editor-register-scenario] Failed to update scenario metadata (non-blocking): ${L instanceof Error?L.message:L}`)}try{to(s.url||void 0,C)}catch{}return new Response(JSON.stringify({success:!0,scenario:{id:C,name:a,description:o,componentName:i||null,componentPath:l||null,screenshotPath:T,url:s.url||null,type:s.type||null,viewportWidth:w.width,viewportHeight:w.height,dimension:b||null,dimensions:x,screenshotPaths:Object.keys($).length>0?$:null},updated:!v.isNew,screenshotCaptured:T!==null,capturedViewport:I,captureError:P,clientErrors:R,...S?{seedResult:S}:{}}),{headers:{"Content-Type":"application/json"}})}catch(s){const a=s instanceof Error?s.message:String(s);return console.error("[editor-register-scenario] Error:",s),new Response(JSON.stringify({error:a}),{status:500,headers:{"Content-Type":"application/json"}})}}const pg=Object.freeze(Object.defineProperty({__proto__:null,action:mg},Symbol.toStringTag,{value:"Module"}));function hg(e){const t={},r=B.join(e,"app");if(!q.existsSync(r))return t;const s=l=>l.split("/").filter(c=>!c.startsWith("(")).join("/"),a=new Set(["_layout.tsx","_layout.ts","_layout.js","layout.tsx","layout.ts","layout.js"]),o=new Set([".tsx",".ts",".jsx",".js"]),i=(l,c)=>{for(const m of q.readdirSync(l,{withFileTypes:!0}))if(m.name!=="isolated-components")if(m.isDirectory())i(B.join(l,m.name),c?`${c}/${m.name}`:m.name);else if(m.name==="page.tsx"||m.name==="page.js"){const u=c?`app/${c}/${m.name}`:`app/${m.name}`,p=s(c);t[Ke(p?`/${p}`:"/")]=u}else{if(a.has(m.name))continue;{const u=B.extname(m.name);if(!o.has(u))continue;const p=B.basename(m.name,u),h=c?`app/${c}/${m.name}`:`app/${m.name}`,f=s(c);let g;p==="index"?g=f?`/${f}`:"/":g=f?`/${f}/${p}`:`/${p}`;const y=Ke(g);t[y]||(t[y]=h)}}};return i(r,""),t}function fg(e){try{const t=Pe("git rev-list --count HEAD",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim();return parseInt(t,10)<=1}catch{return!0}}function gg(e){try{const t=B.join(e,".codeyam","editor-step.json"),r=q.readFileSync(t,"utf8");return JSON.parse(r).featureStartedAt||null}catch{return null}}function cc(e){try{const t=B.join(e,".codeyam","editor-step.json"),r=q.readFileSync(t,"utf8");return JSON.parse(r).feature||null}catch{return null}}function yg(e){try{const t=B.join(e,".codeyam","editor-step.json"),r=q.readFileSync(t,"utf8"),s=JSON.parse(r);return typeof s.step=="number"&&s.label?{step:s.step,label:s.label}:null}catch{return null}}function xg(e){try{const t=B.join(e,".codeyam","claude-session-id.txt");return q.readFileSync(t,"utf8").trim()||null}catch{return null}}function dc(e){try{const t=B.join(e,".codeyam","editor-user-prompt.txt");return q.readFileSync(t,"utf8").trim()||null}catch{return null}}async function lr(e){const{projectRoot:t,scenarioInputs:r,glossaryInputs:s}=e,a=hg(t),o=new Set(Object.keys(a)),i=Mn();if(i.length===0)return{entityChangeStatus:{},pageEntityNames:o};const l=fg(t),c=oc(i,l);let m=[];try{await Fe(),m=await tt({})||[]}catch{}const u=ic(r,a,m);let p=u;if(s&&s.length>0){const f=new Set(u.map(y=>y.name)),g=ag(s,f);p=[...u,...g]}return{entityChangeStatus:lc(c,p),pageEntityNames:o}}function bg(e,t,r,s){const a=s?s.replace("T"," ").replace(/\.\d{3}Z$/,""):null,o=[],i=[],l=new Set;for(const u of e){let p=null;if(u.component_name?p=u.component_name:p=Ke(u.url),!p)continue;const h=t[p];if(!h||u.component_name)continue;const f=u.created_at||"";(a?f>=a:!0)?(i.push({name:u.name,url:u.url,entityName:p}),l.add(p)):o.push({name:u.name,url:u.url,entityName:p,changeStatus:h.status,lastCaptured:f})}const c=[];for(const[u,p]of Object.entries(t)){if(!r.has(u)||l.has(u))continue;o.some(f=>f.entityName===u)||c.push({entityName:u,changeStatus:p.status})}const m=o.length===0&&c.length===0;return{staleScenarios:o,freshScenarios:i,uncoveredPages:c,pass:m}}async function wg(){const e=ye()||process.cwd(),t=await De();if(!t)return Response.json({error:"No project configured"},{status:400});const r=B.join(e,".codeyam","editor-step.json");let s=null;try{const f=q.readFileSync(r,"utf8");s=JSON.parse(f).featureStartedAt||null}catch{}const{project:a}=await Oe(t),i=await je().selectFrom("editor_scenarios").select(["id","name","component_name","component_path","url","type","created_at"]).where("project_id","=",a.id).orderBy("created_at","asc").execute(),l=ft(i,f=>`${f.name}::${f.url||"/"}`),c=l.map(f=>({componentName:f.component_name||null,componentPath:f.component_path||null,url:f.url??null}));let m={},u=new Set;try{const f=await lr({projectRoot:e,scenarioInputs:c});m=f.entityChangeStatus,u=f.pageEntityNames}catch{}if(Object.keys(m).length===0)return Response.json({staleScenarios:[],uncoveredPages:[],freshScenarios:[],pass:!0,note:"No entity change data available — cannot determine coverage."});const p=l.map(f=>({name:f.name,component_name:f.component_name,url:f.url??null,created_at:f.created_at||""})),h=bg(p,m,u,s);return Response.json(h)}const vg=Object.freeze(Object.defineProperty({__proto__:null,loader:wg},Symbol.toStringTag,{value:"Module"}));function Ng({executionFlows:e,selections:t,onChange:r,disabled:s=!1}){const a=le(i=>t.some(l=>l.flowId===i),[t]),o=le(i=>{a(i.id)?r(t.filter(l=>l.flowId!==i.id)):r([...t,{flowId:i.id,flowName:i.name}])},[t,r,a]);return e.length===0?n("div",{className:"text-sm text-gray-500 py-2",children:"No execution flows found."}):n("div",{className:"space-y-3",children:e.map(i=>{const l=a(i.id),c=i.usedInScenarios.length>0;return d("div",{className:"border-b border-gray-100 pb-3 last:border-0 last:pb-0",children:[d("label",{className:"flex items-start gap-2 cursor-pointer",children:[n("input",{type:"checkbox",checked:l,onChange:()=>o(i),disabled:s,className:"mt-0.5 h-4 w-4 rounded border-gray-300 text-blue-600 focus:ring-blue-500"}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-mono text-sm font-medium text-gray-900",children:i.name}),!c&&n("span",{className:"text-xs px-1.5 py-0.5 bg-amber-100 text-amber-700 rounded",children:"uncovered"}),i.blocksOtherFlows&&n("span",{className:"text-xs px-1.5 py-0.5 bg-purple-100 text-purple-700 rounded",children:"blocking"}),i.impact==="high"&&n("span",{className:"text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"high impact"})]}),i.description&&n("p",{className:"text-xs text-gray-500 mt-0.5 m-0",children:i.description})]})]}),l&&i.requiredValues.length>0&&d("div",{className:"ml-6 mt-2 p-2 bg-gray-50 rounded text-xs",children:[n("span",{className:"text-gray-700 font-medium",children:"Required values:"}),n("ul",{className:"m-0 mt-1 pl-4 space-y-0.5",children:i.requiredValues.map((m,u)=>d("li",{className:"text-gray-600",children:[n("code",{className:"bg-gray-100 px-1 rounded",children:m.attributePath})," ",n("span",{className:"text-gray-400",children:m.comparison})," ",n("code",{className:"bg-gray-100 px-1 rounded",children:m.value})]},u))})]})]},i.id)})})}function so(e,t){const r=(e||[]).map(c=>({...c,usedInScenarios:[]})),s=new Map;r.forEach(c=>{s.set(c.id,c)});const a=[];t.forEach(c=>{var u;const m=((u=c.metadata)==null?void 0:u.coveredFlows)||[];m.forEach(p=>{const h=s.get(p);h&&h.usedInScenarios.push({id:c.id||"",name:c.name})}),a.push({scenario:c,coveredFlowIds:m})});const o=r.length,i=r.filter(c=>c.usedInScenarios.length>0).length,l=o>0?i/o*100:0;return{executionFlows:r,totalFlows:o,coveredFlows:i,coveragePercentage:l,scenariosWithFlows:a}}function Cg(e){return e.executionFlows.filter(t=>t.usedInScenarios.length===0)}const Sg=({data:e})=>[{title:e!=null&&e.entity?`Create Scenario - ${e.entity.name} - CodeYam`:"Create Scenario - CodeYam"},{name:"description",content:"Create a new scenario"}];async function kg({params:e}){var i;const{sha:t}=e;if(!t)throw new Response("Entity SHA is required",{status:400});const r=await ms(t,!0),s=r&&r.length>0?r[0]:null;if(!s)throw new Response("Analysis not found",{status:404});const a=(i=s.scenarios)==null?void 0:i.find(l=>l.name===us);if(!a)throw new Response("Default scenario not found",{status:404});const o=await De();return Z({analysis:s,defaultScenario:a,entity:s.entity,entitySha:t,projectSlug:o})}function Eg(){var z;const{analysis:e,defaultScenario:t,entity:r,entitySha:s,projectSlug:a}=He(),o=Nt(),{iframeRef:i}=Ka(),[l,c]=M(""),[m,u]=M(400),[p,h]=M(!1),[f,g]=M(!1),[y,x]=M(!1),[b,w]=M(null),[v,C]=M(null),[A,S]=M([]),E=oe(()=>{var O;return!((O=e==null?void 0:e.metadata)!=null&&O.executionFlows)||!(e!=null&&e.scenarios)?[]:so(e.metadata.executionFlows,e.scenarios).executionFlows},[e]),{interactiveServerUrl:N,isStarting:k,isLoading:j,showIframe:T,iframeKey:P,onIframeLoad:R}=cn({analysisId:e==null?void 0:e.id,scenarioId:t==null?void 0:t.id,scenarioName:t==null?void 0:t.name,projectSlug:a,enabled:!0}),I=le(async()=>{var U,O,_,Y;if(!l.trim()&&A.length===0){w("Please describe how you want to change the scenario or select execution flows");return}g(!0),w(null),C("Generating scenario with AI...");try{const Q=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:l,existingScenarios:e.scenarios,scenariosDataStructure:(U=e.metadata)==null?void 0:U.scenariosDataStructure,flowSelections:A.length>0?A:void 0})}),K=await Q.json();if(!Q.ok||!K.success)throw new Error(K.error||"Failed to generate scenario data");console.log("[CreateScenario] AI generated scenario:",K.data);const ae=K.data;if(!ae.name||!ae.data)throw new Error("AI response missing required fields (name or data)");C("Saving new scenario..."),x(!0);const J={name:ae.name,description:ae.description||l,metadata:{data:ae.data,interactiveExamplePath:(O=t.metadata)==null?void 0:O.interactiveExamplePath}},D=[...e.scenarios||[],J],W=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:e,scenarios:D})}),G=await W.json();if(!W.ok||!G.success)throw new Error(G.error||"Failed to save scenario");console.log("[CreateScenario] Scenario saved:",G);const ne=(Y=(_=G.analysis)==null?void 0:_.scenarios)==null?void 0:Y.find(se=>se.name===ae.name);if(!(ne!=null&&ne.id)){console.warn("[CreateScenario] Could not find saved scenario ID, navigating to entity page"),C("Scenario created! Redirecting..."),setTimeout(()=>void o(`/entity/${s}`),1e3);return}if(N){C("Capturing screenshot...");const se=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:N,scenarioId:ne.id,projectId:e.projectId,viewportWidth:1440})}),re=await se.json();!se.ok||!re.success?(console.error("[CreateScenario] Capture failed:",re),C("Scenario created! (Screenshot capture failed)")):C("Scenario created and captured!")}else C("Scenario created!");setTimeout(()=>{o(`/entity/${s}/scenarios/${ne.id}`)},1e3)}catch(Q){console.error("[CreateScenario] Error:",Q),w(Q instanceof Error?Q.message:String(Q)),C(null)}finally{g(!1),x(!1)}},[l,A,e,t,s,N,o]),$=f||y,L=le(()=>{h(!0)},[]),H=le(U=>{if(!p)return;const O=U.clientX;O>=250&&O<=600&&u(O)},[p]),F=le(()=>{h(!1)},[]);return te(()=>(p?(document.addEventListener("mousemove",H),document.addEventListener("mouseup",F)):(document.removeEventListener("mousemove",H),document.removeEventListener("mouseup",F)),()=>{document.removeEventListener("mousemove",H),document.removeEventListener("mouseup",F)}),[p,H,F]),d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:()=>void o(`/entity/${s}`),className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:r==null?void 0:r.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:r==null?void 0:r.filePath,children:r==null?void 0:r.filePath})]}),d("div",{className:"flex items-end gap-8 shrink-0",children:[n(fe,{to:`/entity/${s}/scenarios`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-medium border-b-2",style:{color:"#005C75",borderColor:"#005C75"},children:d("span",{className:"flex items-center gap-2",children:["Scenarios",n("span",{className:"inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full bg-[#cbf3fa] text-[#005c75]",children:((z=e==null?void 0:e.scenarios)==null?void 0:z.length)||0})]})}),n(fe,{to:`/entity/${s}/related`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Related Entities"}),n(fe,{to:`/entity/${s}/code`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Code"}),n(fe,{to:`/entity/${s}/data`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"Data Structure"}),n(fe,{to:`/entity/${s}/history`,className:"relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline font-normal hover:text-gray-700",style:{color:"#9ca3af"},children:"History"})]})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0 relative",children:[d("aside",{className:"bg-white border-r border-gray-200 overflow-y-auto shrink-0 p-6 flex flex-col",style:{width:`${m}px`},children:[d("div",{className:"mb-6",children:[n("h2",{className:"text-lg font-semibold text-gray-900 mb-2",children:"Default Scenario Preview"}),n("p",{className:"text-sm text-gray-600 leading-relaxed",children:"The preview on the right shows the Default Scenario. Select execution flows and/or describe how you'd like to change it."})]}),E.length>0&&d("details",{className:"mb-4 border border-gray-200 rounded-lg",children:[d("summary",{className:"px-3 py-2 text-sm font-medium text-gray-700 cursor-pointer hover:bg-gray-50 rounded-lg",children:["Select Execution Flows"," ",A.length>0&&d("span",{className:"text-blue-600",children:["(",A.length," selected)"]})]}),n("div",{className:"px-3 pb-3 pt-1 border-t border-gray-100",children:n(Ng,{executionFlows:E,selections:A,onChange:S,disabled:$})})]}),d("div",{className:"mb-4",children:[n("label",{htmlFor:"prompt",className:"block text-sm font-medium text-gray-700 mb-2",children:"Describe your scenario"}),n("textarea",{id:"prompt",value:l,onChange:U=>c(U.target.value),placeholder:"e.g., Show an empty state with no items...",className:"w-full h-32 px-3 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500 text-sm resize-none",disabled:$})]}),d("div",{className:"space-y-2",children:[n("button",{onClick:()=>void I(),disabled:$||!l.trim()&&A.length===0,className:"w-full px-4 py-2 bg-blue-600 text-white rounded-lg text-sm font-medium cursor-pointer transition-colors hover:bg-blue-700 disabled:bg-gray-400 disabled:cursor-not-allowed",children:$?"Creating...":"Create Scenario"}),v&&n("div",{className:"text-xs text-blue-600 bg-blue-50 px-2 py-1.5 rounded",children:v}),b&&n("div",{className:"text-xs text-red-600 bg-red-50 px-2 py-1.5 rounded",children:b})]})]}),d("div",{onMouseDown:L,style:{width:"20px",position:"absolute",top:0,left:`${m-10}px`,bottom:0,cursor:"col-resize",touchAction:"none",userSelect:"none",zIndex:100,pointerEvents:"auto"},children:[n("div",{style:{position:"absolute",left:"10px",top:0,bottom:0,width:"1px",background:p?"#005c75":"rgba(0,0,0,0.1)",transition:"background 0.15s ease"}}),n("div",{style:{position:"absolute",top:"50%",left:"10px",transform:"translate(-50%, -50%)",width:"8px",height:"40px",background:"#fff",border:"1px solid rgba(0,0,0,0.15)",borderRadius:"4px",cursor:"col-resize"}})]}),n("main",{className:"flex-1 overflow-auto flex items-center justify-center min-w-0",style:{backgroundImage:`
223
- linear-gradient(45deg, #ebebeb 25%, transparent 25%),
224
- linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
225
- linear-gradient(45deg, transparent 75%, #ebebeb 75%),
226
- linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
227
- `,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:n(Cs,{scenarioId:t.id||t.name,scenarioName:t.name,iframeUrl:N,isStarting:k,isLoading:j,showIframe:T,iframeKey:P,onIframeLoad:R,projectSlug:a,defaultWidth:1440,defaultHeight:900})})]})]})}const _g=Ye(function(){return n(Ns,{children:n(Eg,{})})}),Ag=Object.freeze(Object.defineProperty({__proto__:null,default:_g,loader:kg,meta:Sg},Symbol.toStringTag,{value:"Module"})),Pg=zl;async function jg({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioId:r,url:s,viewportWidth:a,viewportHeight:o}=t;if(!r)return new Response(JSON.stringify({error:"scenarioId is required"}),{status:400,headers:{"Content-Type":"application/json"}});const i=await De();if(!i)return new Response(JSON.stringify({error:"Project not initialized"}),{status:400,headers:{"Content-Type":"application/json"}});const{project:l}=await Oe(i),c=je(),m=await c.selectFrom("editor_scenarios").selectAll().where("id","=",r).where("project_id","=",l.id).executeTakeFirst();if(!m)return new Response(JSON.stringify({error:"Scenario not found"}),{status:404,headers:{"Content-Type":"application/json"}});const u=s??m.url??null,p=u&&u.startsWith("/"),h=!u||p?await Xl():null,f=Pg(),g=ua(u,h,f);if(console.log(`[editor-capture-scenario] URL resolution: explicit=${s||"none"}, db=${m.url||"none"}, proxy=${h||"none"}, devServer=${f||"none"} → captureUrl=${g||"none"}`),!g)return new Response(JSON.stringify({error:"Cannot determine capture URL — no proxy or dev server running"}),{status:400,headers:{"Content-Type":"application/json"}});console.log(`[editor-capture-scenario] Starting capture for scenario "${m.name}" (id: ${r}), url: ${g}`);const y=process.env.CODEYAM_ROOT_PATH||process.cwd(),x=vt(m.name),b=B.join(y,".codeyam","active-scenario.json");await Ne.writeFile(b,JSON.stringify({scenarioId:r,scenarioSlug:x,timestamp:new Date().toISOString()})),Zn(),console.log(`[editor-capture-scenario] Active scenario set to "${x}", cache invalidated`),await new Promise(P=>setTimeout(P,500));const w=B.join(y,".codeyam","editor-scenarios","screenshots");await Ne.mkdir(w,{recursive:!0});const v=ha(import.meta.url),C=await fa(v,y);console.log(`[editor-capture-scenario] Capture script: ${C}`);let A;const S=m;if(t.dimensions&&t.dimensions.length>0)A=t.dimensions;else if(S.dimensions)try{const P=JSON.parse(S.dimensions);A=Array.isArray(P)&&P.length>0?P:[null]}catch{A=[null]}else A=[null];const E=qa(y);let N=null;const k={};let j=[],T=null;for(let P=0;P<A.length;P++){const R=A[P];let I;R&&E[R]?I=E[R]:I=Zr({bodyWidth:a||S.viewport_width||void 0,bodyHeight:o||S.viewport_height||void 0,dimension:R||S.dimension||void 0,codeyamRoot:y});const $=R?Rl(R):null,L=$&&A.length>1?`${r}--${$}.png`:`${r}.png`,H=B.join(w,L),F=`screenshots/${L}`,z=JSON.stringify({url:g,outputPath:H,viewportWidth:I.width,viewportHeight:I.height,...m.component_name?{selector:"#codeyam-capture"}:{}});console.log(`[editor-capture-scenario] Capture ${R||"default"}: ${I.width}×${I.height} → ${L}`);const U=Date.now(),O=await ga(C,z,y),_=Date.now()-U;if(console.log(`[editor-capture-scenario] Capture ${R||"default"} ${O.success?"succeeded":"FAILED"} in ${_}ms`),!O.success){console.warn(`[editor-capture-scenario] Capture stdout: ${O.output.slice(0,500)}`),console.warn(`[editor-capture-scenario] Capture stderr: ${(O.error||"").slice(0,500)}`),P===0&&(T=O.error||"Unknown capture error");continue}if(P===0){N=F;const Y=ec(O.output);j=Y,await tc(y,r,m.name,Y)}R&&(k[R]=F)}if(!N&&T)return new Response(JSON.stringify({error:"Failed to capture screenshot",details:T}),{status:500,headers:{"Content-Type":"application/json"}});if(N){try{await c.schema.alterTable("editor_scenarios").addColumn("screenshot_path","varchar").execute()}catch{}const P={screenshot_path:N,updated_at:new Date().toISOString().replace("T"," ").replace(/\.\d{3}Z$/,"")};Object.keys(k).length>0&&(P.screenshot_paths=JSON.stringify(k)),await c.updateTable("editor_scenarios").set(P).where("id","=",r).execute()}return j.length>0&&console.warn(`[editor-capture-scenario] ${j.length} client-side error(s) detected:`,j),ot.notifyChange("scenario"),new Response(JSON.stringify({success:!0,screenshotPath:N,screenshotPaths:Object.keys(k).length>0?k:null,clientErrors:j}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-capture-scenario] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Tg=Object.freeze(Object.defineProperty({__proto__:null,action:jg},Symbol.toStringTag,{value:"Module"}));async function Mg({params:e}){const t=e["*"];if(!t)return new Response("Image path is required",{status:400});const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=X.join(r,".codeyam","editor-scenarios","screenshots",t),a=X.resolve(s),o=X.resolve(X.join(r,".codeyam","editor-scenarios","screenshots"));if(!a.startsWith(o))return new Response("Invalid path",{status:403});try{const i=await Se.readFile(s),l=X.extname(s).toLowerCase(),c=l===".png"?"image/png":l===".jpg"||l===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"no-store"}})}catch{return new Response("Image not found",{status:404})}}const $g=Object.freeze(Object.defineProperty({__proto__:null,loader:Mg},Symbol.toStringTag,{value:"Module"}));async function Ig({params:e}){const t=e["*"];if(!t)return new Response("Image path is required",{status:400});const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=X.join(r,".codeyam","journal","screenshots",t),a=X.resolve(s),o=X.resolve(X.join(r,".codeyam","journal","screenshots"));if(!a.startsWith(o))return new Response("Invalid path",{status:403});try{const i=await Se.readFile(s),l=X.extname(s).toLowerCase(),c=l===".png"?"image/png":l===".jpg"||l===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"no-store"}})}catch{return new Response("Image not found",{status:404})}}const Rg=Object.freeze(Object.defineProperty({__proto__:null,loader:Ig},Symbol.toStringTag,{value:"Module"}));let Gt=null;async function Dg({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{scenarioSlug:r,scenarioId:s,scenarioName:a,scenarioType:o,skipBroadcast:i}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({error:"scenarioSlug is required"}),{status:400,headers:{"Content-Type":"application/json"}});const l=ye()||process.cwd(),c=X.join(l,".codeyam"),m=X.join(c,"active-scenario.json");let u=o||null;if(!u&&s){const g=X.join(c,"editor-scenarios",`${s}.json`);try{ge.existsSync(g)&&(u=JSON.parse(ge.readFileSync(g,"utf-8")).type||null)}catch{}}ge.mkdirSync(c,{recursive:!0}),ge.writeFileSync(m,JSON.stringify({scenarioSlug:r,scenarioName:a||null,scenarioId:s||null,type:u,dataFile:s?`.codeyam/editor-scenarios/${s}.json`:null,switchedAt:new Date().toISOString()},null,2));let p=null;const h=u==="application"||u==="user";if(h&&s)if(Gt&&Gt.scenarioId===s)console.log(`[editor-switch-scenario] Seed already in progress for "${s}" — reusing`),p=await Gt.promise;else{const g=Xa(l),y=X.join(c,"editor-scenarios",`${s}.seed.json`);if(g&&ge.existsSync(y)){console.log(`[editor-switch-scenario] Running seed adapter for ${u} scenario "${a||r}"`);const x=Za(g,y).then(b=>{const w={success:b.success,error:b.error};return b.success?console.log(`[editor-switch-scenario] Seed adapter completed in ${b.durationMs}ms`):console.warn(`[editor-switch-scenario] Seed adapter failed: ${b.error}`),w});Gt={scenarioId:s,promise:x};try{p=await x}finally{Gt&&Gt.scenarioId===s&&(Gt=null)}}else g||(console.warn("[editor-switch-scenario] No seed adapter found — skipping database seeding"),p={success:!1,error:"No seed adapter found"})}Zn();const f=i?0:to();return new Response(JSON.stringify({success:!0,scenarioSlug:r,refreshedClients:f,seeded:h,...p?{seedResult:p}:{}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Og=Object.freeze(Object.defineProperty({__proto__:null,action:Dg},Symbol.toStringTag,{value:"Module"}));var we;(e=>{(t=>{t.OPENAI_GPT5_1="openai/gpt-5.1",t.OPENAI_GPT5="openai/gpt-5",t.OPENAI_GPT5_MINI="openai/gpt-5-mini",t.OPENAI_GPT5_NANO="openai/gpt-5-nano",t.OPENAI_GPT4_1="openai/gpt-4.1",t.OPENAI_GPT4_1_MINI="openai/gpt-4.1-mini",t.OPENAI_GPT4_O="openai/gpt-4o",t.OPENAI_GPT4_O_MINI="openai/gpt-4o-mini",t.OPENAI_GPT_OSS_120B_GROQ="openai/gpt-oss-120b-groq",t.OPENAI_GPT_OSS_120B_DEEPINFRA="openai/gpt-oss-120b-deepinfra",t.QWEN3_235B_INSTRUCT_DEEPINFRA="qwen/qwen3-235b-instruct-deepinfra",t.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA="qwen/qwen3-coder-480b-instruct-deepinfra",t.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA="google/gemini-2.5-pro-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA="google/gemini-2.5-flash-deepinfra",t.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER="google/gemini-2.5-flash-lite-openrouter",t.META_LLAMA_4_MAVERICK_OPENROUTER="meta-llama/llama-4-maverick-openrouter",t.DEEPSEEK_V3_1_TERMINUS_OPENROUTER="deepseek/v3.1-terminus-openrouter",t.ANTHROPIC_CLAUDE_4_5_HAIKU="anthropic/claude-4.5-haiku",t.ANTHROPIC_CLAUDE_4_5_SONNET="anthropic/claude-4.5-sonnet",t.ANTHROPIC_CLAUDE_4_5_OPUS="anthropic/claude-4.5-opus",t.PHIND_CODELLAMA="phind/codellama",t.GOOGLE_GEMINI_PRO="google/gemini-pro",t.GOOGLE_PALM_2_CODE_CHAT_32K="google/palm-2-code-chat-32k",t.META_CODELLAMA_34B_INSTRUCT="meta-llama/codellama-34b-instruct",t.OPENAI_GPT4_PREVIEW="openai/gpt-4-preview"})(e.Model||(e.Model={}))})(we||(we={}));function uc(e,t){return e?Object.values(we.Model).includes(e)?e:(console.warn(`Invalid model in environment variable: ${e}. Falling back to ${t}`),t):t}const mc=uc(process.env.DEFAULT_SMALLER_MODEL,we.Model.OPENAI_GPT4_1_MINI),Lg=uc(process.env.DEFAULT_LARGER_MODEL,we.Model.OPENAI_GPT4_1),ut={name:"OpenAI",baseURL:"https://api.openai.com/v1",apiKeyEnvVar:"OPENAI_API_KEY"},qs={name:"OpenRouter",baseURL:"https://openrouter.ai/api/v1",apiKeyEnvVar:"OPENROUTER_API_KEY"},Fg={name:"Groq",baseURL:"https://api.groq.com/openai/v1",apiKeyEnvVar:"GROQ_API_KEY"},Ks={name:"Anthropic",baseURL:"https://api.anthropic.com/v1/",apiKeyEnvVar:"ANTHROPIC_API_KEY"},$t={name:"DeepInfra",baseURL:"https://api.deepinfra.com/v1/",apiKeyEnvVar:"DEEPINFRA_API_KEY"},zg={[we.Model.OPENAI_GPT5_1]:{id:we.Model.OPENAI_GPT5_1,provider:ut,apiModelName:"gpt-5.1",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"none"},[we.Model.OPENAI_GPT5]:{id:we.Model.OPENAI_GPT5,provider:ut,apiModelName:"gpt-5",maxCompletionTokens:128e3,pricing:{input:1.25,output:10},reasoningEffort:"minimal"},[we.Model.OPENAI_GPT5_MINI]:{id:we.Model.OPENAI_GPT5_MINI,provider:ut,apiModelName:"gpt-5-mini",maxCompletionTokens:128e3,pricing:{input:.25,output:2},reasoningEffort:"minimal"},[we.Model.OPENAI_GPT5_NANO]:{id:we.Model.OPENAI_GPT5_NANO,provider:ut,apiModelName:"gpt-5-nano",maxCompletionTokens:128e3,pricing:{input:.05,output:.4},reasoningEffort:"minimal"},[we.Model.OPENAI_GPT4_1]:{id:we.Model.OPENAI_GPT4_1,provider:ut,apiModelName:"gpt-4.1",maxCompletionTokens:32768,pricing:{input:2,output:8}},[we.Model.OPENAI_GPT4_1_MINI]:{id:we.Model.OPENAI_GPT4_1_MINI,provider:ut,apiModelName:"gpt-4.1-mini",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[we.Model.OPENAI_GPT4_O]:{id:we.Model.OPENAI_GPT4_O,provider:ut,apiModelName:"gpt-4o",maxCompletionTokens:16384,pricing:{input:2.5,output:10}},[we.Model.OPENAI_GPT4_O_MINI]:{id:we.Model.OPENAI_GPT4_O_MINI,provider:ut,apiModelName:"gpt-4o-mini",maxCompletionTokens:16384,pricing:{input:.15,output:.6}},[we.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER]:{id:we.Model.GOOGLE_GEMINI_2_5_FLASH_LITE_OPENROUTER,provider:qs,apiModelName:"google/gemini-2.5-flash-lite",maxCompletionTokens:1048576,pricing:{input:.1,output:.4},reasoningEffort:"minimal"},[we.Model.META_LLAMA_4_MAVERICK_OPENROUTER]:{id:we.Model.META_LLAMA_4_MAVERICK_OPENROUTER,provider:qs,apiModelName:"meta-llama/llama-4-maverick",maxCompletionTokens:1048576,pricing:{input:.15,output:.6},reasoningEffort:"minimal"},[we.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER]:{id:we.Model.DEEPSEEK_V3_1_TERMINUS_OPENROUTER,provider:qs,apiModelName:"deepseek/deepseek-v3.1-terminus",maxCompletionTokens:163840,pricing:{input:.23,output:.9},reasoningEffort:"minimal"},[we.Model.OPENAI_GPT_OSS_120B_GROQ]:{id:we.Model.OPENAI_GPT_OSS_120B_GROQ,provider:Fg,apiModelName:"openai/gpt-oss-120b",maxCompletionTokens:131072,pricing:{input:.15,output:.75},reasoningEffort:"low"},[we.Model.OPENAI_GPT_OSS_120B_DEEPINFRA]:{id:we.Model.OPENAI_GPT_OSS_120B_DEEPINFRA,provider:$t,apiModelName:"openai/gpt-oss-120b-Turbo",maxCompletionTokens:32768,pricing:{input:.15,output:.6},reasoningEffort:"low"},[we.Model.QWEN3_235B_INSTRUCT_DEEPINFRA]:{id:we.Model.QWEN3_235B_INSTRUCT_DEEPINFRA,provider:$t,apiModelName:"Qwen/Qwen3-235B-A22B-Instruct-2507",maxCompletionTokens:32768,pricing:{input:.09,output:.57}},[we.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA]:{id:we.Model.QWEN3_CODER_480B_INSTRUCT_DEEPINFRA,provider:$t,apiModelName:"Qwen/Qwen3-Coder-480B-A35B-Instruct",maxCompletionTokens:32768,pricing:{input:.4,output:1.6}},[we.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA]:{id:we.Model.GOOGLE_GEMINI_2_5_PRO_DEEPINFRA,provider:$t,apiModelName:"google/gemini-2.5-pro",maxCompletionTokens:1048576,pricing:{input:1.25,output:10},reasoningEffort:"low"},[we.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA]:{id:we.Model.GOOGLE_GEMINI_2_5_FLASH_DEEPINFRA,provider:$t,apiModelName:"google/gemini-2.5-flash",maxCompletionTokens:1048576,pricing:{input:.3,output:2.5},reasoningEffort:"low"},[we.Model.ANTHROPIC_CLAUDE_4_5_HAIKU]:{id:we.Model.ANTHROPIC_CLAUDE_4_5_HAIKU,provider:Ks,apiModelName:"claude-haiku-4-5",maxCompletionTokens:2e5,pricing:{input:1,output:5}},[we.Model.ANTHROPIC_CLAUDE_4_5_SONNET]:{id:we.Model.ANTHROPIC_CLAUDE_4_5_SONNET,provider:Ks,apiModelName:"claude-sonnet-4-5",maxCompletionTokens:2e5,pricing:{input:3,output:15}},[we.Model.ANTHROPIC_CLAUDE_4_5_OPUS]:{id:we.Model.ANTHROPIC_CLAUDE_4_5_OPUS,provider:Ks,apiModelName:"claude-opus-4-5",maxCompletionTokens:2e5,pricing:{input:5,output:25}},[we.Model.PHIND_CODELLAMA]:{id:we.Model.PHIND_CODELLAMA,provider:ut,apiModelName:"phind-codellama",maxCompletionTokens:16384,pricing:{input:0,output:0}},[we.Model.GOOGLE_GEMINI_PRO]:{id:we.Model.GOOGLE_GEMINI_PRO,provider:$t,apiModelName:"google/gemini-pro",maxCompletionTokens:32768,pricing:{input:0,output:0}},[we.Model.GOOGLE_PALM_2_CODE_CHAT_32K]:{id:we.Model.GOOGLE_PALM_2_CODE_CHAT_32K,provider:$t,apiModelName:"google/palm-2-code-chat-32k",maxCompletionTokens:32768,pricing:{input:0,output:0}},[we.Model.META_CODELLAMA_34B_INSTRUCT]:{id:we.Model.META_CODELLAMA_34B_INSTRUCT,provider:$t,apiModelName:"meta-llama/codellama-34b-instruct",maxCompletionTokens:16384,pricing:{input:0,output:0}},[we.Model.OPENAI_GPT4_PREVIEW]:{id:we.Model.OPENAI_GPT4_PREVIEW,provider:ut,apiModelName:"gpt-4-preview",maxCompletionTokens:128e3,pricing:{input:0,output:0}}};function As(e){const t=zg[e];if(!t)throw new Error(`Unknown model: ${e}`);return t}function Bg(e){return As(e).maxCompletionTokens}function Yg(e){return As(e).pricing}const Xo=1e6;function Ug({model:e,usage:t}){const r=Yg(e);return r?t.prompt_tokens*(r.input/Xo)+t.completion_tokens*(r.output/Xo):null}function Wg({chatRequest:e,chatCompletion:t,model:r}){if("error"in t&&t.error)return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),error:JSON.stringify(t.error)};const s=t.usage||{prompt_tokens:0,completion_tokens:0},a=Ug({model:r,usage:s});return{model:r,prompt_type:e.type,system_message:e.messages.system,prompt_text:e.messages.prompt,response:JSON.stringify(t,null,2),input_tokens:s.prompt_tokens,output_tokens:s.completion_tokens,cost:a?Math.round(a*1e5)/1e5:void 0}}function Jg({messages:{system:e,prompt:t},model:r,responseType:s,jsonSchema:a}){const o=r??mc,i=As(o);Bg(o);const l=[];return e&&l.push({role:"system",content:e}),l.push({role:"user",content:[{type:"text",text:t}]}),{messages:l,model:i.apiModelName,response_format:s==="json_schema"&&a?{type:"json_schema",json_schema:{name:a.name,schema:a.schema,strict:a.strict!==!1}}:{type:s&&s=="text"?"text":"json_object"},...i.reasoningEffort&&{reasoning_effort:i.reasoningEffort}}}const ya="/tmp/codeyam-e2e-tracking";let Qs,Zs;function Hg(){return Qs===void 0&&(Qs=process.env.CODEYAM_E2E_TRACK_DATA==="true"),Qs}function Vg(){return Zs===void 0&&(Zs=!process.env.CODEYAM_LLM_FIXTURES_DIR),Zs}function Gg(){q.existsSync(ya)||q.mkdirSync(ya,{recursive:!0})}function qg(e){const t=JSON.stringify(e,null,0);return Gd.createHash("md5").update(t).digest("hex")}function Kg(e,t,r){return[e].join("_")+".json"}function pc(e,t,r,s){if(!Hg())return;Gg();const a=Kg(e),o=B.join(ya,a),i=qg(t);if(Vg()){const l={timestamp:Date.now(),checkpoint:e,entityName:r,scenarioName:s,dataHash:i,data:t};q.writeFileSync(o,JSON.stringify(l,null,2)),console.log(`[E2E Tracking] First run - saved snapshot: ${e} hash=${i.substring(0,8)}`)}else if(q.existsSync(o)){const l=JSON.parse(q.readFileSync(o,"utf-8")),c={matches:i===l.dataHash,firstRunHash:l.dataHash};if(c.matches)console.log(`[E2E Tracking] Match at ${e} hash=${i.substring(0,8)}`);else{c.differences=xa(l.data,t),console.log(`[E2E Tracking] MISMATCH at ${e}`),console.log(` First run hash: ${l.dataHash}`),console.log(` Second run hash: ${i}`);const m=o.replace(".json","_DIFF.json");q.writeFileSync(m,JSON.stringify({checkpoint:e,entityName:r,scenarioName:s,firstRun:l.data,secondRun:t,differences:c.differences},null,2)),console.log(` Diff saved to: ${m}`)}}else console.log(`[E2E Tracking] No first-run snapshot found for: ${e}`)}function xa(e,t,r=""){const s=[];if(typeof e!=typeof t)return s.push(`${r||"root"}: type mismatch (${typeof e} vs ${typeof t})`),s;if(e===null||t===null)return e!==t&&s.push(`${r||"root"}: ${JSON.stringify(e)} vs ${JSON.stringify(t)}`),s;if(Array.isArray(e)&&Array.isArray(t)){e.length!==t.length&&s.push(`${r||"root"}: array length ${e.length} vs ${t.length}`);const a=Math.max(e.length,t.length);for(let o=0;o<a;o++)s.push(...xa(e[o],t[o],`${r}[${o}]`));return s}if(typeof e=="object"&&typeof t=="object"){const a=Object.keys(e),o=Object.keys(t),i=Array.from(new Set([...a,...o]));for(const l of i){const c=e[l],m=t[l];l in e?l in t?s.push(...xa(c,m,`${r?r+".":""}${l}`)):s.push(`${r?r+".":""}${l}: missing in second run`):s.push(`${r?r+".":""}${l}: missing in first run`)}return s}if(e!==t){const a=JSON.stringify(e),o=JSON.stringify(t);a.length<100&&o.length<100?s.push(`${r||"root"}: ${a} vs ${o}`):s.push(`${r||"root"}: values differ (${a.length} chars vs ${o.length} chars)`)}return s}Ma(Ta);const _r=new eu({concurrency:100,timeout:1200*1e3,autoStart:!0}),ei={retries:4,factor:2,minTimeout:1e3,maxTimeout:6e4,randomize:!0},It={};async function ba({type:e,systemMessage:t,prompt:r,jsonResponse:s=!0,jsonSchema:a,model:o=mc,attempts:i=0}){var E,N,k,j,T,P,R;if(process.env.CODEYAM_LLM_FIXTURES_DIR)return await Qg(e,process.env.CODEYAM_LLM_FIXTURES_DIR,t);console.log(`CodeYam Debug: LLM Pool [queued=${_r.size}, running=${_r.pending}]`);const l=Date.now();let c,m=0;const u=As(o),p=process.env[u.provider.apiKeyEnvVar];if(!p)throw new Error(`API key not found for provider ${u.provider.name}. Please set ${u.provider.apiKeyEnvVar} environment variable.`);console.log(`Using ${u.provider.name} for AI request`);const h=new Xd({apiKey:p,baseURL:u.provider.baseURL}),f={type:e,messages:{system:t,prompt:r},model:o,responseType:a?"json_schema":s?"json_object":"text",jsonSchema:a},g=Jg(f),y=await _r.add(()=>(c=Date.now(),$o(async()=>{const I=Date.now(),$=["Waiting for LLM response","Still waiting for LLM response","LLM call in progress","Processing LLM request","Awaiting LLM completion"],L=setInterval(()=>{const H=Math.floor((Date.now()-I)/1e3),F=Math.floor(H/10)%$.length;Ro(1,`${$[F]} [type=${e}, model=${o}, elapsed=${H}s]`)},1e4);try{return await h.chat.completions.create(g,{timeout:300*1e3})}finally{clearInterval(L)}},{...ei,onFailedAttempt:I=>{m++,console.log(`CodeYam Error: Completion call failed [model=${o}]`,{error:I,prompt:r,systemMessage:t,attempts:i,retryCount:m})}})));if(!y)throw new Error("Completion call returned no result");const x=y,b=Date.now(),w=Wg({chatRequest:f,chatCompletion:x,model:o});if(!w)throw new Error("Failed to get LLM call stats");w.retries=m,w.wait_ms=c-l,w.duration_ms=b-l;const v=(E=x.choices)==null?void 0:E[0];let C=null;if(v){if(!v.finish_reason)throw console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({chatCompletion:x,chatRequest:f},null,2)),new Error("completionCall(): missing finish_reason in LLM response");C=(N=v.message)==null?void 0:N.content}let A=C;C&&(A=C.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const S=s?A&&(((k=A.match(/\{[\s\S]*\}/))==null?void 0:k[0])??A):A;if(!S){if(console.log(`CodeYam Error: completionCall(): empty completion from LLM, [type=${e}]`,JSON.stringify({completion:S,rawCompletion:C,chatCompletion:x,chatRequest:f},null,2)),i<3)return console.log("CodeYam Error: Retrying completion",{prompt:r,systemMessage:t,attempts:i}),await ba({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1});throw new Error("completionCall(): empty completion from LLM")}if(S.replace(/\s/g,"")==="")throw console.log("CodeYam Error: Empty Completion",{rawCompletion:C,prompt:r,systemMessage:t}),new Error("Empty completion");if(s)try{JSON.parse(S)}catch(I){if(console.log("CodeYam Error: Invalid JSON in completion",{error:I.message,model:o,completion:S.substring(0,500),rawCompletion:C==null?void 0:C.substring(0,500)}),i<3){console.log("CodeYam Error: Retrying with correction prompt",{attempts:i,parseError:I.message});const $=`Your previous response contained invalid JSON with the following error:
228
-
229
- ${I.message}
230
-
231
- Here was your previous response:
232
- \`\`\`
233
- ${S}
234
- \`\`\`
235
-
236
- Please provide a corrected version with valid JSON only. Do not include any explanatory text, just the valid JSON object.`,L=await _r.add(()=>$o(async()=>{const O=Date.now(),_=["Waiting for LLM correction response","Still waiting for LLM correction","LLM correction in progress","Processing LLM correction request","Awaiting LLM correction completion"],Y=setInterval(()=>{const Q=Math.floor((Date.now()-O)/1e3),K=Math.floor(Q/10)%_.length;Ro(1,`${_[K]} [type=${e}, model=${o}, elapsed=${Q}s]`)},1e4);try{return await h.chat.completions.create({...g,messages:[{role:"system",content:t},{role:"user",content:r},{role:"assistant",content:S},{role:"user",content:$}]},{timeout:300*1e3})}finally{clearInterval(Y)}},{...ei,onFailedAttempt:O=>{console.log("CodeYam Error: Correction call failed",{error:O,attempts:i})}}));if(!L)throw new Error("Correction call returned no result");const H=L,F=(P=(T=(j=H.choices)==null?void 0:j[0])==null?void 0:T.message)==null?void 0:P.content;let z=F;F&&(z=F.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const U=z&&(((R=z.match(/\{[\s\S]*\}/))==null?void 0:R[0])??z);if(!U)throw new Error("Correction attempt returned empty completion");try{JSON.parse(U),console.log("CodeYam: JSON correction successful");const O=Date.now();return w.duration_ms=O-l,{finishReason:H.choices[0].finish_reason,completion:U,stats:w}}catch(O){return console.log("CodeYam Error: Corrected JSON still invalid",{error:O.message,correctedCompletion:U.substring(0,500)}),await ba({type:e,systemMessage:t,prompt:r,jsonResponse:s,model:o,attempts:i+1})}}throw new Error(`Invalid JSON after ${i} attempts: ${I.message}`)}return pc(`completionCall_${e}`,{completion:S,finishReason:x.choices[0].finish_reason}),{finishReason:x.choices[0].finish_reason,completion:S,stats:w}}async function Qg(e,t,r){var o,i,l,c,m;const s=await import("fs"),a=await import("path");console.log(`CodeYam Test: Replaying LLM call for type '${e}' from ${t}`);try{if(!s.existsSync(t))throw console.log(`CodeYam Test: Fixtures directory does not exist yet: ${t}`),new Error(`No LLM fixture files found - directory does not exist: ${t}`);const u=s.readdirSync(t).filter(w=>w.endsWith(".json"));if(u.length===0)throw new Error(`No LLM fixture files found in ${t}`);const p={};for(const w of u)try{const v=s.readFileSync(a.join(t,w),"utf-8"),C=JSON.parse(v);p[C.prompt_type]||(p[C.prompt_type]=[]),p[C.prompt_type].push(C)}catch(v){console.warn(`Failed to parse LLM fixture file ${w}:`,v)}for(const w of Object.keys(p))p[w].sort((v,C)=>{const A=v.created_at??0,S=C.created_at??0;return A-S});const h=p[e];if(!h||h.length===0){const w=Object.keys(p).join(", ");return console.warn(`CodeYam Test: No captured LLM call found for type '${e}'. Available types: ${w}`),{finishReason:"stop",completion:"{}",stats:{model:"fixture-fallback",prompt_type:e,system_message:"",prompt_text:"",response:"{}",input_tokens:0,output_tokens:0,cost:0}}}let f;if(["generateEntityScenarioData","generateChunkMockData","generateMissingMockData"].includes(e)&&r){const w=r.match(/Scenario name must match exactly: "([^"]+)"/),v=w==null?void 0:w[1];if(v){const C={};for(const S of h)try{const N=((o=JSON.parse(S.props||"{}").scenario)==null?void 0:o.name)||"__NO_SCENARIO__";C[N]||(C[N]=[]),C[N].push(S)}catch{}const A=C[v];if(A&&A.length>0){const S=`${t}::${e}::${v}`;It[S]===void 0&&(It[S]=0);const E=It[S];It[S]=(E+1)%A.length,f=A[E],console.log(`CodeYam Test: ✅ Matched fixture for scenario '${v}' [${E+1}/${A.length}]`)}else{const S=Object.keys(C).join(", ");console.warn(`CodeYam Test: ⚠️ No fixture found for scenario '${v}'. Available: [${S}]`)}}else console.warn(`CodeYam Test: ⚠️ Could not extract scenario name from system message for type '${e}'`)}if(!f){const w=`${t}::${e}`;It[w]===void 0&&(It[w]=0);const v=It[w];It[w]=(v+1)%h.length,f=h[v],console.log(`CodeYam Test: Replaying LLM response for '${e}' [${v+1}/${h.length}]`)}let y;try{y=((c=(l=(i=JSON.parse(f.response).choices)==null?void 0:i[0])==null?void 0:l.message)==null?void 0:c.content)||f.response}catch{y=f.response}let x=y;y&&(x=y.replace(/<think>[\s\S]*?<\/think>/g,"").trim());const b=x&&(((m=x.match(/\{[\s\S]*\}/))==null?void 0:m[0])??x);return pc(`completionCall_${e}`,{completion:b||"",finishReason:"stop"}),{finishReason:"stop",completion:b||"",stats:{model:f.model??"fixture",prompt_type:e,system_message:f.system_message??"",prompt_text:f.prompt_text??"",response:f.response??"",input_tokens:f.input_tokens??0,output_tokens:f.output_tokens??0,cost:f.cost??0,retries:0,wait_ms:0,duration_ms:1}}}catch(u){throw console.error("CodeYam Test Error: Failed to replay LLM call:",u),u}}function ti(){return process.env.DYNAMODB_PREFIX?`${process.env.DYNAMODB_PREFIX}-llm-calls`:null}async function Zg(e){const{propsJson:t,...r}=e,s=JSON.stringify(t,null,2),a=ja(),o=Date.now(),i={...r,id:a,created_at:o,props:s};let l;const c=`${i.object_id}_${a}.json`;if(process.env.DYNAMODB_PATH?l=B.join(process.env.DYNAMODB_PATH,c):process.env.CODEYAM_LOCAL_PROJECT_PATH&&(l=B.join(process.env.CODEYAM_LOCAL_PROJECT_PATH,".codeyam","llm-calls",c)),l)try{const u=B.dirname(l);return await Ne.mkdir(u,{recursive:!0}),await Ne.writeFile(l,JSON.stringify(i,null,2)),console.log(`CodeYam: Saved LLM call to local file: ${l}`),{id:a}}catch(u){return console.log("CodeYam Error: Failed to save LLM call to local file",u),{id:"-1"}}const m=ti();if(!m)return console.log("[CodeYam] No DynamoDB table name for LLM calls, skipping save"),{id:"-1"};for(const[u,p]of Object.entries(i))typeof p>"u"&&console.log(`CodeYam Warning: LLM call ${a} property ${u} with explicit value 'undefined'`);try{return await new ls().send(new tu({TableName:ti(),Item:ru(i,{removeUndefinedValues:!0})})),{id:a}}catch(u){return console.log(`CodeYam Error: Failed to save LLM call to DynamoDB table ${m}`,u),{id:"-1"}}}new ls({});new ls({});new ls({});const Xg=3,e0=2,ao=()=>({max:1e4,maxSize:10*1e3*1e3,sizeCalculation:(e,t)=>16+Xg*String(t).length*(1+e0)});new Ra(ao());new Ra(ao());new Ra(ao());class t0{constructor(){this.byMethodName=new Map,this.byClassAndMethod=new Map}register(t,r,s){this.byMethodName.has(t)||this.byMethodName.set(t,[]),this.byMethodName.get(t).push(r),s&&(this.byClassAndMethod.has(s)||this.byClassAndMethod.set(s,new Map),this.byClassAndMethod.get(s).set(t,r))}getByMethodName(t){return this.byMethodName.get(t)}getByClassAndMethod(t,r){var s;return(s=this.byClassAndMethod.get(t))==null?void 0:s.get(r)}}class n0{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class r0{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class s0{getReturnType(){return"boolean"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"boolean");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class a0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class o0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];if(s.addType(o,"function"),s.addEquivalence(o.withParameter(1),r.withElement("*")),a.args.length>1){const i=a.args[1];s.addEquivalence(o.withParameter(0),i)}}}isComplete(){return!0}}class i0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.getLastFunctionCallSegment();a&&a.args.forEach(o=>{s.addEquivalence(t,o)}),s.addEquivalence(t,r.withElement("*"))}isComplete(){return!0}}class l0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown");const a=t.withReturnValues();s.addType(a,"unknown")}isComplete(){return!0}}class c0{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array"),s.addType(t,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>2)for(let o=2;o<a.args.length;o++){const i=a.args[o];s.addEquivalence(r.withElement("*"),i)}}isComplete(){return!0}}class d0{getReturnType(){return"number"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0)for(let o=0;o<a.args.length;o++)s.addEquivalence(r.withElement("*"),t.withParameter(o))}isComplete(){return!0}}class u0{getReturnType(){return"string"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}class m0{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class p0{getReturnType(){return"array"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class h0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"unknown"),s.addEquivalence(t.withReturnValues(),r.withElement("*"))}isComplete(){return!0}}class f0{getReturnType(){return"unknown"}addEquivalences(t,r,s){s.addType(r,"array");const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r.withElement("*"))}}isComplete(){return!0}}class g0{getReturnType(){return"object"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"array")}}isComplete(){return!0}}class y0{getReturnType(){return"string[]"}addEquivalences(t,r,s){s.addType(r,"string"),s.addType(t,"string[]"),s.addEquivalence(t.withReturnValues().withElement("*"),r)}isComplete(){return!0}}class x0{getReturnType(){return"unknown"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(a&&a.args.length>0){const o=a.args[0];s.addType(o,"function"),s.addEquivalence(o.withParameter(0),r),s.addEquivalence(t.withProperty("functionCallReturnValue"),o.withProperty("returnValue"))}}isComplete(){return!0}}class b0{getReturnType(){return"unknown"}addEquivalences(t,r,s){t.getLastFunctionCallSegment()}isComplete(){return!0}}class w0{getReturnType(){return"array"}addEquivalences(t,r,s){const a=t.getLastFunctionCallSegment();if(s.addType(t.withParameter(1),"function"),a&&a.args.length>0){const o=a.args[0];s.addEquivalence(t.withParameter(0),o)}}isComplete(){return!0}}function v0(){const e=new t0;return e.register("filter",new n0,"Array"),e.register("map",new m0,"Array"),e.register("flatMap",new p0,"Array"),e.register("join",new u0,"Array"),e.register("find",new a0,"Array"),e.register("findLast",new f0,"Array"),e.register("at",new h0,"Array"),e.register("reduce",new o0,"Array"),e.register("concat",new i0,"Array"),e.register("slice",new l0,"Array"),e.register("splice",new c0,"Array"),e.register("push",new d0,"Array"),e.register("some",new r0,"Array"),e.register("every",new s0,"Array"),e.register("fromEntries",new g0,"Object"),e.register("split",new y0,"String"),e.register("then",new x0,"Promise"),e.register("useState",new w0,"React"),e.register("useMemo",new b0,"React"),e}v0();new Set(Object.getOwnPropertyNames(Array.prototype).filter(e=>typeof Array.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(String.prototype).filter(e=>typeof String.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Number.prototype).filter(e=>typeof Number.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Boolean.prototype).filter(e=>typeof Boolean.prototype[e]=="function")),new Set(Object.getOwnPropertyNames(Date.prototype).filter(e=>typeof Date.prototype[e]=="function"));const N0=new Set(["filter","sort","slice","splice","unshift","push","reverse","entries"]),C0=new Set(["find","findLast","at","pop","shift"]),S0=new Set(["map","reduce","flatMap","concat","join","some","every","findIndex","findLastIndex","indexOf","lastIndexOf","includes"]),k0=new Set([...N0,...C0,...S0]),E0=new Set(["trim","concat","replace","replaceAll","toLowerCase","toUpperCase","trimStart","trimEnd","padStart","padEnd","normalize","slice","substring","substr","toString()","toLocaleLowerCase","toLocaleUpperCase"]),_0=new Set(["split","match","endsWith","startsWith","includes","indexOf","lastIndexOf","charAt","charCodeAt","codePointAt","repeat","search","valueOf","localeCompare","length"]),A0=new Set([...E0,..._0]);[...k0,...A0];class P0{constructor(t){this.depth=0,this.traceCount=0,this.defaultOutput=(r,s)=>{const a=" ".repeat(this.depth),o=this.timestamps?`[${Date.now()}] `:"";s?console.info(`${o}${a}${r}`,JSON.stringify(s)):console.info(`${o}${a}${r}`)},this.enabled=t.enabled,this.pathPatterns=t.pathPatterns??[],this.scopePatterns=t.scopePatterns??[],this.maxDepth=t.maxDepth??50,this.output=t.output??this.defaultOutput,this.timestamps=t.timestamps??!1}shouldTrace(t){return!this.enabled||this.depth>=this.maxDepth?!1:!!(this.pathPatterns.length===0&&this.scopePatterns.length===0||t.path&&this.pathPatterns.length>0&&this.pathPatterns.some(r=>r.test(t.path))||t.scope&&this.scopePatterns.length>0&&this.scopePatterns.some(r=>r.test(t.scope)))}trace(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[TRACE] ${t}`,r))}traceEnter(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[ENTER] ${t}`,r),this.depth++)}traceExit(t,r={}){this.depth>0&&this.depth--,this.shouldTrace(r)&&this.output(`[EXIT] ${t}`,r)}traceWarn(t,r={}){this.shouldTrace(r)&&(this.traceCount++,this.output(`[WARN] ${t}`,r))}enable(){this.enabled=!0}disable(){this.enabled=!1}resetDepth(){this.depth=0}getStats(){return{traceCount:this.traceCount,currentDepth:this.depth,enabled:this.enabled}}reset(){this.depth=0,this.traceCount=0}}new P0({enabled:!1});function qt(e,t){const r={added:{},removed:{},changed:{}},s=new Set(Object.keys(e??{})),a=new Set(Object.keys(t??{}));for(const o of a)s.has(o)||(r.added[o]=t[o]);for(const o of s)a.has(o)||(r.removed[o]=e[o]);for(const o of s)a.has(o)&&e[o]!==t[o]&&(r.changed[o]={from:e[o],to:t[o]});return r}function j0(e){return Object.keys(e.added).length>0||Object.keys(e.removed).length>0||Object.keys(e.changed).length>0}function Ar(e){return Object.keys(e.added).length+Object.keys(e.removed).length+Object.keys(e.changed).length}let T0=0;class oo{constructor(t){this.traces=new Map,this.currentEntity=null,this.currentStage=null,this.tracerId=++T0,this.enabled=(t==null?void 0:t.enabled)??!1,this.outputPath=(t==null?void 0:t.outputPath)??"/tmp/codeyam/transform-trace.json",this.enabled&&console.log(`[Tracer] Initialized (id=${this.tracerId}, output=${this.outputPath})`)}log(t){this.isEnabled()&&console.log(`[Tracer] ${t}`)}isEnabled(){const t=process.env.CODEYAM_TRACE_TRANSFORMS;return t==="1"||t==="true"?!0:this.enabled}enable(){this.enabled=!0}disable(){this.enabled=!1}setOutputPath(t){this.outputPath=t}setProjectSlug(t){this.projectSlug=t}startEntity(t){if(!this.isEnabled())return;this.currentEntity=t.name;const r=this.traces.get(t.name);if(r){this.log(`startEntity: ${t.name} already exists, preserving ${r.stages.length} stages`);return}this.log(`startEntity: ${t.name}`),this.traces.set(t.name,{entityName:t.name,entityType:t.entityType,filePath:t.filePath,stages:[],operations:[]})}snapshot(t,r,s){var c,m,u,p;if(!this.isEnabled())return;const a=this.traces.get(t);if(!a)return this.log(`snapshot: no trace for ${t}, creating one`),this.startEntity({name:t,entityType:"unknown",filePath:"unknown"}),this.snapshot(t,r,s);this.log(`snapshot: ${t} → ${r}`),this.currentStage=r;const o=JSON.parse(JSON.stringify(s)),i={stage:r,timestamp:Date.now(),data:o},l=a.stages[a.stages.length-1];if(l&&(i.diffFromPrevious={signatureSchema:qt(l.data.signatureSchema,o.signatureSchema),returnValueSchema:qt(l.data.returnValueSchema,o.returnValueSchema)},o.dependencySchemas||l.data.dependencySchemas)){i.diffFromPrevious.dependencySchemas={};const h=new Set([...Object.keys(o.dependencySchemas??{}),...Object.keys(l.data.dependencySchemas??{})]);for(const f of h){const g=(c=l.data.dependencySchemas)==null?void 0:c[f],y=(m=o.dependencySchemas)==null?void 0:m[f];for(const x of new Set([...Object.keys(g??{}),...Object.keys(y??{})])){const b=`${f}::${x}`,w=(u=g==null?void 0:g[x])==null?void 0:u.returnValueSchema,v=(p=y==null?void 0:y[x])==null?void 0:p.returnValueSchema,C=qt(w,v);j0(C)&&(i.diffFromPrevious.dependencySchemas[b]=C)}}}a.stages.push(i)}operation(t,r){if(!this.isEnabled())return;const s=this.traces.get(t);s&&s.operations.push({...r,stage:r.stage??this.currentStage??void 0,timestamp:Date.now()})}computeFlushSummary(){var a;const t={},r=new Map;for(const[o,i]of this.traces){let l=0;for(const c of i.stages){if(!c.diffFromPrevious)continue;const u=`${((a=i.stages[i.stages.indexOf(c)-1])==null?void 0:a.stage)??"start"}→${c.stage}`;if(t[u]||(t[u]={added:0,removed:0,changed:0}),c.diffFromPrevious.signatureSchema){const p=c.diffFromPrevious.signatureSchema;t[u].added+=Object.keys(p.added).length,t[u].removed+=Object.keys(p.removed).length,t[u].changed+=Object.keys(p.changed).length,l+=Ar(p)}if(c.diffFromPrevious.returnValueSchema){const p=c.diffFromPrevious.returnValueSchema;t[u].added+=Object.keys(p.added).length,t[u].removed+=Object.keys(p.removed).length,t[u].changed+=Object.keys(p.changed).length,l+=Ar(p)}}r.set(o,l)}const s=[...r.entries()].sort((o,i)=>i[1]-o[1]).slice(0,10).map(([o])=>o);return{stageChangeCounts:t,entitiesWithMostChanges:s}}flush(){if(!this.isEnabled())return;if(this.traces.size===0){this.log("flush: no traces to write");return}const t=Array.from(this.traces.keys()),r=t.map(m=>`${m}(${this.traces.get(m).stages.length})`).join(", ");this.log(`flush: writing ${t.length} entities: ${r}`);const{stageChangeCounts:s,entitiesWithMostChanges:a}=this.computeFlushSummary(),o={timestamp:new Date().toISOString(),projectSlug:this.projectSlug,entityCount:this.traces.size},i={stageChangeCounts:s,entitiesWithMostChanges:a},l=B.dirname(this.outputPath);q.existsSync(l)||q.mkdirSync(l,{recursive:!0});const c=q.openSync(this.outputPath,"w");try{q.writeSync(c,`{
237
- "meta": `),q.writeSync(c,JSON.stringify(o,null,2)),q.writeSync(c,`,
238
- "summary": `),q.writeSync(c,JSON.stringify(i,null,2)),q.writeSync(c,`,
239
- "entities": {`);let m=!0;for(const[u,p]of this.traces)m||q.writeSync(c,","),q.writeSync(c,`
240
- ${JSON.stringify(u)}: `),q.writeSync(c,JSON.stringify(p,null,2)),m=!1;q.writeSync(c,`
241
- }
242
- }
243
- `),this.log(`flush: wrote trace to ${this.outputPath}`)}finally{q.closeSync(c)}}clear(){this.traces.clear(),this.currentEntity=null,this.currentStage=null}static loadTrace(t){const r=q.readFileSync(t,"utf-8"),s=JSON.parse(r),a=new oo({enabled:!1});a.projectSlug=s.meta.projectSlug;for(const[o,i]of Object.entries(s.entities))a.traces.set(o,i);return a}getSummary(){var a,o,i;const t={},r=new Map;for(const[l,c]of this.traces){let m=0;for(let u=1;u<c.stages.length;u++){const p=c.stages[u],f=`${((a=c.stages[u-1])==null?void 0:a.stage)??"start"}→${p.stage}`;if(t[f]||(t[f]={added:0,removed:0,changed:0}),(o=p.diffFromPrevious)!=null&&o.signatureSchema){const g=p.diffFromPrevious.signatureSchema;t[f].added+=Object.keys(g.added).length,t[f].removed+=Object.keys(g.removed).length,t[f].changed+=Object.keys(g.changed).length,m+=Ar(g)}if((i=p.diffFromPrevious)!=null&&i.returnValueSchema){const g=p.diffFromPrevious.returnValueSchema;t[f].added+=Object.keys(g.added).length,t[f].removed+=Object.keys(g.removed).length,t[f].changed+=Object.keys(g.changed).length,m+=Ar(g)}}r.set(l,m)}const s=[...r.entries()].sort((l,c)=>c[1]-l[1]).slice(0,10).map(([l,c])=>({name:l,totalChanges:c}));return{entityCount:this.traces.size,stageChangeCounts:t,entitiesWithMostChanges:s}}getEntitySummary(t){const r=this.traces.get(t);return r?{entityName:t,stages:r.stages.map(s=>({stage:s.stage,diffFromPrevious:s.diffFromPrevious?{signatureSchema:s.diffFromPrevious.signatureSchema,returnValueSchema:s.diffFromPrevious.returnValueSchema}:void 0}))}:null}getOperations(t,r){const s=this.traces.get(t);return s?r?s.operations.filter(a=>a.path&&r.test(a.path)):s.operations:[]}tracePath(t,r){var o,i;const s=this.traces.get(t),a=[];if(!s)return{entityName:t,path:r,history:a};for(const l of s.stages){const c=(o=l.data.signatureSchema)==null?void 0:o[r],m=(i=l.data.returnValueSchema)==null?void 0:i[r],u=c??m;u!==void 0&&a.push({stage:l.stage,value:u})}for(const l of s.operations)l.path===r&&a.push({operation:l.operation,stage:l.stage,value:l.after??l.before,context:l.context});return{entityName:t,path:r,history:a}}getEntityTrace(t){return this.traces.get(t)}getEntityNames(){return[...this.traces.keys()]}findProperty(t,r){const s=this.traces.get(t);if(!s)return[];const a=[],o=new RegExp(`(^|\\.)${r}(\\.|\\[|$)`);for(const i of s.stages){for(const[l,c]of Object.entries(i.data.signatureSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"signature"});for(const[l,c]of Object.entries(i.data.returnValueSchema??{}))o.test(l)&&a.push({stage:i.stage,path:l,type:c,schemaType:"returnValue"});for(const[l,c]of Object.entries(i.data.dependencySchemas??{}))for(const[m,u]of Object.entries(c))for(const[p,h]of Object.entries(u.returnValueSchema??{}))o.test(p)&&a.push({stage:i.stage,path:`${l}/${m}::${p}`,type:h,schemaType:"dependency"})}return a}findTypeInconsistencies(t){const r=this.traces.get(t);if(!r)return[];let s=r.stages[r.stages.length-1];for(let c=r.stages.length-1;c>=0;c--)if(Object.keys(r.stages[c].data.dependencySchemas??{}).length>0){s=r.stages[c];break}if(!s)return[];const a=new Set(["length","toString","valueOf","constructor"]),o=new Map,i=(c,m)=>{const u=c.match(/\.([a-zA-Z_][a-zA-Z0-9_]*)(\[\])?$/);if(!u)return;const p=u[1],h=u[2]==="[]";if(a.has(p))return;const f=p+(h?"[]":"");o.has(f)||o.set(f,[]),o.get(f).push({path:c,type:m})};for(const[,c]of Object.entries(s.data.dependencySchemas??{}))for(const[,m]of Object.entries(c))for(const[u,p]of Object.entries(m.returnValueSchema??{}))i(u,p);const l=[];for(const[c,m]of o)new Set(m.map(p=>p.type.replace(/ \| undefined/g,"").replace(/ \| null/g,""))).size>1&&l.push({propertyName:c,paths:m.map(p=>({...p,stage:s.stage}))});return l.sort((c,m)=>{const u=new Set(c.paths.map(h=>h.type)).size;return new Set(m.paths.map(h=>h.type)).size-u}),l}getStageDiffSummary(t,r,s){const a=this.traces.get(t);if(!a)return null;const o=a.stages.find(h=>h.stage===r),i=a.stages.find(h=>h.stage===s);if(!o||!i)return null;const l={added:[],removed:[],typeChanged:[]},c=o.data.returnValueSchema??{},m=i.data.returnValueSchema??{},u=new Set(Object.keys(c)),p=new Set(Object.keys(m));for(const h of p)u.has(h)?c[h]!==m[h]&&l.typeChanged.push({path:h,from:c[h],to:m[h]}):l.added.push(`${h}: ${m[h]}`);for(const h of u)p.has(h)||l.removed.push(`${h}: ${c[h]}`);return l}traceSchemaTransform(t,r,s,a,o){if(!this.enabled)return a(s),s;const i={...s};a(s);const l=qt(i,s);for(const[c,m]of Object.entries(l.added))this.operation(t,{operation:r,path:c,before:void 0,after:m,context:{...o,changeType:"added"}});for(const[c,m]of Object.entries(l.removed))this.operation(t,{operation:r,path:c,before:m,after:void 0,context:{...o,changeType:"removed"}});for(const[c,{from:m,to:u}]of Object.entries(l.changed))this.operation(t,{operation:r,path:c,before:m,after:u,context:{...o,changeType:"changed"}});return s}traceSchemaTransformResult(t,r,s,a,o){if(!this.enabled)return;const i=qt(s,a);for(const[l,c]of Object.entries(i.added))this.operation(t,{operation:r,path:l,before:void 0,after:c,context:{...o,changeType:"added"}});for(const[l,c]of Object.entries(i.removed))this.operation(t,{operation:r,path:l,before:c,after:void 0,context:{...o,changeType:"removed"}});for(const[l,{from:c,to:m}]of Object.entries(i.changed))this.operation(t,{operation:r,path:l,before:c,after:m,context:{...o,changeType:"changed"}})}traceDependencySchemaTransform(t,r,s,a,o="both"){if(!this.enabled){for(const i in s)for(const l in s[i]){const c=s[i][l];(o==="signature"||o==="both")&&c.signatureSchema&&a(c.signatureSchema),(o==="returnValue"||o==="both")&&c.returnValueSchema&&a(c.returnValueSchema)}return}for(const i in s)for(const l in s[i]){const c=s[i][l],m={filePath:i,dependencyName:l};(o==="signature"||o==="both")&&c.signatureSchema&&this.traceSchemaTransform(t,r,c.signatureSchema,a,{...m,schemaType:"signature"}),(o==="returnValue"||o==="both")&&c.returnValueSchema&&this.traceSchemaTransform(t,r,c.returnValueSchema,a,{...m,schemaType:"returnValue"})}}traceDependencySchemaChanges(t,r,s,a){var i;if(!this.enabled){a();return}const o={};for(const l in s){o[l]={};for(const c in s[l]){const m=s[l][c];o[l][c]={sig:{...m.signatureSchema||{}},rv:{...m.returnValueSchema||{}}}}}a();for(const l in s)for(const c in s[l]){const m=s[l][c],u=(i=o[l])==null?void 0:i[c],p={filePath:l,dependencyName:c};if(m.signatureSchema){const h=(u==null?void 0:u.sig)||{},f=qt(h,m.signatureSchema);for(const[g,y]of Object.entries(f.added))this.operation(t,{operation:r,path:g,before:void 0,after:y,context:{...p,schemaType:"signature",changeType:"added"}});for(const[g,{from:y,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:g,before:y,after:x,context:{...p,schemaType:"signature",changeType:"changed"}})}if(m.returnValueSchema){const h=(u==null?void 0:u.rv)||{},f=qt(h,m.returnValueSchema);for(const[g,y]of Object.entries(f.added))this.operation(t,{operation:r,path:g,before:void 0,after:y,context:{...p,schemaType:"returnValue",changeType:"added"}});for(const[g,{from:y,to:x}]of Object.entries(f.changed))this.operation(t,{operation:r,path:g,before:y,after:x,context:{...p,schemaType:"returnValue",changeType:"changed"}})}}}}function M0(){const e=process.env.CODEYAM_TRACE_TRANSFORMS;return e==="1"||e==="true"}const ni=new oo({enabled:M0(),outputPath:"/tmp/codeyam/transform-trace.json"});process.on("beforeExit",()=>{ni.isEnabled()&&ni.flush()});function hc(e){if(e==null)return null;const t=e.match(/```json\s*([\s\S]*?)\s*```/);t&&(e=t[1]),e=e.replace(/"[^"]+"\s*:\s*undefined\s*,?\s*/g,""),e=e.replace(/,(\s*[}\]])/g,"$1");try{return nu.parse(e)}catch(r){const a=r.message.match(/invalid character .* at (\d+):(\d+)/);if(a){const o=parseInt(a[2],10);if(e.substring(o-2,o-1)==='"')return e=e.substring(0,o-2)+"\\"+e.substring(o-2),hc(e)}return null}}function $0({description:e,existingScenarios:t,scenariosDataStructure:r,flowSelections:s}){let a="";return s&&s.length>0&&(a=`
244
- User-selected Execution Flow Values:
245
- The user has specifically requested these values be used in the scenario:
246
- ${s.map(o=>` - ${o.path}: ${o.value}${o.isCustom?" (custom value)":""}`).join(`
247
- `)}
248
-
249
- IMPORTANT: The mockData MUST include these specific values for the specified paths. Generate a scenario name and description that reflects these choices.
250
- `),`Mock Scenario Data Structure:
251
- \`\`\`
252
- ${JSON.stringify(r,null,2)}
253
- \`\`\`
254
- Existing Mock Scenario Data:
255
- \`\`\`
256
- ${JSON.stringify(t,null,2)}
257
- \`\`\`
258
- ${a}
259
- New Scenario user-created prompt: "${e||"(No additional description - generate based on selected execution flow values)"}"
260
- `}function I0({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}){const o=s.find(i=>i.name===us);return`Mock Scenario Data Structure:
261
- \`\`\`
262
- ${JSON.stringify({props:a.arguments,dataVariables:a.dataForMocks},null,2)}
263
- \`\`\`
264
-
265
- Existing Mock Scenario Data:
266
- \`\`\`
267
- ${JSON.stringify(s.map(i=>({name:i.name,data:qn(o.metadata.data,i.metadata.data)})),null,2)}
268
- \`\`\`
269
-
270
- Mock Scenario that should be edited: "${t}"
271
- ${r?`The portion of the data that should be edited:
272
- \`\`\`
273
- ${JSON.stringify(r,null,2)}
274
- \`\`\``:""}
275
-
276
- How this data should be changed: "${e}"
277
- `}async function R0({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,flowSelections:o,model:i}){const l=t?I0({description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a}):$0({description:e,existingScenarios:s,scenariosDataStructure:a,flowSelections:o}),c=await ba({type:"guessScenarioDataFromDescription",systemMessage:t?O0(r):D0,prompt:l,model:i??Lg});await Zg({object_type:"guessScenarioDataFromDescription",object_id:"new",propsJson:{description:e,editingMockName:t,editingMockData:r,existingScenarios:s,scenariosDataStructure:a,model:i},...c.stats});const{completion:m}=c;return m?hc(m):(console.log("CodeYam: guessing scenario data failed: No response from AI"),null)}const D0=`
278
- You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
279
-
280
- Your goal is to add one scenario to the list of existing scenarios by generating an english name, proper description, and a JSON data structure that describes the data that would be used in a scenario for the code.
281
-
282
- The data for the scenario will be merged with the "Default Scenario" data, so you don't need to replicate any data in the default scenario but must overwrite any data that should be different.
283
-
284
- You must respond with valid JSON following this format of this TS type definition:
285
- \`\`\`
286
- export type ScenarioData = {
287
- name: string;
288
- description: string;
289
- data: {
290
- mockData: { [key: string]: unknown };
291
- argumentsData: { [key: string]: unknown };
292
- };
293
- };
294
-
295
- \`\`\`
296
- `,O0=e=>`
297
- You will be provided with a list of data secnarios for a component and the overall structure for the data. Additionally you'll receive a description for a new scenario written by the user.
298
-
299
- Your goal is to edit one of the scenarios, named as the "Mock Scenario that should be edited".
300
- ${e?`
301
- We only want to edit a specific portion of the data, which is provided in the "The portion of the data that should be edited" section. You should only change the data that is provided in this section.`:""}
302
-
303
- Always return the complete data structure for the scenario, with both mockData and argumentsData, even if you only changed a small portion of the data.
304
-
305
- You must respond with valid JSON following this type definition:
306
- \`\`\`
307
- {
308
- data: {
309
- mockData: { [key: string]: unknown };
310
- argumentsData: { [key: string]: unknown };
311
- }
312
- }
313
- \`\`\`
314
- `;async function L0({request:e}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});try{const t=await e.json(),{description:r,existingScenarios:s,scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}=t;if(!r&&(!l||l.length===0))return Z({error:"Missing required field: description or flowSelections"},{status:400});const c=await R0({description:r||"",existingScenarios:s??[],scenariosDataStructure:a,editingMockName:o,editingMockData:i,flowSelections:l}),m=(c==null?void 0:c.data)||c;return Z({success:!0,data:m})}catch(t){return console.error("[Generate Scenario Data API] Error:",t),Z({error:"Failed to generate scenario data",details:t instanceof Error?t.message:String(t)},{status:500})}}const F0=Object.freeze(Object.defineProperty({__proto__:null,action:L0},Symbol.toStringTag,{value:"Module"}));function z0(e,t,r=new Date){const s={"1d":1,"3d":3,"7d":7,"30d":30}[t],a=new Date(r);a.setDate(a.getDate()-s);const o=a.toISOString().split("T")[0],i=e.filter(p=>p.date>=o),l=new Set(i.map(p=>p.commitSha).filter(Boolean)),c=new Map;for(const p of i)if(p.scenarioScreenshots)for(const h of p.scenarioScreenshots){c.has(h.name)||c.set(h.name,[]);const f=c.get(h.name);f.some(g=>g.path===h.path)||f.push({path:h.path,time:p.time})}for(const p of c.values())p.sort((h,f)=>h.time.localeCompare(f.time));const m=[],u=new Map;for(const[p,h]of c){const f=p.indexOf(" - ");if(f!==-1){const g=p.slice(0,f);u.has(g)||u.set(g,[]),u.get(g).push({name:p,screenshots:h})}else m.push({name:p,screenshots:h})}return{commitCount:l.size,entryCount:i.length,appScenarios:m,componentGroups:u,totalScenarios:c.size}}function B0(e){const t=new Map;for(const r of[...e].reverse()){const s=t.get(r.date)||[];s.push(r),t.set(r.date,s)}return t}function Y0(e){const t=new Map;for(const r of e){let s;if("componentName"in r&&r.componentName)s=r.componentName;else if("componentName"in r&&r.componentName===null)s="App";else{const o=r.name.indexOf(" - ");s=o!==-1?r.name.slice(0,o):"App"}const a=t.get(s)||[];a.push(r),t.set(s,a)}return[...t.entries()].sort(([r],[s])=>r==="App"?-1:s==="App"?1:r.localeCompare(s))}function U0(e,t){const r=e.replace(/[^a-zA-Z0-9_\-]/g,"_");return`${t.toISOString().replace(/:/g,"-").replace(/\.\d+Z$/,"")}_${r}.png`}function W0(e){const{title:t,timeStr:r,type:s,description:a,allScenarioNames:o,screenshot:i,scenarioScreenshots:l,commitSha:c,commitMessage:m,featureName:u,userPrompt:p}=e,h=["","---","",`### ${t}`,`**Time:** ${r}`,`**Type:** ${s}`];if(u&&h.push(`**Feature:** ${u}`),p&&h.push(`**Prompt:** ${p}`),o.length>0&&h.push(`**Scenarios:** ${o.join(", ")}`),h.push(""),h.push(a),i&&(h.push(""),h.push(`![${t}](${i})`)),l.length>0){h.push(""),h.push("**Scenario Screenshots:**");for(const f of l)h.push(""),h.push(`![${f.name}](${f.path})`)}return c&&m&&(h.push(""),h.push(`**Commit:** \`${c}\` — ${m}`)),h.push(""),h.join(`
315
- `)}function J0(e,t){return e.findIndex(r=>r.time===t)}function H0(e){return!!e.commitSha}function V0(e,t){return t.commitSha!==void 0&&(e.commitSha=t.commitSha),t.commitMessage!==void 0&&(e.commitMessage=t.commitMessage),t.description!==void 0&&(e.description=t.description),t.scenarios!==void 0&&(e.scenarios=t.scenarios),t.scenarioScreenshots!==void 0&&(e.scenarioScreenshots=t.scenarioScreenshots),e}function G0(e,t,r,s){const a=`
316
- **Commit:** \`${r}\` — ${s||"no message"}
317
- `,o=`### ${t}`,i=e.lastIndexOf(o);if(i===-1)return null;const l=e.indexOf(`
318
- ---
319
- `,i+1),c=l!==-1?l:e.length;return e.slice(0,c)+a+e.slice(c)}async function q0(e){console.log(`[editorScenarioLookup] Looking up screenshots for ${e.length} scenarios: ${e.join(", ")}`);try{const t=await De();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up scenarios"),[];const{project:r}=await Oe(t),a=await je().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","url"]).where("project_id","=",r.id).where("name","in",e).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] DB query returned ${a.length} matching scenarios:`,a.map(c=>({name:c.name,screenshot_path:c.screenshot_path,id:c.id})));const o=a.filter(c=>!c.screenshot_path);o.length>0&&console.warn(`[editorScenarioLookup] ${o.length} scenarios have no screenshot_path:`,o.map(c=>c.name));const i=a.filter(c=>c.screenshot_path),l=ft(i,c=>c.name).map(c=>({name:c.name,screenshotPath:c.screenshot_path,scenarioId:c.id,componentName:c.component_name||null,url:c.url||null}));return console.log(`[editorScenarioLookup] Found ${l.length} scenarios with screenshots`),l}catch(t){return console.error("[editorScenarioLookup] Failed to look up scenario screenshots:",t),[]}}async function K0(e){console.log(`[editorScenarioLookup] Looking up screenshots by entity names: ${e.join(", ")}`);try{const t=await De();if(!t)return[];const{project:r}=await Oe(t),a=await je().selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","url"]).where("project_id","=",r.id).orderBy("created_at","asc").execute(),o=new Set(e),l=a.filter(m=>{const u=ro({componentName:m.component_name,url:m.url});return o.has(u)}).filter(m=>m.screenshot_path),c=ft(l,m=>m.name).map(m=>({name:m.name,screenshotPath:m.screenshot_path,scenarioId:m.id,componentName:m.component_name||null,url:m.url||null}));return console.log(`[editorScenarioLookup] Found ${c.length} scenarios for ${e.length} entities`),c}catch(t){return console.error("[editorScenarioLookup] Failed to look up entity screenshots:",t),[]}}async function fc(e){console.log("[editorScenarioLookup] Looking up session scenario screenshots",e?`(after ${e})`:"(all session)");try{const t=await De();if(!t)return console.warn("[editorScenarioLookup] No project slug found — cannot look up session scenarios"),[];const{project:r}=await Oe(t),s=je(),a=ye()||process.cwd();let o=null;const i=B.join(a,".codeyam","editor-step.json");try{const h=q.readFileSync(i,"utf8");o=JSON.parse(h).featureStartedAt||null}catch{return console.warn("[editorScenarioLookup] No editor-step.json found — cannot determine session start"),[]}if(!o)return console.warn("[editorScenarioLookup] No featureStartedAt found in editor-step.json"),[];const l=e&&e>o?e:o,c=Ga(l),m=await s.selectFrom("editor_scenarios").select(["name","screenshot_path","id","component_name","url"]).where("project_id","=",r.id).where("created_at",">=",c).orderBy("created_at","asc").execute();console.log(`[editorScenarioLookup] Query returned ${m.length} scenarios since ${l}`);const u=m.filter(h=>h.screenshot_path),p=ft(u,h=>h.name).map(h=>({name:h.name,screenshotPath:h.screenshot_path,scenarioId:h.id,componentName:h.component_name||null,url:h.url||null}));return console.log(`[editorScenarioLookup] Found ${p.length} session scenarios with screenshots`),p}catch(t){return console.error("[editorScenarioLookup] Failed to look up session scenario screenshots:",t),[]}}async function wa(e,t,r){const s=B.join(t,".codeyam","journal","screenshots");await Ne.mkdir(s,{recursive:!0});const a=[];for(const o of e){const i=B.join(t,".codeyam","editor-scenarios",o.screenshotPath),l=U0(o.name,r),c=B.join(s,l);console.log(`[editorScenarioLookup] Copying scenario screenshot: "${o.name}" from ${i} → ${c}`);try{await Ne.access(i),await Ne.copyFile(i,c),a.push({name:o.name,path:`screenshots/${l}`,componentName:o.componentName,url:o.url}),console.log(`[editorScenarioLookup] Successfully copied screenshot for "${o.name}"`)}catch(m){console.warn(`[editorScenarioLookup] Scenario screenshot not found: ${i}`,m instanceof Error?m.message:m)}}return console.log(`[editorScenarioLookup] Scenario screenshot summary: ${a.length} scenarios have screenshots embedded`),a}async function Q0({request:e}){if(e.method!=="PATCH")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{time:r,commitSha:s,commitMessage:a,description:o,includeSessionScenarios:i}=t;if(!r)return new Response(JSON.stringify({error:"time is required to identify the entry"}),{status:400,headers:{"Content-Type":"application/json"}});const l=process.env.CODEYAM_ROOT_PATH||process.cwd(),c=B.join(l,".codeyam","journal"),m=B.join(c,"index.json");console.log(`[editor-journal-update] Updating entry with time="${r}"`);let u={entries:[]};try{const y=await Ne.readFile(m,"utf8");u=JSON.parse(y)}catch{return new Response(JSON.stringify({error:"No journal index found"}),{status:404,headers:{"Content-Type":"application/json"}})}const p=J0(u.entries,r);if(p===-1)return new Response(JSON.stringify({error:`No journal entry found with time "${r}"`}),{status:404,headers:{"Content-Type":"application/json"}});const h=u.entries[p];if(H0(h))return console.log(`[editor-journal-update] Rejected: entry "${h.title}" already committed (${h.commitSha}). Create a new entry instead.`),new Response(JSON.stringify({error:`Journal entry already committed (${h.commitSha}). Create a new entry via POST /api/editor-journal-entry instead of updating.`}),{status:409,headers:{"Content-Type":"application/json"}});let f,g;if(i){const y=await fc();y.length>0&&(f=y.map(x=>x.name),g=await wa(y,l,new Date))}if(V0(h,{commitSha:s,commitMessage:a,description:o,scenarios:f,scenarioScreenshots:g}),u.entries[p]=h,await Ne.writeFile(m,JSON.stringify(u,null,2),"utf8"),console.log("[editor-journal-update] Updated index.json"),s)try{const y=h.date,x=B.join(c,`${y}.md`);let b="";try{b=await Ne.readFile(x,"utf8")}catch{}if(b){const w=G0(b,h.title,s,a||null);w&&(await Ne.writeFile(x,w,"utf8"),console.log(`[editor-journal-update] Appended commit line to ${x}`))}}catch(y){console.warn("[editor-journal-update] Failed to update markdown:",y)}return ot.notifyChange("journal"),console.log(`[editor-journal-update] Done: updated entry "${h.title}"`),new Response(JSON.stringify({success:!0,entry:h}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-update] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Z0=Object.freeze(Object.defineProperty({__proto__:null,action:Q0},Symbol.toStringTag,{value:"Module"}));async function X0({request:e}){var t;try{const r=process.env.CODEYAM_ROOT_PATH||process.cwd(),s=await nc(r);let a=0;const o={};for(const[c,m]of Object.entries(s))m.errors.length>0&&(o[c]=m,a+=m.errors.length);const i=jf(),l=((t=i==null?void 0:i.errors)==null?void 0:t.length)??0;return new Response(JSON.stringify({hasErrors:a>0||l>0,totalErrors:a+l,scenarios:o,livePreview:i?{loaded:i.loaded,hasContent:i.hasContent,errors:i.errors,url:i.url,lastUpdated:i.lastUpdated}:null}),{headers:{"Content-Type":"application/json"}})}catch(r){const s=r instanceof Error?r.message:String(r);return console.error("[editor-client-errors] Error:",r),new Response(JSON.stringify({error:s}),{status:500,headers:{"Content-Type":"application/json"}})}}const ey=Object.freeze(Object.defineProperty({__proto__:null,loader:X0},Symbol.toStringTag,{value:"Module"}));async function ty({request:e}){try{const r=(await ln()||[]).filter(i=>i.analyses&&i.analyses.length>0).map(i=>{var g;const l=i.analyses[0],c=l.scenarios||[],m=!((g=l.status)!=null&&g.finishedAt),u=i.entityType||"visual",h=u==="library"||u==="functionCall"?c.some(y=>{var x;return!!((x=y.metadata)!=null&&x.executionResult)}):c.some(y=>{var x,b,w,v;return((b=(x=y.metadata)==null?void 0:x.screenshotPaths)==null?void 0:b[0])&&!((w=y.metadata)!=null&&w.noScreenshotSaved)&&!((v=y.metadata)!=null&&v.sameAsDefault)}),f=c.length;return{name:i.name,entityType:u,filePath:i.filePath||"",hasScreenshot:h,isAnalyzing:m,scenarioCount:f}}),s=r.filter(i=>i.hasScreenshot),a=r.filter(i=>!i.hasScreenshot&&!i.isAnalyzing).map(i=>i.name),o=r.filter(i=>i.isAnalyzing).length;return new Response(JSON.stringify({entities:r,summary:{total:r.length,withScreenshots:s.length,missingScreenshots:a,analyzing:o}}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-entity-status] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const ny=Object.freeze(Object.defineProperty({__proto__:null,loader:ty},Symbol.toStringTag,{value:"Module"}));async function ry({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{title:r,type:s,description:a,scenarios:o,includeSessionScenarios:i,screenshot:l,commitSha:c,commitMessage:m}=t;if(console.log(`[editor-journal-entry] Creating journal entry: title="${r}", type="${s}", scenarios=${JSON.stringify(o||[])}, includeSessionScenarios=${!!i}, screenshot=${l||"none"}`),!r||!s||!a)return console.warn("[editor-journal-entry] Missing required fields:",{title:!!r,type:!!s,description:!!a}),new Response(JSON.stringify({error:"title, type, and description are required"}),{status:400,headers:{"Content-Type":"application/json"}});const u=process.env.CODEYAM_ROOT_PATH||process.cwd(),p=B.join(u,".codeyam","journal");await Ne.mkdir(p,{recursive:!0});const h=new Date,f=h.toISOString().split("T")[0],g=h.toISOString();let y=o||[];const x=B.join(p,"index.json");let b={entries:[]};try{const $=await Ne.readFile(x,"utf8");b=JSON.parse($)}catch{}let w;i&&b.entries.length>0&&(w=b.entries[b.entries.length-1].time);const v=i?await fc(w):o&&o.length>0?await q0(o):[];i&&v.length>0&&(y=v.map($=>$.name));const C=await wa(v,u,h);let A;try{const $=ye()||process.cwd(),L=await De();if(L){const{project:H}=await Oe(L),z=await je().selectFrom("editor_scenarios").select(["name","component_name","component_path","url"]).where("project_id","=",H.id).orderBy("created_at","asc").execute(),O=ft(z,Y=>`${Y.name}::${Y.url||"/"}`).map(Y=>({componentName:Y.component_name||null,componentPath:Y.component_path||null,url:Y.url??null})),_=await lr({projectRoot:$,scenarioInputs:O});Object.keys(_.entityChangeStatus).length>0&&(A=_.entityChangeStatus)}}catch{}if(A&&Object.keys(A).length>0){const $=new Set(v.map(H=>H.name)),L=Object.entries(A).filter(([,H])=>H.status==="impacted").map(([H])=>H);if(L.length>0){const H=[],F=new Set(v.map(z=>ro(z)));for(const z of L)F.has(z)||H.push(z);if(H.length>0)try{const z=await K0(H);if(z.length>0){const U=await wa(z.filter(O=>!$.has(O.name)),u,h);C.push(...U),y.push(...U.map(O=>O.name))}}catch{}}}let S=C,E=y;if(!i&&A&&Object.keys(A).length>0){S=ig(C,A);const $=new Set(S.map(L=>L.name));E=y.filter(L=>$.has(L))}const N=cc(u),k=dc(u);let j;try{const $=Mn();$.length>0&&(j=$.filter(L=>L.status!=="deleted").map(L=>({path:L.path,status:L.status})))}catch{}const T=B.join(p,`${f}.md`);let P="";try{P=await Ne.readFile(T,"utf8")}catch{P=`# Development Journal — ${f}
320
- `}const R=W0({title:r,timeStr:g,type:s,description:a,allScenarioNames:E,screenshot:l||null,scenarioScreenshots:S,commitSha:c||null,commitMessage:m||null,featureName:N,userPrompt:k});await Ne.writeFile(T,P+R,"utf8"),console.log(`[editor-journal-entry] Written daily markdown: ${T}`);const I={date:f,time:g,title:r,type:s,description:a,scenarios:E,screenshot:l||null,scenarioScreenshots:S,commitSha:c||null,commitMessage:m||null,entityChangeStatus:A,featureName:N,userPrompt:k,modifiedFiles:j};return b.entries.push(I),await Ne.writeFile(x,JSON.stringify(b,null,2),"utf8"),console.log(`[editor-journal-entry] Updated index.json (now ${b.entries.length} entries)`),ot.notifyChange("journal"),console.log(`[editor-journal-entry] Done: title="${r}", scenarioScreenshotsEmbedded=${S.length}`),new Response(JSON.stringify({success:!0,entry:I,scenarioScreenshotsFound:S.length}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal-entry] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const sy=Object.freeze(Object.defineProperty({__proto__:null,action:ry},Symbol.toStringTag,{value:"Module"}));function ay({request:e}){const t={"Content-Type":"application/json","Access-Control-Allow-Origin":"*"};try{const r=ye()||process.cwd();let o=new URL(e.url).searchParams.get("scenarioId");if(!o){const c=B.join(r,".codeyam","active-scenario.json");if(!q.existsSync(c))return new Response(JSON.stringify({}),{headers:t});o=JSON.parse(q.readFileSync(c,"utf-8")).scenarioId||null}if(!o)return new Response(JSON.stringify({}),{headers:t});const i=B.join(r,".codeyam","editor-scenarios",`${o}.json`);if(!q.existsSync(i))return new Response(JSON.stringify({}),{headers:t});const l=q.readFileSync(i,"utf-8");return new Response(l,{headers:t})}catch{return new Response(JSON.stringify({}),{headers:t})}}const oy=Object.freeze(Object.defineProperty({__proto__:null,loader:ay},Symbol.toStringTag,{value:"Module"}));async function iy(e,t){const r=ye();if(!r)return{entityCalls:[],analysisCalls:[]};const s=B.join(r,".codeyam","llm-calls");try{await Ne.access(s)}catch{return{entityCalls:[],analysisCalls:[]}}const a=[],o=[];try{const l=(await Ne.readdir(s)).filter(b=>b.endsWith(".json")),c=`${e}_`,m=t?`${t}_`:null,u=[],p=[];for(const b of l)b.startsWith(c)||m&&b.startsWith(m)?u.push(b):p.push(b);const h=u.map(async b=>{try{const w=B.join(s,b),v=await Ne.readFile(w,"utf-8");return JSON.parse(v)}catch{return null}}),f=p.map(async b=>{try{const w=B.join(s,b),v=await Ne.readFile(w,"utf-8"),C=JSON.parse(v);return C.object_id===e||t&&C.object_id===t?C:null}catch{return null}}),[g,y]=await Promise.all([Promise.all(h),Promise.all(f)]),x=[...g,...y].filter(b=>b!==null);for(const b of x)b.object_id===e?a.push(b):t&&b.object_id===t&&o.push(b);a.sort((b,w)=>w.created_at-b.created_at),o.sort((b,w)=>w.created_at-b.created_at)}catch(i){console.error("Error loading LLM calls:",i)}return{entityCalls:a,analysisCalls:o}}async function ly({params:e,request:t}){const{entitySha:r}=e;if(!r)return Z({error:"Entity SHA is required"},{status:400});const a=new URL(t.url).searchParams.get("analysisId")||void 0,o=await iy(r,a);return Z(o)}const cy=Object.freeze(Object.defineProperty({__proto__:null,loader:ly},Symbol.toStringTag,{value:"Module"}));function dy(){try{const e=ye()||process.cwd(),t=X.join(e,".codeyam","config.json");if(!ge.existsSync(t))return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null});const r=JSON.parse(ge.readFileSync(t,"utf8"));return Response.json({projectTitle:r.projectTitle||null,projectDescription:r.projectDescription||null,defaultScreenSize:r.defaultScreenSize||null,screenSizes:r.screenSizes||null})}catch{return Response.json({projectTitle:null,projectDescription:null,defaultScreenSize:null,screenSizes:null})}}async function uy({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=ye()||process.cwd(),r=X.join(t,".codeyam","config.json");if(!ge.existsSync(r))return new Response(JSON.stringify({error:"No config.json found"}),{status:404,headers:{"Content-Type":"application/json"}});const s=await e.json(),a=JSON.parse(ge.readFileSync(r,"utf8"));return s.projectTitle!==void 0&&(a.projectTitle=s.projectTitle),s.projectDescription!==void 0&&(a.projectDescription=s.projectDescription),s.defaultScreenSize!==void 0&&(a.defaultScreenSize=s.defaultScreenSize),s.screenSizes!==void 0&&(a.screenSizes=s.screenSizes),ge.writeFileSync(r,JSON.stringify(a,null,2)),s.defaultScreenSize&&!s.skipBroadcast&&rc(s.defaultScreenSize),ot.notifyChange("unknown"),new Response(JSON.stringify({success:!0,projectTitle:a.projectTitle||null,projectDescription:a.projectDescription||null,defaultScreenSize:a.defaultScreenSize||null,screenSizes:a.screenSizes||null}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const my=Object.freeze(Object.defineProperty({__proto__:null,action:uy,loader:dy},Symbol.toStringTag,{value:"Module"}));function py(e){try{const t=B.join(e,"package.json"),r=JSON.parse(q.readFileSync(t,"utf8")),s={...r.dependencies,...r.devDependencies};return s.vitest?"vitest":s.jest?"jest":null}catch{return null}}function hy(e,t){var i;const s=JSON.parse(t).testResults||[],a=[];for(const l of s)for(const c of l.assertionResults||[]){const m=c.ancestorTitles||[],u=c.title||c.fullName||"unknown",p=m.length>0?`${m.join(" > ")} > ${u}`:u;a.push({title:u,fullName:p,status:c.status==="passed"?"passed":c.status==="failed"?"failed":"skipped",duration:c.duration,failureMessages:(i=c.failureMessages)!=null&&i.length?c.failureMessages:void 0})}const o=a.some(l=>l.status==="failed");return{testFilePath:e,status:o?"failed":"passed",testCases:a}}async function gc(e,t){const r=py(e);if(!r)return{testFilePath:t,status:"error",testCases:[],errorMessage:"No test runner found (install vitest or jest)"};const s=B.isAbsolute(t)?t:B.join(e,t);if(!q.existsSync(s))return{testFilePath:t,status:"error",testCases:[],errorMessage:"Test file not found"};const a=B.join(Pa.tmpdir(),`codeyam-test-result-${Date.now()}.json`);return new Promise(o=>{var p;let i,l;r==="vitest"?(l="node",i=["./node_modules/.bin/vitest","run","--reporter=json","--outputFile",a,t]):(l="./node_modules/.bin/jest",i=["--json","--outputFile",a,"--testPathPatterns",t]);const c=St(l,i,{cwd:e,stdio:"pipe",env:{...process.env,NODE_ENV:"test"}});let m="";(p=c.stderr)==null||p.on("data",h=>{m+=h.toString()});const u=setTimeout(()=>{c.kill("SIGTERM"),o({testFilePath:t,status:"error",testCases:[],errorMessage:"Test timed out after 30 seconds"})},3e4);c.on("close",()=>{clearTimeout(u);try{const h=q.readFileSync(a,"utf8");q.unlinkSync(a),o(hy(t,h))}catch{o({testFilePath:t,status:"error",testCases:[],errorMessage:m.trim().slice(0,500)||"Test runner failed to produce output"})}}),c.on("error",h=>{clearTimeout(u),o({testFilePath:t,status:"error",testCases:[],errorMessage:`Failed to spawn test runner: ${h.message}`})})})}async function fy({request:e}){const r=new URL(e.url).searchParams.get("testFile");if(!r)return new Response(JSON.stringify({status:"error",errorMessage:"Missing testFile parameter",testCases:[],testFilePath:""}),{headers:{"Content-Type":"application/json"}});const s=ye()||process.cwd();try{const a=await gc(s,r);return new Response(JSON.stringify(a),{headers:{"Content-Type":"application/json"}})}catch(a){const o=a instanceof Error?a.message:"Unknown error";return new Response(JSON.stringify({testFilePath:r,status:"error",testCases:[],errorMessage:o}),{status:500,headers:{"Content-Type":"application/json"}})}}const gy=Object.freeze(Object.defineProperty({__proto__:null,loader:fy},Symbol.toStringTag,{value:"Module"}));function ri(e,t){var r,s;try{return((s=(r=Pe(`git rev-parse ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}))==null?void 0:r.toString())==null?void 0:s.trim())??null}catch(a){return console.error(`Failed to get commit SHA for ${e}:`,a),""}}function yy(e,t,r,s){const a=ar.createHash("sha256");return a.update(`${e}:${t}:${r}:${s}`),a.digest("hex").substring(0,16)}function yc(){const e=ye();if(!e)throw new Error("No project root found");const t=X.join(e,".codeyam","cache","branch-entity-diff");return ge.existsSync(t)||ge.mkdirSync(t,{recursive:!0}),t}function xy(e){try{const t=yc(),r=X.join(t,`${e}.json`);if(!ge.existsSync(r))return null;const s=ge.readFileSync(r,"utf8");return JSON.parse(s)}catch(t){return console.error("Failed to read cache:",t),null}}function by(e,t){try{const r=yc(),s=X.join(r,`${e}.json`);ge.writeFileSync(s,JSON.stringify(t,null,2))}catch(r){console.error("Failed to write cache:",r)}}function wy(e,t,r){const s=Hr(t,e),a=Hr(r,e),o=new Map(s.map(u=>[u.name,u])),i=new Map(a.map(u=>[u.name,u])),l=[],c=[],m=[];for(const[u,p]of i){const h=o.get(u);h?h.sha!==p.sha&&c.push({name:u,baseSha:h.sha,compareSha:p.sha,entityType:p.entityType}):l.push(p)}for(const[u,p]of o)i.has(u)||m.push(p);return{filePath:e,newEntities:l,modifiedEntities:c,deletedEntities:m}}function vy(e,t){const r=ye();if(!r)throw new Error("No project root found");const s=ri(e,r),a=ri(t,r);if(!s||!a)throw new Error(`Failed to get commit SHAs for branches: ${e}, ${t}`);const o=yy(e,t,s,a),i=xy(o);if(i)return console.log(`Using cached branch entity diff: ${o}`),i;const l=sc(e,t),c=[];for(const u of l)if(u.path.match(/\.(tsx?|jsx?)$/))if(u.status==="deleted"){const p=Dr(u.path,e,t),h=Hr(p.oldContent,u.path);c.push({filePath:u.path,newEntities:[],modifiedEntities:[],deletedEntities:h})}else if(u.status==="added"){const p=Dr(u.path,e,t),h=Hr(p.newContent,u.path);c.push({filePath:u.path,newEntities:h,modifiedEntities:[],deletedEntities:[]})}else{const p=Dr(u.path,e,t),h=wy(u.path,p.oldContent,p.newContent);(h.newEntities.length>0||h.modifiedEntities.length>0||h.deletedEntities.length>0)&&c.push(h)}const m={baseBranch:e,compareBranch:t,baseCommitSha:s,compareCommitSha:a,fileComparisons:c,cacheKey:o,computedAt:new Date().toISOString()};return by(o,m),m}function Ny({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("base"),s=t.searchParams.get("compare");if(!r||!s)return Z({error:"Missing required parameters: base and compare"},{status:400});const a=vy(r,s);return Z(a)}catch(t){return console.error("Failed to compute branch entity diff:",t),Z({error:"Failed to compute branch entity diff",details:t instanceof Error?t.message:String(t)},{status:500})}}const Cy=Object.freeze(Object.defineProperty({__proto__:null,loader:Ny},Symbol.toStringTag,{value:"Module"}));async function Sy({request:e}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});try{const t=await e.json(),{serverUrl:r,scenarioId:s,projectId:a,viewportWidth:o=1440}=t;if(!r||!s||!a)return Z({error:"Missing required fields: serverUrl, scenarioId, and projectId"},{status:400});console.log(`[Capture] URL to capture: ${r}`),console.log(`[Capture] Scenario ID from request: ${s}`);const i=ye();if(!i)return Z({error:"Project root not found"},{status:500});const l=B.join(i,"background","src","lib","virtualized","playwright","captureFromUrl.ts"),c=JSON.stringify({url:r,scenarioId:s,projectId:a,projectRoot:i,viewportWidth:o}),m=await new Promise(h=>{const f=B.join(i,".codeyam","db.sqlite3"),g=St("npx",["tsx",l,c],{cwd:i,env:{...process.env,SQLITE_PATH:f}});let y="",x="";g.stdout.on("data",b=>{const w=b.toString();y+=w;const v=w.trim().split(`
321
- `);for(const C of v)C.includes("[Capture]")&&console.log(C)}),g.stderr.on("data",b=>{const w=b.toString();x+=w,console.error("[Capture:Error]",w.trim())}),g.on("close",b=>{h(b===0?{success:!0,output:y}:{success:!1,output:y,error:x||`Process exited with code ${b}`})}),g.on("error",b=>{console.error("[Capture] Failed to spawn child process:",b),h({success:!1,output:"",error:b.message})})});if(!m.success)return Z({error:"Failed to capture screenshot",details:m.error},{status:500});const u=m.output.match(/\[Capture\] RESULT:(.+)/);if(!u)return Z({error:"Failed to parse capture result"},{status:500});const p=JSON.parse(u[1]);return Z(p)}catch(t){return console.error("[Capture] Error:",t),Z({error:"Failed to capture screenshot",details:t instanceof Error?t.message:String(t)},{status:500})}}const ky=Object.freeze(Object.defineProperty({__proto__:null,action:Sy},Symbol.toStringTag,{value:"Module"}));function Ey(e){const t=e||process.cwd();try{return Pe("git rev-parse HEAD",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}).trim()}catch(r){throw new Error(`Failed to get HEAD SHA: ${r}`)}}function _y(e){const t=e||process.cwd();try{return Pe("git rev-parse --git-dir",{cwd:t,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),!0}catch{return!1}}function Ay(e){if(_y(e))return!1;Pe("git init",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]});try{Pe('git config user.email "codeyam@local"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),Pe('git config user.name "CodeYam"',{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}catch{}return!0}function Py(e){Pe("git add -A",{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]})}function jy(e,t){return Pe(`git commit -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:["pipe","pipe","ignore"]}),Ey(e)}function Ty(e){return/^[0-9a-f]{7,40}$/i.test(e)}function My(e,t){try{return Pe(`git cat-file -t ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"}),!0}catch{return!1}}function $y(e,t){try{return{stashed:!Pe(`git stash push -m ${JSON.stringify(t)}`,{cwd:e,encoding:"utf8",stdio:"pipe"}).includes("No local changes")}}catch{return{stashed:!1}}}function Iy(e,t){Pe(`git checkout ${t}`,{cwd:e,encoding:"utf8",stdio:"pipe"})}async function Ry({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{commitSha:r}=t;if(!r||typeof r!="string")return new Response(JSON.stringify({success:!1,error:"commitSha is required"}),{status:400,headers:{"Content-Type":"application/json"}});if(!Ty(r))return new Response(JSON.stringify({success:!1,error:"Invalid commit SHA format"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();if(console.log(`[editor-load-commit] Loading commit ${r} in ${s}`),!My(s,r))return new Response(JSON.stringify({success:!1,error:`Commit ${r} not found`}),{status:400,headers:{"Content-Type":"application/json"}});const{stashed:a}=$y(s,"codeyam: auto-stash before time travel");a&&console.log("[editor-load-commit] Stashed uncommitted changes");try{Iy(s,r),console.log(`[editor-load-commit] Checked out ${r}`)}catch(o){const i=o instanceof Error?o.message:String(o);return console.error("[editor-load-commit] Checkout failed:",i),new Response(JSON.stringify({success:!1,error:`Checkout failed: ${i}`}),{status:500,headers:{"Content-Type":"application/json"}})}try{const i=await(await fetch(`http://localhost:${process.env.CODEYAM_PORT||"3111"}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})})).json();console.log("[editor-load-commit] Dev server restart:",i)}catch(o){console.warn("[editor-load-commit] Dev server restart warning:",o)}return new Response(JSON.stringify({success:!0,stashed:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-load-commit] Error:",t),new Response(JSON.stringify({success:!1,error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Dy=Object.freeze(Object.defineProperty({__proto__:null,action:Ry},Symbol.toStringTag,{value:"Module"}));async function Oy(e,t,r){var f;console.log(`[recapture] Starting recapture for analysis ${e} with width ${t}`),await Fe();const s=await _t({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);const a=je(),o=s.entitySha,i=await a.selectFrom("entities").select(["metadata"]).where("sha","=",o).executeTakeFirst();let l={};if(i!=null&&i.metadata&&(typeof i.metadata=="string"?l=JSON.parse(i.metadata):l=i.metadata),l.defaultWidth=t,await a.updateTable("entities").set({metadata:JSON.stringify(l)}).where("sha","=",o).execute(),console.log(`[recapture] Updated defaultWidth for entity ${o} to ${t}`),!s.commit)throw new Error(`Commit not found for analysis ${e}`);console.log(`[recapture] Loaded analysis with ${((f=s.scenarios)==null?void 0:f.length)||0} scenarios`),await An(e,g=>{if(g){if(g.readyToBeCaptured=!0,g.scenarios)for(const y of g.scenarios)delete y.finishedAt,delete y.startedAt,delete y.screenshotStartedAt,delete y.screenshotFinishedAt,delete y.interactiveStartedAt,delete y.interactiveFinishedAt,delete y.error,delete y.errorStack;delete g.finishedAt}}),console.log(`[recapture] Marked analysis ${e} as ready to be captured`);const c=ye();if(!c)throw new Error("Project root not found");const m=B.join(c,".codeyam","config.json"),u=JSON.parse(q.readFileSync(m,"utf8")),{projectSlug:p}=u;if(!p)throw new Error("Project slug not found in config");const{jobId:h}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:p,analysisId:e,defaultWidth:t});return console.log(`[recapture] Recapture job queued with ID: ${h}`),{jobId:h}}async function Ly(e,t,r){var u;console.log(`[recapture] Starting scenario recapture for analysis ${e}, scenario ${t}`),await Fe();const s=await _t({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw console.log(`[recapture] Analysis ${e} not found`),new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=(u=s.scenarios)==null?void 0:u.find(p=>p.id===t);if(!a)throw console.log(`[recapture] Scenario ${t} not found in analysis ${e}`),new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[recapture] Found scenario: ${a.name}`),await An(e,p=>{if(p&&(p.readyToBeCaptured=!0,delete p.finishedAt,p.scenarios)){const h=p.scenarios.find(f=>f.name===a.name);h&&(delete h.finishedAt,delete h.startedAt,delete h.error,delete h.errorStack,delete h.screenshotStartedAt,delete h.screenshotFinishedAt,delete h.interactiveStartedAt,delete h.interactiveFinishedAt)}}),console.log(`[recapture] Cleared errors and marked scenario ${a.name} for recapture`);const o=ye();if(!o)throw new Error("Project root not found");const i=B.join(o,".codeyam","config.json"),l=JSON.parse(q.readFileSync(i,"utf8")),{projectSlug:c}=l;if(!c)throw new Error("Project slug not found in config");const{jobId:m}=r.enqueue({type:"recapture",commitSha:s.commit.sha,projectSlug:c,analysisId:e,scenarioId:t});return console.log(`[recapture] Scenario recapture job queued with ID: ${m}`),{jobId:m}}async function Fy({request:e,context:t}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Pt()),!r)return Z({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a||!o)return Z({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Starting scenario recapture for analysis ${a}, scenario ${o}`);const i=await Ly(a,o,r);return console.log("[API] Scenario recapture queued",i),Z({success:!0,message:"Scenario recapture queued",...i})}catch(s){return console.log("[API] Error during scenario recapture:",s),Z({error:"Failed to recapture scenario",details:s instanceof Error?s.message:String(s)},{status:500})}}const zy=Object.freeze(Object.defineProperty({__proto__:null,action:Fy},Symbol.toStringTag,{value:"Module"}));async function va(e){try{return await Se.stat(e),!0}catch{return!1}}async function xc(){try{const e=ye();if(!e)return null;const t=X.join(e,".codeyam","config.json");return JSON.parse(await Se.readFile(t,"utf-8")).projectSlug||null}catch{return null}}function By(){return`/private/tmp/claude-501/-${(ye()||process.cwd()).replace(/^\//,"").replace(/\//g,"-")}/tasks`}const Or="/tmp/claude-rule-markers",Yy=/<system-reminder>[\s\S]*?<\/system-reminder>/g,si=2e3;function Uy(e,t){if(e==="Read"||e==="Write"||e==="Edit")return String(t.file_path||"");if(e==="Glob")return String(t.pattern||"");if(e==="Grep"){const r=String(t.pattern||""),s=String(t.path||"");return s?`"${r}" in ${s}`:`"${r}"`}if(e==="Bash"){const r=String(t.command||"");return r.length>100?r.slice(0,100)+"...":r}if(e==="Task")return String(t.description||String(t.prompt||"").slice(0,80));for(const r of Object.values(t))if(typeof r=="string"&&r)return r.slice(0,80);return""}const Wy=["no,","no ","that's not","thats not","that is not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","dont do","shouldn't","should not","try again","let me clarify","to clarify","that broke","that failed","error","bug"];function Jy(e){const t=[],r=new Set;for(const s of e)if(!(s.type!=="tool_call"||!s.name||!s.input)){if(s.name==="Write"||s.name==="Edit"){const a=String(s.input.file_path||"");if(a.includes(".claude/rules/")){const o=a.replace(/^.*?(\.claude\/rules\/)/,"$1"),i=`${s.name}:${o}`;r.has(i)||(r.add(i),s.name==="Write"?t.push({action:"created",filePath:o,content:String(s.input.content||"")}):t.push({action:"modified",filePath:o,oldString:String(s.input.old_string||""),newString:String(s.input.new_string||"")}))}}else if(s.name==="Bash"){const a=String(s.input.command||"");if(a.includes("codeyam memory touch")){const o=`touch:${a}`;r.has(o)||(r.add(o),t.push({action:"touched",filePath:a}))}}}return t}function Hy(e){if(!e)return;const t="### Session transcript",r=e.indexOf(t);if(r===-1)return;let s=e.slice(r+t.length).trim();const a=s.indexOf(`
322
- ###`);return a!==-1&&(s=s.slice(0,a).trim()),s||void 0}function Vy(e){for(const t of e){if(t.type!=="user_prompt")continue;const r=(t.text||"").toLowerCase();for(const s of Wy)if(r.includes(s))return!0}return!1}function Gy(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type==="assistant"){const a=(s.message||{}).model;if(typeof a=="string"&&a)return a}}catch{continue}}}function qy(e){for(const t of e){const r=t.trim();if(r)try{const s=JSON.parse(r);if(s.type!=="result")continue;const a={subtype:String(s.subtype||"unknown"),is_error:!!s.is_error};if(typeof s.duration_ms=="number"&&(a.duration_ms=s.duration_ms),typeof s.duration_api_ms=="number"&&(a.duration_api_ms=s.duration_api_ms),typeof s.num_turns=="number"&&(a.num_turns=s.num_turns),typeof s.total_cost_usd=="number"&&(a.total_cost_usd=s.total_cost_usd),s.usage&&typeof s.usage=="object"){a.usage={};for(const o of["input_tokens","output_tokens","cache_read_input_tokens","cache_creation_input_tokens"])typeof s.usage[o]=="number"&&(a.usage[o]=s.usage[o])}return Array.isArray(s.errors)&&s.errors.length>0&&(a.errors=s.errors.map(String)),a}catch{continue}}}function Ky(e){const t=[],r={};for(const s of e){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}const i=o.type;if(i==="progress"||i==="system"||i==="result")continue;const c=(o.message||{}).content,m=o.timestamp||"";if(i==="user"){if(typeof c=="string")t.push({type:"user_prompt",text:c,timestamp:m,agent_id:String(o.agentId||o.session_id||"unknown"),slug:String(o.slug||"")});else if(Array.isArray(c)){for(const u of c)if(typeof u=="object"&&u!==null&&u.type==="tool_result"){const p=u,h=String(p.tool_use_id||"");let f=p.content;const g=!!p.is_error;typeof f=="string"&&(f=f.replace(Yy,"").trim()),t.push({type:"tool_result",tool_use_id:h,tool_name:r[h]||"unknown",content:typeof f=="string"?f:JSON.stringify(f),is_error:g,timestamp:m})}}}else if(i==="assistant"&&Array.isArray(c))for(const u of c){if(typeof u!="object"||u===null)continue;const p=u;if(p.type==="text"){const h=String(p.text||"").trim();h&&t.push({type:"assistant_text",text:h,timestamp:m})}else if(p.type==="tool_use"){const h=String(p.id||""),f=String(p.name||"unknown"),g=p.input||{};r[h]=f,t.push({type:"tool_call",tool_use_id:h,name:f,input:g,timestamp:m})}}}return t}function Qy(e,t){return e.type==="user_prompt"||e.type==="assistant_text"?(e.text||"").toLowerCase().includes(t):e.type==="tool_call"?(e.name||"").toLowerCase().includes(t)?!0:JSON.stringify(e.input||{}).toLowerCase().includes(t):e.type==="tool_result"?(e.content||"").toLowerCase().includes(t):!1}const xn=20;async function ai(e){const r=(await Se.readFile(e.filePath,"utf-8")).split(`
323
- `),s=Ky(r);if(s.length===0)return null;const a=s.find(v=>v.type==="user_prompt"),o=e.stem,i=Gy(r);let l=(a==null?void 0:a.slug)||"",c=(a==null?void 0:a.timestamp)||"";c||(c=new Date(e.mtime).toISOString());let m;if(e.filePath.endsWith(".log")){e.stem.endsWith("-stale")?l=l||"rule-reflection/stale":e.stem.endsWith("-conversation")?l=l||"rule-reflection/conversation":e.stem.endsWith("-interruption")?l=l||"rule-reflection/interruption":l=l||"rule-reflection";const v=e.filePath.replace(/\.log$/,".context");if(await va(v))try{m=await Se.readFile(v,"utf-8")}catch{}}const u=s.filter(v=>v.type==="tool_call").length,p=s.filter(v=>v.type==="assistant_text").length,h=s.filter(v=>v.type==="tool_result"&&v.is_error&&v.content!=="Sibling tool call errored"),f=h.length,g=h.map(v=>{const C=v.content||"Unknown error";return C.length>150?C.slice(0,150)+"...":C});for(const v of s)v.type==="tool_call"&&v.name&&v.input&&(v.summary=Uy(v.name,v.input));for(const v of s)v.type==="tool_result"&&v.content&&v.content.length>si&&(v.truncated=!0,v.fullLength=v.content.length,v.content=v.content.slice(0,si));const y=Jy(s),x=Vy(s),b=Hy(m),w=qy(r);return{id:o,slug:l,timestamp:c,model:i,sourceFile:e.filePath,stats:{toolCalls:u,textBlocks:p,errors:f,errorMessages:g},entries:s,context:m,conversationSnippet:b,ruleChanges:y,hasConfusion:x,sessionResult:w}}async function Zy(){const e=By(),t=Or,r=[];if(await va(e)){const i=await Se.readdir(e);for(const l of i)if(l.endsWith(".output")){const c=X.join(e,l),m=await Se.stat(c);r.push({filePath:c,stem:l.replace(".output",""),mtime:m.mtimeMs})}}const s=new Set,a=await xc(),o=[];a&&o.push(X.join(t,a)),o.push(t);for(const i of o){if(!await va(i))continue;const l=await Se.readdir(i);for(const c of l){if(!c.endsWith(".log")||s.has(c))continue;s.add(c);const m=X.join(i,c),u=await Se.stat(m);r.push({filePath:m,stem:c.replace(".log",""),mtime:u.mtimeMs})}}return r.sort((i,l)=>l.mtime-i.mtime),r}async function Xy({request:e}){var t;try{const r=new URL(e.url),s=((t=r.searchParams.get("search"))==null?void 0:t.toLowerCase())||"",a=Math.max(1,parseInt(r.searchParams.get("page")||"1",10)),o=await Zy();if(!s){const u=o.length,p=(a-1)*xn,h=o.slice(p,p+xn),f=[];for(const g of h){const y=await ai(g);y&&f.push(y)}return Response.json({agents:f,total:u,page:a,pageSize:xn})}const i=[];for(const u of o){const p=await ai(u);if(!p)continue;(p.id.toLowerCase().includes(s)||p.slug.toLowerCase().includes(s)||p.entries.some(f=>Qy(f,s)))&&i.push(p)}const l=i.length,c=(a-1)*xn,m=i.slice(c,c+xn);return Response.json({agents:m,total:l,page:a,pageSize:xn})}catch(r){return console.error("[api.agent-transcripts] Error:",r),Response.json({error:"Failed to load agent transcripts",details:r instanceof Error?r.message:String(r)},{status:500})}}const ex=Object.freeze(Object.defineProperty({__proto__:null,loader:Xy},Symbol.toStringTag,{value:"Module"})),bc="__codeyam_editor_dev_server__",oi=30;function io(){return globalThis[bc]??null}function wc(e){globalThis[bc]=e}function Pr(e,t){const r=[X.join(e,".next","dev","lock"),X.join(e,"node_modules",".vite","deps","_lock")];for(const s of r)try{ge.existsSync(s)&&(ge.unlinkSync(s),console.log(`[editor-dev-server] Removed stale lock file: ${s}`))}catch(a){console.warn(`[editor-dev-server] Failed to remove lock file ${s}:`,a)}if(t)try{const s=Pe(`lsof -ti:${t}`,{encoding:"utf8"}).trim();s&&(Pe(`lsof -ti:${t} | xargs kill`),console.log(`[editor-dev-server] Killed orphaned process(es) on port ${t}: ${s}`))}catch{}}function tx({request:e}){const t=io();return t?new Response(JSON.stringify({status:t.status,url:t.url,proxyUrl:Gl(),pid:t.pid,errorMessage:t.status==="error"?t.errorMessage:null}),{headers:{"Content-Type":"application/json"}}):new Response(JSON.stringify({status:"stopped",url:null,proxyUrl:null}),{headers:{"Content-Type":"application/json"}})}async function nx({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{action:r}=t;return r==="start"?Na():r==="stop"?ii():r==="restart"?(ii(),await new Promise(s=>setTimeout(s,1e3)),Na()):new Response(JSON.stringify({error:'Invalid action. Use "start", "stop", or "restart".'}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}function rx(){let t=X.dirname(new URL(import.meta.url).pathname);for(let s=0;s<5;s++){const a=X.dirname(t);if(X.basename(a)==="webserver"||X.basename(t)==="webserver"){t=X.basename(t)==="webserver"?t:a;break}t=a}const r=[X.join(t,"scripts","codeyam-preload.mjs"),X.join(t,"scripts","codeyam-preload.mjs")];for(const s of r)if(ge.existsSync(s))return s;return console.warn("[editor-dev-server] codeyam-preload.mjs not found, SSR fetch interception disabled"),null}function Na(e=!1){var S,E;const t=io();if(t&&t.status!=="stopped"&&t.status!=="error")return new Response(JSON.stringify({status:t.status,url:t.url,message:"Dev server is already running"}),{headers:{"Content-Type":"application/json"}});const r=ye()||process.cwd(),s=parseInt(process.env.CODEYAM_PORT||"3111",10),{proxyPort:a,devServerPort:o}=Fl(s),i=Nf(r,o);if("error"in i)return new Response(JSON.stringify({error:i.error}),{status:400,headers:{"Content-Type":"application/json"}});const{command:l,args:c,env:m}=i;Pr(r,o),Pr(r,3e3),Pr(r,3001),Pr(r,5173),console.log(`[editor-dev-server] Starting: ${l} ${c.join(" ")} in ${r}`);const u=rx(),p=u?`--import ${u}`:"",{NODE_OPTIONS:h,PORT:f,CODEYAM_PORT:g,...y}=process.env,x={};try{const N=X.join(r,".codeyam","config.json"),k=JSON.parse(ge.readFileSync(N,"utf-8"));for(const j of k.environmentVariables||[])j.key&&j.value!==void 0&&(x[j.key]=j.value)}catch{}const b=St(l,c,{cwd:r,stdio:["ignore","pipe","pipe"],env:{...y,...x,FORCE_COLOR:"1",BROWSER:"none",...p?{NODE_OPTIONS:p}:{},CODEYAM_PROXY_URL:`http://localhost:${a}`,...m},detached:!0});b.unref();const w=e?((t==null?void 0:t.retryCount)??0)+1:0,v={process:b,url:null,status:"starting",errorMessage:null,stderrBuffer:[],pid:b.pid||0,startedAt:Date.now(),retryCount:w};wc(v);const C=(N,k)=>{const j=N.toString(),T=j.split(`
324
- `).filter(P=>P.trim());if(T.length>0&&(v.stderrBuffer.push(...T),v.stderrBuffer.length>oi&&(v.stderrBuffer=v.stderrBuffer.slice(-oi))),v.status==="starting"){const P=Sf(j);P&&(v.url=P,v.status="running",console.log(`[editor-dev-server] URL detected: ${v.url}`),pa({port:a,targetUrl:v.url}).then(()=>Qo()))}};(S=b.stdout)==null||S.on("data",N=>C(N)),(E=b.stderr)==null||E.on("data",N=>C(N));const A=parseInt(m.PORT||"0",10);return A>0&&(async()=>{if(await new Promise(k=>setTimeout(k,1e4)),v.status!=="starting")return;console.log(`[editor-dev-server] Stdout detection timed out, polling port ${A}...`);const N=await Ef(A,{intervalMs:2e3,maxAttempts:15});N&&v.status==="starting"&&(v.url=N,v.status="running",console.log(`[editor-dev-server] URL detected via polling: ${v.url}`),pa({port:a,targetUrl:v.url}).then(()=>Qo()))})(),b.on("exit",N=>{console.log(`[editor-dev-server] Process exited with code ${N}`);const k=Date.now()-v.startedAt,j=v.status==="running",T=_f({exitCode:N??null,uptime:k,retryCount:v.retryCount,wasRunning:j});if(T.action==="retry")console.log(`[editor-dev-server] Quick failure (${k}ms), auto-retrying...`),v.status="stopped",Na(!0);else if(T.action==="error"){v.status="error";const P=v.stderrBuffer.length>0?v.stderrBuffer.join(`
325
- `):"",R=j?`Dev server exited with code ${N}`:`Dev server exited (code ${N}) before it started serving`;v.errorMessage=P?`${R}
326
-
327
- ${P}`:R,console.error(`[editor-dev-server] Server failed: ${v.errorMessage}`)}else v.status="stopped"}),b.on("error",N=>{console.error("[editor-dev-server] Process error:",N),v.status="error",v.errorMessage=N.message}),new Response(JSON.stringify({status:"starting",pid:b.pid,message:`Starting ${l} ${c.join(" ")}`}),{headers:{"Content-Type":"application/json"}})}function ii(){const e=io();if(!e||e.status==="stopped")return new Response(JSON.stringify({status:"stopped",message:"No server to stop"}),{headers:{"Content-Type":"application/json"}});Zl();try{e.process.pid&&process.kill(-e.process.pid,"SIGTERM")}catch{try{e.process.kill("SIGTERM")}catch{}}return e.status="stopped",wc(null),new Response(JSON.stringify({status:"stopped",message:"Dev server stopped"}),{headers:{"Content-Type":"application/json"}})}const sx=Object.freeze(Object.defineProperty({__proto__:null,action:nx,loader:tx},Symbol.toStringTag,{value:"Module"}));async function ax({params:e,request:t}){const{projectSlug:r}=e;if(!r)return new Response("Project slug is required",{status:400});if(t.method!=="DELETE")return new Response("Method not allowed",{status:405});const s=gs(r);try{return await Gn(s,"","utf-8"),new Response("Logs cleared successfully",{status:200,headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(a){console.error("[api.logs] Error clearing log file:",a);const o=a instanceof Error?a.message:String(a);return new Response(`Error clearing log file: ${o}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}async function ox({params:e}){const{projectSlug:t}=e;if(!t)return new Response("Project slug is required",{status:400});const r=gs(t);try{if(!Rt(r))return new Response("No logs available yet. Analysis may not have started.",{status:404,headers:{"Content-Type":"text/plain; charset=utf-8"}});const s=await aa(r,"utf-8");return!s||s.trim().length===0?new Response("Log file is empty. Waiting for analysis to start...",{headers:{"Content-Type":"text/plain; charset=utf-8"}}):new Response(s,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch(s){console.error("[api.logs] Error reading log file:",s);const a=s instanceof Error?s.message:String(s);return new Response(`Error reading log file: ${a}`,{status:500,headers:{"Content-Type":"text/plain; charset=utf-8"}})}}const ix=Object.freeze(Object.defineProperty({__proto__:null,action:ax,loader:ox},Symbol.toStringTag,{value:"Module"}));function lx({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return Response.json({error:"Missing path parameter"},{status:400});const s=ye()||process.cwd(),a=B.resolve(s,r);if(!a.startsWith(s+B.sep)&&a!==s)return Response.json({error:"Path outside project root"},{status:403});const o=ac(r,s);return Response.json(o)}const cx=Object.freeze(Object.defineProperty({__proto__:null,loader:lx},Symbol.toStringTag,{value:"Module"}));async function dx(){const e=await De();if(!e)return Response.json({error:"No project configured"},{status:400});const{project:t}=await Oe(e),r=je(),s=process.env.CODEYAM_PORT||"3111",a=ye()||process.cwd(),o=await r.selectFrom("editor_scenarios").select(["id","name","component_name","component_path","url","type","screenshot_path"]).where("project_id","=",t.id).orderBy("created_at","asc").execute(),i=ft(o,m=>`${m.name}::${m.url||"/"}`);let l={};try{const m=i.map(p=>({componentName:p.component_name||null,componentPath:p.component_path||null,url:p.url??null}));l=(await lr({projectRoot:a,scenarioInputs:m})).entityChangeStatus}catch{}const c=i.map(m=>{let u=null;m.component_name?u=m.component_name:u=Ke(m.url??null);const p=u?l[u]:void 0;return{id:m.id,name:m.name,componentName:m.component_name||null,type:m.type||null,changeStatus:(p==null?void 0:p.status)||null,screenshotPath:m.screenshot_path||null,link:`http://localhost:${s}/editor?scenario=${m.id}&ref=link`}});return Response.json({scenarios:c})}const ux=Object.freeze(Object.defineProperty({__proto__:null,loader:dx},Symbol.toStringTag,{value:"Module"}));async function mx(e,t){var o,i,l,c,m,u;console.log(`[executeLibraryFunction] Starting execution for analysis ${e}, scenario ${t}`),await Fe();const r=await _t({id:e,includeScenarios:!0,includeFile:!0});if(!r)throw new Error(`Analysis ${e} not found`);const s=(o=r.scenarios)==null?void 0:o.find(p=>p.id===t);if(!s)throw new Error(`Scenario ${t} not found in analysis ${e}`);console.log(`[executeLibraryFunction] Executing ${r.entityName} with scenario ${s.name}`);const a={returnValue:{status:"success",data:((c=(l=(i=s.metadata)==null?void 0:i.data)==null?void 0:l.argumentsData)==null?void 0:c[0])||{},timestamp:new Date().toISOString()},error:null,sideEffects:{consoleOutput:[{level:"log",args:[`Executing ${r.entityName}...`]},{level:"log",args:["Processing input:",JSON.stringify((u=(m=s.metadata)==null?void 0:m.data)==null?void 0:u.argumentsData)]},{level:"log",args:["Execution completed successfully"]}],fileWrites:[],apiCalls:[]},timing:{duration:Math.floor(Math.random()*100)+10,timestamp:new Date().toISOString()}};return console.log(`[executeLibraryFunction] Execution completed for ${r.entityName}`),a}async function px({request:e}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("analysisId"),s=t.get("scenarioId");if(!r||!s)return Z({error:"Missing required fields: analysisId and scenarioId"},{status:400});console.log(`[API] Executing library function for analysis ${r}, scenario ${s}`);const a=await mx(r,s);return console.log("[API] Function execution completed successfully"),Z({success:!0,result:a})}catch(t){return console.log("[API] Error during function execution:",t),Z({success:!1,error:"Failed to execute function",details:t instanceof Error?t.message:String(t)},{status:500})}}const hx=Object.freeze(Object.defineProperty({__proto__:null,action:px},Symbol.toStringTag,{value:"Module"}));function fx({request:e}){return Z({status:"ok"})}async function gx({request:e,context:t}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Pt()),!r)return console.error("[Interactive Mode API] Queue not initialized"),Z({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("action"),o=s.get("analysisId"),i=s.get("scenarioId");if(!a||!o)return Z({error:"Missing required fields: action and analysisId"},{status:400});if(a!=="start"&&a!=="stop")return Z({error:'Invalid action. Must be "start" or "stop"'},{status:400});const l=await De();if(console.log("[Interactive Mode API] projectSlug:",l),!l)return Z({error:"Project not initialized"},{status:500});if(a==="start"){const c=await r.enqueue({type:"interactive-start",analysisId:o,scenarioId:i,projectSlug:l});return Z({success:!0,action:"start",message:"Interactive mode starting...",jobId:c})}else{const c=await r.enqueue({type:"interactive-stop",analysisId:o,projectSlug:l});return Z({success:!0,action:"stop",message:"Interactive mode stopping...",jobId:c})}}catch(s){console.error("[Interactive Mode API] Error:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Interactive Mode API] Error stack:",o),Z({error:"Failed to control interactive mode",details:a},{status:500})}}const yx=Object.freeze(Object.defineProperty({__proto__:null,action:gx,loader:fx},Symbol.toStringTag,{value:"Module"}));async function xx({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{scenarioId:r,screenshotPaths:s}=t;if(!r)return Response.json({error:"Missing required field: scenarioId"},{status:400});if(console.log(`[API] Deleting scenario ${r}`),s&&s.length>0){const a=ye();if(a)for(const o of s){const i=X.join(a,".codeyam","captures","screenshots",o);try{await Se.unlink(i),console.log(`[API] Deleted screenshot: ${i}`)}catch(l){console.log(`[API] Could not delete screenshot ${i}:`,l instanceof Error?l.message:l)}}}await _m({ids:[r]});try{const a=ye()||process.cwd();Wf(a,r)}catch{}return console.log(`[API] Scenario ${r} deleted successfully`),Response.json({success:!0,message:"Scenario deleted successfully"})}catch(t){return console.error("[API] Error deleting scenario:",t),Response.json({error:"Failed to delete scenario",details:t instanceof Error?t.message:String(t)},{status:500})}}const bx=Object.freeze(Object.defineProperty({__proto__:null,action:xx},Symbol.toStringTag,{value:"Module"}));class wx extends is{emitFileSynced(t,r){this.emit("event",{type:"file-synced",fileName:t,filePath:r,timestamp:Date.now()})}emitError(t,r){this.emit("event",{type:"sync-error",fileName:t,filePath:r,timestamp:Date.now()})}emitRefreshPreview(){this.emit("event",{type:"refresh-preview",timestamp:Date.now()})}}const Ca="__codeyam_dev_mode_event_emitter__";if(!globalThis[Ca]){const e=new wx;e.setMaxListeners(20),globalThis[Ca]=e}const li=globalThis[Ca];function vx({request:e}){const t=new ReadableStream({start(r){const s=new TextEncoder;r.enqueue(s.encode(`data: ${JSON.stringify({type:"connected"})}
328
-
329
- `));let a=!1;const o=()=>{if(!a){a=!0,li.off("event",i),clearInterval(l);try{r.close()}catch{}}},i=c=>{try{r.enqueue(s.encode(`data: ${JSON.stringify(c)}
330
-
331
- `))}catch{o()}};li.on("event",i);const l=setInterval(()=>{try{r.enqueue(s.encode(`data: ${JSON.stringify({type:"keepalive"})}
332
-
333
- `))}catch{o()}},3e4);e.signal.addEventListener("abort",o)}});return new Response(t,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const Nx=Object.freeze(Object.defineProperty({__proto__:null,loader:vx},Symbol.toStringTag,{value:"Module"})),nr="/tmp/codeyam",Sa=process.env.CODEYAM_API_BASE||"https://dev.codeyam.com",vc=500,Cx=vc*1024*1024;function Xt(e,t){try{return Pe(`git ${e}`,{cwd:t,encoding:"utf8",stdio:["pipe","pipe","pipe"]}).trim()}catch{return null}}function Lr(e){return e<1024?`${e} B`:e<1024*1024?`${(e/1024).toFixed(1)} KB`:`${(e/(1024*1024)).toFixed(1)} MB`}function Nc(e){return Xt("config user.email",e)}function Sx(e){const t=B.join(e,".codeyam","debug-report.md");if(!q.existsSync(t))return null;try{return q.readFileSync(t,"utf8")}catch{return null}}function kx(e,t=20){const r=B.join(nr,"local-dev",e,"codeyam","log.txt");if(!q.existsSync(r))return[];try{return q.readFileSync(r,"utf8").split(`
334
- `).filter(i=>i.includes("CodeYam Log Level 1")).slice(-t)}catch{return[]}}async function Ex(e){try{const t=await fetch(`${Sa}/api/reports/check-base`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({baseSha:e})});if(!t.ok)return!1;const{hasBase:r}=await t.json();return r}catch{return!1}}function _x(e,t){try{Pe(`git archive HEAD | gzip > "${t}"`,{cwd:e,stdio:"pipe",shell:"/bin/bash"})}catch(r){throw new Error(`Failed to create base archive: ${r.message}`)}}function Ax(e){const{projectRoot:t,projectSlug:r,outputPath:s,metadata:a,screenshot:o,onProgress:i}=e,l=i||(()=>{}),c=Date.now(),m=B.join(nr,`delta-staging-${c}`),u=B.join(m,"delta");q.mkdirSync(u,{recursive:!0});try{const p=Xt("diff --binary HEAD",t)||"";q.writeFileSync(B.join(u,"tracked.patch"),p?p+`
335
- `:"");const h=Xt("ls-files --others --exclude-standard",t);if(h){const x=B.join(u,"untracked");q.mkdirSync(x,{recursive:!0});for(const b of h.split(`
336
- `).filter(Boolean)){const w=B.join(t,b),v=B.join(x,b);if(q.existsSync(w)){const C=B.dirname(v);q.mkdirSync(C,{recursive:!0}),q.statSync(w).isFile()&&q.copyFileSync(w,v)}}}const f=B.join(t,".codeyam");if(q.existsSync(f)){const x=B.join(u,"codeyam");q.cpSync(f,x,{recursive:!0})}q.writeFileSync(B.join(u,"meta.json"),JSON.stringify(a,null,2));const g=B.join(nr,"local-dev",r,"codeyam","log.txt");q.existsSync(g)?q.copyFileSync(g,B.join(u,"codeyam-log.txt")):q.writeFileSync(B.join(u,"codeyam-log.txt"),`# Log file not found
337
- `);const y=B.join(t,".codeyam","debug-report.md");q.existsSync(y)&&(q.copyFileSync(y,B.join(u,"debug-report.md")),l("Debug report included")),o&&o.length>0&&(q.writeFileSync(B.join(u,"screenshot.jpg"),o),l(`Screenshot included (${Lr(o.length)})`));try{Pe(`tar -czf "${s}" -C "${m}" delta`,{stdio:"pipe"})}catch(x){throw new Error(`tar failed: ${x.message}`)}}finally{q.rmSync(m,{recursive:!0,force:!0})}}async function Px(e){const{projectRoot:t,projectSlug:r,feedback:s,screenshot:a,onProgress:o}=e,i=o||(()=>{});i("Gathering metadata...");const l=Xt("rev-parse HEAD",t);if(!l)throw new Error("At least one commit is required to generate a bundle. Please commit your changes first.");const c=Xt("rev-parse --abbrev-ref HEAD",t)||"unknown",m=Xt("status --porcelain",t),u=Xt("remote get-url origin",t),p=m!==null&&m.length>0,h=_l(r),f=Sx(t);let g=s;f&&(g={...s||{issueType:"other",source:"cli"},debugReport:f},i("Found debug report from /codeyam-diagnose workflow"));const y={timestamp:new Date().toISOString(),projectSlug:r,git:{sha:l,branch:c,isDirty:p,remoteUrl:u},versions:{cli:h.cliVersion,webserver:h.webserverVersion,node:process.version},system:{platform:process.platform,arch:process.arch},feedback:g},x=Date.now(),b=B.join(nr,`base-${l}-${x}.tar.gz`),w=B.join(nr,`delta-${r}-${x}.tar.gz`);i("Checking for existing base...");const v=await Ex(l);let C=null;v?i("Server already has base, skipping..."):(i("Generating base archive..."),_x(t,b),C=q.statSync(b).size,i(`Base archive: ${Lr(C)}`)),i("Generating delta archive..."),Ax({projectRoot:t,projectSlug:r,outputPath:w,metadata:y,screenshot:a,onProgress:o});const S=q.statSync(w).size;i(`Delta archive: ${Lr(S)}`);const E=(C||0)+S;if(E>Cx)throw q.existsSync(b)&&q.unlinkSync(b),q.unlinkSync(w),new Error(`Bundle too large: ${Lr(E)} (max: ${vc} MB). Try removing large files from the project or adding them to .gitignore`);return{basePath:v?null:b,deltaPath:w,metadata:y,baseSha:l,baseSize:C,deltaSize:S}}async function jx(e){const{basePath:t,deltaPath:r,projectSlug:s,metadata:a,baseSha:o,deltaSize:i,onProgress:l}=e,c=l||(()=>{}),m=q.statSync(r),u=t?q.statSync(t):null,p=m.size+((u==null?void 0:u.size)||0);c("Requesting upload URLs...");const h=await fetch(`${Sa}/api/reports/request-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({projectSlug:s,fileSizeBytes:p,baseSha:o,needsBaseUpload:t!==null,deltaSizeBytes:i,metadata:{timestamp:a.timestamp,git:a.git,versions:a.versions,system:a.system,feedback:a.feedback}})});if(!h.ok){const v=await h.json();throw new Error(v.error||`Server returned ${h.status}`)}const{reportId:f,deltaUploadUrl:g,baseUploadUrl:y}=await h.json(),x=[];if(t&&y){c("Uploading base...");const v=q.readFileSync(t);x.push(fetch(y,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:v}).then(C=>{if(!C.ok)throw new Error(`Base upload failed: ${C.status}`)}))}c("Uploading delta...");const b=q.readFileSync(r);x.push(fetch(g,{method:"PUT",headers:{"Content-Type":"application/gzip"},body:b}).then(v=>{if(!v.ok)throw new Error(`Delta upload failed: ${v.status}`)})),await Promise.all(x),c("Confirming upload...");const w=await fetch(`${Sa}/api/reports/confirm-upload`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({reportId:f})});if(!w.ok){const v=await w.json();throw new Error(v.error||`Confirm failed: ${w.status}`)}return t&&q.existsSync(t)&&q.unlinkSync(t),q.unlinkSync(r),{bundleId:f}}async function Tx({request:e}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});try{const t=await e.formData(),r=t.get("issueType"),s=t.get("description"),a=t.get("email"),o=t.get("source"),i=t.get("entitySha"),l=t.get("scenarioId"),c=t.get("analysisId"),m=t.get("currentUrl"),u=t.get("entityName"),p=t.get("entityType"),h=t.get("scenarioName"),f=t.get("errorMessage"),g=t.get("screenshot");let y=s||void 0;!y&&u&&(h?y=`Issue on ${u} scenario "${h}"`:y=`Issue on ${u}`);let x;if(g&&g.size>0){const E=await g.arrayBuffer();x=Buffer.from(E),console.log(`[Bundle] Screenshot received: ${g.size} bytes`)}const b=ye();if(!b)return Z({error:"Project root not found"},{status:500});const w=await De();if(!w)return Z({error:"Project slug not found"},{status:500});const v={issueType:r||"other",description:y,email:a||void 0,source:o||"navbar",entitySha:i||void 0,scenarioId:l||void 0,analysisId:c||void 0,currentUrl:m||void 0,recentActivity:kx(w,20),entityName:u||void 0,entityType:p||void 0,scenarioName:h||void 0,errorMessage:f||void 0};console.log(`[Bundle] Generating bundle for ${w}...`),console.log(`[Bundle] Context: ${v.source}, issue: ${v.issueType}`);const C=await Px({projectRoot:b,projectSlug:w,feedback:v,screenshot:x,onProgress:E=>{console.log(`[Bundle] ${E}`)}}),A=(C.baseSize||0)+C.deltaSize;console.log(`[Bundle] Archives created: delta=${C.deltaSize} bytes${C.basePath?`, base=${C.baseSize} bytes`:" (base reused)"}`);const S=await jx({basePath:C.basePath,deltaPath:C.deltaPath,projectSlug:w,metadata:C.metadata,baseSha:C.baseSha,deltaSize:C.deltaSize,onProgress:E=>{console.log(`[Bundle] ${E}`)}});return console.log(`[Bundle] Upload complete: ${S.bundleId}`),Z({success:!0,reportId:S.bundleId,size:A})}catch(t){return console.error("[Bundle] Error:",t),Z({error:t.message||"Failed to generate bundle"},{status:500})}}function Mx(){const e=ye(),t=e?Nc(e):null;return Z({defaultEmail:t})}const $x=Object.freeze(Object.defineProperty({__proto__:null,action:Tx,loader:Mx},Symbol.toStringTag,{value:"Module"}));async function Ix({request:e}){try{const r=new URL(e.url).searchParams.get("date"),s=process.env.CODEYAM_ROOT_PATH||process.cwd(),a=B.join(s,".codeyam","journal","index.json");let o={entries:[]};try{const l=await Ne.readFile(a,"utf8");o=JSON.parse(l)}catch{}let i=o.entries;return r&&(i=i.filter(l=>l.date===r)),new Response(JSON.stringify({entries:i}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-journal] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Rx=Object.freeze(Object.defineProperty({__proto__:null,loader:Ix},Symbol.toStringTag,{value:"Module"}));function Cc(e){if(!q.existsSync(e))return Je.Unknown;try{const t=JSON.parse(q.readFileSync(e,"utf8")),r={...t.dependencies,...t.devDependencies};return r.next?Je.Next:r["@remix-run/node"]||r["@remix-run/react"]||r["react-router"]?Je.Remix:r["react-scripts"]?Je.CRA:r.expo?Je.Expo:r.vite?Je.Vite:Je.Unknown}catch{return Je.Unknown}}function Dx(e,t){let r=e;const s=B.resolve(t);for(;;){const a=B.resolve(r);if(q.existsSync(B.join(a,"pnpm-lock.yaml")))return"pnpm";if(q.existsSync(B.join(a,"yarn.lock")))return"yarn";if(q.existsSync(B.join(a,"package-lock.json")))return"npm";if(a===s)break;const o=B.dirname(a);if(o===a)break;r=o}throw new Error(`Could not detect package manager in ${e} or any parent directory up to ${t}`)}function Ox(e){const t=/cd\s+([^\s;&|]+)\s*(?:&&|;)/,r=e.match(t);return r?r[1]:null}function Lx(e){const t=B.join(e,"package.json");if(!q.existsSync(t))return{isWebApp:!1};if(Cc(t)===Je.Unknown)return{isWebApp:!1};try{const a=JSON.parse(q.readFileSync(t,"utf8")).scripts||{},o=["remix","react-router","next dev","vite","react-scripts","webpack-dev-server","parcel","expo"],l=Object.keys(a).filter(c=>["dev","start","serve","build"].some(m=>c.includes(m))).filter(c=>o.some(m=>a[c].includes(m)));if(l.length===0)return{isWebApp:!1};for(const c of l){const m=a[c],u=Ox(m);if(u){const p=B.join(e,u);if(q.existsSync(p)&&q.statSync(p).isDirectory())return{isWebApp:!0,actualPath:p}}}return{isWebApp:!0}}catch{return{isWebApp:!1}}}function Sc(e,t=e,r=0,s=3){if(r>s)return[];const a=[],o=Lx(t);if(o.isWebApp){const l=o.actualPath||t,c=B.relative(e,l);return a.push(c||"."),a}const i=["node_modules",".git",".next","dist","build",".cache","coverage",".codeyam"];try{const l=q.readdirSync(t,{withFileTypes:!0});for(const c of l)if(c.isDirectory()&&!i.includes(c.name)){const m=B.join(t,c.name);a.push(...Sc(e,m,r+1,s))}}catch{}return a}function Fx(e){const t=Sc(e);return t.length===0?[]:t.map(s=>{const a=B.join(e,s),o=B.join(a,"package.json"),i=Cc(o),l=Dx(a,e);let c;if(i===Je.Remix||i===Je.Next){const p=B.join(a,"app");q.existsSync(p)&&q.statSync(p).isDirectory()&&(c="app")}const m=zx(s,e),u=m?{command:"sh",args:["-c",`${l} run ${m} -- --port $PORT`]}:void 0;return{path:s,framework:i,packageManager:l,appDirectory:c,startCommand:u}})}function zx(e,t){const r=B.join(t,e),s=B.join(r,"package.json");if(!q.existsSync(s))return null;try{const o=JSON.parse(q.readFileSync(s,"utf8")).scripts||{},i=["dev","start","serve"];for(const l of i)if(o[l])return l;return null}catch{return null}}function Bx(e,t){const r=new Set(e.map(a=>a.path)),s=[...e];for(const a of t)r.has(a.path)||s.push(a);return s}async function Yx({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=ye()||process.cwd(),r=X.join(t,".codeyam","config.json");let s=[];try{s=Fx(t)}catch{}if(ge.existsSync(r)){const i=JSON.parse(ge.readFileSync(r,"utf8")),l=i.webapps||[];i.webapps=Bx(s,l),s=i.webapps,ge.writeFileSync(r,JSON.stringify(i,null,2))}const a=await De();if(a)try{await Cn({projectSlug:a,metadataUpdate:{webapps:s}})}catch{}let o=!1;if(s.length>0)try{const i=process.env.CODEYAM_PORT||"3111",c=await(await fetch(`http://localhost:${i}/api/editor-dev-server`)).json();(c.status==="stopped"||c.status===void 0)&&(await fetch(`http://localhost:${i}/api/editor-dev-server`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}),o=!0)}catch{}return new Response(JSON.stringify({success:!0,webapps:s,devServerStarted:o,message:`Detected ${s.length} webapp(s)`}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Ux=Object.freeze(Object.defineProperty({__proto__:null,action:Yx},Symbol.toStringTag,{value:"Module"}));async function Wx({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),r=ye()||process.cwd();if(t.action==="clear"){$h(r);try{q.unlinkSync(B.join(r,".codeyam","claude-session-id.txt"))}catch{}return new Response(JSON.stringify({success:!0,message:"Editor state cleared"}),{headers:{"Content-Type":"application/json"}})}return new Response(JSON.stringify({error:"Unknown action"}),{status:400,headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Jx=Object.freeze(Object.defineProperty({__proto__:null,action:Wx},Symbol.toStringTag,{value:"Module"}));function tn(){const e=process.memoryUsage(),t=su.getHeapStatistics();return{process:{rss:Math.round(e.rss/1024/1024),heapTotal:Math.round(e.heapTotal/1024/1024),heapUsed:Math.round(e.heapUsed/1024/1024),external:Math.round(e.external/1024/1024),arrayBuffers:Math.round(e.arrayBuffers/1024/1024)},heap:{totalHeapSize:Math.round(t.total_heap_size/1024/1024),totalHeapSizeExecutable:Math.round(t.total_heap_size_executable/1024/1024),totalPhysicalSize:Math.round(t.total_physical_size/1024/1024),totalAvailableSize:Math.round(t.total_available_size/1024/1024),usedHeapSize:Math.round(t.used_heap_size/1024/1024),heapSizeLimit:Math.round(t.heap_size_limit/1024/1024),mallocedMemory:Math.round(t.malloced_memory/1024/1024),peakMallocedMemory:Math.round(t.peak_malloced_memory/1024/1024)},system:{totalMemory:Math.round(oa.totalmem()/1024/1024),freeMemory:Math.round(oa.freemem()/1024/1024)}}}function Hx(){const e=tn();console.log(`
338
- [Memory Profiler] Detailed Statistics:`),console.log(" Process Memory:"),console.log(` RSS: ${e.process.rss} MB (total memory used by process)`),console.log(` Heap Used: ${e.process.heapUsed} MB / ${e.process.heapTotal} MB`),console.log(` External: ${e.process.external} MB (C++ objects)`),console.log(` ArrayBuffers: ${e.process.arrayBuffers} MB`),console.log(" V8 Heap:"),console.log(` Used: ${e.heap.usedHeapSize} MB / ${e.heap.totalHeapSize} MB`),console.log(` Physical: ${e.heap.totalPhysicalSize} MB`),console.log(` Limit: ${e.heap.heapSizeLimit} MB`),console.log(` Malloced: ${e.heap.mallocedMemory} MB (peak: ${e.heap.peakMallocedMemory} MB)`),console.log(" System:"),console.log(` Total: ${e.system.totalMemory} MB`),console.log(` Free: ${e.system.freeMemory} MB`);const t=(e.heap.usedHeapSize/e.heap.heapSizeLimit*100).toFixed(1);return console.log(` Heap Usage: ${t}% of limit`),e}function Vx(){if(global.gc){console.log("[Memory Profiler] Running garbage collection...");const e=tn();global.gc();const t=tn(),r=e.process.heapUsed-t.process.heapUsed;return console.log(`[Memory Profiler] GC freed ${r} MB`),console.log(`[Memory Profiler] Heap: ${t.process.heapUsed} MB (was ${e.process.heapUsed} MB)`),!0}else return console.log("[Memory Profiler] GC not available. Start Node with --expose-gc to enable."),!1}function Gx(){const e=tn(),t=e.heap.usedHeapSize/e.heap.heapSizeLimit*100,r={highHeapUsage:t>80,highExternalMemory:e.process.external>200,highArrayBuffers:e.process.arrayBuffers>100,nearHeapLimit:e.heap.totalAvailableSize<100},s=[];return r.highHeapUsage&&s.push(`High heap usage: ${t.toFixed(1)}% of limit`),r.highExternalMemory&&s.push(`High external memory: ${e.process.external} MB`),r.highArrayBuffers&&s.push(`High ArrayBuffer usage: ${e.process.arrayBuffers} MB`),r.nearHeapLimit&&s.push(`Near heap limit: only ${e.heap.totalAvailableSize} MB available`),{indicators:r,warnings:s,hasIssues:s.length>0}}function qx({request:e}){const r=new URL(e.url).searchParams.get("action");try{switch(r){case"snapshot":return Response.json({success:!1,error:"Heap snapshots are disabled because they block the server for several minutes. Use action=leaks instead."},{status:400});case"gc":{const s=Vx(),a=tn();return Response.json({success:s,message:s?"Garbage collection completed":"GC not available. Restart server with --expose-gc flag.",stats:a})}case"detailed":{const s=Hx();return Response.json({success:!0,stats:s})}case"leaks":{const s=Gx(),a=tn();return Response.json({success:!0,leakCheck:s,stats:a})}default:{const s=tn();return Response.json({success:!0,stats:s,actions:{gc:"/api/memory-profile?action=gc - Force garbage collection (requires --expose-gc)",detailed:"/api/memory-profile?action=detailed - Log detailed stats to console",leaks:"/api/memory-profile?action=leaks - Check for memory leak indicators"}})}}}catch(s){return console.error("[Memory API] Error:",s),Response.json({success:!1,error:s.message},{status:500})}}const Kx=Object.freeze(Object.defineProperty({__proto__:null,loader:qx},Symbol.toStringTag,{value:"Module"})),jr=Ma(Ta);async function Qx({request:e}){const r=new URL(e.url).searchParams.get("pids");if(!r)return Response.json({error:"Missing pids parameter"},{status:400});const s=r.split(",").map(o=>parseInt(o.trim(),10)).filter(o=>!isNaN(o));if(s.length===0)return Response.json({error:"No valid PIDs provided"},{status:400});const a=await Promise.all(s.map(async o=>{const i=Zx(o),l=i?await Xx(o):null;return{pid:o,isRunning:i,processName:l}}));return Response.json({processes:a})}function Zx(e){try{return process.kill(e,0),!0}catch{return!1}}async function Xx(e){if(process.platform==="win32")try{const{stdout:r}=await jr(`tasklist /FI "PID eq ${e}" /FO CSV /NH`),s=r.match(/"([^"]+)"/);if(!s)return null;const a=s[1];if(a.toLowerCase()==="node.exe")try{const{stdout:o}=await jr(`wmic process where "ProcessId=${e}" get CommandLine /FORMAT:LIST`),i=o.match(/codeyam-(\w+)/);if(i)return`codeyam-${i[1]}`}catch{}return a}catch{return null}try{const{stdout:r}=await jr(`ps -p ${e} -o comm=`);return r.trim()||null}catch{try{const{stdout:s}=await jr(`ps -p ${e} -o args=`),a=s.trim(),o=a.match(/codeyam-(\w+)/);return o?`codeyam-${o[1]}`:a.split(" ")[0]||null}catch{return null}}}const eb=Object.freeze(Object.defineProperty({__proto__:null,loader:Qx},Symbol.toStringTag,{value:"Module"})),tb=os(import.meta.url),nb=B.dirname(tb);function rb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=ws(),r=ye()||(t==null?void 0:t.projectRoot);if(!r)throw new Error("Could not determine project root");const s=(t==null?void 0:t.port)||3111,a=B.join(nb,"..","..","..","..","webserver","bootstrap.js"),o=B.join(r,".codeyam","logs");q.existsSync(o)||q.mkdirSync(o,{recursive:!0});const i=q.openSync(B.join(o,"background-server.log"),"a"),l=q.openSync(B.join(o,"background-server-error.log"),"a"),c=new Date().toISOString();q.appendFileSync(B.join(o,"background-server.log"),`
339
- [${c}] Server restart requested via dashboard
340
- `),Ja();const m=St("node",[a],{detached:!0,stdio:["ignore",i,l],env:{...process.env,CODEYAM_PORT:s.toString(),CODEYAM_ROOT_PATH:r,CODEYAM_PROCESS_NAME:"codeyam-server",CODEYAM_WAIT_FOR_PORT:"true"}});m.unref(),console.log(`[api.restart-server] Spawned new server process (pid: ${m.pid})`);const u=new Response(JSON.stringify({success:!0}),{status:200,headers:{"Content-Type":"application/json"}});return setTimeout(()=>{console.log("[api.restart-server] Exiting old server process"),process.exit(0)},100),u}catch(t){return console.error("[api.restart-server] Error restarting server:",t),new Response(JSON.stringify({success:!1,error:t instanceof Error?t.message:"Unknown error"}),{status:500,headers:{"Content-Type":"application/json"}})}}const sb=Object.freeze(Object.defineProperty({__proto__:null,action:rb},Symbol.toStringTag,{value:"Module"}));async function ab({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{analysis:r,scenarios:s}=t;if(!r||!s)return Response.json({error:"Missing required fields: analysis and scenarios"},{status:400});console.log(`[API] Saving scenarios for analysis ${r.id}`),console.log(`[API] Received ${s.length} scenarios to save`),s.forEach((l,c)=>{var p,h,f,g,y;const m=(h=(p=l.metadata)==null?void 0:p.data)==null?void 0:h.argumentsData,u=Array.isArray(m)&&m.length>0?JSON.stringify(m[0]).substring(0,200):"empty-or-not-array";console.log(`[API] Scenario ${c}: ${l.name}`,{id:l.id,projectId:l.projectId,analysisId:l.analysisId,hasMetadata:!!l.metadata,hasData:!!((f=l.metadata)!=null&&f.data),mockDataKeys:(y=(g=l.metadata)==null?void 0:g.data)!=null&&y.mockData?Object.keys(l.metadata.data.mockData):[],argumentsDataLength:Array.isArray(m)?m.length:"not-array",argumentsDataPreview:u})});const a=s.map(l=>({...l,projectId:l.projectId||r.projectId,analysisId:l.analysisId||r.id})),o=await Um(a);if(!o||o.length===0)throw new Error("Failed to save scenarios to database");console.log(`[API] Scenarios saved successfully for analysis ${r.id}`),console.log(`[API] Saved ${o.length} scenarios to database`),o.forEach((l,c)=>{var u,p;const m=(p=(u=l.metadata)==null?void 0:u.data)==null?void 0:p.argumentsData;console.log(`[API] Saved scenario ${c}: ${l.name}`,{id:l.id,argumentsDataLength:Array.isArray(m)?m.length:"not-array"})});const i={...r,scenarios:o};return Response.json({success:!0,analysis:i})}catch(t){return console.error("[API] Error saving scenarios:",t),Response.json({error:"Failed to save scenarios",details:t instanceof Error?t.message:String(t)},{status:500})}}const ob=Object.freeze(Object.defineProperty({__proto__:null,action:ab},Symbol.toStringTag,{value:"Module"})),ib=()=>[{title:"Agent Transcripts - CodeYam"},{name:"description",content:"View background agent transcripts and tool call history"}];async function lb({request:e}){try{const t=new URL(e.url),r=t.searchParams.get("search")||"",s=t.searchParams.get("page")||"1",a=new URLSearchParams;r&&a.set("search",r),s!=="1"&&a.set("page",s);const o=a.toString(),i=new URL(`/api/agent-transcripts${o?`?${o}`:""}`,e.url),c=await(await fetch(i.toString())).json();if(c.error)return Z({agents:[],error:c.error,search:r,page:1,totalPages:1});const m=c.total??(c.agents||[]).length,u=c.pageSize??20;return Z({agents:c.agents||[],error:null,search:r,page:c.page??parseInt(s,10),totalPages:Math.max(1,Math.ceil(m/u))})}catch(t){return console.error("Failed to load agent transcripts:",t),Z({agents:[],error:"Failed to load agent transcripts",search:"",page:1,totalPages:1})}}function cb(e){if(!e)return"";try{return new Date(e).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch{return e}}function db(e){if(!e)return"";try{return new Date(e).toLocaleDateString("en-US",{month:"short",day:"numeric",hour:"2-digit",minute:"2-digit",hour12:!1})}catch{return e}}function ub(e){return e.includes("opus")?"Opus":e.includes("sonnet")?"Sonnet":e.includes("haiku")?"Haiku":e}function Fr({type:e,toolName:t}){const r={user_prompt:"bg-[#00b4d8] text-black",assistant_text:"bg-[#a8dadc] text-black",tool_call:"bg-[#f4a261] text-black",tool_result:"bg-[#2a9d8f] text-black",context:"bg-[#7c3aed] text-white"},s={user_prompt:"USER",assistant_text:"ASSISTANT",tool_call:t||"TOOL",tool_result:"RESULT",context:"CONTEXT"};return n("span",{className:`inline-block px-2 py-0.5 rounded text-[10px] font-bold uppercase tracking-wide ${r[e]||"bg-gray-300 text-black"}`,children:s[e]||e})}function mb({input:e}){return n("div",{className:"text-xs font-mono space-y-1",children:Object.entries(e).map(([t,r])=>{let s=typeof r=="string"?r:JSON.stringify(r);return s.length>500&&(s=s.slice(0,500)+"..."),d("div",{children:[d("span",{className:"text-[#f4a261] font-bold",children:[t,":"]})," ",n("span",{className:"text-gray-700",children:s})]},t)})})}function pb({content:e,truncated:t,fullLength:r}){const[s,a]=M(!1);return d("div",{children:[d("pre",{className:"whitespace-pre-wrap break-words text-xs max-h-96 overflow-y-auto text-gray-700",children:[e,t&&!s&&"..."]}),t&&n("button",{onClick:()=>a(!s),className:"text-[11px] text-gray-500 hover:text-gray-700 mt-1 font-mono cursor-pointer",children:s?"Show less":`Show more (${(r||0)-e.length} more chars)`})]})}function hb({entry:e,pairedResult:t}){const[r,s]=M(!1),a=cb(e.timestamp||"");return e.type==="user_prompt"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(Fr,{type:"user_prompt"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("pre",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#00b4d8] max-h-72 overflow-y-auto text-gray-800",children:e.text})]}):e.type==="assistant_text"?d("div",{className:"my-2",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(Fr,{type:"assistant_text"}),n("span",{className:"text-[11px] text-gray-400 font-mono",children:a})]}),n("div",{className:"bg-white border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-sm border-l-[3px] border-l-[#a8dadc] text-gray-800",children:e.text})]}):e.type==="tool_call"?d("div",{className:"my-2",children:[d("button",{onClick:()=>s(!r),className:"flex items-center gap-2 w-full text-left bg-white border border-gray-200 rounded-md px-3 py-2 hover:bg-gray-50 cursor-pointer",children:[r?n(it,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}):n(zt,{className:"w-3 h-3 text-gray-400 flex-shrink-0"}),n(Fr,{type:"tool_call",toolName:e.name}),n("span",{className:"text-xs text-gray-500 font-mono truncate flex-1",children:e.summary||""}),n("span",{className:"text-[11px] text-gray-400 font-mono flex-shrink-0",children:a})]}),r&&d("div",{className:"bg-white border border-t-0 border-gray-200 rounded-b-md px-3 py-2 border-l-[3px] border-l-[#f4a261]",children:[n(mb,{input:e.input||{}}),t&&d("div",{className:"mt-3 pt-3 border-t border-gray-200",children:[d("div",{className:"text-[11px] font-bold uppercase tracking-wide text-[#2a9d8f] mb-1",children:["Result",t.is_error?" (Error)":"",":"]}),n(pb,{content:t.content||"",truncated:t.truncated,fullLength:t.fullLength})]})]})]}):(e.type==="tool_result",null)}function fb({context:e}){const[t,r]=M(!1);return d("div",{className:"my-2",children:[d("button",{onClick:()=>r(!t),className:"flex items-center gap-2 mb-1 cursor-pointer hover:opacity-80",children:[t?n(it,{className:"w-3 h-3 text-gray-400"}):n(zt,{className:"w-3 h-3 text-gray-400"}),n(Fr,{type:"context"}),n("span",{className:"text-xs text-gray-500",children:"Full prompt context"})]}),t&&n("pre",{className:"bg-gray-50 border border-gray-200 rounded-md p-3 whitespace-pre-wrap break-words text-xs font-mono border-l-[3px] border-l-[#7c3aed] max-h-96 overflow-y-auto text-gray-700",children:e})]})}function gb({snippet:e}){const[t,r]=M(!1),s=e.split(`
341
- `).filter(l=>l.trim()),a=s.slice(0,4),o=s.length>4,i=t?s:a;return d("div",{className:"my-2 bg-blue-50 border border-blue-200 rounded-md p-3",children:[d("div",{className:"flex items-center gap-2 mb-2",children:[n(Sd,{className:"w-3.5 h-3.5 text-blue-600"}),n("span",{className:"text-xs font-bold text-blue-800",children:"Source Conversation"}),d("span",{className:"text-[10px] text-blue-500",children:[s.length," message",s.length!==1?"s":""]})]}),n("div",{className:"space-y-1",children:i.map((l,c)=>{const m=l.match(/^\[(\w+)\]:\s*(.*)/);if(!m)return null;const[,u,p]=m,h=u==="user";return d("div",{className:"text-xs",children:[d("span",{className:`font-bold ${h?"text-blue-700":"text-gray-500"}`,children:[h?"User":"Assistant",":"]})," ",n("span",{className:"text-gray-700",children:p.length>200?p.slice(0,200)+"...":p})]},c)})}),o&&n("button",{onClick:()=>r(!t),className:"text-[11px] text-blue-600 hover:text-blue-800 mt-2 font-mono cursor-pointer",children:t?"Show less":`Show all ${s.length} messages`})]})}function yb({change:e}){const[t,r]=M(!1),s=e.action==="created"?!!e.content:e.action==="modified"?!!(e.oldString||e.newString):!1;return d("li",{children:[n("button",{onClick:()=>s&&r(!t),className:`text-left w-full ${s?"hover:text-green-900 cursor-pointer":""}`,children:d("span",{className:"inline-flex items-center gap-1",children:[s&&(t?n(it,{className:"w-3 h-3 inline flex-shrink-0"}):n(zt,{className:"w-3 h-3 inline flex-shrink-0"})),e.action==="created"?"Created":"Modified"," ",e.filePath]})}),t&&e.action==="created"&&e.content&&n("pre",{className:"mt-1 mb-2 ml-4 p-2 bg-white border border-green-200 rounded text-[11px] text-gray-700 whitespace-pre-wrap break-words max-h-64 overflow-y-auto",children:e.content}),t&&e.action==="modified"&&d("div",{className:"mt-1 mb-2 ml-4 space-y-1",children:[e.oldString&&d("pre",{className:"p-2 bg-red-50 border border-red-200 rounded text-[11px] text-red-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["- ",e.oldString]}),e.newString&&d("pre",{className:"p-2 bg-green-50 border border-green-300 rounded text-[11px] text-green-800 whitespace-pre-wrap break-words max-h-32 overflow-y-auto",children:["+ ",e.newString]})]})]})}function xb({changes:e}){const t=e.filter(i=>i.action==="touched"),r=e.filter(i=>i.action!=="touched"),s=r.some(i=>i.action==="created"),a=r.some(i=>i.action==="modified");return d("div",{className:`my-2 border rounded-md p-3 ${s?"bg-green-50 border-green-200 text-green-800 [&_ul]:text-green-700":a?"bg-amber-50 border-amber-200 text-amber-800 [&_ul]:text-amber-700":"bg-gray-50 border-gray-200 text-gray-600 [&_ul]:text-gray-500"}`,children:[n("div",{className:"text-xs font-bold mb-1",children:"Rule Changes:"}),d("ul",{className:"text-xs space-y-0.5 font-mono",children:[r.map((i,l)=>n(yb,{change:i},l)),t.length>0&&d("li",{children:["Touched timestamps on ",t.length," rule",t.length!==1?"s":""]})]})]})}function bb({result:e}){const t=e.is_error,r=t?"bg-red-50 border-red-200":"bg-green-50 border-green-200",s=t?"text-red-800":"text-green-800",a=t?"text-red-700":"text-green-700",o=e.subtype.replace(/^error_/,"").replace(/_/g," "),i=c=>c>=6e4?`${(c/6e4).toFixed(1)}m`:`${(c/1e3).toFixed(1)}s`,l=c=>c>=1e3?`${(c/1e3).toFixed(1)}k`:String(c);return d("div",{className:`my-2 border rounded-md p-3 ${r}`,children:[d("div",{className:`text-xs font-bold mb-1 ${s}`,children:["Session Result: ",o]}),d("div",{className:`text-xs ${a} font-mono space-y-0.5`,children:[d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5",children:[e.duration_ms!=null&&d("span",{children:["Duration: ",i(e.duration_ms)]}),e.duration_api_ms!=null&&d("span",{children:["API time: ",i(e.duration_api_ms)]}),e.num_turns!=null&&d("span",{children:["Turns: ",e.num_turns]}),e.total_cost_usd!=null&&d("span",{children:["Cost: $",e.total_cost_usd.toFixed(4)]})]}),e.usage&&d("div",{className:"flex flex-wrap gap-x-4 gap-y-0.5 mt-1",children:[e.usage.input_tokens!=null&&d("span",{children:["Input: ",l(e.usage.input_tokens)]}),e.usage.output_tokens!=null&&d("span",{children:["Output: ",l(e.usage.output_tokens)]}),e.usage.cache_read_input_tokens!=null&&d("span",{children:["Cache read: ",l(e.usage.cache_read_input_tokens)]}),e.usage.cache_creation_input_tokens!=null&&d("span",{children:["Cache write:"," ",l(e.usage.cache_creation_input_tokens)]})]}),e.errors&&e.errors.length>0&&n("div",{className:"mt-1",children:e.errors.map((c,m)=>n("div",{className:"text-red-700 break-words",children:c},m))})]})]})}function wb({agent:e,defaultOpen:t,isAdmin:r}){var A,S,E;const[s,a]=M(t),[o,i]=M(!1),[l,c]=M(null),[m,u]=M(!1),p=oe(()=>{const N={};for(const k of e.entries)k.type==="tool_result"&&k.tool_use_id&&(N[k.tool_use_id]=k);return N},[e.entries]),h=oe(()=>{const N=new Set;for(const k of e.entries)k.type==="tool_call"&&k.tool_use_id&&p[k.tool_use_id]&&N.add(k.tool_use_id);return N},[e.entries,p]),f=N=>{N.stopPropagation(),i(!0),c(null),fetch("/api/save-fixture",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({sessionId:e.id})}).then(k=>k.json()).then(k=>{k.success?c(`Saved to ${k.fixturePath}`):c(`Error: ${k.error}`)}).catch(k=>{c(`Error: ${k instanceof Error?k.message:String(k)}`)}).finally(()=>{i(!1)})},g=(e.ruleChanges||[]).filter(N=>N.action!=="touched"),y=g.filter(N=>N.action==="created"),x=g.filter(N=>N.action==="modified"),b=(e.ruleChanges||[]).filter(N=>N.action==="touched"),w=g.length>0,v=b.length>0,C=w||v;return d("div",{className:`bg-white border rounded-lg overflow-hidden mb-4 ${e.stats.errors>0?"border-red-300":y.length>0?"border-green-300":x.length>0?"border-amber-300":"border-gray-200"}`,children:[d("button",{onClick:()=>a(!s),className:"w-full flex items-center gap-3 px-4 py-3 text-left hover:bg-gray-50 cursor-pointer",children:[s?n(it,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}):n(zt,{className:"w-4 h-4 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm font-bold text-[#005C75] font-mono",children:e.id.slice(0,8)}),e.slug&&n("span",{className:"text-xs text-gray-500",children:e.slug}),e.model&&n("span",{className:"inline-flex items-center px-2 py-0.5 rounded-full text-[10px] font-bold bg-purple-100 text-purple-700",title:e.model,children:ub(e.model)}),y.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-green-100 text-green-800",children:[n(Br,{className:"w-3 h-3"}),y.length," rule",y.length!==1?"s":""," ","created"]}),x.length>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-amber-100 text-amber-800",children:[n(Br,{className:"w-3 h-3"}),x.length," rule",x.length!==1?"s":""," ","modified"]}),!w&&v&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-gray-100 text-gray-500",children:[b.length," timestamp",b.length!==1?"s":""," ","touched"]}),e.stats.errors>0&&d("span",{className:"inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-[10px] font-bold bg-red-100 text-red-800",children:[n(zr,{className:"w-3 h-3 flex-shrink-0"}),e.stats.errors," ",e.stats.errors===1?"Error":"Errors"]}),d("span",{className:"text-[11px] text-gray-400 font-mono",children:[e.stats.toolCalls," tool calls, ",e.stats.textBlocks," text blocks",((A=e.sessionResult)==null?void 0:A.duration_ms)!=null&&d(pe,{children:[" · ",e.sessionResult.duration_ms>=6e4?`${(e.sessionResult.duration_ms/6e4).toFixed(1)}m`:`${(e.sessionResult.duration_ms/1e3).toFixed(1)}s`]}),((S=e.sessionResult)==null?void 0:S.total_cost_usd)!=null&&d(pe,{children:[" · ","$",e.sessionResult.total_cost_usd.toFixed(2)]})]}),d("span",{className:"text-[11px] text-gray-400 font-mono ml-auto flex items-center gap-2",children:[db(e.timestamp),r&&w&&d("button",{onClick:f,disabled:o,className:"inline-flex items-center gap-1 px-2 py-1 rounded text-[10px] font-bold bg-gray-100 text-gray-600 hover:bg-gray-200 disabled:opacity-50 cursor-pointer",title:"Save as test fixture",children:[n(Cd,{className:"w-3 h-3"}),o?"Saving...":"Save Fixture"]})]})]}),l&&n("div",{className:`px-4 py-2 text-xs font-mono ${l.startsWith("Error")?"bg-red-50 text-red-700":"bg-green-50 text-green-700"}`,children:l}),s&&d("div",{className:"px-4 pb-4 border-t border-gray-100",children:[e.sourceFile&&d("div",{className:"flex items-center gap-2 py-2 text-xs text-gray-500 font-mono",children:[n("span",{className:"text-gray-400",children:"FILE:"}),n("span",{className:"truncate",children:e.sourceFile}),n("button",{onClick:N=>{N.stopPropagation(),navigator.clipboard.writeText(e.sourceFile),u(!0),setTimeout(()=>u(!1),2e3)},className:"p-0.5 rounded text-gray-400 hover:text-gray-600 cursor-pointer transition-colors flex-shrink-0",title:"Copy file path",children:m?n(lt,{className:"w-3.5 h-3.5 text-green-500"}):n(pt,{className:"w-3.5 h-3.5"})})]}),e.sessionResult&&n(bb,{result:e.sessionResult}),e.stats.errors>0&&((E=e.stats.errorMessages)==null?void 0:E.length)>0&&d("div",{className:"my-2 bg-red-50 border border-red-200 rounded-md p-3",children:[d("div",{className:"text-xs font-bold text-red-800 mb-1",children:[e.stats.errors," Error",e.stats.errors!==1?"s":"",":"]}),n("ul",{className:"text-xs text-red-700 space-y-1 font-mono",children:e.stats.errorMessages.map((N,k)=>n("li",{className:"break-words",children:N},k))})]}),e.conversationSnippet&&n(gb,{snippet:e.conversationSnippet}),C&&n(xb,{changes:e.ruleChanges}),e.context&&n(fb,{context:e.context}),e.entries.map((N,k)=>{if(N.type==="tool_result"&&N.tool_use_id&&h.has(N.tool_use_id))return null;const j=N.type==="tool_call"&&N.tool_use_id?p[N.tool_use_id]:void 0;return n(hb,{entry:N,pairedResult:j},`${e.id}-${k}`)})]})]})}function Xs(e,t){const r=new URLSearchParams;t&&r.set("search",t),e>1&&r.set("page",String(e));const s=r.toString();return`/agent-transcripts${s?`?${s}`:""}`}const vb=Ye(function(){const{agents:t,error:r,search:s,page:a,totalPages:o}=He(),i=Nt(),l=td("root"),c=(l==null?void 0:l.isAdmin)??!1,[m,u]=M(s),[p,h]=M(!1),[f,g]=M(0);gt({source:"agent-transcripts-page"});const y=b=>{b.preventDefault(),window.location.href=Xs(1,m)},x=()=>{h(!p),g(b=>b+1)};return r?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:r})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[d("div",{className:"flex items-center gap-3 mb-1",children:[n("button",{onClick:()=>{i("/memory")},className:"text-gray-600 hover:text-[#005C75] transition-colors cursor-pointer",title:"Back to Memory","aria-label":"Back to Memory",children:n(vd,{className:"w-5 h-5"})}),n(Yr,{className:"w-6 h-6 text-[#232323]"}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Agent Transcripts"})]}),n("p",{className:"text-[15px] text-gray-500 ml-14",children:"View background agent transcripts and tool call history"})]}),d("div",{className:"flex items-center gap-4 mb-6",children:[d("form",{onSubmit:y,className:"relative flex-1 max-w-md",children:[n(sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:m,onChange:b=>u(b.target.value),placeholder:"Search transcripts...",className:"w-full pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),n("button",{onClick:x,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:p?"Collapse All":"Expand All"})]}),d("div",{className:"text-sm text-gray-500 mb-4",children:["Page ",a," of ",o,s&&d("span",{children:[" ","matching “",s,"”",n(fe,{to:"/agent-transcripts",className:"text-[#005C75] hover:underline ml-2",children:"Clear"})]})]}),t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(Yr,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Agent Transcripts Found"}),n("p",{className:"text-gray-500",children:"Background agent output files will appear here when available."})]}):n("div",{children:t.map(b=>n(wb,{agent:b,defaultOpen:p,isAdmin:c},b.id))},f),o>1&&d("div",{className:"flex items-center justify-center gap-3 mt-8",children:[d("a",{href:a>1?Xs(a-1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a>1?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:[n(Nd,{className:"w-4 h-4"}),"Prev"]}),d("span",{className:"text-sm text-gray-500 font-mono",children:[a," / ",o]}),d("a",{href:a<o?Xs(a+1,s):void 0,className:`inline-flex items-center gap-1 px-3 py-1.5 rounded-md text-sm font-medium ${a<o?"bg-white border border-gray-200 text-gray-700 hover:bg-gray-50 cursor-pointer":"bg-gray-100 text-gray-400 pointer-events-none"}`,children:["Next",n(zt,{className:"w-4 h-4"})]})]})]})})}),Nb=Object.freeze(Object.defineProperty({__proto__:null,default:vb,loader:lb,meta:ib},Symbol.toStringTag,{value:"Module"}));async function Cb({request:e}){if(e.method!=="POST")return new Response("Method not allowed",{status:405});try{const t=await e.json(),{message:r}=t;if(!r)return new Response(JSON.stringify({error:"message is required"}),{status:400,headers:{"Content-Type":"application/json"}});const s=process.env.CODEYAM_ROOT_PATH||process.cwd();console.log(`[editor-commit] Committing with message: "${r}" in ${s}`);const a=Ay(s);a&&console.log("[editor-commit] Initialized new git repository"),Py(s),console.log("[editor-commit] Staged all changes");const o=jy(s,r);console.log(`[editor-commit] Created commit: ${o}`);try{const{broadcastHideResults:i}=await Promise.resolve().then(()=>Hf);i()}catch{}return new Response(JSON.stringify({success:!0,commitSha:o,initialized:a}),{headers:{"Content-Type":"application/json"}})}catch(t){const r=t instanceof Error?t.message:String(t);return console.error("[editor-commit] Error:",t),new Response(JSON.stringify({error:r}),{status:500,headers:{"Content-Type":"application/json"}})}}const Sb=Object.freeze(Object.defineProperty({__proto__:null,action:Cb},Symbol.toStringTag,{value:"Module"})),kb=["JSX","React","Element","ReactNode"];function Eb(e){return e.returnType?kb.some(t=>e.returnType.includes(t)):!1}function _b(e){const t=[],r=[];for(const s of e)Eb(s)?t.push(s):r.push(s);return{components:t,functions:r}}function Ab({components:e,functions:t,scenarioCounts:r,testFileExistence:s,testResults:a,clientErrors:o}){const i=e.map(y=>{const x=r[y.name]||0,b=o==null?void 0:o[y.name],w=x>0&&b&&b.length>0;let v;return x===0?v="missing":w?v="has_errors":v="ok",{name:y.name,filePath:y.filePath,scenarioCount:x,status:v,...w?{clientErrors:b}:{}}}),l=t.map(y=>{if(!(y.testFile?s[y.testFile]??!1:!1))return{name:y.name,filePath:y.filePath,testFile:y.testFile,testFileExists:!1,status:"missing"};const b=y.testFile&&a?a[y.testFile]:void 0;if(!b)return{name:y.name,filePath:y.filePath,testFile:y.testFile,testFileExists:!0,status:"ok"};let w;return b.passing?b.hasEntityNameDescribe?w="ok":w="name_mismatch":w="failing",{name:y.name,filePath:y.filePath,testFile:y.testFile,testFileExists:!0,testsPassing:b.passing,testsVisibleInUi:b.hasEntityNameDescribe,status:w}}),c=i.filter(y=>y.status==="ok").length,m=i.filter(y=>y.status==="has_errors").length,u=i.filter(y=>y.status==="missing").length,p=l.filter(y=>y.status==="ok").length,h=l.filter(y=>y.status==="failing").length,f=l.filter(y=>y.status==="name_mismatch").length,g=l.filter(y=>y.status==="missing").length;return{components:i,functions:l,summary:{totalComponents:i.length,componentsOk:c,componentsMissing:u,componentsWithErrors:m,totalFunctions:l.length,functionsOk:p,functionsMissing:g,functionsFailing:h,functionsNameMismatch:f,allPassing:u===0&&m===0&&h===0&&f===0&&g===0}}}function Pb({featureStartedAt:e,entityChangeStatus:t}){return t&&Object.keys(t).length>0?{featureStartedAt:e,entityChangeStatus:t}:{featureStartedAt:null,entityChangeStatus:t}}function jb(e,t){return!t||Object.keys(t).length===0?e:e.filter(r=>!!(t[r.name]||t[r.filePath]))}async function Tb(e,t,r){let s=e.selectFrom("editor_scenarios").select(["component_name"]).select(e.fn.count("id").as("count")).where("project_id","=",t).where("component_name","is not",null).groupBy("component_name");if(r){const i=r.replace("T"," ").replace(/\.\d{3}Z$/,"");s=s.where(l=>l.or([l("created_at",">=",i),l("updated_at",">=",i)]))}const a=await s.execute(),o={};for(const i of a)i.component_name&&(o[i.component_name]=Number(i.count));return o}async function Mb(){const e=ye()||process.cwd(),t=B.join(e,".codeyam","glossary.json");let r;try{const x=q.readFileSync(t,"utf8");r=JSON.parse(x),Array.isArray(r)||(r=[])}catch{return Response.json({components:[],functions:[],summary:{totalComponents:0,componentsOk:0,componentsMissing:0,componentsWithErrors:0,totalFunctions:0,functionsOk:0,functionsMissing:0,functionsFailing:0,functionsNameMismatch:0,allPassing:!0}})}if(r.length===0)return Response.json({components:[],functions:[],summary:{totalComponents:0,componentsOk:0,componentsMissing:0,componentsWithErrors:0,totalFunctions:0,functionsOk:0,functionsMissing:0,functionsFailing:0,functionsNameMismatch:0,allPassing:!0}});const s=B.join(e,".codeyam","editor-step.json");let a=null;try{const x=q.readFileSync(s,"utf8");a=JSON.parse(x).featureStartedAt||null}catch{}let o;const i=await De();if(i)try{const{project:x}=await Oe(i),w=await je().selectFrom("editor_scenarios").select(["name","component_name","component_path","url"]).where("project_id","=",x.id).orderBy("created_at","asc").execute(),C=ft(w,S=>`${S.name}::${S.url||"/"}`).map(S=>({componentName:S.component_name||null,componentPath:S.component_path||null,url:S.url??null})),A=await lr({projectRoot:e,scenarioInputs:C});Object.keys(A.entityChangeStatus).length>0&&(o=A.entityChangeStatus)}catch{}const l=Pb({featureStartedAt:a,entityChangeStatus:o});a=l.featureStartedAt,o=l.entityChangeStatus;const c=jb(r,o),{components:m,functions:u}=_b(c);let p={};if(i)try{const{project:x}=await Oe(i),b=je();p=await Tb(b,x.id,a)}catch{}const h={};try{const x=process.env.CODEYAM_ROOT_PATH||process.cwd(),b=await nc(x);for(const[,w]of Object.entries(b)){if(w.errors.length===0)continue;const v=w.scenarioName,C=v.indexOf(" - "),A=C>=0?v.slice(0,C):v;A&&(h[A]||(h[A]=[]),h[A].push(...w.errors))}}catch{}const f={};for(const x of u)x.testFile&&(f[x.testFile]=q.existsSync(B.join(e,x.testFile)));const g={};for(const x of u)if(!(!x.testFile||!f[x.testFile]))try{const b=await gc(e,x.testFile),w=b.status==="passed",v=b.testCases.some(C=>C.fullName.startsWith(x.name));g[x.testFile]={passing:w,hasEntityNameDescribe:v}}catch{g[x.testFile]={passing:!1,hasEntityNameDescribe:!1}}const y=Ab({components:m,functions:u,scenarioCounts:p,testFileExistence:f,testResults:g,clientErrors:h});return Response.json(y)}const $b=Object.freeze(Object.defineProperty({__proto__:null,loader:Mb},Symbol.toStringTag,{value:"Module"}));async function Ib({request:e}){try{const t=await e.json(),{pid:r,signal:s="SIGTERM",commitSha:a}=t;if(!r||typeof r!="number")return Response.json({error:"Missing or invalid pid parameter"},{status:400});if(!ci(r))return Response.json({error:"Process not running",pid:r},{status:404});try{process.kill(r,s)}catch(u){return Response.json({error:"Failed to kill process",pid:r,details:u instanceof Error?u.message:String(u)},{status:500})}const i=3e4,l=500,c=Date.now();let m=!0;for(;m&&Date.now()-c<i;)await new Promise(u=>setTimeout(u,l)),m=ci(r);if(m){console.warn(`Process ${r} didn't die after SIGTERM, sending SIGKILL`);try{process.kill(r,"SIGKILL"),await new Promise(u=>setTimeout(u,2e3))}catch(u){console.error(`Failed to SIGKILL process ${r}:`,u)}}if(a)try{await Dt({commitSha:a,runStatusUpdate:{analyzerPid:void 0,capturePid:void 0,failedAt:new Date().toISOString(),failureReason:`Process ${r} killed by user`}})}catch(u){console.error("Failed to update database after killing process:",u)}return Response.json({success:!0,pid:r,signal:s,message:`Process ${r} killed successfully`,waitedMs:Date.now()-c})}catch(t){return console.error("Error in kill-process API:",t),Response.json({error:"Internal server error",details:t instanceof Error?t.message:String(t)},{status:500})}}function ci(e){try{return process.kill(e,0),!0}catch{return!1}}const Rb=Object.freeze(Object.defineProperty({__proto__:null,action:Ib},Symbol.toStringTag,{value:"Module"})),Db=os(import.meta.url),Ob=X.dirname(Db),Lb=X.resolve(Ob,"../../../../src/utils/ruleReflection/__tests__/fixtures/captured");function Fb(e){const t=[],r=new Set;for(const s of e.split(`
342
- `)){const a=s.trim();if(!a)continue;let o;try{o=JSON.parse(a)}catch{continue}if(o.type!=="assistant")continue;const i=o.message;if(!(!i||!Array.isArray(i.content)))for(const l of i.content){if(typeof l!="object"||l===null)continue;const c=l;if(c.type!=="tool_use")continue;const m=String(c.name||""),u=c.input||{};if(m==="Write"||m==="Edit"){const p=String(u.file_path||"");if(p.includes(".claude/rules/")){const h=p.replace(/^.*?(\.claude\/rules\/)/,"$1"),f=`${m}:${h}`;r.has(f)||(r.add(f),t.push({action:m==="Write"?"created":"modified",filePath:h}))}}else if(m==="Bash"){const p=String(u.command||"");if(p.includes("codeyam memory touch")){const h=`touch:${p}`;r.has(h)||(r.add(h),t.push({action:"touched",filePath:p}))}}}}return t}async function zb({request:e}){if(e.method!=="POST")return Response.json({error:"Method not allowed"},{status:405});try{const t=await e.json(),{sessionId:r}=t;if(!r)return Response.json({error:"Missing required field: sessionId"},{status:400});const s=await xc(),a=s?X.join(Or,s):null;let o=a?X.join(a,`${r}.log`):"";if((!o||!Rt(o))&&(o=X.join(Or,`${r}.log`)),!Rt(o))return Response.json({error:`Log file not found: ${r}.log`},{status:404});const i=await aa(o,"utf-8");let l=a?X.join(a,`${r}.context`):"";(!l||!Rt(l))&&(l=X.join(Or,`${r}.context`));let c=null;if(Rt(l))try{c=await aa(l,"utf-8")}catch{}const m=Fb(i),p=c?["no,","no ","that's not","wrong","incorrect","actually,","actually ","i meant","i mean","not what i","stop","wait","don't do","shouldn't","try again","that broke","that failed","error","bug"].some(x=>c.toLowerCase().includes(x)):!1,h=r.endsWith("-stale")?"-stale":r.endsWith("-conversation")?"-conv":r.endsWith("-interruption")?"-int":"",f=r.slice(0,8)+h,g=X.join(Lb,f);await Hd(g,{recursive:!0}),await Gn(X.join(g,"agent-log.jsonl"),i),c&&await Gn(X.join(g,"context.md"),c),await Gn(X.join(g,"rule-changes.json"),JSON.stringify(m,null,2)),await Gn(X.join(g,"metadata.json"),JSON.stringify({sessionId:r,capturedAt:new Date().toISOString(),hasConfusion:p,ruleChangeCount:m.length},null,2));const y=X.relative(process.cwd(),g);return console.log(`[api.save-fixture] Saved fixture to ${y}`),Response.json({success:!0,fixturePath:y})}catch(t){return console.error("[api.save-fixture] Error:",t),Response.json({error:"Failed to save fixture",details:t instanceof Error?t.message:String(t)},{status:500})}}const Bb=Object.freeze(Object.defineProperty({__proto__:null,action:zb},Symbol.toStringTag,{value:"Module"}));async function Yb({params:e}){const t=e["*"];if(!t)return new Response("Screenshot path is required",{status:400});const r=ye();if(!r)return console.error("[screenshot api] Project root not found"),new Response("Project root not found",{status:500});const s=X.join(r,".codeyam","captures","screenshots",t);try{await Se.access(s);const a=await Se.readFile(s),o=X.extname(s).toLowerCase(),i=o===".png"?"image/png":o===".jpg"||o===".jpeg"?"image/jpeg":"application/octet-stream";return new Response(a,{status:200,headers:{"Content-Type":i,"Cache-Control":"public, max-age=3600"}})}catch{return new Response("Screenshot not found",{status:404})}}const Ub=Object.freeze(Object.defineProperty({__proto__:null,loader:Yb},Symbol.toStringTag,{value:"Module"})),di={visual:{label:"VISUAL",bgColor:"#f9f9f9",textColor:"#9040f5"},library:{label:"LIBRARY",bgColor:"#f9f9f9",textColor:"#06b6d5"},type:{label:"TYPE",bgColor:"#ffe1e1",textColor:"#db2627"},other:{label:"OTHER",bgColor:"#f9f9f9",textColor:"#646464"}};function lo({type:e,className:t=""}){const r=di[e]||di.other;return n("div",{className:`inline-flex items-center justify-center px-[4px] rounded-[4px] ${t}`,style:{backgroundColor:r.bgColor,color:r.textColor,height:"15px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-semibold leading-[15px] uppercase",children:r.label})})}const Wb={analyzer:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},capture:{bgColor:"#e1e1e1",textColor:"#3e3e3e",borderColor:"#e1e1e1"},running:{bgColor:"#e8ffe6",textColor:"#00925d",borderColor:"#c3f3bf"},error:{bgColor:"#fee2e2",textColor:"#991b1b",borderColor:"#fecaca"}};function Tr({variant:e,pid:t,label:r,className:s=""}){const a=Wb[e],o=r||(e==="analyzer"&&t?`Analyzer: ${t}`:e==="capture"&&t?`Capture: ${t}`:e==="running"?"Running":e==="error"?"Error":"");return n("div",{className:`inline-flex items-center justify-center px-[8px] rounded-[4px] ${s}`,style:{backgroundColor:a.bgColor,borderWidth:"1px",borderStyle:"solid",borderColor:a.borderColor,height:"20px"},children:n("span",{className:"font-['IBM_Plex_Sans']",style:{fontSize:"10px",fontWeight:400,lineHeight:"15px",color:a.textColor},children:o})})}let ui=!1;function Jb(){if(ui)return;const e=document.createElement("style");e.textContent=`
343
- @keyframes strongPulse {
344
- 0%, 100% { opacity: 0.2; }
345
- 50% { opacity: 1; }
346
- }
347
- `,document.head.appendChild(e),ui=!0}function co({size:e="medium",className:t=""}){typeof document<"u"&&Jb();const r={small:{sideDotSize:3,centerDotSize:4,gap:2},medium:{sideDotSize:4,centerDotSize:6,gap:2},large:{sideDotSize:6,centerDotSize:8,gap:3}},{sideDotSize:s,centerDotSize:a,gap:o}=r[e];return d("div",{className:`flex items-center justify-center ${t}`,style:{gap:`${o}px`},role:"status","aria-label":"Loading",children:[n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0s"}}),n("div",{className:"rounded-full",style:{width:`${a}px`,height:`${a}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.3s"}}),n("div",{className:"rounded-full",style:{width:`${s}px`,height:`${s}px`,backgroundColor:"#005c75",animation:"strongPulse 1.5s ease-in-out infinite",animationDelay:"0.6s"}})]})}const Hb=()=>[{title:"Activity - CodeYam"},{name:"description",content:"View analysis activity and queue status"}];async function Vb({request:e,context:t,params:r}){var z,U,O,_,Y,Q,K,ae;let s=t.analysisQueue;s||(s=await Pt());const a=new URL(e.url),o=parseInt(a.searchParams.get("page")||"1",10),i=20,l=r.tab||"current";if(!s)return Z({error:"Queue not initialized",state:{paused:!1,jobs:[]},currentRun:void 0,historicalRuns:[],totalHistoricalRuns:0,currentPage:o,totalPages:0,projectSlug:null,commitSha:void 0,queueJobs:[],currentlyExecuting:null,currentEntities:[],tab:l,hasCurrentActivity:!1,queuedCount:0,recentCompletedEntities:[],hasMoreCompletedRuns:!1,currentEntityScenarios:[],currentEntityForScenarios:null,currentAnalysisStatus:null},{status:500});const c=s.getState(),m=await De();let u=null;if(m&&((z=c==null?void 0:c.currentlyExecuting)!=null&&z.commitSha)){const{project:J,branch:D}=await Oe(m),W=await Vr({projectId:J.id,branchId:D.id,shas:[c.currentlyExecuting.commitSha]});u=W&&W.length>0?W[0]:null}else u=await Pn();const p=async J=>{const D=await an(J);if(!D)return null;const{getAnalysesForEntity:W}=await Promise.resolve().then(()=>dp),G=await W(J,!1);return{...D,analyses:G||[]}},h=await Promise.all(((c==null?void 0:c.jobs)||[]).map(async J=>{const D=[];if(J.entityShas&&J.entityShas.length>0){const W=J.entityShas.map(ne=>p(ne)),G=await Promise.all(W);D.push(...G.filter(ne=>ne!==null))}return{...J,entities:D}}));let f=null;if(c!=null&&c.currentlyExecuting){const J=c.currentlyExecuting,D=[];if(J.entityShas&&J.entityShas.length>0){const W=J.entityShas.map(ne=>p(ne)),G=await Promise.all(W);D.push(...G.filter(ne=>ne!==null))}f={...J,entities:D}}const g=f?h.filter(J=>J.id!==f.id):h,y=((O=(U=u==null?void 0:u.metadata)==null?void 0:U.currentRun)==null?void 0:O.currentEntityShas)||[],b=(await Promise.all(y.map(J=>p(J)))).filter(J=>J!==null),w=[];if(m)try{const{project:J,branch:D}=await Oe(m),W=await Vr({projectId:J.id,branchId:D.id,limit:100});for(const G of W){const ne=((_=G.metadata)==null?void 0:_.historicalRuns)||[];w.push(...ne)}}catch(J){console.error("[activity.tsx] Failed to load historical runs from commits:",J)}const v=[...w].sort((J,D)=>{const W=J.lastCaptureAt||J.analysisCompletedAt||J.archivedAt||J.createdAt||"";return(D.lastCaptureAt||D.analysisCompletedAt||D.archivedAt||D.createdAt||"").localeCompare(W)}),C=(o-1)*i,A=C+i,S=v.slice(C,A),E=Math.ceil(v.length/i),N=await Promise.all(S.map(async J=>{const D=J.currentEntityShas||[];if(D.length===0)return{...J,entities:[]};const W=await Promise.all(D.map(G=>p(G)));return{...J,entities:W.filter(G=>G!==null)}})),k=!!f,j=g.length,T=v.filter(J=>{const D=!!J.failedAt,W=J.readyToBeCaptured,G=J.capturesCompleted??0,ne=W===void 0?!0:W===0||G>=W;return!D&&!!J.analysisCompletedAt&&ne}),P=new Set(((Y=f==null?void 0:f.entities)==null?void 0:Y.map(J=>J.sha))||[]),R=T.filter(J=>!(J.currentEntityShas||[]).some(W=>P.has(W))),$=(await Promise.all(R.slice(0,3).map(async J=>{const D=J.currentEntityShas||[];if(D.length===0)return{run:J,entities:[]};const W=await Promise.all(D.map(G=>p(G)));return{run:J,entities:W.filter(G=>G!==null)}}))).flatMap(({run:J,entities:D})=>D.map(W=>({...W,runId:J.id,completedAt:J.lastCaptureAt||J.analysisCompletedAt||J.archivedAt||J.createdAt})));let L=[],H=null,F=null;if((K=(Q=u==null?void 0:u.metadata)==null?void 0:Q.currentRun)!=null&&K.analysisCompletedAt&&b.length>0){const J=b[0].sha;H=b[0];const D=await ms(J);D&&D.length>0&&D[0].scenarios&&(L=D[0].scenarios,F=D[0].status)}return Z({state:{...c,jobs:g,currentlyExecuting:f},currentRun:(ae=u==null?void 0:u.metadata)==null?void 0:ae.currentRun,historicalRuns:N,totalHistoricalRuns:v.length,currentPage:o,totalPages:E,projectSlug:m,commitSha:u==null?void 0:u.sha,queueJobs:g,currentlyExecuting:f,currentEntities:b,tab:l,hasCurrentActivity:k,queuedCount:j,recentCompletedEntities:$,hasMoreCompletedRuns:R.length>3,currentEntityScenarios:L,currentEntityForScenarios:H,currentAnalysisStatus:F})}function Gb({activeTab:e,hasCurrentActivity:t,queuedCount:r,historicCount:s}){const a=[{id:"current",label:"Current Activity",hasContent:t,count:t?1:null},{id:"queued",label:"Queued Activity",hasContent:r>0,count:r},{id:"historic",label:"Historic Activity",hasContent:s>0,count:s}];return n("div",{className:"border-b border-gray-200 mb-6",children:n("nav",{className:"flex gap-8",children:a.map(o=>{const i=e===o.id;return n(fe,{to:o.id==="current"?"/activity":`/activity/${o.id}`,className:`
348
- relative pb-4 px-2 text-sm transition-colors cursor-pointer
349
- ${i?"font-medium border-b-2":"font-normal hover:text-gray-700"}
350
- `,style:i?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[o.label,o.count!==null&&o.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${i?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:o.count}),o.count===null&&o.hasContent&&n("span",{className:`
351
- inline-block w-2 h-2 rounded-full
352
- ${i?"":"bg-gray-400"}
353
- `,style:i?{backgroundColor:"#005C75"}:{}})]})},o.id)})})})}function qb({currentlyExecuting:e,currentRun:t,state:r,projectSlug:s,commitSha:a,onShowLogs:o,recentCompletedEntities:i,hasMoreCompletedRuns:l,currentEntityScenarios:c,currentEntityForScenarios:m,currentAnalysisStatus:u}){var I,$,L,H;const[p,h]=M({}),[f,g]=M({isKilling:!1,current:0,total:0}),y=Ct(),x=!!e,b=(e==null?void 0:e.entities)||[],w=!!(t!=null&&t.analysisCompletedAt),v=w&&!!(t!=null&&t.capturePid),C=!w,A=x,S=c||[],{lastLine:E}=kt(s,A);te(()=>{if(!t)return;const F=[t.analyzerPid,t.capturePid].filter(_=>!!_);if(F.length===0)return;let z=!0;const U=async()=>{try{const Y=await(await fetch(`/api/process-status?pids=${F.join(",")}`)).json();if(Y.processes&&z){const Q={};Y.processes.forEach(K=>{Q[K.pid]={isRunning:K.isRunning,processName:K.processName}}),h(Q)}}catch(_){z&&console.error("Failed to fetch process statuses:",_)}};U();const O=setInterval(()=>void U(),5e3);return()=>{z=!1,clearInterval(O)}},[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid]);const[N,k]=M(!1),[j,T]=M(!1);te(()=>{b.length<=3&&N&&k(!1)},[b.length,N]),te(()=>{i.length<=3&&j&&T(!1)},[i.length,j]);const P=N?b:b.slice(0,3),R=b.length>3;return d("div",{className:"flex flex-col gap-[45px]",children:[A?d("div",{className:"rounded-[10px] p-[15px]",style:{backgroundColor:"#f6f9fc",border:"1px solid #e0e9ec"},children:[d("div",{className:"flex items-center gap-2 mb-[15px]",children:[n(mt,{size:14,strokeWidth:2.5,className:"animate-spin",style:{color:"#005c75"}}),n("span",{className:"font-medium",style:{fontSize:"14px",lineHeight:"18px",color:"#005c75"},children:v?"Capturing...":"Analyzing..."})]}),P.map(F=>d("div",{className:"bg-white border border-[#e1e1e1] rounded-[4px] mb-[15px]",style:{height:"60px",padding:"0 15px",display:"flex",alignItems:"center",justifyContent:"space-between",boxShadow:"0 1px 3px 0 rgb(0 0 0 / 0.1)"},children:[d("div",{className:"flex items-center gap-3",children:[n("div",{children:n(nt,{type:F.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col gap-[1px]",children:[d("div",{className:"flex items-center gap-[14px]",children:[n(fe,{to:`/entity/${F.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:F.name}),F.entityType&&n(lo,{type:F.entityType})]}),n("div",{className:"truncate font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",width:"422px"},title:F.filePath,children:F.filePath})]})]}),n("button",{onClick:o,className:"px-[10px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},children:"View Logs"})]},F.sha)),R&&!N&&d("button",{onClick:()=>k(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",b.length-3," more"," ",b.length-3===1?"entity":"entities"]}),N&&R&&n("button",{onClick:()=>k(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] mb-[15px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"}),v&&S&&S.length>0&&m&&n("div",{className:"flex gap-[10px] overflow-x-auto mb-[15px]",children:S.map(F=>{var K,ae,J,D;if(!F.id)return null;const z=(ae=(K=F.metadata)==null?void 0:K.screenshotPaths)==null?void 0:ae[0],U=(J=F.metadata)==null?void 0:J.noScreenshotSaved,O=z&&!U,_=(D=u==null?void 0:u.scenarios)==null?void 0:D.find(W=>W.name===F.name),Q=_&&_.screenshotStartedAt&&!_.screenshotFinishedAt||!O&&!U;return n(fe,{to:`/entity/${m.sha}/scenarios/${F.id}`,className:"border border-solid rounded-[6px] overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"160px",height:"90px",backgroundColor:Q?"#f9f9f9":void 0,borderColor:Q?"#efefef":"#ccc"},children:O?n(Ge,{screenshotPath:z,alt:F.name,className:"w-full h-full object-contain bg-gray-100"}):Q?n("div",{className:"w-full h-full flex items-center justify-center",children:n(co,{size:"medium"})}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},F.id)})}),E&&n("div",{className:"mb-[15px] font-['IBM_Plex_Mono']",style:{fontSize:"12px",lineHeight:"20px",fontWeight:500,color:"#005c75"},children:E}),n("div",{className:"mb-[15px]",style:{height:"1px",backgroundColor:"#e0e9ec"}}),((t==null?void 0:t.analyzerPid)||(t==null?void 0:t.capturePid))&&d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-2",children:[d("span",{style:{fontSize:"12px",lineHeight:"15px",fontWeight:400,color:"#000"},children:["Running Processes:"," "]}),(t==null?void 0:t.analyzerPid)&&n(Tr,{variant:"analyzer",pid:t.analyzerPid}),(t==null?void 0:t.analyzerPid)&&(C||((I=p[t.analyzerPid])==null?void 0:I.isRunning))&&n(Tr,{variant:"running"}),(t==null?void 0:t.capturePid)&&n(Tr,{variant:"capture",pid:t.capturePid}),(t==null?void 0:t.capturePid)&&(v||(($=p[t.capturePid])==null?void 0:$.isRunning))&&n(Tr,{variant:"running"})]}),(((L=p[t==null?void 0:t.analyzerPid])==null?void 0:L.isRunning)||((H=p[t==null?void 0:t.capturePid])==null?void 0:H.isRunning))&&n("button",{onClick:()=>{const F=[t==null?void 0:t.analyzerPid,t==null?void 0:t.capturePid].filter(O=>{var _;return!!O&&((_=p[O])==null?void 0:_.isRunning)});if(F.length===0)return;const z=F.join(", ");if(!confirm(`Are you sure you want to kill all running processes (${z})?`))return;g({isKilling:!0,current:1,total:F.length}),(async()=>{for(let O=0;O<F.length;O++){const _=F[O];try{await fetch("/api/kill-process",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({pid:_,commitSha:a||""})})}catch(Y){console.error(`Failed to kill process ${_}:`,Y)}O<F.length-1&&g({isKilling:!0,current:O+2,total:F.length})}g({isKilling:!1,current:0,total:0}),y.revalidate()})()},disabled:f.isKilling,className:"px-[8px] rounded-[4px] transition-colors whitespace-nowrap cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed",style:{backgroundColor:"#991b1b",color:"white",fontSize:"12px",lineHeight:"15px",fontWeight:500,height:"27px",width:"114px"},children:f.isKilling?"Killing...":"Kill All Processes"})]})]}):d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(Hi,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Current Activity"}),d("p",{className:"text-sm",style:{color:"#8e8e8e"},children:["There are no analyses running. Trigger one from"," ",n(fe,{to:"/git",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Git"})," ","or"," ",n(fe,{to:"/files",className:"text-[#005C75] hover:underline font-medium cursor-pointer",children:"Files"}),"."]})]})]}),d(fe,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]}),i&&i.length>0&&d("div",{children:[n("h3",{className:"font-mono uppercase",style:{fontSize:"12px",lineHeight:"18px",color:"#8e8e8e",marginBottom:"16px",fontWeight:500,letterSpacing:"0.05em"},children:"Recently Completed Analyses"}),d("div",{className:"flex flex-col gap-4",children:[(j?i:i.slice(0,3)).map(F=>{var O;const z=(O=F.analyses)==null?void 0:O[0],U=(z==null?void 0:z.scenarios)||[];return z==null||z.status,n("div",{className:"rounded-[8px] p-[15px]",style:{backgroundColor:"#ffffff",border:"1px solid #aff1a9"},children:d("div",{className:"flex flex-col gap-[15px]",children:[d("div",{className:"flex items-center",children:[n("div",{className:"flex-shrink-0",children:n(nt,{type:F.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[n(fe,{to:`/entity/${F.sha}`,className:"hover:underline cursor-pointer",title:F.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:F.name}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:"#e8ffe6",color:"#00925d",fontSize:"12px",lineHeight:"16px",fontWeight:400},children:F.isUncommitted?"Modified":"Up to date"})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e",fontWeight:400},className:"font-mono",title:F.filePath,children:F.filePath})]}),n("div",{className:"flex-1"}),n("div",{className:"flex-shrink-0",children:n("button",{onClick:o,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:_=>{_.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:_=>{_.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})})]}),n("div",{className:"border-t border-gray-200 mx-[-15px]"}),U.length>0?n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:U.map(_=>{var ae,J,D;if(!_.id)return null;const Y=(J=(ae=_.metadata)==null?void 0:ae.screenshotPaths)==null?void 0:J[0],Q=(D=_.metadata)==null?void 0:D.noScreenshotSaved,K=Y&&!Q;return d("div",{className:"shrink-0 flex flex-col gap-2",children:[n(fe,{to:`/entity/${F.sha}/scenarios/${_.id}`,className:"block cursor-pointer",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{backgroundColor:K?"#f3f4f6":"#FAFAFA",borderColor:K?"#d1d5db":"#BCCDD3",borderStyle:K?"solid":"dashed"},onMouseEnter:W=>{K&&(W.currentTarget.style.borderColor="#005C75",W.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:W=>{W.currentTarget.style.borderColor=K?"#d1d5db":"#BCCDD3",W.currentTarget.style.boxShadow="none"},children:K?n(Ge,{screenshotPath:Y,alt:_.name,className:"max-w-full max-h-full object-contain"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})})}),n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:_.name})]},_.id)})}):n("div",{className:"italic",style:{fontSize:"12px",color:"#646464",marginLeft:"49px"},children:"No scenarios available"})]})},F.sha)}),i.length>3&&!j&&d("button",{onClick:()=>T(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",i.length-3," more"," ",i.length-3===1?"entity":"entities"]}),j&&i.length>3&&n("button",{onClick:()=>T(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})]})}function Kb({queueJobs:e,state:t,currentRun:r}){if(!e||e.length===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(kd,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Queued Jobs"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Analysis jobs will appear here when they are queued but not yet started."})]})]}),d(fe,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[s,a]=M(null),[o,i]=M(null),[l,c]=M(null),[m,u]=M(!1),[p,h]=M(!1),[f,g]=M(new Set),y=Ct();te(()=>{e.length<=3&&p&&h(!1)},[e.length,p]);const x=S=>{a(S)},b=(S,E)=>{S.preventDefault(),i(E)},w=async(S,E)=>{if(S.preventDefault(),!s){i(null);return}const N=e.findIndex(T=>T.id===s);if(N===-1){a(null),i(null);return}if(N===E){a(null),i(null);return}const k=N<E?"down":"up",j=Math.abs(E-N);u(!0);try{for(let T=0;T<j;T++)await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"reorder",jobId:s,direction:k})});y.revalidate()}catch(T){console.error("Failed to reorder job:",T)}finally{u(!1),a(null),i(null)}},v=()=>{m||(a(null),i(null))},C=async S=>{if(confirm("Are you sure you want to cancel this job?"))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"remove",jobId:S})}),window.location.reload()}catch(E){console.error("Failed to cancel job:",E)}},A=async()=>{if(confirm(`Are you sure you want to cancel all ${e.length} queued jobs?`))try{await fetch("/api/queue",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}),window.location.reload()}catch(S){console.error("Failed to cancel jobs:",S)}};return d("div",{children:[d("div",{className:"flex items-center justify-between mb-4",children:[d("h3",{className:"font-semibold",style:{fontSize:"16px",lineHeight:"24px",color:"#343434"},children:[e.length," Queued Job",e.length!==1?"s":""]}),e.length>0&&n("button",{onClick:()=>void A(),className:"px-[10px] py-0 rounded transition-colors cursor-pointer hover:bg-red-300",style:{backgroundColor:"#ffdcd9",color:"#ef4444",fontSize:"12px",fontWeight:500,height:"29px"},children:"Cancel All"})]}),d("div",{className:"flex flex-col gap-3",children:[(p?e:e.slice(0,3)).map(S=>{var R,I,$,L;const E=e.findIndex(H=>H.id===S.id),N=l===E,k=s===S.id,j=o===E,T=f.has(S.id),P=((R=S.entities)==null?void 0:R.length)>0?T?S.entities:S.entities.slice(0,3):[];return d("div",{className:"rounded-lg p-4 relative",style:{backgroundColor:"#f6f9fc",border:"1px solid #005C75",opacity:k||m?.5:1,transform:j&&s!==null&&!k?"translateY(-2px)":"translateY(0)",transition:"transform 0.2s ease, opacity 0.2s ease",cursor:m?"not-allowed":k?"grabbing":"grab"},onMouseEnter:()=>c(E),onMouseLeave:()=>c(null),draggable:!m,onDragStart:H=>{x(S.id),H.dataTransfer.effectAllowed="move"},onDragOver:H=>b(H,E),onDrop:H=>void w(H,E),onDragEnd:v,children:[d("div",{className:"absolute left-4 top-4 flex items-center gap-1.5 flex-shrink-0",children:[n(Ed,{size:16,style:{color:"#005C75"}}),d("span",{style:{fontSize:"14px",fontWeight:500,lineHeight:"18px",color:"#005C75"},children:["Job ",E+1]})]}),d("div",{className:"flex flex-col gap-2 mt-8",children:[P.length>0?d(pe,{children:[P.map(H=>n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{children:n(nt,{type:H.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(fe,{to:`/entity/${H.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:H.name}),H.entityType&&n(lo,{type:H.entityType})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:H.filePath})]})]})})},H.sha)),((I=S.entities)==null?void 0:I.length)>3&&n("button",{onClick:()=>{g(H=>{const F=new Set(H);return F.has(S.id)?F.delete(S.id):F.add(S.id),F})},className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"40px",fontSize:"12px",color:"#646464",fontWeight:500},children:T?"Show less":`+${S.entities.length-3} more ${S.entities.length-3===1?"entity":"entities"}`})]}):n("div",{className:"bg-white rounded",style:{border:"1px solid #e1e1e1",height:"60px"},children:n("div",{className:"flex items-center justify-between h-full px-[15px]",children:d("div",{className:"flex items-center gap-3 flex-1",children:[n("div",{style:{transform:"scale(1.0)"},children:n(Ur,{size:18,style:{color:"#8e8e8e"}})}),d("div",{className:"flex-1",children:[n("div",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#000"},children:(($=S.entityNames)==null?void 0:$[0])||(S.type==="analysis"?"Analysis Job":S.type==="recapture"?"Recapture Job":S.type==="debug-setup"?"Debug Setup":S.type.charAt(0).toUpperCase()+S.type.slice(1))}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},children:((L=S.filePaths)==null?void 0:L[0])||(S.filePaths&&S.filePaths.length>1?`${S.filePaths.length} files`:S.entityShas&&S.entityShas.length>0?`${S.entityShas.length} ${S.entityShas.length===1?"entity":"entities"}`:"Queued for processing")})]})]})})}),d("div",{className:"flex items-center justify-end gap-2 mt-1",children:[N&&n("div",{className:"cursor-grab active:cursor-grabbing",style:{color:"#8e8e8e"},title:"Drag to reorder",children:n(_d,{size:20})}),n("button",{onClick:()=>void C(S.id),className:"transition-colors cursor-pointer hover:bg-red-100 rounded flex items-center justify-center",style:{fontSize:"10px",fontWeight:600,lineHeight:"22px",color:"#ef4444",backgroundColor:"#fef6f6",padding:"0 10px",height:"22px"},children:"Cancel"})]})]})]},S.id)}),e.length>3&&!p&&d("button",{onClick:()=>h(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",e.length-3," more"," ",e.length-3===1?"job":"jobs"]}),p&&e.length>3&&n("button",{onClick:()=>h(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})]})}function Qb({historicalRuns:e,totalHistoricalRuns:t,currentPage:r,totalPages:s,tab:a,onShowLogs:o}){if(t===0)return d("div",{className:"border border-dashed border-[#BCCDD3] rounded-xl p-6 flex items-center justify-between",style:{backgroundColor:"#EDEFF0",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px)",backgroundSize:"20px 20px",borderWidth:"1px",borderStyle:"dashed"},children:[d("div",{className:"flex items-center gap-4",children:[n("div",{className:"w-12 h-12 bg-[#DEE3E5] border border-[#BBCCD3] rounded-full flex items-center justify-center flex-shrink-0",children:n(Ad,{size:24,style:{color:"#005C75"}})}),d("div",{children:[n("h3",{className:"text-base font-medium mb-1",style:{color:"#3E3E3E"},children:"No Historic Activity"}),n("p",{className:"text-sm",style:{color:"#8e8e8e"},children:"Completed analyses will appear here for historical reference."})]})]}),d(fe,{to:"/files",className:"px-4 py-2 bg-[#005C75] text-white rounded-lg text-sm font-medium hover:bg-[#004a5e] transition-colors flex items-center gap-2 whitespace-nowrap no-underline",children:[n("span",{children:"+"}),n("span",{children:"New Analysis"})]})]});const[i,l]=M(!1),c=[];e.forEach(u=>{u.entities&&u.entities.length>0&&u.entities.forEach(p=>{c.push({...p,runCreatedAt:u.createdAt})})});const m=i?c:c.slice(0,3);return d("div",{className:"flex flex-col gap-4",children:[m.map(u=>{var g;const p=(g=u.analyses)==null?void 0:g[0],h=(p==null?void 0:p.scenarios)||[],f=!u.isUncommitted;return d("div",{className:"rounded-lg p-4",style:{backgroundColor:f?"#ffffff":"#fef9e7",border:"1px solid",borderColor:f?"#aff1a9":"#f9d689"},children:[d("div",{className:"flex items-start justify-between mb-3",children:[d("div",{className:"flex items-start gap-3 flex-1",children:[n("div",{children:n(nt,{type:u.entityType||"other",size:"large"})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(fe,{to:`/entity/${u.sha}`,className:"hover:underline cursor-pointer",style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:"#343434"},children:u.name}),n("div",{className:"px-2 py-0.5 rounded",style:{backgroundColor:f?"#e8ffe6":"#fef3cd",color:f?"#00925d":"#a16207",fontSize:"12px",fontWeight:400},children:f?"Up to date":"Out of date"})]}),n("div",{className:"font-mono",style:{fontSize:"12px",lineHeight:"15px",color:"#8e8e8e"},title:u.filePath,children:u.filePath})]})]}),n("button",{onClick:o,className:"px-3 py-1 rounded transition-colors whitespace-nowrap cursor-pointer",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",fontWeight:600},children:"View Logs"})]}),h.length>0&&d("div",{className:"flex gap-2 overflow-x-auto",style:{marginLeft:"44px"},children:[h.slice(0,8).map(y=>{var v,C,A;if(!y.id)return null;const x=(C=(v=y.metadata)==null?void 0:v.screenshotPaths)==null?void 0:C[0],b=(A=y.metadata)==null?void 0:A.noScreenshotSaved,w=x&&!b;return n(fe,{to:`/entity/${u.sha}/scenarios/${y.id}`,className:"border rounded overflow-hidden flex-shrink-0 cursor-pointer",style:{width:"120px",height:"80px",borderColor:w?"#ccc":"#BCCDD3",borderStyle:w?"solid":"dashed"},children:w?n(Ge,{screenshotPath:x,alt:y.name,className:"w-full h-full object-cover bg-gray-100"}):n("div",{className:"w-full h-full flex items-center justify-center font-mono",style:{backgroundColor:"#FAFAFA",backgroundImage:"radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px)",backgroundSize:"20px 20px",color:"#b0b0b0",fontSize:"11px"},children:"No preview"})},y.id)}),h.length>8&&d("div",{className:"flex items-center justify-center flex-shrink-0",style:{width:"120px",height:"80px",fontSize:"12px",color:"#646464"},children:["+",h.length-8," more"]})]})]},`${u.sha}-${u.runCreatedAt}`)}),c.length>3&&!i&&d("button",{onClick:()=>l(!0),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:["+",c.length-3," more"," ",c.length-3===1?"entity":"entities"]}),i&&c.length>3&&n("button",{onClick:()=>l(!1),className:"flex items-center justify-center bg-gray-50 border border-gray-200 rounded-[4px] hover:bg-gray-100 hover:border-gray-300 transition-colors cursor-pointer w-full",style:{height:"60px",fontSize:"14px",color:"#646464",fontWeight:500},children:"Show less"})]})}const Zb=Ye(function(){const t=He(),r=Ui(),[s,a]=M(!1);gt({source:"activity-page"});const o=r.tab||"current";return t?d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Activity"}),n("p",{className:"text-[15px] text-gray-500",children:"View queued, current, and historical analysis activity."})]}),n(Gb,{activeTab:o,hasCurrentActivity:t.hasCurrentActivity,queuedCount:t.queuedCount,historicCount:t.totalHistoricalRuns}),o==="current"&&n(qb,{currentlyExecuting:t.currentlyExecuting,currentRun:t.currentRun,state:t.state,projectSlug:t.projectSlug,commitSha:t.commitSha,onShowLogs:()=>a(!0),recentCompletedEntities:t.recentCompletedEntities||[],hasMoreCompletedRuns:t.hasMoreCompletedRuns||!1,currentEntityScenarios:t.currentEntityScenarios||[],currentEntityForScenarios:t.currentEntityForScenarios,currentAnalysisStatus:t.currentAnalysisStatus}),o==="queued"&&n(Kb,{queueJobs:t.queueJobs,state:t.state,currentRun:t.currentRun}),o==="historic"&&n(Qb,{historicalRuns:t.historicalRuns,totalHistoricalRuns:t.totalHistoricalRuns,currentPage:t.currentPage,totalPages:t.totalPages,tab:o,onShowLogs:()=>a(!0)}),s&&t.projectSlug&&n(Ot,{projectSlug:t.projectSlug,onClose:()=>a(!1)})]}):n("div",{className:"px-20 py-12",children:n("div",{className:"text-center",children:n("p",{className:"text-gray-600",children:"Loading..."})})})}),Xb=Object.freeze(Object.defineProperty({__proto__:null,default:Zb,loader:Vb,meta:Hb},Symbol.toStringTag,{value:"Module"}));async function kc(e,t,r){var C,A;await Fe();const s=await _t({id:e,includeScenarios:!0,includeCommitAndBranch:!0});if(!s)throw new Error(`Analysis ${e} not found`);if(!s.commit)throw new Error(`Commit not found for analysis ${e}`);const a=ye();if(!a)throw new Error("Project root not found");const o=B.join(a,".codeyam","config.json"),i=JSON.parse(q.readFileSync(o,"utf8")),{projectSlug:l}=i;if(!l)throw new Error("Project slug not found in config");const c=gs(l);try{q.writeFileSync(c,"","utf8")}catch{}const{project:m}=await Oe(l),u=((C=m.metadata)==null?void 0:C.packageManager)||"npm",p=3112,h=ht(l),f=((A=m.metadata)==null?void 0:A.webapps)||[];if(f.length===0)throw new Error(`No webapps found in project metadata for project ${l}`);const g=i.environmentVariables||[],y=Sm({filePath:s.filePath,webapps:f,environmentVariables:g,port:p,packageManager:u});await An(e,S=>{if(S&&(S.readyToBeCaptured=!0,S.scenarios))for(const E of S.scenarios)(!t||E.name===t)&&(delete E.screenshotStartedAt,delete E.screenshotFinishedAt,delete E.interactiveStartedAt,delete E.interactiveFinishedAt,delete E.error,delete E.errorStack)});const{jobId:x}=r.enqueue({type:"debug-setup",commitSha:s.commit.sha,projectSlug:l,analysisId:e,scenarioId:t,prepOnly:!0}),b=y.startCommand,w={title:"Debug Setup In Progress",sections:[{heading:"Status",items:[{content:"Setting up debug environment... This may take a minute."},{label:"Project Path",content:h}]},{heading:"What's Happening",items:[{content:"1. Preparing analyzer and dependencies"},{content:"2. Syncing project files"},{content:"3. Setting up mock environment"}]},{heading:"Next Steps (Once Complete)",items:[{label:"1. Open the project directory",content:`code ${h}`,isCode:!0},{label:"2. Start the development server (copy & paste this exact command)",content:b,isCode:!0},{label:"3. View the scenario in your browser",content:`http://localhost:${p}/static/codeyam-sample`,isLink:!0}]}]};return{success:!0,jobId:x,analysisId:e,scenarioId:t,projectPath:h,projectSlug:l,port:p,packageManager:u,framework:y.framework,instructions:w}}async function ew({request:e,context:t}){const r=new URL(e.url),s=r.searchParams.get("analysisId"),a=r.searchParams.get("scenarioId")||void 0;if(!s)return Z({error:"Missing analysisId parameter",usage:"GET /api/debug-setup?analysisId=<uuid>&scenarioId=<uuid>",example:'curl "http://localhost:3111/api/debug-setup?analysisId=f35509cb-b8f1-4d86-998e-fc24201ae2c7"'},{status:400});let o=t.analysisQueue;if(o||(o=await Pt()),!o)return Z({error:"Queue not initialized"},{status:500});console.log("[Debug Setup API] GET request for:",{analysisId:s,scenarioId:a});try{const i=await kc(s,a,o);return Z({...i,success:!0,message:"Debug setup queued"})}catch(i){return console.error("[Debug Setup API] GET Error:",i),Z({error:"Failed to setup debug environment",details:i.message},{status:500})}}async function tw({request:e,context:t}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Pt()),!r)return Z({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("scenarioId");if(!a)return Z({error:"Missing required field: analysisId"},{status:400});const i=await kc(a,o,r);return Z({...i,success:!0,message:"Debug setup queued"})}catch(s){console.error("[Debug Setup API] Error during debug setup:",s);const a=s instanceof Error?s.message:String(s),o=s instanceof Error?s.stack:void 0;return console.error("[Debug Setup API] Error stack:",o),Z({error:"Failed to setup debug environment",details:a},{status:500})}}const nw=Object.freeze(Object.defineProperty({__proto__:null,action:tw,loader:ew},Symbol.toStringTag,{value:"Module"}));function rw({request:e}){const r=new URL(e.url).searchParams.get("path");if(!r)return new Response("Missing path parameter",{status:400});const s=ye()||process.cwd(),a=B.resolve(s,r);if(!a.startsWith(s+B.sep)&&a!==s)return new Response("Path outside project root",{status:403});try{const o=q.readFileSync(a,"utf8");return new Response(o,{headers:{"Content-Type":"text/plain; charset=utf-8"}})}catch{return new Response("File not found",{status:404})}}const sw=Object.freeze(Object.defineProperty({__proto__:null,loader:rw},Symbol.toStringTag,{value:"Module"})),aw=process.env.LABS_UNLOCK_SALT||"codeyam-labs-default-salt";function Ec(e){const t=qd("sha256",aw);return t.update(e),`CY-${t.digest("hex").slice(0,16)}`}function ow(e,t){return t===Ec(e)}async function iw({request:e}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});try{const r=(await e.formData()).get("unlockCode");if(!r)return Z({success:!1,error:"Unlock code is required"},{status:400});const s=await De();return s?ow(s,r)?(await Cn({projectSlug:s,metadataUpdate:{labs:{accessGranted:!0,simulations:!0}}}),Z({success:!0})):Z({success:!1,error:"Invalid unlock code"},{status:400}):Z({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("[Labs Unlock] Error:",t),Z({success:!1,error:"Failed to validate unlock code. Please try again."},{status:500})}}const lw=Object.freeze(Object.defineProperty({__proto__:null,action:iw},Symbol.toStringTag,{value:"Module"}));async function cw({request:e,context:t}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Pt()),!r)return Z({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("analysisId"),o=s.get("defaultWidth");if(!a||!o)return Z({error:"Missing required fields: analysisId and defaultWidth"},{status:400});const i=parseInt(o,10);if(isNaN(i)||i<320||i>3840)return Z({error:"Invalid defaultWidth: must be between 320 and 3840"},{status:400});console.log(`[API] Starting recapture for analysis ${a} with width ${i}`);const l=await Oy(a,i,r);return console.log("[API] Recapture queued",l),Z({success:!0,message:"Recapture queued",...l})}catch(s){return console.log("[API] Error during recapture:",s),Z({error:"Failed to recapture screenshots",details:s instanceof Error?s.message:String(s)},{status:500})}}const dw=Object.freeze(Object.defineProperty({__proto__:null,action:cw},Symbol.toStringTag,{value:"Module"}));function uw(e){if(e.length===0)throw new Error("paths array must not be empty");return e.map(mw).map(a=>a===""?[]:a.split("/")).reduce((a,o)=>{const i=[];for(let l=0;l<Math.min(a.length,o.length)&&a[l]===o[l];l++)i.push(a[l]);return i}).join("/")}function mw(e){const r=e.replace(/\/+$/,"").split("/");for(;r.length>0;){const s=r[r.length-1];if(pw(s))r.pop();else break}return r.join("/")}function pw(e){return!!(e.includes("*")||/\.\w+$/.test(e))}function hw({request:e}){const r=new URL(e.url).searchParams.getAll("paths");if(r.length===0)return Response.json({error:"Missing required query parameter: paths"},{status:400});const s=uw(r),a=s?`.claude/rules/${s}/`:".claude/rules/";return Response.json({result:a})}const fw=Object.freeze(Object.defineProperty({__proto__:null,loader:hw},Symbol.toStringTag,{value:"Module"}));function gw(e,t){var i,l,c,m,u;const r=((i=e.metadata)==null?void 0:i.isUncommitted)===!0,s=e.analyses&&e.analyses.length>0&&e.analyses.some(p=>p.scenarios&&p.scenarios.length>0);if(!r){const p=!!((l=e.metadata)!=null&&l.previousVersionWithAnalyses),h=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha!==e.sha;return p||h?s?{state:"committed_no_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Committed - Simulations Outdated",color:"text-orange-700",bgColor:"bg-orange-50",borderColor:"border-orange-300",icon:"⚠"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Yet Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}:s?{state:"committed_with_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up to date",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"✓"}}:{state:"committed_no_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}const a=!!((c=e.metadata)!=null&&c.previousCommittedSha);if(!!((m=e.metadata)!=null&&m.previousVersionWithAnalyses)||a){const p=s&&e.analyses&&e.analyses.length>0&&e.analyses[0].entitySha===((u=e.metadata)==null?void 0:u.previousVersionWithAnalyses);return s&&!p?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:s?{state:"uncommitted_outdated_simulations",hasSimulations:!0,hasOutdatedSimulations:!0,canGenerateSimulations:!0,badge:{label:"Edited - Simulations Outdated",color:"text-amber-700",bgColor:"bg-amber-50",borderColor:"border-amber-300",icon:"⚠"}}:{state:"uncommitted_outdated_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"Not Analyzed",color:"text-gray-600",bgColor:"bg-gray-50",borderColor:"border-gray-200",icon:"○"}}}else return s?{state:"uncommitted_with_new_simulations",hasSimulations:!0,hasOutdatedSimulations:!1,canGenerateSimulations:!1,badge:{label:"Up-to-date Simulations",color:"text-green-700",bgColor:"bg-green-50",borderColor:"border-green-200",icon:"●"}}:{state:"uncommitted_no_previous_simulations",hasSimulations:!1,hasOutdatedSimulations:!1,canGenerateSimulations:!0,badge:{label:"New",color:"text-purple-700",bgColor:"bg-purple-50",borderColor:"border-purple-200",icon:"+"}}}function yw(e){return gw(e).hasOutdatedSimulations}function Ps(e,t,r,s,a){var H,F,z,U,O,_,Y,Q;const o=(H=t==null?void 0:t.scenarios)==null?void 0:H.find(K=>K.name===e.name),i=!!(o!=null&&o.startedAt),l=!!(o!=null&&o.screenshotStartedAt),c=!!(o!=null&&o.screenshotFinishedAt),m=!!(o!=null&&o.finishedAt),u=1800*1e3,p=l&&!c&&(o==null?void 0:o.screenshotStartedAt)&&Date.now()-new Date(o.screenshotStartedAt).getTime()>u,h=!!((z=(F=e.metadata)==null?void 0:F.screenshotPaths)!=null&&z[0])||!!((U=e.metadata)!=null&&U.executionResult),f=l&&!c,g=o==null?void 0:o.error,y=(_=(O=e.metadata)==null?void 0:O.executionResult)==null?void 0:_.error,x=[];if(t!=null&&t.errors&&t.errors.length>0)for(const K of t.errors)x.push({source:`${K.phase} phase`,message:K.message});if(t!=null&&t.steps)for(const K of t.steps)K.error&&x.push({source:K.name,message:K.error});const b=!h&&!g&&!y&&x.length>0,w=!!(g||y||p||b),v=p?"Capture timed out after 30 minutes":(typeof g=="string"?g:null)||(y==null?void 0:y.message)||(b?`Analysis error: ${x[0].message}`:null),C=p?"The capture process has been running for more than 30 minutes and likely got stuck. Consider re-running the analysis.":(o==null?void 0:o.errorStack)||(y==null?void 0:y.stack)||null,S=(s&&a?a.jobs.some(K=>{var ae;return((ae=K.entityShas)==null?void 0:ae.includes(s))||K.type==="analysis"&&K.entityShas&&K.entityShas.length===0})||((Q=(Y=a.currentlyExecuting)==null?void 0:Y.entityShas)==null?void 0:Q.includes(s)):!1)&&!i&&!w||!!(o!=null&&o.analyzing)&&!i&&!w,E=i&&!l&&!m&&!w,N=(S||E||f)&&!w,k=(S||E)&&r===!1&&!h;let j;k?j="crashed":w?j="error":h||m?j="completed":f?j="capturing":E?j="starting":S?j="queued":j="pending";let T="📷",P="pending",R=!1,I=`Not captured: ${e.name}`;const $="border-gray-300",L=w||k?"bg-red-50":"bg-white";return w||k?(T="⚠️",P="error",I=`Error: ${k?"Analysis process crashed":v||"Unknown error"}`):S?(T="⋯",P="queued",I=`Queued: ${e.name}`):E?(T="⋯",P="starting",R=!0,I=`Starting server for ${e.name}...`):f&&!w?(T="⋯",P="capturing",R=!0,I=`Capturing ${e.name}...`):h&&(T="✓",P="completed",I=e.name),{hasError:w||k,errorMessage:k?"Analysis process crashed":v,errorStack:k?"Process terminated unexpectedly before completing analysis":C,isCapturing:f,isCaptured:h,hasCrashed:k,isAnalyzing:N,isQueued:S,isServerStarting:E,status:j,icon:T,iconType:P,shouldSpin:R,title:I,borderColor:$,bgColor:L}}function _c({scenario:e,entitySha:t,size:r="medium",showBorder:s=!0,isOutdated:a=!1}){var C,A,S,E,N,k;const o=Ps(e,void 0,void 0,t,void 0),i=(C=e.metadata)==null?void 0:C.executionResult,l=!!i,m=(((S=(A=e.metadata)==null?void 0:A.data)==null?void 0:S.argumentsData)||[]).length,u=(i==null?void 0:i.returnValue)!==void 0&&(i==null?void 0:i.returnValue)!==null,p=((N=(E=i==null?void 0:i.sideEffects)==null?void 0:E.consoleOutput)==null?void 0:N.length)||0,h=((k=i==null?void 0:i.timing)==null?void 0:k.duration)||0;let f=0;m>0&&f++,m>2&&f++,u&&f++,p>0&&f++,f=Math.min(3,f);const g=r==="small"?{width:"w-[50px]",height:"h-[38px]",iconSize:"text-base",textSize:"text-[8px]"}:{width:"w-20",height:"h-15",iconSize:"text-xl",textSize:"text-[10px]"},x=o.hasError?{border:"border-red-400",bg:"bg-red-50",icon:"text-red-600",badge:"bg-red-100 text-red-700"}:l?a?{border:"border-amber-500",bg:"bg-amber-50",icon:"text-amber-700",badge:"bg-amber-100 text-amber-700"}:{border:"border-blue-400",bg:"bg-blue-50",icon:"text-blue-600",badge:"bg-blue-100 text-blue-700"}:{border:"border-gray-300 border-dashed",bg:"bg-gray-50",icon:"text-gray-400",badge:"bg-gray-100 text-gray-600"},b=s?`border-2 ${x.border}`:"",w=Array.from({length:3},(j,T)=>n("div",{className:`w-1 h-1 rounded-full ${T<f?x.icon.replace("text-","bg-"):"bg-gray-300"}`},T)),v=o.hasError?`Error: ${o.errorMessage||"Unknown error"}`:l?`${e.name}
354
- ${m} args → ${u?"value":"void"}${p>0?` (${p} logs)`:""}
355
- ${h}ms`:`Not executed: ${e.name}`;return d(fe,{to:`/entity/${t}/scenarios/${e.id}`,className:`relative ${g.width} ${g.height} ${b} rounded ${x.bg} flex flex-col items-center justify-center gap-0.5 cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:v,onClick:j=>j.stopPropagation(),children:[n("div",{className:`${x.icon} ${g.iconSize} font-mono font-bold`,children:o.hasError?"⚠":l?"ƒ":"○"}),l&&!o.hasError&&d("div",{className:`flex items-center gap-0.5 ${g.textSize} ${x.badge} px-1 rounded`,children:[n("span",{children:m}),n("span",{children:"→"}),n("span",{children:u?"✓":"∅"})]}),l&&!o.hasError&&r==="medium"&&n("div",{className:"flex gap-0.5 mt-0.5",children:w}),l&&!o.hasError&&h>100&&r==="medium"&&n("div",{className:`absolute top-0.5 right-0.5 ${g.textSize} ${x.badge} px-1 rounded`,children:h>1e3?`${Math.round(h/1e3)}s`:`${h}ms`}),l&&!o.hasError&&p>0&&r==="medium"&&d("div",{className:"absolute bottom-0.5 left-0.5 text-[8px] text-gray-500",children:["📝",p]})]})}function ka({size:e=24,className:t=""}){return d("svg",{width:e,height:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:t,"aria-hidden":"true",children:[n("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z",fill:"#ef4444",stroke:"none"}),n("line",{x1:"12",y1:"9",x2:"12",y2:"13",stroke:"#FFFFFF",strokeWidth:"2",strokeLinecap:"round"}),n("circle",{cx:"12",cy:"17",r:"1",fill:"#FFFFFF"})]})}function mi({scenario:e,entity:t,analysisStatus:r,queueState:s,processIsRunning:a,size:o="medium",cacheBuster:i,className:l="",viewMode:c}){var y,x;if(t.entityType==="library")return n(_c,{scenario:e,entitySha:t.sha,size:o==="small"?"small":"medium"});const u=Ps(e,r,a,t.sha,s),p=o==="small"?{containerClass:"w-16 h-12",iconSize:"text-xl"}:o==="large"?{containerClass:"w-full h-[67px]",iconSize:"text-2xl"}:{containerClass:"w-20 h-15",iconSize:"text-2xl"},h=`relative ${p.containerClass} ${l}`,f=()=>{const b=`/entity/${t.sha}/scenarios/${e.id}`;return c?`${b}/${c}`:b};if(u.isCaptured){const b=(x=(y=e.metadata)==null?void 0:y.screenshotPaths)==null?void 0:x[0];return n(fe,{to:f(),className:`${h} overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center hover:scale-105 hover:shadow-md`,children:n(Ge,{screenshotPath:b,cacheBuster:i,alt:e.name,title:e.name,className:"max-w-full max-h-full object-contain object-center"})})}const g=()=>{const b={size:o==="small"?16:o==="large"?24:20,strokeWidth:2},w=n(co,{size:o});if(u.shouldSpin||u.iconType==="queued"||u.iconType==="pending")return w;switch(u.iconType){case"starting":case"capturing":return w;case"error":return d("div",{className:"flex flex-col items-center justify-center gap-1",children:[n(ka,{size:24}),n("span",{className:"text-[10px] text-[#ef4444] font-medium",children:"Capture Error"})]});case"completed":return n(Pd,{...b});default:return w}};return n(fe,{to:f(),className:`${h} ${u.bgColor} flex flex-col items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,title:u.title,children:n("div",{className:p.iconSize,children:g()})})}const bn=70;function xw({scenarios:e,hiddenScenarios:t=[],analysis:r,selectedScenario:s,entitySha:a,cacheBuster:o,activeTab:i,entityType:l,entity:c,queueState:m,processIsRunning:u,isEntityAnalyzing:p,areScenariosStale:h,viewMode:f,setViewMode:g,isBreakdownView:y}){var R,I,$,L,H,F;const x=be(null),[b,w]=M(new Set),[v,C]=M(!1);te(()=>{x.current&&i==="scenarios"&&x.current.scrollIntoView({behavior:"smooth",block:"nearest"})},[s==null?void 0:s.id,i]);const A=z=>`/entity/${a}/scenarios/${z}`,S=z=>{w(U=>{const O=new Set(U);return O.has(z)?O.delete(z):O.add(z),O})},E=(z,U=2)=>{const _=z.split(`
356
- `).slice(0,U).join(" ").trim();return _.length>bn?_.substring(0,bn-3):(z.split(`
357
- `).length>U||z.length>_.length,_)},N=oe(()=>{var U;if(!((U=r==null?void 0:r.metadata)!=null&&U.executionFlows)||!(r!=null&&r.scenarios))return null;const z=r.scenarios.filter(O=>{var _;return!((_=O.metadata)!=null&&_.sameAsDefault)});return so(r.metadata.executionFlows,z)},[r]),k=(N==null?void 0:N.totalFlows)||0,j=(N==null?void 0:N.coveredFlows)||0,T=(N==null?void 0:N.coveragePercentage)||0;(R=c==null?void 0:c.metadata)!=null&&R.defaultWidth||(I=r==null?void 0:r.metadata)!=null&&I.defaultWidth;const P=($=r==null?void 0:r.status)!=null&&$.finishedAt?new Date(r.status.finishedAt).toLocaleDateString("en-US",{month:"short",day:"numeric",year:"numeric"}):null;return d("aside",{className:"w-[250px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-4",children:[r&&e.length>0&&d("div",{className:"flex flex-col gap-2",children:[n("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:"SCENARIOS"}),d("div",{className:"grid grid-cols-2 gap-2",children:[d(fe,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((L=e[0])==null?void 0:L.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[Math.round(T),"%"]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1",children:"COVERAGE"})]}),d(fe,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((H=e[0])==null?void 0:H.id)}`:`/entity/${a}/scenarios/breakdown`,className:"bg-[#F6F9FC] border border-[#E0E9EC] rounded px-3 py-3 text-center no-underline cursor-pointer hover:bg-[#EDF4F8] transition-colors",children:[d("div",{className:"text-xl font-semibold text-[#005c75] font-mono",children:[j,"/",k]}),n("div",{className:"text-[10px] text-[#9e9e9e] font-normal uppercase mt-1 whitespace-nowrap",children:"FLOWS COVERED"})]})]}),d(fe,{to:y?`/entity/${a}/scenarios/${(s==null?void 0:s.id)||((F=e[0])==null?void 0:F.id)}`:`/entity/${a}/scenarios/breakdown`,className:`border rounded px-3 py-2 no-underline hover:shadow-sm transition-shadow flex items-center justify-between ${y?"bg-[#CBF3FA] border-[#CBF3FA]":"bg-[#F6F9FC] border-[#E0E9EC]"}`,children:[n("div",{className:"text-[11px] text-[#005c75] font-normal uppercase font-mono underline",children:"EXECUTION FLOWS"}),y?n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M3 3L9 9M9 3L3 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}):n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]}),c&&c.filePath&&n("div",{children:n(fe,{to:`/entity/${a}/create-scenario`,className:"w-full px-3 py-2 bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[11px] font-medium font-mono cursor-pointer transition-colors hover:bg-[#004a5e] no-underline flex items-center justify-center gap-1",children:"+ Create New Scenario"})}),e.length>0&&d("div",{className:"py-3 flex items-center justify-between",children:[d("div",{className:"text-[10px] text-black font-normal uppercase font-mono",children:[e.length," AUTO-GENERATED"]}),P&&n("div",{className:"text-[10px] text-[#9e9e9e] font-normal font-mono",children:P})]}),p&&(h||e.length===0)?d("div",{className:"",children:[d("span",{className:"text-[12px] px-2 rounded inline-flex items-center gap-1.5",style:{backgroundColor:"#FFF4FC",color:"#FF2AB5",height:"23px"},children:[d("svg",{width:"9",height:"9",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}),n("p",{className:"text-[#8e8e8e] text-xs font-normal m-0 mt-2 text-left leading-5",children:"Scenarios will appear here once analysis completes"})]}):e.length===0?n("div",{className:"",children:n("p",{className:"text-[#8e8e8e] text-xs font-medium m-0 text-left leading-5",children:"No Scenarios"})}):n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"flex flex-col gap-[11.6px]",children:e.map((z,U)=>{const O=!y&&(s==null?void 0:s.id)===z.id,_=b.has(z.id||"");return z.id?d(fe,{to:A(z.id),ref:O?x:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${O?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(mi,{scenario:z,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:m,processIsRunning:u,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${_?"":"line-clamp-1"}`,children:z.name}),z.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[_?z.description:E(z.description),!_&&z.description.length>bn&&d(pe,{children:["...",n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),S(z.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),_&&z.description.length>bn&&n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),S(z.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},U):null})})}),t.length>0&&!(p&&h)&&d("div",{className:"border-t border-[#e1e1e1] pt-3",children:[d("button",{onClick:()=>C(!v),className:"flex items-center gap-1 text-[10px] text-[#626262] font-medium cursor-pointer bg-transparent border-none p-0 hover:text-[#005c75] transition-colors w-full",children:[n("svg",{width:"10",height:"10",viewBox:"0 0 10 10",fill:"none",className:`transition-transform ${v?"rotate-90":""}`,children:n("path",{d:"M3.5 2L6.5 5L3.5 8",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"Hidden Scenarios (",t.length,")"]}),v&&d("div",{className:"mt-2",children:[n("p",{className:"text-[10px] text-[#8e8e8e] leading-[14px] mb-3",children:"These scenarios were hidden because the screenshots did not differ from the Default Scenario."}),n("div",{className:"flex flex-col gap-[11.6px]",children:t.map((z,U)=>{const O=!y&&(s==null?void 0:s.id)===z.id,_=b.has(z.id||"");return z.id?d(fe,{to:`/entity/${a}/scenarios/${z.id}`,ref:O?x:null,className:`group flex flex-col w-full border rounded-[5.155px] cursor-pointer transition-all no-underline overflow-hidden ${O?"border-[#005c75] bg-white":"border-[#e1e1e1] bg-white hover:border-[#005c75]"}`,children:[n("div",{className:"w-full flex justify-center border-b border-[#e1e1e1]",children:n(mi,{scenario:z,entity:{sha:a,entityType:l},analysisStatus:r==null?void 0:r.status,queueState:m,processIsRunning:u,size:"large",cacheBuster:o,viewMode:f})}),d("div",{className:"px-3 py-3",children:[n("div",{className:`text-xs font-semibold text-[#343434] ${_?"":"line-clamp-1"}`,children:z.name}),z.description&&n("div",{className:"mt-2",children:d("div",{className:"text-xs leading-[15px] text-[#808080] font-normal",children:[_?z.description:E(z.description),!_&&z.description.length>bn&&d(pe,{children:["...",n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),S(z.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read More"})]}),_&&z.description.length>bn&&n("button",{onClick:Y=>{Y.preventDefault(),Y.stopPropagation(),S(z.id)},className:"text-[10px] text-[#005c75] font-medium cursor-pointer hover:underline ml-1",children:"Read Less"})]})})]})]},U):null})})]})]})]})}function bw({scenario:e,entitySha:t,onApply:r,onSave:s,onEditMockData:a,onDelete:o,isApplying:i=!1,isSaving:l=!1,saveMessage:c=null,showDeleteConfirm:m=!1,onShowDeleteConfirm:u,isDeleting:p=!1,deleteError:h=null}){const[f,g]=M(""),y=async()=>{await r(f)},x=async b=>{await s(f,b),b||g("")};return d("aside",{className:"w-[220px] bg-white border-r border-[#e1e1e1] shrink-0 flex flex-col gap-2 p-3 h-full",children:[d("div",{className:"border-b border-[#e1e1e1] pb-3",children:[d("div",{className:"flex items-start justify-between mb-2",children:[n("div",{className:"text-[10px] text-[#626262] font-medium",children:"Edit Scenario"}),n(fe,{to:`/entity/${t}`,className:"text-[#626262] hover:text-[#3e3e3e] transition-colors text-sm leading-none no-underline cursor-pointer",title:"Close",children:"×"})]}),n("div",{className:"text-xs font-semibold text-[#626262]",children:e.name})]}),d("div",{className:"flex-1 overflow-y-auto flex flex-col gap-2",children:[d("div",{className:"pt-1",children:[n("label",{htmlFor:"ai-description",className:"block text-xs text-[#343434] font-semibold mb-[6px]",children:"Describe changes to the AI"}),n("textarea",{id:"ai-description",value:f,onChange:b=>g(b.target.value),placeholder:"e.g. change amount of data to zero",className:"w-full px-[7px] py-[6px] border border-[#c7c7c7] rounded-[4px] text-xs focus:outline-none focus:ring-1 focus:ring-[#005c75] focus:border-[#005c75] resize-none",rows:4}),d("button",{onClick:()=>void y(),disabled:i||!f.trim(),className:"w-full mt-1 h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center gap-1",children:[i&&d("svg",{className:"animate-spin h-3 w-3",xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",children:[n("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),n("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})]}),i?"Applying...":"Apply"]})]}),n("div",{className:"border-t border-[#e1e1e1] my-1"}),d("div",{className:"pt-1",children:[n("div",{className:"text-xs text-[#343434] font-semibold mb-[6px]",children:"Change file"}),n("p",{className:"text-[10px] text-[#808080] mb-2",children:"You can edit the data used for this scenario directly."}),n("button",{onClick:a,className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa]",children:"Edit Mock Data"})]}),c&&n("div",{className:`text-[10px] px-[7px] py-[6px] rounded-[4px] ${c.startsWith("Error")?"bg-red-50 text-red-600":"bg-green-50 text-green-600"}`,children:c}),c==="Recapture successful"&&n("div",{children:n(fe,{to:`/entity/${t}`,className:"text-[#005c75] hover:text-[#004a5e] hover:underline text-[10px] cursor-pointer",children:"View updated screenshot on entity page →"})})]}),d("div",{className:"border-t border-[#e1e1e1] pt-2 bg-white flex flex-col gap-1",children:[n("button",{onClick:()=>void x(!1),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#005c75] text-white border border-[rgba(0,92,117,0.05)] rounded text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed flex items-center justify-center",children:l?"Saving...":"Save Scenario Data"}),n("button",{onClick:()=>void x(!0),disabled:l||!f.trim(),className:"w-full h-[22px] bg-[#e0e9ec] text-[#005c75] border border-[#e0e9ec] rounded-[4px] text-[10px] font-normal cursor-pointer transition-colors hover:bg-[#cbf3fa] disabled:opacity-50 disabled:cursor-not-allowed flex items-center justify-center",children:"Save As New"}),o&&d(pe,{children:[m?d("div",{className:"flex flex-col gap-1",children:[d("div",{className:"text-[10px] text-red-600 font-medium",children:['Are you sure you want to delete "',e.name,'"?']}),d("div",{className:"flex gap-1",children:[n("button",{onClick:()=>void o(),disabled:p,className:"flex-1 h-[22px] bg-red-600 text-white rounded text-[10px] font-normal hover:bg-red-700 disabled:bg-red-400 disabled:cursor-not-allowed transition-colors flex items-center justify-center cursor-pointer",children:p?"Deleting...":"Yes, Delete"}),n("button",{onClick:()=>u==null?void 0:u(!1),disabled:p,className:"flex-1 h-[22px] bg-gray-100 text-gray-700 border border-gray-300 rounded text-[10px] font-normal hover:bg-gray-200 disabled:opacity-50 transition-colors flex items-center justify-center cursor-pointer",children:"Cancel"})]})]}):n("button",{onClick:()=>u==null?void 0:u(!0),className:"w-full h-[22px] bg-red-50 text-red-600 border border-red-200 rounded text-[10px] font-normal hover:bg-red-100 transition-colors flex items-center justify-center cursor-pointer",children:"Delete Scenario"}),h&&n("div",{className:"text-[10px] text-red-600 bg-red-50 px-[7px] py-[6px] rounded-[4px]",children:h})]})]})]})}function ww({scenario:e,analysis:t,entity:r}){var i,l,c;const s=((i=e.metadata)==null?void 0:i.executionResult)||null,a=((c=(l=e.metadata)==null?void 0:l.data)==null?void 0:c.argumentsData)||[],o=m=>{var g,y,x;if(!m)return"No execution results available yet. Run the function to capture side effects including console output, file operations, and API calls.";const u=[],p=((g=m.sideEffects)==null?void 0:g.consoleOutput)||[];p.length>0&&(u.push(`Console Output: ${p.length} log ${p.length===1?"entry":"entries"} captured`),p.forEach(b=>{u.push(` [${b.level.toUpperCase()}] ${b.args.join(" ")}`)}));const h=((y=m.sideEffects)==null?void 0:y.fileWrites)||[];h.length>0&&(u.push(`
358
- File System Operations: ${h.length} ${h.length===1?"operation":"operations"} detected`),h.forEach(b=>{u.push(` ${b.operation}: ${b.path}${b.size?` (${b.size} bytes)`:""}`)}));const f=((x=m.sideEffects)==null?void 0:x.apiCalls)||[];return f.length>0&&(u.push(`
359
- API Calls: ${f.length} ${f.length===1?"call":"calls"} made`),f.forEach(b=>{u.push(` ${b.method} ${b.url}${b.status?` → ${b.status}`:""}${b.duration?` (${b.duration}ms)`:""}`)})),m.error&&u.push(`
360
- Error: ${m.error.name||"Error"}: ${m.error.message}`),u.length===0?"No side effects detected. The function executed without console output, file operations, or API calls.":u.join(`
361
- `)};return d("div",{className:"flex w-full h-full gap-0",children:[d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Input Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:JSON.stringify(a,null,2)})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Returned Data"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-0",children:s?n("pre",{className:"text-xs font-mono text-gray-800 whitespace-pre-wrap break-words m-0",children:s.returnValue!==void 0?JSON.stringify(s.returnValue,null,2):"undefined"}):n("div",{className:"text-sm text-gray-500 italic",children:"No execution results yet"})})]}),d("div",{className:"flex-1 border border-gray-200 bg-white rounded flex flex-col ml-[-1px]",children:[n("div",{className:"px-4 pt-3.5 pb-2.5",children:n("h3",{className:"text-[9px] font-semibold text-[#005c75] uppercase tracking-wide text-center m-0",children:"Side Effects"})}),n("div",{className:"flex-1 overflow-auto px-4 pb-4",children:n("p",{className:"text-sm text-gray-700 leading-[22px] m-0 whitespace-pre-wrap",children:o(s)})})]})]})}const Kt={commandBoxBg:"#f6f9fc",commandBoxBorder:"#e1e1e1",commandBoxText:"#005c75",heading:"#000",subtext:"#646464",link:"#005c75"};function Mr({scenarioId:e,analysisId:t}){const[r,s]=M(!1),[a,o]=M(!1),[i,l]=M(null),[c,m]=M(!1),u=e||t;if(!u)return null;const p=`/codeyam-diagnose ${u}`,h=async()=>{o(!0);try{const{default:g}=await import("html2canvas-pro"),x=(await g(document.body,{scale:.5})).toDataURL("image/jpeg",.8);l(x),s(!0)}catch(g){console.error("Screenshot capture failed:",g),s(!0)}finally{o(!1)}},f=()=>{s(!1),l(null)};return d(pe,{children:[d("div",{className:"text-center p-6 bg-cywhite-100 rounded-lg border-cygray-30 border",children:[n("h3",{className:"font-semibold font-['IBM_Plex_Sans']",style:{fontSize:"18px",lineHeight:"26px",color:Kt.heading},children:"Claude can help debug this error."}),n("p",{className:"m-0 mb-4 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"18px",color:Kt.subtext},children:"Simply run this command in Claude Code:"}),d("div",{className:"flex items-center justify-between rounded mx-auto mb-3 border",style:{backgroundColor:Kt.commandBoxBg,borderColor:Kt.commandBoxBorder,maxWidth:"505px",height:"35px",paddingLeft:"13px",paddingRight:"13px",paddingTop:"6px",paddingBottom:"6px"},children:[n("code",{className:"font-mono font-['IBM_Plex_Mono'] flex-1 text-left",style:{fontSize:"12px",lineHeight:"20px",color:Kt.commandBoxText},children:p}),n("button",{onClick:g=>{g.stopPropagation(),navigator.clipboard.writeText(p),m(!0),setTimeout(()=>m(!1),2e3)},className:"ml-3 cursor-pointer p-0 bg-transparent border-none hover:opacity-80 transition-opacity",style:{width:"14px",height:"14px",color:c?"#22c55e":Kt.commandBoxText},title:c?"Copied!":"Copy command","aria-label":"Copy command to clipboard",children:c?n(lt,{size:14}):n(pt,{size:14})})]}),d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:"#005c75"},children:["If Claude is unable to address this issue or suggests reporting it,"," ",n("button",{onClick:()=>void h(),disabled:a,className:"underline cursor-pointer bg-transparent border-none p-0 font-normal hover:opacity-80 disabled:opacity-50 disabled:cursor-not-allowed font-['IBM_Plex_Sans']",style:{fontSize:"12px",lineHeight:"15px",color:Kt.link},children:a?"capturing...":"please do so here"}),"."]})]}),n(Xi,{isOpen:r,onClose:f,context:{source:e?"scenario-page":"entity-page",entitySha:void 0,scenarioId:e,analysisId:t,currentUrl:typeof window<"u"?window.location.pathname:"/"},screenshotDataUrl:i??void 0})]})}const pi=1440,$r=[{name:"Mobile",width:375,height:667},{name:"Tablet",width:768,height:1024},{name:"Laptop",width:1024,height:768},{name:"Desktop",width:1440,height:900}],bt={background:"#ffdcd9",border:"#fda4a4",text:"#ef4444",link:"#991b1b"};function Ac({selectedScenario:e,analysis:t,entity:r,viewMode:s,cacheBuster:a,hasScenarios:o,isAnalyzing:i=!1,projectSlug:l,hasAnApiKey:c=!0,processIsRunning:m,queueState:u}){var G,ne,se,re,ee,de,me,Te,xe,Ce,$e;const p=Le(),[h,f]=M(!1),[g,y]=M(!1),[x,b]=M({name:"Desktop",width:pi,height:900}),[w,v]=M(pi),[C,A]=M(1),{customSizes:S,addCustomSize:E,removeCustomSize:N}=vs(l),k=oe(()=>[...$r,...S],[S]),j=(Ae,ie)=>{v(Ae);const he=k.find(ke=>ke.width===Ae&&ke.height===ie);b({name:(he==null?void 0:he.name)||"Custom",width:Ae,height:ie})},T=Ae=>{v(Ae.width),b({name:Ae.name,width:Ae.width,height:Ae.height})},P=Ae=>{E(Ae,x.width,x.height??900),y(!1),b(ie=>({...ie,name:Ae}))},R=(Ae,ie)=>{v(Ae);const he=k.find(ke=>ke.width===Ae&&ke.height===ie);b(ke=>({name:(he==null?void 0:he.name)||"Custom",width:Ae,height:ke.height}))},I=(ne=(G=e==null?void 0:e.metadata)==null?void 0:G.screenshotPaths)==null?void 0:ne[0],$=oe(()=>e?Ps(e,t==null?void 0:t.status,m,r==null?void 0:r.sha,u):null,[e,t==null?void 0:t.status,m,r==null?void 0:r.sha,u]),L=oe(()=>{var ie,he;const Ae=[];if((ie=t==null?void 0:t.status)!=null&&ie.errors&&t.status.errors.length>0)for(const ke of t.status.errors)Ae.push({source:`${ke.phase} phase`,message:ke.message,stack:ke.stack});if((he=t==null?void 0:t.status)!=null&&he.steps)for(const ke of t.status.steps)ke.error&&Ae.push({source:ke.name,message:ke.error,stack:ke.errorStack});return Ae},[(se=t==null?void 0:t.status)==null?void 0:se.errors,(re=t==null?void 0:t.status)==null?void 0:re.steps]),H=($==null?void 0:$.errorMessage)||null,F=($==null?void 0:$.errorStack)||null,{interactiveServerUrl:z,isStarting:U,isLoading:O,showIframe:_,iframeKey:Y,onIframeLoad:Q}=cn({analysisId:t==null?void 0:t.id,scenarioId:e==null?void 0:e.id,scenarioName:e==null?void 0:e.name,projectSlug:l,enabled:s==="interactive"}),K=oe(()=>z||null,[z]),ae=!i&&o&&e&&!((de=(ee=e.metadata)==null?void 0:ee.screenshotPaths)!=null&&de[0])&&((Te=(me=t==null?void 0:t.status)==null?void 0:me.scenarios)==null?void 0:Te.some(Ae=>Ae.name===e.name&&Ae.screenshotStartedAt&&!Ae.screenshotFinishedAt)),{lastLine:J}=kt(l,i||s==="interactive"||ae||!1);if(!e){if(i&&r)return d(pe,{children:[n("div",{className:"flex-1 flex flex-col items-center justify-center p-12 text-center bg-[#f6f9fc]",children:d("div",{className:"flex flex-col items-center gap-6 max-w-2xl",children:[n("div",{className:"w-12 h-12 mb-2",children:n("svg",{className:"animate-spin",viewBox:"0 0 50 50",children:n("circle",{cx:"25",cy:"25",r:"20",fill:"none",stroke:"#005c75",strokeWidth:"4",strokeDasharray:"31.4 31.4",strokeLinecap:"round"})})}),n("h2",{className:"text-2xl font-semibold text-[#005c75] leading-[30px] m-0 font-['IBM_Plex_Sans']",children:ae?"Capturing screenshots...":"Analyzing..."}),n("p",{className:"text-xs text-[#8e8e8e] text-center leading-5 m-0 font-['IBM_Plex_Mono']",children:"This may take a few minutes."}),J&&n("p",{className:"text-xs font-mono text-[#005c75] text-center leading-5 m-0 max-w-xl",children:J}),l&&n("button",{onClick:()=>f(!0),className:"w-[148px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-sm text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] font-['IBM_Plex_Sans']",children:"View full logs"})]})}),h&&l&&n(Ot,{projectSlug:l,onClose:()=>f(!1)})]});if(!o&&r&&!i){if(L.length>0){const Ae=L.length===1?((xe=L[0])==null?void 0:xe.message)||"An error occurred during analysis.":`${L.length} errors occurred during analysis.`;return d(pe,{children:[n("div",{className:"flex-1 flex flex-col justify-center items-center px-5",style:{minHeight:"75vh"},children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded",style:{backgroundColor:bt.background,border:`2px solid ${bt.border}`},role:"alert",children:d("div",{className:"flex items-center gap-3",children:[n(ka,{size:24,className:"shrink-0"}),n("div",{className:"flex-1 min-w-0",children:d("p",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:bt.text},children:[n("span",{className:"font-semibold",children:"Analysis Error."})," ",Ae," ",n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:bt.link},children:"See logs"})," ","for details."]})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Mr,{analysisId:t==null?void 0:t.id})})]})}),h&&l&&n(Ot,{projectSlug:l,onClose:()=>f(!1)})]})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-[#f6f9fc]",children:d("div",{className:"max-w-[600px]",children:[n("h2",{className:"text-[28px] font-semibold text-[#343434] mb-4 m-0 leading-10",children:"No simulations yet"}),n("p",{className:"text-base font-normal text-[#3e3e3e] mb-8 leading-6 m-0",children:"Analyze the code to create simulations and create test scenarios automatically."}),r.filePath&&n("button",{onClick:()=>{p.submit({entitySha:r.sha,filePath:r.filePath},{method:"post",action:"/api/analyze"})},disabled:p.state!=="idle",className:"h-[54px] w-[183px] px-2.5 py-[5px] bg-[#005c75] text-white border-none rounded-lg text-base font-medium cursor-pointer transition-all hover:bg-[#004a5e] disabled:bg-gray-400 disabled:cursor-not-allowed",children:p.state!=="idle"?"Analyzing...":"Analyze"})]})})}return n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center",children:n("p",{className:"text-base text-gray-500 m-0",children:"Select a scenario to view its screenshot"})})}return d(pe,{children:[n("main",{className:"flex-1 overflow-auto flex flex-col min-w-0",style:{backgroundImage:`
362
- linear-gradient(45deg, #ebebeb 25%, transparent 25%),
363
- linear-gradient(-45deg, #ebebeb 25%, transparent 25%),
364
- linear-gradient(45deg, transparent 75%, #ebebeb 75%),
365
- linear-gradient(-45deg, transparent 75%, #ebebeb 75%)
366
- `,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#fafafa"},children:(i||ae&&!I)&&!H&&s==="screenshot"?n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 text-center bg-linear-to-br from-blue-50 to-indigo-50",children:d("div",{className:"max-w-2xl w-full bg-white rounded-t-2xl shadow-xl p-8",children:[d("div",{className:"mb-8",children:[n("div",{className:"inline-flex items-center justify-center w-24 h-24 bg-blue-100 rounded-full mb-6",children:n("span",{className:"text-5xl animate-spin",children:"⚙️"})}),n("h2",{className:"text-3xl font-bold text-gray-900 mb-4 m-0",children:ae?`Capturing ${r==null?void 0:r.name}`:`Analyzing ${r==null?void 0:r.name}`}),n("p",{className:"text-base text-gray-600 leading-relaxed m-0 mb-2",children:ae?`Taking screenshots for ${((Ce=t==null?void 0:t.scenarios)==null?void 0:Ce.length)||0} scenario${(($e=t==null?void 0:t.scenarios)==null?void 0:$e.length)!==1?"s":""}...`:`Generating simulations and scenarios for this ${r==null?void 0:r.entityType} entity...`}),e&&d("p",{className:"text-sm text-blue-600 font-semibold m-0",children:["Currently processing: ",e.name]})]}),J&&n("div",{className:"bg-[#f6f9fc] border-2 border-[#e1e1e1] rounded-lg p-6 mb-6",children:d("div",{className:"flex items-start gap-3",children:[n("span",{className:"text-xl shrink-0",children:"📝"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xs font-semibold text-gray-700 uppercase tracking-wide mb-2 m-0",children:"Current Progress"}),n("p",{className:"text-sm text-gray-900 font-mono wrap-break-word m-0",title:J,children:J})]})]})}),l&&n("button",{onClick:()=>f(!0),className:"px-6 py-3 bg-[#005c75] text-white border-none rounded-lg text-base font-semibold cursor-pointer transition-all hover:bg-[#004a5e] hover:shadow-lg",children:"📋 View Full Logs"}),n("p",{className:"text-xs text-gray-500 mt-8 m-0",children:"Screenshots will appear here as they are captured. This may take a few minutes."})]})}):s==="screenshot"&&(I||H)||s==="interactive"&&(K||U)||s==="data"?d(pe,{children:[H&&!I&&n("div",{className:"flex-1 flex flex-col justify-center items-center p-6",children:d("div",{className:"w-full flex flex-col gap-4",style:{maxWidth:"600px"},children:[n("div",{className:"p-4 rounded overflow-auto",style:{backgroundColor:bt.background,border:`2px solid ${bt.border}`,maxHeight:"50vh"},role:"alert",children:d("div",{className:"flex flex-col gap-3",children:[d("div",{className:"flex items-center justify-center gap-2 font-bold",style:{color:bt.text},children:[n(ka,{size:24,className:"shrink-0"}),n("div",{children:"Capture Error"})]}),d("div",{className:"text-center",children:[n("button",{onClick:()=>f(!0),className:"underline cursor-pointer bg-transparent border-none p-0 font-medium hover:opacity-80",style:{color:bt.link},children:"See logs"})," ","for details."]}),n("div",{className:"flex-1 min-w-0",children:n("div",{className:"m-0 font-['IBM_Plex_Sans']",style:{fontSize:"14px",lineHeight:"20px",color:bt.text},children:H})})]})}),n("div",{className:"bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Mr,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})}),s==="interactive"?d("div",{className:"flex-1 flex flex-col min-h-0",children:[K&&d("div",{className:"bg-gray-50 border-b border-gray-200 px-6 py-3 shrink-0 flex justify-center items-center gap-4",children:[n(Zh,{presets:[...$r],customSizes:S,currentWidth:x.width,currentHeight:x.height??900,scale:C,onSizeChange:j,onSaveCustomSize:()=>y(!0),onRemoveCustomSize:N}),e&&r&&d(fe,{to:`/entity/${r.sha}/scenarios/${e.id}/fullscreen?from=${encodeURIComponent(`/entity/${r.sha}/scenarios/${e.id}/interactive`)}`,className:"flex items-center gap-2 px-4 py-2 bg-[#005c75] text-white rounded hover:bg-[#004a5c] transition-colors text-sm font-medium no-underline",title:"Open in fullscreen",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",children:n("path",{d:"M2 5V2H5M11 2H14V5M14 11V14H11M5 14H2V11",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})}),"Fullscreen"]})]}),K&&n("div",{className:"bg-[#005c75] border-b border-[rgba(0,0,0,0.2)] flex justify-center",children:n("div",{style:{maxWidth:`${$r[$r.length-1].width}px`,width:"100%"},children:n(Ha,{currentViewportWidth:w,currentPresetName:x.name,onDevicePresetClick:T,devicePresets:k})})}),n(Cs,{scenarioId:e.id,scenarioName:e.name,iframeUrl:K,isStarting:U,isLoading:O,showIframe:_,iframeKey:Y,onIframeLoad:Q,onScaleChange:A,onDimensionChange:R,projectSlug:l,defaultWidth:x.width,defaultHeight:x.height})]}):s==="data"?n("div",{className:"flex-1 min-h-0",children:n(ww,{scenario:e,analysis:t,entity:r})}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 p-6 flex items-center justify-center",children:n("div",{className:"transition-all duration-300",style:{maxWidth:`${w}px`},children:(I||!H)&&n(Ge,{screenshotPath:I,cacheBuster:a,alt:e.name,className:"w-full rounded-lg shadow-[0_10px_25px_rgba(0,0,0,0.1)] bg-white"})})})})]}):n("div",{className:"flex-1 flex flex-col",children:n("div",{className:"flex-1 flex flex-col items-center justify-center p-6 overflow-auto w-full",children:i&&!I?n("div",{className:"w-full h-full flex items-center justify-center",children:n("div",{className:"bg-blue-50 border-2 border-blue-200 rounded-lg p-8",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"animate-spin text-4xl shrink-0",children:"⚙️"}),d("div",{className:"flex-1",children:[n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Capturing Screenshot"}),d("p",{className:"text-sm text-blue-800 m-0 mb-4",children:["Analysis is in progress for"," ",n("strong",{children:e.name}),". The screenshot will appear here once capture is complete."]}),J&&d("div",{className:"bg-white border border-blue-200 rounded p-4 mt-4",children:[n("h4",{className:"text-xs font-semibold text-blue-800 m-0 mb-2 uppercase tracking-wide",children:"Current Progress"}),n("p",{className:"text-sm text-blue-900 m-0 font-mono wrap-break-word",children:J})]}),l&&n("button",{onClick:()=>f(!0),className:"mt-4 px-4 py-2 bg-[#005c75] text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-[#004a5e]",children:"📋 View Full Logs"})]})]})})}):H?d("div",{className:"w-full h-full flex flex-col items-center justify-center overflow-auto gap-6",children:[!c&&n("div",{className:"bg-blue-50 border-2 border-blue-300 rounded-lg p-8",children:d("div",{className:"flex-1 flex flex-col gap-4 items-center justify-center",children:[d("div",{className:"flex items-start gap-4",children:[n("span",{className:"text-blue-600 text-2xl shrink-0",children:"🔑"}),n("h3",{className:"text-xl font-semibold text-blue-900 m-0 mb-3",children:"Improve Analysis Quality with an API Key"})]}),d("div",{className:"bg-white border border-blue-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-blue-900 m-0 mb-2 uppercase tracking-wide",children:"CodeYam requires an AI API key for reliable analysis."}),d("ul",{className:"text-sm text-blue-800 m-0 space-y-1 pl-5 list-disc",children:[n("li",{children:"You can use API keys for a variety of models"}),n("li",{children:"Faster analysis processing"}),n("li",{children:"Better handling of complex code structures"}),n("li",{children:"Improved scenario generation quality"})]})]}),n(fe,{to:"/settings",className:"inline-block px-4 py-2 bg-blue-600 text-white border-none rounded-md text-sm font-semibold cursor-pointer transition-colors hover:bg-blue-700",children:"🔐 Configure API Keys"})]})}),n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n("h3",{className:"text-xl font-semibold text-red-800 m-0 mb-3",children:"Capture Failed"}),n("p",{className:"text-sm text-red-700 m-0 mb-4",children:"An error occurred while capturing this scenario. No screenshot is available."}),d("div",{className:"bg-white border border-red-200 rounded p-4",children:[n("h4",{className:"text-xs font-semibold text-red-800 m-0 mb-2 uppercase tracking-wide",children:"Error Message"}),n("div",{className:"max-h-[300px] overflow-auto",children:n("p",{className:"text-sm text-red-900 m-0 font-mono whitespace-pre-wrap wrap-break-word",children:H})})]}),F&&d("details",{className:"mt-4",children:[n("summary",{className:"text-sm text-red-700 cursor-pointer hover:text-red-900 font-semibold",children:"📋 View full stack trace"}),n("div",{className:"mt-3 bg-white border border-red-200 rounded p-4 overflow-auto",children:n("pre",{className:"text-xs text-red-900 font-mono whitespace-pre-wrap wrap-break-word m-0",children:F})})]}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Mr,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})]}):L.length>0?n("div",{className:"w-full h-full flex items-center justify-center overflow-auto",children:n("div",{className:"bg-red-50 border-2 border-red-300 rounded-lg p-8 w-full max-w-4xl my-auto",children:d("div",{className:"flex items-start gap-4 mb-6",children:[n("span",{className:"text-red-500 text-4xl shrink-0",children:"⚠️"}),d("div",{className:"flex-1 min-w-0",children:[n(AnalysisErrorDisplay,{errors:L,title:"Analysis Error",description:L.length===1?"An error occurred during analysis. Screenshot capture was not completed.":`${L.length} errors occurred during analysis. Screenshot capture was not completed.`}),n("div",{className:"mt-4 bg-white border rounded-lg",style:{borderColor:"#e1e1e1"},children:n(Mr,{scenarioId:e==null?void 0:e.id,analysisId:t==null?void 0:t.id})})]})]})})}):d("div",{className:"flex flex-col items-center gap-4 text-center",children:[n("span",{className:"text-6xl text-gray-300",children:"📷"}),n("p",{className:"text-lg text-gray-500 m-0",children:"No screenshot available for this scenario"}),n("p",{className:"text-sm text-gray-400 m-0",children:"Try recapturing or debugging this scenario"})]})})})}),h&&l&&n(Ot,{projectSlug:l,onClose:()=>f(!1)}),g&&n(Va,{width:x.width,height:x.height??900,onSave:P,onCancel:()=>y(!1)})]})}function vw({analysis:e,entitySha:t}){Ct();const[r,s]=M(e);te(()=>{s(e)},[e]);const[a,o]=M(null),i=oe(()=>{var p;if(!((p=r==null?void 0:r.metadata)!=null&&p.executionFlows)||!(r!=null&&r.scenarios))return null;const u=r.scenarios.filter(h=>{var f;return!((f=h.metadata)!=null&&f.sameAsDefault)});return so(r.metadata.executionFlows,u)},[r]),l=oe(()=>i?Cg(i):[],[i]),c=oe(()=>r!=null&&r.scenarios?r.scenarios.filter(u=>{var p;return!((p=u.metadata)!=null&&p.sameAsDefault)}):[],[r]),m=u=>{var h;const p=((h=u.metadata)==null?void 0:h.coveredFlows)||[];return i?i.executionFlows.filter(f=>p.includes(f.id)):[]};return r?!i||i.executionFlows.length===0?n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Execution Flows"}),n("p",{className:"text-sm",children:"Re-analyze this entity to generate execution flows."})]})}):n("div",{className:"flex-1 overflow-auto bg-[#fafafa]",children:d("div",{className:"p-6 space-y-6",children:[d("div",{className:"bg-white border border-gray-200 rounded-lg p-4",children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0 mb-3",children:"Scenarios Breakdown"}),d("div",{className:"grid grid-cols-4 gap-4 text-center",children:[d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:c.length}),n("div",{className:"text-xs text-gray-500",children:"Scenarios"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[n("div",{className:"text-2xl font-bold text-gray-900",children:i.executionFlows.length}),n("div",{className:"text-xs text-gray-500",children:"Execution Flows"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:"text-2xl font-bold text-gray-900",children:[i.coveredFlows,"/",i.totalFlows]}),n("div",{className:"text-xs text-gray-500",children:"Flows Covered"})]}),d("div",{className:"bg-gray-50 rounded-lg p-3",children:[d("div",{className:`text-2xl font-bold ${i.coveragePercentage===100?"text-green-600":i.coveragePercentage>=50?"text-amber-600":"text-red-600"}`,children:[i.coveragePercentage.toFixed(0),"%"]}),n("div",{className:"text-xs text-gray-500",children:"Coverage"})]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Scenarios (",c.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:c.length===0?d("div",{className:"p-4 text-center text-gray-500 text-sm",children:["No scenarios yet."," ",n(fe,{to:`/entity/${t}/create-scenario`,className:"text-blue-600 hover:underline",children:"Create one"})]}):c.map(u=>{var f,g,y;const p=(g=(f=u.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0],h=m(u);return d("div",{className:"p-4 flex gap-4",children:[n("div",{className:"w-72 h-40 shrink-0 bg-gray-100 rounded overflow-hidden flex items-start justify-center",children:n(Ge,{screenshotPath:p,alt:u.name||"Scenario screenshot",className:"max-w-full max-h-full object-contain object-top"})}),d("div",{className:"flex-1 min-w-0",children:[n("div",{className:"flex items-start justify-between gap-2",children:d("div",{children:[n(fe,{to:`/entity/${t}/scenarios/${u.id}`,className:"font-medium text-gray-900 hover:text-blue-600 no-underline text-sm",children:u.name}),((y=u.metadata)==null?void 0:y.error)&&n("span",{className:"ml-2 text-xs px-1.5 py-0.5 bg-red-100 text-red-700 rounded",children:"Error"})]})}),n("p",{className:"text-xs text-gray-500 mt-1 line-clamp-2",children:u.description}),h.length>0&&n("div",{className:"flex flex-wrap gap-1 mt-2",children:h.map(x=>n("span",{className:`text-xs px-1.5 py-0.5 rounded ${x.isError?"bg-red-50 text-red-700":x.blocksOtherFlows?"bg-purple-50 text-purple-700":"bg-blue-50 text-blue-700"}`,children:x.name},x.id))})]})]},u.id)})}),n("div",{className:"px-4 py-3 border-t border-gray-100 bg-gray-50",children:d(fe,{to:`/entity/${t}/create-scenario`,className:"w-full px-4 py-2 text-sm font-medium text-blue-600 bg-blue-50 rounded-lg hover:bg-blue-100 flex items-center justify-center gap-2 no-underline",children:[n("span",{className:"text-lg leading-none",children:"+"}),"Add Scenario"]})})]}),l.length>0&&d("div",{className:"p-3 bg-amber-50 border border-amber-200 rounded-lg",children:[d("p",{className:"text-sm text-amber-800 font-medium mb-2",children:[l.length," uncovered execution flow",l.length>1?"s":""," — consider adding scenarios to cover these"]}),d("div",{className:"flex flex-wrap gap-1",children:[l.slice(0,10).map(u=>d("span",{className:`text-xs px-2 py-0.5 rounded ${u.impact==="high"?"bg-red-100 text-red-700":"bg-amber-100 text-amber-700"}`,children:[u.name,u.impact==="high"&&" (high impact)"]},u.id)),l.length>10&&d("span",{className:"text-xs text-amber-600",children:["+",l.length-10," more"]})]})]}),d("div",{className:"bg-white border border-gray-200 rounded-lg overflow-hidden",children:[n("div",{className:"px-4 py-3 border-b border-gray-100 bg-gray-50",children:d("h3",{className:"text-sm font-semibold text-gray-900 m-0",children:["Execution Flows (",i.executionFlows.length,")"]})}),n("div",{className:"divide-y divide-gray-100",children:i.executionFlows.map(u=>{const p=a===u.id,h=u.usedInScenarios.length>0;return d("div",{children:[n("button",{onClick:()=>o(p?null:u.id),className:"w-full px-4 py-3 flex items-start justify-between text-left bg-transparent border-none cursor-pointer hover:bg-gray-50",children:d("div",{className:"flex items-start gap-3 flex-1",children:[n("span",{className:"text-gray-400 text-sm mt-0.5 shrink-0",children:p?"▼":"▶"}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[n("span",{className:"font-medium text-sm text-gray-900",children:u.name}),h?n("span",{className:"text-xs px-2 py-0.5 rounded bg-green-100 text-green-700",children:"Covered"}):n("span",{className:"text-xs px-2 py-0.5 rounded bg-amber-100 text-amber-700",children:"Uncovered"}),u.blocksOtherFlows&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-purple-100 text-purple-700",children:"Blocking"}),u.impact==="high"&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"High Impact"}),u.isError&&n("span",{className:"text-xs px-2 py-0.5 rounded bg-red-100 text-red-700",children:"Error"})]}),u.description&&n("p",{className:"text-sm text-gray-600 mt-1 m-0",children:u.description})]})]})}),p&&d("div",{className:"border-t border-gray-100 px-4 py-3 bg-gray-50/50",children:[u.requiredValues.length>0&&d("div",{className:"mb-4",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Required Values"}),n("div",{className:"space-y-1",children:u.requiredValues.map((f,g)=>d("div",{className:"flex items-center gap-2 text-xs",children:[n("code",{className:"font-mono text-gray-800 bg-gray-100 px-1 py-0.5 rounded",children:f.attributePath}),n("span",{className:"text-gray-400",children:f.comparison}),n("code",{className:"font-mono text-blue-700 bg-blue-50 px-1 py-0.5 rounded",children:f.value})]},g))})]}),h&&d("div",{children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Covered by Scenarios"}),n("div",{className:"flex flex-wrap gap-1",children:u.usedInScenarios.map(f=>n("span",{className:"text-xs px-1.5 py-0.5 bg-green-50 text-green-700 rounded",children:f.name},f.id))})]}),u.codeSnippet&&d("div",{className:"mt-4 pt-3 border-t border-gray-200",children:[n("p",{className:"text-xs font-medium text-gray-500 uppercase mb-2",children:"Code Location"}),n("pre",{className:"text-xs bg-gray-900 text-gray-100 p-2 rounded overflow-x-auto font-mono whitespace-pre-wrap",children:n("code",{children:u.codeSnippet})})]})]})]},u.id)})})]})]})}):n("div",{className:"flex-1 flex items-center justify-center p-8 bg-[#F8F7F6]",children:d("div",{className:"text-center text-gray-500",children:[n("p",{className:"text-lg font-medium mb-2",children:"No Analysis Found"}),n("p",{className:"text-sm",children:"Analyze this entity to see the scenarios breakdown."})]})})}function hi({hasIndirectBadge:e,onAnalyze:t}){return d(pe,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[e&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:"0 scenarios"})]})}),d("div",{className:"px-5 py-5 bg-white rounded-bl-lg rounded-br-lg flex items-center justify-between",children:[n("p",{className:"text-sm font-normal text-[#8e8e8e] m-0 leading-[22px]",children:"No analyses available for this version."}),n("button",{className:"px-[15px] py-0 h-[23px] bg-[#005c75] text-white rounded text-xs font-medium leading-5 border-none cursor-pointer hover:bg-[#004a5e] transition-colors flex items-center justify-center",onClick:t,children:"Analyze"})]})]})}function Nw({entity:e,history:t}){const[r,s]=M("entity"),[a,o]=M(new Set),i=t.filter(u=>u.analyses.length>0).length,l=oe(()=>{const u=new Map;return t.forEach(p=>{p.analyses.forEach(h=>{(h.scenarios??[]).filter(g=>{var y;return!((y=g.metadata)!=null&&y.sameAsDefault)}).forEach(g=>{u.has(g.name)||u.set(g.name,[]),u.get(g.name).push({version:p,analysis:h,scenario:g})})})}),Array.from(u.entries()).map(([p,h])=>{var f;return{name:p,description:((f=h[0])==null?void 0:f.scenario.description)||"",versions:h.sort((g,y)=>{const x=new Date(g.analysis.createdAt||0).getTime();return new Date(y.analysis.createdAt||0).getTime()-x})}})},[t]),c=l.length,m=u=>{o(p=>{const h=new Set(p);return h.has(u)?h.delete(u):h.add(u),h})};return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto",children:d("div",{className:"max-w-[1400px] mx-auto px-8 py-8",children:[n("div",{className:"mb-8",children:d("div",{className:"flex items-center gap-6 border-b-2 border-[#e1e1e1]",children:[d("button",{onClick:()=>s("entity"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="entity"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-semibold leading-6",children:"Entity History"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="entity"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:i})]}),d("button",{onClick:()=>s("scenarios"),className:`flex items-center gap-2 px-0 py-3 border-b-2 transition-colors bg-transparent cursor-pointer ${r==="scenarios"?"border-[#005c75] text-[#232323]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:[n("span",{className:"text-base font-normal leading-6",children:"Scenario Changes"}),n("span",{className:`flex items-center justify-center min-w-[22px] h-[22px] px-[5px] rounded-lg text-xs font-medium leading-5 ${r==="scenarios"?"bg-[#e0e9ec] text-[#005c75]":"bg-[#ebf0f2] text-[#626262]"}`,children:c})]})]})}),t.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No history available"})}):r==="entity"?d("div",{className:"relative pl-12",children:[t.length>1&&n("div",{className:"absolute left-[17.5px] top-10 bottom-10 w-px bg-[#c7c7c7]"}),t.map((u,p)=>d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[19px] w-[11.5px] h-[11.5px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-3 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center gap-3",children:[u.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),d(fe,{to:`/entity/${u.sha}/scenarios`,className:"text-xs font-mono text-[#646464] leading-5 hover:text-[#005c75] transition-colors",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:u.sha.substring(0,8)})]})]}),n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-[22px]",children:u.createdAt&&new Date(u.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})})]})}),u.analyses.length>0?n("div",{children:u.analyses.map((h,f)=>{var y;const g=(h.scenarios??[]).filter(x=>{var b;return!((b=x.metadata)!=null&&b.sameAsDefault)});return n("div",{children:g.length===0?n(hi,{hasIndirectBadge:h.indirect,onAnalyze:()=>{console.log("Analyze version:",u.sha)}}):d(pe,{children:[n("div",{className:"px-5 py-3 bg-white border-b border-[#e1e1e1]",children:d("div",{className:"flex items-center justify-end gap-2",children:[h.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5",children:"Indirect"}),d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-xs font-medium leading-5",children:[g.length," scenario",g.length!==1?"s":""]})]})}),((y=h.metadata)==null?void 0:y.scenarioChangesOverview)&&n("div",{className:"p-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:d("p",{className:"text-sm text-[#005c75] m-0 leading-[22px]",children:[d("span",{className:"font-medium",children:["What Changed:"," "]}),h.metadata.scenarioChangesOverview]})}),g.length>0&&n("div",{className:"p-5 bg-white",children:n("div",{className:"flex gap-4 flex-wrap",children:g.map((x,b)=>{var C,A;const w=(A=(C=x.metadata)==null?void 0:C.screenshotPaths)==null?void 0:A[0],v=`${x.name}-${b}`;return d(fe,{to:`/entity/${u.sha}/scenarios/${x.id}`,className:"w-[187px] border border-[#e1e1e1] rounded bg-white overflow-hidden hover:border-[#005c75] hover:shadow-sm transition-all",children:[n("div",{className:"h-[110px] border-b border-[#e1e1e1] bg-gray-50 flex items-center justify-center p-[5.6px]",children:w?n(Ge,{screenshotPath:w,alt:x.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No Screenshot"})]})}),n("div",{className:"p-[5.6px]",children:n("p",{className:"text-[10.2px] font-medium text-[#343434] m-0 leading-[13px] line-clamp-3",children:x.name})})]},v)})})})]})},h.id||f)})}):n(hi,{onAnalyze:()=>{console.log("Analyze version:",u.sha)}})]})]},u.sha))]}):n("div",{className:"relative pl-12",children:l.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:n("p",{className:"text-gray-500 text-base m-0",children:"No scenarios found"})}):l.map((u,p)=>{const h=a.has(u.name),f=h?u.versions:u.versions.slice(0,1),g=u.versions.length-1,y=u.versions[0];return y==null||y.version.sha,e==null||e.sha,d("div",{className:"relative mb-12 last:mb-0",children:[n("div",{className:"absolute left-[-35px] top-[42px] w-[13.26px] h-[13.26px] rounded-full bg-[#00925d]"}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-5 py-5 bg-[#f6f9fc] border-b border-[#e1e1e1]",children:[n("h3",{className:"text-base font-semibold text-[#232323] m-0 mb-1 leading-6",children:u.name}),u.description&&n("p",{className:"text-sm font-normal text-[#626262] m-0 leading-[22px]",children:u.description})]}),d("div",{className:"p-5 bg-white",children:[f.map((x,b)=>{var E,N;const{version:w,analysis:v,scenario:C}=x,A=(N=(E=C.metadata)==null?void 0:E.screenshotPaths)==null?void 0:N[0],S=b===0;return d("div",{className:`flex gap-5 items-start ${S?"":"mt-5 pt-5 border-t border-[#e1e1e1]"}`,children:[n(fe,{to:`/entity/${w.sha}/scenarios/${C.id}`,className:"w-[175px] h-[110px] border border-[#e1e1e1] rounded bg-gray-50 flex items-center justify-center shrink-0 hover:border-[#005c75] hover:shadow-sm transition-all",children:A?n(Ge,{screenshotPath:A,alt:C.name,className:"max-w-full max-h-full object-contain rounded-sm"}):d("div",{className:"flex flex-col items-center gap-1",children:[n("span",{className:"text-gray-400 text-xl",children:"📷"}),n("span",{className:"text-gray-400 text-[10px]",children:"No screenshot"})]})}),d("div",{className:"flex-1 flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-2 flex-wrap",children:[w.sha===(e==null?void 0:e.sha)&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-xs font-medium leading-5",children:"Current Version"}),S&&u.versions.length>1&&d("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#e0e9ec] text-[#005c75] rounded text-xs font-medium leading-5",children:[u.versions.length," versions"]})]}),d(fe,{to:`/entity/${w.sha}/scenarios`,className:"text-xs font-mono text-[#646464] m-0 leading-5 hover:text-[#005c75] transition-colors w-fit",children:["SHA:"," ",n("span",{className:"text-[#3e3e3e] hover:text-[#005c75]",children:w.sha.substring(0,8)})]}),v.createdAt&&d("p",{className:"text-xs font-medium text-[#8e8e8e] m-0 leading-[22px]",children:["Captured:"," ",new Date(v.createdAt).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1})]}),v.indirect&&n("span",{className:"px-[5px] py-0 h-[25px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-xs font-medium leading-5 self-start",children:"Indirect"})]})]},`${w.sha}-${b}`)}),g>0&&d("button",{onClick:()=>m(u.name),className:"mt-5 flex items-center gap-2 text-sm text-[#005c75] bg-transparent border-none cursor-pointer p-0 hover:underline",children:[n("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",className:`transition-transform ${h?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),h?"Hide":`${g} previous version${g!==1?"s":""}`]})]})]})]},u.name)})})]})})}function fi({entity:e,analysisInfo:t,from:r}){const s=Le(),a=s.state!=="idle",o=e.entityType==="visual"||e.entityType==="library",i=l=>{l.preventDefault(),l.stopPropagation(),o&&s.submit({entitySha:e.sha,filePath:e.filePath},{method:"post",action:"/api/analyze"})};return n(fe,{to:`/entity/${e.sha}${r?`?from=${r}`:""}`,className:"block group cursor-pointer",children:d("div",{className:"flex gap-0 border border-gray-200 rounded-lg overflow-hidden transition-all hover:border-[#005c75] hover:shadow-md bg-white h-[100px]",children:[e.screenshotPath?n("div",{className:"w-[125px] h-full bg-gray-50 flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n(Ge,{screenshotPath:e.screenshotPath,alt:e.name,className:"max-w-full max-h-full object-contain"})}):n("div",{className:"w-[125px] h-full bg-[#efefef] flex items-center justify-center shrink-0 rounded-bl-[8px] rounded-tl-[8px] border-r border-gray-200",children:n("span",{className:"text-[40px]",children:n(nt,{type:e.entityType})})}),d("div",{className:"flex-1 flex items-center justify-between px-4 min-w-0",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n(nt,{type:e.entityType}),n("div",{className:"text-base font-medium text-black truncate group-hover:text-[#005c75] transition-colors",children:e.name})]}),n("div",{className:"text-[10px] text-[#8e8e8e] truncate mb-1 font-mono",title:e.filePath,children:e.filePath}),t.hasScenarios&&d("div",{className:"flex items-center gap-2 mt-2",children:[d("span",{className:"px-[5px] py-0 bg-[#efefef] text-[#3e3e3e] rounded text-[10px] font-medium",children:[t.scenarioCount," scenarios"]}),n("span",{className:"text-xs text-[#8e8e8e]",children:t.timestamp})]})]}),n("div",{className:"shrink-0 ml-4",children:t.status==="not_analyzed"?d(pe,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f9f9f9] border border-[#e1e1e1] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#c7c7c7]"}),n("span",{className:"text-[10px] font-semibold text-[#646464]",children:"Not analyzed"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]}):t.status==="up_to_date"?d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#f2fcf9] border border-[#c8f2e3] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#00925d]"}),n("span",{className:"text-[10px] font-semibold text-[#00925d]",children:"Up to date"})]}):d(pe,{children:[d("div",{className:"flex items-center gap-1 px-3 py-1 bg-[#e0e9ec] border border-[#e0e9ec] rounded mb-2",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#005c75]"}),n("span",{className:"text-[10px] font-semibold text-[#005c75]",children:"Out of date"})]}),o&&n("button",{className:`w-full px-3 py-1 bg-[#005c75] text-white border-none rounded text-[10px] font-medium transition-colors ${a?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,onClick:i,disabled:a,children:a?"Analyzing...":"Analyze"})]})})]})]})},e.sha)}const gi=e=>{var a,o,i;const t=((a=e.analysisStatus)==null?void 0:a.status)||"not_analyzed",r=((o=e.analysisStatus)==null?void 0:o.scenarioCount)||0,s=(i=e.analysisStatus)==null?void 0:i.timestamp;return t==="not_analyzed"?{status:"not_analyzed",label:"Not analyzed",color:"gray"}:t==="up_to_date"?{status:"up_to_date",label:"Up to date",color:"green",hasScenarios:r>0,scenarioCount:r,timestamp:s}:{status:"out_of_date",label:"Out of date",color:"teal",hasScenarios:r>0,scenarioCount:r,timestamp:s}};function Cw({importedEntities:e,importingEntities:t}){const[r]=kn(),s=r.get("from"),a=Le(),o=a.state!=="idle",i=e.length>0,l=t.length>0,c=h=>h.filter(f=>f.entityType==="visual"||f.entityType==="library"),m=h=>{const f=c(h);f.length!==0&&a.submit({entityShas:f.map(g=>g.sha).join(",")},{method:"post",action:"/api/analyze"})},u=c(e).length>0,p=c(t).length>0;return n("div",{className:"max-w-[1400px] mx-auto",children:d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-8",children:[d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imports"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#deeafc] text-[#2f80ed] rounded-[9.095px] text-xs font-semibold leading-5",children:e.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities imported by this component."})]}),u&&n("button",{onClick:()=>m(e),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),i?n("div",{className:"p-6 space-y-4",children:e.map(h=>n(fi,{entity:h,analysisInfo:gi(h),from:s},h.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"No imports."})})]}),d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[d("div",{className:"px-6 py-4 flex items-start justify-between",children:[d("div",{children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{className:"text-base font-semibold text-black m-0 leading-6",children:"Imported By"}),n("span",{className:"px-2 h-[20.464px] flex items-center justify-center bg-[#f3eefe] text-[#9b51e0] rounded-[9.095px] text-xs font-semibold leading-5",children:t.length})]}),n("p",{className:"text-sm text-[#646464] m-0 leading-[22px]",children:"Entities that import this component."})]}),p&&n("button",{onClick:()=>m(t),disabled:o,className:`px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium transition-colors ${o?"cursor-wait opacity-70":"cursor-pointer hover:bg-[#004a5c]"}`,children:o?"Analyzing...":"Analyze All"})]}),l?n("div",{className:"p-6 space-y-4",children:t.map(h=>n(fi,{entity:h,analysisInfo:gi(h),from:s},h.sha))}):n("div",{className:"bg-[#f6f9fc] h-[339.923px] flex items-center justify-center",children:n("p",{className:"text-sm text-[#646464] m-0 leading-[22px] text-center",children:"Not imported by any entity."})})]})]})})}function Sw({relatedEntities:e}){return n("div",{className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:n(Cw,{importedEntities:e.importedEntities,importingEntities:e.importingEntities})})}function kw({data:e,defaultExpanded:t=!1,maxDepth:r=3}){return n("div",{className:"font-mono text-sm",children:n(rr,{data:e,depth:0,defaultExpanded:t,maxDepth:r})})}function rr({data:e,depth:t,defaultExpanded:r,maxDepth:s,objectKey:a,showInlineToggle:o=!1}){const[i,l]=M(r||t<2);if(te(()=>{l(r||t<2)},[r,t]),e===null)return n("span",{className:"text-gray-500",children:"null"});if(e===void 0)return n("span",{className:"text-gray-500",children:"undefined"});const c=typeof e;if(c==="string")return d("span",{className:"text-green-600",children:['"',e,'"']});if(c==="number")return n("span",{className:"text-blue-600",children:e});if(c==="boolean")return n("span",{className:"text-purple-600",children:e.toString()});if(Array.isArray(e))return e.length===0?n("span",{className:"text-gray-600",children:"[]"}):d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","["]}),!i&&d("span",{children:[e.length,"]"]})]}),i?d(pe,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:e.map((m,u)=>n("div",{className:"py-0.5",children:n(rr,{data:m,depth:t+1,defaultExpanded:r,maxDepth:s})},u))}),n("div",{className:"text-gray-600",children:"]"})]}):null]});if(c==="object"){const m=Object.keys(e);if(m.length===0)return n("span",{className:"text-gray-600",children:"{}"});const u=h=>h!==null&&typeof h=="object"&&!Array.isArray(h)&&Object.keys(h).length>0,p=h=>Array.isArray(h)&&h.length>0;return d("span",{children:[d("button",{className:"text-gray-600 hover:text-gray-900 cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded",onClick:()=>l(!i),children:[d("span",{children:[i?"▼":"▶"," ","{"]}),!i&&d("span",{children:[m.length,"}"]})]}),i?d(pe,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:m.map(h=>{const f=e[h],g=u(f),y=p(f);return n("div",{className:"py-0.5",children:g?n(uo,{propertyKey:h,value:f,depth:t,defaultExpanded:r,maxDepth:s}):y?n(mo,{propertyKey:h,value:f,depth:t,defaultExpanded:r,maxDepth:s}):d(pe,{children:[d("span",{className:"text-orange-600",children:[h,": "]}),n(rr,{data:f,depth:t+1,defaultExpanded:r,maxDepth:s})]})},h)})}),n("div",{className:"text-gray-600",children:"}"})]}):null]})}return n("span",{className:"text-gray-500",children:String(e)})}function uo({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=M(s||r<2),l=Object.keys(t);return te(()=>{i(s||r<2)},[s,r]),d(pe,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"{"}),!o&&d("span",{className:"text-gray-600",children:[l.length,"}"]})]}),o&&d(pe,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:l.map(c=>{const m=t[c],u=m!==null&&typeof m=="object"&&!Array.isArray(m)&&Object.keys(m).length>0,p=Array.isArray(m)&&m.length>0;return n("div",{className:"py-0.5",children:u?n(uo,{propertyKey:c,value:m,depth:r+1,defaultExpanded:s,maxDepth:a}):p?n(mo,{propertyKey:c,value:m,depth:r+1,defaultExpanded:s,maxDepth:a}):d(pe,{children:[d("span",{className:"text-orange-600",children:[c,": "]}),n(rr,{data:m,depth:r+2,defaultExpanded:s,maxDepth:a})]})},c)})}),n("div",{className:"text-gray-600",children:"}"})]})]})}function mo({propertyKey:e,value:t,depth:r,defaultExpanded:s,maxDepth:a}){const[o,i]=M(s||r<2);return te(()=>{i(s||r<2)},[s,r]),d(pe,{children:[d("button",{className:"cursor-pointer bg-transparent border-none p-0 font-mono hover:bg-gray-100 rounded inline-flex items-baseline",style:{marginLeft:"-14px"},onClick:()=>i(!o),children:[n("span",{className:"text-gray-600 hover:text-gray-900 mr-1",children:o?"▼":"▶"}),d("span",{className:"text-orange-600",children:[e,": "]}),n("span",{className:"text-gray-600 ml-0.5",children:"["}),!o&&d("span",{className:"text-gray-600",children:[t.length,"]"]})]}),o&&d(pe,{children:[n("div",{className:"ml-4 border-l-2 border-gray-200 pl-3 mt-1",children:t.map((l,c)=>{const m=l!==null&&typeof l=="object"&&!Array.isArray(l)&&Object.keys(l).length>0,u=Array.isArray(l)&&l.length>0;return n("div",{className:"py-0.5",children:m?n(uo,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):u?n(mo,{propertyKey:c.toString(),value:l,depth:r+1,defaultExpanded:s,maxDepth:a}):n(rr,{data:l,depth:r+2,defaultExpanded:s,maxDepth:a})},c)})}),n("div",{className:"text-gray-600",children:"]"})]})]})}function ea({label:e,count:t,isActive:r,onClick:s,badgeColorActive:a,badgeTextActive:o}){return d("button",{onClick:s,className:`px-6 py-3 text-sm font-medium relative transition-colors cursor-pointer ${r?"text-[#005c75]":"text-[#3e3e3e] hover:text-gray-900 hover:bg-gray-50"}`,children:[e,t!==void 0&&n("span",{className:`ml-2 px-2 py-0.5 rounded-full text-xs font-semibold ${r?`${a} ${o}`:"bg-gray-200 text-gray-700"}`,children:t}),r&&n("div",{className:"absolute bottom-0 left-0 right-0 h-0.5 bg-[#005c75]"})]})}function yi({label:e,isActive:t,onClick:r,disabled:s=!1}){return n("button",{onClick:r,className:`w-full text-left px-3 py-2.5 rounded-md transition-all text-sm cursor-pointer ${t?"bg-[#f6f9fc] text-[#005c75] font-medium border-l-2 border-[#005c75] pl-[10px]":"text-[#3e3e3e] hover:bg-gray-50"}`,disabled:s,children:e})}function xi({call:e,scenarioName:t}){const[r,s]=M(!1),[a,o]=M("system"),i=h=>new Date(h).toLocaleString("en-US",{month:"2-digit",day:"2-digit",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!1}),l=h=>h?`$${h.toFixed(4)}`:null,c=(h,f)=>{if(!h&&!f)return null;const g=[];return h&&g.push(`${h.toLocaleString()} in`),f&&g.push(`${f.toLocaleString()} out`),g.join(" / ")},m=oe(()=>{var h,f,g,y,x;try{const b=JSON.parse(e.response);return(g=(f=(h=b.choices)==null?void 0:h[0])==null?void 0:f.message)!=null&&g.content?b.choices[0].message.content:(x=(y=b.content)==null?void 0:y[0])!=null&&x.text?b.content[0].text:e.response}catch{return e.response}},[e.response]),u=oe(()=>{try{return JSON.stringify(JSON.parse(e.props),null,2)}catch{return e.props}},[e.props]),p=oe(()=>{var h;if(t)return t;try{const f=JSON.parse(e.props);return((h=f==null?void 0:f.scenario)==null?void 0:h.name)||null}catch{return null}},[e.props,t]);return d("div",{className:"bg-white rounded-lg border border-[#e1e1e1] overflow-hidden",children:[n("div",{className:"px-5 py-4 bg-[#f6f9fc] border-b border-[#e1e1e1] cursor-pointer hover:bg-[#edf2f7] transition-colors",onClick:()=>s(!r),children:d("div",{className:"flex items-start justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-2 flex-wrap",children:[n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#005c75] text-white rounded text-[11px] font-medium",children:e.prompt_type}),n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#efefef] text-[#3e3e3e] rounded text-[11px] font-medium",children:e.model}),p&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#deeafc] text-[#2f80ed] rounded text-[11px] font-medium",children:p}),e.error&&n("span",{className:"px-2 py-0.5 h-[22px] flex items-center bg-[#fce8c5] text-[#ef4444] rounded text-[11px] font-medium",children:"Error"})]}),d("div",{className:"flex items-center gap-4 text-xs text-[#626262]",children:[n("span",{children:i(e.created_at)}),c(e.input_tokens,e.output_tokens)&&n("span",{children:c(e.input_tokens,e.output_tokens)}),l(e.cost)&&n("span",{className:"text-[#005c75] font-medium",children:l(e.cost)})]}),d("div",{className:"text-[11px] text-[#8a8a8a] font-mono mt-1",children:[".codeyam/llm-calls/",e.object_id,"_",e.id,".json"]})]}),n("svg",{width:"20",height:"20",viewBox:"0 0 16 16",fill:"none",className:`transition-transform shrink-0 ${r?"rotate-180":""}`,children:n("path",{d:"M4 6L8 10L12 6",stroke:"#626262",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})}),r&&d("div",{className:"border-t border-[#e1e1e1]",children:[d("div",{className:"flex border-b border-[#e1e1e1] bg-[#fafafa]",children:[n("button",{onClick:()=>o("system"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="system"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"System"}),n("button",{onClick:()=>o("prompt"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="prompt"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Prompt"}),n("button",{onClick:()=>o("response"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="response"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Response"}),n("button",{onClick:()=>o("props"),className:`px-4 py-2 text-[13px] font-medium border-b-2 transition-colors bg-transparent cursor-pointer ${a==="props"?"border-[#005c75] text-[#005c75]":"border-transparent text-[#626262] hover:text-[#232323]"}`,children:"Context"})]}),a&&d("div",{className:"p-4 bg-white max-h-[400px] overflow-auto",children:[a==="system"&&n("div",{children:e.system_message?n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.system_message}):n("p",{className:"text-xs text-[#626262] italic m-0",children:"No system message"})}),a==="prompt"&&n("div",{children:n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:e.prompt_text})}),a==="response"&&d("div",{children:[e.error&&d("div",{className:"mb-4 p-3 bg-[#fef2f2] border border-[#fecaca] rounded",children:[n("h4",{className:"text-xs font-semibold text-[#dc2626] uppercase mb-1",children:"Error"}),n("p",{className:"text-xs text-[#dc2626] m-0",children:e.error})]}),n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:m})]}),a==="props"&&n("pre",{className:"text-xs font-mono text-[#3e3e3e] whitespace-pre-wrap bg-[#f6f9fc] p-3 rounded border border-[#e1e1e1] m-0 overflow-auto",children:u})]}),e.error&&!a&&n("div",{className:"p-4 bg-[#fef2f2] border-t border-[#fecaca]",children:d("p",{className:"text-xs text-[#dc2626] m-0",children:[n("span",{className:"font-semibold",children:"Error: "}),e.error]})})]})]})}const bi=["generateEntityScenarios","analyzeEntity","generateDataStructure","generateEntityDescription"];function Ew({entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a}){var v,C,A,S,E,N,k,j,T;const[o,i]=M("entity"),[l,c]=M("analysis"),[m,u]=M(r.length>0?{scenarioId:r[0].id||r[0].name}:null),[p,h]=M("entity"),{entityLlmCalls:f,scenarioLlmCalls:g,totalLlmCalls:y}=oe(()=>{if(!a)return{entityLlmCalls:[],scenarioLlmCalls:[],totalLlmCalls:0};const P=[...a.entityCalls,...a.analysisCalls],R=P.filter($=>$.object_type==="entity"||bi.includes($.prompt_type)),I=P.filter($=>$.object_type!=="entity"&&!bi.includes($.prompt_type));return R.sort(($,L)=>L.created_at-$.created_at),I.sort(($,L)=>L.created_at-$.created_at),{entityLlmCalls:R,scenarioLlmCalls:I,totalLlmCalls:P.length}},[a]),x=[{id:"analysis",title:"Analysis",data:t?{id:t.id,status:t.status}:void 0,description:"Analysis metadata including ID and processing status"},{id:"isolatedDataStructure",title:"Isolated Data Structure",data:(v=e==null?void 0:e.metadata)==null?void 0:v.isolatedDataStructure,description:"Entity's own data structure without dependencies"},{id:"mergedDataStructure",title:"Merged Data Structure",data:(C=t==null?void 0:t.metadata)==null?void 0:C.mergedDataStructure,description:"Combined data structure including dependencies"},{id:"conditionalUsages",title:"Conditional Usages",data:(S=(A=e==null?void 0:e.metadata)==null?void 0:A.isolatedDataStructure)==null?void 0:S.conditionalUsages,description:"Attributes used in conditionals (if, ternary, switch, &&) - candidates for key attributes"},{id:"executionFlows",title:"Execution Flows",data:(E=t==null?void 0:t.metadata)==null?void 0:E.executionFlows,description:"Distinct outcomes/behaviors this component can produce"},{id:"importedExports",title:"Imported Dependencies",data:{"Internal Dependencies":(N=e==null?void 0:e.metadata)==null?void 0:N.importedExports,"External Dependencies":(k=e==null?void 0:e.metadata)==null?void 0:k.nodeModuleImports},description:"Internal and external dependencies used by this entity"},{id:"scenariosDataStructure",title:"Scenarios Data Structure",data:(j=t==null?void 0:t.metadata)==null?void 0:j.scenariosDataStructure,description:"Structure template used across all scenarios"}],b=x.filter(P=>P.data!==void 0&&P.data!==null).length;let w=null;if(o==="entity"){const P=x.find(R=>R.id===l);P&&P.data!==void 0&&P.data!==null&&(w={title:P.title,description:P.description,data:P.data})}else if(o==="scenarios"&&m){const P=r.find(R=>(R.id||R.name)===m.scenarioId);P&&(w={title:P.name,description:P.description||"Scenario data and configuration",data:P.metadata})}return d("div",{className:"max-w-[1800px] mx-auto h-full flex flex-col",children:[n("div",{className:"mb-6 shrink-0",children:d("div",{className:"flex border-b border-gray-200 relative",children:[n(ea,{label:"Entity",isActive:o==="entity",onClick:()=>i("entity"),badgeColorActive:"bg-[#e0e9ec]",badgeTextActive:"text-[#005c75]"}),n(ea,{label:"Scenarios",count:r.length,isActive:o==="scenarios",onClick:()=>i("scenarios"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),n(ea,{label:"LLM Calls",count:y,isActive:o==="llm-calls",onClick:()=>i("llm-calls"),badgeColorActive:"bg-[#ebf0f2]",badgeTextActive:"text-[#626262]"}),((T=t==null?void 0:t.metadata)==null?void 0:T.analyzerVersion)&&d("div",{className:"ml-auto flex items-center text-xs text-gray-500",children:[n("span",{className:"font-medium",children:"Analyzer:"}),n("span",{className:"ml-1 font-mono",children:t.metadata.analyzerVersion})]})]})}),o==="llm-calls"?d("div",{className:"flex-1 min-h-0",children:[d("div",{className:"flex gap-4 mb-4",children:[d("button",{onClick:()=>h("entity"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${p==="entity"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Entity Calls (",f.length,")"]}),d("button",{onClick:()=>h("scenario"),className:`px-4 py-2 rounded-lg text-sm font-medium transition-colors cursor-pointer ${p==="scenario"?"bg-[#005c75] text-white":"bg-white border border-gray-200 text-gray-600 hover:bg-gray-50"}`,children:["Scenario Calls (",g.length,")"]})]}),n("div",{className:"space-y-4 overflow-y-auto",style:{maxHeight:"calc(100vh - 350px)"},children:p==="entity"?f.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No entity-level LLM calls found"})}):f.map(P=>n(xi,{call:P},P.id)):g.length===0?n("div",{className:"bg-white rounded-lg border border-gray-200 p-8 text-center",children:n("p",{className:"text-gray-500 text-sm m-0",children:"No scenario-level LLM calls found"})}):g.map(P=>n(xi,{call:P},P.id))})]}):d("div",{className:"grid grid-cols-[340px_1fr] gap-6 flex-1 min-h-0",children:[n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 overflow-y-auto",children:o==="entity"?d(pe,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"ENTITY SECTIONS"}),b===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No entity data available."}):n("nav",{className:"space-y-1",children:x.map(P=>{const R=P.data!==void 0&&P.data!==null;return n(yi,{label:P.title,isActive:l===P.id,onClick:()=>c(P.id),disabled:!R},P.id)})})]}):d(pe,{children:[n("h3",{className:"text-xs font-medium text-black mb-3 uppercase tracking-wide",children:"SCENARIOS"}),r.length===0?n("p",{className:"text-sm text-[#646464] leading-[22px]",children:"No scenarios available."}):n("nav",{className:"space-y-1",children:r.map(P=>{const R=P.id||P.name,I=(m==null?void 0:m.scenarioId)===R;return n(yi,{label:P.name,isActive:I,onClick:()=>u({scenarioId:R})},R)})})]})}),n("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:w?n(_w,{title:w.title,description:w.description,data:w.data}):o==="scenarios"&&r.length===0?n(wi,{title:"No Simulations Yet",description:"Analyze the code to create simulations and create test scenarios automatically.",onAnalyze:s}):o==="entity"?n(wi,{title:"No Entity Data Yet",description:"Entity data structures will appear here after analysis is complete.",onAnalyze:s}):n("div",{className:"p-6 text-center py-12 text-gray-500",children:"Select a section to view data"})})]})]})}function wi({title:e,description:t,onAnalyze:r}){return d("div",{className:"flex flex-col items-center justify-center h-full bg-[#f6f9fc]",children:[n("h2",{className:"text-[28px] font-semibold text-[#646464] leading-[40px] mb-2 text-center",children:e}),n("p",{className:"text-base text-[#646464] leading-6 mb-6 text-center max-w-[600px]",children:t}),r&&n("button",{onClick:r,className:"h-[54px] w-[183px] bg-[#005c75] text-white text-base font-medium rounded-lg border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]})}function _w({title:e,description:t,data:r}){const[s,a]=M(!0);return d(pe,{children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50",children:[n("h3",{className:"text-base font-semibold text-black m-0",children:e}),n("p",{className:"text-sm text-[#646464] mt-1 m-0",children:t})]}),d("div",{className:"px-6 py-4 bg-white flex justify-between items-center",children:[d("div",{className:"flex gap-2",children:[n("button",{onClick:()=>a(!0),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#005c75] text-white":"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]"}`,children:"Expand All"}),n("button",{onClick:()=>a(!1),className:`px-4 h-8 text-sm font-medium rounded border-none cursor-pointer transition-colors ${s?"bg-[#e0e9ec] hover:bg-[#d0dfe4] text-[#005c75]":"bg-[#005c75] text-white"}`,children:"Collapse All"})]}),n(At,{content:JSON.stringify(r,null,2),label:"Copy JSON",copiedLabel:"Copied!",className:"px-4 h-8 bg-[#343434] hover:bg-[#232323] text-white text-sm font-medium rounded border-none transition-colors whitespace-nowrap"})]}),n("div",{className:"overflow-y-auto flex-1",children:n("div",{className:"p-6",children:r?n("div",{className:"bg-gray-50 rounded-lg p-3 overflow-x-auto",children:n(kw,{data:r,defaultExpanded:s,maxDepth:99})}):n("div",{className:"text-center py-12 text-gray-500",children:"No data available for this section"})})})]})}function Aw({entity:e,analysis:t,scenarios:r,onAnalyze:s}){const a=Le();return te(()=>{if(e!=null&&e.sha&&a.state==="idle"&&!a.data){const o=t!=null&&t.id?`/api/llm-calls/${e.sha}?analysisId=${t.id}`:`/api/llm-calls/${e.sha}`;a.load(o)}},[e==null?void 0:e.sha,t==null?void 0:t.id,a.state,a.data]),n("div",{className:"flex-1 min-h-0 bg-[#f9f9f9] overflow-auto p-8",children:n(Ew,{entity:e,analysis:t,scenarios:r,onAnalyze:s,llmCalls:a.data})})}const Pw={margin:0,padding:"24px",backgroundColor:"#101827",fontSize:"14px",lineHeight:"1.5"},jw={minWidth:"3em",paddingRight:"1em",color:"#6b7280",userSelect:"none"},Tw=2e3,Mw=e=>{var r;if(!e)return"typescript";switch((r=e.split(".").pop())==null?void 0:r.toLowerCase()){case"ts":case"tsx":return"typescript";case"js":case"jsx":return"javascript";case"json":return"json";case"css":return"css";default:return"typescript"}};function $w({entity:e,entityCode:t}){const r=ss(),s=be(null);return te(()=>{const a=r.hash;if(!a||!s.current)return;const o=a.match(/^#L(\d+)$/);if(!o)return;const i=parseInt(o[1],10);setTimeout(()=>{if(!s.current)return;const l=s.current.querySelector(`[data-line-number="${i}"]`);if(l&&l instanceof HTMLElement){l.scrollIntoView({behavior:"smooth",block:"center"});const c=l.style.backgroundColor;l.style.backgroundColor="rgba(255, 255, 0, 0.2)",setTimeout(()=>{l.style.backgroundColor=c},2e3)}},300)},[r.hash,t]),n("div",{ref:s,className:"flex-1 bg-[#f9f9f9] overflow-auto p-8",children:d("div",{className:"bg-white rounded-tl-lg rounded-tr-lg border border-gray-200 overflow-hidden",children:[d("div",{className:"px-6 py-4 border-b border-gray-200 bg-gray-50 flex justify-between items-center",children:[d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-900 m-0",children:"Source Code"}),n("p",{className:"text-xs text-[#646464] font-mono mt-1 m-0",children:e==null?void 0:e.filePath})]}),t&&n(At,{content:t,label:"Copy Code",duration:Tw,className:"px-[10px] py-[5px] bg-[#005c75] text-white border-none rounded text-xs font-medium cursor-pointer transition-colors hover:bg-[#004a5c] disabled:opacity-75 disabled:cursor-not-allowed"})]}),n("div",{className:"p-0",children:t?n("div",{className:"relative",children:n(au,{language:Mw(e==null?void 0:e.filePath),style:ou,showLineNumbers:!0,customStyle:Pw,lineNumberStyle:jw,wrapLines:!0,lineProps:a=>({"data-line-number":a,style:{display:"block"}}),children:t})}):n("div",{className:"p-12 text-center text-gray-500",children:"No code available"})})]})})}const Iw=({data:e})=>[{title:e!=null&&e.entity?`${e.entity.name} - CodeYam`:"Entity - CodeYam"},{name:"description",content:"View entity scenarios and screenshots"}];function Rw({currentParams:e,nextParams:t,currentUrl:r,nextUrl:s,formMethod:a,defaultShouldRevalidate:o}){return r.pathname===s.pathname&&r.search===s.search?o:!!(e.sha!==t.sha||a)}async function Dw({params:e,request:t,context:r}){const{sha:s}=e;if(!s)throw new Response("Entity SHA is required",{status:400});const o=new URL(t.url).searchParams.get("from"),l=(e["*"]||"").split("/").filter(Boolean),c=l[0]||"scenarios",m=l[1]||null,u=l[2]||null,p=r.analysisQueue,h=p?p.getState():{paused:!1,jobs:[]},[f,g,y,x]=await Promise.all([an(s),De(),Pn(),mp(ye()||process.cwd())]),b=f?await ps(f):null,w=f?await hl(f.sha):null;let v={importedEntities:[],importingEntities:[]},C=null,A=[];f&&(v=await fl(f),C=await gl(f),A=await xl(f));const S=!!(f&&A.length>0&&A[0].sha!==f.sha),E=A.length>0?A[0].sha:null,N=!!(A.length>0&&A[0].analyses&&A[0].analyses.length>0),k=f?await yl(f):!1;return Z({entity:f??void 0,analysis:b??void 0,currentEntityAnalysis:w??void 0,projectSlug:g,from:o,relatedEntities:v,entityCode:C??void 0,hasNewerVersion:S,newestEntitySha:E,newestVersionHasAnalysis:N,fileModifiedSinceEntity:k,history:A,tab:c,scenarioId:m,viewModeFromUrl:u,currentCommit:y,hasAnApiKey:x,queueState:h})}const Ow=Ye(function(){var hr,fr,fn,gn,Fn,yn,Tt,gr,yr,xr,br,wr,Mt,zn,vr;const t=He(),a=(Ui()["*"]||"").split("/").filter(Boolean),o=a[0]||"scenarios",i=a[1]||null,l=a[2]||null,c=t.entity,m=t.analysis,u=t.currentEntityAnalysis,p=u||m,h=t.projectSlug;t.from;const f=t.relatedEntities,g=t.entityCode,y=t.hasNewerVersion,x=t.newestEntitySha,b=t.newestVersionHasAnalysis,w=t.fileModifiedSinceEntity,v=t.history,C=t.currentCommit,A=t.hasAnApiKey,S=t.queueState;(hr=p==null?void 0:p.status)==null||hr.errors;const E=(p==null?void 0:p.scenarios)||[],N=E.filter(V=>{var ce;return!((ce=V.metadata)!=null&&ce.sameAsDefault)}),k=E.filter(V=>{var ce;return(ce=V.metadata)==null?void 0:ce.sameAsDefault}),j=Nt(),T=be(null);te(()=>{T.current===null&&(T.current=window.history.length)},[]);const P=()=>{if(typeof window>"u")return;const V=window.history.state;if(V===null||(V==null?void 0:V.idx)===void 0||(V==null?void 0:V.idx)===0)j("/");else{const ce=window.history.length,Ee=T.current;if(Ee!==null&&ce>Ee){const _e=ce-Ee+1;j(-_e)}else j(-1)}},R=!!S.currentlyExecuting,I=o,$=(fr=C==null?void 0:C.metadata)==null?void 0:fr.currentRun,L=!!($!=null&&$.createdAt)&&!($!=null&&$.analysisCompletedAt),H=!!(c!=null&&c.sha&&((fn=$==null?void 0:$.currentEntityShas)!=null&&fn.includes(c.sha))),F=!!(c!=null&&c.sha&&((Fn=(gn=S.currentlyExecuting)==null?void 0:gn.entityShas)!=null&&Fn.includes(c.sha))),z=!!(c!=null&&c.sha&&((yn=S.jobs)!=null&&yn.some(V=>{var ce;return(ce=V.entityShas)==null?void 0:ce.includes(c.sha)}))),U=H||F||z,O=U&&((Tt=p==null?void 0:p.status)==null?void 0:Tt.finishedAt)!=null&&N.length>0&&p.entitySha!==(c==null?void 0:c.sha),_=oe(()=>{if(I!=="scenarios")return null;if(i){const V=N.find(ce=>ce.id===i);if(V)return V}return N.length>0&&!U?N[0]:null},[I,i,N,U]),Y=((xr=(yr=(gr=_==null?void 0:_.metadata)==null?void 0:gr.executionResult)==null?void 0:yr.error)==null?void 0:xr.message)||((Mt=(wr=(br=p==null?void 0:p.status)==null?void 0:br.errors)==null?void 0:wr[0])==null?void 0:Mt.message);gt({source:_?"scenario-page":"entity-page",entitySha:c==null?void 0:c.sha,scenarioId:_==null?void 0:_.id,analysisId:p==null?void 0:p.id,entityName:c==null?void 0:c.name,entityType:c==null?void 0:c.entityType,scenarioName:_==null?void 0:_.name,errorMessage:Y});const[Q,K]=M(()=>l&&l!=="edit"?l:(c==null?void 0:c.entityType)==="library"?"data":"screenshot");te(()=>{l&&l!==Q&&l!=="edit"&&K(l)},[l]);const ae=l==="edit",[J,D]=M(!1),[W,G]=M(!1),[ne,se]=M(null),[re,ee]=M(!1),[de,me]=M(!1),[Te,xe]=M(null),[Ce,$e]=M(null),[Ae,ie]=M(0),{interactiveServerUrl:he,isStarting:ke,isLoading:st,showIframe:ve,iframeKey:ze,onIframeLoad:Ue}=cn({analysisId:p==null?void 0:p.id,scenarioId:_==null?void 0:_.id,scenarioName:_==null?void 0:_.name,projectSlug:h,enabled:ae&&!!_,refreshTrigger:Ae}),[ct,dr]=M(!1),[No,Co]=M(""),[dn,yt]=M(!1),[un,$n]=M(Date.now()),[Ut,mn]=M(!1),Qe=Le(),dt=Le(),qe=Le(),We=Ct(),Ms=S.jobs.some(V=>{var ce;return(c==null?void 0:c.sha)&&((ce=V.entityShas)==null?void 0:ce.includes(c.sha))||V.type==="analysis"&&V.commitSha===(C==null?void 0:C.sha)&&V.entityShas&&V.entityShas.length===0}),pn=U,In=((zn=c==null?void 0:c.metadata)==null?void 0:zn.defaultWidth)||((vr=p==null?void 0:p.metadata)==null?void 0:vr.defaultWidth)||1440,$s=Math.round(In*(900/1440));Qe.state==="submitting"||Qe.state,oe(()=>{var V;return!!((V=_==null?void 0:_.metadata)!=null&&V.interactiveExamplePath)},[_]);const{isCompleted:hn}=kt(h,dn);te(()=>{Qe.state==="idle"&&Qe.data&&(Qe.data.success?setTimeout(()=>{$n(Date.now()),We.revalidate(),yt(!1)},1500):Qe.data.error&&(yt(!1),alert(`Recapture failed: ${Qe.data.error}`)))},[Qe.state,Qe.data,We]),te(()=>{dn&&hn&&setTimeout(()=>{$n(Date.now()),We.revalidate(),yt(!1)},1500)},[dn,hn,We]),te(()=>{dt.state==="idle"&&dt.data&&(dt.data.success?setTimeout(()=>{$n(Date.now()),We.revalidate(),yt(!1)},1500):dt.data.error&&(yt(!1),alert(`Recapture failed: ${dt.data.error}`)))},[dt.state,dt.data,We]);const ur=()=>{c&&(y&&x&&x!==c.sha?(j(`/entity/${x}/scenarios`),setTimeout(()=>{qe.submit({entitySha:x,filePath:c.filePath||""},{method:"post",action:"/api/analyze"})},100)):qe.submit({entitySha:c.sha,filePath:c.filePath||""},{method:"post",action:"/api/analyze"}))};te(()=>{qe.state==="idle"&&qe.data&&(qe.data.success?We.revalidate():qe.data.error&&alert(`Analysis failed: ${qe.data.error}`))},[qe.state,qe.data,c==null?void 0:c.sha,We]),te(()=>{const V=setTimeout(()=>{We.revalidate()},500);return()=>clearTimeout(V)},[]),te(()=>{if(L||pn){const V=setInterval(()=>{We.revalidate()},3e3);return()=>clearInterval(V)}},[L,pn,We]);const jt=(V,ce)=>V==="scenarios"?`/entity/${c==null?void 0:c.sha}/scenarios`:`/entity/${c==null?void 0:c.sha}/${V}`,Rn=(V,ce)=>`/entity/${c==null?void 0:c.sha}/scenarios/${V}/${ce}`,Wt=V=>{K(V),_!=null&&_.id&&(V==="interactive"?j(`/entity/${c==null?void 0:c.sha}/scenarios/${_.id}/fullscreen`,{replace:!0}):j(Rn(_.id,V),{replace:!0}))},mr=async V=>{var ce,Ee;if(console.log("[EntityDetail] ===== APPLY CHANGES CALLED =====",{description:V,hasSelectedScenario:!!_,hasAnalysis:!!p}),!_||!p){const _e="Error: No scenario or analysis available";console.error("[EntityDetail]",_e),se(_e);return}D(!0),se(null),console.log("[EntityDetail] Applying changes (preview mode)",{description:V,scenarioId:_.id,scenarioName:_.name,currentData:_.data});try{const _e=await fetch("/api/generate-scenario-data",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({description:V,existingScenarios:p.scenarios,scenariosDataStructure:(ce=p.metadata)==null?void 0:ce.scenariosDataStructure,editingMockName:_.name,editingMockData:Ce||((Ee=_.metadata)==null?void 0:Ee.data)})}),Ie=await _e.json();if(!_e.ok||!Ie.success)throw new Error(Ie.error||"Failed to generate scenario data");console.log("[EntityDetail] Generated data:",Ie.data),$e(Ie.data);const Xe=(p.scenarios||[]).map(Ze=>Ze.id===_.id?{...Ze,metadata:{...Ze.metadata,data:Ie.data}}:Ze),Jt=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:p,scenarios:Xe})}),Ve=await Jt.json();if(!Jt.ok||!Ve.success)throw console.error("[EntityDetail] Temp save failed:",Ve),new Error(Ve.error||"Failed to apply preview");if(se("Generating preview. Capturing screenshot..."),he){console.log("[EntityDetail] Using direct capture from running server",{serverUrl:he});const Ze=await fetch("/api/capture-screenshot",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({serverUrl:he,scenarioId:_.id,projectId:p.projectId,viewportWidth:1440})}),Bn=await Ze.json();!Ze.ok||!Bn.success?(console.error("[EntityDetail] Direct capture failed:",Bn),se("Preview applied. Screenshot capture failed.")):(console.log("[EntityDetail] Direct capture successful"),se('Preview applied. Click "Save Scenario Data" to persist.'))}else{console.log("[EntityDetail] No server running, using queued recapture");const Ze=new FormData;Ze.append("analysisId",p.id||""),Ze.append("scenarioId",_.id||"");const Bn=await fetch("/api/recapture-scenario",{method:"POST",body:Ze}),Is=await Bn.json();!Bn.ok||!Is.success?(console.warn("[EntityDetail] Recapture failed:",Is.error),se("Preview applied. Screenshot recapture failed.")):(console.log("[EntityDetail] Recapture queued:",Is.jobId),se('Preview applied. Screenshot will update shortly. Click "Save Scenario Data" to persist.'))}ie(Ze=>Ze+1),We.revalidate()}catch(_e){console.error("Error applying changes:",_e),se(`Error: ${_e instanceof Error?_e.message:String(_e)}`)}finally{D(!1)}},Dn=async(V,ce)=>{var Ee;if(!_||!p){se("Error: No scenario or analysis available");return}G(!0),se(null),console.log("[EntityDetail] Saving scenario to database",{description:V,saveAsNew:ce});try{const _e=Ce||((Ee=_.metadata)==null?void 0:Ee.data);let Ie;if(ce){const Ve={..._,id:`${_.name}-${Date.now()}`,name:`${_.name} (Copy)`,metadata:{..._.metadata,data:_e},description:V||_.description};Ie=[...p.scenarios||[],Ve]}else Ie=(p.scenarios||[]).map(Ve=>Ve.id===_.id?{...Ve,metadata:{...Ve.metadata,data:_e},description:V||Ve.description}:Ve);const Xe=await fetch("/api/save-scenarios",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({analysis:p,scenarios:Ie})}),Jt=await Xe.json();if(!Xe.ok||!Jt.success)throw new Error(Jt.error||"Failed to save scenarios");console.log("[EntityDetail] Scenarios saved successfully"),se(ce?"New scenario created successfully":"Scenario saved successfully"),$e(null),We.revalidate()}catch(_e){console.error("Error saving scenario:",_e),se(`Error: ${_e instanceof Error?_e.message:String(_e)}`)}finally{G(!1)}},pr=()=>{_!=null&&_.id&&(c!=null&&c.sha)&&j(`/entity/${c.sha}/scenarios/${_.id}/dev`)},xt=async()=>{var V;if(!(_!=null&&_.id)){xe("Cannot delete scenario without ID");return}ee(!0),xe(null);try{const ce=await fetch("/api/delete-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioId:_.id,screenshotPaths:((V=_.metadata)==null?void 0:V.screenshotPaths)||[]})}),Ee=await ce.json();if(!ce.ok||!Ee.success)throw new Error(Ee.error||"Failed to delete scenario");j(`/entity/${c==null?void 0:c.sha}/scenarios`)}catch(ce){console.error("[EntityDetail] Error deleting scenario:",ce),xe(ce instanceof Error?ce.message:"Failed to delete scenario"),me(!1)}finally{ee(!1)}},On=p&&c&&p.entitySha!==c.sha,Ln=c?yw(c):!1;return n(Ns,{children:d("div",{className:"h-screen bg-white flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-end h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0 flex-1 pb-[14px]",children:[n("button",{onClick:P,className:"no-underline shrink-0 bg-transparent border-none cursor-pointer p-0 flex items-center",title:"Back",children:n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})}),n("h1",{className:"text-base font-semibold text-black m-0 leading-[20px] shrink-0",children:c==null?void 0:c.name}),n("span",{className:"text-xs text-[#9e9e9e] font-mono font-normal whitespace-nowrap overflow-hidden text-ellipsis min-w-0",title:c==null?void 0:c.filePath,children:c==null?void 0:c.filePath})]}),n("div",{className:"flex items-end gap-8 shrink-0",children:[{id:"scenarios",label:"Scenarios",count:N.length},{id:"related",label:"Related Entities",count:f.importedEntities.length+f.importingEntities.length},{id:"code",label:"Code"},{id:"data",label:"Data Structure"},{id:"history",label:"History"}].map(V=>n(fe,{to:jt(V.id),className:`relative pb-[17px] px-2 text-sm transition-colors cursor-pointer no-underline ${I===V.id?"font-medium border-b-2":"font-normal hover:text-gray-700"}`,style:I===V.id?{color:"#005C75",borderColor:"#005C75"}:{color:"#9ca3af"},children:d("span",{className:"flex items-center gap-2",children:[V.label,V.count!==void 0&&V.count>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${I===V.id?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:V.count})]})},V.id))})]})}),(y||On&&!u||w&&Ln)&&!U&&!Ms&&n("div",{className:"border-b border-[#FEE585] px-6 py-3 flex items-center justify-center shrink-0",style:{backgroundColor:"#FEE585"},children:d("div",{className:"flex items-center gap-3",children:[n("svg",{className:"w-4 h-4",style:{color:"#714A25"},fill:"none",viewBox:"0 0 24 24",stroke:"currentColor",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"})}),n("span",{className:"text-sm font-semibold",style:{color:"#714A25"},children:On&&!y?"This entity version has not been analyzed yet.":"This entity has been recently changed."}),n("span",{className:"text-sm",style:{color:"#714A25"},children:y?"You are viewing an older version. A newer version is available.":On?"Showing scenarios from a previous version.":"The file on disk has been modified since this entity was analyzed."}),y&&x&&b?n(fe,{to:`/entity/${x}/scenarios`,className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono cursor-pointer transition-colors no-underline",style:{backgroundColor:"#C69538"},onMouseEnter:V=>{V.currentTarget.style.backgroundColor="#B58530"},onMouseLeave:V=>{V.currentTarget.style.backgroundColor="#C69538"},children:"View Latest Version"}):n("button",{onClick:ur,disabled:qe.state!=="idle",className:"px-3 py-1.5 text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer transition-colors disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#C69538"},onMouseEnter:V=>{qe.state==="idle"&&(V.currentTarget.style.backgroundColor="#B58530")},onMouseLeave:V=>{qe.state==="idle"&&(V.currentTarget.style.backgroundColor="#C69538")},children:"Re-analyze"})]})}),d("div",{className:"flex grow items-stretch justify-center gap-0 min-h-0",children:[I==="scenarios"&&d(pe,{children:[ae&&_?n(bw,{scenario:_,entitySha:(c==null?void 0:c.sha)||"",onApply:mr,onSave:Dn,onEditMockData:pr,onDelete:xt,isApplying:J,isSaving:W,saveMessage:ne,showDeleteConfirm:de,onShowDeleteConfirm:me,isDeleting:re,deleteError:Te}):n(xw,{scenarios:N,hiddenScenarios:k,analysis:p,selectedScenario:_,entitySha:(c==null?void 0:c.sha)||"",cacheBuster:un,activeTab:I,entityType:c==null?void 0:c.entityType,entity:c,queueState:S,processIsRunning:R,isEntityAnalyzing:U,areScenariosStale:O,viewMode:Q,setViewMode:Wt,isBreakdownView:i==="breakdown"}),i==="breakdown"?n(vw,{analysis:p??null,entitySha:(c==null?void 0:c.sha)||""}):ae&&_?n(Cs,{scenarioId:_.id||_.name,scenarioName:_.name,iframeUrl:he,isStarting:ke,isLoading:st,showIframe:ve,iframeKey:ze,onIframeLoad:Ue,projectSlug:h,defaultWidth:1440,defaultHeight:900}):d("div",{className:"flex flex-col flex-1 min-h-0",children:[_&&d("div",{className:"bg-[#f5f5f5] border-b border-gray-200 px-4 py-2 flex items-center justify-between shrink-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-xs font-semibold text-[#343434]",children:_.name}),d("span",{className:"text-xs text-[#9e9e9e] font-normal",children:[In," × ",$s]})]}),d("div",{className:"flex items-center gap-2",children:[n(fe,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${_.id}/edit`,className:"px-3 py-1.5 bg-white text-[#343434] rounded text-[11px] font-medium font-mono border border-gray-300 cursor-pointer hover:bg-gray-50 transition-colors no-underline flex items-center",title:"Edit Scenario Data",children:"Edit Scenario"}),d("button",{className:"px-3 py-1.5 bg-[#022A35] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#011a21] transition-colors flex items-center gap-1.5",onClick:()=>{alert("Download functionality coming soon")},title:"Download",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:n("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4M7 10l5 5 5-5M12 15V3"})}),"Download"]}),d(fe,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${_.id}/dev`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Dev Mode - Live preview with data editor and code sync",children:[d("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",children:[n("polyline",{points:"16 18 22 12 16 6"}),n("polyline",{points:"8 6 2 12 8 18"})]}),"Dev Mode"]}),d(fe,{to:`/entity/${c==null?void 0:c.sha}/scenarios/${_.id}/fullscreen`,className:"px-3 py-1.5 bg-[#005c75] text-white rounded text-[11px] font-medium font-mono border-none cursor-pointer hover:bg-[#004a5e] transition-colors no-underline flex items-center gap-1.5",title:"Interactive Mode",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 24 24",fill:"currentColor",children:n("path",{d:"M8 5v14l11-7z"})}),"Interactive Mode"]})]})]}),n(Ac,{selectedScenario:_,analysis:p,entity:c,viewMode:Q,cacheBuster:un,hasScenarios:N.length>0,isAnalyzing:pn,projectSlug:h,hasAnApiKey:A,processIsRunning:R,queueState:S})]})]}),I==="related"&&n(Sw,{relatedEntities:f}),I==="data"&&n(Aw,{entity:c,analysis:p,scenarios:N,onAnalyze:ur}),I==="code"&&n($w,{entity:c,entityCode:g}),I==="history"&&n(Nw,{entity:c,history:v})]}),Ut&&h&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-1000 p-5",onClick:()=>mn(!1),children:d("div",{className:"bg-white rounded-xl max-w-[1200px] w-full max-h-[90vh] flex flex-col shadow-[0_20px_60px_rgba(0,0,0,0.3)]",onClick:V=>V.stopPropagation(),children:[d("div",{className:"px-6 py-6 border-b border-gray-200 flex justify-between items-center",children:[n("h2",{className:"m-0 text-xl font-semibold text-gray-900",children:"Analysis Logs"}),n("button",{className:"bg-transparent border-none text-[28px] text-gray-500 cursor-pointer p-0 w-8 h-8 flex items-center justify-center rounded transition-colors hover:bg-gray-100",onClick:()=>mn(!1),children:"×"})]}),n("div",{className:"flex-1 overflow-hidden",children:n(Ot,{projectSlug:h,onClose:()=>mn(!1)})})]})})]})})}),Lw=Object.freeze(Object.defineProperty({__proto__:null,default:Ow,loader:Dw,meta:Iw,shouldRevalidate:Rw},Symbol.toStringTag,{value:"Module"}));async function Fw(e){const{entityShas:t,filePaths:r,context:s,scenarioCount:a,queue:o}=e;console.log(`[analyzeEntities] Starting analysis for ${t.length} entities`);try{console.log("[analyzeEntities] Initializing environment..."),await Fe();const i=ye();if(!i)throw new Error("Project root not found");console.log(`[analyzeEntities] Project root: ${i}`);const l=X.join(i,".codeyam","config.json"),c=JSON.parse(await Se.readFile(l,"utf8")),{projectSlug:m,branchId:u}=c;if(!m||!u)throw new Error("Invalid project configuration - missing projectSlug or branchId");console.log(`[analyzeEntities] Project: ${m}, Branch: ${u}`);const p=gs(m);try{await Se.writeFile(p,"","utf8"),console.log("[analyzeEntities] Cleared log file")}catch{}const{project:h,branch:f}=await Oe(m);console.log("[analyzeEntities] Loading entities to determine file paths and names...");const g=await tt({shas:t});if(!g||g.length===0)throw new Error(`No entities found for SHAs: ${t.join(", ")}`);let y=r;if((!y||y.length===0)&&(y=[...new Set(g.map(w=>w.filePath).filter(w=>!!w))],console.log(`[analyzeEntities] Found ${y.length} unique files`)),!y||y.length===0)throw new Error("No file paths available for analysis");console.log(`[analyzeEntities] Creating fake commit for ${y.length} files...`);const x=await lp(h,f,y);console.log(`[analyzeEntities] Created commit ${x.sha.substring(0,8)}`),console.log("[analyzeEntities] Initializing progress tracking..."),await Dt({commitSha:x.sha,runStatusUpdate:{queuedAt:new Date().toISOString(),entityCount:t.length,analysesCompleted:0,capturesCompleted:0,createdAt:new Date().toISOString()},updateCallback:w=>{if(!w)return;const v=w.currentRun;if(v&&v.id&&v.archivedAt)return;v&&(v.analysesCompleted&&v.analysesCompleted>0||v.capturesCompleted&&v.capturesCompleted>0)&&wp(w)}}),console.log("[analyzeEntities] Enqueueing analysis job...");const{jobId:b}=o.enqueue({type:"analysis",commitSha:x.sha,projectSlug:m,filePaths:y,entityShas:t,entityNames:g.map(w=>w.name),...s?{context:s}:{},...a?{scenarioCount:a}:{}});return console.log(`[analyzeEntities] Job queued with ID: ${b} for ${t.length} entities`),{jobId:b}}catch(i){throw console.error("[analyzeEntities] Failed:",i),i}}async function zw({request:e,context:t}){if(e.method!=="POST")return Z({error:"Method not allowed"},{status:405});let r=t.analysisQueue;if(r||(r=await Pt()),!r)return Z({error:"Queue not initialized"},{status:500});try{const s=await e.formData(),a=s.get("entitySha"),o=s.get("entityShas"),i=s.get("filePath"),l=s.get("context"),c=s.get("scenarioCount");let m;if(o)m=o.split(",").filter(Boolean);else if(a)m=[a];else return Z({error:"Missing required field: entitySha or entityShas"},{status:400});if(m.length===0)return Z({error:"No entities to analyze"},{status:400});console.log(`[API] Starting analysis for ${m.length} entity(ies)`);const u=await tt({shas:m}),h=[...new Set(u.map(g=>g.filePath).filter(g=>!!g))].length,{jobId:f}=await Fw({entityShas:m,filePaths:i?[i]:void 0,context:l||void 0,scenarioCount:c?parseInt(c,10):void 0,queue:r});return console.log(`[API] Analysis queued with job ID: ${f}`),Z({success:!0,message:`Analysis queued for ${m.length} entity(ies)`,entityCount:m.length,fileCount:h,jobId:f})}catch(s){return console.error("[API] Error starting analysis:",s),Z({error:"Failed to start analysis",details:s.message},{status:500})}}const Bw=Object.freeze(Object.defineProperty({__proto__:null,action:zw},Symbol.toStringTag,{value:"Module"}));function Yw(e){switch(e){case"queued":return{text:"Queued",bgColor:"#cbf3fa",textColor:"#3098b4",icon:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]})};case"analyzing":return{text:"Analyzing...",bgColor:"#ffdbf6",textColor:"#ff2ab5",icon:d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]})};case"up-to-date":return{text:"Up to date",bgColor:"#e8ffe6",textColor:"#00925d",icon:null};case"incomplete":return{text:"Incomplete",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"out-of-date":return{text:"Out of date",bgColor:"#fdf9c9",textColor:"#c69538",icon:null};case"not-analyzed":return{text:"Not analyzed",bgColor:"#f9f9f9",textColor:"#646464",icon:null}}}function Pc(e){if(!e)return"Never";const t=new Date(e),r=new Date;if(t.getDate()===r.getDate()&&t.getMonth()===r.getMonth()&&t.getFullYear()===r.getFullYear()){const a=t.getHours(),o=t.getMinutes(),i=a>=12?"pm":"am",l=a%12||12,c=o.toString().padStart(2,"0");return`Today, ${l}:${c} ${i}`}return t.toLocaleString("en-US",{month:"numeric",day:"numeric",year:"2-digit",hour:"2-digit",minute:"2-digit",hour12:!0})}function at(e,t=[],r=!1){var u,p;if(t.some(h=>{var f,g;return!!((f=h.entityShas)!=null&&f.includes(e.sha)||(g=h.entities)!=null&&g.some(y=>y.sha===e.sha))}))return r?"analyzing":"queued";if(!e.analyses||e.analyses.length===0)return"not-analyzed";const a=e.analyses[0];if(!(((u=a.status)==null?void 0:u.scenarios)&&a.status.scenarios.length>0&&a.status.scenarios.some(h=>h.screenshotFinishedAt||h.finishedAt))||a.entitySha!==e.sha)return"not-analyzed";const i=a.createdAt?new Date(a.createdAt).getTime():0,l=(p=e.metadata)!=null&&p.editedAt?new Date(e.metadata.editedAt).getTime():0,c=a.scenarios||[],m=c.some(h=>{var f,g,y;return((g=(f=h.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0])||((y=h.metadata)==null?void 0:y.executionResult)});return i>=l?c.length>0&&m?c.every(f=>{var g,y,x;return((y=(g=f.metadata)==null?void 0:g.screenshotPaths)==null?void 0:y[0])||((x=f.metadata)==null?void 0:x.executionResult)})?"up-to-date":"incomplete":c.length>0?"incomplete":"not-analyzed":"out-of-date"}const Uw=()=>[{title:"Simulations - CodeYam"},{name:"description",content:"A visual gallery of your recently captured component screenshots"}];async function Ww({request:e,context:t}){try{const r=t.analysisQueue,s=r?r.getState():{paused:!1,jobs:[]},a=await ln();return Z({entities:a||[],queueState:s})}catch(r){return console.error("Failed to load simulations:",r),Z({entities:[],queueState:{paused:!1,jobs:[]},error:"Failed to load simulations"})}}const Jw=Ye(function(){const t=He(),r=t.entities,s=t.queueState;gt({source:"simulations-page"});const[a,o]=M(""),[i,l]=M("visual"),c=oe(()=>{const y=[];return r.forEach(x=>{var w;const b=(w=x.analyses)==null?void 0:w[0];if(b!=null&&b.scenarios){const v=b.scenarios.filter(C=>{var A;return!((A=C.metadata)!=null&&A.sameAsDefault)}).map(C=>{var T,P,R,I,$;const A=(P=(T=C.metadata)==null?void 0:T.screenshotPaths)==null?void 0:P[0],S=(R=C.metadata)==null?void 0:R.noScreenshotSaved,E=A&&!S,N=($=(I=b.status)==null?void 0:I.scenarios)==null?void 0:$.find(L=>L.name===C.name),k=N&&N.screenshotStartedAt&&!N.screenshotFinishedAt;let j;return E?j="completed":k?j="capturing":j="error",{scenarioName:C.name,scenarioDescription:C.description||"",screenshotPath:A||"",scenarioId:C.id,state:j}}).filter(C=>C.state==="completed"||C.state==="capturing");v.length>0&&y.push({entity:x,screenshots:v,createdAt:b.createdAt||""})}}),y.sort((x,b)=>new Date(b.createdAt).getTime()-new Date(x.createdAt).getTime()),y},[r]),m=oe(()=>r.filter(y=>{var w,v;const x=(w=y.analyses)==null?void 0:w[0];return!((v=x==null?void 0:x.scenarios)==null?void 0:v.some(C=>{var A,S;return(S=(A=C.metadata)==null?void 0:A.screenshotPaths)==null?void 0:S[0]}))}),[r]),u=oe(()=>c.filter(({entity:y})=>{const x=!a||y.name.toLowerCase().includes(a.toLowerCase()),b=i==="all"||y.entityType===i;return x&&b}),[c,a,i]),p=oe(()=>m.filter(y=>{const x=!a||y.name.toLowerCase().includes(a.toLowerCase()),b=i==="all"||y.entityType===i;return x&&b}),[m,a,i]),h=le(y=>{o(y.target.value)},[]),f=le(y=>{l(y.target.value)},[]),g=c.length>0;return n("div",{className:"bg-[#F8F7F6] min-h-screen overflow-y-auto",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Simulations"}),n("p",{className:"text-[15px] text-gray-500",children:"A visual gallery of your recently captured simulations."})]}),!g&&n("div",{className:"bg-[#D1F3F9] border border-[#A5E8F0] rounded-lg p-4 mb-6",children:d("p",{className:"text-sm text-gray-700 m-0",children:["This page will display a visual gallery of your recently captured component simulations."," ",n("strong",{children:"Start by analyzing your first component below."})]})}),d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative",children:[d("select",{className:"appearance-none bg-gray-50 border border-gray-200 rounded px-3 pr-8 text-[13px] h-[39px] cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",value:i,onChange:f,children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(it,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-3 text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors",value:a,onChange:h})]})]})]}),g&&u.length>0&&n("div",{className:"mb-2",children:d("div",{className:"flex items-center py-3",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:u.length})," ",u.length===1?"entity":"entities"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:u.reduce((y,{screenshots:x})=>y+x.length,0)})," ","scenarios"]})]})}),d("div",{className:"flex flex-col gap-3",children:[g&&(u.length===0?n("div",{className:"bg-white border border-gray-200 rounded-lg p-8 text-center text-gray-500",children:"No simulations match your filters."}):n(pe,{children:u.map(({entity:y,screenshots:x})=>n(Hw,{entity:y,screenshots:x,queueJobs:(s==null?void 0:s.jobs)||[]},y.sha))})),!g&&(p.length===0?n("div",{className:"bg-white border border-gray-200 rounded-b-lg p-8 text-center text-gray-500",children:"No components found matching your filters."}):p.map(y=>n(Vw,{entity:y},y.sha)))]})]})})});function Hw({entity:e,screenshots:t,queueJobs:r}){var f,g,y;const s=Nt(),a=Le(),[o,i]=M(!1),l=t.length||(((y=(g=(f=e.analyses)==null?void 0:f[0])==null?void 0:g.scenarios)==null?void 0:y.length)??0),c=x=>{s(`/entity/${e.sha}/scenarios/${x}?from=simulations`)},m=()=>{i(!0),a.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};te(()=>{a.state==="idle"&&o&&i(!1)},[a.state,o]);const u=at(e,r),p=Yw(u),h=u==="out-of-date";return n("div",{className:"rounded-[8px]",style:{backgroundColor:"#ffffff",border:"1px solid #e1e1e1"},children:d("div",{className:"flex flex-col",children:[d("div",{className:"flex items-center px-[15px] py-[15px]",children:[n("div",{className:"flex-shrink-0",children:n(nt,{type:e.entityType||"other",size:"large"})}),d("div",{className:"flex flex-col flex-shrink-0",style:{marginLeft:"15px",gap:"4px"},children:[d("div",{className:"flex items-center gap-[5px]",children:[d(fe,{to:`/entity/${e.sha}`,className:"hover:underline cursor-pointer",title:e.name,style:{fontSize:"14px",lineHeight:"18px",color:"#343434",fontWeight:500},children:[e.name," (",l,")"]}),n("div",{className:"flex items-center justify-center px-2 rounded",style:{height:"20px",backgroundColor:p.bgColor,color:p.textColor,fontSize:"12px",lineHeight:"16px",fontWeight:400},children:p.text})]}),n("div",{style:{fontSize:"12px",lineHeight:"15px",color:"#b0b0b0",fontWeight:400},className:"font-mono",title:e.filePath,children:e.filePath})]}),n("div",{className:"flex-1"}),d("div",{className:"flex-shrink-0 flex items-center gap-2",children:[h&&n(pe,{children:o||a.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded flex items-center gap-1.5",children:[n(mt,{size:14,className:"animate-spin",style:{color:"#be185d"}}),n("span",{style:{color:"#be185d",fontSize:"10px",lineHeight:"20px",fontWeight:600},children:"Analyzing..."})]}):n("button",{onClick:m,className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#005c75",color:"#ffffff",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#004d5e"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#005c75"},children:"Re-analyze"})}),n("button",{onClick:()=>void s(`/entity/${e.sha}/logs`),className:"px-[10px] rounded transition-colors whitespace-nowrap",style:{backgroundColor:"#e0e9ec",color:"#005c75",fontSize:"10px",lineHeight:"22px",fontWeight:600},onMouseEnter:x=>{x.currentTarget.style.backgroundColor="#d0dfe3"},onMouseLeave:x=>{x.currentTarget.style.backgroundColor="#e0e9ec"},children:"View Logs"})]})]}),n("div",{className:"border-t border-gray-200"}),n("div",{className:"flex gap-2.5 overflow-x-auto pb-3 px-[15px] pt-3",style:{paddingLeft:"47px"},children:t.length>0?t.map(x=>d("div",{className:"shrink-0 flex flex-col gap-2",children:[n("button",{onClick:()=>c(x.scenarioId||""),className:"block cursor-pointer bg-transparent border-none p-0",children:n("div",{className:"w-36 h-24 rounded-md border overflow-hidden flex items-center justify-center transition-all",style:{"--hover-border":"#005C75",backgroundColor:x.state==="capturing"?"#f9f9f9":"#f3f4f6",borderColor:x.state==="capturing"?"#efefef":"#d1d5db"},onMouseEnter:b=>{x.state==="completed"&&(b.currentTarget.style.borderColor="#005C75",b.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.15)")},onMouseLeave:b=>{b.currentTarget.style.borderColor=x.state==="capturing"?"#efefef":"#d1d5db",b.currentTarget.style.boxShadow="none"},children:x.state==="completed"?n(Ge,{screenshotPath:x.screenshotPath,alt:x.scenarioName,className:"max-w-full max-h-full object-contain"}):x.state==="capturing"?n(co,{size:"medium"}):null})}),d("div",{className:"relative group",children:[n("div",{className:"text-left text-xs text-gray-600 cursor-default",style:{fontSize:"11px",lineHeight:"14px",maxWidth:"144px",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},children:x.scenarioName}),n("div",{className:"fixed hidden group-hover:block pointer-events-none",style:{zIndex:1e4,transform:"translateY(8px)"},children:d("div",{className:"bg-gray-100 text-gray-800 text-xs rounded-lg px-3 py-2 shadow-lg max-w-xs border border-gray-200",children:[x.scenarioName,x.scenarioDescription&&d(pe,{children:[": ",x.scenarioDescription]}),n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-100 border-l border-t border-gray-200 transform rotate-45"})]})})]})]},x.scenarioId)):n("div",{className:"text-xs text-gray-400 py-4",children:"No screenshots available"})})]})})}function Vw({entity:e}){const t=Le(),[r,s]=M(!1),a=()=>{s(!0),t.submit({entitySha:e.sha,filePath:e.filePath||""},{method:"post",action:"/api/analyze"})};return te(()=>{t.state==="idle"&&r&&s(!1)},[t.state,r]),n("div",{className:"bg-white rounded hover:bg-gray-100 transition-colors cursor-pointer border-b border-[#e1e1e1]",onClick:a,children:d("div",{className:"px-5 py-4 flex items-center",children:[d("div",{className:"flex items-center gap-3 flex-1 min-w-0",children:[n(nt,{type:e.entityType}),d("div",{className:"min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-0.5",children:[n(fe,{to:`/entity/${e.sha}`,className:"text-sm font-medium text-gray-900 no-underline",children:e.name}),n("span",{className:"text-[10px] font-semibold px-1 py-0.5 rounded",style:{color:e.entityType==="visual"?"#7c3aed":e.entityType==="library"?"#0DBFE9":e.entityType==="type"?"#dc2626":e.entityType==="data"?"#2563eb":e.entityType==="index"?"#ea580c":e.entityType==="functionCall"?"#7c3aed":e.entityType==="class"?"#059669":e.entityType==="method"?"#0891b2":"#6b7280",backgroundColor:e.entityType==="visual"?"#f3e8ff":e.entityType==="library"?"#cffafe":e.entityType==="type"?"#fee2e2":e.entityType==="data"?"#dbeafe":e.entityType==="index"?"#ffedd5":e.entityType==="functionCall"?"#f3e8ff":e.entityType==="class"?"#d1fae5":e.entityType==="method"?"#cffafe":"#f3f4f6"},children:e.entityType?e.entityType.toUpperCase():"UNKNOWN"})]}),n("div",{className:"text-xs text-gray-400 truncate",children:e.filePath})]})]}),n("div",{className:"w-32 flex justify-center",children:n("span",{className:"text-[10px] text-gray-500 bg-gray-100 px-2 py-1 rounded",children:"Not analyzed"})}),n("div",{className:"w-32 text-center text-[10px] text-gray-500",children:Pc(e.createdAt||null)}),n("div",{className:"w-24 flex justify-end",children:r||t.state!=="idle"?d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(mt,{size:14,className:"animate-spin"}),"Analyzing..."]}):n("button",{onClick:a,className:"bg-[#e0e9ec] text-[#005c75] px-4 py-1.5 rounded text-xs font-medium hover:bg-[#d0dde1] transition-colors cursor-pointer",children:"Analyze"})})]})})}const Gw=Object.freeze(Object.defineProperty({__proto__:null,default:Jw,loader:Ww,meta:Uw},Symbol.toStringTag,{value:"Module"}));function qw({request:e,context:t}){const r=t.dbNotifier||ot;if(!r)return console.error("[SSE] ERROR: dbNotifier not found in context or global!"),new Response("Server configuration error",{status:500});r.start().catch(()=>{});const s=new ReadableStream({start(a){const o=new TextEncoder;a.enqueue(o.encode(`data: ${JSON.stringify({type:"connected"})}
367
-
368
- `)),Math.random().toString(36).substring(7);let i=!1;const l=()=>{if(!i){i=!0,r.off("change",c),clearInterval(m);try{a.close()}catch{}}},c=u=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"db-change",changeType:u.type,timestamp:u.timestamp})}
369
-
370
- `))}catch{l()}};r.on("change",c);const m=setInterval(()=>{try{a.enqueue(o.encode(`data: ${JSON.stringify({type:"keepalive"})}
371
-
372
- `))}catch{l()}},3e4);e.signal.addEventListener("abort",l)}});return new Response(s,{headers:{"Content-Type":"text/event-stream","Cache-Control":"no-cache",Connection:"keep-alive"}})}const Kw=Object.freeze(Object.defineProperty({__proto__:null,loader:qw},Symbol.toStringTag,{value:"Module"}));function Qw(){return new Response(JSON.stringify({status:"ok",version:Ua,message:"CodeYam Remix server is running"}),{status:200,headers:{"Content-Type":"application/json"}})}const Zw=Object.freeze(Object.defineProperty({__proto__:null,loader:Qw},Symbol.toStringTag,{value:"Module"}));function po(e){const t=/^---\n([\s\S]*?)\n---\n?([\s\S]*)$/,r=e.match(t);if(!r)return{frontmatter:{},body:e};const s=r[1],a=r[2],o={},i=s.match(/paths:\s*\n((?:\s+-\s+[^\n]+\n?)*)/),l=s.match(/paths:\s*\[([^\]]*)\]/);i&&i[1].trim()?o.paths=i[1].split(`
373
- `).filter(m=>m.trim().startsWith("-")).map(m=>m.replace(/^\s*-\s*/,"").replace(/['"]/g,"").trim()).filter(Boolean):l&&(o.paths=l[1].split(",").map(m=>m.replace(/['"]/g,"").trim()).filter(Boolean));const c=s.match(/^category:\s*(.+)$/m);return c&&(o.category=c[1].replace(/['"]/g,"").trim()),{frontmatter:o,body:a}}async function js(e,t=""){const r=[];try{const s=await Se.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;if(a.isDirectory()){const i=await js(X.join(e,a.name),o);r.push(...i)}else a.isFile()&&a.name.endsWith(".md")&&r.push(o)}}catch{}return r}async function cr(e){const t=await js(e),r=[];for(const s of t){const a=X.join(e,s);try{const o=await Se.readFile(a,"utf-8"),{frontmatter:i,body:l}=po(o);r.push({filePath:s,absolutePath:a,frontmatter:i,body:l})}catch{}}return r}function jc(e){const t=X.posix.dirname(e.filePath);return!t||t==="."?null:`${t}/**`}function Tc(e,t){if(t.frontmatter.paths&&t.frontmatter.paths.length>0)return t.frontmatter.paths.some(s=>ia(e,s,{matchBase:!0}));const r=jc(t);return r?ia(e,r,{matchBase:!0}):!1}function Xw(e,t){return(!e.frontmatter.paths||e.frontmatter.paths.length===0)&&!jc(e)?[]:t.filter(r=>Tc(r,e))}const ev=new Set(["node_modules",".git","dist",".codeyam",".claude","build","coverage"]);async function ho(e){const t=[];async function r(s,a){try{const o=await Ne.readdir(s,{withFileTypes:!0});for(const i of o){const l=B.join(s,i.name),c=a?`${a}/${i.name}`:i.name;i.isDirectory()&&ev.has(i.name)||(i.isDirectory()?await r(l,c):i.isFile()&&t.push(c))}}catch{}}return await r(e,""),t}const tv="codeyam-rule-state.json",ta=1;function Mc(e){const t=e.replace(/^category:\s*.+$\n?/m,"");return ar.createHash("sha256").update(t).digest("hex")}function $c(e){return X.join(e,".claude",tv)}async function Ic(e){const t=$c(e);try{const r=await Se.readFile(t,"utf-8"),s=JSON.parse(r);return s.version!==ta?(console.warn(`[ruleState] Unknown version ${s.version}, using empty state`),{version:ta,rules:{}}):s}catch{return{version:ta,rules:{}}}}async function Rc(e,t){const r=$c(e),s=X.dirname(r);await Se.mkdir(s,{recursive:!0}),await Se.writeFile(r,JSON.stringify(t,null,2)+`
374
- `,"utf-8")}async function fo(e,t){const r=await Ic(e),s=new Set(t.map(a=>a.filePath));for(const a of Object.keys(r.rules))s.has(a)||delete r.rules[a];for(const a of t){const o=await Se.readFile(a.absolutePath,"utf-8"),i=Mc(o),l=r.rules[a.filePath];l?l.contentHash!==i&&(r.rules[a.filePath]={...l,contentHash:i,reviewed:!1}):r.rules[a.filePath]={contentHash:i,reviewed:!1}}return await Rc(e,r),r}async function vi(e,t,r,s){const a=await Ic(e);if(r){const o=X.join(e,".claude","rules"),i=X.join(o,t),l=await Se.readFile(i,"utf-8"),c=Mc(l);a.rules[t]?(a.rules[t].reviewed=!0,a.rules[t].contentHash=c):a.rules[t]={contentHash:c,reviewed:!0}}else a.rules[t]&&(a.rules[t].reviewed=!1);await Rc(e,a)}function go(e,t){var r;return((r=e.rules[t])==null?void 0:r.reviewed)??!1}async function Dc(e,t=""){const r=[],s=await Se.readdir(e,{withFileTypes:!0});for(const a of s){const o=t?`${t}/${a.name}`:a.name;a.isDirectory()?r.push(...await Dc(X.join(e,a.name),o)):a.name.endsWith(".md")&&r.push(o)}return r}function Xr(e){if(!e||e==="(diff not available)")return!1;const t=e.split(`
375
- `).filter(s=>!(!s.startsWith("+")&&!s.startsWith("-")||s.startsWith("+++")||s.startsWith("---"))).map(s=>s.substring(1).trim());if(t.length===0)return!1;const r=/^(category:\s*\w+)$/;return t.every(s=>r.test(s))}async function nv({request:e}){const t=ye();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=new URL(e.url),s=r.searchParams.get("action"),a=X.join(t,".claude","rules");if(s==="recent-changes")return sv(t,a);if(s==="reviewed-status")return ov(t,a);if(s==="audit")return iv(t,a);if(s==="source-files")return lv(t);if(s==="rule-coverage")return cv(t,a);if(s==="rule-diff"){const o=r.searchParams.get("filePath");return o?av(t,o):Response.json({error:"Missing required parameter: filePath"},{status:400})}if(s==="rules-for-path"){const o=r.searchParams.get("path");return o?dv(a,o):Response.json({error:"Missing required parameter: path"},{status:400})}try{const o=await js(a),i=[];for(const u of o){const p=X.join(a,u);try{const h=await Se.readFile(p,"utf-8"),f=await Se.stat(p),{frontmatter:g,body:y}=po(h);i.push({filePath:u,content:h,frontmatter:g,body:y,lastModified:f.mtime.toISOString()})}catch{}}i.sort((u,p)=>new Date(p.lastModified).getTime()-new Date(u.lastModified).getTime());let l=i.length>0;if(!l)try{await Se.access(X.join(t,".claude","codeyam-rule-state.json")),l=!0}catch{}const c=await cr(a),m={};if(c.length>0){const u=await fo(t,c);for(const p of c)m[p.filePath]=go(u,p.filePath)}return Response.json({memories:i,memoryInitialized:l,reviewedStatus:m})}catch(o){return console.error("[API] Error loading memories:",o),Response.json({error:"Failed to load memories",details:o instanceof Error?o.message:String(o),memoryInitialized:!1},{status:500})}}async function rv(e,t){const r=[];try{const s=t("git status --porcelain -- .claude/rules/ 2>/dev/null || true",{cwd:e,encoding:"utf-8"});for(const a of s.split(`
376
- `).filter(Boolean)){const o=a.substring(0,2);let i=a.substring(3);if(i.includes(" -> ")&&(i=i.split(" -> ")[1]),!i.startsWith(".claude/rules/"))continue;const l=o[0],c=o[1];let m=[i];if(i.endsWith("/")&&l==="?"){const u=X.join(e,i);try{m=(await Dc(u)).map(h=>i+h)}catch{continue}}for(const u of m){if(u.endsWith("/"))continue;const p=u.replace(".claude/rules/","");let h="modified";l==="A"||l==="?"?h="added":l==="D"||c==="D"?h="deleted":(l==="M"||c==="M")&&(h="modified");let f="";try{if(h==="deleted")f=t(`git diff HEAD -- "${u}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});else if(h==="added"&&l==="?"){const g=`${e}/${u}`;try{const y=await Se.readFile(g,"utf-8");f=`diff --git a/${u} b/${u}
377
- new file mode 100644
378
- --- /dev/null
379
- +++ b/${u}
380
- @@ -0,0 +1,${y.split(`
381
- `).length} @@
382
- ${y.split(`
383
- `).map(x=>"+"+x).join(`
384
- `)}`}catch{f="(content not available)"}}else f=t(`git diff HEAD -- "${u}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});f.length>5e3&&(f=f.substring(0,5e3)+`
385
- ... (truncated)`)}catch{f="(diff not available)"}h==="modified"&&Xr(f)||r.push({filePath:p,changeType:h,diff:f})}}}catch{}return r}async function sv(e,t){try{const{execSync:r}=await import("child_process"),s=[],a=await cr(t),o={};if(a.length>0){const u=await fo(e,a);for(const p of a)o[p.filePath]=go(u,p.filePath)}const l=(await rv(e,r)).filter(u=>!o[u.filePath]);l.length>0&&s.push({commitHash:"uncommitted",date:new Date().toISOString(),message:"Uncommitted changes",files:l});const m=r('git log --format="%H|%aI|%s" --since="60 days ago" -- .claude/rules/ 2>/dev/null || true',{cwd:e,encoding:"utf-8",maxBuffer:10*1024*1024}).split(`
386
- `).filter(Boolean).slice(0,20);for(const u of m){const[p,h,...f]=u.split("|"),g=f.join("|");if(!p||!h)continue;const y=r(`git diff-tree --no-commit-id --name-status -r ${p} -- .claude/rules/ 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}),x=[];for(const b of y.split(`
387
- `).filter(Boolean)){const[w,v]=b.split(" ");if(!v||!v.startsWith(".claude/rules/"))continue;const C=v.replace(".claude/rules/","");let A="modified";if(w==="A"?A="added":w==="D"&&(A="deleted"),o[C])continue;let S="";try{S=r(`git show ${p} --format="" -- "${v}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024}),S.length>5e3&&(S=S.substring(0,5e3)+`
388
- ... (truncated)`)}catch{S="(diff not available)"}A==="modified"&&Xr(S)||x.push({filePath:C,changeType:A,diff:S})}x.length>0&&s.push({commitHash:p.substring(0,8),date:h,message:g,files:x})}return Response.json({changes:s,reviewedStatus:o})}catch(r){return console.error("[API] Error getting recent changes:",r),Response.json({changes:[],reviewedStatus:{}})}}async function av(e,t){try{const{execSync:r}=await import("child_process"),s=`.claude/rules/${t}`,a=r(`git rev-list --count HEAD -- "${s}" 2>/dev/null || echo 0`,{cwd:e,encoding:"utf-8"}),o=parseInt(a.trim(),10)||0,i=r(`git diff HEAD -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});if(i.trim()){if(Xr(i))return Response.json({diff:null});const y=i.length>5e3?i.substring(0,5e3)+`
389
- ... (truncated)`:i;return Response.json({diff:{diff:y,commitMessage:"Uncommitted changes",date:new Date().toISOString(),isUncommitted:!0,commitCount:o}})}if(r(`git status --porcelain -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim().startsWith("?")){const y=X.join(e,s);try{const x=await Se.readFile(y,"utf-8"),b=`diff --git a/${s} b/${s}
390
- new file mode 100644
391
- --- /dev/null
392
- +++ b/${s}
393
- @@ -0,0 +1,${x.split(`
394
- `).length} @@
395
- ${x.split(`
396
- `).map(w=>"+"+w).join(`
397
- `)}`;return Response.json({diff:{diff:b.length>5e3?b.substring(0,5e3)+`
398
- ... (truncated)`:b,commitMessage:"New file (untracked)",date:new Date().toISOString(),isUncommitted:!0,commitCount:0}})}catch{}}const m=r(`git log -1 --format="%H|%aI|%s" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8"}).trim();if(!m)return Response.json({diff:null});const[u,p,...h]=m.split("|"),f=h.join("|");if(!u||!p)return Response.json({diff:null});let g=r(`git show ${u} --format="" -- "${s}" 2>/dev/null || true`,{cwd:e,encoding:"utf-8",maxBuffer:1024*1024});return g.trim()?Xr(g)?Response.json({diff:null}):(g.length>5e3&&(g=g.substring(0,5e3)+`
399
- ... (truncated)`),Response.json({diff:{diff:g,commitMessage:f,date:p,isUncommitted:!1,commitCount:o}})):Response.json({diff:null})}catch(r){return console.error("[API] Error getting rule diff:",r),Response.json({diff:null})}}async function ov(e,t){try{const r=await cr(t),s={};if(r.length>0){const a=await fo(e,r);for(const o of r)s[o.filePath]=go(a,o.filePath)}return Response.json({reviewedStatus:s})}catch(r){return console.error("[API] Error getting reviewed status:",r),Response.json({reviewedStatus:{}})}}async function iv(e,t){try{const r=await cr(t),s=await ho(e),a=[];for(const o of s){const i=r.filter(l=>Tc(o,l));if(i.length>0){const l=i.reduce((c,m)=>c+m.body.length,0);a.push({filePath:o,matchingRules:i.map(c=>({filePath:c.filePath,patterns:c.frontmatter.paths||[],bodyLength:c.body.length})),totalTextLength:l})}}return a.sort((o,i)=>i.totalTextLength-o.totalTextLength),Response.json({topPaths:a,totalFilesWithCoverage:a.length,allSourceFiles:s})}catch(r){return console.error("[API] Error getting audit data:",r),Response.json({error:"Failed to get audit data",details:r instanceof Error?r.message:String(r)},{status:500})}}async function lv(e){try{const t=await ho(e);return Response.json({files:t})}catch(t){return console.error("[API] Error getting source files:",t),Response.json({error:"Failed to get source files",details:t instanceof Error?t.message:String(t)},{status:500})}}async function cv(e,t){try{const[r,s]=await Promise.all([cr(t),ho(e)]),a={};for(const o of r)a[o.filePath]=Xw(o,s).length;return Response.json({coverage:a})}catch(r){return console.error("[API] Error getting rule coverage:",r),Response.json({error:"Failed to get rule coverage",details:r instanceof Error?r.message:String(r)},{status:500})}}async function dv(e,t){try{const r=await js(e),s=[];for(const o of r){const i=X.join(e,o);try{const l=await Se.readFile(i,"utf-8"),c=await Se.stat(i),{frontmatter:m,body:u}=po(l);m.paths&&m.paths.some(p=>ia(t,p,{matchBase:!0}))&&s.push({filePath:o,content:l,frontmatter:m,body:u,lastModified:c.mtime.toISOString()})}catch{}}const a=s.reduce((o,i)=>o+i.body.length,0);return Response.json({rules:s,totalTextLength:a})}catch(r){return console.error("[API] Error getting rules for path:",r),Response.json({error:"Failed to get rules for path",details:r instanceof Error?r.message:String(r)},{status:500})}}async function uv({request:e}){const t=ye();if(!t)return Response.json({error:"Project root not found"},{status:500});const r=X.join(t,".claude","rules");try{const s=await e.json(),{action:a,filePath:o,content:i,lastModified:l}=s;if(!o)return Response.json({error:"Missing required field: filePath"},{status:400});if(a==="mark-reviewed")return await vi(t,o,!0),console.log(`[API] Rule marked as reviewed: ${o}`),Response.json({success:!0,message:"Rule marked as reviewed",filePath:o});if(a==="mark-unreviewed")return await vi(t,o,!1),console.log(`[API] Rule marked as unreviewed: ${o}`),Response.json({success:!0,message:"Rule marked as unreviewed",filePath:o});const c=X.normalize(o);if(c.includes("..")||X.isAbsolute(c))return Response.json({error:"Invalid file path"},{status:400});const m=X.join(r,c);switch(a){case"create":case"update":return i?(await Se.mkdir(X.dirname(m),{recursive:!0}),await Se.writeFile(m,i,"utf-8"),console.log(`[API] Memory ${a}d: ${o}`),Response.json({success:!0,message:`Memory ${a}d successfully`,filePath:o})):Response.json({error:"Missing required field: content"},{status:400});case"delete":try{await Se.unlink(m),console.log(`[API] Memory deleted: ${o}`);const u=X.dirname(m);try{(await Se.readdir(u)).length===0&&u!==r&&await Se.rmdir(u)}catch{}return Response.json({success:!0,message:"Memory deleted successfully"})}catch(u){if(u.code==="ENOENT")return Response.json({error:"Memory not found"},{status:404});throw u}default:return Response.json({error:"Invalid action. Must be create, update, or delete"},{status:400})}}catch(s){return console.error("[API] Error managing memory:",s),Response.json({error:"Failed to manage memory",details:s instanceof Error?s.message:String(s)},{status:500})}}const mv=Object.freeze(Object.defineProperty({__proto__:null,action:uv,loader:nv},Symbol.toStringTag,{value:"Module"}));async function pv({request:e,context:t}){var o;let r=t.analysisQueue;if(r||(r=await Pt()),!r)return Z({error:"Queue not initialized"},{status:500});const s=new URL(e.url),a=s.searchParams.get("queryType");if(!a)return Z({error:"Missing queryType parameter for GET request"},{status:400});if(a==="job"){const i=s.searchParams.get("jobId");if(!i)return Z({error:"Missing jobId parameter for job query"},{status:400});const l=r.getState();if(((o=l.currentlyExecuting)==null?void 0:o.id)===i)return Z({jobId:i,status:"running",job:l.currentlyExecuting});const c=l.jobs.find(u=>u.id===i);if(c){const u=l.jobs.indexOf(c);return Z({jobId:i,status:"queued",position:u,job:c})}const m=r.getJobResult(i);return m?Z({jobId:i,status:m.status==="error"?"failed":"completed",error:m.error}):Z({jobId:i,status:"completed"})}if(a==="full"){const i=r.getState(),l=await Promise.all(i.jobs.map(async m=>{const u=[];if(m.entityShas&&m.entityShas.length>0){const p=m.entityShas.map(f=>an(f)),h=await Promise.all(p);u.push(...h.filter(f=>f!==null))}return{id:m.id,type:m.type,commitSha:m.commitSha,projectSlug:m.projectSlug,queuedAt:m.queuedAt,entities:u,filePaths:m.filePaths}}));let c;if(i.currentlyExecuting){const m=i.currentlyExecuting,u=[];if(m.entityShas&&m.entityShas.length>0){const p=m.entityShas.map(f=>an(f)),h=await Promise.all(p);u.push(...h.filter(f=>f!==null))}c={id:m.id,type:m.type,commitSha:m.commitSha,projectSlug:m.projectSlug,queuedAt:m.queuedAt,entities:u,filePaths:m.filePaths}}return Z({state:{...i,jobsWithEntities:l,currentlyExecutingWithEntities:c}})}return Z({error:"Unknown queryType"},{status:400})}async function hv({request:e,context:t}){console.log("[Queue API] Received request"),console.log("[Queue API] Context keys:",Object.keys(t||{})),console.log("[Queue API] analysisQueue exists:",!!(t!=null&&t.analysisQueue));let r=t.analysisQueue;if(r||(r=await Pt(),console.log("[Queue API] Using global queue")),!r)return console.error("[Queue API] ERROR: Queue not initialized in context"),Z({error:"Queue not initialized"},{status:500});const s=await e.json(),{action:a,...o}=s;if(console.log("[Queue API] Action:",a,"Params:",Object.keys(o)),a==="enqueue"){const{jobId:i,completion:l}=r.enqueue(o);return l.catch(c=>{console.error(`[Queue API] Job ${i} failed:`,c)}),Z({jobId:i,status:"queued"})}if(a==="resume")return r.resume(),Z({status:"resumed"});if(a==="pause")return r.pause(),Z({status:"paused"});if(a==="remove"){const{jobId:i}=o;return i?r.removeJob(i)?Z({status:"removed",jobId:i}):Z({error:"Job not found in queue"},{status:404}):Z({error:"Missing jobId parameter"},{status:400})}if(a==="clear"){const i=r.clearQueue();return Z({status:"cleared",count:i})}if(a==="reorder"){const{jobId:i,direction:l}=o;return!i||!l?Z({error:"Missing jobId or direction parameter"},{status:400}):l!=="up"&&l!=="down"?Z({error:'Invalid direction: must be "up" or "down"'},{status:400}):r.reorderJob(i,l)?Z({status:"reordered",jobId:i,direction:l}):Z({error:"Could not reorder job (not found or at boundary)"},{status:400})}return Z({error:"Unknown action"},{status:400})}const fv=Object.freeze(Object.defineProperty({__proto__:null,action:hv,loader:pv},Symbol.toStringTag,{value:"Module"})),gv=()=>[{title:"Empty State - CodeYam"},{name:"description",content:"Simulations empty state development view"}],yv=Ye(function(){return Le(),n(Ns,{children:d("div",{className:"h-screen bg-[#F8F7F6] flex flex-col overflow-hidden",children:[n("header",{className:"bg-white border-b border-gray-200 shrink-0 relative h-[54px]",children:d("div",{className:"flex items-center h-full px-6 gap-6",children:[d("div",{className:"flex items-center gap-3 min-w-0",children:[n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M13 8.5H4M4 8.5L8.5 4M4 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),n("h1",{className:"text-lg font-semibold text-black m-0 leading-[26px] shrink-0",children:"Dashboard"}),n("span",{className:"text-xs text-[#626262] font-mono whitespace-nowrap overflow-hidden text-ellipsis min-w-0",children:"codeyam-cli/src/webserver/app/routes/_index.tsx"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[d("div",{className:"flex items-center gap-2 px-[15px] py-0 h-[26px] bg-[#efefef] border border-[#e1e1e1] rounded",children:[n("div",{className:"w-2 h-2 rounded-full bg-[#626262]"}),n("span",{className:"text-xs font-semibold text-[#626262]",children:"Not analyzed"})]}),n("button",{className:"px-[15px] py-0 h-[26px] bg-[#005c75] text-white rounded text-xs font-semibold border-none cursor-pointer hover:bg-[#004a5e] transition-colors",children:"Analyze"})]}),d("div",{className:"flex items-center gap-1 text-[10px] text-[#626262] ml-auto",children:[n("span",{className:"leading-[22px]",children:"Next Entity"}),n("svg",{width:"17",height:"17",viewBox:"0 0 17 17",fill:"none",className:"shrink-0",children:n("path",{d:"M4 8.5H13M13 8.5L8.5 4M13 8.5L8.5 13",stroke:"#005c75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]})]})}),n("div",{className:"bg-[#efefef] border-b border-[#efefef] shrink-0",children:d("div",{className:"flex items-center gap-3 h-11 px-[15px]",children:[d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded bg-[#343434] text-[#efefef] font-semibold h-8",children:["Scenarios",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#cbf3fa] text-[#005c75] min-w-[25px] text-center",children:"0"})]}),d("div",{className:"px-4 flex items-center justify-center gap-3 shrink-0 text-sm rounded-[9px] text-[#3e3e3e] font-normal",children:["Related Entities",n("span",{className:"px-2 py-0.5 rounded-[9px] text-xs font-semibold bg-[#e1e1e1] text-[#3e3e3e] min-w-[25px] text-center",children:"5"})]}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Code"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"Data Structure"}),n("div",{className:"px-4 shrink-0 text-sm text-[#3e3e3e] font-normal",children:"History"})]})}),d("div",{className:"flex flex-1 gap-0 min-h-0",children:[n("div",{className:"w-[165px] bg-[#e1e1e1] border-r border-[#c7c7c7] flex items-center justify-center shrink-0",children:n("span",{className:"text-xs font-medium text-[#8e8e8e] leading-5",children:"No Scenarios"})}),n(Ac,{selectedScenario:null,analysis:void 0,entity:{sha:"mock-sha",name:"Dashboard",filePath:"codeyam-cli/src/webserver/app/routes/_index.tsx",entityType:"visual"},viewMode:"screenshot",cacheBuster:Date.now(),hasScenarios:!1,isAnalyzing:!1,projectSlug:null,hasAnApiKey:!0})]})]})})}),xv=Object.freeze(Object.defineProperty({__proto__:null,default:yv,meta:gv},Symbol.toStringTag,{value:"Module"})),bv=()=>[{title:"Settings - CodeYam"},{name:"description",content:"Configure project settings"}];async function wv({request:e}){var t,r;try{const s=await hs();if(!s)return Z({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Project configuration not found"});let a=!1;try{const c=await De();if(c){const{project:m}=await Oe(c);a=((r=(t=m.metadata)==null?void 0:t.labs)==null?void 0:r.simulations)===!0}}catch{}const o=ye()||process.cwd(),i=await fs(o),l=_l(s.projectSlug);return Z({config:s,secrets:{GROQ_API_KEY:i.GROQ_API_KEY||"",ANTHROPIC_API_KEY:i.ANTHROPIC_API_KEY||"",OPENAI_API_KEY:i.OPENAI_API_KEY||""},versionInfo:l,simulationsEnabled:a,error:null})}catch(s){return console.error("Failed to load config:",s),Z({config:null,secrets:null,versionInfo:null,simulationsEnabled:!1,error:"Failed to load configuration"})}}function vv(e){if(!e||!e.trim())return;const t=e.trim().split(/\s+/);if(t.length===0)return;const r=t[0],s=t.length>1?t.slice(1):void 0;return{command:r,args:s}}async function Nv({request:e}){try{const t=await e.formData(),r=t.get("universalMocks"),s=t.get("startCommands"),a=t.get("groqApiKey"),o=t.get("anthropicApiKey"),i=t.get("openAiApiKey"),l=t.get("pathsToIgnore"),c=t.get("memorySettings");let m;if(r)try{m=JSON.parse(r)}catch{return Z({success:!1,error:"Invalid universalMocks JSON format",requiresRestart:!1},{status:400})}let u;if(s)try{u=JSON.parse(s)}catch{return Z({success:!1,error:"Invalid startCommands JSON format",requiresRestart:!1},{status:400})}let p;l&&(p=l.split(",").map(x=>x.trim()).map(x=>x.startsWith('"')&&x.endsWith('"')||x.startsWith("'")&&x.endsWith("'")?x.slice(1,-1):x).filter(x=>x.length>0));let h;if(c)try{h=JSON.parse(c)}catch{return Z({success:!1,error:"Invalid memorySettings JSON format",requiresRestart:!1},{status:400})}let f;if(u){const x=await hs();x!=null&&x.webapps&&(f=x.webapps.map((b,w)=>{if(u[w]!==void 0){const v=vv(u[w]);return{...b,startCommand:v}}return b}))}if(!await bl({universalMocks:m,pathsToIgnore:p,webapps:f,memory:h}))return Z({success:!1,error:"Failed to update configuration",requiresRestart:!1},{status:500});let y=!1;if(a!==void 0||o!==void 0||i!==void 0){const x=ye()||process.cwd(),b=await fs(x);y=a!==void 0&&a!==(b.GROQ_API_KEY||"")||o!==void 0&&o!==(b.ANTHROPIC_API_KEY||"")||i!==void 0&&i!==(b.OPENAI_API_KEY||""),await up(x,{...b,GROQ_API_KEY:a||void 0,ANTHROPIC_API_KEY:o||void 0,OPENAI_API_KEY:i||void 0},!0)}return Z({success:!0,error:null,requiresRestart:y})}catch(t){return console.log("[Settings Action] Failed to save config:",t),Z({success:!1,error:"Failed to save configuration",requiresRestart:!1},{status:500})}}function Ni(e){if(!e)return"";const t=[e.command];return e.args&&e.args.length>0&&t.push(...e.args),t.join(" ")}function Ci({mock:e,onSave:t,onCancel:r}){const[s,a]=M(e.entityName),[o,i]=M(e.filePath),[l,c]=M(e.content);return d("div",{className:"space-y-3",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Entity Name"}),n("input",{type:"text",value:s,onChange:u=>a(u.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., determineDatabaseType"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path"}),n("input",{type:"text",value:o,onChange:u=>i(u.target.value),className:"w-full px-3 py-2 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., packages/database/src/lib/kysely/db.ts"})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:l,onChange:u=>c(u.target.value),rows:6,className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]",placeholder:"e.g., function determineDatabaseType() { return 'postgresql' }"})]}),d("div",{className:"flex gap-2 justify-end",children:[n("button",{type:"button",onClick:r,className:"px-4 py-2 bg-gray-200 text-gray-800 border-none rounded text-sm cursor-pointer hover:bg-gray-300",children:"Cancel"}),n("button",{type:"button",onClick:()=>{if(!s.trim()||!o.trim()||!l.trim()){alert("All fields are required");return}t({entityName:s,filePath:o,content:l})},className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Save"})]})]})}function Cv(e){try{return new Date(e).toLocaleDateString("en-US",{year:"numeric",month:"long",day:"numeric",hour:"numeric",minute:"2-digit"})}catch{return e}}const Sv=Ye(function(){var Te,xe,Ce,$e,Ae;const{config:t,secrets:r,versionInfo:s,simulationsEnabled:a,error:o}=He(),i=nd(),l=Le(),c=Ct(),[m,u]=M(a?"project-metadata":"memory");gt({source:"settings-page"});const[p,h]=M((t==null?void 0:t.universalMocks)||[]),[f,g]=M(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[y,x]=M(((t==null?void 0:t.pathsToIgnore)||[]).join(", ")),[b,w]=M((r==null?void 0:r.GROQ_API_KEY)||""),[v,C]=M((r==null?void 0:r.ANTHROPIC_API_KEY)||""),[A,S]=M((r==null?void 0:r.OPENAI_API_KEY)||""),[E,N]=M(!1),[k,j]=M(!1),[T,P]=M(!1),[R,I]=M(!1),[$,L]=M(!1),[H,F]=M(!1),[z,U]=M(null),[O,_]=M(!1),[Y,Q]=M({}),[K,ae]=M(((Te=t==null?void 0:t.memory)==null?void 0:Te.conversationReflection)??!0),[J,D]=M(((xe=t==null?void 0:t.memory)==null?void 0:xe.ruleMaintenance)??!0),[W,G]=M(((Ce=t==null?void 0:t.memory)==null?void 0:Ce.promptModel)??"haiku");te(()=>{var ie,he,ke,st;if(t){h(t.universalMocks||[]);const ve=(t.pathsToIgnore||[]).join(", ");g(ve),x(ve);const ze={};(ie=t.webapps)==null||ie.forEach((Ue,ct)=>{Ue.startCommand&&(ze[ct]=Ni(Ue.startCommand))}),Q(ze),ae(((he=t.memory)==null?void 0:he.conversationReflection)??!0),D(((ke=t.memory)==null?void 0:ke.ruleMaintenance)??!0),G(((st=t.memory)==null?void 0:st.promptModel)??"haiku")}r&&(w(r.GROQ_API_KEY||""),C(r.ANTHROPIC_API_KEY||""),S(r.OPENAI_API_KEY||""))},[t,r]),te(()=>{if(i!=null&&i.success){I(!0);const ie=setTimeout(()=>I(!1),3e3);return()=>clearTimeout(ie)}},[i]),te(()=>{if(l.state==="idle"&&l.data&&!H){console.log("[Settings] Fetcher data:",l.data);const ie=l.data;if(ie.success){console.log("[Settings] Save successful, revalidating..."),I(!0),F(!0),(f!==y||ie.requiresRestart)&&L(!0),c.revalidate();const he=setTimeout(()=>{I(!1),F(!1)},3e3);return()=>clearTimeout(he)}}},[l.state,l.data,H,c,f,y]);const ne=ie=>{ie.preventDefault();const he=new FormData(ie.currentTarget);he.set("universalMocks",JSON.stringify(p)),he.set("startCommands",JSON.stringify(Y)),he.set("memorySettings",JSON.stringify({conversationReflection:K,ruleMaintenance:J,promptModel:W})),console.log("[Settings] Submitting form data:",{universalMocks:he.get("universalMocks"),startCommands:he.get("startCommands"),openAiApiKey:he.get("openAiApiKey")?"***":"(empty)"}),l.submit(he,{method:"post"})},se=ie=>{h([...p,ie]),_(!1)},re=(ie,he)=>{const ke=[...p];ke[ie]=he,h(ke),U(null)},ee=ie=>{h(p.filter((he,ke)=>ke!==ie))};if(o)return d("div",{className:"max-w-6xl mx-auto p-8 font-sans",children:[n("header",{className:"mb-6 pb-4 border-b border-gray-200",children:n("div",{className:"flex justify-between items-center",children:n("h1",{className:"text-4xl font-bold text-gray-900",children:"Settings"})})}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4",children:n("p",{className:"text-red-700",children:o})})]});const de=[{id:"project-metadata",label:"Project Metadata"},{id:"ai-provider",label:"AI Provider Configuration"},{id:"commands",label:"Commands"},{id:"paths-to-ignore",label:"Paths To Ignore"},{id:"universal-mocks",label:"Universal Mocks"},{id:"memory",label:"Memory"},{id:"current-configuration",label:"Current Configuration"}],me=a?de:de.filter(ie=>ie.id==="memory");return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 pt-8 pb-12 font-sans",children:[d("div",{className:"mb-8 flex justify-between items-start",children:[d("div",{children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Settings"}),n("p",{className:"text-[15px] text-gray-500",children:"Project Configuration"})]}),n("button",{type:"submit",form:"settings-form",disabled:l.state==="submitting",className:"px-6 py-2 bg-[#005C75] text-white border-none rounded text-sm font-medium cursor-pointer disabled:cursor-not-allowed disabled:opacity-60 hover:bg-[#004a5d] whitespace-nowrap",children:l.state==="submitting"?"Saving...":"Save Settings"})]}),(R||$||(i==null?void 0:i.error)||l.data&&typeof l.data=="object"&&"error"in l.data)&&d("div",{className:"mb-4 space-y-3",children:[R&&n("div",{className:"text-emerald-600 text-sm font-medium bg-emerald-50 border border-emerald-200 rounded px-4 py-2",children:"Settings saved successfully!"}),$&&d("div",{className:"text-amber-700 text-sm font-medium bg-amber-50 border border-amber-200 rounded px-4 py-2",children:[n("div",{children:"Settings changed. Please restart CodeYam for changes to take effect:"}),d("div",{className:"flex items-center gap-2 mt-1",children:[n("code",{className:"bg-amber-100 px-2 py-1 rounded text-xs",children:"codeyam stop && codeyam"}),n(At,{content:"codeyam stop && codeyam",className:"px-2 py-1 text-xs bg-amber-200 hover:bg-amber-300 text-amber-800 rounded border-none transition-colors"})]})]}),(i==null?void 0:i.error)&&n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:i.error}),(()=>{if(l.data&&typeof l.data=="object"&&"error"in l.data){const ie=l.data;return typeof ie.error=="string"?n("div",{className:"text-red-600 text-sm font-medium bg-red-50 border border-red-200 rounded px-4 py-2",children:ie.error}):null}return null})()]}),d("div",{className:"flex flex-col lg:flex-row gap-6 lg:gap-8 items-start",children:[n("nav",{className:"w-full lg:w-64 flex-shrink-0",children:n("ul",{className:"flex lg:flex-col overflow-x-auto gap-1",children:me.map(ie=>n("li",{children:n("button",{type:"button",onClick:()=>u(ie.id),className:`w-full text-left px-3 lg:px-0 py-2.5 text-sm transition-colors cursor-pointer whitespace-nowrap ${m===ie.id?"text-[#005C75] font-medium":"text-gray-600 hover:text-gray-900"}`,children:ie.label})},ie.id))})}),n("div",{className:"flex-1 min-w-0 -mt-2",children:d("form",{id:"settings-form",onSubmit:ne,className:"space-y-6",children:[m==="project-metadata"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Project Metadata"}),d("div",{className:"mb-6",children:[n("label",{className:"block mb-2 font-medium text-gray-700",children:"Web Applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-3",children:t.webapps.map((ie,he)=>{var ke;return n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:ie.path==="."?"Root":ie.path})]}),ie.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:ie.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:ie.framework})]}),ie.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",d("span",{className:"text-gray-900 font-mono text-xs",children:[ie.startCommand.command," ",(ke=ie.startCommand.args)==null?void 0:ke.join(" ")]})]})]})},he)})}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"}),n("p",{className:"mt-2 text-sm text-gray-600",children:"Web applications are detected during initialization. To modify, edit `.codeyam/config.json` or re-run `codeyam init`."})]})]}),m==="ai-provider"&&d("div",{children:[n("h3",{className:"text-lg font-semibold text-gray-800 mb-4",children:"AI Provider API Keys"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure API keys for AI-powered analysis. Choose the provider that best fits your needs."}),d("div",{className:"space-y-6",children:[d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Groq"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Lightning-fast inference with industry-leading speed. Groq's LPU architecture delivers exceptional performance for real-time AI applications with competitive pricing."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$0.10/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 850 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Less reliable, but capable of producing reasonable results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"groqApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:E?"text":"password",id:"groqApiKey",name:"groqApiKey",value:b,onChange:ie=>w(ie.target.value),placeholder:"gsk_...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>N(!E),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:E?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Anthropic Claude"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Advanced reasoning and coding capabilities with superior context understanding. Claude excels at complex analysis tasks and provides highly accurate results with detailed explanations."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$3.00/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 120 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"anthropicApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:k?"text":"password",id:"anthropicApiKey",name:"anthropicApiKey",value:v,onChange:ie=>C(ie.target.value),placeholder:"sk-ant-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>j(!k),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:k?"Hide":"Show"})]})]})]}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("div",{className:"flex items-start justify-between mb-3",children:d("div",{children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"OpenAI GPT"}),n("p",{className:"text-sm text-gray-600 mb-3",children:"Industry-standard AI with broad capabilities and extensive ecosystem. GPT models offer reliable performance across diverse tasks with good balance of speed and quality."}),d("div",{className:"flex flex-wrap gap-2 text-xs",children:[d("div",{className:"px-2 py-1 bg-green-100 text-green-800 rounded",children:[n("span",{className:"font-medium",children:"Cost:"})," ","$2.50/1M tokens"]}),d("div",{className:"px-2 py-1 bg-cyan-100 text-cyan-800 rounded",children:[n("span",{className:"font-medium",children:"Speed:"})," 150 tokens/s"]}),d("div",{className:"px-2 py-1 bg-purple-100 text-purple-800 rounded",children:[n("span",{className:"font-medium",children:"Reliability:"})," ","Consistent, high quality results"]})]})]})}),d("div",{className:"mt-4",children:[n("label",{htmlFor:"openAiApiKey",className:"block text-sm font-medium text-gray-700 mb-2",children:"API Key"}),d("div",{className:"relative",children:[n("input",{type:T?"text":"password",id:"openAiApiKey",name:"openAiApiKey",value:A,onChange:ie=>S(ie.target.value),placeholder:"sk-...",className:"w-full px-3 py-2 pr-24 border border-gray-300 rounded text-sm focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("button",{type:"button",onClick:()=>P(!T),className:"absolute right-2 top-1/2 -translate-y-1/2 px-3 py-1 text-xs text-gray-600 hover:text-gray-800 focus:outline-none cursor-pointer",children:T?"Hide":"Show"})]})]})]})]})]}),m==="commands"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Commands"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure start commands for your web applications"}),t!=null&&t.webapps&&t.webapps.length>0?n("div",{className:"space-y-4",children:t.webapps.map((ie,he)=>d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[d("div",{className:"mb-4",children:[n("div",{className:"text-base font-semibold text-gray-900 mb-1",children:ie.path==="."?"Root":ie.path}),n("div",{className:"text-sm text-gray-600",children:ie.framework})]}),d("div",{children:[n("label",{htmlFor:`startCommand-${he}`,className:"block text-sm font-medium text-gray-700 mb-2",children:"Start Command"}),n("input",{type:"text",id:`startCommand-${he}`,name:`startCommand-${he}`,value:Y[he]||"",onChange:ke=>Q({...Y,[he]:ke.target.value}),placeholder:"e.g., pnpm dev --port $PORT",className:"w-full px-3 py-2 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-1 focus:ring-[#005C75]"}),n("p",{className:"mt-2 text-xs text-gray-500",children:"Use $PORT as a placeholder for the dynamic port number"})]})]},he))}):n("p",{className:"text-sm text-gray-600 italic",children:"No web applications configured"})]}),m==="paths-to-ignore"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Paths To Ignore"}),n("input",{type:"text",id:"pathsToIgnore",name:"pathsToIgnore",value:f,onChange:ie=>g(ie.target.value),placeholder:"e.g., __tests__, \\.test\\.ts$, ^background (no quotes needed)",className:"w-full px-3 py-3 border border-gray-300 rounded text-sm font-mono focus:outline-none focus:border-[#005C75] focus:ring-2 focus:ring-[#005C75]/10"}),d("p",{className:"mt-2 text-sm text-gray-600",children:["Comma-separated list of regex patterns for paths to ignore during file watching. Examples:"," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"__tests__"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"\\.test\\.tsx?$"}),","," ",n("code",{className:"bg-gray-100 px-1 rounded",children:"^background"}),n("br",{}),n("span",{className:"text-xs text-gray-500 mt-1 inline-block",children:"Note: Files matching patterns in .gitignore are also automatically ignored"})]})]}),m==="universal-mocks"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Universal Mocks"}),n("p",{className:"mb-3 text-sm text-gray-600",children:"Mock functions that will be applied across all entity simulations"}),p.length===0?d("div",{className:"mb-4",children:[n("div",{className:"text-sm text-gray-500 mb-3",children:"No universal mocks configured"}),n("button",{type:"button",onClick:()=>_(!0),className:"px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}):n("div",{className:"space-y-3",children:p.map((ie,he)=>n("div",{className:"p-4 bg-gray-50 rounded border border-gray-200",children:z===he?n(Ci,{mock:ie,onSave:ke=>re(he,ke),onCancel:()=>U(null)}):n(pe,{children:d("div",{className:"flex justify-between items-start mb-2",children:[d("div",{className:"flex-1",children:[n("div",{className:"font-medium text-gray-800 mb-1",children:ie.entityName}),n("div",{className:"text-sm text-gray-600 mb-2",children:ie.filePath}),n("pre",{className:"text-xs bg-white p-2 rounded border border-gray-200 overflow-x-auto",children:ie.content})]}),d("div",{className:"flex gap-2 ml-3",children:[n("button",{type:"button",onClick:()=>U(he),className:"px-3 py-1 bg-teal-600 text-white border-none rounded text-sm cursor-pointer hover:bg-teal-700",children:"Edit"}),n("button",{type:"button",onClick:()=>ee(he),className:"px-3 py-1 bg-red-600 text-white border-none rounded text-sm cursor-pointer hover:bg-red-700",children:"Delete"})]})]})})},he))}),p.length>0&&n("button",{type:"button",onClick:()=>_(!0),className:"mt-4 px-4 py-2 bg-[#005C75] text-white border-none rounded text-sm cursor-pointer hover:bg-[#004a5d]",children:"Add Mock"})]}),m==="memory"&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Memory"}),n("p",{className:"text-sm text-gray-600 mb-6",children:"Configure how CodeYam reflects on conversations and maintains rules between sessions."}),d("div",{className:"space-y-6",children:[n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Conversation Reflection"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent reviews the session for architectural decisions, tribal knowledge, confusion, or corrections that future sessions would benefit from knowing. It creates or updates Claude Rules based on what it learns."})]}),n("button",{type:"button",role:"switch","aria-checked":K,onClick:()=>ae(!K),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${K?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${K?"translate-x-5":"translate-x-0"}`})})]})}),n("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex-1 mr-4",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Rule Maintenance"}),n("p",{className:"text-sm text-gray-600",children:"After each conversation, an agent checks if any existing Claude Rules have become stale based on recent code changes. It reviews the rule content against file diffs and updates rules that are out of date."})]}),n("button",{type:"button",role:"switch","aria-checked":J,onClick:()=>D(!J),className:`relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none ${J?"bg-[#005C75]":"bg-gray-200"}`,children:n("span",{className:`pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${J?"translate-x-5":"translate-x-0"}`})})]})}),d("div",{className:"border border-gray-200 rounded-lg p-5 bg-white",children:[n("h4",{className:"text-base font-semibold text-gray-900 mb-1",children:"Memory Prompt Model"}),n("p",{className:"text-sm text-gray-600 mb-4",children:"Choose the Claude model used for conversation reflection and rule maintenance tasks."}),n("div",{className:"space-y-3",children:[{value:"haiku",label:"Haiku",badge:"Default, Recommended",description:"Fastest and cheapest. Good for routine reflection tasks."},{value:"sonnet",label:"Sonnet",badge:null,description:"Balanced speed and quality. Better at nuanced rule writing."},{value:"opus",label:"Opus",badge:null,description:"Highest quality. Best for complex architectural decisions. Costs significantly more."}].map(ie=>d("label",{className:`flex items-start gap-3 p-3 rounded-lg border cursor-pointer transition-colors ${W===ie.value?"border-[#005C75] bg-[#005C75]/5":"border-gray-200 hover:border-gray-300"}`,children:[n("input",{type:"radio",name:"promptModel",value:ie.value,checked:W===ie.value,onChange:()=>G(ie.value),className:"mt-1 accent-[#005C75]"}),d("div",{children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-gray-900",children:ie.label}),ie.badge&&n("span",{className:"px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:ie.badge})]}),n("p",{className:"text-sm text-gray-600 mt-0.5",children:ie.description})]})]},ie.value))})]})]})]}),m==="current-configuration"&&d("div",{className:"space-y-6",children:[t&&d("div",{children:[n("h2",{className:"text-lg font-semibold text-gray-800 mb-4",children:"Current Configuration"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded mb-6",children:d("div",{className:"space-y-2 text-sm",children:[t.projectSlug&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Project Slug:"})," ",n("span",{className:"text-gray-900",children:t.projectSlug})]}),t.packageManager&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Package Manager:"})," ",n("span",{className:"text-gray-900",children:t.packageManager})]})]})}),t.webapps&&t.webapps.length>0&&d("div",{children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Web Applications"}),n("div",{className:"space-y-3",children:t.webapps.map((ie,he)=>n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Path:"})," ",n("span",{className:"text-gray-900",children:ie.path==="."?"Root":ie.path})]}),ie.appDirectory&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"App Directory:"})," ",n("span",{className:"text-gray-900",children:ie.appDirectory})]}),d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Framework:"})," ",n("span",{className:"text-gray-900",children:ie.framework})]}),ie.startCommand&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Start Command:"})," ",n("span",{className:"text-gray-900 font-mono text-xs",children:Ni(ie.startCommand)})]})]})},he))})]})]}),s&&d("div",{className:"mt-6",children:[n("h3",{className:"text-base font-semibold text-gray-800 mb-3",children:"Version Information"}),n("div",{className:"p-4 bg-white border border-gray-200 rounded",children:d("div",{className:"space-y-2 text-sm",children:[s.webserverVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Webserver:"})," ",n("span",{className:"text-gray-900 font-mono",children:s.webserverVersion.version||"unknown"})]}),s.templateVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Analyzer Template:"})," ",n("span",{className:"font-mono text-gray-900",children:s.templateVersion.version||(($e=s.templateVersion.gitCommit)==null?void 0:$e.slice(0,7))||"unknown"}),s.templateVersion.buildTimestamp&&d("span",{className:"text-gray-500 ml-2",children:["(built"," ",Cv(s.templateVersion.buildTimestamp),")"]})]}),s.cachedAnalyzerVersion&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"font-mono text-gray-900",children:s.cachedAnalyzerVersion.version||((Ae=s.cachedAnalyzerVersion.gitCommit)==null?void 0:Ae.slice(0,7))||"unknown"}),s.isCacheStale?n("span",{className:"ml-2 px-2 py-0.5 bg-amber-100 text-amber-800 rounded text-xs",children:"Stale - will update on next analysis"}):n("span",{className:"ml-2 px-2 py-0.5 bg-green-100 text-green-800 rounded text-xs",children:"Up to date"})]}),!s.cachedAnalyzerVersion&&(t==null?void 0:t.projectSlug)&&d("div",{children:[n("span",{className:"font-medium text-gray-700",children:"Cached Analyzer:"})," ",n("span",{className:"text-gray-500 italic",children:"Not initialized - will be created on first analysis"})]})]})})]})]})]})})]}),O&&n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-4 z-50",children:d("div",{className:"bg-white rounded-lg max-w-2xl w-full p-6",children:[n("h2",{className:"text-2xl font-bold mb-4 text-gray-900",children:"Add Universal Mock"}),n(Ci,{mock:{entityName:"",filePath:"",content:""},onSave:se,onCancel:()=>_(!1)})]})})]})})}),kv=Object.freeze(Object.defineProperty({__proto__:null,action:Nv,default:Sv,loader:wv,meta:bv},Symbol.toStringTag,{value:"Module"}));async function Ev({params:e}){const t=e["*"];if(!t)return new Response("Static path is required",{status:400});const r=ye();if(!r)return new Response("Project root not found",{status:500});const a=X.extname(t)!==""?t:`${t}.html`,o=X.join(r,".codeyam","captures","static",a);try{await Se.access(o);let i=await Se.readFile(o);const l=X.extname(o).toLowerCase();let c="application/octet-stream";if(l===".html"){c="text/html";let m=i.toString("utf-8");const u=m.match(/<script>(window\.__remixContext\s*=\s*\{[\s\S]*?\});?<\/script>/i);if(u)try{const h=u[1].match(/=\s*(\{[\s\S]*\})/);if(h){const f=JSON.parse(h[1]);f.isSpaMode=!0,f.future&&(f.future.v3_lazyRouteDiscovery=!1);const g=`<script>window.__remixContext = ${JSON.stringify(f)};<\/script>`;m=m.replace(u[0],g)}}catch(p){console.error("[Static] Failed to parse Remix context:",p)}i=Buffer.from(m,"utf-8")}else l===".js"||l===".mjs"?c="application/javascript":l===".css"?c="text/css":l===".json"?c="application/json":l===".png"?c="image/png":l===".jpg"||l===".jpeg"?c="image/jpeg":l===".svg"?c="image/svg+xml":l===".woff"?c="font/woff":l===".woff2"?c="font/woff2":l===".ttf"&&(c="font/ttf");return new Response(i,{status:200,headers:{"Content-Type":c,"Cache-Control":"public, max-age=3600","X-Frame-Options":"SAMEORIGIN"}})}catch{return new Response("Static file not found",{status:404})}}const _v=Object.freeze(Object.defineProperty({__proto__:null,loader:Ev},Symbol.toStringTag,{value:"Module"}));function Av(e,t,r=10){var c;const s=new Map,a=m=>m.entityType==="visual"||m.entityType==="library";for(const m of e)a(m)&&s.set(m.sha,{entity:m,depth:0});const o=new Map;for(const m of t){const u=(c=m.metadata)==null?void 0:c.importedBy;if(u)for(const p of Object.keys(u))for(const h of Object.keys(u[p])){const{shas:f}=u[p][h];for(const g of f)o.has(m.sha)||o.set(m.sha,new Set),o.get(m.sha).add(g)}}const i=[],l=new Set;for(const m of e)i.push({sha:m.sha,depth:0}),l.add(m.sha);for(;i.length>0;){const{sha:m,depth:u}=i.shift();if(u>=r)continue;const p=o.get(m);if(p)for(const h of p){if(l.has(h))continue;l.add(h);const f=t.find(g=>g.sha===h);if(f){if(a(f)){const g=u+1,y=s.get(h);(!y||g<y.depth)&&s.set(h,{entity:f,depth:g})}i.push({sha:h,depth:u+1})}}}return Array.from(s.values()).sort((m,u)=>m.depth!==u.depth?m.depth-u.depth:m.entity.name.localeCompare(u.entity.name))}function es(e){const t=new Map;for(const s of e)t.has(s.name)||t.set(s.name,[]),t.get(s.name).push(s);const r=[];for(const s of t.values())if(s.length===1)r.push(s[0]);else{const a=s.sort((o,i)=>{var m,u;const l=((m=o.metadata)==null?void 0:m.editedAt)||o.createdAt||"";return(((u=i.metadata)==null?void 0:u.editedAt)||i.createdAt||"").localeCompare(l)});r.push(a[0])}return r}function Oc(e,t){const r=new Map,s=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&s.add(a.oldPath);for(const a of e){const o=t.filter(c=>c.filePath===a.path||a.status==="renamed"&&a.oldPath&&c.filePath===a.oldPath),i=o.filter(c=>{var m,u;return s.has(c.filePath)&&((m=c.metadata)==null?void 0:m.isUncommitted)&&!((u=c.metadata)!=null&&u.isSuperseded)}),l=es(i);r.set(a.path,{status:a,entities:o,editedEntities:l})}return r}function Pv(e,t,r){const s=new Map;if(!r){for(const o of e)if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const i=t.filter(c=>c.filePath===o.path||o.status==="renamed"&&o.oldPath&&c.filePath===o.oldPath),l=es(i);s.set(o.path,{status:o,entities:l})}return s}const a=new Map;for(const o of r.fileComparisons){const i=new Set;for(const l of o.newEntities)i.add(l.name);for(const l of o.modifiedEntities)i.add(l.name);for(const l of o.deletedEntities)i.add(l.name);i.size>0&&a.set(o.filePath,i)}for(const o of e){const i=a.get(o.path);if(o.status==="deleted")s.set(o.path,{status:o,entities:[]});else{const l=i?t.filter(m=>(m.filePath===o.path||o.status==="renamed"&&o.oldPath&&m.filePath===o.oldPath)&&i.has(m.name)):[],c=es(l);s.set(o.path,{status:o,entities:c})}}return s}function jv(e,t){const r=new Map,s=Lc(e,t);for(const a of s){const i=Av([a],t).filter(({depth:l})=>l>0);r.set(a.sha,i)}return r}function Lc(e,t){const r=new Set(e.map(a=>a.path));for(const a of e)a.status==="renamed"&&a.oldPath&&r.add(a.oldPath);const s=t.filter(a=>{var o,i;return r.has(a.filePath)&&((o=a.metadata)==null?void 0:o.isUncommitted)&&!((i=a.metadata)!=null&&i.isSuperseded)});return es(s)}function Tv({recentSimulations:e}){const t=oe(()=>{const r=new Map;return e.forEach(s=>{const a=s.entitySha,o=r.get(a);o?o.push(s):r.set(a,[s])}),Array.from(r.entries()).map(([s,a])=>({entitySha:s,entityName:a[0].entityName,scenarios:a}))},[e]);return d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:e.length>0?`Latest ${e.length} captured screenshot${e.length!==1?"s":""}`:"No simulations captured yet"})]})}),e.length>0?d(pe,{children:[n("div",{className:"space-y-6 mb-5",children:t.map(r=>d("div",{children:[d("div",{className:"mb-3 flex items-center gap-2",children:[n("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center bg-purple-100",children:n(er,{size:16,style:{color:"#8B5CF6"}})}),n(fe,{to:`/entity/${r.entitySha}`,className:"text-sm font-semibold text-gray-900 no-underline hover:text-gray-700 transition-colors",children:r.entityName})]}),n("div",{className:"grid grid-cols-4 gap-3",children:r.scenarios.map((s,a)=>n(fe,{to:s.scenarioId?`/entity/${s.entitySha}/scenarios/${s.scenarioId}`:`/entity/${s.entitySha}`,className:"aspect-4/3 border border-gray-200 rounded-lg overflow-hidden bg-gray-50 transition-all flex items-center justify-center hover:scale-105",onMouseEnter:o=>{o.currentTarget.style.borderColor="#005C75",o.currentTarget.style.boxShadow="0 4px 12px rgba(0, 92, 117, 0.2)"},onMouseLeave:o=>{o.currentTarget.style.borderColor="#E5E7EB",o.currentTarget.style.boxShadow="none"},title:s.scenarioName,children:n(Ge,{screenshotPath:s.screenshotPath,alt:s.scenarioName,className:"max-w-full max-h-full object-contain object-center"})},s.scenarioId||`${s.entitySha}-${a}`))})]},r.entitySha))}),n(fe,{to:"/simulations",className:"block text-center p-3 rounded-lg no-underline font-semibold text-sm transition-all",style:{color:"#005C75",backgroundColor:"#F6F9FC"},onMouseEnter:r=>r.currentTarget.style.backgroundColor="#EEF4F8",onMouseLeave:r=>r.currentTarget.style.backgroundColor="#F6F9FC",children:"View All Recent Simulations →"})]}):d("div",{className:"py-12 px-6 text-center rounded-lg w-full flex flex-col items-center justify-center min-h-50 border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:n(er,{size:24,style:{color:"#7A9BA5"},strokeWidth:1.5})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No simulations captured yet."}),d("p",{className:"text-xs m-0 mt-2",style:{color:"#7A9BA5"},children:["Trigger an analysis from the"," ",n(fe,{to:"/git",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Git"})," ","or"," ",n(fe,{to:"/files",className:"underline hover:no-underline",style:{color:"#7A9BA5"},children:"Files"})," ","page."]})]})]})}const Mv="/assets/codeyam-name-logo-CvKwUgHo.svg",$v=()=>[{title:"Dashboard - CodeYam"},{name:"description",content:"CodeYam project dashboard"}];async function Iv({request:e,context:t}){var r,s,a,o,i;try{const l=await De();if(l){const{project:R}=await Oe(l);if(((r=R.metadata)==null?void 0:r.editorMode)??!1)return _o("/editor");if(!(((a=(s=R.metadata)==null?void 0:s.labs)==null?void 0:a.simulations)??!1))return _o("/memory")}const c=t.analysisQueue,m=c?c.getState():{paused:!1,jobs:[]},[u,p]=await Promise.all([ln(),Pn()]),h=Mn(),f=u?Oc(h,u):new Map,g=Array.from(f.entries()).sort((R,I)=>R[0].localeCompare(I[0])),y=(u==null?void 0:u.length)||0,x=(u==null?void 0:u.filter(R=>R.entityType==="visual").length)||0,b=(u==null?void 0:u.filter(R=>R.entityType==="library").length)||0,w=u?Lc(h,u):[],v=w.length,C=(u==null?void 0:u.filter(R=>(R.analyses??[]).filter(I=>I.scenarios&&I.scenarios.length>0).length>0).length)||0,A=(u==null?void 0:u.reduce((R,I)=>{var L,H,F;const $=((F=(H=(L=I.analyses)==null?void 0:L[0])==null?void 0:H.scenarios)==null?void 0:F.length)||0;return R+$},0))||0,S=(u==null?void 0:u.reduce((R,I)=>{var H,F;const L=(((F=(H=I.analyses)==null?void 0:H[0])==null?void 0:F.scenarios)||[]).filter(z=>{var U,O;return(O=(U=z.metadata)==null?void 0:U.screenshotPaths)==null?void 0:O[0]}).length;return R+L},0))||0,E=[];u==null||u.forEach(R=>{var $;const I=($=R.analyses)==null?void 0:$[0];I!=null&&I.scenarios&&I.scenarios.filter(H=>{var F;return!((F=H.metadata)!=null&&F.sameAsDefault)}).forEach(H=>{var z,U;const F=(U=(z=H.metadata)==null?void 0:z.screenshotPaths)==null?void 0:U[0];F&&E.push({entitySha:R.sha,entityName:R.name,scenarioId:H.id,scenarioName:H.name,screenshotPath:F,createdAt:I.createdAt||""})})}),E.sort((R,I)=>new Date(I.createdAt).getTime()-new Date(R.createdAt).getTime());const N=E.slice(0,16),k=(u==null?void 0:u.filter(R=>R.entityType==="visual").filter(R=>{var L,H;const I=(L=R.analyses)==null?void 0:L[0];return!((H=I==null?void 0:I.scenarios)==null?void 0:H.some(F=>{var z,U;return(U=(z=F.metadata)==null?void 0:z.screenshotPaths)==null?void 0:U[0]}))}).slice(0,8))||[],j=(o=p==null?void 0:p.metadata)==null?void 0:o.currentRun,T=((i=j==null?void 0:j.currentEntityShas)==null?void 0:i.length)||0,P=m.jobs.length||0;return Z({stats:{totalEntities:y,visualEntities:x,libraryEntities:b,uncommittedEntities:v,entitiesWithAnalyses:C,totalScenarios:A,capturedScreenshots:S,currentlyAnalyzing:T,filesOnQueue:P},uncommittedFiles:g,uncommittedEntitiesList:w,recentSimulations:N,visualEntitiesForSimulation:k,projectSlug:l,queueState:m,currentCommit:p})}catch(l){return console.error("Failed to load dashboard data:",l),Z({stats:{totalEntities:0,visualEntities:0,libraryEntities:0,uncommittedEntities:0,entitiesWithAnalyses:0,totalScenarios:0,capturedScreenshots:0,currentlyAnalyzing:0,filesOnQueue:0},uncommittedFiles:[],uncommittedEntitiesList:[],recentSimulations:[],visualEntitiesForSimulation:[],projectSlug:null,queueState:{paused:!1,jobs:[]},currentCommit:null,error:"Failed to load dashboard data"})}}const Rv=Ye(function(){var z,U;const{stats:t,uncommittedFiles:r,uncommittedEntitiesList:s,recentSimulations:a,visualEntitiesForSimulation:o,projectSlug:i,queueState:l,currentCommit:c}=He(),m=Le(),u=Ct(),{showToast:p}=Oa();gt({source:"dashboard"});const[h,f]=M(new Set),[g,y]=M(null),[x,b]=M(!1),[w,v]=M(!1),{lastLine:C,isCompleted:A}=kt(i,!!g),{simulatingEntity:S,scenarios:E,scenarioStatuses:N,allScenariosCaptured:k}=oe(()=>{var D,W;const O={simulatingEntity:null,scenarios:[],scenarioStatuses:[],allScenariosCaptured:!1};if(!g)return O;const _=o==null?void 0:o.find(G=>G.sha===g);if(!_)return O;const Y=(D=_.analyses)==null?void 0:D[0],Q=(Y==null?void 0:Y.scenarios)||[],K=((W=Y==null?void 0:Y.status)==null?void 0:W.scenarios)||[],ae=K.filter(G=>G.screenshotFinishedAt).length,J=Q.length>0&&ae===Q.length;return{simulatingEntity:_,scenarios:Q,scenarioStatuses:K,allScenariosCaptured:J}},[g,o]);te(()=>{(A||k)&&y(null)},[A,k]);const j=(z=c==null?void 0:c.metadata)==null?void 0:z.currentRun,T=new Set((j==null?void 0:j.currentEntityShas)||[]),P=new Set(l.jobs.flatMap(O=>O.entityShas||[])),R=new Set(((U=l.currentlyExecuting)==null?void 0:U.entityShas)||[]),I=s.filter(O=>O.entityType==="visual"||O.entityType==="library"),$=I.filter(O=>!T.has(O.sha)&&!P.has(O.sha)&&!R.has(O.sha)),L=()=>{if($.length===0){p("All entities are already queued or analyzing","info",3e3);return}const O=$.map(_=>_.sha);v(!0),p(`Starting analysis for ${$.length} entities...`,"info",3e3),m.submit({entityShas:O.join(",")},{method:"post",action:"/api/analyze"})};te(()=>{if(m.state==="idle"&&m.data){const O=m.data;O.success?(console.log("[Analyze All] Success:",O.message),p(`Analysis started for ${O.entityCount} entities in ${O.fileCount} files. Watch the logs for progress.`,"success",6e3),v(!1)):O.error&&(console.error("[Analyze All] Error:",O.error),p(`Error: ${O.error}`,"error",8e3),v(!1))}},[m.state,m.data,p]);const H=O=>{f(_=>{const Y=new Set(_);return Y.has(O)?Y.delete(O):Y.add(O),Y})},F=[{label:"Total Entities",value:t.totalEntities,iconType:"folder",link:"/files",color:"#005C75",tooltip:"In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested."},{label:"Analyzed Entities",value:t.entitiesWithAnalyses,iconType:"check",link:"/simulations",color:"#10B981",tooltip:"Entities that have been analyzed by CodeYam and have generated scenarios."},{label:"Visual Components",value:t.visualEntities,iconType:"image",link:"/files?entityType=visual",color:"#8B5CF6",tooltip:"React components and visual elements that can be rendered and captured as screenshots."},{label:"Library Functions",value:t.libraryEntities,iconType:"code-xml",link:"/files?entityType=library",color:"#0DBFE9",tooltip:"Reusable functions and utilities that can be independently tested."}];return n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12",children:[d("header",{className:"mb-8 flex justify-between items-center",children:[d("div",{className:"flex items-center gap-4",children:[n("img",{src:Mv,alt:"CodeYam",className:"h-3.5"}),n("span",{className:"text-gray-400 text-sm",children:"|"}),n("h1",{className:"text-sm font-mono font-normal text-gray-400 m-0",children:i?i.replace(/-/g," ").replace(/\b\w/g,O=>O.toUpperCase()):"Project"})]}),u.state==="loading"&&n("div",{className:"text-blue-600 text-sm font-medium animate-pulse",children:"🔄 Updating..."})]}),n("div",{className:"flex items-center justify-between gap-3",children:F.map((O,_)=>n(fe,{to:O.link,className:"flex-1 bg-white rounded-xl border border-gray-200 overflow-hidden flex transition-all hover:shadow-lg no-underline cursor-pointer",style:{borderLeft:`4px solid ${O.color}`},children:d("div",{className:"px-6 py-6 flex flex-col gap-3 flex-1",children:[d("div",{className:"flex md:justify-between md:items-start md:flex-row flex-col",children:[d("div",{className:"flex items-center gap-1.5 group relative",children:[n("span",{className:"text-xs text-gray-700 font-medium font-mono uppercase",children:O.label}),d("svg",{className:"w-3 h-3 text-gray-400",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:[n("circle",{cx:"12",cy:"12",r:"10",strokeWidth:"2"}),n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M12 16v-4m0-4h.01"})]}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:[O.tooltip,n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 sm:hidden md:flex",style:{color:O.color},children:"View All →"})]}),d("div",{className:"flex flex-col gap-2",children:[d("div",{className:"flex items-center gap-3",children:[d("div",{className:"rounded-lg p-2 leading-none shrink-0",style:{backgroundColor:`${O.color}15`},children:[O.iconType==="folder"&&n(jd,{size:20,style:{color:O.color}}),O.iconType==="check"&&n(_a,{size:20,style:{color:O.color}}),O.iconType==="image"&&n(er,{size:20,style:{color:O.color}}),O.iconType==="code-xml"&&n(Td,{size:20,style:{color:O.color}})]}),n("div",{className:"text-3xl font-semibold font-mono text-gray-900 leading-none",children:O.value.toLocaleString("en-US")})]}),n("div",{className:"text-xs font-medium transition-colors flex items-center gap-1 md:hidden",style:{color:O.color},children:"View All →"})]})]})},_))}),d("div",{className:"mt-12 grid gap-8 items-start",style:{gridTemplateColumns:"repeat(auto-fit, minmax(500px, 1fr))"},children:[d("section",{id:"uncommitted",className:"bg-white border border-gray-200 rounded-xl p-6",children:[d("div",{className:"flex justify-between items-start mb-5",children:[d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Uncommitted Changes"}),n("p",{className:"text-sm text-gray-500 m-0",children:r.length>0?`${r.length} file${r.length!==1?"s":""} with ${s.length} uncommitted entit${s.length!==1?"ies":"y"}`:"No uncommitted changes detected"})]}),I.length>0&&n("button",{onClick:L,disabled:m.state!=="idle"||w||$.length===0,className:"px-5 py-2.5 text-white border-none rounded-lg text-sm font-semibold cursor-pointer transition-all hover:-translate-y-px disabled:bg-gray-400 disabled:cursor-not-allowed disabled:translate-y-0",style:{backgroundColor:"#005C75"},onMouseEnter:O=>O.currentTarget.style.backgroundColor="#004560",onMouseLeave:O=>O.currentTarget.style.backgroundColor="#005C75",children:m.state!=="idle"||w?"Starting analysis...":$.length===0?"All Queued":"Analyze All"})]}),r.length>0?n("div",{className:"flex flex-col gap-3",children:r.map(([O,_])=>{const Y=h.has(O),Q=_.editedEntities||[];return d("div",{className:"bg-white border border-gray-200 border-l-4 rounded-lg overflow-hidden",style:{borderLeftColor:"#005C75"},children:[n("div",{className:"p-4 cursor-pointer select-none transition-colors hover:bg-gray-50",onClick:()=>H(O),role:"button",tabIndex:0,children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-gray-500 text-xs w-4 shrink-0",children:Y?"▼":"▶"}),d("svg",{width:"16",height:"20",viewBox:"0 0 12 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:"shrink-0",children:[d("g",{clipPath:"url(#clip0_784_10666)",children:[n("path",{d:"M0 2.55857C0 1.14551 1.14551 0 2.55857 0H8.73194L12 3.3616V13.4414C12 14.8545 10.8545 16 9.44143 16H2.55857C1.14551 16 0 14.8545 0 13.4414V2.55857Z",fill:"#DDDDFE"}),n("path",{d:"M8.72656 3.3307H11.9906L8.72656 0V3.3307Z",fill:"#306AFF"}),n("line",{x1:"1.8125",y1:"5.94825",x2:"10.0235",y2:"5.94825",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"8.82715",x2:"6.01207",y2:"8.82715",stroke:"#306AFF",strokeWidth:"1.27929"}),n("line",{x1:"1.8125",y1:"11.7061",x2:"10.0235",y2:"11.7061",stroke:"#306AFF",strokeWidth:"1.27929"})]}),n("defs",{children:n("clipPath",{id:"clip0_784_10666",children:n("rect",{width:"12",height:"16",fill:"white"})})})]}),d("div",{className:"flex-1 min-w-0",children:[n("span",{className:"font-normal text-gray-900 text-sm block truncate",children:O}),d("span",{className:"text-xs text-gray-500",children:[Q.length," entit",Q.length!==1?"ies":"y"]})]})]})}),Y&&n("div",{className:"border-t border-gray-200 bg-gray-50 p-3 flex flex-col gap-2",children:Q.length>0?Q.map(K=>{const ae=T.has(K.sha),J=P.has(K.sha)||R.has(K.sha);return d(fe,{to:`/entity/${K.sha}`,className:"flex items-center gap-4 p-4 bg-white border border-gray-200 rounded-lg no-underline transition-all hover:shadow-md hover:-translate-y-0.5",style:{borderColor:"inherit"},onMouseEnter:D=>D.currentTarget.style.borderColor="#005C75",onMouseLeave:D=>D.currentTarget.style.borderColor="inherit",children:[d("div",{className:"shrink-0 rounded-lg p-1.5 flex items-center justify-center",style:{backgroundColor:K.entityType==="visual"?"#8B5CF615":K.entityType==="library"?"#6366F1":"#EC4899"},children:[K.entityType==="visual"&&n(er,{size:16,style:{color:"#8B5CF6"}}),K.entityType==="library"&&n(Ji,{size:16,className:"text-white"}),K.entityType==="other"&&n(Md,{size:16,className:"text-white"})]}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2 mb-0.5",children:[n("div",{className:"font-semibold text-gray-900 text-sm",children:K.name}),K.entityType==="visual"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#8B5CF60D",color:"#8B5CF6"},children:"Visual"}),K.entityType==="library"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#0DBFE90D",color:"#0DBFE9"},children:"Library"}),K.entityType==="other"&&n("div",{className:"px-2 py-0.5 rounded-sm text-[10px] uppercase font-bold",style:{backgroundColor:"#EC48990D",color:"#EC4899"},children:"Other"})]}),K.description&&n("div",{className:"text-sm text-gray-500 mt-1 overflow-hidden text-ellipsis whitespace-nowrap",children:K.description})]}),d("div",{className:"flex items-center gap-2 shrink-0",children:[ae&&d("div",{className:"px-2 py-1 bg-pink-100 rounded text-xs text-pink-700 font-semibold flex items-center gap-1.5",children:[n(mt,{size:14,className:"animate-spin"}),"Analyzing..."]}),!ae&&J&&n("div",{className:"px-2 py-1 bg-purple-50 border border-purple-300 rounded text-xs text-purple-700 font-semibold",children:"⏳ Queued"}),!ae&&!J&&n("button",{onClick:D=>{D.preventDefault(),D.stopPropagation(),p(`Starting analysis for ${K.name}...`,"info",3e3),m.submit({entityShas:K.sha},{method:"post",action:"/api/analyze"})},disabled:m.state!=="idle",className:"px-3 py-1.5 text-white border-none rounded text-xs font-medium cursor-pointer transition-all disabled:bg-gray-400 disabled:cursor-not-allowed",style:{backgroundColor:"#005C75"},onMouseEnter:D=>D.currentTarget.style.backgroundColor="#004560",onMouseLeave:D=>D.currentTarget.style.backgroundColor="#005C75",children:"Analyze"})]})]},K.sha)}):n("div",{className:"text-sm text-gray-500 italic p-2",children:"No entity changes detected in this file"})})]},O)})}):d("div",{className:"py-12 px-6 text-center flex flex-col items-center rounded-lg min-h-50 justify-center border border-dashed",style:{backgroundColor:"#F2F7F8",borderColor:"#BBCCD3"},children:[n("div",{className:"mb-4 rounded-full flex items-center justify-center",style:{width:"48px",height:"48px",backgroundColor:"#E5EFF1"},children:d("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"#7A9BA5",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n("polyline",{points:"14 2 14 8 20 8"}),n("line",{x1:"12",y1:"18",x2:"12",y2:"12"}),n("line",{x1:"9",y1:"15",x2:"15",y2:"15"})]})}),n("p",{className:"text-sm font-medium m-0",style:{color:"#5A7380"},children:"No Uncommitted Changes."})]})]}),!g&&n(Tv,{recentSimulations:a}),g&&d("section",{className:"bg-white border border-gray-200 rounded-xl p-6",children:[n("div",{className:"flex justify-between items-start mb-5",children:d("div",{children:[n("h2",{className:"text-[22px] font-semibold text-gray-900 m-0 mb-1",children:"Recent Simulations"}),n("p",{className:"text-sm text-gray-500 m-0",children:a.length>0?`Latest ${a.length} captured screenshot${a.length!==1?"s":""}`:"No simulations captured yet"})]})}),g&&d("div",{className:"p-0 bg-white rounded-lg flex flex-col gap-0",children:[S&&n("div",{className:"p-4 rounded-t-lg",style:{backgroundColor:"#F0F5F8",borderBottom:"2px solid #005C75"},children:d("div",{className:"flex items-center gap-3",children:[n("span",{className:"text-[32px] leading-none",children:n(nt,{type:"visual"})}),d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"text-base font-bold mb-1",style:{color:"#005C75"},children:["Generating Simulations for ",S.name]}),n("div",{className:"text-[13px] text-gray-500 font-mono overflow-hidden text-ellipsis whitespace-nowrap",children:S.filePath})]})]})}),k?d("div",{className:"flex items-center gap-2 text-sm text-emerald-600 font-medium p-4 bg-emerald-50",children:[n("span",{className:"text-lg",children:"✅"}),d("span",{children:["Complete (",E.length," scenario",E.length!==1?"s":"",")"]})]}):C?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap font-mono text-xs",title:C,children:C}),i&&n("button",{onClick:()=>b(!0),className:"px-2 py-1.5 bg-gray-500 text-white border-none rounded-md text-[13px] font-medium cursor-pointer transition-all whitespace-nowrap self-start hover:bg-gray-600 hover:-translate-y-px",title:"View analysis logs",children:"📋 Logs"})]}):m.state!=="idle"?d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Initializing analysis..."})]}):d("div",{className:"flex items-center justify-between gap-1.5 text-sm font-medium p-4 bg-gray-50",style:{color:"#005C75"},children:[n(mt,{size:18,className:"animate-spin shrink-0"}),n("span",{className:"flex-1 overflow-hidden text-ellipsis whitespace-nowrap",children:"Starting analysis..."})]}),E.length>0&&n("div",{className:"flex gap-2 flex-wrap p-4 bg-white border-t border-gray-200",children:E.slice(0,8).map((O,_)=>{var W,G,ne;const Y=(W=S==null?void 0:S.analyses)==null?void 0:W[0],Q=Ps(O,Y==null?void 0:Y.status,void 0,g||void 0,void 0),K=(ne=(G=O.metadata)==null?void 0:G.screenshotPaths)==null?void 0:ne[0],ae=Q.isCaptured,J=Q.status==="capturing"||Q.status==="starting",D=Q.hasError;return ae?n(fe,{to:`/entity/${g}`,className:"w-20 h-15 border-2 border-gray-200 rounded overflow-hidden bg-gray-50 cursor-pointer transition-all flex items-center justify-center no-underline hover:border-blue-600 hover:scale-105 hover:shadow-md",children:n(Ge,{screenshotPath:K,alt:O.name,title:O.name,className:"max-w-full max-h-full object-contain object-center"})},_):D?n("div",{className:"w-20 h-15 border-2 border-solid border-red-300 rounded bg-red-50 flex flex-col items-center justify-center text-lg",title:Q.errorMessage||"Capture error",children:n("span",{className:"text-red-500",children:"⚠️"})},_):n("div",{className:"w-20 h-15 border-2 border-dashed border-gray-300 rounded bg-gray-50 flex items-center justify-center text-2xl",title:`${J?"Capturing":"Pending"} ${O.name}...`,children:n("span",{className:J?"animate-pulse":"text-gray-400",children:J?"⋯":"⏹️"})},_)})})]})]})]}),x&&i&&n(Ot,{projectSlug:i,onClose:()=>b(!1)})]})})}),Dv=Object.freeze(Object.defineProperty({__proto__:null,default:Rv,loader:Iv,meta:$v},Symbol.toStringTag,{value:"Module"})),ts=[{name:"Desktop",width:1440,height:900},{name:"Laptop",width:1024,height:768},{name:"Tablet",width:768,height:1024},{name:"Mobile",width:375,height:667}];function Ov(e){if(!e)return ts;const t=Object.entries(e).map(([s,a])=>({name:s,width:a.width,height:a.height})),r=new Set(t.map(s=>s.name));return[...t,...ts.filter(s=>!r.has(s.name))]}function Lv({featureName:e,editorStep:t,editorStepLabel:r,onContinue:s,onStartFresh:a,onReview:o}){const[i,l]=M("resume"),[c,m]=M(0),u=le(()=>{l("fresh-options"),m(0)},[]),p=le(x=>{x.key==="ArrowLeft"||x.key==="ArrowRight"||x.key==="Tab"?(x.preventDefault(),m(b=>b===0?1:0)):x.key==="Enter"&&(x.preventDefault(),i==="resume"?c===0?s():u():c===0?a():o())},[i,c,s,a,o,u]);te(()=>(window.addEventListener("keydown",p),()=>window.removeEventListener("keydown",p)),[p]);const h="flex-1 px-4 py-2 text-sm rounded transition-colors cursor-pointer",f="ring-2 ring-white/50",g="bg-[#005c75] text-white font-medium hover:bg-[#004d63]",y="bg-[#3d3d3d] text-[#d4d4d4] hover:bg-[#4d4d4d]";return n("div",{className:"flex items-center justify-center h-full bg-[#1e1e1e] text-[#d4d4d4]",children:n("div",{className:"max-w-md w-full mx-4 p-6 bg-[#252526] border border-[#3d3d3d] rounded-lg",children:i==="resume"?d(pe,{children:[n("h2",{className:"text-lg font-semibold mb-3 text-white",children:"Resume Previous Session?"}),n("p",{className:"text-sm text-[#999] mb-4",children:"An editor session is still in progress:"}),d("div",{className:"bg-[#1e1e1e] rounded p-3 mb-5 text-sm",children:[e&&d("div",{className:"mb-1",children:[n("span",{className:"text-[#999]",children:"Feature:"})," ",n("span",{className:"text-white",children:e})]}),t!=null&&r&&d("div",{children:[n("span",{className:"text-[#999]",children:"Step:"})," ",d("span",{className:"text-white",children:[t," (",r,")"]})]})]}),d("div",{className:"flex gap-3",children:[n("button",{onClick:s,className:`${h} ${g} ${c===0?f:""}`,children:"Continue Session"}),n("button",{onClick:u,className:`${h} ${y} ${c===1?f:""}`,children:"Start Over"})]})]}):d(pe,{children:[n("h2",{className:"text-lg font-semibold mb-3 text-white",children:"What would you like to do?"}),n("p",{className:"text-sm text-[#999] mb-5",children:"The previous session will be cleared."}),d("div",{className:"flex gap-3",children:[n("button",{onClick:a,className:`${h} ${g} ${c===0?f:""}`,children:"Build Next Feature"}),n("button",{onClick:o,className:`${h} ${y} ${c===1?f:""}`,children:"Review What's Built"})]})]})})})}function yo(e){const[t,r]=M(null),[s,a]=M(!1),o=le(()=>{e&&(a(!0),fetch(`/api/editor-test-results?testFile=${encodeURIComponent(e)}`).then(i=>i.json()).then(i=>{r(i),a(!1)}).catch(()=>{r({testFilePath:e,status:"error",testCases:[],errorMessage:"Failed to fetch test results"}),a(!1)}))},[e]);return te(()=>{e&&o()},[e,o]),{results:t,isRunning:s,runTests:o}}function Hn({imgSrc:e,name:t,isActive:r,onSelect:s}){return d("button",{onClick:s,className:"flex flex-col items-center gap-1 cursor-pointer group",title:t,children:[n("div",{className:`w-32 h-32 rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] ${r?"border-[#005c75] ring-1 ring-[#005c75]":"border-transparent hover:border-[#4d4d4d]"}`,children:e?n("img",{src:e,alt:t,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})})}),n("span",{className:`text-[10px] leading-tight text-center truncate w-32 ${r?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:t})]})}function na({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=yo(e);if(s&&!r)return d("div",{className:"px-2 pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-red-400",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"px-2 pt-1 space-y-0.5",children:[i.map(c=>{var u;const m=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-400":c.status==="failed"?"text-red-400":"text-gray-500"}`,children:m})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((p,h)=>n("div",{className:"pl-4 text-[9px] text-red-300/70 truncate max-w-full",title:p,children:p.split(`
400
- `)[0]},h)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#00a0c4] hover:text-[#00c4ee] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}function Qt({filePath:e}){return e?d("div",{className:"flex items-center gap-1 px-2 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(At,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function Fv({scenarios:e,projectRoot:t,activeScenarioId:r,onScenarioSelect:s,zoomComponent:a,onZoomChange:o,analyzedEntities:i=[],glossaryFunctions:l=[],activeAnalyzedScenarioId:c,onAnalyzedScenarioSelect:m,entityImports:u,pageFilePaths:p={}}){const{pageGroups:h,componentGroups:f}=oe(()=>{var k;const S=new Map,E=new Map;for(const j of e)if(j.componentName){const T=E.get(j.componentName)||[];T.push(j),E.set(j.componentName,T)}else if(no(j.url)){const T=(k=j.url)==null?void 0:k.match(/[?&]c=([^&]+)/),P=T?decodeURIComponent(T[1]):"Isolated",R=E.get(P)||[];R.push(j),E.set(P,R)}else{const T=Ke(j.url),P=S.get(T)||[];P.push(j),S.set(T,P)}const N=new Map([...E.entries()].sort(([j],[T])=>j.localeCompare(T)));return{pageGroups:S,componentGroups:N}},[e]),g=oe(()=>{const S=new Set((i||[]).filter(N=>N.entityType==="visual").map(N=>N.name)),E=new Map;for(const[N,k]of f)S.has(N)||E.set(N,k);return E},[f,i]),{visualEntities:y,libraryEntities:x}=oe(()=>{const S=i.filter(N=>N.entityType==="visual").sort((N,k)=>N.name.localeCompare(k.name)),E=i.filter(N=>N.entityType==="library"||N.entityType==="functionCall").sort((N,k)=>N.name.localeCompare(k.name));return{visualEntities:S,libraryEntities:E}},[i]),b=oe(()=>{const S=new Set(x.map(E=>E.name));return l.filter(E=>!S.has(E.name)).sort((E,N)=>E.name.localeCompare(N.name))},[l,x]),w=i.some(S=>S.isAnalyzing),v=be(null),C=be(0),A=le(()=>{v.current&&(C.current=v.current.scrollTop)},[]);if(te(()=>{v.current&&C.current>0&&(v.current.scrollTop=C.current)}),e.length===0&&i.length===0&&b.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No scenarios yet"}),n("p",{className:"text-xs",children:"Scenarios will appear here as Claude creates them alongside your code. Each scenario represents a different state of your app's data."})]})});if(a){const S=f.get(a)||[],E=new Set((u==null?void 0:u[a])||[]),N=E.size>0,k=N?y.filter(T=>E.has(T.name)):[],j=N?x.filter(T=>E.has(T.name)):[];return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-1",children:[d("button",{onClick:()=>o(void 0),className:"w-full flex items-center gap-2 px-3 py-1.5 text-xs text-gray-400 hover:text-white transition-colors cursor-pointer",children:[n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",className:"shrink-0",children:n("path",{d:"M7.5 9L4.5 6L7.5 3",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})}),"All scenarios"]}),n("div",{className:"px-3 py-1.5",children:n("span",{className:"text-xs font-semibold text-white uppercase tracking-wider",children:a})}),n("div",{className:"flex flex-wrap gap-2 px-2",children:S.length===0?n("div",{className:"px-3 py-2 text-xs text-gray-500",children:"No scenarios for this component"}):S.map(T=>n(Hn,{imgSrc:T.screenshotPath?`/api/editor-scenario-image/${T.id}.png${T.updatedAt?`?v=${encodeURIComponent(T.updatedAt)}`:""}`:null,name:T.name,isActive:T.id===r,onSelect:()=>s(T)},T.id))}),k.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),k.map(T=>d("div",{className:"mt-2",children:[n("div",{className:"flex items-center gap-2 px-2 py-1",children:n("button",{onClick:()=>o(T.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:T.name})}),n(Qt,{filePath:T.filePath,projectRoot:t}),(T.scenarios.length>0||T.pendingScenarios.length>0)&&n("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:T.scenarios.map(P=>n(Hn,{imgSrc:P.screenshotPath?`/api/screenshot/${P.screenshotPath}`:null,name:P.name,isActive:P.id===c,onSelect:()=>m==null?void 0:m({analysisId:T.analysisId,scenarioId:P.id,scenarioName:P.name,entitySha:T.sha,entityName:T.name})},P.id))})]},T.sha))]}),j.length>0&&d("div",{className:"pt-2 mt-1",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),j.map(T=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:T.name})}),n(Qt,{filePath:T.filePath,projectRoot:t}),T.testFile&&n(na,{testFile:T.testFile,entityName:T.name})]},T.sha))]})]})})}return n("div",{ref:v,onScroll:A,className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-3",children:[h.size>0&&d("div",{children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"})}),[...h.entries()].sort(([S],[E])=>S==="Home"?-1:E==="Home"?1:S.localeCompare(E)).map(([S,E])=>d("div",{className:"px-2 pt-1",children:[n("div",{className:"py-0.5",children:n("span",{className:"text-[11px] font-medium text-gray-400",children:S})}),p[S]&&n(Qt,{filePath:p[S],projectRoot:t}),n("div",{className:"flex flex-wrap gap-2 pt-1",children:E.map(N=>n(Hn,{imgSrc:N.screenshotPath?`/api/editor-scenario-image/${N.id}.png${N.updatedAt?`?v=${encodeURIComponent(N.updatedAt)}`:""}`:null,name:N.name,isActive:N.id===r&&!c,onSelect:()=>s(N)},N.id))})]},S))]}),g.size>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),[...g.entries()].map(([S,E])=>{var N;return d("div",{className:"mt-2",children:[n("div",{className:"flex items-center justify-between px-2 py-1",children:n("button",{onClick:()=>o(S),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:S})}),((N=E[0])==null?void 0:N.componentPath)&&n(Qt,{filePath:E[0].componentPath,projectRoot:t}),n("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:E.map(k=>n(Hn,{imgSrc:k.screenshotPath?`/api/editor-scenario-image/${k.id}.png${k.updatedAt?`?v=${encodeURIComponent(k.updatedAt)}`:""}`:null,name:k.name,isActive:k.id===r&&!c,onSelect:()=>s(k)},k.id))})]},S)})]}),y.length>0&&d("div",{className:"pt-2 mt-1 border-t border-[#3d3d3d]",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),w&&e.length===0&&i.every(S=>S.scenarioCount===0)&&n("span",{className:"ml-2 text-[10px] text-gray-500",children:"— Entities are being analyzed..."})]}),y.map(S=>d("div",{className:"mt-2",children:[d("div",{className:"flex items-center gap-2 px-2 py-1",children:[n("button",{onClick:()=>o(S.name),className:"text-[11px] font-medium text-gray-400 truncate cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:S.name}),S.isAnalyzing&&S.scenarioCount===0&&d("span",{className:"flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(Qt,{filePath:S.filePath,projectRoot:t}),(S.scenarios.length>0||S.pendingScenarios.length>0)&&d("div",{className:"flex flex-wrap gap-2 px-2 pt-1",children:[S.scenarios.map(E=>n(Hn,{imgSrc:E.screenshotPath?`/api/screenshot/${E.screenshotPath}`:null,name:E.name,isActive:E.id===c,onSelect:()=>m==null?void 0:m({analysisId:S.analysisId,scenarioId:E.id,scenarioName:E.name,entitySha:S.sha,entityName:S.name})},E.id)),S.pendingScenarios.map(E=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:E,children:E},E))]})]},S.sha))]}),(x.length>0||b.length>0)&&d("div",{className:`pt-2 mt-1 ${y.length>0?"":"border-t border-[#3d3d3d]"}`,children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),x.map(S=>d("div",{className:"mt-2",children:[d("div",{className:"px-2 py-1",children:[n("span",{className:"text-[11px] font-medium text-gray-300",children:S.name}),S.isAnalyzing&&S.scenarioCount===0&&d("span",{className:"ml-2 inline-flex items-center gap-1.5 text-[10px] text-gray-400",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#005c75] animate-pulse"}),"Analyzing..."]})]}),n(Qt,{filePath:S.filePath,projectRoot:t}),S.testFile?n(na,{testFile:S.testFile,entityName:S.name}):n("div",{className:"px-2 pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},S.sha)),b.map(S=>d("div",{className:"mt-2",children:[n("div",{className:"px-2 py-1",children:n("span",{className:"text-[11px] font-medium text-gray-300",children:S.name})}),n(Qt,{filePath:S.filePath,projectRoot:t}),n(na,{testFile:S.testFile,entityName:S.name})]},S.name))]})]})})}const Si=120;function Fc({text:e,theme:t}){const[r,s]=M(!1),a=e.length>Si,o=a&&!r?e.slice(0,Si)+"…":e,i=t==="light";return d("div",{className:`px-4 py-2 ${i?"border-b border-gray-200 bg-gray-50":"border-b border-[#3d3d3d] bg-[#252525]"}`,children:[n("span",{className:"text-[9px] font-semibold uppercase tracking-wider text-gray-500",children:"User Prompt"}),d("p",{className:`text-[11px] mt-0.5 mb-0 leading-relaxed ${i?"text-gray-600":"text-gray-400"}`,children:[o,a&&n("button",{onClick:()=>s(!r),className:`ml-1 text-[11px] font-medium bg-transparent border-none p-0 cursor-pointer ${i?"text-blue-500 hover:text-blue-700":"text-[#00a0c4] hover:text-[#00c0e8]"}`,children:r?"Show less":"Read more…"})]})]})}function ki({status:e}){const t={new:{label:"New",bg:"bg-green-900/40",text:"text-green-400",border:"border-green-700/50"},edited:{label:"Edited",bg:"bg-blue-900/40",text:"text-blue-400",border:"border-blue-700/50"},impacted:{label:"Impacted",bg:"bg-amber-900/40",text:"text-amber-400",border:"border-amber-700/50"}}[e.status];return n("span",{className:`${t.bg} ${t.text} ${t.border} border text-[8px] font-bold px-1 py-0 rounded-full uppercase tracking-wider`,children:t.label})}function zv({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=yo(e);if(s&&!r)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#00a0c4] animate-pulse"}),n("span",{className:"text-[10px] text-gray-500",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-400",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[i.map(c=>{var u;const m=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-400 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-400 text-[10px]",children:"✗"}):n("span",{className:"text-gray-500 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-400":c.status==="failed"?"text-red-400":"text-gray-500"}`,children:m})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((p,h)=>n("div",{className:"pl-4 text-[9px] text-red-400/70 truncate max-w-full",title:p,children:p.split(`
401
- `)[0]},h)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#00a0c4] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}const Bv={added:"text-green-400",untracked:"text-green-400",modified:"text-blue-400",renamed:"text-purple-400"};function Yv({files:e}){return d("div",{className:"border-t border-[#3d3d3d] pt-2 mt-1",children:[d("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",e.length,")"]}),n("div",{className:"mt-1 space-y-0.5 max-h-[150px] overflow-auto",children:e.map(t=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${Bv[t.status]||"text-gray-500"}`,children:t.status==="added"||t.status==="untracked"?"A":t.status==="modified"?"M":t.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-400 truncate font-mono",children:t.path})]},t.path))})]})}const Uv={feature:{label:"Feature",color:"bg-[#005c75]"},fix:{label:"Fix",color:"bg-amber-700"},refactor:{label:"Refactor",color:"bg-purple-700"},scaffold:{label:"Scaffold",color:"bg-green-700"},data:{label:"Data",color:"bg-blue-700"},milestone:{label:"Milestone",color:"bg-yellow-600"}};function Wv(e){try{return new Date(e).toLocaleTimeString([],{hour:"2-digit",minute:"2-digit"})}catch{return""}}function Jv(e){try{return new Date(e+"T00:00:00").toLocaleDateString([],{weekday:"long",month:"long",day:"numeric"})}catch{return e}}const Hv=[{value:"1d",label:"1 Day"},{value:"3d",label:"3 Days"},{value:"7d",label:"1 Week"},{value:"30d",label:"1 Month"}];function Vv({entries:e,onScreenshotClick:t}){const[r,s]=M(!1),[a,o]=M("7d"),i=oe(()=>z0(e,a),[e,a]);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("button",{onClick:()=>s(!r),className:"w-full flex items-center justify-between px-3 py-2.5 cursor-pointer bg-transparent border-none text-left hover:bg-[#333] transition-colors",children:[n("span",{className:"text-xs font-semibold text-gray-400 uppercase tracking-wider",children:"Timeframe Summary"}),n("span",{className:`text-gray-500 text-[10px] transition-transform ${r?"rotate-180":""}`,children:"▼"})]}),r&&d("div",{className:"px-3 pb-3 space-y-3 border-t border-[#3d3d3d]",children:[n("div",{className:"flex gap-1 pt-2.5",children:Hv.map(l=>n("button",{onClick:()=>o(l.value),className:`px-2.5 py-1 text-[10px] font-medium rounded transition-colors cursor-pointer border ${a===l.value?"bg-[#005c75] text-white border-[#005c75]":"bg-transparent text-gray-400 border-[#4d4d4d] hover:text-white hover:border-[#005c75]"}`,children:l.label},l.value))}),d("div",{className:"flex items-center gap-3 text-[11px] text-gray-400",children:[d("span",{children:[n("span",{className:"text-white font-medium",children:i.commitCount})," ",i.commitCount===1?"commit":"commits"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.totalScenarios})," ",i.totalScenarios===1?"scenario changed":"scenarios changed"]}),n("span",{className:"text-[#3d3d3d]",children:"|"}),d("span",{children:[n("span",{className:"text-white font-medium",children:i.entryCount})," ",i.entryCount===1?"entry":"entries"]})]}),i.totalScenarios===0?n("p",{className:"text-[11px] text-gray-500 italic m-0",children:"No scenario changes in this period."}):d("div",{className:"space-y-3",children:[i.appScenarios.length>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),i.appScenarios.map(l=>n(Ei,{scenario:l,onScreenshotClick:t},l.name))]}),i.componentGroups.size>0&&d("div",{className:"space-y-2",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),[...i.componentGroups.entries()].sort(([l],[c])=>l.localeCompare(c)).map(([l,c])=>d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:l}),c.map(m=>n(Ei,{scenario:m,onScreenshotClick:t},m.name))]},l))]})]})]})]})}function Ei({scenario:e,onScreenshotClick:t}){const r=e.name.indexOf(" - "),s=r!==-1?e.name.slice(r+3):e.name;return d("div",{className:"pl-2",children:[n("span",{className:"text-[10px] text-gray-500 block mb-1",children:s}),n("div",{className:"flex items-center gap-1 overflow-x-auto",children:e.screenshots.map((a,o)=>d("div",{className:"flex items-center shrink-0",children:[o>0&&n("span",{className:"text-[8px] text-gray-600 mx-0.5",children:"→"}),n("button",{type:"button",className:"w-16 h-16 rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",title:`${e.name} (${new Date(a.time).toLocaleDateString()})`,onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,commitSha:null,commitMessage:null,scenarioName:e.name}),children:n("img",{src:`/api/editor-journal-image/${a.path.replace("screenshots/","")}`,alt:e.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})})]},a.path))})]})}function Gv({isActive:e,onScreenshotClick:t,glossaryFunctions:r=[]}){const[s,a]=M([]),[o,i]=M(!0),[l,c]=M(new Set),m=le(h=>{c(f=>{const g=new Set(f);return g.has(h)?g.delete(h):g.add(h),g})},[]),u=le(async()=>{try{const h=await fetch("/api/editor-journal");if(h.ok){const f=await h.json();a(f.entries||[])}}catch{}finally{i(!1)}},[]);if(te(()=>{u()},[u]),te(()=>{e&&u()},[e,u]),te(()=>{if(!e)return;const h=setInterval(()=>void u(),5e3);return()=>clearInterval(h)},[e,u]),o)return n("div",{className:"flex-1 flex items-center justify-center",children:n("span",{className:"text-gray-500 text-sm",children:"Loading journal..."})});if(s.length===0)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"text-center text-gray-500 px-8",children:[n("p",{className:"text-sm font-medium mb-2",children:"No journal entries yet"}),n("p",{className:"text-xs",children:"Journal entries will appear as you build. Claude records features, screenshots, and commits as the project evolves."})]})});const p=B0(s);return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-3 space-y-4",children:[n(Vv,{entries:s,onScreenshotClick:t}),[...p.entries()].map(([h,f])=>d("div",{children:[n("div",{className:"px-3 py-1.5 sticky top-0 bg-[#1e1e1e] z-10",children:n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:Jv(h)})}),n("div",{className:"space-y-2",children:f.map((g,y)=>{const x=Uv[g.type]||{label:g.type,color:"bg-gray-600"},b=`${g.time}-${y}`,w=l.has(b);return d("div",{className:"bg-[#2d2d2d] rounded-lg overflow-hidden",children:[d("div",{className:`p-3 space-y-2 ${w?"":"max-h-[300px] overflow-y-auto"}`,children:[n("div",{className:"flex items-start gap-2 cursor-pointer",onClick:()=>m(b),children:d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-2",children:[n("span",{className:"text-sm font-medium text-white truncate",children:g.title}),n("span",{className:`${x.color} text-white text-[9px] font-bold px-1.5 py-0.5 rounded uppercase tracking-wider shrink-0`,children:x.label})]}),n("span",{className:"text-[10px] text-gray-500",children:Wv(g.time)}),g.featureName&&n("span",{className:"text-[10px] text-gray-500 italic truncate",title:g.featureName,children:g.featureName})]})}),g.userPrompt&&n(Fc,{text:g.userPrompt,theme:"dark"}),n("p",{className:"text-xs text-gray-400 leading-relaxed",children:g.description}),g.screenshot&&n("button",{type:"button",className:"rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] flex items-center justify-center p-1 cursor-pointer transition-colors w-full",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:g.title}),children:n("img",{src:`/api/editor-journal-image/${g.screenshot.replace("screenshots/","")}`,alt:g.title,className:"max-w-full max-h-full object-contain",loading:"lazy"})}),g.scenarioScreenshots&&g.scenarioScreenshots.length>0&&(()=>{const v=Y0(g.scenarioScreenshots),C=g.entityChangeStatus,A=v.filter(([j])=>j==="App").flatMap(([,j])=>j),S=v.filter(([j])=>j!=="App"),E=new Map;for(const j of A){const T=Ke(j.url??null),P=E.get(T)||[];P.push(j),E.set(T,P)}const N=[...E.entries()],k=j=>n("button",{type:"button",className:"w-[4.5rem] h-[4.5rem] rounded overflow-hidden border border-[#3d3d3d] hover:border-[#00a0c4] bg-[#1e1e1e] shrink-0 flex items-center justify-center cursor-pointer transition-colors",onClick:()=>t==null?void 0:t({screenshotUrl:`/api/editor-journal-image/${j.path.replace("screenshots/","")}`,commitSha:g.commitSha,commitMessage:g.commitMessage,scenarioName:j.name}),children:n("img",{src:`/api/editor-journal-image/${j.path.replace("screenshots/","")}`,alt:j.name,title:j.name,className:"max-w-full max-h-full object-contain",loading:"lazy"})},j.path);return d("div",{className:"space-y-2",children:[N.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),N.map(([j,T])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:j}),(C==null?void 0:C[j])&&n(ki,{status:C[j]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:T.map(k)})]},j))]}),S.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),S.map(([j,T])=>d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] font-medium text-gray-400",children:j}),(C==null?void 0:C[j])&&n(ki,{status:C[j]})]}),n("div",{className:"flex flex-wrap gap-1 mt-0.5",children:T.map(k)})]},j))]})]})})(),r.length>0&&d("div",{className:"space-y-1.5",children:[n("span",{className:"text-[10px] font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"}),n("div",{className:"space-y-2",children:r.map(v=>d("div",{children:[n("span",{className:"text-[11px] font-medium text-gray-200",children:v.name}),n("span",{className:"text-[9px] text-gray-500 truncate block",children:v.filePath}),v.testFile?n(zv,{testFile:v.testFile,entityName:v.name}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-500",children:"No test file"})})]},v.name))})]}),g.commitSha&&d("div",{className:"flex items-center gap-1.5 text-[10px]",children:[n("span",{className:"font-mono text-[#00a0c4] bg-[#00a0c4]/10 px-1.5 py-0.5 rounded",children:g.commitSha.slice(0,7)}),n("span",{className:"text-gray-500 truncate",children:g.commitMessage})]}),w&&g.modifiedFiles&&g.modifiedFiles.length>0&&n(Yv,{files:g.modifiedFiles})]}),d("button",{onClick:()=>m(b),className:"w-full py-1.5 text-[10px] text-gray-500 hover:text-gray-300 border-t border-[#3d3d3d] transition-colors cursor-pointer",children:["——— ",w?"Collapse":"Expand"," ———"]})]},b)})})]},h))]})})}const _i=()=>n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",className:"text-gray-500 shrink-0",children:n("path",{d:"M4.5 3L7.5 6L4.5 9",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})});function qv(e,t){if(e.length<=t)return e;const r=t-2;return[e[0],"ellipsis",...e.slice(e.length-r)]}function Kv({items:e,onNavigate:t}){if(e.length===0)return null;const r=qv(e,4);return n("nav",{className:"flex items-center gap-1 text-xs min-w-0",children:r.map((s,a)=>{if(s==="ellipsis")return d("span",{className:"flex items-center gap-1",children:[n(_i,{}),n("span",{className:"text-gray-500",children:"..."})]},"ellipsis");const o=a===r.length-1;return d("span",{className:"flex items-center gap-1 min-w-0",children:[a>0&&n(_i,{}),o?n("span",{className:"text-white font-medium truncate",children:s.name}):n("button",{onClick:()=>t(s.componentName),className:"text-gray-400 hover:text-white transition-colors cursor-pointer bg-transparent border-none p-0 truncate",children:s.name})]},s.componentName||"app")})})}function Vn({imgSrc:e,name:t,isActive:r,onSelect:s}){return d("button",{onClick:s,className:"flex flex-col items-center gap-1 cursor-pointer group w-full",title:t,children:[n("div",{className:`w-full aspect-square rounded overflow-hidden border-2 transition-all bg-[#1a1a1a] ${r?"border-[#005c75] ring-1 ring-[#005c75]":"border-transparent hover:border-[#4d4d4d]"}`,children:e?n("img",{src:e,alt:t,className:"w-full h-full object-contain",loading:"lazy"}):n("div",{className:"w-full h-full bg-[#1a1a1a] flex items-center justify-center",children:n("span",{className:"text-[8px] text-gray-600",children:"No img"})})}),n("span",{className:`text-[10px] leading-tight text-center truncate w-full ${r?"text-white":"text-gray-500 group-hover:text-gray-300"}`,children:t})]})}function Ir({filePath:e}){return e?d("div",{className:"flex items-center gap-1 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-500 hover:text-gray-300 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(At,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-500 hover:text-gray-300 transition-colors"})]}):null}function Qv({hasProject:e,scenarios:t,analyzedEntities:r,glossaryFunctions:s=[],glossaryEntries:a=[],projectRoot:o,activeScenarioId:i,onScenarioSelect:l,onAnalyzedScenarioSelect:c,onSwitchToBuild:m,zoomComponent:u,onZoomChange:p,entityImports:h,pageFilePaths:f={},projectTitle:g,projectDescription:y,breadcrumbItems:x=[]}){const{pageGroups:b,componentGroups:w}=oe(()=>{var P;const k=new Map,j=new Map;for(const R of t)if(R.componentName){const I=j.get(R.componentName)||[];I.push(R),j.set(R.componentName,I)}else if(no(R.url)){const I=(P=R.url)==null?void 0:P.match(/[?&]c=([^&]+)/),$=I?decodeURIComponent(I[1]):"Isolated",L=j.get($)||[];L.push(R),j.set($,L)}else{const I=Ke(R.url),$=k.get(I)||[];$.push(R),k.set(I,$)}const T=new Map([...j.entries()].sort(([R],[I])=>R.localeCompare(I)));return{pageGroups:k,componentGroups:T}},[t]),v=oe(()=>r.filter(k=>k.entityType==="visual").sort((k,j)=>k.name.localeCompare(j.name)),[r]),C=oe(()=>{const k=new Map;for(const j of s)k.set(j.name,j);return k},[s]),A=be(null),S=be(0),E=le(()=>{A.current&&(S.current=A.current.scrollTop)},[]);if(te(()=>{A.current&&S.current>0&&(A.current.scrollTop=S.current)}),!e)return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"flex flex-col items-center gap-4",children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:"Ready to build something?"}),n("button",{onClick:m,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})});if(!(t.length>0||v.length>0))return n("div",{className:"flex-1 flex items-center justify-center",children:d("div",{className:"flex flex-col items-center gap-4 px-8 text-center",children:[g?d(pe,{children:[n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:g}),y&&n("p",{className:"text-sm text-gray-400 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:y})]}):n("h2",{className:"text-lg font-medium text-white font-['IBM_Plex_Sans'] m-0",children:"Your project is ready"}),n("p",{className:"text-sm text-gray-400 m-0 font-['IBM_Plex_Sans'] leading-relaxed",children:"Describe what you want to build in the Chat and your pages and components will appear here."}),n("button",{onClick:m,className:"px-6 py-3 bg-[#005c75] text-white text-sm font-medium rounded-lg hover:bg-[#004d63] transition-colors cursor-pointer",children:"Start Building"})]})});if(u){const k=b.get(u)||[],j=w.get(u)||[],T=v.find(_=>_.name===u),P=C.get(u),R=[...k,...j],I=new Set((h==null?void 0:h[u])||[]),$=I.size>0,L=$?[...w.entries()].filter(([_])=>I.has(_)):[],H=$?v.filter(_=>I.has(_.name)&&!L.some(([Y])=>Y===_.name)):[],F=$?a.filter(_=>I.has(_.name)&&_.returnType!=="JSX.Element"&&_.returnType!=="React.ReactNode").map(_=>({name:_.name,filePath:_.filePath,description:_.description||"",testFile:_.testFile,feature:_.feature})):[],z=L.length>0||H.length>0,U=F.length>0,O=z||U;return n("div",{className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-3",children:[n(Kv,{items:x,onNavigate:p}),d("div",{children:[n("h2",{className:"text-sm font-semibold text-white m-0 font-['IBM_Plex_Sans'] uppercase tracking-wider",children:u}),(()=>{const _=(P==null?void 0:P.filePath)||(T==null?void 0:T.filePath)||f[u];return _?n(Ir,{filePath:_,projectRoot:o}):null})()]}),R.length>0&&n("div",{className:"grid grid-cols-3 gap-2",children:R.map(_=>n(Vn,{imgSrc:_.screenshotPath?`/api/editor-scenario-image/${_.id}.png${_.updatedAt?`?v=${encodeURIComponent(_.updatedAt)}`:""}`:null,name:_.name,isActive:_.id===i,onSelect:()=>l(_)},_.id))}),T&&(T.scenarios.length>0||T.pendingScenarios.length>0)&&d("div",{className:"grid grid-cols-3 gap-2",children:[T.scenarios.map(_=>n(Vn,{imgSrc:_.screenshotPath?`/api/screenshot/${_.screenshotPath}`:null,name:_.name,isActive:!1,onSelect:()=>c({analysisId:T.analysisId,scenarioId:_.id,scenarioName:_.name,entitySha:T.sha,entityName:T.name})},_.id)),T.pendingScenarios.map(_=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:_,children:_},_))]}),P&&d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:"text-[10px] text-gray-500",children:"Tests:"}),n(Ir,{filePath:P.testFile,projectRoot:o})]}),R.length===0&&!T&&!P&&n("div",{className:"text-xs text-gray-500",children:"No scenarios for this entity"}),O&&d("div",{className:"pt-3 mt-2 border-t border-[#3d3d3d] space-y-3",children:[z&&d("div",{children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"}),L.map(([_,Y])=>d("div",{className:"mt-3",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>p(_),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:_})}),Y.length>0&&n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:Y.map(Q=>n(Vn,{imgSrc:Q.screenshotPath?`/api/editor-scenario-image/${Q.id}.png${Q.updatedAt?`?v=${encodeURIComponent(Q.updatedAt)}`:""}`:null,name:Q.name,isActive:Q.id===i,onSelect:()=>l(Q)},Q.id))})]},_)),H.map(_=>d("div",{className:"mt-3",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>p(_.name),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:_.name})}),(_.scenarios.length>0||_.pendingScenarios.length>0)&&d("div",{className:"grid grid-cols-3 gap-2 pt-1",children:[_.scenarios.map(Y=>n(Vn,{imgSrc:Y.screenshotPath?`/api/screenshot/${Y.screenshotPath}`:null,name:Y.name,isActive:!1,onSelect:()=>c({analysisId:_.analysisId,scenarioId:Y.id,scenarioName:Y.name,entitySha:_.sha,entityName:_.name})},Y.id)),_.pendingScenarios.map(Y=>n("div",{className:"px-2.5 py-1 bg-[#2a2a2a] text-gray-400 text-[10px] rounded-full",title:Y,children:Y},Y))]})]},_.sha))]}),U&&d("div",{children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"}),F.map(_=>d("div",{className:"mt-2",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>p(_.name),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:_.name})}),n(Ir,{filePath:_.filePath,projectRoot:o}),_.testFile&&d("div",{className:"flex items-center gap-1.5 mt-0.5",children:[n("span",{className:"text-[9px] text-gray-600",children:"test:"}),n("span",{className:"text-[9px] text-gray-500 truncate",children:_.testFile})]})]},_.name))]})]})]})})}return n("div",{ref:A,onScroll:E,className:"flex-1 overflow-auto",children:d("div",{className:"p-4 space-y-4",children:[g&&d("div",{children:[n("h2",{className:"text-base font-semibold text-white m-0 font-['IBM_Plex_Sans']",children:g}),y&&n("p",{className:"text-xs text-gray-400 m-0 mt-1 font-['IBM_Plex_Sans'] leading-relaxed",children:y})]}),b.size>0&&d("div",{children:[d("div",{className:"flex items-center justify-between",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"}),n("button",{onClick:m,className:"px-2.5 py-1 text-[10px] font-medium text-gray-400 bg-[#2a2a2a] border border-[#4d4d4d] rounded hover:bg-[#333] hover:text-white hover:border-[#005c75] transition-colors cursor-pointer",children:"+ New Page"})]}),d("p",{className:"text-[11px] text-gray-500 m-0 mt-1.5 font-['IBM_Plex_Sans'] leading-relaxed",children:["Select a page scenario below and switch to"," ",n("button",{onClick:m,className:"text-[#00a0c4] hover:text-[#00c4eb] bg-transparent border-none p-0 cursor-pointer underline font-inherit text-inherit",children:"Build"})," ","to change or enhance an existing page or"," ",n("button",{onClick:m,className:"text-[#00a0c4] hover:text-[#00c4eb] bg-transparent border-none p-0 cursor-pointer underline font-inherit text-inherit",children:"create a new page"})]}),[...b.entries()].sort(([k],[j])=>k==="Home"?-1:j==="Home"?1:k.localeCompare(j)).map(([k,j])=>d("div",{className:"mt-2",children:[n("div",{className:"py-1",children:n("button",{onClick:()=>p(k),className:"text-[11px] font-medium text-gray-400 cursor-pointer hover:text-white transition-colors bg-transparent border-none p-0",children:k})}),f[k]&&n(Ir,{filePath:f[k],projectRoot:o}),n("div",{className:"grid grid-cols-3 gap-2 pt-1",children:j.map(T=>n(Vn,{imgSrc:T.screenshotPath?`/api/editor-scenario-image/${T.id}.png${T.updatedAt?`?v=${encodeURIComponent(T.updatedAt)}`:""}`:null,name:T.name,isActive:T.id===i,onSelect:()=>l(T)},T.id))})]},k))]})]})})}const Ai={new:0,edited:1,impacted:2};function Pi({status:e,onClick:t}){const r={new:{label:"New",bg:"bg-green-100",text:"text-green-700",border:"border-green-200"},edited:{label:"Edited",bg:"bg-blue-100",text:"text-blue-700",border:"border-blue-200"},impacted:{label:"Impacted",bg:"bg-amber-100",text:"text-amber-700",border:"border-amber-200"}}[e.status],s=t&&(e.status==="edited"||e.status==="impacted");return n("button",{onClick:s?t:void 0,className:`${r.bg} ${r.text} ${r.border} border text-[9px] font-bold px-1.5 py-0.5 rounded-full uppercase tracking-wider shrink-0 ${s?"cursor-pointer hover:opacity-80 transition-opacity":"cursor-default"}`,children:r.label})}function ji({filePath:e}){const[t,r]=M(null),[s,a]=M(!0),[o,i]=M(null);return te(()=>{import("react-diff-viewer-continued").then(l=>{i(()=>l.default)})},[]),te(()=>{a(!0),fetch(`/api/editor-file-diff?path=${encodeURIComponent(e)}`).then(l=>l.json()).then(l=>{r({oldContent:l.oldContent,newContent:l.newContent})}).catch(()=>{r(null)}).finally(()=>a(!1))},[e]),s?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Loading diff..."}):!t||!o?n("div",{className:"p-2 text-[10px] text-gray-400",children:"Could not load diff"}):n("div",{className:"mt-2 border border-gray-200 rounded-lg overflow-hidden max-h-[300px] overflow-auto text-xs",children:n(o,{oldValue:t.oldContent,newValue:t.newContent,splitView:!1,useDarkTheme:!1,showDiffOnly:!0,styles:{contentText:{fontSize:"11px",lineHeight:"1.4"},line:{padding:"1px 8px",fontSize:"11px"}}})})}function Ti({impactedBy:e,changedEntities:t}){return n("div",{className:"mt-2 bg-amber-50 border border-amber-200 rounded-lg p-2.5",children:e&&e.length>0?d(pe,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Re-captured because these dependencies changed"}),n("ul",{className:"mt-1.5 space-y-1",children:e.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.changeType==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.changeType==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name}),n("span",{className:"text-[9px] text-amber-500 truncate",children:r.filePath})]},r.filePath))})]}):t&&t.length>0?d(pe,{children:[n("span",{className:"text-[10px] font-semibold text-amber-700 uppercase tracking-wider",children:"Unchanged — these entities were modified in this session"}),n("ul",{className:"mt-1.5 space-y-1",children:t.map(r=>d("li",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold px-1 py-0 rounded-full uppercase tracking-wider border ${r.status==="new"?"bg-green-100 text-green-700 border-green-200":"bg-blue-100 text-blue-700 border-blue-200"}`,children:r.status==="new"?"New":"Edited"}),n("span",{className:"text-[11px] font-medium text-amber-800",children:r.name})]},r.name))})]}):n("span",{className:"text-[10px] text-amber-600",children:"This component was re-captured because a dependency changed"})})}function Mi({scenarioId:e,name:t,isActive:r,onSelect:s,updatedAt:a}){const[o,i]=M(!1),l=be(null);te(()=>{i(!1)},[e]),te(()=>{r&&l.current&&l.current.scrollIntoView({block:"nearest",behavior:"smooth"})},[r]);const c=`/api/editor-scenario-image/${e}.png${a?`?v=${encodeURIComponent(a)}`:""}`;return d("button",{ref:l,onClick:s,className:"flex flex-col items-center gap-1.5 cursor-pointer group",title:t,children:[n("div",{className:`w-32 h-32 rounded-lg overflow-hidden border-2 transition-all ${r?"border-[#0ea5e9] ring-2 ring-[#0ea5e9]/40 shadow-lg shadow-[#0ea5e9]/20":"border-gray-200 hover:border-gray-400 shadow-sm"}`,children:o?n("div",{className:"w-full h-full bg-gray-100 flex items-center justify-center",children:n("span",{className:"text-[9px] text-gray-400",children:"No preview"})}):n("img",{src:c,alt:t,className:"w-full h-full object-contain bg-white",loading:"lazy",onError:()=>i(!0)})}),n("span",{className:`text-[11px] leading-tight text-center truncate w-32 font-medium ${r?"text-gray-900":"text-gray-600 group-hover:text-gray-900"}`,children:t})]})}function Zv({filePath:e}){return e?d("div",{className:"flex items-center gap-1 mt-0.5",children:[d("a",{href:`/api/editor-file?path=${encodeURIComponent(e)}`,target:"_blank",rel:"noopener noreferrer",title:"Open file",className:"flex items-center gap-1 text-gray-400 hover:text-gray-600 transition-colors min-w-0",children:[n("span",{className:"text-[9px] truncate",children:e}),n("svg",{className:"shrink-0",width:"10",height:"10",viewBox:"0 0 12 12",fill:"none",children:n("path",{d:"M4.5 1.5H2.5C1.95 1.5 1.5 1.95 1.5 2.5V9.5C1.5 10.05 1.95 10.5 2.5 10.5H9.5C10.05 10.5 10.5 10.05 10.5 9.5V7.5M7.5 1.5H10.5M10.5 1.5V4.5M10.5 1.5L5 7",stroke:"currentColor",strokeWidth:"1.2",strokeLinecap:"round",strokeLinejoin:"round"})})]}),n(At,{content:e,icon:!0,iconSize:10,className:"shrink-0 text-gray-400 hover:text-gray-600 transition-colors"})]}):null}function Xv({testFile:e,entityName:t}){const{results:r,isRunning:s,runTests:a}=yo(e);if(s&&!r)return d("div",{className:"pt-1 flex items-center gap-1.5",children:[n("span",{className:"w-1.5 h-1.5 rounded-full bg-[#0ea5e9] animate-pulse"}),n("span",{className:"text-[10px] text-gray-400",children:"Running tests..."})]});if(!r)return null;if(r.status==="error")return n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-red-500",children:r.errorMessage})});const o=t?r.testCases.filter(c=>c.fullName.startsWith(t)):r.testCases,i=o.length>0?o:r.testCases;if(i.length===0)return null;const l=t?`${t} > `:"";return d("div",{className:"pt-1 space-y-0.5",children:[i.map(c=>{var u;const m=l&&c.fullName.startsWith(l)?c.fullName.slice(l.length):c.fullName;return d("div",{children:[d("div",{className:"flex items-center gap-1.5",children:[c.status==="passed"?n("span",{className:"text-green-600 text-[10px]",children:"✓"}):c.status==="failed"?n("span",{className:"text-red-500 text-[10px]",children:"✗"}):n("span",{className:"text-gray-400 text-[10px]",children:"—"}),n("span",{className:`text-[10px] ${c.status==="passed"?"text-green-600":c.status==="failed"?"text-red-500":"text-gray-400"}`,children:m})]}),c.status==="failed"&&((u=c.failureMessages)==null?void 0:u.map((p,h)=>n("div",{className:"pl-4 text-[9px] text-red-400 truncate max-w-full",title:p,children:p.split(`
402
- `)[0]},h)))]},c.fullName)}),n("button",{onClick:a,disabled:s,className:"mt-1 text-[10px] text-[#0ea5e9] hover:text-[#38bdf8] transition-colors cursor-pointer disabled:opacity-50 bg-transparent border-none p-0",children:s?"Running...":"Re-run"})]})}function $i(e){const t=e.indexOf(" - ");return t!==-1?e.slice(t+3):e}function Ii(e,t){return!t||Object.keys(t).length===0?e:[...e].sort(([r],[s])=>{var l,c;const a=((l=t[r])==null?void 0:l.status)||"impacted",o=((c=t[s])==null?void 0:c.status)||"impacted",i=(Ai[a]??2)-(Ai[o]??2);return i!==0?i:r.localeCompare(s)})}function eN({scenarios:e,allScenarios:t=[],glossaryFunctions:r=[],projectRoot:s,activeScenarioId:a,onScenarioSelect:o,onClose:i,entityChangeStatus:l={},modifiedFiles:c=[],featureName:m,userPrompt:u}){const p=oe(()=>{if(t.length===0||Object.keys(l).length===0)return e;const N=new Set(e.map(j=>j.id)),k=t.filter(j=>{var P;if(N.has(j.id))return!1;const T=j.componentName||Ke(j.url);return((P=l[T])==null?void 0:P.status)==="impacted"});return k.length===0?e:[...e,...k]},[e,t,l]),h=oe(()=>Object.entries(l).filter(([,N])=>N.status==="new"||N.status==="edited").map(([N,k])=>({name:N,status:k.status})),[l]),[f,g]=M(null),y=le(N=>{g(k=>k===N?null:N)},[]),{pageGroups:x,componentGroups:b}=oe(()=>{var j;const N=new Map,k=new Map;for(const T of p)if(T.componentName){const P=k.get(T.componentName)||[];P.push(T),k.set(T.componentName,P)}else if(no(T.url)){const P=(j=T.url)==null?void 0:j.match(/[?&]c=([^&]+)/),R=P?decodeURIComponent(P[1]):"Isolated",I=k.get(R)||[];I.push(T),k.set(R,I)}else{const P=Ke(T.url),R=N.get(P)||[];R.push(T),N.set(P,R)}return{pageGroups:N,componentGroups:k}},[p]),w=oe(()=>Ii([...x.entries()],l),[x,l]),v=oe(()=>Ii([...b.entries()],l),[b,l]),C=w,A=v,S=oe(()=>og(r,l),[r,l]),E=oe(()=>{const N=[];for(const[,k]of C)N.push(...k);for(const[,k]of A)N.push(...k);return N},[C,A]);return te(()=>{if(E.length===0)return;const N=k=>{var I;if(!["ArrowLeft","ArrowRight","ArrowUp","ArrowDown"].includes(k.key))return;const T=(I=k.target)==null?void 0:I.tagName;if(T==="INPUT"||T==="TEXTAREA"||T==="SELECT")return;k.preventDefault();const P=E.findIndex($=>$.id===a);let R;k.key==="ArrowLeft"||k.key==="ArrowUp"?R=P<=0?E.length-1:P-1:R=P>=E.length-1?0:P+1,o(E[R])};return document.addEventListener("keydown",N),()=>document.removeEventListener("keydown",N)},[E,a,o]),p.length===0&&r.length===0?d("div",{className:"h-full bg-white flex items-center justify-center relative",children:[n("button",{onClick:i,className:"absolute top-2 right-3 text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none",title:"Close results",children:"×"}),n("span",{className:"text-sm text-gray-400",children:"No scenarios registered yet"})]}):d("div",{className:"h-full bg-white flex flex-col overflow-hidden",children:[d("div",{className:"flex items-center justify-between px-4 py-2.5 border-b border-gray-200 shrink-0",children:[d("div",{className:"min-w-0",children:[n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Working Session Results"}),m&&n("div",{className:"text-[11px] text-gray-400 truncate",title:m,children:m})]}),n("button",{onClick:i,className:"text-gray-400 hover:text-gray-700 text-lg leading-none cursor-pointer bg-transparent border-none shrink-0",title:"Close results",children:"×"})]}),u&&n(Fc,{text:u,theme:"light"}),n("div",{className:"flex-1 overflow-auto p-4",children:d("div",{className:"space-y-5",children:[C.length>0&&d("div",{children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Application"})}),n("div",{className:"space-y-3 pl-1",children:C.map(([N,k])=>{var R;const j=l[N],T=f===N,P=(R=k[0])==null?void 0:R.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:N}),j&&n(Pi,{status:j,onClick:()=>y(N)})]}),T&&(j==null?void 0:j.status)==="edited"&&P&&n(ji,{filePath:P}),T&&(j==null?void 0:j.status)==="impacted"&&n(Ti,{impactedBy:j.impactedBy,changedEntities:h}),n("div",{className:"flex flex-wrap gap-3",children:k.map(I=>n(Mi,{scenarioId:I.id,name:$i(I.name),isActive:I.id===a,onSelect:()=>o(I),updatedAt:I.updatedAt},I.id))})]},N)})})]}),A.length>0&&d("div",{className:C.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Components"})}),n("div",{className:"space-y-3 pl-1",children:A.map(([N,k])=>{var R;const j=l[N],T=f===N,P=(R=k[0])==null?void 0:R.componentPath;return d("div",{children:[d("div",{className:"mb-1.5 flex items-center gap-2",children:[n("span",{className:"text-[11px] font-medium text-gray-600",children:N}),j&&n(Pi,{status:j,onClick:()=>y(N)})]}),T&&(j==null?void 0:j.status)==="edited"&&P&&n(ji,{filePath:P}),T&&(j==null?void 0:j.status)==="impacted"&&n(Ti,{impactedBy:j.impactedBy,changedEntities:h}),n("div",{className:"flex flex-wrap gap-3",children:k.map(I=>n(Mi,{scenarioId:I.id,name:$i(I.name),isActive:I.id===a,onSelect:()=>o(I),updatedAt:I.updatedAt},I.id))})]},N)})})]}),S.length>0&&d("div",{className:C.length>0||A.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:n("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:"Functions"})}),n("div",{className:"space-y-2 pl-1",children:S.map(N=>d("div",{children:[n("div",{className:"flex items-center gap-2",children:n("span",{className:"text-[11px] font-medium text-gray-700",children:N.name})}),n(Zv,{filePath:N.filePath,projectRoot:s}),N.testFile?n(Xv,{testFile:N.testFile,entityName:N.name}):n("div",{className:"pt-1",children:n("span",{className:"text-[10px] text-gray-400",children:"No test file"})})]},N.name))})]}),c.length>0&&d("div",{className:C.length>0||A.length>0||S.length>0?"pt-3 border-t border-gray-200":"",children:[n("div",{className:"mb-2",children:d("span",{className:"text-xs font-semibold text-gray-500 uppercase tracking-wider",children:["Modified Files (",c.length,")"]})}),n("div",{className:"space-y-0.5 pl-1 max-h-[200px] overflow-auto",children:c.map(N=>d("div",{className:"flex items-center gap-1.5",children:[n("span",{className:`text-[9px] font-bold uppercase w-[14px] text-center ${N.status==="added"||N.status==="untracked"?"text-green-600":N.status==="modified"?"text-blue-600":N.status==="renamed"?"text-purple-600":"text-gray-400"}`,children:N.status==="added"||N.status==="untracked"?"A":N.status==="modified"?"M":N.status==="renamed"?"R":"?"}),n("span",{className:"text-[10px] text-gray-500 truncate font-mono",children:N.path})]},N.path))})]})]})})]})}const tN=[{key:"app",label:"App"},{key:"build",label:"Build"},{key:"data",label:"Structure"},{key:"journal",label:"Journal"}];function nN({activeTab:e,onTabChange:t,buildIdle:r,zoomComponent:s,breadcrumbItems:a,onBreadcrumbNavigate:o,panelLayout:i,onToggleExpand:l}){return d("div",{className:"bg-[#3d3d3d] h-10 flex items-center px-3 gap-3 shrink-0 z-20 border-b border-[#2d2d2d]",children:[d("div",{className:"flex items-center gap-2 shrink-0",children:[n("img",{src:cs,alt:"CodeYam",className:"h-5 brightness-0 invert"}),n("span",{className:"text-white font-medium text-xs whitespace-nowrap",children:"Codeyam Editor"})]}),n("div",{className:"flex-1"}),d("div",{className:"flex items-center gap-2 shrink-0",children:[n("div",{className:"flex items-center gap-0.5 bg-[#4a3232] rounded-lg p-0.5",children:tN.map(c=>d("button",{onClick:()=>t(c.key),className:`px-2.5 py-1 text-xs font-medium rounded-md transition-colors cursor-pointer ${e===c.key?"bg-[#7a4444] text-white":"text-gray-300 hover:text-white"}`,children:[c.label,c.key==="build"&&r&&e!=="build"&&n("span",{className:"ml-1 inline-block w-1.5 h-1.5 rounded-full bg-amber-400 animate-pulse"})]},c.key))}),l&&n("button",{onClick:l,className:"p-1.5 rounded text-gray-400 hover:text-white transition-colors cursor-pointer",title:i==="editor-only"?"Show preview":"Hide preview",children:n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:i==="editor-only"?d(pe,{children:[n("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n("path",{d:"M9 3v18"}),n("path",{d:"M16 15l-3-3 3-3"})]}):d(pe,{children:[n("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n("path",{d:"M9 3v18"}),n("path",{d:"M14 9l3 3-3 3"})]})})})]})]})}function rN({preview:e,onDismiss:t,onLoadCommit:r}){return d("div",{className:"flex flex-col items-center gap-6 max-w-[700px] w-full",children:[d("div",{className:"text-center",children:[n("h2",{className:"text-lg font-semibold text-[#333] m-0 font-['IBM_Plex_Sans']",children:"Journal Screenshot"}),n("p",{className:"text-sm text-[#888] mt-1 m-0 font-['IBM_Plex_Sans']",children:"This is a snapshot from a previous version — not a live preview"})]}),n("div",{className:"rounded-lg overflow-hidden border-2 border-[#ccc] shadow-md max-w-full w-fit",children:n("img",{src:e.screenshotUrl,alt:e.scenarioName,className:"max-w-full h-auto block"})}),d("div",{className:"flex items-center gap-2 text-sm text-[#666]",children:[e.commitSha&&n("span",{className:"font-mono text-xs text-[#00a0c4] bg-[#00a0c4]/15 px-2 py-0.5 rounded",children:e.commitSha.slice(0,7)}),d("span",{className:"truncate",children:[e.scenarioName,e.commitMessage&&` — ${e.commitMessage}`]})]}),n("div",{className:"flex items-center gap-3",children:e.commitSha&&r&&n(sN,{commitSha:e.commitSha,onLoadCommit:r})})]})}function sN({commitSha:e,onLoadCommit:t}){const[r,s]=M(!1),[a,o]=M(null);return d(pe,{children:[n("button",{onClick:()=>{s(!0),o(null),t(e).then(i=>{i.success||o(i.error||"Failed to load commit")}).catch(i=>{o(i instanceof Error?i.message:"Network error")}).finally(()=>s(!1))},disabled:r,className:"bg-[#005c75] hover:bg-[#004d63] disabled:opacity-50 text-white text-sm font-medium px-4 py-1.5 rounded transition-colors cursor-pointer",children:r?"Reverting...":"Revert to this code and load this version"}),a&&n("div",{className:"bg-red-50 border border-red-200 rounded px-4 py-2 text-sm text-red-600 w-full text-center",children:a})]})}function aN({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,onStateChange:o}){const{interactiveServerUrl:i,isStarting:l,isLoading:c}=cn({analysisId:e,scenarioId:t,scenarioName:r,entityName:s,projectSlug:a,enabled:!0});return te(()=>{o(i,l||c)},[i,l,c,o]),null}function oN(e,t){return t.status==="error"?{url:null,proxyUrl:null,isStarting:!1,error:t.errorMessage||"Dev server crashed",canStartServer:e.canStartServer,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.url?{url:t.url,proxyUrl:t.proxyUrl||null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:e.autoStartAttempted,shouldAutoStart:!1}:t.status==="starting"?{...e,isStarting:!0,error:null,canStartServer:!0,shouldAutoStart:!1}:t.status==="stopped"?e.url?{...e,url:null,isStarting:!1,shouldAutoStart:!1}:e.autoStartAttempted?{...e,isStarting:!1,shouldAutoStart:!1}:{...e,autoStartAttempted:!0,shouldAutoStart:!0}:{...e,shouldAutoStart:!1}}function iN(){const[e,t]=M({url:null,proxyUrl:null,isStarting:!1,error:null,canStartServer:!0,autoStartAttempted:!1}),r=be(e);r.current=e,te(()=>{let o=!1,i=null;const l=async()=>{try{const c=await fetch("/api/editor-dev-server");if(o)return;const m=await c.json(),u=oN(r.current,m),{shouldAutoStart:p,...h}=u;if(t(h),p)try{const f=await fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})});if(o)return;f.ok?t(g=>({...g,isStarting:!0})):t(g=>({...g,canStartServer:!1}))}catch{}}catch{}};return l(),i=setInterval(()=>void l(),2e3),()=>{o=!0,i&&clearInterval(i)}},[e.url]);const s=le(()=>{t(o=>({...o,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"restart"})}).catch(()=>{})},[]),a=le(()=>{t(o=>({...o,error:null,isStarting:!0})),fetch("/api/editor-dev-server",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"start"})}).catch(()=>{})},[]);return{devServerUrl:e.url,proxyUrl:e.proxyUrl,isStarting:e.isStarting,error:e.error,canStartServer:e.canStartServer,retryServer:s,startServer:a}}function lN(e){const t=be(null),r=be(null);te(()=>{if(typeof document>"u")return;r.current||(r.current=document.createElement("canvas"),r.current.width=64,r.current.height=64);const s=document.querySelector('link[rel="icon"]');if(!s)return;if(t.current||(t.current=s.href),!e){s.href=t.current;return}const a=new Image;a.crossOrigin="anonymous",a.onload=()=>{const o=r.current,i=o.getContext("2d");i.clearRect(0,0,64,64),i.drawImage(a,0,0,64,64);const l=18,c=64-l,m=l;i.beginPath(),i.arc(c,m,l+3,0,2*Math.PI),i.fillStyle="#ffffff",i.fill(),i.beginPath(),i.arc(c,m,l,0,2*Math.PI),i.fillStyle="#ef4444",i.fill(),s.href=o.toDataURL("image/png")},a.src=t.current},[e]),te(()=>()=>{if(typeof document>"u")return;const s=document.querySelector('link[rel="icon"]');s&&t.current&&(s.href=t.current)},[])}function cN(e){return e.filter(t=>t.testFile&&t.returnType!=="JSX.Element"&&t.returnType!=="React.ReactNode").map(t=>({name:t.name,filePath:t.filePath,description:t.description||"",testFile:t.testFile,feature:t.feature}))}function Ri(e,t){var r,s,a,o,i;return t?!!((r=e.metadata)!=null&&r.executionResult):!!((a=(s=e.metadata)==null?void 0:s.screenshotPaths)!=null&&a[0])&&!((o=e.metadata)!=null&&o.noScreenshotSaved)&&!((i=e.metadata)!=null&&i.sameAsDefault)}function dN(e,t){return e.filter(r=>r.analyses&&r.analyses.length>0).map(r=>{var p;const s=r.analyses[0],a=s.scenarios||[],o=!((p=s.status)!=null&&p.finishedAt),i=r.entityType||"visual",l=i==="library"||i==="functionCall",c=a.filter(h=>Ri(h,l)),m=a.filter(h=>!Ri(h,l)),u=t.find(h=>h.filePath===(r.filePath||""));return{sha:r.sha,name:r.name,entityType:i,filePath:r.filePath||"",analysisId:s.id,isAnalyzing:o,scenarioCount:a.length,scenarios:c.map(h=>{var f,g;return{id:h.id,name:h.name,description:h.description||"",screenshotPath:((g=(f=h.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0])||null}}),pendingScenarios:m.map(h=>h.name),testFile:u==null?void 0:u.testFile}})}function uN(e,t){var s;const r={};for(const a of e){const i=(((s=a.metadata)==null?void 0:s.importedExports)||[]).map(l=>l.name).filter(l=>t.has(l));i.length>0&&(r[a.name]=i)}return r}function mN(e,t,r){const s={...e},a=new Map;for(const o of r)o.filePath&&a.set(o.filePath,o.name);for(const[o,i]of Object.entries(t)){if(s[o])continue;const l=a.get(i);l&&s[l]&&(s[o]=s[l])}return s}const pN=()=>[{title:"Editor - CodeYam"},{name:"description",content:"CodeYam Code + Data Editor"}];async function hN({request:e}){var E;const t=await De();let r=!1,s=[],a=[];if(t){const{project:N}=await Oe(t);r=((E=N.metadata)==null?void 0:E.editorMode)??!1;try{const k=je();for(const I of["component_name","component_path","screenshot_path","url","viewport_width","viewport_height"])try{await k.schema.alterTable("editor_scenarios").addColumn(I,"varchar").execute()}catch{}const j=await k.selectFrom("editor_scenarios").selectAll().where("project_id","=",N.id).orderBy("created_at","asc").execute(),T=I=>{const $=I;let L=null,H=null;try{$.dimensions&&(L=JSON.parse($.dimensions))}catch{}try{$.screenshot_paths&&(H=JSON.parse($.screenshot_paths))}catch{}return{id:I.id,name:I.name,description:I.description||"",componentName:I.component_name||null,componentPath:I.component_path||null,screenshotPath:I.screenshot_path||null,url:$.url||null,type:$.type||null,viewportWidth:$.viewport_width||null,viewportHeight:$.viewport_height||null,dimension:$.dimension||null,dimensions:L,screenshotPaths:H,updatedAt:$.updated_at||null}};a=ft(j,I=>`${I.name}::${I.url||"/"}`).map(T);const P=ye()||process.cwd(),R=gg(P);if(R){const I=Ga(R),$=j.filter(L=>Th(L,I));s=ft($,L=>`${L.name}::${L.url||"/"}`).map(T)}else s=a}catch{}}const o=[...new Set(a.map(N=>N.componentName).filter(N=>N!==null))];let i=[];try{const N=ye()||process.cwd(),k=B.join(N,".codeyam","glossary.json");if(q.existsSync(k)){const j=q.readFileSync(k,"utf8");i=JSON.parse(j)}}catch{}const l=cN(i);let c=[];try{const N=await ln()||[];c=dN(N,i)}catch{}let m=[];try{if(c.length>0){const N=c.map(k=>k.sha);await Fe(),m=await tt({shas:N})||[]}}catch{}let u={};try{if(m.length>0){const N=new Set([...c.map(k=>k.name),...o,...i.map(k=>k.name)]);u=uN(m,N)}}catch{}let p={};try{const N=ye()||process.cwd();p=scanPageFilePaths(N)}catch{}Object.keys(p).length>0&&m.length>0&&(u=mN(u,p,m));let h={};try{h=(await lr({projectRoot:ye()||process.cwd(),scenarioInputs:a,glossaryInputs:l})).entityChangeStatus}catch{}let f=[];try{f=Mn().filter(k=>k.status!=="deleted").map(k=>({path:k.path,status:k.status}))}catch{}const g=ye()||process.cwd(),y=cc(g),x=dc(g),b=yg(g),w=xg(g);let v=null,C=null,A=null,S=null;try{const N=B.join(g,".codeyam","config.json");if(q.existsSync(N)){const k=JSON.parse(q.readFileSync(N,"utf8"));v=k.projectTitle||null,C=k.projectDescription||null,A=k.defaultScreenSize||null,S=k.screenSizes||null}}catch{}return Z({projectSlug:t,projectRoot:ye(),hasProject:!!t,editorMode:r,scenarios:s,allScenarios:a,components:o,analyzedEntities:c,glossaryFunctions:l,glossaryEntries:i,entityImports:u,pageFilePaths:p,entityChangeStatus:h,modifiedFiles:f,featureName:y,userPrompt:x,projectTitle:v,projectDescription:C,defaultScreenSize:A,screenSizes:S,editorStep:(b==null?void 0:b.step)??null,editorStepLabel:(b==null?void 0:b.label)??null,claudeSessionId:w})}class fN extends id{constructor(){super(...arguments);Yn(this,"state",{error:null,errorInfo:null})}static getDerivedStateFromError(r){return{error:r,errorInfo:null}}componentDidCatch(r,s){console.error("[EditorErrorBoundary] Error:",r.message),console.error("[EditorErrorBoundary] Component stack:",s.componentStack),console.error("[EditorErrorBoundary] Loader snapshot:",JSON.stringify(this.props.loaderSnapshot,null,2)),this.setState({errorInfo:s})}render(){var r;return this.state.error?n("div",{className:"fixed inset-0 bg-[#1e1e1e] flex items-center justify-center p-8",children:d("div",{className:"max-w-[600px] w-full space-y-4",children:[n("h2",{className:"text-lg font-semibold text-red-400 font-['IBM_Plex_Sans'] m-0",children:"Something went wrong"}),n("pre",{className:"text-xs text-gray-300 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[120px]",children:this.state.error.message}),((r=this.state.errorInfo)==null?void 0:r.componentStack)&&d("details",{className:"text-xs text-gray-500",children:[n("summary",{className:"cursor-pointer hover:text-gray-300 transition-colors",children:"Component stack"}),n("pre",{className:"mt-2 bg-[#2d2d2d] p-3 rounded overflow-auto max-h-[200px] text-yellow-300",children:this.state.errorInfo.componentStack})]}),n("p",{className:"text-xs text-gray-500 m-0",children:"Full diagnostics are in the browser console."}),n("button",{onClick:()=>window.location.reload(),className:"px-4 py-2 bg-[#005c75] text-white text-sm rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Reload"})]})}):this.props.children}}const gN=Ye(function(){const{projectSlug:t,projectRoot:r,hasProject:s,scenarios:a,allScenarios:o,analyzedEntities:i,glossaryFunctions:l,glossaryEntries:c,entityImports:m,pageFilePaths:u,entityChangeStatus:p,modifiedFiles:h,featureName:f,userPrompt:g,projectTitle:y,projectDescription:x,defaultScreenSize:b,screenSizes:w,editorStep:v,editorStepLabel:C,claudeSessionId:A}=He(),[S,E]=kn(),N=be(null),k=be(null),j=be(null),T=S.get("zoom")||void 0,P=S.get("scenario")||void 0,[R,I]=M(()=>{if(typeof window>"u")return[];const V=new URLSearchParams(window.location.search).get("zoom");return V?[V]:[]}),$=be(null),L=be([]),H=be(null);te(()=>{var Ie;const V=P||((Ie=zh(o))==null?void 0:Ie.id);if(!Fh(V,$.current))return;const ce=o.find(Xe=>Xe.id===V);if(!ce)return;$.current=V;const Ee=Hs(ce,L.current,H.current);Ee&&Ce(Ee);const _e=vt(ce.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:_e,scenarioId:ce.id,scenarioName:ce.name,scenarioType:ce.type})}).catch(()=>{})},[P,o]),te(()=>{const V=new BroadcastChannel("codeyam-editor");return V.onmessage=ce=>{var Ee;if(((Ee=ce.data)==null?void 0:Ee.type)==="switch-scenario"&&ce.data.scenarioId){const _e=ce.data.scenarioId,Ie=o.find(Ve=>Ve.id===_e);if(!Ie)return;$.current=_e;const Xe=new URLSearchParams(S);Xe.set("scenario",_e),Xe.delete("zoom"),E(Xe),D(null),G(null),ee(null),xt(!0);const Jt=vt(Ie.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Jt,scenarioId:_e,scenarioType:Ie.type})}).then(()=>{Wt(Ve=>Ve+1)}).catch(()=>{xt(!1)})}},()=>V.close()},[S,E,o]),te(()=>{if(S.get("ref")!=="link"||!P)return;const V=new BroadcastChannel("codeyam-editor");V.postMessage({type:"switch-scenario",scenarioId:P}),V.close(),window.close()},[]);const{devServerUrl:F,proxyUrl:z,isStarting:U,error:O,canStartServer:_,retryServer:Y,startServer:Q}=iN(),[K,ae]=M(!1),[J,D]=M(null),[W,G]=M(null),[ne,se]=M(!1),[re,ee]=M(null),de=le(async V=>{const Ee=await(await fetch("/api/editor-load-commit",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({commitSha:V})})).json();return Ee.success&&(ee(null),ae(!1)),Ee},[]),me=le((V,ce)=>{G(Ee=>(V&&V!==Ee&&ae(!1),V)),!ce&&V&&ae(!0),se(ce)},[]),Te=le(V=>{ee(null),D(Ee=>(Ee&&Ee.analysisId===V.analysisId||(G(null),Wt(Ie=>Ie+1)),V)),se(!0),ae(!1);const ce=new URLSearchParams(S);ce.delete("scenario"),ce.delete("zoom"),E(ce)},[S,E]),[xe,Ce]=M(b?{name:b.name,width:b.width,height:b.height}:{name:"Desktop",width:1440,height:900}),[$e,Ae]=M(!1),ie=b?{name:b.name,width:b.width,height:b.height}:null;H.current=ie;const[he,ke]=M("app"),st=le(()=>{ke("build"),ze(!0)},[]),[ve,ze]=M(!1),Ue=!!(f&&v),[ct,dr]=M(Ue?"pending":"no-session");te(()=>{ct==="pending"&&(ke("build"),ze(!0))},[ct]);const No=le(()=>{dr("continue")},[]),Co=le(()=>{fetch("/api/editor-session",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}).catch(()=>{}),dr("fresh")},[]),dn=le(()=>{fetch("/api/editor-session",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({action:"clear"})}).catch(()=>{}),dr("fresh"),ke("app")},[]),[yt,un]=M(!1),$n=le(V=>{un(V)},[]);lN(yt);const[Ut,mn]=M("split"),[Qe,dt]=M(!1),qe=le(()=>{dt(!0),ke("build"),ze(!0)},[]),We=le(()=>{dt(!1)},[]),Ms=le(V=>{Ce(V),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:V,skipBroadcast:!0})})},[]),[pn,In]=M(wn);te(()=>{const V=kh();In(V),V.systemNotification&&typeof Notification<"u"&&Notification.permission==="default"&&Notification.requestPermission()},[]);const $s=le(V=>{In(V),Eh(V)},[]);te(()=>{if(he==="build"){un(!1);const V=setTimeout(()=>{var ce,Ee;(ce=N.current)==null||ce.scrollToBottom(),(Ee=N.current)==null||Ee.focus()},50);return()=>clearTimeout(V)}},[he]),te(()=>{function V(){!document.hidden&&he==="build"&&un(!1)}return document.addEventListener("visibilitychange",V),()=>document.removeEventListener("visibilitychange",V)},[he]);const[hn,ur]=M(null);te(()=>{const V=j.current;if(!V)return;const ce=new ResizeObserver(Ee=>{const _e=Ee[0];_e&&ur({width:_e.contentRect.width,height:_e.contentRect.height})});return ce.observe(V),()=>ce.disconnect()},[]);const jt=oe(()=>hn?Bh(hn,xe):1,[hn,xe]),[Rn,Wt]=M(0),[mr,Dn]=M(null),[pr,xt]=M(!1),On=le((V,ce)=>{if(Dn(V||null),ce){const Ee=new URLSearchParams(S);Ee.set("scenario",ce),$.current=ce,E(Ee);const _e=o.find(Ie=>Ie.id===ce);if(_e){const Ie=Hs(_e,L.current,H.current);Ie&&Ce(Ie)}}ee(null),Wt(Ee=>Ee+1)},[S,E,o]),{customSizes:Ln,addCustomSize:hr,removeCustomSize:fr}=vs(t),fn=oe(()=>Ov(w),[w]),gn=oe(()=>[...fn,...Ln],[fn,Ln]);L.current=gn;const Fn=oe(()=>{const V=[{name:"App"}];for(const ce of R)V.push({name:ce,componentName:ce});return V},[R]),yn=le(V=>{const ce=new URLSearchParams(S);if(V){ce.set("zoom",V);const Ee=R.indexOf(V);Ee>=0?I(R.slice(0,Ee+1)):I([...R,V]);const _e=o.find(Ie=>Ie.componentName===V||Ie.componentName===null&&Ke(Ie.url)===V);if(_e){ce.set("scenario",_e.id),$.current=_e.id,xt(!0);const Ie=vt(_e.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:Ie,scenarioId:_e.id,scenarioType:_e.type})}).then(()=>{Wt(Xe=>Xe+1)}).catch(()=>{xt(!1)})}else ce.delete("scenario")}else ce.delete("zoom"),ce.delete("scenario"),I([]);E(ce)},[S,E,o,R]),Tt=le(V=>{D(null),G(null),ee(null),Dn(null);const ce=Hs(V,gn,ie);ce&&Ce(ce),$.current=V.id;const Ee=new URLSearchParams(S);Ee.set("scenario",V.id),E(Ee),xt(!0);const _e=vt(V.name);fetch("/api/editor-switch-scenario",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({scenarioSlug:_e,scenarioId:V.id,scenarioType:V.type,skipBroadcast:!0})}).then(()=>{Wt(Ie=>Ie+1)}).catch(()=>{xt(!1)})},[S,E,gn]),gr=le(V=>{if(!V.commitSha){const ce=o.find(Ee=>Ee.name===V.scenarioName);if(ce){Tt(ce);return}}ee(V)},[o,Tt]),yr=V=>{const ce={name:V.name,width:V.width,height:V.height};Ce(ce),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:ce,skipBroadcast:!0})})},xr=(V,ce,Ee)=>{hr(V,ce,Ee)},br=V=>{Ce(V),fetch("/api/editor-project-info",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({defaultScreenSize:V,skipBroadcast:!0})})},wr=()=>{J||ae(!0),xt(!1)},Mt=oe(()=>Lh({activeAnalyzedScenario:!!J,analyzedPreviewUrl:W,activeScenarioId:P||null,scenarios:o,proxyUrl:z,devServerUrl:F,zoomComponent:T||null}),[z,F,T,P,o,J,W]),zn=oe(()=>{const V=Dl(Mt,mr);if(!V)return null;const ce=V.includes("?")?"&":"?";return`${V}${ce}__cb=${Rn}`},[Mt,mr,Rn]),vr=oe(()=>({projectSlug:t,hasProject:s,scenarioCount:a==null?void 0:a.length,allScenarioCount:o==null?void 0:o.length,analyzedEntityCount:i==null?void 0:i.length,glossaryFunctionCount:l==null?void 0:l.length,entityChangeStatusKeys:p?Object.keys(p):[],featureName:f}),[t,s,a,o,i,l,p,f]);return n(fN,{loaderSnapshot:vr,children:d("div",{className:"fixed inset-0 bg-[#2d2d2d] flex flex-col",children:[J&&n(aN,{analysisId:J.analysisId,scenarioId:J.scenarioId,scenarioName:J.scenarioName,entityName:J.entityName,projectSlug:t,onStateChange:me},J.analysisId),d("div",{className:"flex-1 flex min-h-0",children:[d("div",{className:"flex-1 flex flex-col min-w-0",style:Ut==="editor-only"?{display:"none"}:void 0,children:[d("div",{className:"bg-[#2d2d2d] border-b border-[#3d3d3d] shrink-0 z-10 h-10 flex items-center px-4 relative",children:[n("div",{className:"flex items-center gap-1 shrink-0 z-10",children:n("button",{onClick:()=>mn(V=>V==="preview-only"?"split":"preview-only"),className:"p-1.5 rounded text-gray-500 hover:text-gray-300 transition-colors cursor-pointer",title:Ut==="preview-only"?"Show sidebar":"Hide sidebar",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n("path",{d:"M9 3v18"})]})})}),n("div",{className:"absolute inset-0 flex items-center justify-center gap-1 pointer-events-none",children:d("div",{className:"flex items-center gap-1 pointer-events-auto",children:[ts.map(V=>d("button",{onClick:()=>yr(V),className:`p-1.5 rounded transition-colors cursor-pointer ${xe.name===V.name?"text-white bg-[#555]":"text-gray-500 hover:text-gray-300"}`,title:`${V.name} (${V.width}×${V.height})`,children:[V.name==="Desktop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}),n("path",{d:"M8 21h8M12 17v4"})]}),V.name==="Laptop"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8H4V6z"}),n("path",{d:"M2 18h20"})]}),V.name==="Tablet"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"5",y:"2",width:"14",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]}),V.name==="Mobile"&&d("svg",{width:"16",height:"16",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("rect",{x:"7",y:"2",width:"10",height:"20",rx:"2"}),n("path",{d:"M12 18h.01"})]})]},V.name)),d("div",{className:"relative",children:[d("button",{onClick:()=>Ae(V=>!V),className:`flex items-center gap-1.5 px-2 py-1 rounded transition-colors cursor-pointer ${$e||!ts.some(V=>V.name===xe.name)?"text-white bg-[#555]":"text-gray-400 hover:text-gray-200 hover:bg-[#444]"}`,title:"Custom dimensions",children:[n("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:n("path",{d:"M17 3a2.83 2.83 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z"})}),d("span",{className:"text-xs font-mono",children:[xe.width," ×"," ",xe.height??900]})]}),$e&&n(bh,{currentWidth:xe.width,currentHeight:xe.height??900,devicePresets:fn,customSizes:Ln,onApply:br,onSave:xr,onRemove:fr,onClose:()=>Ae(!1)})]})]})}),n("div",{className:"ml-auto flex items-center gap-1 shrink-0 z-10",children:n("button",{onClick:()=>{const V=zn||Mt;V&&window.open(V,"_blank")},className:"p-1.5 rounded text-gray-500 hover:text-gray-300 transition-colors cursor-pointer",title:"Open preview in new window",children:d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n("polyline",{points:"15 3 21 3 21 9"}),n("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]})})})]}),n("div",{ref:j,className:"flex-1 flex items-center justify-center overflow-hidden p-8",style:re?{backgroundColor:"#f5f0e8",backgroundImage:"repeating-linear-gradient(0deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px), repeating-linear-gradient(90deg, transparent, transparent 19px, #e8e0d0 19px, #e8e0d0 20px)"}:{backgroundImage:`
403
- linear-gradient(45deg, #333 25%, transparent 25%),
404
- linear-gradient(-45deg, #333 25%, transparent 25%),
405
- linear-gradient(45deg, transparent 75%, #333 75%),
406
- linear-gradient(-45deg, transparent 75%, #333 75%)
407
- `,backgroundSize:"16px 16px",backgroundPosition:"0 0, 0 8px, 8px -8px, -8px 0px",backgroundColor:"#2d2d2d"},children:re?n(rN,{preview:re,onDismiss:()=>ee(null),onLoadCommit:de}):Mt?n("div",{style:{width:`${xe.width*jt}px`,height:`${(xe.height??900)*jt}px`},children:d("div",{className:"relative bg-white origin-top-left",style:{width:`${xe.width}px`,height:`${xe.height??900}px`,transform:jt<1?`scale(${jt})`:void 0},children:[!K&&!pr&&n("div",{className:"absolute inset-0 flex items-center justify-center z-10",children:d("div",{className:"flex flex-col items-center justify-center gap-6 bg-[#2a2a2a] rounded-lg p-8 w-[500px] h-[300px]",children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Loading Preview"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Waiting for the app to render"})]})]})}),pr&&n("div",{className:"absolute inset-0 z-20 flex items-center justify-center",style:{backgroundColor:"rgba(0, 0, 0, 0.25)",backdropFilter:"blur(1px)",transition:"opacity 200ms ease-out"},children:d("div",{className:"flex flex-col items-center gap-3 animate-pulse",children:[n("svg",{className:"w-6 h-6 text-white/80 animate-spin",viewBox:"0 0 24 24",fill:"none",children:n("circle",{cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"3",strokeLinecap:"round",strokeDasharray:"50 100"})}),n("span",{className:"text-white/70 text-xs font-['IBM_Plex_Sans']",children:"Switching scenario"})]})}),n("iframe",{ref:k,src:zn||Mt,className:"w-full h-full border-none",title:"Editor preview",onLoad:wr,style:{opacity:K?1:0}},Rn)]})}):n("div",{className:"bg-[#2a2a2a] rounded-lg flex flex-col items-center justify-center",style:{width:`${xe.width*jt}px`,height:`${(xe.height??900)*jt}px`},children:O?d("div",{className:"flex flex-col gap-4 text-center px-8 max-w-[600px]",children:[n("h2",{className:"text-xl font-medium text-red-400 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Dev Server Failed"}),n("pre",{className:"text-xs text-left bg-[#1e1e1e] text-gray-300 p-4 rounded overflow-auto max-h-[300px] w-full font-mono whitespace-pre-wrap",children:O}),n("button",{onClick:Y,className:"mx-auto px-4 py-2 bg-[#005c75] text-white text-sm font-medium rounded hover:bg-[#004d63] transition-colors cursor-pointer",children:"Retry"})]}):U||ne?d(pe,{children:[n("div",{className:"mb-4",children:n(Ft,{})}),d("div",{className:"flex flex-col gap-3 text-center",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:ne?"Starting Interactive Mode":"Starting Dev Server"}),n("p",{className:"text-sm text-gray-400 leading-5 m-0 font-['IBM_Plex_Sans']",children:ne?"Loading component preview...":"Your dev server is starting up..."})]})]}):d("div",{className:"flex flex-col gap-3 text-center px-8",children:[n("h2",{className:"text-xl font-medium text-gray-200 leading-[28px] m-0 font-['IBM_Plex_Sans']",children:"Live Preview"}),n("p",{className:"text-sm text-gray-500 leading-5 m-0 font-['IBM_Plex_Sans']",children:"Describe what you want to build in the Build tab"})]})})})]}),d("aside",{className:`bg-[#1e1e1e] border-r border-[#3d3d3d] shrink-0 flex flex-col overflow-hidden order-first ${Ut==="editor-only"?"w-full max-w-none min-w-0":"w-[50%] min-w-[400px] max-w-[800px]"}`,style:Ut==="preview-only"?{display:"none"}:void 0,children:[n(nN,{activeTab:he,onTabChange:V=>{ke(V),V==="build"&&ze(!0)},buildIdle:yt,zoomComponent:T,breadcrumbItems:Fn,onBreadcrumbNavigate:yn,panelLayout:Ut,onToggleExpand:()=>mn(V=>V==="editor-only"?"split":"editor-only")}),d("div",{className:"flex-1 overflow-hidden relative",children:[yt&&he!=="build"&&d("div",{className:"absolute top-3 left-1/2 -translate-x-1/2 z-50 animate-[slideDown_0.3s_ease-out]",children:[n("style",{children:`
408
- @keyframes slideDown {
409
- from { transform: translate(-50%, -100%); opacity: 0; }
410
- to { transform: translate(-50%, 0); opacity: 1; }
411
- }
412
- `}),d("button",{onClick:()=>{ke("build"),ze(!0)},className:"flex items-center gap-2 px-4 py-2 bg-amber-50 border-2 border-amber-300 rounded-lg shadow-lg cursor-pointer hover:bg-amber-100 transition-colors",children:[n("span",{className:"inline-block w-2 h-2 rounded-full bg-amber-400 animate-pulse"}),n("span",{className:"text-sm font-medium text-amber-900",children:"Claude is waiting for you"}),n("span",{className:"text-xs text-amber-600 ml-1",children:"Go to Build"})]})]}),ve&&d("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:he==="build"?"visible":"hidden"},children:[n("div",{className:Qe?"flex-1 min-h-0":"flex-1",style:Qe?{flex:"1 1 50%"}:void 0,children:ct==="pending"?n(Lv,{featureName:f,editorStep:v,editorStepLabel:C,onContinue:No,onStartFresh:Co,onReview:dn}):n(Il,{ref:N,entityName:"Editor",projectSlug:t,entityFilePath:null,scenarioName:null,onRefreshPreview:On,onShowResults:qe,onHideResults:We,onSetViewport:Ms,editorMode:!0,onIdleChange:$n,notificationSettings:pn,buildTabActive:he==="build",claudeStartMode:ct==="continue"?"resume":"fresh",claudeSessionId:A})}),Qe&&n("div",{style:{flex:"1 1 50%"},className:"min-h-0 border-t-2 border-gray-300",children:n(eN,{scenarios:a,allScenarios:o,glossaryFunctions:l,projectRoot:r,activeScenarioId:P,onScenarioSelect:Tt,onClose:We,entityChangeStatus:p,modifiedFiles:h,featureName:f,userPrompt:g})})]}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:he==="app"?"visible":"hidden"},children:n(Qv,{hasProject:s,scenarios:o,analyzedEntities:i,glossaryFunctions:l,glossaryEntries:c,projectRoot:r,activeScenarioId:P,onScenarioSelect:Tt,onAnalyzedScenarioSelect:Te,onSwitchToBuild:st,zoomComponent:T,onZoomChange:yn,entityImports:m,pageFilePaths:u,projectTitle:y,projectDescription:x,breadcrumbItems:Fn})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:he==="data"?"visible":"hidden"},children:n(Fv,{scenarios:o,projectRoot:r,activeScenarioId:P,onScenarioSelect:Tt,zoomComponent:T,onZoomChange:yn,analyzedEntities:[],glossaryFunctions:l,activeAnalyzedScenarioId:J==null?void 0:J.scenarioId,onAnalyzedScenarioSelect:Te,entityImports:m,pageFilePaths:u})}),n("div",{className:"absolute inset-0 flex flex-col overflow-hidden",style:{visibility:he==="journal"?"visible":"hidden"},children:n(Gv,{isActive:he==="journal",onScreenshotClick:gr,glossaryFunctions:l})})]}),n($l,{serverUrl:F,isStarting:U,projectSlug:t,devServerError:O,onStartServer:_?Q:void 0,notificationSettings:pn,onChangeNotificationSettings:$s})]})]})]})})}),yN=Object.freeze(Object.defineProperty({__proto__:null,default:gN,loader:hN,meta:pN},Symbol.toStringTag,{value:"Module"}));function zc({content:e,className:t}){const r=e.trim().replace(/^#+ .+$/m,"").trim();return n(lu,{remarkPlugins:[cu],components:{h1:({children:s})=>n("h1",{className:"text-lg font-bold text-gray-900 mb-3 mt-6 first:mt-0 pb-1 border-b border-gray-200",children:s}),h2:({children:s})=>n("h2",{className:"text-base font-semibold text-gray-900 mb-2 mt-5 first:mt-0",children:s}),h3:({children:s})=>n("h3",{className:"text-sm font-semibold text-gray-800 mb-2 mt-4 first:mt-0",children:s}),p:({children:s})=>n("p",{className:"text-sm text-gray-700 mb-3 leading-relaxed",children:s}),ul:({children:s})=>n("ul",{className:"list-disc ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),ol:({children:s})=>n("ol",{className:"list-decimal ml-5 text-sm text-gray-700 mb-3 space-y-1.5",children:s}),li:({children:s})=>n("li",{className:"leading-relaxed",children:s}),code:({children:s,className:a})=>(a==null?void 0:a.includes("language-"))?n("pre",{className:"bg-gray-100 rounded p-3 text-xs font-mono overflow-x-auto mb-3",children:n("code",{children:s})}):n("code",{className:"bg-gray-100 px-1.5 py-0.5 rounded text-xs font-mono text-gray-800",children:s}),pre:({children:s})=>n(pe,{children:s}),strong:({children:s})=>n("strong",{className:"font-semibold text-gray-900",children:s}),blockquote:({children:s})=>n("blockquote",{className:"border-l-4 border-gray-300 pl-4 italic text-gray-600 mb-3",children:s}),table:({children:s})=>n("div",{className:"overflow-x-auto mb-3",children:n("table",{className:"min-w-full text-sm border-collapse border border-gray-200",children:s})}),thead:({children:s})=>n("thead",{className:"bg-gray-50",children:s}),th:({children:s})=>n("th",{className:"border border-gray-200 px-3 py-2 text-left font-semibold text-gray-900",children:s}),td:({children:s})=>n("td",{className:"border border-gray-200 px-3 py-2 text-gray-700",children:s}),a:({children:s,href:a})=>n("a",{href:a,className:"text-[#005C75] hover:underline",target:"_blank",rel:"noopener noreferrer",children:s})},children:r})}function Bc(e){const t={name:"root",path:"",memories:[],children:new Map};for(const r of e){const s=r.filePath.split("/");s.pop();let a=t,o="";for(const i of s)o=o?`${o}/${i}`:i,a.children.has(i)||a.children.set(i,{name:i,path:o,memories:[],children:new Map}),a=a.children.get(i);s.length===0?t.memories.push(r):a.memories.push(r)}return t}function Yc(e){let t=e.memories.length;for(const r of e.children.values())t+=Yc(r);return t}function Ts(e,t){var s;const r=e.match(/^#+ (.+)$/m);return r?r[1]:((s=t.split("/").pop())==null?void 0:s.replace(".md",""))||t}function Xn(e){return Math.round(e/3.5)}function vn(e){const t=new Date(e),r=new Date;if(t.toDateString()===r.toDateString()){const c=r.getTime()-t.getTime(),m=Math.floor(c/(1e3*60)),u=Math.floor(c/(1e3*60*60));return m<3?"Just now":m<60?`${m}min ago`:u===1?"1h ago":`${u}h ago`}const a=t.toLocaleDateString("en-US",{month:"short"}),o=t.getDate(),i=t.getFullYear(),l=r.getFullYear();return i===l?`${a} ${o}`:`${a} ${o}, ${i}`}function xN({rule:e,onEdit:t,onDelete:r,onView:s,isReviewed:a,onToggleReviewed:o,changeType:i,isUncommitted:l,changeDate:c,diff:m,isFadingOut:u,showLeftBorder:p}){const[h,f]=M(!1),[g,y]=M(!1),x=oe(()=>Ts(e.body,e.filePath),[e.body,e.filePath]),b=Xn(e.body.length),w=h?"#3e3e3e":l?"#d97706":"#c7c7c7",v=`rounded-lg border overflow-hidden transition-all ease-in-out ${l?"bg-amber-50 border-amber-300":"bg-white border-gray-200"}`,C={...u&&{opacity:0,maxHeight:0,paddingTop:0,paddingBottom:0,marginBottom:0,borderWidth:0,transitionDuration:"600ms"}};return d("div",{className:v,style:C,children:[n("div",{className:`p-4 cursor-pointer ${l?"hover:bg-amber-100":"hover:bg-gray-50"}`,onClick:()=>s?s(e):f(!h),children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"flex items-center gap-3",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:h?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:w})})}),d("div",{className:"flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1",children:[n("h3",{style:{fontSize:"14px",lineHeight:"18px",fontWeight:500,color:l?"#78350f":"#000"},children:x}),i&&n("span",{className:`px-2 py-0.5 rounded uppercase font-medium tracking-wider ${i==="deleted"?"bg-red-100 text-red-700":""}`,style:{fontSize:"10px",...i==="added"&&{backgroundColor:"#CBF3FA",color:"#005C75"},...i==="modified"&&{backgroundColor:"#FFE8C1",color:"#C67E06"}},children:i}),l&&n("span",{className:"px-2 py-0.5 bg-amber-200 text-amber-800 rounded font-medium uppercase tracking-wider",style:{fontSize:"10px"},children:"Uncommitted"}),d("span",{className:"text-xs text-gray-400",children:["~",b.toLocaleString()," tokens"]})]}),n("div",{className:"flex items-center gap-2 text-xs text-gray-500 flex-wrap",children:e.frontmatter.paths&&e.frontmatter.paths.length>0&&d(pe,{children:[e.frontmatter.paths.slice(0,2).map((A,S)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-500 rounded font-mono",children:A},S)),e.frontmatter.paths.length>2&&d("span",{className:"text-gray-400 whitespace-nowrap",children:["+",e.frontmatter.paths.length-2," more"]})]})})]})]}),d("div",{className:"flex items-center gap-3 flex-shrink-0",children:[c&&n("span",{className:"text-xs text-gray-400",children:vn(c)}),o&&n("button",{onClick:A=>{A.stopPropagation(),o(e.filePath,e.lastModified,a??!1)},className:`w-5 h-5 rounded-full border-2 flex items-center justify-center cursor-pointer transition-colors ${a?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,title:a?"Mark as unreviewed":"Mark as reviewed",children:a&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]})]})}),h&&d("div",{className:`border-t ${l?"border-amber-200":"border-gray-100"}`,children:[d("div",{className:`px-4 py-3 flex items-center justify-between ${l?"bg-amber-50":"bg-white"}`,children:[n("div",{className:"flex items-center gap-2",children:i==="modified"&&m&&d("button",{onClick:A=>{A.stopPropagation(),y(!g)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${g?l?"bg-amber-200 text-amber-900":"bg-gray-200 text-gray-900":l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n(Yr,{className:"w-3 h-3"}),g?"Hide Diff":"Show Diff"]})}),i!=="deleted"&&d("div",{className:"flex items-center gap-2",children:[d("button",{onClick:A=>{A.stopPropagation(),t(e)},className:`flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer ${l?"text-amber-700 hover:text-amber-900 hover:bg-amber-100":"text-gray-600 hover:text-gray-900 hover:bg-gray-100"}`,children:[n($d,{className:"w-3 h-3"}),"Edit"]}),d("button",{onClick:A=>{A.stopPropagation(),r(e)},className:"flex items-center gap-1 px-2 py-1 text-sm rounded cursor-pointer text-red-600 hover:text-red-800 hover:bg-red-100",children:[n(Id,{className:"w-3 h-3"}),"Delete"]})]})]}),g&&m&&n("pre",{className:"mx-4 mb-4 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:m.split(`
413
- `).map((A,S)=>{let E="";return A.startsWith("+")&&!A.startsWith("+++")?E="text-green-400":A.startsWith("-")&&!A.startsWith("---")?E="text-red-400":A.startsWith("@@")&&(E="text-cyan-400"),n("div",{className:E,children:A},S)})}),d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Edit with Claude:"}),d("div",{className:"flex items-center gap-2",children:[d("span",{className:"px-2 py-1 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:["Claude, can you help me edit this rule: `",e.filePath,"`"]}),n(At,{content:`Claude, can you help me edit this rule: \`${e.filePath}\``,icon:!0,iconSize:14,className:"p-1 text-gray-400 hover:text-gray-600 rounded transition-colors"})]})]}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"mx-4 mb-3",children:[n("div",{className:"text-xs text-gray-500 mb-1.5 font-medium",children:"Applies to paths:"}),n("div",{className:"flex flex-wrap gap-1.5",children:e.frontmatter.paths.map((A,S)=>n("span",{className:"px-2 py-0.5 bg-gray-100 text-gray-600 rounded font-mono text-xs",children:A},S))})]}),!g&&n("div",{className:"mx-4 mb-4 p-4 rounded border max-h-[500px] overflow-auto bg-white border-gray-200",children:n(zc,{content:e.body})})]})]})}function bN(){return new Date().toISOString().split(".")[0]+"",`---
414
- paths:
415
- - '**/*.ts'
416
- ---
417
-
418
- ## Title
419
-
420
- Description here.
421
- `}function wN({rule:e,onSave:t,onCancel:r}){const[s,a]=M(e?`.claude/rules/${e.filePath}`:""),[o,i]=M((e==null?void 0:e.content)||bN()),[l,c]=M(!!e),[m,u]=M(!1),p=!e;return d("div",{className:"p-6",children:[d("div",{className:"flex items-center justify-between mb-4",children:[n("h3",{className:"text-lg font-semibold",style:{fontFamily:"Sora"},children:e?"Edit Rule":"Create New Rule"}),n("button",{onClick:r,className:"text-gray-400 hover:text-gray-600 cursor-pointer",children:n(En,{className:"w-5 h-5"})})]}),p&&d("div",{className:"mb-6",children:[n("div",{className:"bg-[#f0f9ff] border border-[#bae6fd] rounded-lg p-4 mb-4",children:d("div",{className:"flex items-start gap-3",children:[n(Yr,{className:"w-5 h-5 text-[#0284c7] mt-0.5 flex-shrink-0"}),d("div",{children:[n("h4",{className:"font-medium text-[#0c4a6e] mb-1",children:"Recommended: Use Claude Code"}),n("p",{className:"text-sm text-[#0369a1] mb-2",children:"Run this command in Claude Code to create a properly formatted rule with the right file location and paths:"}),d("div",{className:"relative",children:[n("code",{className:"block bg-white px-3 py-2 pr-9 rounded border border-[#bae6fd] font-mono text-sm text-[#0c4a6e]",children:"/codeyam-new-rule"}),n("button",{onClick:()=>{navigator.clipboard.writeText("/codeyam-new-rule"),u(!0),setTimeout(()=>u(!1),2e3)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-[#0284c7] hover:text-[#0c4a6e] cursor-pointer transition-colors",title:"Copy command",children:m?n(lt,{className:"w-4 h-4 text-green-500"}):n(pt,{className:"w-4 h-4"})})]})]})]})}),d("button",{onClick:()=>c(!l),className:"flex items-center gap-2 text-sm text-gray-600 hover:text-gray-900 cursor-pointer",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:l?"rotate(90deg)":"none",transition:"transform 0.2s"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:l?"#3e3e3e":"#c7c7c7"})})}),"Or create manually"]})]}),(l||!p)&&d("div",{className:"space-y-4",children:[d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"File Path (relative to .claude/rules/)"}),d("div",{className:"relative",children:[n("input",{type:"text",value:s,onChange:h=>a(h.target.value),placeholder:"e.g., src/webserver/architecture.md",className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm",disabled:!!e}),n("button",{onClick:()=>{navigator.clipboard.writeText(s)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy path",children:n(pt,{className:"w-4 h-4"})})]})]}),e&&d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Ask Claude for help editing:"}),d("div",{className:"relative",children:[n("input",{type:"text",value:`Claude, can you help me edit the rule: \`${s}\``,readOnly:!0,className:"w-full px-3 py-2 pr-10 border border-gray-300 rounded-md bg-gray-50 font-mono text-sm text-gray-600"}),n("button",{onClick:()=>{navigator.clipboard.writeText(`Claude, can you help me edit the rule: \`${s}\``)},className:"absolute right-2 top-1/2 -translate-y-1/2 p-1 text-gray-400 hover:text-gray-600 cursor-pointer",title:"Copy prompt",children:n(pt,{className:"w-4 h-4"})})]})]}),d("div",{children:[n("label",{className:"block text-sm font-medium text-gray-700 mb-1",children:"Content"}),n("textarea",{value:o,onChange:h=>i(h.target.value),rows:20,className:"w-full px-3 py-2 border border-gray-700 rounded-md focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent font-mono text-sm bg-gray-900 text-gray-100 [&::-webkit-scrollbar]:w-2 [&::-webkit-scrollbar-track]:bg-gray-800 [&::-webkit-scrollbar-thumb]:bg-gray-600 [&::-webkit-scrollbar-thumb]:rounded-full [&::-webkit-scrollbar-thumb]:hover:bg-gray-500 [&::-webkit-resizer]:bg-gray-700"})]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-[#001f3f] hover:text-[#001530] rounded-md cursor-pointer font-mono uppercase text-xs font-semibold",children:"Cancel"}),n("button",{onClick:()=>t(s.replace(/^\.claude\/rules\//,""),o),disabled:!s.trim()||!o.trim(),className:"px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] disabled:opacity-50 disabled:cursor-not-allowed cursor-pointer font-mono uppercase text-xs font-semibold",children:"Save"})]})]})]})}function vN({memories:e,selectedPath:t,onSelectPath:r,expandedFolders:s,onToggleFolder:a}){const o=oe(()=>Bc(e),[e]),i=(m,u,p)=>{if(m.target.closest(".chevron-toggle")){p&&a(u||"root");return}const f=u||null;r(t===f?null:f),p&&!s.has(u||"root")&&a(u||"root")},l=m=>{r(t===m?null:m)},c=(m,u=0)=>{const p=s.has(m.path||"root"),h=Yc(m),f=m.children.size>0,g=m.name==="root"?"(root)":m.name,y=m.memories.length>0||f,x=m.path||"",b=t===x||t===null&&x==="";return d("div",{children:[d("div",{className:`flex items-center gap-2 py-2.5 cursor-pointer rounded px-2 relative ${b?"bg-[#E0E9EC]":"hover:bg-gray-100"}`,style:{paddingLeft:`${u*12+8}px`},onClick:w=>i(w,m.path,y),children:[y&&n("span",{className:"chevron-toggle p-0.5 -m-0.5 hover:bg-gray-200 rounded",onClick:w=>{w.stopPropagation(),a(m.path||"root")},children:n(zt,{className:`w-3 h-3 text-gray-500 transition-transform ${p?"rotate-90":""}`})}),!y&&n("div",{className:"w-3"}),n(Vi,{className:"w-3.5 h-3.5 text-[#005C75]"}),n("span",{className:`text-xs font-mono font-semibold ${b?"text-[#005C75]":""}`,style:{color:"#005C75"},children:g}),d("span",{className:"text-xs ml-auto",style:{color:"#005C75"},children:[h," rules"]})]}),p&&d("div",{className:"relative",children:[(m.memories.length>0||f)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:`${u*12+8+6}px`}}),m.memories.length>0&&n("div",{style:{paddingLeft:`${(u+1)*12+8}px`},children:m.memories.map(w=>{var C;const v=t===w.filePath;return n("div",{className:`flex items-center gap-2 py-1 px-2 text-sm rounded cursor-pointer relative ${v?"bg-[#E0E9EC] text-[#005C75]":"text-gray-600 hover:bg-gray-50"}`,onClick:()=>l(w.filePath),children:n("span",{className:"text-xs",children:(C=w.filePath.split("/").pop())==null?void 0:C.replace(".md","")})},w.filePath)})}),f&&n("div",{children:Array.from(m.children.values()).sort((w,v)=>w.name.localeCompare(v.name)).map(w=>c(w,u+1))})]})]},m.path||"root")};return n("div",{className:"bg-white rounded-lg border border-gray-200 p-4 mb-8",children:c(o)})}function NN({memories:e,onEdit:t,onDelete:r,expandedFolders:s,onToggleFolder:a,reviewedStatus:o,onMarkReviewed:i,onMarkUnreviewed:l,onViewRule:c}){const[m,u]=M({});te(()=>{u({})},[o]);const p=oe(()=>({...o,...m}),[o,m]),h=oe(()=>Bc(e),[e]),f=(y,x,b)=>{u(w=>({...w,[y]:!b})),b?l(y):i(y,x)},g=(y,x=0)=>{const b=s.has(y.path||"root"),w=y.children.size>0,v=y.name==="root"?"root":y.name,C=y.memories.length>0||w;return d("div",{children:[d("div",{className:"flex items-center gap-2 py-2 cursor-pointer hover:bg-gray-50 rounded px-2 mb-2",style:{backgroundColor:"rgba(224, 233, 236, 0.5)"},onClick:()=>C&&a(y.path||"root"),children:[C&&n(zt,{className:`w-4 h-4 text-gray-500 transition-transform ${b?"rotate-90":""}`}),!C&&n("div",{className:"w-4"}),n(Vi,{className:"w-4 h-4 text-[#005C75]"}),n("span",{className:"text-sm font-mono font-semibold",style:{color:"#001f3f"},children:v})]}),b&&d("div",{className:"ml-10 space-y-4 relative",children:[(y.memories.length>0||w)&&n("div",{className:"absolute top-0 bottom-0 w-px bg-gray-300",style:{left:"-24px"}}),y.memories.length>0&&n("div",{className:"space-y-2",children:y.memories.map(A=>n(xN,{rule:A,onEdit:t,onDelete:r,onView:c,isReviewed:p[A.filePath]??!1,onToggleReviewed:f},A.filePath))}),w&&n("div",{className:"space-y-4",children:Array.from(y.children.values()).sort((A,S)=>A.name.localeCompare(S.name)).map(A=>g(A,x+1))})]})]},y.path||"root")};return n("div",{children:g(h)})}function CN({memories:e,reviewedStatus:t,onViewRule:r,refreshKey:s}){const[a,o]=M("unreviewed"),[i,l]=M("by-date"),[c,m]=M(null),[u,p]=M(!0),[h,f]=M(new Map),g=be(t),y=be([]);te(()=>()=>{y.current.forEach(clearTimeout)},[]),te(()=>{(async()=>{p(!0);try{const S=await(await fetch("/api/memory?action=rule-coverage")).json();m(S.coverage??null)}catch{m(null)}finally{p(!1)}})()},[s]),te(()=>{const C=g.current,A=[];for(const[S,E]of Object.entries(t))E&&!C[S]&&A.push(S);g.current=t,A.length!==0&&(f(S=>{const E=new Map(S);return A.forEach(N=>E.set(N,"approved")),E}),y.current.push(setTimeout(()=>{f(S=>{const E=new Map(S);return A.forEach(N=>E.set(N,"fading")),E})},1500)),y.current.push(setTimeout(()=>{f(S=>{const E=new Map(S);return A.forEach(N=>E.delete(N)),E})},2500)))},[t]);const x=oe(()=>{const C=[...e];return i==="by-impact"&&c!==null?C.sort((A,S)=>{const E=c[A.filePath]??0,N=c[S.filePath]??0;return N!==E?N-E:new Date(S.lastModified).getTime()-new Date(A.lastModified).getTime()}):C.sort((A,S)=>new Date(S.lastModified).getTime()-new Date(A.lastModified).getTime()),C},[e,i,c]),b=oe(()=>x.filter(C=>!t[C.filePath]).length,[x,t]),w=oe(()=>a==="unreviewed"?x.filter(C=>!t[C.filePath]||h.has(C.filePath)):x,[x,a,t,h]),v=!u&&c!==null;return d("div",{className:"bg-white rounded-lg border border-gray-200 overflow-hidden flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Recently Changed Rules"})}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:["Unreviewed Rules (",b,")"]})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),d("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:["All (",x.length,")"]})]})]}),d("div",{className:"grid grid-cols-[1fr_90px_80px_100px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Rule"}),d("button",{onClick:()=>v&&l("by-impact"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none p-0 ${v?"cursor-pointer hover:text-gray-600":"cursor-default"} ${i==="by-impact"?"text-[#005C75]":"text-gray-400"}`,children:["Src Files",i==="by-impact"&&n(it,{className:"w-3 h-3"})]}),d("button",{onClick:()=>l("by-date"),className:`text-[11px] uppercase tracking-wider font-medium text-center flex items-center justify-center gap-0.5 whitespace-nowrap bg-transparent border-none cursor-pointer p-0 hover:text-gray-600 ${i==="by-date"?"text-[#005C75]":"text-gray-400"}`,children:["Changed At",i==="by-date"&&n(it,{className:"w-3 h-3"})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium text-center flex items-center justify-center gap-1 whitespace-nowrap",children:["✓ Reviewed",d("span",{className:"relative group",children:[n(sa,{className:"w-3 h-3 text-gray-300 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Showing which rules have been reviewed and approved. Click a rule to view it and approve it"})]})]})]}),n("div",{className:"flex-1 overflow-y-auto max-h-[400px]",children:w.map(C=>{const A=t[C.filePath]??!1,S=h.get(C.filePath),E=Ts(C.body,C.filePath),N=(c==null?void 0:c[C.filePath])??0;return n("div",{className:`border-b border-gray-50 transition-all ${S==="fading"?"duration-1000":"duration-300"}`,style:{opacity:S==="fading"?0:1},children:d("div",{className:`grid grid-cols-[1fr_90px_80px_100px] px-5 py-2.5 items-center cursor-pointer transition-colors duration-300 ${S==="approved"?"bg-[#f0fdf4]":"hover:bg-gray-50"}`,onClick:()=>r(C),children:[n("div",{className:"flex items-center gap-2 min-w-0",children:n("span",{className:"text-sm text-gray-900 truncate",children:E})}),n("span",{className:"text-xs text-center",children:u?n("span",{className:"inline-block w-6 h-3 bg-gray-100 rounded animate-pulse"}):c!==null?n("span",{className:N>0?"text-gray-700 font-medium":"text-gray-300",children:N}):n("span",{className:"text-gray-300",children:"—"})}),n("span",{className:"text-xs text-gray-500 text-center",children:vn(C.lastModified)}),n("div",{className:"flex justify-center",children:n("div",{className:`w-5 h-5 rounded-full border-2 flex items-center justify-center transition-colors duration-300 ${A?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:A&&n("svg",{width:"10",height:"8",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})})]})},C.filePath)})}),w.length===0&&a==="unreviewed"&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:"All rules have been reviewed"})]})}function SN(e,t){const r=t.map(s=>`- \`${s}\``).join(`
422
- `);return`Please audit the following Claude Rules that apply to the file \`${e}\`:
423
-
424
- ${r}
425
-
426
- Please review these rules in conjunction with one another as they all apply to this file.
427
-
428
- Review each rule with the other rules in mind:
429
- - Necessary: Is this rule really necessary to avoid confusion in future work sessions?
430
- - Efficiency: Are the rules concise and well-structured?
431
- - Effectiveness: Does the rules provide clear, actionable guidance?
432
- - Context window impact: Can the rules be shortened without losing important information?
433
- - Overlap: Is there any redundant information across the rules that can be consolidated?
434
- - Duplication: Are there any rules that are nearly identical that can be merged or removed?
435
-
436
- Remember that documenting past confusion isn't helpul unless that confusion will likely happen again.
437
-
438
- Note: Each rule may apply to multiple files, not just the file listed above. Consider this when suggesting changes — modifications should not negatively impact the rule's usefulness for other files it covers.`}function kN({filePath:e,rulePaths:t,onClose:r}){const[s,a]=M(!1),o=SN(e,t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:r,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:l=>l.stopPropagation(),children:[n("button",{onClick:r,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(En,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-1",children:"Audit Rules For File"}),n("p",{className:"font-mono text-sm text-gray-500 mb-4 truncate",title:e,children:e}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can audit these rules to try and make them as efficient and effective as possible, reducing the impact on the context window."}),n("textarea",{readOnly:!0,value:o,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-4",children:n("button",{onClick:()=>{navigator.clipboard.writeText(o),a(!0),setTimeout(()=>a(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:s?d(pe,{children:[n(lt,{className:"w-4 h-4"}),"Copied!"]}):d(pe,{children:[n(pt,{className:"w-4 h-4"}),"Copy Prompt"]})})})]})})}function EN({refreshKey:e,reviewedStatus:t,memories:r,onViewRule:s}){const[a,o]=M("unreviewed"),[i,l]=M(null),[c,m]=M(""),[u,p]=M(0),[h,f]=M(!1),[g,y]=M(null),[x,b]=M(null),w=be(null),v=be(null),[C,A]=M({topPaths:[],totalFilesWithCoverage:0,allSourceFiles:[]}),[S,E]=M(!0);te(()=>{(async()=>{E(!0);try{const H=await(await fetch("/api/memory?action=audit")).json();A({topPaths:H.topPaths||[],totalFilesWithCoverage:H.totalFilesWithCoverage||0,allSourceFiles:H.allSourceFiles||[]})}catch(L){console.error("Failed to load audit data:",L)}finally{E(!1)}})()},[e]);const N=oe(()=>a==="all"?C.topPaths:C.topPaths.filter($=>$.matchingRules.some(L=>!t[L.filePath])),[C.topPaths,a,t]);oe(()=>C.topPaths.filter($=>$.matchingRules.some(L=>!t[L.filePath])).length,[C.topPaths,t]);const k=$=>$.split("/").pop()||$,j=oe(()=>{const $=new Map;for(const L of C.topPaths)$.set(L.filePath,L);return $},[C.topPaths]),T=oe(()=>{if(!c.trim())return[];const $=c.toLowerCase(),L=[],H=[];for(const F of C.allSourceFiles){const z=F.toLowerCase();if(!z.includes($))continue;const U=j.get(F)||{filePath:F,matchingRules:[],totalTextLength:0};z.startsWith($)?L.push(U):H.push(U)}return L.sort((F,z)=>F.filePath.localeCompare(z.filePath)),H.sort((F,z)=>F.filePath.localeCompare(z.filePath)),[...L,...H].slice(0,8)},[c,C.allSourceFiles,j]),P=le($=>{var L;y($),l($.filePath),m($.filePath),f(!1),(L=w.current)==null||L.blur()},[]),R=le(()=>{var $;m(""),y(null),l(null),($=w.current)==null||$.focus()},[]),I=le($=>{var L;!h||T.length===0||($.key==="ArrowDown"?($.preventDefault(),p(H=>Math.min(H+1,T.length-1))):$.key==="ArrowUp"?($.preventDefault(),p(H=>Math.max(H-1,0))):$.key==="Enter"?($.preventDefault(),P(T[u])):$.key==="Escape"&&(f(!1),(L=w.current)==null||L.blur()))},[h,T,u,P]);return te(()=>{p(0)},[T]),d("div",{className:"bg-white rounded-lg border border-gray-200 flex flex-col",children:[d("div",{className:"flex items-center gap-4 border-b border-[#e1e1e1] px-5",children:[n("button",{className:"py-3 border-b-2 border-[#232323] text-[#232323] bg-transparent cursor-pointer",children:n("span",{className:"text-[14px] leading-6",style:{fontFamily:"Sora",fontWeight:600},children:"Rule Audit"})}),d("div",{className:"relative flex-1 max-w-[300px]",children:[n(sr,{className:"absolute left-2.5 top-1/2 -translate-y-1/2 w-3.5 h-3.5 text-gray-400"}),n("input",{ref:w,type:"text",value:c,onChange:$=>{m($.target.value),f(!0)},onFocus:()=>{c.trim()&&f(!0)},onBlur:()=>{setTimeout(()=>f(!1),200)},onKeyDown:I,placeholder:"Search files...",className:`w-full pl-8 ${c?"pr-7":"pr-3"} py-1 text-xs border border-gray-200 rounded-md focus:outline-none focus:ring-1 focus:ring-[#005C75] focus:border-[#005C75] bg-gray-50`}),c&&n("button",{type:"button",onMouseDown:$=>{$.preventDefault(),R()},className:"absolute right-2 top-1/2 -translate-y-1/2 w-4 h-4 flex items-center justify-center text-gray-400 hover:text-gray-600 cursor-pointer",children:n("svg",{viewBox:"0 0 14 14",fill:"none",stroke:"currentColor",strokeWidth:"2",className:"w-3 h-3",children:n("path",{d:"M1 1l12 12M13 1L1 13"})})}),h&&T.length>0&&n("div",{ref:v,className:"absolute left-0 top-full mt-0.5 bg-white border border-gray-200 rounded-md shadow-lg z-10 max-h-75 overflow-y-auto min-w-75 max-w-120",children:T.map(($,L)=>d("div",{onMouseDown:H=>{H.preventDefault(),P($)},onMouseEnter:()=>p(L),className:`flex items-center gap-2 px-3 py-2 cursor-pointer text-sm ${L===u?"bg-[#f0f9ff]":"hover:bg-gray-50"}`,children:[n(Ur,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-gray-700 truncate",title:$.filePath,children:(()=>{const H=$.filePath.toLowerCase().indexOf(c.toLowerCase());if(H===-1)return $.filePath;const F=$.filePath.slice(0,H),z=$.filePath.slice(H,H+c.length),U=$.filePath.slice(H+c.length);return d(pe,{children:[F,n("span",{className:"font-semibold text-[#005C75]",children:z}),U]})})()}),d("span",{className:"text-xs text-gray-400 ml-auto flex-shrink-0",children:[$.matchingRules.length," rule",$.matchingRules.length!==1?"s":""]})]},$.filePath))})]}),n("div",{className:"flex-1"}),d("button",{onClick:()=>o("unreviewed"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="unreviewed"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="unreviewed"?600:400,color:a==="unreviewed"?"#005C75":"#626262"},children:"Unreviewed Rules"})]}),d("button",{onClick:()=>o("all"),className:"flex items-center gap-1.5 bg-transparent cursor-pointer py-3",children:[n("span",{className:"w-2 h-2 rounded-full flex-shrink-0",style:{backgroundColor:a==="all"?"#005C75":"#d1d5db"}}),n("span",{className:"text-[12px] leading-5",style:{fontFamily:"Sora",fontWeight:a==="all"?600:400,color:a==="all"?"#005C75":"#626262"},children:"All"})]})]}),d("div",{className:"grid grid-cols-[1fr_140px_150px] px-5 py-2 border-b border-gray-100",children:[n("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium",children:"Source file"}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Rules",d("span",{className:"relative group",children:[n(sa,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full left-1/2 -translate-x-1/2 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-48 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Number of rules not yet reviewed for this file / Total number of rules that apply to this file"})]})]}),d("span",{className:"text-[11px] uppercase tracking-wider text-gray-400 font-medium flex items-center justify-center gap-1 whitespace-nowrap",children:["Unreviewed Tokens",d("span",{className:"relative group",children:[n(sa,{className:"w-3 h-3 text-gray-300 flex-shrink-0 cursor-help"}),n("span",{className:"absolute top-full right-0 mt-1.5 px-3 py-2 bg-gray-800 text-white text-[10px] leading-relaxed rounded shadow-lg w-52 text-center whitespace-normal opacity-0 pointer-events-none group-hover:opacity-100 transition-opacity z-20",children:"Estimated tokens from unreviewed rules / Total number of tokens from all rules that apply to this file"})]})]})]}),S&&n("div",{className:"px-5 py-6",children:d("div",{className:"animate-pulse space-y-3",children:[n("div",{className:"h-4 bg-gray-200 rounded w-3/4"}),n("div",{className:"h-3 bg-gray-100 rounded w-1/2"}),n("div",{className:"h-4 bg-gray-200 rounded w-2/3 mt-4"})]})}),!S&&(N.length>0||g)&&n("div",{className:"max-h-[400px] overflow-y-auto",children:(g?[g,...N.filter(L=>L.filePath!==g.filePath)].slice(0,8):N.slice(0,8)).map(($,L)=>{const H=$.matchingRules.length,F=$.matchingRules.filter(Q=>!t[Q.filePath]),z=F.length,U=F.reduce((Q,K)=>Q+K.bodyLength,0),O=z>0,_=i===$.filePath,Y=(g==null?void 0:g.filePath)===$.filePath;return d("div",{children:[d("div",{onClick:()=>l(_?null:$.filePath),className:`grid grid-cols-[1fr_140px_150px] px-5 py-2.5 items-center border-b border-gray-50 cursor-pointer ${Y?"bg-[#f0f9ff] hover:bg-[#e0f2fe]":"hover:bg-gray-50"}`,children:[d("div",{className:"flex items-center gap-2 min-w-0",children:[_?n(it,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}):n(zt,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n(Ur,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-900 truncate",title:$.filePath,children:Y?$.filePath:k($.filePath)})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:O?"font-semibold text-[#1A5276]":"text-gray-400",children:z}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:H})]}),d("span",{className:"text-sm text-center",children:[n("span",{className:O?"font-semibold text-[#1A5276]":"text-gray-400",children:Xn(U).toLocaleString()}),n("span",{className:"text-gray-300",children:" / "}),n("span",{className:"text-gray-500",children:Xn($.totalTextLength).toLocaleString()})]})]}),_&&d("div",{className:"bg-gray-50 border-b border-gray-100",children:[$.matchingRules.map(Q=>{const K=r.find(J=>J.filePath===Q.filePath),ae=t[Q.filePath]??!1;return d("div",{onClick:J=>{J.stopPropagation(),K&&s(K)},className:"flex items-center gap-2 px-5 pl-12 py-2 hover:bg-gray-100 cursor-pointer",children:[n(Br,{className:"w-3.5 h-3.5 text-gray-400 flex-shrink-0"}),n("span",{className:"text-sm text-gray-700 truncate flex-1",children:K?Ts(K.body,K.filePath):Q.filePath}),d("span",{className:"text-xs text-gray-400 flex-shrink-0",children:[Xn(Q.bodyLength).toLocaleString()," ","tokens"]}),n("div",{className:`w-4 h-4 rounded-full border-2 flex items-center justify-center flex-shrink-0 ${ae?"bg-[#005C75] border-[#005C75]":"bg-white border-gray-300"}`,children:ae&&n("svg",{width:"8",height:"6",viewBox:"0 0 10 8",fill:"none",children:n("path",{d:"M1 4L3.5 6.5L9 1",stroke:"white",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})})]},Q.filePath)}),d("div",{className:"flex items-center justify-center gap-3 px-5 py-2 border-t border-gray-200",children:[n("span",{className:"text-xs text-gray-400",children:"Have Claude audit these rules"}),n("button",{onClick:Q=>{Q.stopPropagation(),b({filePath:$.filePath,rulePaths:$.matchingRules.map(K=>K.filePath)})},className:"px-3 py-1 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer",children:"Prompt"})]})]})]},$.filePath)})}),!S&&N.length===0&&n("div",{className:"px-5 py-8 text-center text-sm text-gray-500",children:a==="unreviewed"?"No files have unreviewed rules":"No files have rule coverage yet"}),x&&n(kN,{filePath:x.filePath,rulePaths:x.rulePaths,onClose:()=>b(null)})]})}function _N({rule:e,changeInfo:t,isReviewed:r,onApprove:s,onEdit:a,onDelete:o,onClose:i}){const l=Ts(e.body,e.filePath),c=Xn(e.body.length),m=e.frontmatter.category,u=`.claude/rules/${e.filePath}`,[p,h]=M(null),f=(t==null?void 0:t.changeType)==="added"||p!=null&&p.commitCount!=null&&p.commitCount<=1&&!(p.commitCount===1&&p.isUncommitted);return te(()=>{h(null),fetch(`/api/memory?action=rule-diff&filePath=${encodeURIComponent(e.filePath)}`).then(g=>g.json()).then(g=>{g.diff&&h(g.diff)}).catch(()=>{})},[e.filePath]),te(()=>{const g=y=>{y.key==="Escape"&&i()};return document.addEventListener("keydown",g),()=>document.removeEventListener("keydown",g)},[i]),n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:i,children:d("div",{className:"rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",style:{backgroundColor:"#F8F7F6"},onClick:g=>g.stopPropagation(),children:[n("div",{className:"px-6 pt-5 pb-4",children:d("div",{className:"flex items-start justify-between",children:[d("div",{className:"min-w-0 flex-1",children:[d("div",{className:"flex items-center gap-2 mb-1.5 flex-wrap",children:[n("h2",{className:"text-[16px] font-bold text-gray-900",children:l}),t&&d(pe,{children:[n("span",{className:"text-xs text-gray-400 flex-shrink-0",children:vn(t.date)}),n("span",{className:`flex-shrink-0 text-[11px] uppercase font-semibold tracking-wider ${t.changeType==="added"?"text-green-600":t.changeType==="modified"?"text-orange-600":"text-red-600"}`,children:t.changeType})]})]}),m&&d("div",{className:"flex items-center gap-2 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"TYPE:"}),n("span",{className:"px-2 py-0.5 rounded text-[10px] uppercase font-semibold tracking-wider bg-[#E0F2F1] text-[#00796B]",children:m})]}),d("div",{className:"flex items-center gap-1.5 mb-1.5",children:[n("span",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:"FILE:"}),n("code",{className:"text-[11px] text-gray-600 font-mono",children:u}),n(At,{content:u,icon:!0,iconSize:12,className:"p-0.5 rounded text-gray-400 hover:text-gray-600 transition-colors",ariaLabel:"Copy file path"})]}),d("div",{className:"text-[11px] text-gray-400 uppercase tracking-wider font-medium",children:["TOKENS: ~",c.toLocaleString()]})]}),d("div",{className:"flex items-center gap-2 flex-shrink-0 ml-4",children:[d("button",{onClick:s,className:`flex items-center gap-1.5 px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer transition-colors ${r?"bg-green-600 text-white":"border border-green-600 text-green-700 hover:bg-green-50"}`,children:[n(lt,{className:"w-3.5 h-3.5"}),r?"Approved":"Approve"]}),n("button",{onClick:a,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-gray-300 text-gray-600 hover:bg-gray-50 transition-colors",children:"Edit"}),n("button",{onClick:o,className:"px-3 py-1.5 rounded text-xs font-medium uppercase tracking-wider cursor-pointer border border-red-300 text-red-600 hover:bg-red-50 transition-colors",children:"Delete"}),n("button",{onClick:i,className:"p-1.5 rounded text-gray-400 hover:text-gray-600 hover:bg-gray-200 cursor-pointer transition-colors ml-1",children:n(En,{className:"w-5 h-5"})})]})]})}),e.frontmatter.paths&&e.frontmatter.paths.length>0&&d("div",{className:"px-6 pb-4",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Applies to paths:"}),n("div",{className:"bg-white rounded-lg p-4 space-y-2.5",style:{border:"1px solid #E6E6E6"},children:e.frontmatter.paths.map((g,y)=>{const x=g.split("/"),b=x.pop()||g,w=x.length>0?x.join("/")+"/":"";return d("div",{className:"flex items-center gap-2 text-[13px] font-mono",children:[n(Ur,{className:"w-4 h-4 text-[#005C75] flex-shrink-0"}),d("span",{children:[w&&n("span",{className:"text-gray-500",children:w}),n("span",{className:"font-bold text-gray-900",children:b})]})]},y)})})]}),f?n("div",{className:"px-6 pb-4",children:d("div",{className:"text-[13px] text-gray-500",children:["Created"," ",t!=null&&t.date?vn(t.date):p!=null&&p.date?vn(p.date):"recently"]})}):p&&n("div",{className:"px-6 pb-4",children:d("details",{children:[d("summary",{className:"text-[13px] text-gray-700 font-semibold cursor-pointer",children:["Recent change: ",p.commitMessage," —"," ",vn(p.date)]}),n("pre",{className:"mt-2 p-4 text-xs font-mono overflow-x-auto bg-gray-900 text-gray-100 max-h-64 overflow-y-auto rounded-md",children:p.diff.split(`
439
- `).map((g,y)=>{let x="";return g.startsWith("+")&&!g.startsWith("+++")?x="text-green-400":g.startsWith("-")&&!g.startsWith("---")?x="text-red-400":g.startsWith("@@")&&(x="text-cyan-400"),n("div",{className:x,children:g},y)})})]})}),d("div",{className:"px-6 pb-6",children:[n("div",{className:"text-[13px] text-gray-700 font-semibold mb-2",children:"Rule Text:"}),n("div",{className:"bg-white rounded-lg p-6",style:{border:"1px solid #E6E6E6"},children:n(zc,{content:e.body})})]})]})})}function AN(){return d("svg",{width:"24",height:"24",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#232323"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#232323"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#232323"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#232323"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#232323"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#232323"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#232323"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#232323"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#232323"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#232323"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#232323"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#232323"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#232323"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#232323"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#232323"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#232323"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#232323"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#232323"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#232323"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#232323"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#232323"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#232323"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#232323"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#232323"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#232323"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#232323"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#232323"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#232323"})]})}function PN(){return d("svg",{width:"20",height:"20",viewBox:"0 0 27 27",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[n("rect",{x:"12",y:"24",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"3",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(90 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(90 27 12)",fill:"#005C75"}),n("rect",{x:"18",y:"24",width:"3",height:"3",transform:"rotate(90 18 24)",fill:"#005C75"}),n("rect",{x:"18",width:"3",height:"3",transform:"rotate(90 18 0)",fill:"#005C75"}),n("rect",{x:"3",y:"18",width:"3",height:"3",transform:"rotate(-180 3 18)",fill:"#005C75"}),n("rect",{x:"27",y:"18",width:"3",height:"3",transform:"rotate(-180 27 18)",fill:"#005C75"}),n("rect",{x:"21",y:"24",width:"3",height:"3",transform:"rotate(90 21 24)",fill:"#005C75"}),n("rect",{x:"3",y:"21",width:"3",height:"3",transform:"rotate(-180 3 21)",fill:"#005C75"}),n("rect",{x:"27",y:"21",width:"3",height:"3",transform:"rotate(-180 27 21)",fill:"#005C75"}),n("rect",{x:"6",y:"24",width:"3",height:"3",transform:"rotate(90 6 24)",fill:"#005C75"}),n("rect",{x:"6",width:"3",height:"3",transform:"rotate(90 6 0)",fill:"#005C75"}),n("rect",{x:"3",y:"6",width:"3",height:"3",transform:"rotate(-180 3 6)",fill:"#005C75"}),n("rect",{x:"21",y:"6",width:"3",height:"3",transform:"rotate(-180 21 6)",fill:"#005C75"}),n("rect",{x:"24",y:"24",width:"3",height:"3",transform:"rotate(90 24 24)",fill:"#005C75"}),n("rect",{x:"3",y:"24",width:"3",height:"3",transform:"rotate(-180 3 24)",fill:"#005C75"}),n("rect",{x:"27",y:"24",width:"3",height:"3",transform:"rotate(-180 27 24)",fill:"#005C75"}),n("rect",{x:"9",y:"24",width:"3",height:"3",transform:"rotate(90 9 24)",fill:"#005C75"}),n("rect",{x:"9",width:"3",height:"3",transform:"rotate(90 9 0)",fill:"#005C75"}),n("rect",{x:"9",y:"3",width:"3",height:"3",transform:"rotate(90 9 3)",fill:"#005C75"}),n("rect",{x:"9",y:"6",width:"3",height:"3",transform:"rotate(90 9 6)",fill:"#005C75"}),n("rect",{x:"9",y:"18",width:"3",height:"3",transform:"rotate(90 9 18)",fill:"#005C75"}),n("rect",{x:"3",y:"9",width:"3",height:"3",transform:"rotate(-180 3 9)",fill:"#005C75"}),n("rect",{x:"24",y:"9",width:"3",height:"3",transform:"rotate(-180 24 9)",fill:"#005C75"}),n("rect",{x:"12",y:"24",width:"3",height:"3",transform:"rotate(90 12 24)",fill:"#005C75"}),n("rect",{x:"12",width:"3",height:"3",transform:"rotate(90 12 0)",fill:"#005C75"}),n("rect",{x:"12",y:"6",width:"3",height:"3",transform:"rotate(90 12 6)",fill:"#005C75"}),n("rect",{x:"12",y:"18",width:"3",height:"3",transform:"rotate(90 12 18)",fill:"#005C75"}),n("rect",{x:"3",y:"12",width:"3",height:"3",transform:"rotate(-180 3 12)",fill:"#005C75"}),n("rect",{x:"27",y:"12",width:"3",height:"3",transform:"rotate(-180 27 12)",fill:"#005C75"})]})}function jN(){return n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans max-w-3xl mx-auto",children:[d("div",{className:"text-center mb-10",children:[n("h1",{className:"text-[22px] font-semibold mb-4",style:{fontFamily:"Sora",color:"#232323"},children:"Get Started with CodeYam Memory"}),n("p",{className:"text-[15px] text-gray-500 leading-relaxed max-w-2xl mx-auto",children:"CodeYam Memory generates path-scoped Claude Rules that load automatically when Claude works on matching files. These rules capture any confusion, architectural decisions, and tribal knowledge from your as you work with Claude, ensuring sessions become more efficient and aligned with your codebase over time."})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"Setup Steps"}),d("ol",{className:"space-y-5",children:[d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"1"}),n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Open Claude Code in your project terminal"})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"2"}),d("div",{children:[d("div",{className:"flex items-center gap-2 pt-0.5",children:[n("span",{className:"text-[14px] font-medium text-gray-900",children:"Run"}),n(Di,{value:"/codeyam-memory"}),n("span",{className:"text-[14px] font-medium text-gray-900",children:"in the Claude Code session"})]}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"This kicks off analysis of your git history to find confusion patterns."})]})]}),d("li",{className:"flex gap-3 items-start",children:[n("span",{className:"flex-shrink-0 w-7 h-7 rounded-md flex items-center justify-center text-sm font-semibold",style:{backgroundColor:"#005C75",color:"#fff"},children:"3"}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900 pt-0.5",children:"Return to this dashboard page to review the new rules"}),n("p",{className:"text-[13px] text-gray-600 mt-1",children:"You can review, edit, and approve the rules Claude creates."})]})]})]})]}),d("div",{className:"rounded-lg p-8 mb-6",style:{backgroundColor:"#EDF8FA",border:"1px solid #C8E6EC"},children:[n("h2",{className:"text-[18px] font-semibold mb-6",style:{fontFamily:"Sora",color:"#232323"},children:"What Gets Created"}),d("div",{className:"relative",children:[n("div",{className:"absolute left-[15px] top-8 bottom-4",style:{borderLeft:"2px dotted #B0BEC5"}}),d("div",{className:"space-y-6",children:[d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[d("p",{className:"text-[14px] font-medium text-gray-900",children:[n("code",{className:"bg-gray-200/60 px-1.5 py-0.5 rounded text-[13px]",children:".claude/rules/*.md"}),n("span",{className:"text-gray-400 mx-1.5",children:"—"}),"path-scoped guidance files"]}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"Markdown files with frontmatter specifying which file paths they apply to."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Rules load automatically when Claude works on matching files"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"No manual steps needed — Claude picks up relevant rules based on the files it touches."})]})]}),d("div",{className:"flex items-start gap-4 relative",children:[n("div",{className:"flex-shrink-0 w-8 h-8 rounded flex items-center justify-center",style:{backgroundColor:"#2C3E50"},children:n("div",{className:"w-3 h-3 rounded-sm bg-white/30"})}),d("div",{children:[n("p",{className:"text-[14px] font-medium text-gray-900",children:"Pre-commit hook to keep rules fresh and capture new patterns"}),n("p",{className:"text-[13px] text-gray-500 mt-1",children:"A git hook runs automatically to update rules when related code changes and looks for any new patterns of confusion in work sessions."})]})]})]})]})]}),d("div",{className:"rounded-lg px-8 py-5 flex items-center justify-center gap-3",style:{backgroundColor:"#1A2332"},children:[n("span",{className:"text-white text-[15px] font-medium",children:"Run"}),n(Di,{value:"/codeyam-memory"}),n("span",{className:"text-white text-[15px] font-medium",children:"in Claude Code to get started"})]})]})})}function Di({value:e}){const[t,r]=M(!1);return d("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"inline-flex items-center gap-1.5 px-2.5 py-1 rounded text-[13px] font-mono cursor-pointer border-0",style:{backgroundColor:"#2C3E50",color:"#E0E0E0"},title:"Copy to clipboard",children:[e,t?n(lt,{className:"w-3.5 h-3.5 text-green-400"}):d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"text-gray-400",children:[n("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]})]})}function Rr({label:e,count:t,icon:r,bgColor:s,iconBgColor:a,textColor:o}){return n("div",{className:"rounded-lg p-4",style:{backgroundColor:s,border:"1px solid #EFEFEF"},children:d("div",{className:"flex items-start gap-3",children:[n("div",{className:"w-12 h-12 rounded-lg flex items-center justify-center flex-shrink-0",style:{backgroundColor:a},children:r}),d("div",{className:"flex-1",children:[n("div",{className:"text-[32px] font-semibold leading-none mb-1",style:{color:o},children:t}),n("div",{className:"text-[11px] uppercase tracking-wider font-medium",style:{color:o},children:e})]})]})})}function TN({searchFilter:e,onSearchChange:t,onCreateNew:r,onLearnMore:s,reviewCounts:a}){return d("div",{className:"mb-8",children:[d("div",{className:"flex flex-wrap items-center justify-between gap-4 mb-6",children:[d("div",{children:[d("div",{className:"flex items-center gap-3 mb-2",children:[n(AN,{}),n("h1",{className:"text-[24px] font-semibold mb-0",style:{fontFamily:"Sora",color:"#232323"},children:"Memory"})]}),d("p",{className:"text-[15px] text-gray-500",children:["Rules help Claude understand your codebase patterns and conventions."," ",n("button",{onClick:s,className:"text-[#005C75] underline cursor-pointer",children:"Learn more about rules."})]})]}),d("div",{className:"flex items-center gap-3",children:[d("div",{className:"relative",children:[n(sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",value:e,onChange:o=>t(o.target.value),placeholder:"Search rules...",className:"w-64 pl-10 pr-4 py-2 border border-gray-200 rounded-md bg-white focus:outline-none focus:ring-2 focus:ring-[#005C75] focus:border-transparent text-sm"})]}),d("button",{onClick:r,className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(Aa,{className:"w-4 h-4"}),"New Rule"]})]})]}),d("div",{className:"grid grid-cols-2 lg:grid-cols-4 gap-4",children:[n(Rr,{label:"Total Rules",count:a.total,icon:n(PN,{}),bgColor:"#EDF1F3",iconBgColor:"#E0E9EC",textColor:"#005C75"}),n(Rr,{label:"Unreviewed",count:a.unreviewed,icon:n(Rd,{className:"w-5 h-5 text-[#1A5276]"}),bgColor:"#E9F0FB",iconBgColor:"#DBE9FF",textColor:"#1A5276"}),n(Rr,{label:"Reviewed",count:a.reviewed,icon:n(lt,{className:"w-5 h-5 text-[#1B7A4A]"}),bgColor:"#EAFBEF",iconBgColor:"#D4EDDB",textColor:"#1B7A4A"}),n(Rr,{label:"Stale",count:a.stale,icon:n(Hi,{className:"w-5 h-5 text-[#5B21B6]"}),bgColor:"#EDE9FB",iconBgColor:"#DDD6FE",textColor:"#5B21B6"})]})]})}function MN({onClose:e,onCreateNew:t}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative",onClick:r=>r.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(En,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-4",children:"What are Claude Rules?"}),n("h3",{className:"mb-4 font-semibold",children:"And how does CodeYam Memory work with Claude Rules?"}),d("div",{className:"text-gray-600 text-[15px] space-y-3 mb-6",children:[d("p",{children:["Claude Rules are a component of"," ",n("a",{href:"https://code.claude.com/docs/en/memory#modular-rules-with-claude%2Frules%2F",target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 underline",children:"Memory Management in Claude Code"}),'. The text of each rule is passed into the context window when working on the specific files described in the "paths" frontmatter field of the rule.']}),n("p",{children:"This allows you to provide context that is surgically specific to certain files in your codebase. They are a powerful tool but are harder to write and maintain than CLAUDE.md files."}),n("p",{children:"CodeYam Memory helps write and maintain Claude Rules. Hooks ensure that rules are reviewed and added during Claude Code working sessions. The CodeYam CLI Dashboard provides a page dedicated to Memory where you can view, edit, create, delete, and review Claude Rules."})]}),n("div",{className:"flex justify-center",children:d("button",{onClick:t,className:"flex items-center gap-2 px-5 py-2.5 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:[n(Aa,{className:"w-4 h-4"}),"New Rule"]})})]})})}function $N({rule:e,onConfirm:t,onCancel:r}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",children:d("div",{className:"bg-white rounded-lg p-6 max-w-md w-full mx-4",children:[n("h3",{className:"text-lg font-semibold mb-2",children:"Delete Memory?"}),d("p",{className:"text-gray-600 mb-4",children:["Are you sure you want to delete"," ",n("span",{className:"font-mono text-sm",children:e.filePath}),"? This cannot be undone."]}),d("div",{className:"flex justify-end gap-2",children:[n("button",{onClick:r,className:"px-4 py-2 text-gray-600 hover:bg-gray-100 rounded-md cursor-pointer",children:"Cancel"}),n("button",{onClick:()=>t(e),className:"px-4 py-2 bg-red-600 text-white rounded-md hover:bg-red-700 cursor-pointer",children:"Delete"})]})]})})}const Oi="Can you help me perform an interactive rules audit? Please look at all of the rules in `.claude/rules`. Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts `folder1/folder2/file1` and `folder1/folder2/folder3/file2` then the rule should be in `.claude/rules/folder1/folder2`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!",Li="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function Fi({text:e}){const[t,r]=M(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(pe,{children:[n(lt,{className:"w-4 h-4"}),"Copied!"]}):d(pe,{children:[n(pt,{className:"w-4 h-4"}),"Copy Prompt"]})})}function IN({onClose:e}){return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:t=>t.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(En,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit All Rules"}),n("p",{className:"text-gray-600 text-sm mb-4",children:"Claude can review all rules to look for information that is inconsistent, inappropriate, duplicative, inefficient, etc."}),n("textarea",{readOnly:!0,value:Oi,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Fi,{text:Oi})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:Li,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Fi,{text:Li})})]})]})})}function RN(){const[e,t]=M(!1);return d(pe,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit All Rules"}),n("p",{className:"text-sm text-gray-500",children:"Ask Claude to review, audit, and improve all rules."}),n("button",{onClick:()=>t(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),e&&n(IN,{onClose:()=>t(!1)})]})}function DN(e){return`Can you help me review my unreviewed rules? The following rules in \`.claude/rules\` have not been reviewed yet:
440
-
441
- ${e.map(r=>`- \`.claude/rules/${r}\``).join(`
442
- `)}
443
-
444
- Are they organized properly? Ideally they should be in a folder that is the best representation of the files they impact (e.g. if the rule impacts \`folder1/folder2/file1\` and \`folder1/folder2/folder3/file2\` then the rule should be in \`.claude/rules/folder1/folder2\`). Do they make sense? Are they oriented toward avoiding future confusion (vs documenting bug fixes or temporary workarounds, etc)? Please literally read each one to ensure you understand what it is saying and learn something useful from it. Are they concise and efficient in their communication? We want to be respectful of the context window so any information in a rule that does not make sense, is not particularly helpful, or is repetitive should be removed. All other information should be presented as directly as possible. Bullets and tables can help with this as opposed to paragraphs. Take into consideration how rules interact as any one file may have multiple rules applied to it. Please look at the impacted files as well to ensure that it is an appropriate rule for them and to ensure the rule is not just repeating information that can be ascertained from the code. We don't want Claude to have to read a large number of files (or a single very large file) to figure out how everything works, so architectural guidance can be quite valuable, but information that is specific to one file and can be ascertained by the code and comments in that file is unnecessary. Too often rules reflect past confusion that has been resolved and is unlikely to happen again. Content and rules like this should be removed. If you have any questions please ask!`}const zi="Can you mark all of these rules as reviewed in `.claude/codeyam-rule-state.json`?";function Bi({text:e}){const[t,r]=M(!1);return n("button",{onClick:()=>{navigator.clipboard.writeText(e),r(!0),setTimeout(()=>r(!1),2e3)},className:"flex items-center gap-2 px-4 py-2 rounded-md hover:opacity-90 cursor-pointer font-mono uppercase text-xs font-semibold text-white",style:{backgroundColor:"#1A2332"},children:t?d(pe,{children:[n(lt,{className:"w-4 h-4"}),"Copied!"]}):d(pe,{children:[n(pt,{className:"w-4 h-4"}),"Copy Prompt"]})})}function ON({onClose:e,unreviewedRulePaths:t}){const r=DN(t);return n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center z-50",onClick:e,children:d("div",{className:"bg-white rounded-lg p-8 max-w-xl w-full mx-4 relative max-h-[90vh] overflow-y-auto",onClick:s=>s.stopPropagation(),children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 cursor-pointer",children:n(En,{className:"w-6 h-6"})}),n("h2",{className:"text-xl font-bold mb-2",children:"Audit Unreviewed Rules"}),d("p",{className:"text-gray-600 text-sm mb-4",children:["Claude will review only the ",t.length," unreviewed"," ",t.length===1?"rule":"rules"," for quality, relevance, and organization."]}),n("textarea",{readOnly:!0,value:r,className:"w-full h-48 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Bi,{text:r})}),d("div",{className:"border-t border-gray-200 mt-6 pt-5",children:[n("p",{className:"text-gray-500 text-sm mb-3",children:"If you would like to avoid reviewing all of the changes Claude makes you can ask Claude to mark all rules as reviewed."}),n("textarea",{readOnly:!0,value:zi,className:"w-full h-16 p-3 text-sm font-mono bg-gray-50 border border-gray-200 rounded-md resize-none focus:outline-none"}),n("div",{className:"flex justify-end mt-3",children:n(Bi,{text:zi})})]})]})})}function LN({unreviewedRulePaths:e}){const[t,r]=M(!1);return e.length===0?d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3 opacity-50",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),n("p",{className:"text-sm text-gray-500",children:"All rules have been reviewed."})]}):d(pe,{children:[d("div",{className:"border border-gray-200 rounded-lg px-5 py-4 flex items-center gap-3",children:[n("h3",{className:"text-[14px] leading-6 text-[#232323] flex-shrink-0",style:{fontFamily:"Sora",fontWeight:600},children:"Audit Unreviewed Rules"}),d("p",{className:"text-sm text-gray-500",children:["Ask Claude to review the ",e.length," unreviewed"," ",e.length===1?"rule":"rules","."]}),n("button",{onClick:()=>r(!0),className:"px-4 py-2 text-xs font-medium text-[#005C75] border border-[#005C75] rounded hover:bg-[#f0f9ff] cursor-pointer flex-shrink-0",children:"Get Prompt"})]}),t&&n(ON,{onClose:()=>r(!1),unreviewedRulePaths:e})]})}const FN=()=>[{title:"Memory - CodeYam"},{name:"description",content:"Manage Claude Memory documentation"}];async function zN({request:e}){try{const r=await(await fetch(new URL("/api/memory",e.url).toString())).json();return r.error?Z({memories:[],reviewedStatus:{},memoryInitialized:r.memoryInitialized??!1,error:r.error}):r.memoryInitialized??!1?Z({memories:r.memories||[],reviewedStatus:r.reviewedStatus||{},memoryInitialized:!0,error:null}):Z({memories:[],reviewedStatus:{},memoryInitialized:!1,error:null})}catch(t){return console.error("Failed to load memories:",t),Z({memories:[],reviewedStatus:{},memoryInitialized:!1,error:"Failed to load memories"})}}const BN=Ye(function(){const{memories:t,reviewedStatus:r,memoryInitialized:s,error:a}=He(),o=Le(),i=Ct(),[l,c]=M(""),[m,u]=M(null),[p,h]=M(new Set(["root"])),[f,g]=M(null),[y,x]=M(!1),[b,w]=M(null),[v,C]=M(0),[A,S]=M(!1),[E,N]=M(null),[k,j]=M(null),[T,P]=M({}),R=J=>{h(D=>{const W=new Set(D);return W.has(J)?W.delete(J):W.add(J),W})};gt({source:"memory-page"});const I=oe(()=>({...r,...T}),[r,T]),$=be(o.state);te(()=>{const J=$.current==="loading"||$.current==="submitting",D=o.state==="idle";J&&D&&o.data&&(i.revalidate(),g(null),x(!1),C(W=>W+1)),$.current=o.state},[o.state,o.data,i]),te(()=>{P(J=>{const D={};for(const[W,G]of Object.entries(J))r[W]!==G&&(D[W]=G);return Object.keys(D).length===Object.keys(J).length?J:D})},[r]);const L=(J,D)=>{P(W=>({...W,[J]:!0})),o.submit({action:"mark-reviewed",filePath:J,lastModified:D},{method:"POST",action:"/api/memory",encType:"application/json"})},H=J=>{P(D=>({...D,[J]:!1})),o.submit({action:"mark-unreviewed",filePath:J},{method:"POST",action:"/api/memory",encType:"application/json"})},F=(J,D)=>{N(J),j(D??null)},z=oe(()=>{let J=t;if(l.trim()){const D=l.toLowerCase();J=J.filter(W=>{var ne;return(((ne=W.filePath.split("/").pop())==null?void 0:ne.replace(".md",""))||"").toLowerCase().includes(D)||W.body.toLowerCase().includes(D)})}return J},[t,l]),U=oe(()=>m?z.some(D=>D.filePath===m)?z.filter(D=>D.filePath===m):z.filter(D=>D.filePath.startsWith(m+"/")||D.filePath===m):z,[z,m]),O=(J,D)=>{const W=f?"update":"create";o.submit({action:W,filePath:J,content:D},{method:"POST",action:"/api/memory",encType:"application/json"})},_=J=>{o.submit({action:"delete",filePath:J.filePath},{method:"POST",action:"/api/memory",encType:"application/json"}),w(null)},Y=oe(()=>{const J=t.filter(D=>I[D.filePath]).length;return{total:t.length,reviewed:J,unreviewed:t.length-J,stale:0}},[t,I]),Q=oe(()=>{const J=new Set(["root"]);for(const D of z){const W=D.filePath.split("/");W.pop();let G="";for(const ne of W)G=G?`${G}/${ne}`:ne,J.add(G)}return J},[z]),K=Q.size===p.size&&[...Q].every(J=>p.has(J)),ae=()=>{h(K?new Set(["root"]):new Set(Q))};return a?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:a})]})}):s?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-6 sm:px-12 lg:px-20 py-8 lg:py-12 font-sans",children:[n(TN,{searchFilter:l,onSearchChange:c,onCreateNew:()=>x(!0),onLearnMore:()=>S(!0),reviewCounts:Y}),(y||f)&&n("div",{className:"fixed inset-0 flex items-center justify-center z-[9999] p-4",style:{backgroundColor:"rgba(0, 0, 0, 0.8)"},onClick:()=>{x(!1),g(null)},children:n("div",{className:"bg-white rounded-lg shadow-xl max-w-4xl w-full max-h-[90vh] overflow-auto",onClick:J=>J.stopPropagation(),children:n(wN,{rule:f,onSave:O,onCancel:()=>{x(!1),g(null)}})})}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(CN,{memories:z,reviewedStatus:I,onViewRule:F,refreshKey:v}),n(EN,{onEditRule:g,onDeleteRule:w,refreshKey:v,reviewedStatus:I,onMarkReviewed:L,onMarkUnreviewed:H,memories:t,onViewRule:F})]}),d("div",{className:"grid grid-cols-1 lg:grid-cols-2 gap-6 lg:gap-8 mb-8",children:[n(LN,{unreviewedRulePaths:t.filter(J=>!I[J.filePath]).map(J=>J.filePath)}),n(RN,{})]}),d("div",{className:"flex items-center justify-between mb-4",children:[n("h2",{className:"text-xl leading-6 text-[#232323]",style:{fontFamily:"Sora",fontWeight:600},children:"All Rules"}),n("div",{className:"flex items-center gap-4",children:Q.size>1&&n("button",{onClick:ae,className:"text-xs text-[#005C75] hover:underline cursor-pointer font-mono uppercase font-semibold",children:K?"Collapse All":"Expand All"})})]}),d("div",{className:"flex gap-6",children:[n("div",{className:"hidden lg:block w-80 flex-shrink-0",children:n(vN,{memories:z,selectedPath:m,onSelectPath:u,expandedFolders:p,onToggleFolder:R})}),n("div",{className:"flex-1 min-w-0",children:t.length===0?d("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:[n(Dd,{className:"w-12 h-12 text-gray-300 mx-auto mb-4"}),n("h3",{className:"text-lg font-medium text-gray-900 mb-2",children:"No Rules Yet"}),d("p",{className:"text-gray-500 mb-4",children:["Run"," ",n("code",{className:"bg-gray-100 px-2 py-1 rounded",children:"/codeyam-memory"})," ","to generate initial memories for your codebase."]}),d("button",{onClick:()=>x(!0),className:"inline-flex items-center gap-2 px-4 py-2 bg-[#005C75] text-white rounded-md hover:bg-[#004a5e] cursor-pointer",children:[n(Aa,{className:"w-4 h-4"}),"Create Your First Memory"]})]}):d("div",{children:[m&&d("div",{className:"flex items-center gap-2 text-sm text-gray-600 mb-4",children:["Showing rules in"," ",n("span",{className:"font-mono bg-gray-100 px-1.5 py-0.5 rounded",children:m||"(root)"}),n("button",{onClick:()=>u(null),className:"text-[#005C75] hover:underline cursor-pointer",children:"Clear filter"})]}),n(NN,{memories:U,onEdit:g,onDelete:w,expandedFolders:p,onToggleFolder:R,reviewedStatus:I,onMarkReviewed:L,onMarkUnreviewed:H,onViewRule:F})]})})]}),n("div",{className:"mt-8 mb-8",children:n(fe,{to:"/agent-transcripts",className:"block bg-white border border-gray-200 rounded-lg p-5 hover:border-[#005C75] hover:shadow-sm transition-all group",children:d("div",{className:"flex items-center gap-3",children:[n("div",{className:"w-10 h-10 rounded-lg bg-[#EDF1F3] flex items-center justify-center",children:d("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"none",stroke:"#005C75",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round",children:[n("polyline",{points:"4 17 10 11 4 5"}),n("line",{x1:"12",y1:"19",x2:"20",y2:"19"})]})}),d("div",{children:[n("h3",{className:"text-sm font-semibold text-[#232323] group-hover:text-[#005C75]",style:{fontFamily:"Sora"},children:"Agent Transcripts"}),n("p",{className:"text-xs text-gray-500",children:"View background agent transcripts and tool call history"})]})]})})}),E&&!f&&(()=>{const J=t.find(D=>D.filePath===E.filePath)??E;return n(_N,{rule:J,changeInfo:k??void 0,isReviewed:I[J.filePath]??!1,onApprove:()=>{I[J.filePath]??!1?H(J.filePath):L(J.filePath,J.lastModified),N(null)},onEdit:()=>{g(J)},onDelete:()=>{w(J),N(null)},onClose:()=>N(null)})})(),A&&n(MN,{onClose:()=>S(!1),onCreateNew:()=>{S(!1),x(!0)}}),b&&n($N,{rule:b,onConfirm:_,onCancel:()=>w(null)})]})}):n(jN,{})}),YN=Object.freeze(Object.defineProperty({__proto__:null,default:BN,loader:zN,meta:FN},Symbol.toStringTag,{value:"Module"}));function ra(e){return`${e.filePath||""}::${e.name}`}function Uc(e,t){const r=Le(),{showToast:s}=Oa(),[a,o]=M(new Map);te(()=>{if(r.state==="idle"&&r.data){const h=r.data;h!=null&&h.error&&s(`Error: ${h.error}`,"error",6e3)}},[r.state,r.data,s]),te(()=>{var f;if(a.size===0)return;const h=new Set;(f=t==null?void 0:t.jobs)==null||f.forEach(g=>{var y;(y=g.entityShas)==null||y.forEach(x=>{a.forEach((b,w)=>{b===x&&h.add(w)})})}),e==null||e.forEach(g=>{a.forEach((y,x)=>{y===g&&h.add(x)})}),h.size>0&&o(g=>{const y=new Map(g);return h.forEach(x=>y.delete(x)),y})},[t,e,a]);const i=le(h=>{console.log("Generate analysis clicked for entity:",h.sha,h.name);const f=ra(h);o(y=>new Map(y).set(f,h.sha));const g=new FormData;g.append("entitySha",h.sha),g.append("filePath",h.filePath||""),r.submit(g,{method:"post",action:"/api/analyze"})},[r]),l=le(h=>{const f=h.filter(x=>x.entityType==="visual"||x.entityType==="library");console.log("Generate analysis for all entities:",f.length),o(x=>{const b=new Map(x);return f.forEach(w=>b.set(ra(w),w.sha)),b});const g=f.map(x=>x.sha).join(","),y=new FormData;y.append("entityShas",g),r.submit(y,{method:"post",action:"/api/analyze"})},[r]),c=le(h=>(e==null?void 0:e.includes(h))??!1,[e]),m=le(h=>{const f=ra(h);return a.has(f)},[a]),u=le(h=>{var f;return((f=t==null?void 0:t.jobs)==null?void 0:f.some(g=>{var y;return(y=g.entityShas)==null?void 0:y.includes(h)}))??!1},[t]),p=oe(()=>Array.from(a.keys()),[a]);return{isAnalyzing:r.state!=="idle",handleGenerateSimulation:i,handleGenerateAllSimulations:l,isEntityBeingAnalyzed:c,isEntityPending:m,isEntityInQueue:u,pendingEntityKeys:p}}function xo({showActions:e=!1,sortOrder:t="desc",onSortChange:r,onAnalyzeAll:s,analyzeAllDisabled:a=!1,analyzeAllText:o="Analyze All"}){return n("div",{className:"bg-[#efefef] rounded-lg mb-2 text-[11px] font-normal leading-[16px] text-[#3e3e3e] uppercase",children:d("div",{className:"flex justify-between items-center px-3 py-2",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4"}),n("span",{children:"FILE"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:n("span",{children:"STATE"})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:n("span",{children:"SIMULATIONS"})}),d("div",{className:"flex gap-4 items-center",children:[n("span",{className:"text-center",style:{width:"70px"},children:"ENTITIES"}),d("div",{className:"flex items-center justify-center gap-1 cursor-pointer hover:text-[#232323] transition-colors",style:{width:"116px"},onClick:r,role:"button",tabIndex:0,onKeyDown:i=>{(i.key==="Enter"||i.key===" ")&&(i.preventDefault(),r==null||r())},children:[n("span",{children:"MODIFIED"}),n("svg",{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{transform:t==="asc"?"rotate(180deg)":"rotate(0deg)",transition:"transform 0.2s ease"},children:n("path",{d:"M3 5L6 8L9 5",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})})]}),e&&n("div",{className:"text-center",style:{width:"127px"},children:s&&n("button",{onClick:s,disabled:a,className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer disabled:bg-gray-400 disabled:cursor-not-allowed whitespace-nowrap px-3 py-1.5 normal-case",title:a?o:"Analyze all entities",children:o})})]})]})]})})}function UN({status:e,variant:t="compact"}){const r={modified:{label:"M",bgColor:"bg-[#f59e0c]"},added:{label:"A",bgColor:"bg-emerald-500"},deleted:{label:"D",bgColor:"bg-red-500",showWarning:!0},renamed:{label:"R",bgColor:"bg-indigo-500"},untracked:{label:"U",bgColor:"bg-purple-500"}},s={modified:{label:"MODIFIED",textColor:"#BB6BD9"},added:{label:"ADDED",textColor:"#F2994A"},deleted:{label:"DELETED",textColor:"#EF4444"},renamed:{label:"RENAMED",textColor:"#3B82F6"},untracked:{label:"UNTRACKED",textColor:"#6B7280"}};if(t==="full"){const o=s[e]||{label:"UNKNOWN",textColor:"#6B7280"};return n("div",{className:"bg-[#f9f9f9] inline-flex items-center justify-center px-[5px] py-0 rounded",style:{height:"22px"},children:n("span",{className:"text-[10px] font-['IBM_Plex_Sans'] font-medium leading-[22px]",style:{color:o.textColor},children:o.label})})}const a=r[e]||{label:"?",bgColor:"bg-gray-500"};return d("div",{className:"inline-flex items-center gap-1",children:[n("span",{className:`inline-flex items-center justify-center w-5 h-5 text-[11px] font-bold text-white rounded ${a.bgColor}`,title:e,children:a.label}),a.showWarning&&n("span",{className:"inline-flex items-center justify-center w-3 h-3 text-[10px] text-amber-600",title:"Warning: File will be deleted",children:"⚠"})]})}function bo({filePath:e,isExpanded:t,onToggle:r,fileStatus:s,simulationPreviews:a,entityCount:o,state:i,lastModified:l,actionButton:c,uncommittedCount:m,children:u,isNotAnalyzable:p=!1,isUncommitted:h=!1}){return d("div",{className:"bg-white overflow-hidden",style:t?{border:"1px solid #e1e1e1",borderLeft:"4px solid #005C75",borderRadius:"8px"}:{borderBottom:"1px solid #e1e1e1"},children:[d("div",{className:`flex justify-between items-center p-3 cursor-pointer select-none transition-colors ${p?"opacity-50":"hover:bg-gray-200"}`,style:{outlineColor:"#005C75"},onClick:r,role:"button",tabIndex:0,onKeyDown:f=>{(f.key==="Enter"||f.key===" ")&&(f.preventDefault(),r())},children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 inline-flex items-center justify-center shrink-0",style:{transform:t?"rotate(90deg)":"none"},children:n("svg",{width:"10",height:"12",viewBox:"0 0 10 12",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:n("path",{d:"M1.5 1.268L8.5 6L1.5 10.732V1.268Z",fill:t?"#3e3e3e":"#c7c7c7"})})}),n("img",{src:"/icons/file-icon.svg",alt:"file",className:"w-4 h-5 shrink-0"}),n(tl,{filePath:e}),s&&n(UN,{status:typeof s=="string"?s:s.status,variant:"full"}),h&&i==="out-of-date"&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"100px"},children:(h||i==="out-of-date")&&d("div",{className:"flex gap-1.5 items-center",children:[h&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fff3cd",color:"#856404",height:"22px"},children:"Uncommitted"}),i==="out-of-date"&&!h&&n("span",{className:"text-[11px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#fdf9c9",color:"#c69538",height:"22px"},children:"Out of date"})]})}),n("div",{className:"flex items-center justify-center h-[38px]",style:{width:"70px"},children:a}),d("div",{className:"flex gap-4 items-center",children:[n("div",{className:"flex items-center justify-center",style:{width:"70px"},children:n("div",{className:"bg-[#f9f9f9] flex items-center justify-center px-2 rounded whitespace-nowrap",style:{height:"26px"},children:d("span",{className:"text-[13px] text-[#3e3e3e]",children:[o," ",o===1?"entity":"entities"]})})}),n("div",{className:"text-[12px] text-gray-600 text-center",style:{width:"116px"},children:Pc(l)}),n("div",{style:{width:"127px"},className:"flex justify-center",children:c})]})]})]}),t&&u&&n("div",{className:"bg-gray-50 py-2 rounded-bl-[4px] rounded-br-[4px] flex flex-col gap-1",children:u})]})}function wo({entities:e,maxPreviews:t=3}){var s,a,o,i,l;const r=[];for(const c of e){if(r.length>=t)break;const m=((a=(s=c.analyses)==null?void 0:s[0])==null?void 0:a.scenarios)||[];if(c.entityType==="library"){const u=m.find(p=>{var h,f;return((h=p.metadata)==null?void 0:h.executionResult)||((f=p.metadata)==null?void 0:f.error)});u&&r.push({type:"library",scenario:u,entitySha:c.sha})}else if(c.entityType==="visual"){const u=m.find(p=>{var h,f;return(f=(h=p.metadata)==null?void 0:h.screenshotPaths)==null?void 0:f[0]});if(u){const p=(i=(o=u.metadata)==null?void 0:o.screenshotPaths)==null?void 0:i[0],h=!!((l=u.metadata)!=null&&l.error);p&&r.push({type:"screenshot",screenshot:p,hasError:h,scenario:u,entitySha:c.sha})}}}return r.length===0?n("span",{className:"text-gray-400 font-light text-[14px]",children:"—"}):n(pe,{children:r.map((c,m)=>{if(c.type==="screenshot"&&c.screenshot){const u=c.hasError?"border-red-400":"border-gray-200";return d(fe,{to:c.scenario?`/entity/${c.entitySha}/scenarios/${c.scenario.id}`:`/entity/${c.entitySha}`,className:`relative w-[50px] h-[38px] border ${u} rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center cursor-pointer transition-all hover:scale-105 hover:shadow-md`,onClick:p=>p.stopPropagation(),children:[n(Ge,{screenshotPath:c.screenshot,alt:`Preview ${m+1}`,className:"max-w-full max-h-full object-contain object-center"}),c.hasError&&n("div",{className:"absolute top-0 right-0 w-4 h-4 bg-red-500 text-white flex items-center justify-center text-[10px] rounded-bl",title:"Error during capture",children:n(zr,{size:12,color:"white"})})]},`screenshot-${m}`)}return c.type==="library"&&c.scenario&&c.entitySha?n(_c,{scenario:c.scenario,entitySha:c.entitySha,size:"small",showBorder:!0},`library-${m}`):null})})}function vo({entity:e,isActivelyAnalyzing:t,isQueued:r,onGenerateSimulation:s}){var u,p;const a=t||r?[{entityShas:[e.sha]}]:[],o=at(e,a,t),i=e.entityType==="visual"||e.entityType==="library",l=i&&(o==="not-analyzed"||o==="out-of-date")&&!t&&!r,m=(((p=(u=e.analyses)==null?void 0:u[0])==null?void 0:p.scenarios)||[]).filter(h=>{var f,g;return(g=(f=h.metadata)==null?void 0:f.screenshotPaths)==null?void 0:g[0]});return d("div",{className:"bg-white rounded-lg",children:[d(fe,{to:`/entity/${e.sha}`,className:"flex items-center justify-between p-3 transition-colors hover:bg-gray-100 cursor-pointer",children:[d("div",{className:"flex items-center gap-2 flex-1 min-w-0",children:[n("span",{className:"w-4 shrink-0"}),e.entityType==="type"?n("div",{className:"bg-[#ffe1e1] inline-flex items-center justify-center px-[4px] rounded-[4px]",style:{height:"18px",width:"18px"},children:n("div",{className:"w-[10px] h-[10px] flex items-center justify-center",children:n(nt,{type:"type"})})}):n(nt,{type:e.entityType||"other"}),n("span",{className:`font-['IBM_Plex_Sans'] text-[14px] leading-[18px] text-black ${i?"font-medium":"font-normal"}`,children:e.name}),n(lo,{type:e.entityType||"other"})]}),d("div",{className:"flex items-center gap-3 shrink-0",children:[n("div",{style:{width:"160px"}}),d("div",{className:"flex gap-4 items-center",children:[n("div",{style:{width:"70px"}}),n("div",{style:{width:"116px"}}),n("div",{style:{width:"127px"},className:"flex justify-center items-center",children:i?o==="queued"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#cbf3fa",color:"#3098b4",height:"26px"},children:[d("svg",{width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"#3098b4",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[n("circle",{cx:"12",cy:"12",r:"10"}),n("polyline",{points:"12,6 12,12 16,14"})]}),"Queued"]}):o==="analyzing"?d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):o==="up-to-date"?n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):o==="out-of-date"?n("button",{onClick:h=>{h.preventDefault(),h.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):l&&n("button",{onClick:h=>{h.preventDefault(),h.stopPropagation(),s(e)},className:"bg-[#e0e9ec] text-[#005c75] rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#d0dfe5] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:"Analyze"}):n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"})})]})]})]}),m.length>0&&n("div",{className:"px-3 pb-3 pt-0 flex items-center gap-2 pl-[52px]",children:m.map((h,f)=>{var y,x;const g=(x=(y=h.metadata)==null?void 0:y.screenshotPaths)==null?void 0:x[0];return g?n(fe,{to:`/entity/${e.sha}?scenario=${h.id}`,className:"relative w-[120px] h-[90px] border border-gray-200 rounded overflow-hidden bg-gray-50 shrink-0 flex items-center justify-center hover:border-gray-400 transition-colors",onClick:b=>b.stopPropagation(),children:n(Ge,{screenshotPath:g,alt:h.name,className:"max-w-full max-h-full object-contain object-center"})},h.id):null})})]})}function WN({entities:e,page:t,itemsPerPage:r=50,currentRun:s,filter:a,entityType:o,queueState:i,isEntityPending:l,pendingEntityKeys:c,onGenerateSimulation:m,onGenerateAllSimulations:u,totalFilesCount:p,totalEntitiesCount:h,uncommittedFilesCount:f,showOnlyUncommitted:g,onToggleUncommitted:y}){const[x,b]=kn(),[w,v]=M(new Set),[C,A]=M(""),[S,E]=M(!1),[N,k]=M("all"),[j,T]=M("desc"),P=o||"all",R=oe(()=>{let _=e;return P!=="all"&&(_=_.filter(Y=>Y.entityType===P)),a==="analyzed"&&(_=_.filter(Y=>Y.analyses&&Y.analyses.length>0)),_},[e,P,a]),I=oe(()=>{const _=new Map,Y=new Map,Q=new Map;R.forEach(D=>{var ne,se;const W=`${D.filePath}::${D.name}`,G=Y.get(W);if(!G)Y.set(W,D),Q.set(W,[]);else{const re=((ne=G.metadata)==null?void 0:ne.editedAt)||G.createdAt||"",ee=((se=D.metadata)==null?void 0:se.editedAt)||D.createdAt||"";let de=!1;if(ee>re)de=!0;else if(ee===re){const me=G.createdAt||"";de=(D.createdAt||"")>me}de?(Q.get(W).push(G),Y.set(W,D)):Q.get(W).push(D)}}),Y.forEach((D,W)=>{var ne;if(!(D.analyses&&D.analyses.length>0)&&((ne=D.metadata)!=null&&ne.previousVersionWithAnalyses)){const re=(Q.get(W)||[]).find(ee=>{var de;return ee.sha===((de=D.metadata)==null?void 0:de.previousVersionWithAnalyses)});re&&re.analyses&&re.analyses.length>0&&(D.analyses=re.analyses)}}),Array.from(Y.values()).sort((D,W)=>{var se,re,ee,de;const G=!((se=D.metadata)!=null&&se.notExported)&&!((re=D.metadata)!=null&&re.namedExport),ne=!((ee=W.metadata)!=null&&ee.notExported)&&!((de=W.metadata)!=null&&de.namedExport);return G&&!ne?-1:!G&&ne?1:0}).forEach(D=>{var re,ee,de,me,Te;const W=D.filePath??"No File Path";_.has(W)||_.set(W,{filePath:W,entities:[],totalCount:0,uncommittedCount:0,lastUpdated:null,previewScreenshots:[],previewScreenshotErrors:[],previewLibraryScenarios:[],state:"up-to-date",simulationCount:0});const G=_.get(W);G.entities.push(D),G.totalCount++,(re=D.metadata)!=null&&re.isUncommitted&&G.uncommittedCount++;const ne=((me=(de=(ee=D.analyses)==null?void 0:ee[0])==null?void 0:de.scenarios)==null?void 0:me.length)||0;G.simulationCount+=ne;const se=((Te=D.metadata)==null?void 0:Te.editedAt)||D.updatedAt;se&&(!G.lastUpdated||new Date(se)>new Date(G.lastUpdated))&&(G.lastUpdated=se)});const K=(i==null?void 0:i.jobs)||[],ae=D=>{const W=`${D.filePath||""}::${D.name}`;return(c==null?void 0:c.includes(W))||!1};_.forEach(D=>{const W=D.entities.map(G=>ae(G)?"queued":at(G,K));W.includes("analyzing")||W.includes("queued")?D.state="analyzing":W.includes("incomplete")?D.state="incomplete":W.includes("out-of-date")?D.state="out-of-date":W.includes("not-analyzed")?D.state="not-analyzed":D.state="up-to-date"}),_.forEach(D=>{var W,G,ne,se,re;for(const ee of D.entities){if(D.previewScreenshots.length+D.previewLibraryScenarios.length>=3)break;const me=((G=(W=ee.analyses)==null?void 0:W[0])==null?void 0:G.scenarios)||[];if(ee.entityType==="library"){const Te=me.find(xe=>{var Ce,$e;return((Ce=xe.metadata)==null?void 0:Ce.executionResult)||(($e=xe.metadata)==null?void 0:$e.error)});Te&&D.previewLibraryScenarios.push({scenario:Te,entitySha:ee.sha})}else{const Te=me.find(xe=>{var Ce,$e;return($e=(Ce=xe.metadata)==null?void 0:Ce.screenshotPaths)==null?void 0:$e[0]});if(Te){const xe=(se=(ne=Te.metadata)==null?void 0:ne.screenshotPaths)==null?void 0:se[0],Ce=!!((re=Te.metadata)!=null&&re.error);xe&&!D.previewScreenshots.includes(xe)&&(D.previewScreenshots.push(xe),D.previewScreenshotErrors.push(Ce))}}}});const J=Array.from(_.values());return J.sort((D,W)=>{if(a==="analyzed"){const se=Math.max(...D.entities.filter(ee=>{var de,me;return(me=(de=ee.analyses)==null?void 0:de[0])==null?void 0:me.createdAt}).map(ee=>new Date(ee.analyses[0].createdAt).getTime()),0),re=Math.max(...W.entities.filter(ee=>{var de,me;return(me=(de=ee.analyses)==null?void 0:de[0])==null?void 0:me.createdAt}).map(ee=>new Date(ee.analyses[0].createdAt).getTime()),0);return j==="desc"?re-se:se-re}if(D.uncommittedCount>0&&W.uncommittedCount===0)return-1;if(D.uncommittedCount===0&&W.uncommittedCount>0)return 1;const G=D.lastUpdated?new Date(D.lastUpdated).getTime():0,ne=W.lastUpdated?new Date(W.lastUpdated).getTime():0;return j==="desc"?ne-G:G-ne}),J},[R,a,j,i,c]),$=oe(()=>{let _=I;if(N!=="all"&&(_=_.filter(Y=>Y.state===N)),C.trim()){const Y=C.toLowerCase();_=_.filter(Q=>Q.filePath.toLowerCase().includes(Y))}return _},[I,C,N]),L=(t-1)*r,H=L+r,F=$.slice(L,H),z=Math.ceil($.length/r),U=_=>{v(Y=>{const Q=new Set(Y);return Q.has(_)?Q.delete(_):Q.add(_),Q})},O=()=>{T(_=>_==="desc"?"asc":"desc")};return d("div",{children:[d("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Filters"}),d("div",{className:"flex gap-3",children:[d("div",{className:"relative w-[130px]",children:[d("select",{value:P,onChange:_=>{const Y=_.target.value,Q=new URLSearchParams(x);Y==="all"?Q.delete("entityType"):Q.set("entityType",Y),Q.set("page","1"),b(Q)},className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All Types"}),n("option",{value:"visual",children:"Visual"}),n("option",{value:"library",children:"Library"})]}),n(it,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"relative w-[130px]",children:[d("select",{value:N,onChange:_=>k(_.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:[n("option",{value:"all",children:"All States"}),n("option",{value:"analyzing",children:"Analyzing..."}),n("option",{value:"up-to-date",children:"Up to date"}),n("option",{value:"incomplete",children:"Incomplete"}),n("option",{value:"out-of-date",children:"Out of date"}),n("option",{value:"not-analyzed",children:"Not analyzed"})]}),n(it,{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none"})]}),d("div",{className:"flex-1 relative",children:[n(sr,{className:"absolute left-3 top-1/2 -translate-y-1/2 w-4 h-4 text-gray-400"}),n("input",{type:"text",placeholder:"Search component",value:C,onChange:_=>A(_.target.value),className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})]})]}),p!==void 0&&h!==void 0&&f!==void 0&&n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:$.length})," ",$.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:$.reduce((_,Y)=>_+Y.totalCount,0)})," ",$.reduce((_,Y)=>_+Y.totalCount,0)===1?"entity":"entities"]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),g?d("button",{onClick:y,className:"flex items-center gap-2 text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase cursor-pointer",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[$.filter(_=>_.uncommittedCount>0).length," ","uncommitted"," ",$.filter(_=>_.uncommittedCount>0).length===1?"file":"files",n("svg",{className:"w-3.5 h-3.5",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",d:"M6 18L18 6M6 6l12 12"})})]}):d("button",{onClick:y,className:"text-[#005c75] underline hover:text-[#004a5e] transition-colors ml-2 font-mono uppercase",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[f," uncommitted"," ",f===1?"file":"files"]})]}),F.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:()=>{v(new Set(F.map(_=>_.filePath))),E(!0)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Gi,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:()=>{v(new Set),E(!1)},className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(qi,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),n(xo,{showActions:!0,sortOrder:j,onSortChange:O}),n("div",{className:"flex flex-col gap-[3px]",children:F.map(_=>{const Y=w.has(_.filePath),K=_.entities.filter(W=>(W.entityType==="visual"||W.entityType==="library")&&(at(W,(i==null?void 0:i.jobs)||[])==="not-analyzed"||at(W,(i==null?void 0:i.jobs)||[])==="out-of-date"||at(W,(i==null?void 0:i.jobs)||[])==="incomplete")).length>0,ae=W=>{var G;return((G=s==null?void 0:s.currentEntityShas)==null?void 0:G.includes(W))||!1},J=W=>{var G;return l!=null&&l(W)?!0:((G=i==null?void 0:i.jobs)==null?void 0:G.some(ne=>{var se;return(se=ne.entityShas)==null?void 0:se.includes(W.sha)}))||!1},D=W=>{m==null||m(W)};return n(bo,{filePath:_.filePath,isExpanded:Y,onToggle:()=>U(_.filePath),simulationPreviews:n(wo,{entities:_.entities,maxPreviews:1}),entityCount:_.totalCount,state:_.state,lastModified:_.lastUpdated,uncommittedCount:_.uncommittedCount,isUncommitted:_.uncommittedCount>0,actionButton:K?n("button",{onClick:W=>{W.stopPropagation();const G=_.entities.filter(ne=>(ne.entityType==="visual"||ne.entityType==="library")&&(at(ne,(i==null?void 0:i.jobs)||[])==="not-analyzed"||at(ne,(i==null?void 0:i.jobs)||[])==="out-of-date"||at(ne,(i==null?void 0:i.jobs)||[])==="incomplete"));u==null||u(G)},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors cursor-pointer px-[15px] py-0 h-[28px]",children:_.state==="out-of-date"?"Re-analyze":"Analyze"}):void 0,children:_.entities.sort((W,G)=>{var de,me,Te,xe;const ne=!((de=W.metadata)!=null&&de.notExported)&&!((me=W.metadata)!=null&&me.namedExport),se=!((Te=G.metadata)!=null&&Te.notExported)&&!((xe=G.metadata)!=null&&xe.namedExport);if(ne&&!se)return-1;if(!ne&&se)return 1;const re=W.entityType==="visual"||W.entityType==="library",ee=G.entityType==="visual"||G.entityType==="library";return re&&!ee?-1:!re&&ee?1:W.name.localeCompare(G.name)}).map(W=>n(vo,{entity:W,isActivelyAnalyzing:ae(W.sha),isQueued:J(W),onGenerateSimulation:D},W.sha))},_.filePath)})}),z>1&&d("div",{className:"flex justify-center items-center gap-4 mt-6 p-4",children:[t>1&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t-1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"← Previous"}),d("span",{children:["Page ",t," of ",z]}),t<z&&n("a",{href:`?${new URLSearchParams({...Object.fromEntries(x),page:String(t+1)}).toString()}`,className:"no-underline font-medium hover:underline",style:{color:"#005C75"},children:"Next →"})]})]})}const JN=()=>[{title:"Files & Entities - CodeYam"},{name:"description",content:"Browse your codebase files and entities"}];async function HN({request:e,context:t}){try{const r=new URL(e.url),s=parseInt(r.searchParams.get("page")||"1"),a=r.searchParams.get("filter")||null,o=r.searchParams.get("entityType"),i=t.analysisQueue,l=i?i.getState():{paused:!1,jobs:[]},[c,m]=await Promise.all([ln(),Pn()]);return Z({entities:c,currentCommit:m,page:s,filter:a,entityType:o,queueState:l})}catch(r){return console.error("Failed to load entities:",r),Z({entities:[],currentCommit:null,page:1,filter:null,entityType:null,queueState:{paused:!1,jobs:[]},error:"Failed to load entities"})}}const VN=Ye(function(){var C,A,S;const{entities:t,currentCommit:r,page:s,filter:a,entityType:o,queueState:i,error:l}=He();Ct();const[c,m]=kn(),[u,p]=M(!1);gt({source:"files-page"});const{handleGenerateSimulation:h,handleGenerateAllSimulations:f,isEntityPending:g,pendingEntityKeys:y}=Uc((A=(C=r==null?void 0:r.metadata)==null?void 0:C.currentRun)==null?void 0:A.currentEntityShas,i),x=t||[],b=oe(()=>{const E=new Set([]);for(const N of x)E.add(N.filePath??"No File Path");return Array.from(E)},[x]),w=oe(()=>{let E=x;return u&&(E=E.filter(N=>{var k;return(k=N.metadata)==null?void 0:k.isUncommitted})),E.sort((N,k)=>{var j,T,P,R,I,$;return(j=N.metadata)!=null&&j.isUncommitted&&!((T=k.metadata)!=null&&T.isUncommitted)?-1:!((P=N.metadata)!=null&&P.isUncommitted)&&((R=k.metadata)!=null&&R.isUncommitted)?1:new Date(((I=k.metadata)==null?void 0:I.editedAt)||0).getTime()-new Date((($=N.metadata)==null?void 0:$.editedAt)||0).getTime()})},[x,u]),v=oe(()=>{var N;const E=new Set([]);for(const k of x)(N=k.metadata)!=null&&N.isUncommitted&&E.add(k.filePath??"No File Path");return Array.from(E)},[x]);return l?n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-12 py-6 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900",children:"Error"}),n("p",{className:"text-base text-gray-500",children:l})]})}):x.length===0?n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n("div",{className:"bg-white rounded-lg border border-gray-200 p-12 text-center",children:d("div",{className:"max-w-md mx-auto",children:[n("h2",{className:"text-xl font-semibold text-gray-900 mb-3",children:"No entities found"}),d("p",{className:"text-[15px] text-gray-600 mb-6",children:["Your project hasn't been analyzed yet. Run"," ",n("code",{className:"px-2 py-1 bg-gray-100 rounded text-sm font-mono",children:"codeyam analyze"})," ","to extract entities from your codebase."]}),n("p",{className:"text-sm text-gray-500",children:"Entities include React components, functions, and other analyzable code elements."})]})})]})}):n("div",{className:"bg-[#f9f9f9] min-h-screen",children:d("div",{className:"px-20 py-12 font-sans",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Files & Entities"}),n("p",{className:"text-[15px] text-gray-500",children:"This is a list of all the files in your app."})]}),n(WN,{entities:w,page:s,itemsPerPage:50,currentRun:(S=r==null?void 0:r.metadata)==null?void 0:S.currentRun,filter:a,entityType:o,queueState:i,isEntityPending:g,pendingEntityKeys:y,onGenerateSimulation:h,onGenerateAllSimulations:f,totalFilesCount:b.length,totalEntitiesCount:x.length,uncommittedFilesCount:v.length,showOnlyUncommitted:u,onToggleUncommitted:()=>p(!u)})]})})}),GN=Object.freeze(Object.defineProperty({__proto__:null,default:VN,loader:HN,meta:JN},Symbol.toStringTag,{value:"Module"})),qN=()=>[{title:"Labs - CodeYam"},{name:"description",content:"Experimental features"}];async function KN({request:e}){var t;try{const r=await De();if(!r)return Z({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Project not found"});const{project:s}=await Oe(r),a=ye()||process.cwd(),o=Nc(a)||"";let i="";try{const c=await hs();if(c!=null&&c.webapps&&Array.isArray(c.webapps)){const m=c.webapps.map(u=>u.framework).filter(Boolean);m.length>0&&(i=m.join(", "))}}catch{}const l=Ec(r);return Z({labs:((t=s.metadata)==null?void 0:t.labs)??null,projectSlug:r,defaultEmail:o,detectedTechStack:i,unlockCode:l,error:null})}catch(r){return console.error("Failed to load labs config:",r),Z({labs:null,projectSlug:null,defaultEmail:"",detectedTechStack:"",unlockCode:null,error:"Failed to load labs configuration"})}}async function QN({request:e}){try{const t=await e.formData(),r=t.get("feature"),s=t.get("enabled")==="true";if(!r)return Z({success:!1,error:"Missing feature name"},{status:400});const a=await De();return a?(r==="clearAccess"?await Cn({projectSlug:a,metadataUpdate:{labs:{accessGranted:!1,simulations:!1}}}):await Cn({projectSlug:a,metadataUpdate:{labs:{[r]:s}}}),Z({success:!0,error:null})):Z({success:!1,error:"Project not found"},{status:404})}catch(t){return console.error("Failed to update labs config:",t),Z({success:!1,error:"Failed to save labs configuration"},{status:500})}}const ZN=[{id:"simulations",name:"Simulations",description:"Enable entity analysis, visual simulations, git impact analysis, file browsing, and activity monitoring. When disabled, only Memory, Labs, and Settings are accessible.",defaultEnabled:!0},{id:"enhancedClaudeTesting",name:"Enhanced Claude Testing",description:"Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!0},{id:"gitIntegration",name:"Git Integration Showing Impacted Files",description:"Lorem Ipsum Automatically generated mock data that covers the scenarios you actually care about: empty states, error states, auth flows, broken images, missing permissions.",defaultEnabled:!1}],Yi="https://docs.google.com/forms/d/e/1FAIpQLSfopqQOQsjY9S4Ns0l3xDLzGl7iYNpKa2Wn2Xzmtxj8CR1sMA/viewform",XN=[{title:"CodeYam Simulations",status:"apply for early access",desc:"CodeYam Simulations are the core of the CodeYam development experience. They leverage static code analysis and AI to generate robust data scenarios that are used to hydrate code. This creates a whole new dimension to the software development experience"},{title:"The Full CodeYam Experience",status:"more to come",desc:"CodeYam is completely rethinking the software development experience in the AI era. Focused on navigating the challenges of iteration speed, complexity, and communication, CodeYam will provide a powerful software development experience."}];function eC({onClose:e}){const t=be(null),r=be(0);return te(()=>{const s=t.current;if(!s)return;const a=100,o=2e3,i=500;let l=null,c=!1;const m=()=>{r.current=Date.now(),!l&&!c&&(l=setInterval(()=>{const u=Date.now()-r.current,p=s.scrollTop>a,h=u>o;p&&h&&(s.scrollTo({top:0,behavior:"smooth"}),c=!0,l&&(clearInterval(l),l=null))},i))};return s.addEventListener("scroll",m,{passive:!0}),()=>{s.removeEventListener("scroll",m),l&&clearInterval(l)}},[]),d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:s=>{s.target===s.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl max-w-3xl w-full mx-4 max-h-[90vh] overflow-hidden",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none z-10",children:"×"}),d("div",{ref:t,className:"overflow-y-auto max-h-[90vh] p-4 md:p-6",children:[d("div",{className:"mb-4",children:[n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Request Early Access"}),n("p",{className:"text-sm text-gray-500",children:"Complete the form below to join the waitlist for CodeYam Labs."})]}),n("div",{className:"bg-white rounded-lg overflow-hidden",children:n("iframe",{src:`${Yi}?embedded=true`,width:"100%",height:"1400",style:{border:0,minHeight:"1400px"},title:"Labs Waitlist Form",loading:"eager",children:n("div",{className:"flex items-center justify-center p-8 text-gray-600",children:d("div",{className:"text-center",children:[n("div",{className:"mb-4",children:"Loading form..."}),d("div",{className:"text-sm",children:["If this takes too long,"," ",n("a",{href:Yi,target:"_blank",rel:"noopener noreferrer",className:"text-blue-600 hover:text-blue-800 underline",children:"open the form directly"})]})]})})})})]})]})]})}function tC({onClose:e,unlockCodeInput:t,setUnlockCodeInput:r,unlockFetcher:s}){var i,l;const a=(i=s.data)==null?void 0:i.error,o=(l=s.data)==null?void 0:l.success;return d("div",{className:"fixed inset-0 z-50 flex items-center justify-center",onClick:c=>{c.target===c.currentTarget&&e()},children:[n("div",{className:"absolute inset-0 bg-black/50"}),d("div",{className:"relative bg-white rounded-xl p-8 max-w-md w-full mx-4",children:[n("button",{onClick:e,className:"absolute top-4 right-4 text-gray-400 hover:text-gray-600 text-2xl leading-none cursor-pointer bg-transparent border-none",children:"×"}),n("h3",{className:"font-serif italic text-2xl text-primary-200 mb-2",children:"Have an unlock code?"}),n("p",{className:"text-sm text-cygray-50 mb-6",children:"If you've received an unlock code, paste it below to enable Simulations immediately."}),d(s.Form,{method:"post",action:"/api/labs-unlock",className:"space-y-4",children:[n("input",{type:"text",name:"unlockCode",value:t,onChange:c=>r(c.target.value),placeholder:"CY-...",className:"w-full px-4 py-2.5 border border-gray-300 rounded-lg text-sm font-mono focus:outline-none focus:ring-2 focus:ring-primary-100 focus:border-transparent"}),n("button",{type:"submit",disabled:!t.trim()||s.state==="submitting",className:"w-full py-3 text-white border-none rounded-lg text-sm font-mono font-semibold uppercase tracking-wider cursor-pointer transition-all bg-primary-200 hover:bg-primary-100 disabled:bg-gray-400 disabled:cursor-not-allowed",children:s.state==="submitting"?"Validating...":"Unlock"}),a&&n("p",{className:"text-red-600 text-sm mt-2",children:a}),o&&n("p",{className:"text-emerald-600 text-sm mt-2",children:"Simulations enabled! Refresh the page to see all tabs."})]})]})]})}const nC=Ye(function(){const{labs:t,unlockCode:r,error:s}=He(),a=Le(),o=Le(),i=Le(),[l,c]=M(""),[m,u]=M(!1),[p,h]=M(!1);gt({source:"labs-page"});const f=(t==null?void 0:t.accessGranted)===!0||(t==null?void 0:t.simulations)===!0;return s?n("div",{className:"bg-cygray-10 min-h-screen",children:d("div",{className:"px-20 pt-8 pb-12 font-sans",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Labs"}),n("div",{className:"bg-red-50 border border-red-200 rounded-lg p-4 mt-4",children:n("p",{className:"text-red-700",children:s})})]})}):f?d("div",{className:"bg-cygray-10 min-h-screen font-sans flex flex-col",children:[n("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-10",children:[n("h2",{className:"font-serif italic text-[32px] sm:text-[48px] text-primary-100 mb-3 font-normal leading-tight",children:"Congrats!"}),n("p",{className:"font-serif text-[18px] sm:text-[24px] text-cyblack-100 font-normal leading-snug max-w-2xl",children:"You were granted early access to software simulation and other experimental features."})]}),n("div",{className:"px-6 sm:px-12 space-y-6 flex-1",children:ZN.map(g=>{var b;const y=(t==null?void 0:t[g.id])??g.defaultEnabled,x=o.state==="submitting"&&((b=o.formData)==null?void 0:b.get("feature"))===g.id;return n("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:d("div",{className:"flex items-center justify-between gap-4",children:[d("div",{className:"flex-1 min-w-0",children:[d("div",{className:"flex items-center gap-3 mb-3",children:[n("h3",{className:"text-lg font-semibold text-cyblack-100 m-0",children:g.name}),n("span",{className:`inline-flex items-center px-2.5 py-0.5 rounded text-[10px] font-bold uppercase tracking-wider ${y?"bg-primary-100/15 text-primary-100":"bg-cygray-20 text-cygray-50"}`,children:y?"Enabled":"Disabled"})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed m-0",children:g.description})]}),d(o.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:g.id}),n("input",{type:"hidden",name:"enabled",value:String(!y)}),n("button",{type:"submit",disabled:x,className:`relative inline-flex h-8 w-14 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none disabled:opacity-60 disabled:cursor-not-allowed ${y?"bg-primary-100":"bg-gray-300"}`,children:n("span",{className:`pointer-events-none inline-block h-7 w-7 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out ${y?"translate-x-6":"translate-x-0"}`})})]})]})},g.id)})}),r&&n("div",{className:"px-6 sm:px-12 pt-12",children:d("div",{className:"border border-cygray-30 rounded-xl p-5 sm:p-8 bg-white",children:[n("h3",{className:"text-base font-semibold text-cyblack-100 mb-1",children:"Unlock Code"}),n("p",{className:"text-sm text-cygray-50 mb-3",children:"This code was used to enable Labs access. Clear it to revoke access and return to the landing page."}),d("div",{className:"flex flex-col sm:flex-row sm:items-center gap-3",children:[n("code",{className:"sm:flex-1 px-4 py-2.5 bg-cygray-10 border border-cygray-30 rounded-lg text-sm font-mono text-cyblack-100 overflow-x-auto",children:r}),d(i.Form,{method:"post",children:[n("input",{type:"hidden",name:"feature",value:"clearAccess"}),n("input",{type:"hidden",name:"enabled",value:"false"}),n("button",{type:"submit",disabled:i.state==="submitting",className:"px-4 py-2.5 bg-red-50 border border-red-200 rounded-lg text-sm font-medium text-red-700 cursor-pointer transition-colors hover:bg-red-100 disabled:opacity-60 disabled:cursor-not-allowed",children:i.state==="submitting"?"Clearing...":"Clear"})]})]})]})})]}):d("div",{className:"bg-cygray-10 min-h-screen font-sans",children:[m&&n(eC,{onClose:()=>u(!1)}),p&&n(tC,{onClose:()=>h(!1),unlockCodeInput:l,setUnlockCodeInput:c,unlockFetcher:a}),d("div",{className:"flex flex-wrap justify-between items-center gap-3 px-6 sm:px-12 pt-8 pb-4",children:[n("h1",{className:"font-mono text-lg font-semibold tracking-widest text-cyblack-100 m-0",children:"LABS"}),d("div",{className:"flex flex-wrap items-center gap-3",children:[n("button",{onClick:()=>h(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cygray-30 bg-transparent text-cygray-50 cursor-pointer transition-colors hover:border-cyblack-100 hover:text-cyblack-100",children:"Have a Code?"}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-4 sm:px-5 py-2.5 rounded border border-cyblack-100 bg-transparent text-cyblack-100 cursor-pointer transition-colors hover:bg-cyblack-100 hover:text-white",children:"Apply for Early Access"})]})]}),d("div",{className:"px-6 sm:px-12 pt-12 pb-8",children:[n("h2",{className:"font-serif text-[24px] sm:text-[32px] leading-snug text-cyblack-100 max-w-xl mb-4 font-normal",children:"Powerful tools for the AI coding era."}),d("p",{className:"text-base sm:text-lg text-cygray-50 leading-relaxed max-w-xl mb-8",children:["We're opening early access to"," ",n("strong",{className:"text-cyblack-100",children:"experimental features"})," to a small group of developers and teams."]}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded bg-primary-200 text-white border-none cursor-pointer transition-colors hover:bg-primary-100",children:"Apply for Early Access"})]}),n("div",{className:"px-6 sm:px-12 py-8",children:n("hr",{className:"border-t border-cygray-30 m-0"})}),d("div",{className:"px-6 sm:px-12 pt-8 pb-4",children:[n("h3",{className:"font-serif text-[22px] sm:text-[28px] text-cyblack-100 mb-10 font-normal text-center",children:"In The Works"}),n("div",{className:"grid grid-cols-1 md:grid-cols-2 gap-5 max-w-4xl mx-auto",children:XN.map(g=>d("div",{className:"border border-cygray-30 bg-white p-5 sm:p-8 rounded-lg",children:[d("h4",{className:"text-base font-semibold text-cyblack-100 mb-1",children:[g.title," ",d("span",{className:"font-normal text-primary-100 font-serif italic",children:["(",g.status,")"]})]}),n("p",{className:"text-sm text-cygray-50 leading-relaxed mt-3 mb-0",children:g.desc})]},g.title))})]}),n("div",{className:"px-6 sm:px-12 py-16",children:d("div",{className:"rounded-lg p-6 sm:p-12 bg-primary-200",children:[n("h3",{className:"font-serif text-[20px] sm:text-[24px] text-white mb-4 font-semibold",children:"Request Early Access"}),n("p",{className:"text-sm text-white/80 leading-relaxed max-w-lg mb-10 font-mono",children:"We're onboarding a limited number of developers and teams. Tell us about how you build and we'll let you know when you can try simulations and other Labs features."}),n("button",{onClick:()=>u(!0),className:"font-mono text-xs font-semibold uppercase tracking-widest px-6 py-3 rounded border border-white bg-white text-cyblack-100 cursor-pointer transition-colors hover:bg-white/90 mb-4",children:"Apply for Early Access"}),n("p",{className:"text-xs text-white/60 m-0",children:"Takes about 2 minutes. Your answers help us determine eligibility and prioritize access."})]})})]})}),rC=Object.freeze(Object.defineProperty({__proto__:null,action:QN,default:nC,loader:KN,meta:qN},Symbol.toStringTag,{value:"Module"}));function sC(e,t,r){const[s,a]=M(()=>new Set),[o,i]=M(()=>new Set),l=be([]),c=be([]);return te(()=>{(t.length!==l.current.length||t.some((y,x)=>y!==l.current[x]))&&(l.current=t,a(y=>{const x=new Set;return t.forEach(b=>{y.has(b)&&x.add(b)}),x}))},[t]),te(()=>{(r.length!==c.current.length||r.some((y,x)=>y!==c.current[x]))&&(c.current=r,i(y=>{const x=new Set;return r.forEach(b=>{y.has(b)&&x.add(b)}),x}))},[r]),{expandedUncommitted:s,expandedBranch:o,setExpandedUncommitted:a,setExpandedBranch:i,toggleFile:(g,y,x)=>{x(b=>{const w=new Set(b);return w.has(g)?w.delete(g):w.add(g),w})},expandAllUncommitted:()=>{a(new Set(t))},collapseAllUncommitted:()=>{a(new Set)},expandAllBranch:()=>{i(new Set(r))},collapseAllBranch:()=>{i(new Set)}}}function aC(e,t,r){const[s,a]=M(null),[o,i]=M(null),l=Le();te(()=>{var p,h;((p=l.data)==null?void 0:p.oldContent)!==void 0&&((h=l.data)==null?void 0:h.newContent)!==void 0&&i({oldContent:l.data.oldContent,newContent:l.data.newContent,fileName:l.data.fileName})},[l.data]);const c=p=>{a({type:"file",path:p}),i(null);const h=new FormData;h.append("actionType","getDiff"),h.append("filePath",p),h.append("diffType","branch"),h.append("baseBranch",e),h.append("currentBranch",t||""),l.submit(h,{method:"post"})},m=(p,h)=>{a({type:"entity",path:p,entitySha:h}),i(null);const f=new FormData;f.append("actionType","getDiff"),f.append("filePath",p),f.append("diffType","branch"),f.append("baseBranch",e),f.append("currentBranch",t||""),f.append("entitySha",h),l.submit(f,{method:"post"})},u=()=>{a(null),i(null)};return{diffView:s,diffContent:o,isLoading:l.state==="loading"||l.state==="submitting",handleShowFileDiff:c,handleShowEntityDiff:m,handleCloseDiff:u}}function oC({diffView:e,diffContent:t,isLoading:r,entities:s,onClose:a}){var m;const[o,i]=M(!1),[l,c]=M(!1);return te(()=>{c(!0)},[]),n("div",{className:"fixed inset-0 bg-black/50 flex items-center justify-center p-8 z-50",children:d("div",{className:"bg-white rounded-xl shadow-2xl max-w-6xl w-full max-h-[90vh] flex flex-col",children:[d("div",{className:"p-6 border-b border-[#e1e1e1] flex items-center justify-between",children:[d("div",{children:[n("h2",{className:"font-['IBM_Plex_Sans'] text-2xl font-semibold text-[#232323]",children:e.type==="file"?"File Diff":"Entity Diff"}),n("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e] mt-1",children:e.path}),e.type==="entity"&&e.entitySha&&d("p",{className:"font-['IBM_Plex_Mono'] text-sm text-[#8e8e8e]",children:["Entity:"," ",((m=s.find(u=>u.sha===e.entitySha))==null?void 0:m.name)||e.entitySha]})]}),d("div",{className:"flex items-center gap-3",children:[n("button",{onClick:()=>i(!o),className:"px-3 py-1.5 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] text-sm font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",title:o?"Show changes only":"Show full file",children:o?"Show Changes Only":"Show Full File"}),n("button",{onClick:a,className:"text-[#8e8e8e] hover:text-[#626262] transition-colors cursor-pointer",children:n("svg",{className:"w-6 h-6",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 18L18 6M6 6l12 12"})})})]})]}),n("div",{className:"flex-1 overflow-auto",children:r?n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"Loading diff..."})}):t?n("div",{className:"diff-viewer-wrapper",children:l&&n(du,{oldValue:t.oldContent,newValue:t.newContent,splitView:!0,useDarkTheme:!1,showDiffOnly:!o,extraLinesSurroundingDiff:4,styles:{variables:{light:{diffViewerBackground:"#fff",diffViewerColor:"#212529",addedBackground:"#e6ffed",addedColor:"#24292e",removedBackground:"#ffeef0",removedColor:"#24292e",wordAddedBackground:"#acf2bd",wordRemovedBackground:"#fdb8c0",addedGutterBackground:"#cdffd8",removedGutterBackground:"#ffdce0",gutterBackground:"#f6f8fa",gutterBackgroundDark:"#f3f4f6",highlightBackground:"#fffbdd",highlightGutterBackground:"#fff5b1"}},contentText:{fontSize:"12px",lineHeight:"1.5"},line:{padding:"2px 10px",fontSize:"12px","&:hover":{background:"#f8f9fa"}},splitView:{display:"flex",width:"100%"},diffContainer:{width:"50%",overflowX:"auto"}}})}):n("div",{className:"p-6 text-center",children:n("div",{className:"text-[#8e8e8e]",children:"No diff available"})})}),n("div",{className:"p-6 border-t border-[#e1e1e1] flex justify-end gap-3",children:n("button",{onClick:a,className:"px-4 py-2 bg-[#efefef] text-[#3e3e3e] rounded-lg font-['IBM_Plex_Sans'] font-semibold hover:bg-[#e1e1e1] transition-colors cursor-pointer",children:"Close"})})]})})}function iC({files:e,currentBranch:t,defaultBranch:r,baseBranch:s,allBranches:a,expandedFiles:o,isEntityBeingAnalyzed:i,isEntityQueued:l,sortOrder:c,onToggleFile:m,onBranchChange:u,onGenerateSimulation:p,onSortChange:h,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}){const x=e.flatMap(([v,{entities:C}])=>{const A=C.filter(S=>i(S.sha)||l(S)).map(S=>S.sha);return A.length>0?[{entityShas:A}]:[]}),b=v=>{const C=v.map(A=>at(A,x));return C.includes("analyzing")||C.includes("queued")?"analyzing":C.includes("out-of-date")?"out-of-date":C.includes("not-analyzed")?"not-analyzed":"up-to-date"},w=oe(()=>[...e].sort((v,C)=>{const A=v[1].entities.reduce((k,j)=>{var P;const T=((P=j.metadata)==null?void 0:P.editedAt)||j.updatedAt;return T?k?new Date(T)>new Date(k)?T:k:T:k},null),S=C[1].entities.reduce((k,j)=>{var P;const T=((P=j.metadata)==null?void 0:P.editedAt)||j.updatedAt;return T?k?new Date(T)>new Date(k)?T:k:T:k},null);if(!A&&!S)return 0;if(!A)return 1;if(!S)return-1;const E=new Date(A).getTime(),N=new Date(S).getTime();return c==="desc"?N-E:E-N}),[e,c]);return n("div",{children:e.length>0?d("div",{children:[n(xo,{showActions:!0,sortOrder:c,onSortChange:h,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}),n("div",{className:"flex flex-col gap-[3px]",children:w.map(([v,{status:C,entities:A,isUncommitted:S}])=>{const E=o.has(v),N=b(A),k=A.reduce((R,I)=>{var L;const $=((L=I.metadata)==null?void 0:L.editedAt)||I.updatedAt;return $?R?new Date($)>new Date(R)?$:R:$:R},null),T=A.filter(R=>R.entityType==="visual"||R.entityType==="library").length===0;let P;return T?P=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):N==="analyzing"?P=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):N==="up-to-date"?P=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):N==="out-of-date"?P=n("button",{onClick:R=>{R.stopPropagation(),A.filter(I=>(I.entityType==="visual"||I.entityType==="library")&&!i(I.sha)&&!l(I)).forEach(I=>p(I))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):N==="not-analyzed"&&(P=n("button",{onClick:R=>{R.stopPropagation(),A.filter(I=>(I.entityType==="visual"||I.entityType==="library")&&!i(I.sha)&&!l(I)).forEach(I=>p(I))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(bo,{filePath:v,isExpanded:E,onToggle:()=>m(v),fileStatus:C,isUncommitted:S,simulationPreviews:n(wo,{entities:A,maxPreviews:1}),entityCount:A.length,state:N,lastModified:k,isNotAnalyzable:T,actionButton:P,children:A.sort((R,I)=>{const $=R.entityType==="visual"||R.entityType==="library",L=I.entityType==="visual"||I.entityType==="library";return $&&!L?-1:!$&&L?1:0}).map(R=>n(vo,{entity:R,isActivelyAnalyzing:i(R.sha),isQueued:l(R),onGenerateSimulation:p},R.sha))},v)})})]}):d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"No files have been modified in this branch."})]})})}function lC({files:e,entityImpactMap:t,expandedFiles:r,isEntityBeingAnalyzed:s,isEntityQueued:a,projectSlug:o,baseBranch:i,currentBranch:l,sortOrder:c,onToggleFile:m,onShowFileDiff:u,onGenerateSimulation:p,onSortChange:h,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}){const x=oe(()=>{const v=[];return e.forEach(([C,{editedEntities:A}])=>{const S=A.filter(E=>s(E.sha)||a(E)).map(E=>E.sha);S.length>0&&v.push({entityShas:S})}),v},[e,s,a]),b=oe(()=>{const v=new Map;return e.forEach(([C,{editedEntities:A}])=>{const S=A.map(j=>at(j,x));let E;S.includes("analyzing")||S.includes("queued")?E="analyzing":S.includes("out-of-date")?E="out-of-date":S.includes("not-analyzed")?E="not-analyzed":E="up-to-date";const N=A.reduce((j,T)=>{var R;const P=((R=T.metadata)==null?void 0:R.editedAt)||T.updatedAt;return P&&(!j||new Date(P)>new Date(j))?P:j},null),k=A.filter(j=>j.entityType==="visual"||j.entityType==="library").length;v.set(C,{state:E,lastModified:N,analyzableCount:k})}),v},[e,x]),w=oe(()=>[...e].sort((v,C)=>{const A=b.get(v[0]),S=b.get(C[0]),E=A==null?void 0:A.lastModified,N=S==null?void 0:S.lastModified;if(!E&&!N)return 0;if(!E)return 1;if(!N)return-1;const k=new Date(E).getTime(),j=new Date(N).getTime();return c==="desc"?j-k:k-j}),[e,b,c]);return e.length===0?d("div",{className:"bg-[#efefef] rounded-[10px] flex flex-col items-center justify-center text-center",style:{height:"190px"},children:[n("p",{className:"font-['IBM_Plex_Sans'] font-medium text-[16px] text-[#3e3e3e] leading-[24px] mb-2",children:"No Uncommitted Changes"}),n("p",{className:"font-['IBM_Plex_Sans'] font-normal text-[14px] text-[#3e3e3e] leading-[18px]",children:"If you edit a file in your project, it will show up here."})]}):d("div",{children:[n(xo,{showActions:!0,sortOrder:c,onSortChange:h,onAnalyzeAll:f,analyzeAllDisabled:g,analyzeAllText:y}),n("div",{className:"flex flex-col gap-[3px]",children:w.map(([v,{status:C,editedEntities:A}])=>{const S=r.has(v),E=b.get(v),{state:N,lastModified:k,analyzableCount:j}=E,T=j===0;let P;return T?P=n("span",{className:"text-[12px] text-gray-400",children:"Not Analyzable"}):N==="analyzing"?P=d("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#ffdbf6",color:"#ff2ab5",height:"26px"},children:[d("svg",{width:"8",height:"8",viewBox:"0 0 9 9",fill:"none",className:"animate-spin",children:[n("circle",{cx:"4.5",cy:"4.5",r:"3.5",stroke:"#FFF4FC",strokeWidth:"1",fill:"none"}),n("path",{d:"M4.5 1C2.57 1 1 2.57 1 4.5C1 5.6 1.5 6.58 2.28 7.23",stroke:"#FF2AB5",strokeWidth:"1",strokeLinecap:"round",fill:"none"})]}),"Analyzing..."]}):N==="up-to-date"?P=n("span",{className:"text-[13px] px-2 rounded inline-flex items-center gap-1.5 whitespace-nowrap",style:{backgroundColor:"#e8ffe6",color:"#00925d",height:"26px"},children:"Up to date"}):N==="out-of-date"?P=n("button",{onClick:R=>{R.stopPropagation(),A.filter(I=>(I.entityType==="visual"||I.entityType==="library")&&!s(I.sha)&&!a(I)).forEach(I=>p(I))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Re-Analyze"}):N==="not-analyzed"&&(P=n("button",{onClick:R=>{R.stopPropagation(),A.filter(I=>(I.entityType==="visual"||I.entityType==="library")&&!s(I.sha)&&!a(I)).forEach(I=>p(I))},className:"bg-[#005c75] text-white rounded text-[12px] font-['IBM_Plex_Sans'] font-normal hover:bg-[#004a5e] transition-colors px-[15px] py-0 h-[28px]",children:"Analyze File"})),n(bo,{filePath:v,isExpanded:S,onToggle:()=>m(v),fileStatus:C,simulationPreviews:n(wo,{entities:A,maxPreviews:1}),entityCount:A.length,state:N,lastModified:k,isNotAnalyzable:T,isUncommitted:!0,actionButton:P,children:A.sort((R,I)=>{const $=R.entityType==="visual"||R.entityType==="library",L=I.entityType==="visual"||I.entityType==="library";return $&&!L?-1:!$&&L?1:0}).map(R=>n(vo,{entity:R,isActivelyAnalyzing:s(R.sha),isQueued:a(R),onGenerateSimulation:p},R.sha))},v)})})]})}function cC({activeTab:e,onTabChange:t,uncommittedCount:r,branchCount:s}){return n("div",{className:"border-b border-gray-200",children:d("nav",{className:"flex gap-8 items-center",children:[d("button",{onClick:()=>t("branch"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="branch"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Branch Changes",s>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="branch"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:s})]}),e==="branch"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]}),d("button",{onClick:()=>t("uncommitted"),className:`relative pb-3 px-2 text-sm font-medium transition-colors cursor-pointer ${e==="uncommitted"?"text-primary-100":"text-gray-500 hover:text-gray-700"}`,children:[d("span",{className:"flex items-center gap-2",children:["Uncommitted Changes",r>0&&n("span",{className:`inline-flex items-center justify-center px-2 py-0.5 text-xs font-semibold rounded-full ${e==="uncommitted"?"bg-[#cbf3fa] text-[#005c75]":"bg-[#e1e1e1] text-[#3e3e3e]"}`,children:r})]}),e==="uncommitted"&&n("span",{className:"absolute -bottom-px left-0 right-0 h-0.5 bg-primary-100"})]})]})})}const dC=()=>[{title:"Git - CodeYam"},{name:"description",content:"Git status and impact analysis"}];async function uC({request:e}){const t=await e.formData();if(t.get("actionType")==="getDiff"){const s=t.get("filePath"),a=t.get("diffType"),o=t.get("baseBranch"),i=t.get("currentBranch"),l=t.get("entitySha");let c;return a==="branch"?c=Dr(s,o,i):c=rg(s),Z({...c,entitySha:l})}return Z({error:"Unknown action"},{status:400})}async function mC({request:e,context:t}){try{const r=new URL(e.url),s=r.searchParams.get("compare"),a=r.searchParams.get("viewBranch"),o=t.analysisQueue,i=o?o.getState():{paused:!1,jobs:[]},[l,c,m]=await Promise.all([ln(),Pn(),De()]),u=Mn(),p=Xf(),h=eg(),f=tg(),g=a||p,y=s||h;let x=[];return g&&g!==y&&(x=sc(y,g)),Z({entities:l||[],gitStatus:u,currentBranch:g,actualCurrentBranch:p,defaultBranch:h,allBranches:f,baseBranch:y,branchDiff:x,currentCommit:c,projectSlug:m,queueState:i})}catch(r){return console.error("Failed to load git data:",r),Z({entities:[],gitStatus:[],currentBranch:null,actualCurrentBranch:null,defaultBranch:"main",allBranches:[],baseBranch:"main",branchDiff:[],currentCommit:null,projectSlug:null,queueState:{paused:!1,jobs:[]},error:"Failed to load git data"})}}const pC=Ye(function(){var ke,st;const{entities:t,gitStatus:r,currentBranch:s,actualCurrentBranch:a,defaultBranch:o,allBranches:i,baseBranch:l,branchDiff:c,currentCommit:m,projectSlug:u,queueState:p}=He();gt({source:"git-page"});const[h,f]=kn(),[g,y]=M(null),[x,b]=M("desc"),[w,v]=M("branch"),C=h.get("expanded")==="true",A=()=>{b(ve=>ve==="desc"?"asc":"desc")},S=Le(),E=S.data;te(()=>{s&&l&&s!==l&&S.state==="idle"&&!E&&S.load(`/api/branch-entity-diff?base=${encodeURIComponent(l)}&compare=${encodeURIComponent(s)}`)},[s,l,S,E]);const N=oe(()=>{const ve=Oc(r,t);return Array.from(ve.entries()).sort((ze,Ue)=>ze[0].localeCompare(Ue[0]))},[r,t]),k=oe(()=>{const ve=Pv(c,t,E);return Array.from(ve.entries()).sort((ze,Ue)=>ze[0].localeCompare(Ue[0]))},[c,t,E]),j=oe(()=>jv(r,t),[r,t]),T=oe(()=>w==="uncommitted"?N:k,[w,N,k]),P=oe(()=>T.map(([ve])=>ve),[T]),{expandedUncommitted:R,setExpandedUncommitted:I,toggleFile:$,expandAllUncommitted:L,collapseAllUncommitted:H}=sC(C,P,[]),{diffView:F,diffContent:z,isLoading:U,handleShowFileDiff:O,handleCloseDiff:_}=aC(l,s),Y=(ke=m==null?void 0:m.metadata)==null?void 0:ke.currentRun,Q=new Set((Y==null?void 0:Y.currentEntityShas)||[]),K=new Set(p.jobs.flatMap(ve=>ve.entityShas||[])),ae=new Set(((st=p.currentlyExecuting)==null?void 0:st.entityShas)||[]),{isAnalyzing:J,handleGenerateSimulation:D,handleGenerateAllSimulations:W,isEntityBeingAnalyzed:G,isEntityPending:ne}=Uc(Y==null?void 0:Y.currentEntityShas,p),se=ve=>ne(ve)||K.has(ve.sha)||ae.has(ve.sha),re=ve=>{ve===(a||s)?h.delete("viewBranch"):h.set("viewBranch",ve),f(h)},ee=ve=>{ve===o?h.delete("compare"):h.set("compare",ve),f(h)},de=()=>{const ze=T.flatMap(([Ue,ct])=>ct.editedEntities||ct.entities||[]).filter(Ue=>!Q.has(Ue.sha)&&!K.has(Ue.sha)&&!ae.has(Ue.sha)&&!ne(Ue));W(ze)},me=N.length,Te=k.length,xe=T.flatMap(([ve,ze])=>ze.editedEntities||ze.entities||[]),Ce=xe.filter(ve=>ve.entityType==="visual"||ve.entityType==="library"),$e=Ce.length>0&&Ce.every(ve=>Q.has(ve.sha)),Ae=Ce.length>0&&!$e&&Ce.every(ve=>K.has(ve.sha)||ae.has(ve.sha)),ie=J||$e||Ae,he=$e?"Analyzing...":Ae?"Queued...":J?"Analyzing...":"Analyze All";return n("div",{className:"bg-[#F8F7F6] min-h-screen",children:d("div",{className:"px-20 py-12",children:[d("div",{className:"mb-8",children:[n("h1",{className:"text-[28px] font-semibold text-gray-900 mb-2",children:"Git Changes"}),d("p",{className:"text-[15px] text-gray-500",children:["This is a list of all the files that are affected by your local changes. ",n("strong",{children:"Analyze a file to get simulations."})]})]}),n("div",{className:"mb-6",children:n(cC,{activeTab:w,onTabChange:v,uncommittedCount:me,branchCount:Te})}),s&&w==="branch"&&n("div",{className:"bg-white border-b border-gray-200 rounded-t-lg px-5 py-4 mb-3",children:s===o?d("div",{className:"text-gray-700",children:["You are currently on the primary branch,"," ",n("span",{className:"text-cyblack-75",children:o}),"."]}):d("div",{className:"flex gap-6 items-center",children:[d("div",{className:"shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Changes in Branch:"}),i.length>0?d("div",{className:"relative w-50",children:[n("select",{value:s,onChange:ve=>re(ve.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-2.5 pr-6 text-[13px] h-9.75 w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.map(ve=>n("option",{value:ve,children:ve},ve))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]}):n("span",{className:"text-gray-900 font-medium text-[12px]",children:s})]}),d("div",{className:"flex-shrink-0",children:[n("div",{className:"text-[11px] text-gray-500 mb-2 uppercase",children:"Compared To:"}),d("div",{className:"relative w-[200px]",children:[n("select",{value:l,onChange:ve=>ee(ve.target.value),className:"appearance-none bg-gray-50 border border-gray-200 rounded px-[10px] pr-6 text-[13px] h-[39px] w-full cursor-pointer focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] hover:border-gray-300 transition-colors",children:i.filter(ve=>ve!==s).map(ve=>n("option",{value:ve,children:ve},ve))}),n("svg",{className:"absolute right-2 top-1/2 -translate-y-1/2 w-3 h-3 text-gray-500 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M19 9l-7 7-7-7"})})]})]}),n("div",{className:"flex-1 mt-6",children:d("div",{className:"relative flex items-center",children:[n("svg",{className:"absolute left-3 w-4 h-4 text-gray-400 pointer-events-none",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"})}),n("input",{type:"text",placeholder:"Search component",className:"w-full bg-gray-50 border border-gray-200 rounded pl-9 pr-[10px] text-[13px] h-[39px] placeholder:text-gray-400 focus:outline-none focus:ring-0 focus:border-2 focus:border-[#005c75] transition-colors"})]})})]})}),n("div",{className:"mb-3",children:d("div",{className:"flex items-center justify-between",children:[d("div",{className:"flex items-center",children:[d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em"},children:[n("span",{style:{color:"#000000"},children:T.length})," ","modified ",T.length===1?"file":"files"]}),d("div",{className:"relative group inline-flex items-center ml-1.5",children:[n("svg",{className:"w-3 h-3 text-gray-400 cursor-help",fill:"none",stroke:"currentColor",viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",children:n("path",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"})}),n("div",{className:"absolute left-0 top-full mt-2 hidden group-hover:block z-50 w-80",children:d("div",{className:"bg-gray-900 text-white text-xs rounded-lg px-3 py-2 shadow-lg",children:["In CodeYam, an entity is a discrete, analyzable unit of code that can be independently simulated and tested.",n("div",{className:"absolute -top-1 left-4 w-2 h-2 bg-gray-900 transform rotate-45"})]})})]}),n("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#d1d5db",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:"|"}),d("span",{className:"font-mono uppercase",style:{fontSize:"11px",color:"#8b8b8b",fontWeight:500,letterSpacing:"0.05em",marginLeft:"8px"},children:[n("span",{style:{color:"#000000"},children:xe.length})," ",xe.length===1?"entity":"entities"]})]}),T.length>0&&d("div",{className:"flex gap-6",children:[d("button",{onClick:L,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(Gi,{className:"w-3.5 h-3.5"}),"Expand All"]}),d("button",{onClick:H,className:"text-[#005c75] hover:bg-[#E6F5F8] hover:text-[#003d4f] font-mono uppercase transition-all cursor-pointer px-3 py-1 rounded flex items-center gap-1.5",style:{fontSize:"11px",fontWeight:500,letterSpacing:"0.05em"},children:[n(qi,{className:"w-3.5 h-3.5"}),"Collapse All"]})]})]})}),d("div",{className:"overflow-hidden",children:[w==="branch"&&s&&n(iC,{files:k,currentBranch:s,defaultBranch:o,baseBranch:l,allBranches:i,expandedFiles:R,isEntityBeingAnalyzed:G,isEntityQueued:se,sortOrder:x,onToggleFile:ve=>$(ve,R,I),onBranchChange:ee,onGenerateSimulation:D,onSortChange:A,onAnalyzeAll:de,analyzeAllDisabled:ie,analyzeAllText:he}),w==="uncommitted"&&n(lC,{files:N,entityImpactMap:j,expandedFiles:R,isEntityBeingAnalyzed:G,isEntityQueued:se,projectSlug:u,baseBranch:l,currentBranch:s,sortOrder:x,onToggleFile:ve=>$(ve,R,I),onShowFileDiff:O,onGenerateSimulation:D,onSortChange:A,onAnalyzeAll:de,analyzeAllDisabled:ie,analyzeAllText:he})]}),F&&n(oC,{diffView:F,diffContent:z,isLoading:U,entities:t,onClose:_}),g&&u&&n(Ot,{projectSlug:u,onClose:()=>y(null)})]})})}),hC=Object.freeze(Object.defineProperty({__proto__:null,action:uC,default:pC,loader:mC,meta:dC},Symbol.toStringTag,{value:"Module"})),yS={entry:{module:"/assets/entry.client-DTvKq3TY.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/index-10oVnAAH.js"],css:[]},routes:{root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/root-DBjt6o04.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/index-10oVnAAH.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/ReportIssueModal-BzHcG7SE.js","/assets/useReportContext-O-jkvSPx.js","/assets/loader-circle-DaAZ_H2w.js","/assets/createLucideIcon-CC6AbExI.js","/assets/book-open-BYOypzCa.js","/assets/useToast-9FIWuYfK.js","/assets/useLastLogLine-C14nCb1q.js","/assets/LogViewer-ceAyBX-H.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/TruncatedFilePath-C8OKAR5x.js","/assets/chevron-down-C_Pmso5S.js","/assets/circle-check-BVMi9VA5.js","/assets/CopyButton-BPXZwM4t.js","/assets/triangle-alert-BLdiCuG-.js","/assets/copy-n2FB0_Sw.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.fullscreen-CHMiAog3.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/Spinner-Bb5uFQ5V.js","/assets/useLastLogLine-C14nCb1q.js","/assets/ViewportInspectBar-oAf2Kqsf.js","/assets/useCustomSizes-C-_hOl_g.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/InlineSpinner-Bu6c6aDe.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha.scenarios._scenarioId.dev-BwKcai0j.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/Spinner-Bb5uFQ5V.js","/assets/useLastLogLine-C14nCb1q.js","/assets/ViewportInspectBar-oAf2Kqsf.js","/assets/useCustomSizes-C-_hOl_g.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/InlineSpinner-Bu6c6aDe.js","/assets/editorPreview-7Uga8I59.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/preload-helper-ckwbz45p.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.edit._scenarioId-BMvVHNXU.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/InteractivePreview-DYFW3lDD.js","/assets/Spinner-Bb5uFQ5V.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-C14nCb1q.js","/assets/InlineSpinner-Bu6c6aDe.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-register-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-coverage-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha_.create-scenario-p9hhkjJM.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/InteractivePreview-DYFW3lDD.js","/assets/Spinner-Bb5uFQ5V.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/preload-helper-ckwbz45p.js","/assets/useLastLogLine-C14nCb1q.js","/assets/InlineSpinner-Bu6c6aDe.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-capture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-image._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-switch-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-update-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-client-errors-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-entity-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-entry-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenario-data-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.llm-calls._entitySha-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-project-info-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-test-results-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.branch-entity-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.capture-screenshot-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-load-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.agent-transcripts-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-dev-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.logs._projectSlug-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-diff-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.execute-function-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.interactive-mode-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.delete-scenario-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.dev-mode-events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.generate-report-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-journal-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-refresh-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-session-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-profile-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.process-status-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.restart-server-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-scenarios-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/agent-transcripts-Bni3iiUj.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/createLucideIcon-CC6AbExI.js","/assets/terminal-Br7MOqts.js","/assets/search-Di64LWVb.js","/assets/chevron-down-C_Pmso5S.js","/assets/book-open-BYOypzCa.js","/assets/triangle-alert-BLdiCuG-.js","/assets/copy-n2FB0_Sw.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-commit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-audit-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.kill-process-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.save-fixture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.screenshot._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/activity.(_tab)-BcY3q6nt.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/LogViewer-ceAyBX-H.js","/assets/useLastLogLine-C14nCb1q.js","/assets/useReportContext-O-jkvSPx.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/EntityTypeBadge-g3saevPb.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/LoadingDots-BU_OAEMP.js","/assets/loader-circle-DaAZ_H2w.js","/assets/pause-f5-1lKBt.js","/assets/createLucideIcon-CC6AbExI.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.debug-setup-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.editor-file-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.labs-unlock-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.recapture-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.rule-path-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/entity._sha._-DwCV5__E.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useLastLogLine-C14nCb1q.js","/assets/Spinner-Bb5uFQ5V.js","/assets/InteractivePreview-DYFW3lDD.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/LibraryFunctionPreview-DLeucoVX.js","/assets/LoadingDots-BU_OAEMP.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/ScenarioViewer-TSD3C211.js","/assets/createLucideIcon-CC6AbExI.js","/assets/executionFlowCoverage-BWhdfn70.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/CopyButton-BPXZwM4t.js","/assets/LogViewer-ceAyBX-H.js","/assets/useReportContext-O-jkvSPx.js","/assets/preload-helper-ckwbz45p.js","/assets/InlineSpinner-Bu6c6aDe.js","/assets/ViewportInspectBar-oAf2Kqsf.js","/assets/useCustomSizes-C-_hOl_g.js","/assets/ReportIssueModal-BzHcG7SE.js","/assets/circle-check-BVMi9VA5.js","/assets/triangle-alert-BLdiCuG-.js","/assets/copy-n2FB0_Sw.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.analyze-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/simulations-DWT-CvLy.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/LoadingDots-BU_OAEMP.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/fileTableUtils-cPo8LiG3.js","/assets/chevron-down-C_Pmso5S.js","/assets/search-Di64LWVb.js","/assets/loader-circle-DaAZ_H2w.js","/assets/createLucideIcon-CC6AbExI.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.events-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.health-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.memory-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/api.queue-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!1,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/dev.empty-Ii3inc0_.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/ScenarioViewer-TSD3C211.js","/assets/InteractivePreview-DYFW3lDD.js","/assets/ViewportInspectBar-oAf2Kqsf.js","/assets/useCustomSizes-C-_hOl_g.js","/assets/LogViewer-ceAyBX-H.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/useLastLogLine-C14nCb1q.js","/assets/Spinner-Bb5uFQ5V.js","/assets/preload-helper-ckwbz45p.js","/assets/ReportIssueModal-BzHcG7SE.js","/assets/createLucideIcon-CC6AbExI.js","/assets/circle-check-BVMi9VA5.js","/assets/triangle-alert-BLdiCuG-.js","/assets/copy-n2FB0_Sw.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/InlineSpinner-Bu6c6aDe.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/settings-0OrEMU6J.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/CopyButton-BPXZwM4t.js","/assets/copy-n2FB0_Sw.js","/assets/createLucideIcon-CC6AbExI.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!1,hasErrorBoundary:!1,module:"/assets/static._-l0sNRNKZ.js",imports:[],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/_index-DLxKhri3.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useLastLogLine-C14nCb1q.js","/assets/useToast-9FIWuYfK.js","/assets/useReportContext-O-jkvSPx.js","/assets/LogViewer-ceAyBX-H.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/createLucideIcon-CC6AbExI.js","/assets/circle-check-BVMi9VA5.js","/assets/loader-circle-DaAZ_H2w.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/editor":{id:"routes/editor",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/editor-16o0AIFV.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useCustomSizes-C-_hOl_g.js","/assets/editorPreview-7Uga8I59.js","/assets/CopyButton-BPXZwM4t.js","/assets/preload-helper-ckwbz45p.js","/assets/cy-logo-cli-DcX-ZS3p.js","/assets/Spinner-Bb5uFQ5V.js","/assets/copy-n2FB0_Sw.js","/assets/createLucideIcon-CC6AbExI.js","/assets/useLastLogLine-C14nCb1q.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/memory-9gnxSZlb.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/createLucideIcon-CC6AbExI.js","/assets/terminal-Br7MOqts.js","/assets/copy-n2FB0_Sw.js","/assets/CopyButton-BPXZwM4t.js","/assets/chevron-down-C_Pmso5S.js","/assets/search-Di64LWVb.js","/assets/pause-f5-1lKBt.js","/assets/book-open-BYOypzCa.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,hasAction:!1,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/files-BZrlFE1F.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/EntityItem-BcgbViKV.js","/assets/fileTableUtils-cPo8LiG3.js","/assets/chevron-down-C_Pmso5S.js","/assets/search-Di64LWVb.js","/assets/createLucideIcon-CC6AbExI.js","/assets/useToast-9FIWuYfK.js","/assets/TruncatedFilePath-C8OKAR5x.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/LibraryFunctionPreview-DLeucoVX.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-BLdiCuG-.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/EntityTypeBadge-g3saevPb.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/labs-Zk7ryIM1.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,hasAction:!0,hasLoader:!0,hasClientAction:!1,hasClientLoader:!1,hasClientMiddleware:!1,hasDefaultExport:!0,hasErrorBoundary:!1,module:"/assets/git-DdZcvjGh.js",imports:["/assets/chunk-JZWAC4HX-C4pqxYJB.js","/assets/useReportContext-O-jkvSPx.js","/assets/EntityItem-BcgbViKV.js","/assets/LogViewer-ceAyBX-H.js","/assets/index-yHOVb4rc.js","/assets/fileTableUtils-cPo8LiG3.js","/assets/createLucideIcon-CC6AbExI.js","/assets/useToast-9FIWuYfK.js","/assets/TruncatedFilePath-C8OKAR5x.js","/assets/SafeScreenshot-BED4B6sP.js","/assets/LibraryFunctionPreview-DLeucoVX.js","/assets/scenarioStatus-B_8jpV3e.js","/assets/triangle-alert-BLdiCuG-.js","/assets/EntityTypeIcon-CQIG2qda.js","/assets/EntityTypeBadge-g3saevPb.js"],css:[],clientActionModule:void 0,clientLoaderModule:void 0,clientMiddlewareModule:void 0,hydrateFallbackModule:void 0}},url:"/assets/manifest-76e7b62c.js",version:"76e7b62c",sri:void 0},xS="build/client",bS="/",wS={unstable_optimizeDeps:!1,unstable_subResourceIntegrity:!1,unstable_trailingSlashAwareDataRequests:!1,unstable_previewServerPrerendering:!1,v8_middleware:!1,v8_splitRouteModules:!1,v8_viteEnvironmentApi:!1},vS=!0,NS=!1,CS=[],SS={mode:"lazy",manifestPath:"/__manifest"},kS="/",ES={module:mu},_S={root:{id:"root",parentId:void 0,path:"",index:void 0,caseSensitive:void 0,module:yh},"routes/entity.$sha.scenarios.$scenarioId.fullscreen":{id:"routes/entity.$sha.scenarios.$scenarioId.fullscreen",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/fullscreen",index:void 0,caseSensitive:void 0,module:Ch},"routes/entity.$sha.scenarios.$scenarioId.dev":{id:"routes/entity.$sha.scenarios.$scenarioId.dev",parentId:"root",path:"entity/:sha/scenarios/:scenarioId/dev",index:void 0,caseSensitive:void 0,module:Wh},"routes/api.editor-journal-screenshot":{id:"routes/api.editor-journal-screenshot",parentId:"root",path:"api/editor-journal-screenshot",index:void 0,caseSensitive:void 0,module:Hh},"routes/entity.$sha_.edit.$scenarioId":{id:"routes/entity.$sha_.edit.$scenarioId",parentId:"root",path:"entity/:sha/edit/:scenarioId",index:void 0,caseSensitive:void 0,module:ff},"routes/api.editor-register-scenario":{id:"routes/api.editor-register-scenario",parentId:"root",path:"api/editor-register-scenario",index:void 0,caseSensitive:void 0,module:pg},"routes/api.editor-scenario-coverage":{id:"routes/api.editor-scenario-coverage",parentId:"root",path:"api/editor-scenario-coverage",index:void 0,caseSensitive:void 0,module:vg},"routes/entity.$sha_.create-scenario":{id:"routes/entity.$sha_.create-scenario",parentId:"root",path:"entity/:sha/create-scenario",index:void 0,caseSensitive:void 0,module:Ag},"routes/api.editor-capture-scenario":{id:"routes/api.editor-capture-scenario",parentId:"root",path:"api/editor-capture-scenario",index:void 0,caseSensitive:void 0,module:Tg},"routes/api.editor-scenario-image.$":{id:"routes/api.editor-scenario-image.$",parentId:"root",path:"api/editor-scenario-image/*",index:void 0,caseSensitive:void 0,module:$g},"routes/api.editor-journal-image.$":{id:"routes/api.editor-journal-image.$",parentId:"root",path:"api/editor-journal-image/*",index:void 0,caseSensitive:void 0,module:Rg},"routes/api.editor-switch-scenario":{id:"routes/api.editor-switch-scenario",parentId:"root",path:"api/editor-switch-scenario",index:void 0,caseSensitive:void 0,module:Og},"routes/api.generate-scenario-data":{id:"routes/api.generate-scenario-data",parentId:"root",path:"api/generate-scenario-data",index:void 0,caseSensitive:void 0,module:F0},"routes/api.editor-journal-update":{id:"routes/api.editor-journal-update",parentId:"root",path:"api/editor-journal-update",index:void 0,caseSensitive:void 0,module:Z0},"routes/api.editor-client-errors":{id:"routes/api.editor-client-errors",parentId:"root",path:"api/editor-client-errors",index:void 0,caseSensitive:void 0,module:ey},"routes/api.editor-entity-status":{id:"routes/api.editor-entity-status",parentId:"root",path:"api/editor-entity-status",index:void 0,caseSensitive:void 0,module:ny},"routes/api.editor-journal-entry":{id:"routes/api.editor-journal-entry",parentId:"root",path:"api/editor-journal-entry",index:void 0,caseSensitive:void 0,module:sy},"routes/api.editor-scenario-data":{id:"routes/api.editor-scenario-data",parentId:"root",path:"api/editor-scenario-data",index:void 0,caseSensitive:void 0,module:oy},"routes/api.llm-calls.$entitySha":{id:"routes/api.llm-calls.$entitySha",parentId:"root",path:"api/llm-calls/:entitySha",index:void 0,caseSensitive:void 0,module:cy},"routes/api.editor-project-info":{id:"routes/api.editor-project-info",parentId:"root",path:"api/editor-project-info",index:void 0,caseSensitive:void 0,module:my},"routes/api.editor-test-results":{id:"routes/api.editor-test-results",parentId:"root",path:"api/editor-test-results",index:void 0,caseSensitive:void 0,module:gy},"routes/api.branch-entity-diff":{id:"routes/api.branch-entity-diff",parentId:"root",path:"api/branch-entity-diff",index:void 0,caseSensitive:void 0,module:Cy},"routes/api.capture-screenshot":{id:"routes/api.capture-screenshot",parentId:"root",path:"api/capture-screenshot",index:void 0,caseSensitive:void 0,module:ky},"routes/api.editor-load-commit":{id:"routes/api.editor-load-commit",parentId:"root",path:"api/editor-load-commit",index:void 0,caseSensitive:void 0,module:Dy},"routes/api.recapture-scenario":{id:"routes/api.recapture-scenario",parentId:"root",path:"api/recapture-scenario",index:void 0,caseSensitive:void 0,module:zy},"routes/api.agent-transcripts":{id:"routes/api.agent-transcripts",parentId:"root",path:"api/agent-transcripts",index:void 0,caseSensitive:void 0,module:ex},"routes/api.editor-dev-server":{id:"routes/api.editor-dev-server",parentId:"root",path:"api/editor-dev-server",index:void 0,caseSensitive:void 0,module:sx},"routes/api.logs.$projectSlug":{id:"routes/api.logs.$projectSlug",parentId:"root",path:"api/logs/:projectSlug",index:void 0,caseSensitive:void 0,module:ix},"routes/api.editor-file-diff":{id:"routes/api.editor-file-diff",parentId:"root",path:"api/editor-file-diff",index:void 0,caseSensitive:void 0,module:cx},"routes/api.editor-scenarios":{id:"routes/api.editor-scenarios",parentId:"root",path:"api/editor-scenarios",index:void 0,caseSensitive:void 0,module:ux},"routes/api.execute-function":{id:"routes/api.execute-function",parentId:"root",path:"api/execute-function",index:void 0,caseSensitive:void 0,module:hx},"routes/api.interactive-mode":{id:"routes/api.interactive-mode",parentId:"root",path:"api/interactive-mode",index:void 0,caseSensitive:void 0,module:yx},"routes/api.delete-scenario":{id:"routes/api.delete-scenario",parentId:"root",path:"api/delete-scenario",index:void 0,caseSensitive:void 0,module:bx},"routes/api.dev-mode-events":{id:"routes/api.dev-mode-events",parentId:"root",path:"api/dev-mode-events",index:void 0,caseSensitive:void 0,module:Nx},"routes/api.generate-report":{id:"routes/api.generate-report",parentId:"root",path:"api/generate-report",index:void 0,caseSensitive:void 0,module:$x},"routes/api.editor-journal":{id:"routes/api.editor-journal",parentId:"root",path:"api/editor-journal",index:void 0,caseSensitive:void 0,module:Rx},"routes/api.editor-refresh":{id:"routes/api.editor-refresh",parentId:"root",path:"api/editor-refresh",index:void 0,caseSensitive:void 0,module:Ux},"routes/api.editor-session":{id:"routes/api.editor-session",parentId:"root",path:"api/editor-session",index:void 0,caseSensitive:void 0,module:Jx},"routes/api.memory-profile":{id:"routes/api.memory-profile",parentId:"root",path:"api/memory-profile",index:void 0,caseSensitive:void 0,module:Kx},"routes/api.process-status":{id:"routes/api.process-status",parentId:"root",path:"api/process-status",index:void 0,caseSensitive:void 0,module:eb},"routes/api.restart-server":{id:"routes/api.restart-server",parentId:"root",path:"api/restart-server",index:void 0,caseSensitive:void 0,module:sb},"routes/api.save-scenarios":{id:"routes/api.save-scenarios",parentId:"root",path:"api/save-scenarios",index:void 0,caseSensitive:void 0,module:ob},"routes/agent-transcripts":{id:"routes/agent-transcripts",parentId:"root",path:"agent-transcripts",index:void 0,caseSensitive:void 0,module:Nb},"routes/api.editor-commit":{id:"routes/api.editor-commit",parentId:"root",path:"api/editor-commit",index:void 0,caseSensitive:void 0,module:Sb},"routes/api.editor-audit":{id:"routes/api.editor-audit",parentId:"root",path:"api/editor-audit",index:void 0,caseSensitive:void 0,module:$b},"routes/api.kill-process":{id:"routes/api.kill-process",parentId:"root",path:"api/kill-process",index:void 0,caseSensitive:void 0,module:Rb},"routes/api.save-fixture":{id:"routes/api.save-fixture",parentId:"root",path:"api/save-fixture",index:void 0,caseSensitive:void 0,module:Bb},"routes/api.screenshot.$":{id:"routes/api.screenshot.$",parentId:"root",path:"api/screenshot/*",index:void 0,caseSensitive:void 0,module:Ub},"routes/activity.($tab)":{id:"routes/activity.($tab)",parentId:"root",path:"activity/:tab?",index:void 0,caseSensitive:void 0,module:Xb},"routes/api.debug-setup":{id:"routes/api.debug-setup",parentId:"root",path:"api/debug-setup",index:void 0,caseSensitive:void 0,module:nw},"routes/api.editor-file":{id:"routes/api.editor-file",parentId:"root",path:"api/editor-file",index:void 0,caseSensitive:void 0,module:sw},"routes/api.labs-unlock":{id:"routes/api.labs-unlock",parentId:"root",path:"api/labs-unlock",index:void 0,caseSensitive:void 0,module:lw},"routes/api.recapture":{id:"routes/api.recapture",parentId:"root",path:"api/recapture",index:void 0,caseSensitive:void 0,module:dw},"routes/api.rule-path":{id:"routes/api.rule-path",parentId:"root",path:"api/rule-path",index:void 0,caseSensitive:void 0,module:fw},"routes/entity.$sha.$":{id:"routes/entity.$sha.$",parentId:"root",path:"entity/:sha/*",index:void 0,caseSensitive:void 0,module:Lw},"routes/api.analyze":{id:"routes/api.analyze",parentId:"root",path:"api/analyze",index:void 0,caseSensitive:void 0,module:Bw},"routes/simulations":{id:"routes/simulations",parentId:"root",path:"simulations",index:void 0,caseSensitive:void 0,module:Gw},"routes/api.events":{id:"routes/api.events",parentId:"root",path:"api/events",index:void 0,caseSensitive:void 0,module:Kw},"routes/api.health":{id:"routes/api.health",parentId:"root",path:"api/health",index:void 0,caseSensitive:void 0,module:Zw},"routes/api.memory":{id:"routes/api.memory",parentId:"root",path:"api/memory",index:void 0,caseSensitive:void 0,module:mv},"routes/api.queue":{id:"routes/api.queue",parentId:"root",path:"api/queue",index:void 0,caseSensitive:void 0,module:fv},"routes/dev.empty":{id:"routes/dev.empty",parentId:"root",path:"dev/empty",index:void 0,caseSensitive:void 0,module:xv},"routes/settings":{id:"routes/settings",parentId:"root",path:"settings",index:void 0,caseSensitive:void 0,module:kv},"routes/static.$":{id:"routes/static.$",parentId:"root",path:"static/*",index:void 0,caseSensitive:void 0,module:_v},"routes/_index":{id:"routes/_index",parentId:"root",path:void 0,index:!0,caseSensitive:void 0,module:Dv},"routes/editor":{id:"routes/editor",parentId:"root",path:"editor",index:void 0,caseSensitive:void 0,module:yN},"routes/memory":{id:"routes/memory",parentId:"root",path:"memory",index:void 0,caseSensitive:void 0,module:YN},"routes/files":{id:"routes/files",parentId:"root",path:"files",index:void 0,caseSensitive:void 0,module:GN},"routes/labs":{id:"routes/labs",parentId:"root",path:"labs",index:void 0,caseSensitive:void 0,module:rC},"routes/git":{id:"routes/git",parentId:"root",path:"git",index:void 0,caseSensitive:void 0,module:hC}},AS=!1;export{em as $,qm as A,Hm as B,Zm as C,Um as D,je as E,pm as F,hm as G,on as H,cS as I,Mu as J,Iu as K,Ru as L,Du as M,rl as N,Lu as O,Fu as P,sl as Q,Bu as R,Yu as S,rm as T,al as U,Hu as V,Gu as W,qu as X,Ku as Y,Zu as Z,Xu as _,ku as a,tm as a0,ju as a1,Tu as a2,nm as a3,Jr as a4,am as a5,om as a6,im as a7,lm as a8,dm as a9,cm as aa,ul as ab,rp as ac,sp as ad,pS as ae,hS as af,Fx as ag,gS as ah,Yt as ai,dS as aj,uS as ak,mS as al,xS as am,bS as an,wS as ao,vS as ap,NS as aq,CS as ar,SS as as,kS as at,ES as au,_S as av,AS as aw,yS as ax,rn as b,nn as c,Et as d,or as e,La as f,ds as g,nl as h,Cu as i,_m as j,Am as k,Lt as l,_t as m,za as n,Dm as o,Vr as p,tt as q,ll as r,cl as s,Ba as t,Dt as u,dl as v,An as w,Cn as x,km as y,Oo as z};