@slycode/slycode 0.2.21 → 0.2.23

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 (271) hide show
  1. package/dist/bridge/api.d.ts +2 -1
  2. package/dist/bridge/api.js +114 -1
  3. package/dist/bridge/api.js.map +1 -1
  4. package/dist/bridge/git-utils.d.ts +9 -0
  5. package/dist/bridge/git-utils.js +49 -0
  6. package/dist/bridge/git-utils.js.map +1 -0
  7. package/dist/bridge/index.js +8 -2
  8. package/dist/bridge/index.js.map +1 -1
  9. package/dist/bridge/provider-utils.d.ts +10 -0
  10. package/dist/bridge/provider-utils.js +5 -1
  11. package/dist/bridge/provider-utils.js.map +1 -1
  12. package/dist/bridge/response-store.d.ts +46 -0
  13. package/dist/bridge/response-store.js +95 -0
  14. package/dist/bridge/response-store.js.map +1 -0
  15. package/dist/bridge/session-manager.d.ts +33 -1
  16. package/dist/bridge/session-manager.js +191 -2
  17. package/dist/bridge/session-manager.js.map +1 -1
  18. package/dist/bridge/types.d.ts +41 -0
  19. package/dist/data/scaffold-templates/tutorial-project/documentation/kanban.json +1 -1
  20. package/dist/messaging/bridge-client.d.ts +7 -3
  21. package/dist/messaging/bridge-client.js +26 -5
  22. package/dist/messaging/bridge-client.js.map +1 -1
  23. package/dist/messaging/index.js +149 -30
  24. package/dist/messaging/index.js.map +1 -1
  25. package/dist/messaging/state.d.ts +3 -0
  26. package/dist/messaging/state.js +13 -0
  27. package/dist/messaging/state.js.map +1 -1
  28. package/dist/messaging/types.d.ts +3 -0
  29. package/dist/scripts/kanban.js +448 -2
  30. package/dist/store/actions/checkpoint.md +1 -1
  31. package/dist/store/actions/context.md +1 -1
  32. package/dist/store/actions/create-card.md +1 -1
  33. package/dist/store/actions/deep-design.md +13 -3
  34. package/dist/store/actions/design-requirements.md +11 -1
  35. package/dist/store/actions/explore.md +1 -1
  36. package/dist/store/actions/onboard.md +2 -4
  37. package/dist/store/actions/summarize.md +1 -1
  38. package/dist/store/skills/kanban/SKILL.md +77 -3
  39. package/dist/web/.next/BUILD_ID +1 -1
  40. package/dist/web/.next/app-path-routes-manifest.json +1 -0
  41. package/dist/web/.next/build-manifest.json +2 -2
  42. package/dist/web/.next/prerender-manifest.json +3 -3
  43. package/dist/web/.next/routes-manifest.json +6 -0
  44. package/dist/web/.next/server/app/_global-error.html +2 -2
  45. package/dist/web/.next/server/app/_global-error.rsc +1 -1
  46. package/dist/web/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +1 -1
  47. package/dist/web/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  48. package/dist/web/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  49. package/dist/web/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  50. package/dist/web/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  51. package/dist/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  52. package/dist/web/.next/server/app/_not-found.html +1 -1
  53. package/dist/web/.next/server/app/_not-found.rsc +10 -10
  54. package/dist/web/.next/server/app/_not-found.segments/_full.segment.rsc +10 -10
  55. package/dist/web/.next/server/app/_not-found.segments/_head.segment.rsc +4 -4
  56. package/dist/web/.next/server/app/_not-found.segments/_index.segment.rsc +5 -5
  57. package/dist/web/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +2 -2
  58. package/dist/web/.next/server/app/_not-found.segments/_not-found.segment.rsc +3 -3
  59. package/dist/web/.next/server/app/_not-found.segments/_tree.segment.rsc +2 -2
  60. package/dist/web/.next/server/app/api/areas/route.js +1 -1
  61. package/dist/web/.next/server/app/api/areas/route.js.nft.json +1 -1
  62. package/dist/web/.next/server/app/api/bridge/[...path]/route.js +1 -1
  63. package/dist/web/.next/server/app/api/bridge/[...path]/route.js.nft.json +1 -1
  64. package/dist/web/.next/server/app/api/changelog/route/app-paths-manifest.json +3 -0
  65. package/dist/web/.next/server/app/api/changelog/route/build-manifest.json +11 -0
  66. package/dist/web/.next/server/app/api/changelog/route/server-reference-manifest.json +4 -0
  67. package/dist/web/.next/server/app/api/changelog/route.js +7 -0
  68. package/dist/web/.next/server/app/api/changelog/route.js.map +5 -0
  69. package/dist/web/.next/server/app/api/changelog/route.js.nft.json +1 -0
  70. package/dist/web/.next/server/app/api/changelog/route_client-reference-manifest.js +2 -0
  71. package/dist/web/.next/server/app/api/cli-assets/assistant/route.js +1 -1
  72. package/dist/web/.next/server/app/api/cli-assets/assistant/route.js.nft.json +1 -1
  73. package/dist/web/.next/server/app/api/cli-assets/fix/route.js +1 -1
  74. package/dist/web/.next/server/app/api/cli-assets/fix/route.js.nft.json +1 -1
  75. package/dist/web/.next/server/app/api/cli-assets/import/route.js +1 -1
  76. package/dist/web/.next/server/app/api/cli-assets/import/route.js.nft.json +1 -1
  77. package/dist/web/.next/server/app/api/cli-assets/route.js +2 -2
  78. package/dist/web/.next/server/app/api/cli-assets/route.js.nft.json +1 -1
  79. package/dist/web/.next/server/app/api/cli-assets/store/preview/route.js +1 -1
  80. package/dist/web/.next/server/app/api/cli-assets/store/preview/route.js.nft.json +1 -1
  81. package/dist/web/.next/server/app/api/cli-assets/store/route.js +2 -2
  82. package/dist/web/.next/server/app/api/cli-assets/store/route.js.nft.json +1 -1
  83. package/dist/web/.next/server/app/api/cli-assets/sync/route.js +1 -1
  84. package/dist/web/.next/server/app/api/cli-assets/sync/route.js.nft.json +1 -1
  85. package/dist/web/.next/server/app/api/cli-assets/updates/route.js +2 -2
  86. package/dist/web/.next/server/app/api/cli-assets/updates/route.js.nft.json +1 -1
  87. package/dist/web/.next/server/app/api/dashboard/route.js +2 -2
  88. package/dist/web/.next/server/app/api/dashboard/route.js.nft.json +1 -1
  89. package/dist/web/.next/server/app/api/events/route.js +1 -1
  90. package/dist/web/.next/server/app/api/events/route.js.nft.json +1 -1
  91. package/dist/web/.next/server/app/api/file/route.js +1 -1
  92. package/dist/web/.next/server/app/api/file/route.js.nft.json +1 -1
  93. package/dist/web/.next/server/app/api/git-status/route.js +1 -1
  94. package/dist/web/.next/server/app/api/git-status/route.js.nft.json +1 -1
  95. package/dist/web/.next/server/app/api/kanban/route.js +1 -1
  96. package/dist/web/.next/server/app/api/kanban/route.js.nft.json +1 -1
  97. package/dist/web/.next/server/app/api/kanban/stream/route.js +1 -1
  98. package/dist/web/.next/server/app/api/kanban/stream/route.js.nft.json +1 -1
  99. package/dist/web/.next/server/app/api/projects/[id]/route.js +2 -2
  100. package/dist/web/.next/server/app/api/projects/[id]/route.js.nft.json +1 -1
  101. package/dist/web/.next/server/app/api/projects/analyze/route.js +1 -1
  102. package/dist/web/.next/server/app/api/projects/analyze/route.js.nft.json +1 -1
  103. package/dist/web/.next/server/app/api/projects/reorder/route.js +2 -2
  104. package/dist/web/.next/server/app/api/projects/reorder/route.js.nft.json +1 -1
  105. package/dist/web/.next/server/app/api/projects/route.js +2 -2
  106. package/dist/web/.next/server/app/api/projects/route.js.nft.json +1 -1
  107. package/dist/web/.next/server/app/api/providers/route.js +1 -1
  108. package/dist/web/.next/server/app/api/providers/route.js.nft.json +1 -1
  109. package/dist/web/.next/server/app/api/scheduler/route.js +1 -1
  110. package/dist/web/.next/server/app/api/scheduler/route.js.nft.json +1 -1
  111. package/dist/web/.next/server/app/api/search/route.js +1 -1
  112. package/dist/web/.next/server/app/api/search/route.js.nft.json +1 -1
  113. package/dist/web/.next/server/app/api/settings/route.js +1 -1
  114. package/dist/web/.next/server/app/api/settings/route.js.nft.json +1 -1
  115. package/dist/web/.next/server/app/api/sly-actions/invalidate/route.js +1 -1
  116. package/dist/web/.next/server/app/api/sly-actions/invalidate/route.js.nft.json +1 -1
  117. package/dist/web/.next/server/app/api/sly-actions/route.js +1 -1
  118. package/dist/web/.next/server/app/api/sly-actions/route.js.nft.json +1 -1
  119. package/dist/web/.next/server/app/api/sly-actions/stream/route.js +1 -1
  120. package/dist/web/.next/server/app/api/sly-actions/stream/route.js.nft.json +1 -1
  121. package/dist/web/.next/server/app/api/system-stats/route.js +1 -1
  122. package/dist/web/.next/server/app/api/system-stats/route.js.nft.json +1 -1
  123. package/dist/web/.next/server/app/api/terminal-classes/route.js +1 -1
  124. package/dist/web/.next/server/app/api/terminal-classes/route.js.nft.json +1 -1
  125. package/dist/web/.next/server/app/api/transcribe/route.js +5 -5
  126. package/dist/web/.next/server/app/api/transcribe/route.js.nft.json +1 -1
  127. package/dist/web/.next/server/app/api/version-check/route.js +1 -1
  128. package/dist/web/.next/server/app/api/version-check/route.js.nft.json +1 -1
  129. package/dist/web/.next/server/app/page.js +1 -1
  130. package/dist/web/.next/server/app/page.js.nft.json +1 -1
  131. package/dist/web/.next/server/app/page_client-reference-manifest.js +1 -1
  132. package/dist/web/.next/server/app/project/[id]/page.js +2 -2
  133. package/dist/web/.next/server/app/project/[id]/page.js.nft.json +1 -1
  134. package/dist/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
  135. package/dist/web/.next/server/app-paths-manifest.json +1 -0
  136. package/dist/web/.next/server/chunks/{[externals]__c6831f39._.js → [externals]__78e522ea._.js} +2 -2
  137. package/dist/web/.next/server/chunks/{[root-of-the-server]__1ec21ccc._.js → [root-of-the-server]__029203cd._.js} +3 -3
  138. package/dist/web/.next/server/chunks/{[root-of-the-server]__4297cb97._.js → [root-of-the-server]__0d6d4443._.js} +1 -1
  139. package/dist/web/.next/server/chunks/[root-of-the-server]__172ad0b1._.js +18 -0
  140. package/dist/web/.next/server/chunks/[root-of-the-server]__1c5f4ef9._.js +3 -0
  141. package/dist/web/.next/server/chunks/[root-of-the-server]__1cab11f0._.js +3 -0
  142. package/dist/web/.next/server/chunks/{[root-of-the-server]__0f69c28a._.js → [root-of-the-server]__1eb3f172._.js} +2 -2
  143. package/dist/web/.next/server/chunks/[root-of-the-server]__22cba275._.js +3 -0
  144. package/dist/web/.next/server/chunks/[root-of-the-server]__2543e413._.js +3 -0
  145. package/dist/web/.next/server/chunks/[root-of-the-server]__2c42a835._.js +3 -0
  146. package/dist/web/.next/server/chunks/[root-of-the-server]__2ed0ff47._.js +3 -0
  147. package/dist/web/.next/server/chunks/[root-of-the-server]__35454eea._.js +27 -0
  148. package/dist/web/.next/server/chunks/[root-of-the-server]__35768b56._.js +3 -0
  149. package/dist/web/.next/server/chunks/[root-of-the-server]__3880228a._.js +3 -0
  150. package/dist/web/.next/server/chunks/[root-of-the-server]__42322d88._.js +3 -0
  151. package/dist/web/.next/server/chunks/{[root-of-the-server]__d0f4efec._.js → [root-of-the-server]__5152eeff._.js} +3 -3
  152. package/dist/web/.next/server/chunks/[root-of-the-server]__527c7f57._.js +3 -0
  153. package/dist/web/.next/server/chunks/[root-of-the-server]__5c5dac4b._.js +3 -0
  154. package/dist/web/.next/server/chunks/[root-of-the-server]__5cb130f2._.js +3 -0
  155. package/dist/web/.next/server/chunks/[root-of-the-server]__68927e75._.js +3 -0
  156. package/dist/web/.next/server/chunks/[root-of-the-server]__719517c7._.js +3 -0
  157. package/dist/web/.next/server/chunks/[root-of-the-server]__73cf49c2._.js +3 -0
  158. package/dist/web/.next/server/chunks/{[root-of-the-server]__f5dae2ad._.js → [root-of-the-server]__7af4ab09._.js} +1 -1
  159. package/dist/web/.next/server/chunks/{[root-of-the-server]__4244617a._.js → [root-of-the-server]__7e6860e0._.js} +3 -3
  160. package/dist/web/.next/server/chunks/[root-of-the-server]__88bf5e22._.js +3 -0
  161. package/dist/web/.next/server/chunks/{[root-of-the-server]__f97e93fa._.js → [root-of-the-server]__8b4259cb._.js} +3 -3
  162. package/dist/web/.next/server/chunks/[root-of-the-server]__92f81907._.js +3 -0
  163. package/dist/web/.next/server/chunks/[root-of-the-server]__967603e9._.js +3 -0
  164. package/dist/web/.next/server/chunks/[root-of-the-server]__9e4bd28f._.js +3 -0
  165. package/dist/web/.next/server/chunks/[root-of-the-server]__a259539f._.js +3 -0
  166. package/dist/web/.next/server/chunks/[root-of-the-server]__ba1d2e56._.js +3 -0
  167. package/dist/web/.next/server/chunks/[root-of-the-server]__c942d872._.js +3 -0
  168. package/dist/web/.next/server/chunks/[root-of-the-server]__d7893622._.js +3 -0
  169. package/dist/web/.next/server/chunks/{[root-of-the-server]__3b9d3e43._.js → [root-of-the-server]__d843611b._.js} +6 -6
  170. package/dist/web/.next/server/chunks/[root-of-the-server]__f4d2627f._.js +3 -0
  171. package/dist/web/.next/server/chunks/[root-of-the-server]__f597835d._.js +3 -0
  172. package/dist/web/.next/server/chunks/{[root-of-the-server]__cf14e306._.js → [root-of-the-server]__fe8b9abd._.js} +1 -1
  173. package/dist/web/.next/server/chunks/_next-internal_server_app_api_changelog_route_actions_d6e239bf.js +3 -0
  174. package/dist/web/.next/server/chunks/node_modules_next_dist_esm_build_templates_app-route_18324462.js +1 -1
  175. package/dist/web/.next/server/chunks/src_677020aa._.js +1 -1
  176. package/dist/web/.next/server/chunks/src_lib_scheduler_ts_03988e3e._.js +1 -1
  177. package/dist/web/.next/server/chunks/src_lib_scheduler_ts_7120457c._.js +1 -1
  178. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__1f5fc489._.js +4 -3
  179. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__43d93717._.js +3 -0
  180. package/dist/web/.next/server/chunks/ssr/{[root-of-the-server]__077f472c._.js → [root-of-the-server]__6183d28c._.js} +1 -1
  181. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__90f82e6d._.js +3 -0
  182. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__bcbe4bf2._.js +4 -3
  183. package/dist/web/.next/server/chunks/ssr/src_components_Dashboard_tsx_efc4dc27._.js +1 -1
  184. package/dist/web/.next/server/chunks/ssr/src_components_c4135402._.js +1 -1
  185. package/dist/web/.next/server/chunks/ssr/src_contexts_VoiceContext_tsx_cfba7292._.js +1 -1
  186. package/dist/web/.next/server/chunks/ssr/src_lib_registry_ts_2fc87c9c._.js +1 -1
  187. package/dist/web/.next/server/pages/404.html +1 -1
  188. package/dist/web/.next/server/pages/500.html +2 -2
  189. package/dist/web/.next/server/server-reference-manifest.js +1 -1
  190. package/dist/web/.next/server/server-reference-manifest.json +1 -1
  191. package/dist/web/.next/static/chunks/293449b828207656.css +1 -0
  192. package/dist/web/.next/static/chunks/{f55f3c8c1a52f80c.js → 3859477038c381ad.js} +1 -1
  193. package/dist/web/.next/static/chunks/3a5721af09d1c753.js +5 -0
  194. package/dist/web/.next/static/chunks/{8fb2a99c64580de7.js → 98311243e9a5a0ec.js} +1 -1
  195. package/dist/web/.next/static/chunks/{b8e0c1aeea4a14bc.js → a47f36b030917d1f.js} +1 -1
  196. package/dist/web/.next/static/chunks/d60c422421920130.js +5 -0
  197. package/dist/web/.next/static/chunks/{4049cceee6a49323.js → fa78afe3ceed998b.js} +1 -1
  198. package/dist/web/src/app/api/changelog/route.ts +45 -0
  199. package/dist/web/src/app/api/kanban/route.ts +52 -12
  200. package/dist/web/src/app/api/projects/analyze/route.ts +12 -2
  201. package/dist/web/src/app/api/projects/route.ts +1 -11
  202. package/dist/web/src/app/api/providers/route.ts +4 -0
  203. package/dist/web/src/components/ActivityFeed.tsx +3 -0
  204. package/dist/web/src/components/BranchTab.tsx +115 -0
  205. package/dist/web/src/components/ChangelogModal.tsx +234 -0
  206. package/dist/web/src/components/ClaudeTerminalPanel.tsx +124 -70
  207. package/dist/web/src/components/Dashboard.tsx +11 -0
  208. package/dist/web/src/components/GlobalClaudePanel.tsx +6 -0
  209. package/dist/web/src/components/ProjectKanban.tsx +38 -8
  210. package/dist/web/src/components/VersionUpdateToast.tsx +6 -4
  211. package/dist/web/src/components/VoiceControlBar.tsx +1 -1
  212. package/dist/web/src/lib/paths.ts +14 -0
  213. package/dist/web/src/lib/scheduler.ts +2 -1
  214. package/dist/web/src/lib/types.ts +24 -0
  215. package/dist/web/tsconfig.tsbuildinfo +1 -1
  216. package/package.json +1 -1
  217. package/templates/changelog.json +242 -0
  218. package/templates/kanban-seed.json +1 -1
  219. package/templates/store/actions/checkpoint.md +1 -1
  220. package/templates/store/actions/context.md +1 -1
  221. package/templates/store/actions/create-card.md +1 -1
  222. package/templates/store/actions/deep-design.md +13 -3
  223. package/templates/store/actions/design-requirements.md +11 -1
  224. package/templates/store/actions/explore.md +1 -1
  225. package/templates/store/actions/onboard.md +2 -4
  226. package/templates/store/actions/summarize.md +1 -1
  227. package/templates/store/skills/kanban/SKILL.md +77 -3
  228. package/templates/tutorial-project/documentation/kanban.json +1 -1
  229. package/templates/updates/actions/checkpoint.md +1 -1
  230. package/templates/updates/actions/context.md +1 -1
  231. package/templates/updates/actions/create-card.md +1 -1
  232. package/templates/updates/actions/deep-design.md +13 -3
  233. package/templates/updates/actions/design-requirements.md +11 -1
  234. package/templates/updates/actions/explore.md +1 -1
  235. package/templates/updates/actions/onboard.md +2 -4
  236. package/templates/updates/actions/summarize.md +1 -1
  237. package/templates/updates/skills/kanban/SKILL.md +77 -3
  238. package/dist/web/.next/server/chunks/[root-of-the-server]__09aec55a._.js +0 -3
  239. package/dist/web/.next/server/chunks/[root-of-the-server]__12f6cd6f._.js +0 -3
  240. package/dist/web/.next/server/chunks/[root-of-the-server]__15fc9266._.js +0 -18
  241. package/dist/web/.next/server/chunks/[root-of-the-server]__198f01e0._.js +0 -3
  242. package/dist/web/.next/server/chunks/[root-of-the-server]__279e9bf3._.js +0 -3
  243. package/dist/web/.next/server/chunks/[root-of-the-server]__2b639eab._.js +0 -3
  244. package/dist/web/.next/server/chunks/[root-of-the-server]__2d1f0ed9._.js +0 -3
  245. package/dist/web/.next/server/chunks/[root-of-the-server]__3f239285._.js +0 -3
  246. package/dist/web/.next/server/chunks/[root-of-the-server]__47dd878e._.js +0 -3
  247. package/dist/web/.next/server/chunks/[root-of-the-server]__5b8c9374._.js +0 -3
  248. package/dist/web/.next/server/chunks/[root-of-the-server]__5e08b942._.js +0 -3
  249. package/dist/web/.next/server/chunks/[root-of-the-server]__6ffce934._.js +0 -3
  250. package/dist/web/.next/server/chunks/[root-of-the-server]__71bb3374._.js +0 -3
  251. package/dist/web/.next/server/chunks/[root-of-the-server]__7603305e._.js +0 -3
  252. package/dist/web/.next/server/chunks/[root-of-the-server]__7c476ad6._.js +0 -3
  253. package/dist/web/.next/server/chunks/[root-of-the-server]__846ca56f._.js +0 -3
  254. package/dist/web/.next/server/chunks/[root-of-the-server]__98d88050._.js +0 -3
  255. package/dist/web/.next/server/chunks/[root-of-the-server]__b273cc05._.js +0 -3
  256. package/dist/web/.next/server/chunks/[root-of-the-server]__b90bbd70._.js +0 -3
  257. package/dist/web/.next/server/chunks/[root-of-the-server]__d5272169._.js +0 -3
  258. package/dist/web/.next/server/chunks/[root-of-the-server]__d56e68cb._.js +0 -3
  259. package/dist/web/.next/server/chunks/[root-of-the-server]__d6362272._.js +0 -3
  260. package/dist/web/.next/server/chunks/[root-of-the-server]__de1277ee._.js +0 -27
  261. package/dist/web/.next/server/chunks/[root-of-the-server]__e88a19d2._.js +0 -3
  262. package/dist/web/.next/server/chunks/[root-of-the-server]__f3e501b6._.js +0 -3
  263. package/dist/web/.next/server/chunks/[root-of-the-server]__f59af2bc._.js +0 -3
  264. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__9ac6ea25._.js +0 -3
  265. package/dist/web/.next/server/chunks/ssr/[root-of-the-server]__dfe2728c._.js +0 -3
  266. package/dist/web/.next/static/chunks/3d5195b57fc05540.js +0 -4
  267. package/dist/web/.next/static/chunks/59fb302a5bfd2dc0.js +0 -4
  268. package/dist/web/.next/static/chunks/747f5e5f9dcf2621.css +0 -1
  269. /package/dist/web/.next/static/{0sPAbk-Qw-InZ0rdHjHnC → aN-jqftQVvSm0qVskLybH}/_buildManifest.js +0 -0
  270. /package/dist/web/.next/static/{0sPAbk-Qw-InZ0rdHjHnC → aN-jqftQVvSm0qVskLybH}/_clientMiddlewareManifest.json +0 -0
  271. /package/dist/web/.next/static/{0sPAbk-Qw-InZ0rdHjHnC → aN-jqftQVvSm0qVskLybH}/_ssgManifest.js +0 -0
@@ -1,3 +0,0 @@
1
- module.exports=[18622,(e,t,r)=>{t.exports=e.x("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js",()=>require("next/dist/compiled/next-server/app-page-turbo.runtime.prod.js"))},56704,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-async-storage.external.js",()=>require("next/dist/server/app-render/work-async-storage.external.js"))},32319,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/work-unit-async-storage.external.js",()=>require("next/dist/server/app-render/work-unit-async-storage.external.js"))},24725,(e,t,r)=>{t.exports=e.x("next/dist/server/app-render/after-task-async-storage.external.js",()=>require("next/dist/server/app-render/after-task-async-storage.external.js"))},70406,(e,t,r)=>{t.exports=e.x("next/dist/compiled/@opentelemetry/api",()=>require("next/dist/compiled/@opentelemetry/api"))},93695,(e,t,r)=>{t.exports=e.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},14747,(e,t,r)=>{t.exports=e.x("path",()=>require("path"))},22734,(e,t,r)=>{t.exports=e.x("fs",()=>require("fs"))},7367,e=>{"use strict";var t=e.i(14747),r=e.i(22734);function n(){if(process.env.SLYCODE_HOME)return process.env.SLYCODE_HOME;let e=process.cwd();return(console.warn("[paths] SLYCODE_HOME not set in production — falling back to cwd:",e),e.endsWith("/web")||e.endsWith("\\web"))?t.default.dirname(e):e}function a(){let e=n(),a=t.default.join(e,"node_modules","@slycode","slycode","dist");return r.default.existsSync(a)?a:e}function s(){return process.env.BRIDGE_URL?process.env.BRIDGE_URL:"http://127.0.0.1:3004"}e.s(["getBridgeUrl",()=>s,"getPackageDir",()=>a,"getSlycodeRoot",()=>n])},61525,e=>{"use strict";var t=e.i(47909),r=e.i(74017),n=e.i(96250),a=e.i(59756),s=e.i(61916),o=e.i(74677),i=e.i(69741),l=e.i(16795),u=e.i(87718),d=e.i(95169),c=e.i(47587),p=e.i(66012),f=e.i(70101),h=e.i(74838),x=e.i(10372),R=e.i(93695);e.i(52474);var m=e.i(220),v=e.i(89171),g=e.i(22734),y=e.i(14747),b=e.i(7367);function E(){return y.default.join((0,b.getSlycodeRoot)(),"data","settings.json")}let w={voice:{autoSubmitTerminal:!0,maxRecordingSeconds:300,shortcuts:{startRecording:"Ctrl+.",pauseResume:"Space",submit:"Enter",submitPasteOnly:"Shift+Enter",clear:"Escape"}}};async function C(){try{let e=await g.promises.readFile(E(),"utf-8");return v.NextResponse.json(JSON.parse(e))}catch{return v.NextResponse.json(w)}}async function S(e){try{let t,r=await e.json();if("object"!=typeof r||null===r)return v.NextResponse.json({error:"Payload must be an object"},{status:400});if(void 0!==r.voice){let e=function(e){if("object"!=typeof e||null===e)return'"voice" must be an object';if(void 0!==e.autoSubmitTerminal&&"boolean"!=typeof e.autoSubmitTerminal)return'"voice.autoSubmitTerminal" must be a boolean';if(void 0!==e.maxRecordingSeconds&&("number"!=typeof e.maxRecordingSeconds||e.maxRecordingSeconds<=0))return'"voice.maxRecordingSeconds" must be a positive number';if(void 0!==e.shortcuts){if("object"!=typeof e.shortcuts||null===e.shortcuts)return'"voice.shortcuts" must be an object';for(let[t,r]of Object.entries(e.shortcuts))if("string"!=typeof r)return`"voice.shortcuts.${t}" must be a string`}return null}(r.voice);if(e)return v.NextResponse.json({error:e},{status:400})}let n=E();try{t=JSON.parse(await g.promises.readFile(n,"utf-8"))}catch{t={...w}}let a=function e(t,r){let n={...t};for(let a of Object.keys(r))null===r[a]||"object"!=typeof r[a]||Array.isArray(r[a])||"object"!=typeof t[a]||null===t[a]||Array.isArray(t[a])?n[a]=r[a]:n[a]=e(t[a],r[a]);return n}(t,r);return await g.promises.writeFile(n,JSON.stringify(a,null,2)+"\n"),v.NextResponse.json(a)}catch(e){return v.NextResponse.json({error:e.message},{status:500})}}e.s(["GET",()=>C,"PUT",()=>S],36189);var j=e.i(36189);let A=new t.AppRouteRouteModule({definition:{kind:r.RouteKind.APP_ROUTE,page:"/api/settings/route",pathname:"/api/settings",filename:"route",bundlePath:""},distDir:".next",relativeProjectDir:"",resolvedPagePath:"[project]/src/app/api/settings/route.ts",nextConfigOutput:"standalone",userland:j}),{workAsyncStorage:O,workUnitAsyncStorage:N,serverHooks:T}=A;function P(){return(0,n.patchFetch)({workAsyncStorage:O,workUnitAsyncStorage:N})}async function _(e,t,n){A.isDev&&(0,a.addRequestMeta)(e,"devRequestTimingInternalsEnd",process.hrtime.bigint());let v="/api/settings/route";v=v.replace(/\/index$/,"")||"/";let g=await A.prepare(e,t,{srcPage:v,multiZoneDraftMode:!1});if(!g)return t.statusCode=400,t.end("Bad Request"),null==n.waitUntil||n.waitUntil.call(n,Promise.resolve()),null;let{buildId:y,params:b,nextConfig:E,parsedUrl:w,isDraftMode:C,prerenderManifest:S,routerServerContext:j,isOnDemandRevalidate:O,revalidateOnlyGenerated:N,resolvedPathname:T,clientReferenceManifest:P,serverActionsManifest:_}=g,k=(0,i.normalizeAppPath)(v),q=!!(S.dynamicRoutes[k]||S.routes[T]),H=async()=>((null==j?void 0:j.render404)?await j.render404(e,t,w,!1):t.end("This page could not be found"),null);if(q&&!C){let e=!!S.routes[T],t=S.dynamicRoutes[k];if(t&&!1===t.fallback&&!e){if(E.experimental.adapterPath)return await H();throw new R.NoFallbackError}}let U=null;!q||A.isDev||C||(U="/index"===(U=T)?"/":U);let D=!0===A.isDev||!q,I=q&&!D;_&&P&&(0,o.setManifestsSingleton)({page:v,clientReferenceManifest:P,serverActionsManifest:_});let M=e.method||"GET",F=(0,s.getTracer)(),L=F.getActiveScopeSpan(),$={params:b,prerenderManifest:S,renderOpts:{experimental:{authInterrupts:!!E.experimental.authInterrupts},cacheComponents:!!E.cacheComponents,supportsDynamicResponse:D,incrementalCache:(0,a.getRequestMeta)(e,"incrementalCache"),cacheLifeProfiles:E.cacheLife,waitUntil:n.waitUntil,onClose:e=>{t.on("close",e)},onAfterTaskError:void 0,onInstrumentationRequestError:(t,r,n,a)=>A.onRequestError(e,t,n,a,j)},sharedContext:{buildId:y}},B=new l.NodeNextRequest(e),K=new l.NodeNextResponse(t),G=u.NextRequestAdapter.fromNodeNextRequest(B,(0,u.signalFromNodeResponse)(t));try{let o=async e=>A.handle(G,$).finally(()=>{if(!e)return;e.setAttributes({"http.status_code":t.statusCode,"next.rsc":!1});let r=F.getRootSpanAttributes();if(!r)return;if(r.get("next.span_type")!==d.BaseServerSpan.handleRequest)return void console.warn(`Unexpected root span type '${r.get("next.span_type")}'. Please report this Next.js issue https://github.com/vercel/next.js`);let n=r.get("next.route");if(n){let t=`${M} ${n}`;e.setAttributes({"next.route":n,"http.route":n,"next.span_name":t}),e.updateName(t)}else e.updateName(`${M} ${v}`)}),i=!!(0,a.getRequestMeta)(e,"minimalMode"),l=async a=>{var s,l;let u=async({previousCacheEntry:r})=>{try{if(!i&&O&&N&&!r)return t.statusCode=404,t.setHeader("x-nextjs-cache","REVALIDATED"),t.end("This page could not be found"),null;let s=await o(a);e.fetchMetrics=$.renderOpts.fetchMetrics;let l=$.renderOpts.pendingWaitUntil;l&&n.waitUntil&&(n.waitUntil(l),l=void 0);let u=$.renderOpts.collectedTags;if(!q)return await (0,p.sendResponse)(B,K,s,$.renderOpts.pendingWaitUntil),null;{let e=await s.blob(),t=(0,f.toNodeOutgoingHttpHeaders)(s.headers);u&&(t[x.NEXT_CACHE_TAGS_HEADER]=u),!t["content-type"]&&e.type&&(t["content-type"]=e.type);let r=void 0!==$.renderOpts.collectedRevalidate&&!($.renderOpts.collectedRevalidate>=x.INFINITE_CACHE)&&$.renderOpts.collectedRevalidate,n=void 0===$.renderOpts.collectedExpire||$.renderOpts.collectedExpire>=x.INFINITE_CACHE?void 0:$.renderOpts.collectedExpire;return{value:{kind:m.CachedRouteKind.APP_ROUTE,status:s.status,body:Buffer.from(await e.arrayBuffer()),headers:t},cacheControl:{revalidate:r,expire:n}}}}catch(t){throw(null==r?void 0:r.isStale)&&await A.onRequestError(e,t,{routerKind:"App Router",routePath:v,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:I,isOnDemandRevalidate:O})},!1,j),t}},d=await A.handleResponse({req:e,nextConfig:E,cacheKey:U,routeKind:r.RouteKind.APP_ROUTE,isFallback:!1,prerenderManifest:S,isRoutePPREnabled:!1,isOnDemandRevalidate:O,revalidateOnlyGenerated:N,responseGenerator:u,waitUntil:n.waitUntil,isMinimalMode:i});if(!q)return null;if((null==d||null==(s=d.value)?void 0:s.kind)!==m.CachedRouteKind.APP_ROUTE)throw Object.defineProperty(Error(`Invariant: app-route received invalid cache entry ${null==d||null==(l=d.value)?void 0:l.kind}`),"__NEXT_ERROR_CODE",{value:"E701",enumerable:!1,configurable:!0});i||t.setHeader("x-nextjs-cache",O?"REVALIDATED":d.isMiss?"MISS":d.isStale?"STALE":"HIT"),C&&t.setHeader("Cache-Control","private, no-cache, no-store, max-age=0, must-revalidate");let R=(0,f.fromNodeOutgoingHttpHeaders)(d.value.headers);return i&&q||R.delete(x.NEXT_CACHE_TAGS_HEADER),!d.cacheControl||t.getHeader("Cache-Control")||R.get("Cache-Control")||R.set("Cache-Control",(0,h.getCacheControlHeader)(d.cacheControl)),await (0,p.sendResponse)(B,K,new Response(d.value.body,{headers:R,status:d.value.status||200})),null};L?await l(L):await F.withPropagatedContext(e.headers,()=>F.trace(d.BaseServerSpan.handleRequest,{spanName:`${M} ${v}`,kind:s.SpanKind.SERVER,attributes:{"http.method":M,"http.target":e.url}},l))}catch(t){if(t instanceof R.NoFallbackError||await A.onRequestError(e,t,{routerKind:"App Router",routePath:k,routeType:"route",revalidateReason:(0,c.getRevalidateReason)({isStaticGeneration:I,isOnDemandRevalidate:O})},!1,j),q)throw t;return await (0,p.sendResponse)(B,K,new Response(null,{status:500})),null}}e.s(["handler",()=>_,"patchFetch",()=>P,"routeModule",()=>A,"serverHooks",()=>T,"workAsyncStorage",()=>O,"workUnitAsyncStorage",()=>N],61525)}];
2
-
3
- //# sourceMappingURL=%5Broot-of-the-server%5D__f59af2bc._.js.map
@@ -1,3 +0,0 @@
1
- module.exports=[93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},22734,(a,b,c)=>{b.exports=a.x("fs",()=>require("fs"))},54799,(a,b,c)=>{b.exports=a.x("crypto",()=>require("crypto"))},33405,(a,b,c)=>{b.exports=a.x("child_process",()=>require("child_process"))},50645,a=>{a.n(a.i(27572))},43619,a=>{a.n(a.i(79962))},13718,a=>{a.n(a.i(85523))},18198,a=>{a.n(a.i(45518))},62212,a=>{a.n(a.i(66114))}];
2
-
3
- //# sourceMappingURL=%5Broot-of-the-server%5D__9ac6ea25._.js.map
@@ -1,3 +0,0 @@
1
- module.exports=[93695,(a,b,c)=>{b.exports=a.x("next/dist/shared/lib/no-fallback-error.external.js",()=>require("next/dist/shared/lib/no-fallback-error.external.js"))},22734,(a,b,c)=>{b.exports=a.x("fs",()=>require("fs"))},54799,(a,b,c)=>{b.exports=a.x("crypto",()=>require("crypto"))},33405,(a,b,c)=>{b.exports=a.x("child_process",()=>require("child_process"))},50645,a=>{a.n(a.i(27572))},43619,a=>{a.n(a.i(79962))},13718,a=>{a.n(a.i(85523))},18198,a=>{a.n(a.i(45518))},62212,a=>{a.n(a.i(66114))},72187,a=>{"use strict";a.s(["Dashboard",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call Dashboard() from the server but Dashboard is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/components/Dashboard.tsx <module evaluation>","Dashboard")},92848,a=>{"use strict";a.s(["Dashboard",()=>b]);let b=(0,a.i(11857).registerClientReference)(function(){throw Error("Attempted to call Dashboard() from the server but Dashboard is on the client. It's not possible to invoke a client function from the server, it can only be rendered as a Component or passed to props of a Client Component.")},"[project]/src/components/Dashboard.tsx","Dashboard")},22671,a=>{"use strict";a.i(72187);var b=a.i(92848);a.n(b)},60168,a=>{"use strict";var b=a.i(7997),c=a.i(22671),d=a.i(20884);async function e(){let a=await (0,d.loadDashboardData)();return(0,b.jsx)(c.Dashboard,{data:a})}a.s(["default",()=>e,"dynamic",0,"force-dynamic"])}];
2
-
3
- //# sourceMappingURL=%5Broot-of-the-server%5D__dfe2728c._.js.map