vibedoc 1.0.0

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 (201) hide show
  1. package/.next/BUILD_ID +1 -0
  2. package/.next/app-build-manifest.json +92 -0
  3. package/.next/app-path-routes-manifest.json +1 -0
  4. package/.next/build-manifest.json +32 -0
  5. package/.next/package.json +1 -0
  6. package/.next/prerender-manifest.js +1 -0
  7. package/.next/prerender-manifest.json +1 -0
  8. package/.next/react-loadable-manifest.json +282 -0
  9. package/.next/required-server-files.json +1 -0
  10. package/.next/routes-manifest.json +1 -0
  11. package/.next/server/app/(app)/activity/page.js +1 -0
  12. package/.next/server/app/(app)/activity/page.js.nft.json +1 -0
  13. package/.next/server/app/(app)/activity/page_client-reference-manifest.js +1 -0
  14. package/.next/server/app/(app)/board/page.js +2 -0
  15. package/.next/server/app/(app)/board/page.js.nft.json +1 -0
  16. package/.next/server/app/(app)/board/page_client-reference-manifest.js +1 -0
  17. package/.next/server/app/(app)/docs/page.js +2 -0
  18. package/.next/server/app/(app)/docs/page.js.nft.json +1 -0
  19. package/.next/server/app/(app)/docs/page_client-reference-manifest.js +1 -0
  20. package/.next/server/app/(app)/memory/page.js +7 -0
  21. package/.next/server/app/(app)/memory/page.js.nft.json +1 -0
  22. package/.next/server/app/(app)/memory/page_client-reference-manifest.js +1 -0
  23. package/.next/server/app/(app)/settings/page.js +21 -0
  24. package/.next/server/app/(app)/settings/page.js.nft.json +1 -0
  25. package/.next/server/app/(app)/settings/page_client-reference-manifest.js +1 -0
  26. package/.next/server/app/(app)/setup/page.js +1 -0
  27. package/.next/server/app/(app)/setup/page.js.nft.json +1 -0
  28. package/.next/server/app/(app)/setup/page_client-reference-manifest.js +1 -0
  29. package/.next/server/app/_not-found/page.js +1 -0
  30. package/.next/server/app/_not-found/page.js.nft.json +1 -0
  31. package/.next/server/app/_not-found/page_client-reference-manifest.js +1 -0
  32. package/.next/server/app/_not-found.html +1 -0
  33. package/.next/server/app/_not-found.meta +6 -0
  34. package/.next/server/app/_not-found.rsc +9 -0
  35. package/.next/server/app/activity.html +1 -0
  36. package/.next/server/app/activity.meta +5 -0
  37. package/.next/server/app/activity.rsc +13 -0
  38. package/.next/server/app/api/activity/route.js +1 -0
  39. package/.next/server/app/api/activity/route.js.nft.json +1 -0
  40. package/.next/server/app/api/backlinks/route.js +1 -0
  41. package/.next/server/app/api/backlinks/route.js.nft.json +1 -0
  42. package/.next/server/app/api/context/route.js +1 -0
  43. package/.next/server/app/api/context/route.js.nft.json +1 -0
  44. package/.next/server/app/api/decisions/route.js +1 -0
  45. package/.next/server/app/api/decisions/route.js.nft.json +1 -0
  46. package/.next/server/app/api/docs/route.js +1 -0
  47. package/.next/server/app/api/docs/route.js.nft.json +1 -0
  48. package/.next/server/app/api/events/route.js +3 -0
  49. package/.next/server/app/api/events/route.js.nft.json +1 -0
  50. package/.next/server/app/api/mcp/route.js +103 -0
  51. package/.next/server/app/api/mcp/route.js.nft.json +1 -0
  52. package/.next/server/app/api/memory/route.js +1 -0
  53. package/.next/server/app/api/memory/route.js.nft.json +1 -0
  54. package/.next/server/app/api/projects/route.js +1 -0
  55. package/.next/server/app/api/projects/route.js.nft.json +1 -0
  56. package/.next/server/app/api/projects.body +1 -0
  57. package/.next/server/app/api/projects.meta +1 -0
  58. package/.next/server/app/api/settings/route.js +1 -0
  59. package/.next/server/app/api/settings/route.js.nft.json +1 -0
  60. package/.next/server/app/api/setup/generate/route.js +130 -0
  61. package/.next/server/app/api/setup/generate/route.js.nft.json +1 -0
  62. package/.next/server/app/api/setup/write/route.js +1 -0
  63. package/.next/server/app/api/setup/write/route.js.nft.json +1 -0
  64. package/.next/server/app/api/summary/route.js +1 -0
  65. package/.next/server/app/api/summary/route.js.nft.json +1 -0
  66. package/.next/server/app/api/tasks/route.js +1 -0
  67. package/.next/server/app/api/tasks/route.js.nft.json +1 -0
  68. package/.next/server/app/board.html +1 -0
  69. package/.next/server/app/board.meta +5 -0
  70. package/.next/server/app/board.rsc +13 -0
  71. package/.next/server/app/docs.html +1 -0
  72. package/.next/server/app/docs.meta +5 -0
  73. package/.next/server/app/docs.rsc +13 -0
  74. package/.next/server/app/index.html +1 -0
  75. package/.next/server/app/index.meta +6 -0
  76. package/.next/server/app/index.rsc +6 -0
  77. package/.next/server/app/memory.html +1 -0
  78. package/.next/server/app/memory.meta +5 -0
  79. package/.next/server/app/memory.rsc +13 -0
  80. package/.next/server/app/page.js +1 -0
  81. package/.next/server/app/page.js.nft.json +1 -0
  82. package/.next/server/app/page_client-reference-manifest.js +1 -0
  83. package/.next/server/app/settings.html +1 -0
  84. package/.next/server/app/settings.meta +5 -0
  85. package/.next/server/app/settings.rsc +13 -0
  86. package/.next/server/app/setup.html +1 -0
  87. package/.next/server/app/setup.meta +5 -0
  88. package/.next/server/app/setup.rsc +13 -0
  89. package/.next/server/app-paths-manifest.json +24 -0
  90. package/.next/server/chunks/191.js +91 -0
  91. package/.next/server/chunks/357.js +2 -0
  92. package/.next/server/chunks/486.js +12 -0
  93. package/.next/server/chunks/491.js +2 -0
  94. package/.next/server/chunks/778.js +9 -0
  95. package/.next/server/chunks/80.js +60 -0
  96. package/.next/server/chunks/900.js +6 -0
  97. package/.next/server/chunks/945.js +20 -0
  98. package/.next/server/chunks/font-manifest.json +1 -0
  99. package/.next/server/font-manifest.json +1 -0
  100. package/.next/server/functions-config-manifest.json +1 -0
  101. package/.next/server/interception-route-rewrite-manifest.js +1 -0
  102. package/.next/server/middleware-build-manifest.js +1 -0
  103. package/.next/server/middleware-manifest.json +6 -0
  104. package/.next/server/middleware-react-loadable-manifest.js +1 -0
  105. package/.next/server/next-font-manifest.js +1 -0
  106. package/.next/server/next-font-manifest.json +1 -0
  107. package/.next/server/pages/404.html +1 -0
  108. package/.next/server/pages/500.html +1 -0
  109. package/.next/server/pages/_app.js +1 -0
  110. package/.next/server/pages/_app.js.nft.json +1 -0
  111. package/.next/server/pages/_document.js +1 -0
  112. package/.next/server/pages/_document.js.nft.json +1 -0
  113. package/.next/server/pages/_error.js +1 -0
  114. package/.next/server/pages/_error.js.nft.json +1 -0
  115. package/.next/server/pages-manifest.json +1 -0
  116. package/.next/server/server-reference-manifest.js +1 -0
  117. package/.next/server/server-reference-manifest.json +1 -0
  118. package/.next/server/webpack-runtime.js +1 -0
  119. package/.next/static/chunks/1088.464d783cc5eea9de.js +1 -0
  120. package/.next/static/chunks/1222.e874d92bfc1bc6c7.js +1 -0
  121. package/.next/static/chunks/1347.3e7d2ed21b663e48.js +1 -0
  122. package/.next/static/chunks/1433.2f2e32dffc1c27c8.js +1 -0
  123. package/.next/static/chunks/1472.5e71f95e6296fd63.js +36 -0
  124. package/.next/static/chunks/1594.09677134642da9ff.js +93 -0
  125. package/.next/static/chunks/1638.2e37b49b302bcb6a.js +174 -0
  126. package/.next/static/chunks/2244.cf7a2544ebeb1e19.js +82 -0
  127. package/.next/static/chunks/228-e44243a26f6475e2.js +9 -0
  128. package/.next/static/chunks/2306.509ed7c364442601.js +2 -0
  129. package/.next/static/chunks/2412.949844de7f2bbdc3.js +262 -0
  130. package/.next/static/chunks/2565.eb3605e7c90e3c7e.js +131 -0
  131. package/.next/static/chunks/2591.56cbda5d4e6e2943.js +56 -0
  132. package/.next/static/chunks/2597.ba1681ae114a4aa7.js +29 -0
  133. package/.next/static/chunks/2647.011471b532619487.js +59 -0
  134. package/.next/static/chunks/2794.65caa79043b402f7.js +1 -0
  135. package/.next/static/chunks/2861.4fff66e909869a6d.js +148 -0
  136. package/.next/static/chunks/2894.5a2b6bbc2c48843d.js +43 -0
  137. package/.next/static/chunks/3795.50eafedfcd5f01d6.js +24 -0
  138. package/.next/static/chunks/3904.54baab606637ae6e.js +1 -0
  139. package/.next/static/chunks/4236.17567db90ef651b7.js +1 -0
  140. package/.next/static/chunks/4316-6345e1b4bb694a29.js +1 -0
  141. package/.next/static/chunks/490-ed8ba8bf24ab2f3d.js +1 -0
  142. package/.next/static/chunks/4982.9f5dde29b741d6dd.js +63 -0
  143. package/.next/static/chunks/5083.ffcecc2fefa6de50.js +55 -0
  144. package/.next/static/chunks/5218.35990037cf2fd97c.js +155 -0
  145. package/.next/static/chunks/5340.5ddd859da4765a69.js +1 -0
  146. package/.next/static/chunks/5453.47f6d134b08a854e.js +4 -0
  147. package/.next/static/chunks/5808.d42ab07c5de599fd.js +1 -0
  148. package/.next/static/chunks/6429.08e2027051a6966c.js +1 -0
  149. package/.next/static/chunks/6482.03215b09c8639bc2.js +7 -0
  150. package/.next/static/chunks/6842-aed3c9b445ee77d1.js +2 -0
  151. package/.next/static/chunks/6864.4be1f9d162073932.js +1 -0
  152. package/.next/static/chunks/6886.f44c1de05dae9abc.js +1 -0
  153. package/.next/static/chunks/68bc8b64.37fd49721fa7b320.js +136 -0
  154. package/.next/static/chunks/6bded0d7-aec80afe2d60204d.js +1 -0
  155. package/.next/static/chunks/7123.fdc5241f4c912578.js +62 -0
  156. package/.next/static/chunks/7235.d4cff43d3f970540.js +1 -0
  157. package/.next/static/chunks/7241.499111c9d51ab606.js +1 -0
  158. package/.next/static/chunks/7251.17e3ab4cd5935b2e.js +166 -0
  159. package/.next/static/chunks/7283.d294d5aebfe1c65f.js +215 -0
  160. package/.next/static/chunks/7292.0dfaab300ca1050a.js +1 -0
  161. package/.next/static/chunks/7527.0ccae900ac492b8c.js +1 -0
  162. package/.next/static/chunks/7697-812a5639d661760b.js +1 -0
  163. package/.next/static/chunks/7722.d7a4456b068af3c0.js +24 -0
  164. package/.next/static/chunks/7725-63beec2ffb219859.js +16 -0
  165. package/.next/static/chunks/8130.609cf9a280803973.js +1 -0
  166. package/.next/static/chunks/8338.2415ec79a5f31092.js +1 -0
  167. package/.next/static/chunks/845-0e3438196b5ef62c.js +1 -0
  168. package/.next/static/chunks/8836.71b3f39cb9a95d62.js +5 -0
  169. package/.next/static/chunks/942c9eea.2013b980eeaebb14.js +53 -0
  170. package/.next/static/chunks/94c12b52-436125ce5f9c910a.js +1 -0
  171. package/.next/static/chunks/9528.4d4672f83c5035ab.js +1 -0
  172. package/.next/static/chunks/9580.942737df82878943.js +1 -0
  173. package/.next/static/chunks/9672.cb194a5bbad5f696.js +1 -0
  174. package/.next/static/chunks/app/(app)/activity/page-91b9d738c33e19b5.js +1 -0
  175. package/.next/static/chunks/app/(app)/board/page-33f5e3998a8445ca.js +1 -0
  176. package/.next/static/chunks/app/(app)/docs/page-17670ed46c3594e6.js +1 -0
  177. package/.next/static/chunks/app/(app)/layout-34b4046ccf919d3f.js +1 -0
  178. package/.next/static/chunks/app/(app)/memory/page-b3aa8c5e028caf75.js +1 -0
  179. package/.next/static/chunks/app/(app)/settings/page-f264516b9005f933.js +16 -0
  180. package/.next/static/chunks/app/(app)/setup/page-9fd82b10016eca64.js +16 -0
  181. package/.next/static/chunks/app/_not-found/page-73e8eefca2388c5f.js +1 -0
  182. package/.next/static/chunks/app/layout-7054561bfe7eec9c.js +1 -0
  183. package/.next/static/chunks/app/page-f71834a10930be30.js +1 -0
  184. package/.next/static/chunks/b09b44eb.fa180e586fdf600b.js +1 -0
  185. package/.next/static/chunks/ea0025a9.12db9045daafb0c1.js +1 -0
  186. package/.next/static/chunks/efcceb14.8fc58c5c4428a08e.js +1 -0
  187. package/.next/static/chunks/framework-20afca218c33ed8b.js +33 -0
  188. package/.next/static/chunks/main-6224705d81e790a3.js +1 -0
  189. package/.next/static/chunks/main-app-02ed5dd91baaafdc.js +1 -0
  190. package/.next/static/chunks/pages/_app-db7a259df1c8778b.js +1 -0
  191. package/.next/static/chunks/pages/_error-76163253f7e717d4.js +1 -0
  192. package/.next/static/chunks/polyfills-78c92fac7aa8fdd8.js +1 -0
  193. package/.next/static/chunks/webpack-648d3cb0a281bce5.js +1 -0
  194. package/.next/static/css/615004f0fff77145.css +5 -0
  195. package/.next/static/r-2w-yCd6mM7TOOETgGaA/_buildManifest.js +1 -0
  196. package/.next/static/r-2w-yCd6mM7TOOETgGaA/_ssgManifest.js +1 -0
  197. package/README.md +160 -0
  198. package/bin/vibedoc.js +54 -0
  199. package/next.config.js +7 -0
  200. package/package.json +80 -0
  201. package/ws-server.js +12 -0
@@ -0,0 +1,13 @@
1
+ 2:I[10619,[],"ClientPageRoot"]
2
+ 3:I[3526,["7069","static/chunks/6bded0d7-aec80afe2d60204d.js","490","static/chunks/490-ed8ba8bf24ab2f3d.js","228","static/chunks/228-e44243a26f6475e2.js","7725","static/chunks/7725-63beec2ffb219859.js","4316","static/chunks/4316-6345e1b4bb694a29.js","845","static/chunks/845-0e3438196b5ef62c.js","3015","static/chunks/app/(app)/docs/page-17670ed46c3594e6.js"],"default"]
3
+ 4:I[36731,[],""]
4
+ 5:I[52923,[],""]
5
+ 6:I[60985,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7725","static/chunks/7725-63beec2ffb219859.js","7697","static/chunks/7697-812a5639d661760b.js","845","static/chunks/845-0e3438196b5ef62c.js","5814","static/chunks/app/(app)/layout-34b4046ccf919d3f.js"],"default"]
6
+ 7:{}
7
+ 8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
8
+ 9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
9
+ a:{"display":"inline-block"}
10
+ b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
11
+ 0:["r-2w-yCd6mM7TOOETgGaA",[[["",{"children":["(app)",{"children":["docs",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["(app)",{"children":["docs",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}]],null],null]},["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children","docs","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},[["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}],"params":"$7"}],null],null]},[["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"bg-bg text-txt min-h-screen","children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/615004f0fff77145.css","precedence":"next","crossOrigin":"$undefined"}]],[null,"$Lc"]]]]]
12
+ c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"VibeDoc"}],["$","meta","3",{"name":"description","content":"Project intelligence for AI-assisted development"}]]
13
+ 1:null
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-648d3cb0a281bce5.js"/><script src="/_next/static/chunks/94c12b52-436125ce5f9c910a.js" async=""></script><script src="/_next/static/chunks/6842-aed3c9b445ee77d1.js" async=""></script><script src="/_next/static/chunks/main-app-02ed5dd91baaafdc.js" async=""></script><title>VibeDoc</title><meta name="description" content="Project intelligence for AI-assisted development"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body><script src="/_next/static/chunks/webpack-648d3cb0a281bce5.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/615004f0fff77145.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[9148,[],\"\"]\n5:I[36731,[],\"\"]\n6:I[52923,[],\"\"]\n8:I[31304,[],\"\"]\n9:[]\n0:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/615004f0fff77145.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"buildId\":\"r-2w-yCd6mM7TOOETgGaA\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/\",\"initialTree\":[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",\"$L4\"],null],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-bg text-txt min-h-screen\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L7\"],\"globalErrorComp"])</script><script>self.__next_f.push([1,"onent\":\"$8\",\"missingSlots\":\"$W9\"}]]\n4:E{\"digest\":\"NEXT_REDIRECT;replace;/board;307;\"}\n"])</script><script>self.__next_f.push([1,"7:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"VibeDoc\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Project intelligence for AI-assisted development\"}]]\n3:null\n"])</script></body></html>
@@ -0,0 +1,6 @@
1
+ {
2
+ "status": 307,
3
+ "headers": {
4
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/page,_N_T_/"
5
+ }
6
+ }
@@ -0,0 +1,6 @@
1
+ 3:I[36731,[],""]
2
+ 4:I[52923,[],""]
3
+ 0:["r-2w-yCd6mM7TOOETgGaA",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1","$L2"],null],null]},[["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"bg-bg text-txt min-h-screen","children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/615004f0fff77145.css","precedence":"next","crossOrigin":"$undefined"}]],[null,"$L5"]]]]]
4
+ 2:E{"digest":"NEXT_REDIRECT;replace;/board;307;"}
5
+ 5:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"VibeDoc"}],["$","meta","3",{"name":"description","content":"Project intelligence for AI-assisted development"}]]
6
+ 1:null
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/615004f0fff77145.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-648d3cb0a281bce5.js"/><script src="/_next/static/chunks/94c12b52-436125ce5f9c910a.js" async=""></script><script src="/_next/static/chunks/6842-aed3c9b445ee77d1.js" async=""></script><script src="/_next/static/chunks/main-app-02ed5dd91baaafdc.js" async=""></script><script src="/_next/static/chunks/490-ed8ba8bf24ab2f3d.js" async=""></script><script src="/_next/static/chunks/228-e44243a26f6475e2.js" async=""></script><script src="/_next/static/chunks/app/(app)/memory/page-b3aa8c5e028caf75.js" async=""></script><script src="/_next/static/chunks/7725-63beec2ffb219859.js" async=""></script><script src="/_next/static/chunks/7697-812a5639d661760b.js" async=""></script><script src="/_next/static/chunks/845-0e3438196b5ef62c.js" async=""></script><script src="/_next/static/chunks/app/(app)/layout-34b4046ccf919d3f.js" async=""></script><title>VibeDoc</title><meta name="description" content="Project intelligence for AI-assisted development"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="bg-bg text-txt min-h-screen"><div class="min-h-screen flex items-center justify-center"><div class="text-center"><div class="flex gap-1.5 justify-center mb-4"><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.15s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.3s"></div></div><p class="text-muted text-sm font-mono">Loading project...</p></div></div><script src="/_next/static/chunks/webpack-648d3cb0a281bce5.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/615004f0fff77145.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[9148,[],\"\"]\n4:I[10619,[],\"ClientPageRoot\"]\n5:I[77285,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"228\",\"static/chunks/228-e44243a26f6475e2.js\",\"6448\",\"static/chunks/app/(app)/memory/page-b3aa8c5e028caf75.js\"],\"default\"]\n6:I[36731,[],\"\"]\n7:I[52923,[],\"\"]\n8:I[60985,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"7725\",\"static/chunks/7725-63beec2ffb219859.js\",\"7697\",\"static/chunks/7697-812a5639d661760b.js\",\"845\",\"static/chunks/845-0e3438196b5ef62c.js\",\"5814\",\"static/chunks/app/(app)/layout-34b4046ccf919d3f.js\"],\"default\"]\nf:I[31304,[],\"\"]\n9:{}\na:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\nb:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\nc:{\"display\":\"inline-block\"}\nd:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\n10:[]\n"])</script><script>self.__next_f.push([1,"0:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/615004f0fff77145.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"buildId\":\"r-2w-yCd6mM7TOOETgGaA\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/memory\",\"initialTree\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"memory\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"memory\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}]],null],null]},[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\",\"memory\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"styles\":null}],null]},[[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}],\"params\":\"$9\"}],null],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-bg text-txt min-h-screen\",\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$a\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$b\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$c\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$d\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$Le\"],\"globalErrorComponent\":\"$f\",\"missingSlots\":\"$W10\"}]]\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"VibeDoc\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Project intelligence for AI-assisted development\"}]]\n3:null\n"])</script></body></html>
@@ -0,0 +1,5 @@
1
+ {
2
+ "headers": {
3
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/(app)/layout,_N_T_/(app)/memory/layout,_N_T_/(app)/memory/page,_N_T_/memory"
4
+ }
5
+ }
@@ -0,0 +1,13 @@
1
+ 2:I[10619,[],"ClientPageRoot"]
2
+ 3:I[77285,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","228","static/chunks/228-e44243a26f6475e2.js","6448","static/chunks/app/(app)/memory/page-b3aa8c5e028caf75.js"],"default"]
3
+ 4:I[36731,[],""]
4
+ 5:I[52923,[],""]
5
+ 6:I[60985,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7725","static/chunks/7725-63beec2ffb219859.js","7697","static/chunks/7697-812a5639d661760b.js","845","static/chunks/845-0e3438196b5ef62c.js","5814","static/chunks/app/(app)/layout-34b4046ccf919d3f.js"],"default"]
6
+ 7:{}
7
+ 8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
8
+ 9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
9
+ a:{"display":"inline-block"}
10
+ b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
11
+ 0:["r-2w-yCd6mM7TOOETgGaA",[[["",{"children":["(app)",{"children":["memory",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["(app)",{"children":["memory",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}]],null],null]},["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children","memory","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},[["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}],"params":"$7"}],null],null]},[["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"bg-bg text-txt min-h-screen","children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/615004f0fff77145.css","precedence":"next","crossOrigin":"$undefined"}]],[null,"$Lc"]]]]]
12
+ c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"VibeDoc"}],["$","meta","3",{"name":"description","content":"Project intelligence for AI-assisted development"}]]
13
+ 1:null
@@ -0,0 +1 @@
1
+ (()=>{var e={};e.id=931,e.ids=[931],e.modules={7849:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external")},2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},5403:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},4749:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},3748:(e,t,r)=>{"use strict";r.r(t),r.d(t,{GlobalError:()=>s.a,__next_app__:()=>p,originalPathname:()=>l,pages:()=>c,routeModule:()=>f,tree:()=>d}),r(1344),r(7831),r(5133);var n=r(9193),o=r(1854),i=r(3997),s=r.n(i),u=r(3320),a={};for(let e in u)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(a[e]=()=>u[e]);r.d(t,a);let d=["",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(r.bind(r,1344)),"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/page.tsx"]}]},{layout:[()=>Promise.resolve().then(r.bind(r,7831)),"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(r.t.bind(r,5133,23)),"next/dist/client/components/not-found-error"]}],c=["/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/page.tsx"],l="/page",p={require:r,loadChunk:()=>Promise.resolve()},f=new n.AppPageRouteModule({definition:{kind:o.x.APP_PAGE,page:"/page",pathname:"/",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:d}})},1562:(e,t,r)=>{Promise.resolve().then(r.t.bind(r,9388,23)),Promise.resolve().then(r.t.bind(r,1152,23)),Promise.resolve().then(r.t.bind(r,2764,23)),Promise.resolve().then(r.t.bind(r,6894,23)),Promise.resolve().then(r.t.bind(r,3299,23)),Promise.resolve().then(r.t.bind(r,184,23))},103:()=>{},1758:()=>{},4549:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{ReadonlyURLSearchParams:function(){return s},RedirectType:function(){return n.RedirectType},notFound:function(){return o.notFound},permanentRedirect:function(){return n.permanentRedirect},redirect:function(){return n.redirect}});let n=r(4365),o=r(5984);class i extends Error{constructor(){super("Method unavailable on `ReadonlyURLSearchParams`. Read more: https://nextjs.org/docs/app/api-reference/functions/use-search-params#updating-searchparams")}}class s extends URLSearchParams{append(){throw new i}delete(){throw new i}set(){throw new i}sort(){throw new i}}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},5984:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{isNotFoundError:function(){return o},notFound:function(){return n}});let r="NEXT_NOT_FOUND";function n(){let e=Error(r);throw e.digest=r,e}function o(e){return"object"==typeof e&&null!==e&&"digest"in e&&e.digest===r}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},8429:(e,t)=>{"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"RedirectStatusCode",{enumerable:!0,get:function(){return r}}),function(e){e[e.SeeOther=303]="SeeOther",e[e.TemporaryRedirect=307]="TemporaryRedirect",e[e.PermanentRedirect=308]="PermanentRedirect"}(r||(r={})),("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},4365:(e,t,r)=>{"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{RedirectType:function(){return n},getRedirectError:function(){return a},getRedirectStatusCodeFromError:function(){return g},getRedirectTypeFromError:function(){return f},getURLFromRedirectError:function(){return p},isRedirectError:function(){return l},permanentRedirect:function(){return c},redirect:function(){return d}});let o=r(4580),i=r(2934),s=r(8429),u="NEXT_REDIRECT";function a(e,t,r){void 0===r&&(r=s.RedirectStatusCode.TemporaryRedirect);let n=Error(u);n.digest=u+";"+t+";"+e+";"+r+";";let i=o.requestAsyncStorage.getStore();return i&&(n.mutableCookies=i.mutableCookies),n}function d(e,t){void 0===t&&(t="replace");let r=i.actionAsyncStorage.getStore();throw a(e,t,(null==r?void 0:r.isAction)?s.RedirectStatusCode.SeeOther:s.RedirectStatusCode.TemporaryRedirect)}function c(e,t){void 0===t&&(t="replace");let r=i.actionAsyncStorage.getStore();throw a(e,t,(null==r?void 0:r.isAction)?s.RedirectStatusCode.SeeOther:s.RedirectStatusCode.PermanentRedirect)}function l(e){if("object"!=typeof e||null===e||!("digest"in e)||"string"!=typeof e.digest)return!1;let[t,r,n,o]=e.digest.split(";",4),i=Number(o);return t===u&&("replace"===r||"push"===r)&&"string"==typeof n&&!isNaN(i)&&i in s.RedirectStatusCode}function p(e){return l(e)?e.digest.split(";",3)[2]:null}function f(e){if(!l(e))throw Error("Not a redirect error");return e.digest.split(";",2)[1]}function g(e){if(!l(e))throw Error("Not a redirect error");return Number(e.digest.split(";",4)[3])}(function(e){e.push="push",e.replace="replace"})(n||(n={})),("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},7831:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i,metadata:()=>o});var n=r(9703);r(5260);let o={title:"VibeDoc",description:"Project intelligence for AI-assisted development"};function i({children:e}){return n.jsx("html",{lang:"en",className:"dark",children:n.jsx("body",{className:"bg-bg text-txt min-h-screen",children:e})})}},1344:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>o});var n=r(4549);function o(){(0,n.redirect)("/board")}},5260:()=>{}};var t=require("../webpack-runtime.js");t.C(e);var r=e=>t(t.s=e),n=t.X(0,[357,491],()=>r(3748));module.exports=n})();
@@ -0,0 +1 @@
1
+ {"version":1,"files":["../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/action-async-storage-instance.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/action-async-storage.external.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/async-local-storage.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/request-async-storage-instance.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/request-async-storage.external.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/static-generation-async-storage-instance.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/static-generation-async-storage.external.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/@opentelemetry/api/index.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/@opentelemetry/api/package.json","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/compiled/next-server/app-page.runtime.prod.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/server/lib/trace/constants.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/server/lib/trace/tracer.js","../../../node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/package.json","../../../node_modules/next","../../../package.json","../../package.json","../chunks/357.js","../chunks/491.js","../webpack-runtime.js","page_client-reference-manifest.js"]}
@@ -0,0 +1 @@
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"2983":{"*":{"id":"52","name":"*","chunks":[],"async":false}},"3526":{"*":{"id":"582","name":"*","chunks":[],"async":false}},"9148":{"*":{"id":"9388","name":"*","chunks":[],"async":false}},"10619":{"*":{"id":"1152","name":"*","chunks":[],"async":false}},"31304":{"*":{"id":"2764","name":"*","chunks":[],"async":false}},"36731":{"*":{"id":"6894","name":"*","chunks":[],"async":false}},"38185":{"*":{"id":"4505","name":"*","chunks":[],"async":false}},"52923":{"*":{"id":"184","name":"*","chunks":[],"async":false}},"58397":{"*":{"id":"5760","name":"*","chunks":[],"async":false}},"60985":{"*":{"id":"151","name":"*","chunks":[],"async":false}},"77285":{"*":{"id":"4501","name":"*","chunks":[],"async":false}},"87027":{"*":{"id":"3299","name":"*","chunks":[],"async":false}},"94999":{"*":{"id":"1998","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/app-router.js":{"id":9148,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/app-router.js":{"id":9148,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/client-page.js":{"id":10619,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/client-page.js":{"id":10619,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/error-boundary.js":{"id":31304,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":31304,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/layout-router.js":{"id":36731,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/layout-router.js":{"id":36731,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/not-found-boundary.js":{"id":87027,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":87027,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/client/components/render-from-template-context.js":{"id":52923,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/node_modules/.pnpm/next@14.2.5_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":52923,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/globals.css":{"id":61183,"name":"*","chunks":["3185","static/chunks/app/layout-7054561bfe7eec9c.js"],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/board/page.tsx":{"id":38185,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/layout.tsx":{"id":60985,"name":"*","chunks":["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7725","static/chunks/7725-63beec2ffb219859.js","7697","static/chunks/7697-812a5639d661760b.js","845","static/chunks/845-0e3438196b5ef62c.js","5814","static/chunks/app/(app)/layout-34b4046ccf919d3f.js"],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/settings/page.tsx":{"id":58397,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/docs/page.tsx":{"id":3526,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/setup/page.tsx":{"id":2983,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/memory/page.tsx":{"id":77285,"name":"*","chunks":[],"async":false},"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/activity/page.tsx":{"id":94999,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/":[],"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/layout":["static/css/615004f0fff77145.css"],"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/page":[],"/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/layout":[]}}
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/615004f0fff77145.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-648d3cb0a281bce5.js"/><script src="/_next/static/chunks/94c12b52-436125ce5f9c910a.js" async=""></script><script src="/_next/static/chunks/6842-aed3c9b445ee77d1.js" async=""></script><script src="/_next/static/chunks/main-app-02ed5dd91baaafdc.js" async=""></script><script src="/_next/static/chunks/490-ed8ba8bf24ab2f3d.js" async=""></script><script src="/_next/static/chunks/app/(app)/settings/page-f264516b9005f933.js" async=""></script><script src="/_next/static/chunks/7725-63beec2ffb219859.js" async=""></script><script src="/_next/static/chunks/7697-812a5639d661760b.js" async=""></script><script src="/_next/static/chunks/845-0e3438196b5ef62c.js" async=""></script><script src="/_next/static/chunks/app/(app)/layout-34b4046ccf919d3f.js" async=""></script><title>VibeDoc</title><meta name="description" content="Project intelligence for AI-assisted development"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="bg-bg text-txt min-h-screen"><div class="min-h-screen flex items-center justify-center"><div class="text-center"><div class="flex gap-1.5 justify-center mb-4"><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.15s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.3s"></div></div><p class="text-muted text-sm font-mono">Loading project...</p></div></div><script src="/_next/static/chunks/webpack-648d3cb0a281bce5.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/615004f0fff77145.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[9148,[],\"\"]\n4:I[10619,[],\"ClientPageRoot\"]\n5:I[58397,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"7558\",\"static/chunks/app/(app)/settings/page-f264516b9005f933.js\"],\"default\"]\n6:I[36731,[],\"\"]\n7:I[52923,[],\"\"]\n8:I[60985,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"7725\",\"static/chunks/7725-63beec2ffb219859.js\",\"7697\",\"static/chunks/7697-812a5639d661760b.js\",\"845\",\"static/chunks/845-0e3438196b5ef62c.js\",\"5814\",\"static/chunks/app/(app)/layout-34b4046ccf919d3f.js\"],\"default\"]\nf:I[31304,[],\"\"]\n9:{}\na:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\nb:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\nc:{\"display\":\"inline-block\"}\nd:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\n10:[]\n"])</script><script>self.__next_f.push([1,"0:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/615004f0fff77145.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"buildId\":\"r-2w-yCd6mM7TOOETgGaA\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/settings\",\"initialTree\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"settings\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"settings\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}]],null],null]},[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\",\"settings\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"styles\":null}],null]},[[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}],\"params\":\"$9\"}],null],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-bg text-txt min-h-screen\",\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$a\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$b\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$c\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$d\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$Le\"],\"globalErrorComponent\":\"$f\",\"missingSlots\":\"$W10\"}]]\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"VibeDoc\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Project intelligence for AI-assisted development\"}]]\n3:null\n"])</script></body></html>
@@ -0,0 +1,5 @@
1
+ {
2
+ "headers": {
3
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/(app)/layout,_N_T_/(app)/settings/layout,_N_T_/(app)/settings/page,_N_T_/settings"
4
+ }
5
+ }
@@ -0,0 +1,13 @@
1
+ 2:I[10619,[],"ClientPageRoot"]
2
+ 3:I[58397,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7558","static/chunks/app/(app)/settings/page-f264516b9005f933.js"],"default"]
3
+ 4:I[36731,[],""]
4
+ 5:I[52923,[],""]
5
+ 6:I[60985,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7725","static/chunks/7725-63beec2ffb219859.js","7697","static/chunks/7697-812a5639d661760b.js","845","static/chunks/845-0e3438196b5ef62c.js","5814","static/chunks/app/(app)/layout-34b4046ccf919d3f.js"],"default"]
6
+ 7:{}
7
+ 8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
8
+ 9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
9
+ a:{"display":"inline-block"}
10
+ b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
11
+ 0:["r-2w-yCd6mM7TOOETgGaA",[[["",{"children":["(app)",{"children":["settings",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["(app)",{"children":["settings",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}]],null],null]},["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children","settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},[["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}],"params":"$7"}],null],null]},[["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"bg-bg text-txt min-h-screen","children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/615004f0fff77145.css","precedence":"next","crossOrigin":"$undefined"}]],[null,"$Lc"]]]]]
12
+ c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"VibeDoc"}],["$","meta","3",{"name":"description","content":"Project intelligence for AI-assisted development"}]]
13
+ 1:null
@@ -0,0 +1 @@
1
+ <!DOCTYPE html><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/615004f0fff77145.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-648d3cb0a281bce5.js"/><script src="/_next/static/chunks/94c12b52-436125ce5f9c910a.js" async=""></script><script src="/_next/static/chunks/6842-aed3c9b445ee77d1.js" async=""></script><script src="/_next/static/chunks/main-app-02ed5dd91baaafdc.js" async=""></script><script src="/_next/static/chunks/490-ed8ba8bf24ab2f3d.js" async=""></script><script src="/_next/static/chunks/app/(app)/setup/page-9fd82b10016eca64.js" async=""></script><script src="/_next/static/chunks/7725-63beec2ffb219859.js" async=""></script><script src="/_next/static/chunks/7697-812a5639d661760b.js" async=""></script><script src="/_next/static/chunks/845-0e3438196b5ef62c.js" async=""></script><script src="/_next/static/chunks/app/(app)/layout-34b4046ccf919d3f.js" async=""></script><title>VibeDoc</title><meta name="description" content="Project intelligence for AI-assisted development"/><script src="/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js" noModule=""></script></head><body class="bg-bg text-txt min-h-screen"><div class="min-h-screen flex items-center justify-center"><div class="text-center"><div class="flex gap-1.5 justify-center mb-4"><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.15s"></div><div class="w-2 h-2 rounded-full bg-accent animate-pulse-dot" style="animation-delay:0.3s"></div></div><p class="text-muted text-sm font-mono">Loading project...</p></div></div><script src="/_next/static/chunks/webpack-648d3cb0a281bce5.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/615004f0fff77145.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[9148,[],\"\"]\n4:I[10619,[],\"ClientPageRoot\"]\n5:I[2983,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"7821\",\"static/chunks/app/(app)/setup/page-9fd82b10016eca64.js\"],\"default\"]\n6:I[36731,[],\"\"]\n7:I[52923,[],\"\"]\n8:I[60985,[\"490\",\"static/chunks/490-ed8ba8bf24ab2f3d.js\",\"7725\",\"static/chunks/7725-63beec2ffb219859.js\",\"7697\",\"static/chunks/7697-812a5639d661760b.js\",\"845\",\"static/chunks/845-0e3438196b5ef62c.js\",\"5814\",\"static/chunks/app/(app)/layout-34b4046ccf919d3f.js\"],\"default\"]\nf:I[31304,[],\"\"]\n9:{}\na:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\nb:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\nc:{\"display\":\"inline-block\"}\nd:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\n10:[]\n"])</script><script>self.__next_f.push([1,"0:[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/615004f0fff77145.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"$L2\",null,{\"buildId\":\"r-2w-yCd6mM7TOOETgGaA\",\"assetPrefix\":\"\",\"initialCanonicalUrl\":\"/setup\",\"initialTree\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"setup\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"(app)\",{\"children\":[\"setup\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}]],null],null]},[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\",\"setup\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\",\"styles\":null}],null]},[[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"(app)\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}],\"params\":\"$9\"}],null],null]},[[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"bg-bg text-txt min-h-screen\",\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$a\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$b\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$c\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$d\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[],\"styles\":null}]}]}],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$Le\"],\"globalErrorComponent\":\"$f\",\"missingSlots\":\"$W10\"}]]\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"VibeDoc\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Project intelligence for AI-assisted development\"}]]\n3:null\n"])</script></body></html>
@@ -0,0 +1,5 @@
1
+ {
2
+ "headers": {
3
+ "x-next-cache-tags": "_N_T_/layout,_N_T_/(app)/layout,_N_T_/(app)/setup/layout,_N_T_/(app)/setup/page,_N_T_/setup"
4
+ }
5
+ }
@@ -0,0 +1,13 @@
1
+ 2:I[10619,[],"ClientPageRoot"]
2
+ 3:I[2983,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7821","static/chunks/app/(app)/setup/page-9fd82b10016eca64.js"],"default"]
3
+ 4:I[36731,[],""]
4
+ 5:I[52923,[],""]
5
+ 6:I[60985,["490","static/chunks/490-ed8ba8bf24ab2f3d.js","7725","static/chunks/7725-63beec2ffb219859.js","7697","static/chunks/7697-812a5639d661760b.js","845","static/chunks/845-0e3438196b5ef62c.js","5814","static/chunks/app/(app)/layout-34b4046ccf919d3f.js"],"default"]
6
+ 7:{}
7
+ 8:{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"}
8
+ 9:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
9
+ a:{"display":"inline-block"}
10
+ b:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
11
+ 0:["r-2w-yCd6mM7TOOETgGaA",[[["",{"children":["(app)",{"children":["setup",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["(app)",{"children":["setup",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}]],null],null]},["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children","setup","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},[["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","(app)","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}],"params":"$7"}],null],null]},[["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"bg-bg text-txt min-h-screen","children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$8","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$9","children":"404"}],["$","div",null,{"style":"$a","children":["$","h2",null,{"style":"$b","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}]}],null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/615004f0fff77145.css","precedence":"next","crossOrigin":"$undefined"}]],[null,"$Lc"]]]]]
12
+ c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"VibeDoc"}],["$","meta","3",{"name":"description","content":"Project intelligence for AI-assisted development"}]]
13
+ 1:null
@@ -0,0 +1,24 @@
1
+ {
2
+ "/_not-found/page": "app/_not-found/page.js",
3
+ "/api/activity/route": "app/api/activity/route.js",
4
+ "/api/context/route": "app/api/context/route.js",
5
+ "/api/docs/route": "app/api/docs/route.js",
6
+ "/api/backlinks/route": "app/api/backlinks/route.js",
7
+ "/api/decisions/route": "app/api/decisions/route.js",
8
+ "/api/mcp/route": "app/api/mcp/route.js",
9
+ "/api/memory/route": "app/api/memory/route.js",
10
+ "/api/settings/route": "app/api/settings/route.js",
11
+ "/api/projects/route": "app/api/projects/route.js",
12
+ "/api/setup/write/route": "app/api/setup/write/route.js",
13
+ "/api/setup/generate/route": "app/api/setup/generate/route.js",
14
+ "/page": "app/page.js",
15
+ "/api/tasks/route": "app/api/tasks/route.js",
16
+ "/api/summary/route": "app/api/summary/route.js",
17
+ "/api/events/route": "app/api/events/route.js",
18
+ "/(app)/board/page": "app/(app)/board/page.js",
19
+ "/(app)/settings/page": "app/(app)/settings/page.js",
20
+ "/(app)/docs/page": "app/(app)/docs/page.js",
21
+ "/(app)/setup/page": "app/(app)/setup/page.js",
22
+ "/(app)/memory/page": "app/(app)/memory/page.js",
23
+ "/(app)/activity/page": "app/(app)/activity/page.js"
24
+ }
@@ -0,0 +1,91 @@
1
+ exports.id=191,exports.ids=[191],exports.modules={1562:(e,t,a)=>{Promise.resolve().then(a.t.bind(a,9388,23)),Promise.resolve().then(a.t.bind(a,1152,23)),Promise.resolve().then(a.t.bind(a,2764,23)),Promise.resolve().then(a.t.bind(a,6894,23)),Promise.resolve().then(a.t.bind(a,3299,23)),Promise.resolve().then(a.t.bind(a,184,23))},9788:(e,t,a)=>{Promise.resolve().then(a.bind(a,151))},103:()=>{},151:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>ep});var s=a(7486),r=a(618),n=a(6811),i=a(6266);function d(){return s.jsx("div",{className:"min-h-screen flex items-center justify-center",children:(0,s.jsxs)("div",{className:"text-center",children:[s.jsx("div",{className:"flex gap-1.5 justify-center mb-4",children:[0,1,2].map(e=>s.jsx("div",{className:"w-2 h-2 rounded-full bg-accent animate-pulse-dot",style:{animationDelay:`${.15*e}s`}},e))}),s.jsx("p",{className:"text-muted text-sm font-mono",children:"Loading project..."})]})})}var o=a(9228);function l({projects:e,activeProject:t,currentName:a,onSelect:r}){return(0,s.jsxs)(o.h_,{children:[s.jsx(o.$F,{asChild:!0,children:(0,s.jsxs)("button",{className:"flex items-center gap-1.5 px-3 py-1.5 rounded-md bg-surface2 border border-border text-sm hover:border-border2 transition-colors",children:[s.jsx("span",{className:"text-txt font-medium truncate max-w-[200px]",children:a||"Select project"}),s.jsx("span",{className:"text-muted text-xs",children:"▾"})]})}),s.jsx(o.AW,{className:"w-64 bg-surface border-border2 text-txt",align:"start",children:0===e.length?s.jsx("div",{className:"px-3 py-2 text-sm text-muted",children:"No projects found"}):e.map(e=>s.jsx(o.Xi,{onClick:()=>r(e.root),className:`cursor-pointer hover:bg-surface2 focus:bg-surface2 ${e.root===t?"text-accent":""}`,children:(0,s.jsxs)("div",{children:[s.jsx("div",{className:"font-medium",children:e.name}),s.jsx("div",{className:"text-xs text-muted truncate font-mono",children:e.root})]})},e.root))})]})}var c=a(5819);function u({board:e}){return(0,s.jsxs)("div",{className:"flex items-center gap-1.5",children:[(0,s.jsxs)(c.C,{variant:"secondary",className:"gap-1 text-xs font-mono text-amber",children:["\uD83D\uDD28 ",e["in-progress"]||0]}),(0,s.jsxs)(c.C,{variant:"secondary",className:"gap-1 text-xs font-mono text-muted",children:["\uD83D\uDCCB ",e.todo||0]}),(0,s.jsxs)(c.C,{variant:"secondary",className:"gap-1 text-xs font-mono text-teal",children:["✅ ",e.done||0]})]})}var m=a(5098);function f({active:e}){return(0,s.jsxs)("div",{className:"flex items-center gap-1.5 text-xs font-mono text-muted",children:[s.jsx("div",{className:(0,m.cn)("w-1.5 h-1.5 rounded-full transition-colors duration-500",e?"bg-teal shadow-[0_0_6px_#4fd8b4]":"bg-border2")}),s.jsx("span",{children:e?"live update":"connected"})]})}var x=a(8942),p=a(4039),b=a(1317),h=a(3068),g=a(2162),v=a(6637),j=a(2439),N=a(2153);let w=j.fC;j.xz,j.x8;let y=j.h_,k=r.forwardRef(({className:e,...t},a)=>s.jsx(j.aV,{className:(0,m.cn)("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t,ref:a}));k.displayName=j.aV.displayName;let S=(0,p.j)("fixed z-50 gap-4 bg-white p-6 shadow-lg transition ease-in-out data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:duration-300 data-[state=open]:duration-500 dark:bg-slate-950",{variants:{side:{top:"inset-x-0 top-0 border-b data-[state=closed]:slide-out-to-top data-[state=open]:slide-in-from-top",bottom:"inset-x-0 bottom-0 border-t data-[state=closed]:slide-out-to-bottom data-[state=open]:slide-in-from-bottom",left:"inset-y-0 left-0 h-full w-3/4 border-r data-[state=closed]:slide-out-to-left data-[state=open]:slide-in-from-left sm:max-w-sm",right:"inset-y-0 right-0 h-full w-3/4 border-l data-[state=closed]:slide-out-to-right data-[state=open]:slide-in-from-right sm:max-w-sm"}},defaultVariants:{side:"right"}}),C=r.forwardRef(({side:e="right",className:t,children:a,...r},n)=>(0,s.jsxs)(y,{children:[s.jsx(k,{}),(0,s.jsxs)(j.VY,{ref:n,className:(0,m.cn)(S({side:e}),t),...r,children:[a,(0,s.jsxs)(j.x8,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-white transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-slate-950 focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-slate-100 dark:ring-offset-slate-950 dark:focus:ring-slate-300 dark:data-[state=open]:bg-slate-800",children:[s.jsx(N.Z,{className:"h-4 w-4"}),s.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));C.displayName=j.VY.displayName;let R=({className:e,...t})=>s.jsx("div",{className:(0,m.cn)("flex flex-col space-y-2 text-center sm:text-left",e),...t});R.displayName="SheetHeader";let z=r.forwardRef(({className:e,...t},a)=>s.jsx(j.Dx,{ref:a,className:(0,m.cn)("text-lg font-semibold text-slate-950 dark:text-slate-50",e),...t}));z.displayName=j.Dx.displayName;let P=r.forwardRef(({className:e,...t},a)=>s.jsx(j.dk,{ref:a,className:(0,m.cn)("text-sm text-slate-500 dark:text-slate-400",e),...t}));function D({className:e,...t}){return s.jsx("div",{className:(0,m.cn)("animate-pulse rounded-md bg-slate-100 dark:bg-slate-800",e),...t})}P.displayName=j.dk.displayName;var _=a(5875);let A=r.createContext(null);function Z(){let e=r.useContext(A);if(!e)throw Error("useSidebar must be used within a SidebarProvider.");return e}let $=r.forwardRef(({defaultOpen:e=!0,open:t,onOpenChange:a,className:n,style:i,children:d,...o},l)=>{let c=function(){let[e,t]=r.useState(void 0);return r.useEffect(()=>{let e=window.matchMedia("(max-width: 767px)"),a=()=>{t(window.innerWidth<768)};return e.addEventListener("change",a),t(window.innerWidth<768),()=>e.removeEventListener("change",a)},[]),!!e}(),[u,f]=r.useState(!1),[x,p]=r.useState(e),b=t??x,h=r.useCallback(e=>{let t="function"==typeof e?e(b):e;a?a(t):p(t),document.cookie=`sidebar_state=${t}; path=/; max-age=604800`},[a,b]),g=r.useCallback(()=>c?f(e=>!e):h(e=>!e),[c,h,f]);r.useEffect(()=>{let e=e=>{"b"===e.key&&(e.metaKey||e.ctrlKey)&&(e.preventDefault(),g())};return window.addEventListener("keydown",e),()=>window.removeEventListener("keydown",e)},[g]);let v=b?"expanded":"collapsed",j=r.useMemo(()=>({state:v,open:b,setOpen:h,isMobile:c,openMobile:u,setOpenMobile:f,toggleSidebar:g}),[v,b,h,c,u,f,g]);return s.jsx(A.Provider,{value:j,children:s.jsx(_.pn,{delayDuration:0,children:s.jsx("div",{style:{"--sidebar-width":"16rem","--sidebar-width-icon":"3rem",...i},className:(0,m.cn)("group/sidebar-wrapper flex min-h-svh w-full has-[[data-variant=inset]]:bg-sidebar",n),ref:l,...o,children:d})})})});$.displayName="SidebarProvider";let M=r.forwardRef(({side:e="left",variant:t="sidebar",collapsible:a="offcanvas",className:r,children:n,...i},d)=>{let{isMobile:o,state:l,openMobile:c,setOpenMobile:u}=Z();return"none"===a?s.jsx("div",{className:(0,m.cn)("flex h-full w-[--sidebar-width] flex-col bg-sidebar text-sidebar-foreground",r),ref:d,...i,children:n}):o?s.jsx(w,{open:c,onOpenChange:u,...i,children:(0,s.jsxs)(C,{"data-sidebar":"sidebar","data-mobile":"true",className:"w-[--sidebar-width] bg-sidebar p-0 text-sidebar-foreground [&>button]:hidden",style:{"--sidebar-width":"18rem"},side:e,children:[(0,s.jsxs)(R,{className:"sr-only",children:[s.jsx(z,{children:"Sidebar"}),s.jsx(P,{children:"Displays the mobile sidebar."})]}),s.jsx("div",{className:"flex h-full w-full flex-col",children:n})]})}):(0,s.jsxs)("div",{ref:d,className:"group peer hidden text-sidebar-foreground md:block","data-state":l,"data-collapsible":"collapsed"===l?a:"","data-variant":t,"data-side":e,children:[s.jsx("div",{className:(0,m.cn)("relative w-[--sidebar-width] bg-transparent transition-[width] duration-200 ease-linear","group-data-[collapsible=offcanvas]:w-0","group-data-[side=right]:rotate-180","floating"===t||"inset"===t?"group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4))]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon]")}),s.jsx("div",{className:(0,m.cn)("fixed inset-y-0 z-10 hidden h-svh w-[--sidebar-width] transition-[left,right,width] duration-200 ease-linear md:flex","left"===e?"left-0 group-data-[collapsible=offcanvas]:left-[calc(var(--sidebar-width)*-1)]":"right-0 group-data-[collapsible=offcanvas]:right-[calc(var(--sidebar-width)*-1)]","floating"===t||"inset"===t?"p-2 group-data-[collapsible=icon]:w-[calc(var(--sidebar-width-icon)_+_theme(spacing.4)_+2px)]":"group-data-[collapsible=icon]:w-[--sidebar-width-icon] group-data-[side=left]:border-r group-data-[side=right]:border-l",r),...i,children:s.jsx("div",{"data-sidebar":"sidebar",className:"flex h-full w-full flex-col bg-sidebar group-data-[variant=floating]:rounded-lg group-data-[variant=floating]:border group-data-[variant=floating]:border-sidebar-border group-data-[variant=floating]:shadow",children:n})})]})});M.displayName="Sidebar";let I=r.forwardRef(({className:e,onClick:t,...a},r)=>{let{toggleSidebar:n}=Z();return(0,s.jsxs)(h.z,{ref:r,"data-sidebar":"trigger",variant:"ghost",size:"icon",className:(0,m.cn)("h-7 w-7",e),onClick:e=>{t?.(e),n()},...a,children:[s.jsx(b.Z,{}),s.jsx("span",{className:"sr-only",children:"Toggle Sidebar"})]})});I.displayName="SidebarTrigger",r.forwardRef(({className:e,...t},a)=>{let{toggleSidebar:r}=Z();return s.jsx("button",{ref:a,"data-sidebar":"rail","aria-label":"Toggle Sidebar",tabIndex:-1,onClick:r,title:"Toggle Sidebar",className:(0,m.cn)("absolute inset-y-0 z-20 hidden w-4 -translate-x-1/2 transition-all ease-linear after:absolute after:inset-y-0 after:left-1/2 after:w-[2px] hover:after:bg-sidebar-border group-data-[side=left]:-right-4 group-data-[side=right]:left-0 sm:flex","[[data-side=left]_&]:cursor-w-resize [[data-side=right]_&]:cursor-e-resize","[[data-side=left][data-state=collapsed]_&]:cursor-e-resize [[data-side=right][data-state=collapsed]_&]:cursor-w-resize","group-data-[collapsible=offcanvas]:translate-x-0 group-data-[collapsible=offcanvas]:after:left-full group-data-[collapsible=offcanvas]:hover:bg-sidebar","[[data-side=left][data-collapsible=offcanvas]_&]:-right-2","[[data-side=right][data-collapsible=offcanvas]_&]:-left-2",e),...t})}).displayName="SidebarRail";let O=r.forwardRef(({className:e,...t},a)=>s.jsx("main",{ref:a,className:(0,m.cn)("relative flex w-full flex-1 flex-col bg-white dark:bg-slate-950","md:peer-data-[variant=inset]:m-2 md:peer-data-[state=collapsed]:peer-data-[variant=inset]:ml-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow",e),...t}));O.displayName="SidebarInset",r.forwardRef(({className:e,...t},a)=>s.jsx(g.I,{ref:a,"data-sidebar":"input",className:(0,m.cn)("h-8 w-full bg-white shadow-none focus-visible:ring-2 focus-visible:ring-sidebar-ring dark:bg-slate-950",e),...t})).displayName="SidebarInput";let V=r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"header",className:(0,m.cn)("flex flex-col gap-2 p-2",e),...t}));V.displayName="SidebarHeader",r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"footer",className:(0,m.cn)("flex flex-col gap-2 p-2",e),...t})).displayName="SidebarFooter";let E=r.forwardRef(({className:e,...t},a)=>s.jsx(v.Z,{ref:a,"data-sidebar":"separator",className:(0,m.cn)("mx-2 w-auto bg-sidebar-border",e),...t}));E.displayName="SidebarSeparator";let T=r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"content",className:(0,m.cn)("flex min-h-0 flex-1 flex-col gap-2 overflow-auto group-data-[collapsible=icon]:overflow-hidden",e),...t}));T.displayName="SidebarContent";let B=r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"group",className:(0,m.cn)("relative flex w-full min-w-0 flex-col p-2",e),...t}));B.displayName="SidebarGroup";let G=r.forwardRef(({className:e,asChild:t=!1,...a},r)=>{let n=t?x.g7:"div";return s.jsx(n,{ref:r,"data-sidebar":"group-label",className:(0,m.cn)("flex h-8 shrink-0 items-center rounded-md px-2 text-xs font-medium text-sidebar-foreground/70 outline-none ring-sidebar-ring transition-[margin,opacity] duration-200 ease-linear focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","group-data-[collapsible=icon]:-mt-8 group-data-[collapsible=icon]:opacity-0",e),...a})});G.displayName="SidebarGroupLabel",r.forwardRef(({className:e,asChild:t=!1,...a},r)=>{let n=t?x.g7:"button";return s.jsx(n,{ref:r,"data-sidebar":"group-action",className:(0,m.cn)("absolute right-3 top-3.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","group-data-[collapsible=icon]:hidden",e),...a})}).displayName="SidebarGroupAction";let q=r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"group-content",className:(0,m.cn)("w-full text-sm",e),...t}));q.displayName="SidebarGroupContent";let F=r.forwardRef(({className:e,...t},a)=>s.jsx("ul",{ref:a,"data-sidebar":"menu",className:(0,m.cn)("flex w-full min-w-0 flex-col gap-1",e),...t}));F.displayName="SidebarMenu";let U=r.forwardRef(({className:e,...t},a)=>s.jsx("li",{ref:a,"data-sidebar":"menu-item",className:(0,m.cn)("group/menu-item relative",e),...t}));U.displayName="SidebarMenuItem";let L=(0,p.j)("peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",{variants:{variant:{default:"hover:bg-sidebar-accent hover:text-sidebar-accent-foreground",outline:"bg-white shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))] dark:bg-slate-950"},size:{default:"h-8 text-sm",sm:"h-7 text-xs",lg:"h-12 text-sm group-data-[collapsible=icon]:!p-0"}},defaultVariants:{variant:"default",size:"default"}}),K=r.forwardRef(({asChild:e=!1,isActive:t=!1,variant:a="default",size:r="default",tooltip:n,className:i,...d},o)=>{let l=e?x.g7:"button",{isMobile:c,state:u}=Z(),f=s.jsx(l,{ref:o,"data-sidebar":"menu-button","data-size":r,"data-active":t,className:(0,m.cn)(L({variant:a,size:r}),i),...d});return n?("string"==typeof n&&(n={children:n}),(0,s.jsxs)(_.u,{children:[s.jsx(_.aJ,{asChild:!0,children:f}),s.jsx(_._v,{side:"right",align:"center",hidden:"collapsed"!==u||c,...n})]})):f});function W({summary:e,projects:t,activeProject:a,liveIndicator:r,onProjectChange:n}){return(0,s.jsxs)("header",{className:"h-12 border-b border-border flex items-center px-4 gap-4 flex-shrink-0 bg-surface/80 backdrop-blur-sm sticky top-0 z-50",children:[s.jsx(I,{className:"-ml-1"}),s.jsx(v.Z,{orientation:"vertical",className:"mr-2 h-4"}),(0,s.jsxs)("div",{className:"flex items-center gap-2 flex-shrink-0",children:[s.jsx("div",{className:"w-6 h-6 rounded-md bg-gradient-to-br from-accent to-teal flex items-center justify-center text-xs",children:"⬡"}),s.jsx("span",{className:"font-mono text-xs text-muted tracking-widest uppercase",children:"VibeDoc"})]}),s.jsx(l,{projects:t,activeProject:a,currentName:e?.name||"",onSelect:n}),e&&s.jsx(u,{board:e.tasks.board}),s.jsx("div",{className:"flex-1"}),s.jsx(f,{active:r}),(0,s.jsxs)("div",{className:"hidden md:flex items-center gap-1.5 px-2 py-1 rounded bg-surface2 border border-border",children:[s.jsx("span",{className:"text-xs font-mono text-muted",children:"MCP"}),s.jsx("code",{className:"text-xs font-mono text-accent",children:"localhost:3000/api/mcp"})]})]})}K.displayName="SidebarMenuButton",r.forwardRef(({className:e,asChild:t=!1,showOnHover:a=!1,...r},n)=>{let i=t?x.g7:"button";return s.jsx(i,{ref:n,"data-sidebar":"menu-action",className:(0,m.cn)("absolute right-1 top-1.5 flex aspect-square w-5 items-center justify-center rounded-md p-0 text-sidebar-foreground outline-none ring-sidebar-ring transition-transform hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 peer-hover/menu-button:text-sidebar-accent-foreground [&>svg]:size-4 [&>svg]:shrink-0","after:absolute after:-inset-2 after:md:hidden","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",a&&"group-focus-within/menu-item:opacity-100 group-hover/menu-item:opacity-100 data-[state=open]:opacity-100 peer-data-[active=true]/menu-button:text-sidebar-accent-foreground md:opacity-0",e),...r})}).displayName="SidebarMenuAction",r.forwardRef(({className:e,...t},a)=>s.jsx("div",{ref:a,"data-sidebar":"menu-badge",className:(0,m.cn)("pointer-events-none absolute right-1 flex h-5 min-w-5 select-none items-center justify-center rounded-md px-1 text-xs font-medium tabular-nums text-sidebar-foreground","peer-hover/menu-button:text-sidebar-accent-foreground peer-data-[active=true]/menu-button:text-sidebar-accent-foreground","peer-data-[size=sm]/menu-button:top-1","peer-data-[size=default]/menu-button:top-1.5","peer-data-[size=lg]/menu-button:top-2.5","group-data-[collapsible=icon]:hidden",e),...t})).displayName="SidebarMenuBadge",r.forwardRef(({className:e,showIcon:t=!1,...a},n)=>{let i=r.useMemo(()=>`${Math.floor(40*Math.random())+50}%`,[]);return(0,s.jsxs)("div",{ref:n,"data-sidebar":"menu-skeleton",className:(0,m.cn)("flex h-8 items-center gap-2 rounded-md px-2",e),...a,children:[t&&s.jsx(D,{className:"size-4 rounded-md","data-sidebar":"menu-skeleton-icon"}),s.jsx(D,{className:"h-4 max-w-[--skeleton-width] flex-1","data-sidebar":"menu-skeleton-text",style:{"--skeleton-width":i}})]})}).displayName="SidebarMenuSkeleton",r.forwardRef(({className:e,...t},a)=>s.jsx("ul",{ref:a,"data-sidebar":"menu-sub",className:(0,m.cn)("mx-3.5 flex min-w-0 translate-x-px flex-col gap-1 border-l border-sidebar-border px-2.5 py-0.5","group-data-[collapsible=icon]:hidden",e),...t})).displayName="SidebarMenuSub",r.forwardRef(({...e},t)=>s.jsx("li",{ref:t,...e})).displayName="SidebarMenuSubItem",r.forwardRef(({asChild:e=!1,size:t="md",isActive:a,className:r,...n},i)=>{let d=e?x.g7:"a";return s.jsx(d,{ref:i,"data-sidebar":"menu-sub-button","data-size":t,"data-active":a,className:(0,m.cn)("flex h-7 min-w-0 -translate-x-px items-center gap-2 overflow-hidden rounded-md px-2 text-sidebar-foreground outline-none ring-sidebar-ring hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 aria-disabled:pointer-events-none aria-disabled:opacity-50 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0 [&>svg]:text-sidebar-accent-foreground","data-[active=true]:bg-sidebar-accent data-[active=true]:text-sidebar-accent-foreground","sm"===t&&"text-xs","md"===t&&"text-sm","group-data-[collapsible=icon]:hidden",r),...n})}).displayName="SidebarMenuSubButton";var Y=a(3596),J=a(7987),H=a(9529),X=a(8673),Q=a(5314),ee=a(6034),et=a(771),ea=a(4119),es=a(7834),er=a(8165);let en=[{href:"/board",icon:Y.Z,label:"Board"},{href:"/docs",icon:J.Z,label:"Docs"},{href:"/activity",icon:H.Z,label:"Activity"},{href:"/memory",icon:X.Z,label:"Memory"},{href:"/settings",icon:Q.Z,label:"Settings"}],ei=[{status:"in-progress",icon:ee.Z,label:"Active"},{status:"blocked",icon:et.Z,label:"Blocked"},{status:"todo",icon:ea.Z,label:"Todo"},{status:"done",icon:es.Z,label:"Done"}];function ed({board:e}){let t=(0,n.usePathname)();return(0,s.jsxs)(M,{collapsible:"icon",children:[s.jsx(V,{children:(0,s.jsxs)("div",{className:"flex items-center gap-2 px-2 py-1",children:[s.jsx("div",{className:"w-6 h-6 rounded-md bg-gradient-to-br from-accent to-teal flex items-center justify-center text-xs flex-shrink-0",children:"⬡"}),s.jsx("span",{className:"font-mono text-xs text-muted tracking-widest uppercase group-data-[collapsible=icon]:hidden",children:"VibeDoc"})]})}),(0,s.jsxs)(T,{children:[s.jsx(B,{children:s.jsx(q,{children:s.jsx(F,{children:en.map(({href:e,icon:a,label:r})=>s.jsx(U,{children:s.jsx(K,{asChild:!0,isActive:t.startsWith(e),tooltip:r,children:(0,s.jsxs)(er.default,{href:e,children:[s.jsx(a,{}),s.jsx("span",{children:r})]})})},e))})})}),e&&(0,s.jsxs)(s.Fragment,{children:[s.jsx(E,{}),(0,s.jsxs)(B,{children:[s.jsx(G,{children:"Board"}),s.jsx(q,{children:s.jsx(F,{children:ei.map(({status:t,icon:a,label:r})=>{let n=e[t]?.length||0;return s.jsx(U,{children:(0,s.jsxs)(K,{tooltip:`${r}: ${n}`,children:[s.jsx(a,{}),s.jsx("span",{children:r}),s.jsx("span",{className:"ml-auto font-mono text-xs",children:n})]})},t)})})})]})]})]})]})}var eo=a(2126),el=a(194),ec=a(9516),eu=a(8650),em=a(2119);function ef({open:e,onClose:t,onOpenDoc:a,onNewDoc:i,rootParam:d}){let o=(0,n.useRouter)(),[l,c]=(0,r.useState)(""),[u,f]=(0,r.useState)([]),[x,p]=(0,r.useState)(0),b=[{label:"New Doc",icon:eo.Z,action:()=>{i?.(),t()}},{label:"Go to Board",icon:Y.Z,action:()=>{o.push("/board"),t()}},{label:"Go to Activity",icon:el.Z,action:()=>{o.push("/activity"),t()}},{label:"Go to Memory",icon:X.Z,action:()=>{o.push("/memory"),t()}}];function h(e){a(e.path),t()}let v=""===l;return s.jsx(eu.Vq,{open:e,onOpenChange:e=>{e||t()},children:(0,s.jsxs)(eu.cZ,{className:"max-w-lg p-0 overflow-hidden bg-surface border-border gap-0",children:[s.jsx(eu.$N,{className:"sr-only",children:"Command Palette"}),(0,s.jsxs)("div",{className:"flex items-center px-4 h-12",children:[s.jsx(ec.Z,{className:"h-4 w-4 text-muted shrink-0 mr-3"}),s.jsx(g.I,{autoFocus:!0,value:l,onChange:e=>c(e.target.value),onKeyDown:function(e){let t=u.length>0,a=t?u.length:b.length;"ArrowDown"===e.key?(e.preventDefault(),p(e=>Math.min(e+1,a-1))):"ArrowUp"===e.key?(e.preventDefault(),p(e=>Math.max(e-1,0))):"Enter"===e.key&&(t&&u[x]?h(u[x]):!t&&l.length<2&&b[x]&&b[x].action())},placeholder:"Search docs…",className:"border-0 bg-transparent h-full text-sm shadow-none focus-visible:ring-0 px-0 placeholder:text-muted"})]}),s.jsx("div",{className:"border-t border-border"}),(0,s.jsxs)(em.x,{className:"max-h-72",children:[v&&s.jsx("div",{className:"py-1",children:b.map((e,t)=>(0,s.jsxs)("button",{onClick:e.action,onMouseEnter:()=>p(t),className:(0,m.cn)("flex items-center gap-3 w-full px-4 py-2 text-sm text-left transition-colors",x===t?"bg-accent/10 text-txt":"text-muted hover:text-txt"),children:[s.jsx(e.icon,{className:"h-4 w-4 shrink-0"}),e.label]},e.label))}),!v&&u.length>0&&s.jsx("div",{className:"py-1",children:u.map((e,t)=>(0,s.jsxs)("button",{onClick:()=>h(e),onMouseEnter:()=>p(t),className:(0,m.cn)("flex items-center justify-between w-full px-4 py-2 text-sm text-left transition-colors",x===t?"bg-accent/10":"hover:bg-accent/5"),children:[s.jsx("span",{className:"font-medium text-txt truncate",children:e.name}),e.section&&s.jsx("span",{className:"text-xs text-muted ml-3 shrink-0 truncate max-w-[40%]",children:e.section})]},e.path))}),!v&&l.length>=2&&0===u.length&&s.jsx("div",{className:"px-4 py-6 text-center text-sm text-muted",children:"No docs found"})]})]})})}var ex=a(9195);function ep({children:e}){return s.jsx(i.w,{children:s.jsx(eh,{children:e})})}let eb=[{key:"Cmd+K",description:"Open command palette"},{key:"b",description:"Go to Board"},{key:"d",description:"Go to Docs"},{key:"a",description:"Go to Activity"},{key:"m",description:"Go to Memory"},{key:"/",description:"Focus doc search"},{key:"?",description:"Toggle this help"},{key:"Esc",description:"Close panel / modal"}];function eh({children:e}){let{loading:t,summary:a,projects:o,activeProject:l,liveIndicator:c,onProjectChange:u,board:m,openDoc:f,rootParam:x}=(0,i.q)();(0,n.useRouter)(),(0,n.usePathname)();let[p,b]=(0,r.useState)(!1),[h,g]=(0,r.useState)(!1),[v,j]=(0,r.useState)(!1);return t?s.jsx(d,{}):(0,s.jsxs)($,{children:[s.jsx(ed,{board:m}),(0,s.jsxs)(O,{children:[s.jsx(W,{summary:a,projects:o,activeProject:l,liveIndicator:c,onProjectChange:u}),s.jsx("main",{className:"flex-1 overflow-y-auto",children:e}),s.jsx(ef,{open:h,onClose:()=>g(!1),onOpenDoc:f,onNewDoc:()=>{g(!1),j(!0)},rootParam:x}),s.jsx(ex.t,{open:v,onOpenChange:j,rootParam:x,onDocCreated:async e=>{await f(e)}}),p&&(0,s.jsxs)(s.Fragment,{children:[s.jsx("div",{className:"fixed inset-0 z-50 bg-black/60",onClick:()=>b(!1)}),(0,s.jsxs)("div",{className:"fixed z-50 top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-80 bg-surface border border-border rounded-xl shadow-2xl p-5",children:[(0,s.jsxs)("div",{className:"flex items-center justify-between mb-4",children:[s.jsx("span",{className:"font-display text-sm font-semibold text-txt",children:"Keyboard shortcuts"}),s.jsx("button",{onClick:()=>b(!1),className:"text-muted hover:text-txt transition-colors text-lg leading-none",children:"\xd7"})]}),s.jsx("table",{className:"w-full text-xs",children:s.jsx("tbody",{children:eb.map(({key:e,description:t})=>(0,s.jsxs)("tr",{className:"border-t border-border first:border-0",children:[s.jsx("td",{className:"py-1.5 pr-4",children:s.jsx("kbd",{className:"font-mono bg-surface2 border border-border rounded px-1.5 py-0.5 text-accent",children:e})}),s.jsx("td",{className:"py-1.5 text-muted",children:t})]},e))})})]})]})]})]})}},9195:(e,t,a)=>{"use strict";a.d(t,{t:()=>x});var s=a(7486),r=a(618),n=a(9421),i=a(4987),d=a(5098),o=a(8650),l=a(3068),c=a(2162),u=a(2119);let m=new Date().toISOString().split("T")[0],f=[{id:"blank",name:"Blank Document",description:"Empty markdown file",defaultPath:"docs/untitled.md",content:"# Untitled\n\n"},{id:"claude-md",name:"CLAUDE.md",description:"AI agent instructions for Claude Code",defaultPath:"CLAUDE.md",content:"# Project Instructions\n\n## What this is\n\n## Stack\n\n## Commands\n```bash\n# install\n# dev\n# build\n```\n\n## Key conventions\n\n## Non-negotiables\n"},{id:"agents-md",name:"AGENTS.md",description:"AI agent instructions (multi-agent)",defaultPath:"AGENTS.md",content:"# Agent Instructions\n\n## Overview\n\n## Agents\n\n### Agent 1\n- **Role:**\n- **Tools:**\n\n## Shared conventions\n"},{id:"prd",name:"Product Requirements",description:"Product requirements document",defaultPath:"docs/prd.md",content:`# Product Requirements
2
+
3
+ **Status:** Draft
4
+ **Last updated:** ${m}
5
+
6
+ ## Problem
7
+
8
+ ## Goals
9
+
10
+ ## Non-goals
11
+
12
+ ## Requirements
13
+
14
+ ### Functional
15
+
16
+ ### Non-functional
17
+
18
+ ## Open questions
19
+ `},{id:"architecture-overview",name:"Architecture Overview",description:"System architecture doc",defaultPath:"docs/architecture/overview.md",content:`# Architecture Overview
20
+
21
+ **Last updated:** ${m}
22
+
23
+ ## Diagram
24
+
25
+ \`\`\`mermaid
26
+ graph TB
27
+ A[Client] --> B[API]
28
+ B --> C[DB]
29
+ \`\`\`
30
+
31
+ ## Components
32
+
33
+ ## Key decisions
34
+ `},{id:"api-reference",name:"API Reference",description:"API endpoints reference",defaultPath:"docs/api-reference.md",content:"# API Reference\n\n## Base URL\n\n```\nhttps://api.example.com/v1\n```\n\n## Authentication\n\n## Endpoints\n\n### GET /resource\n\n**Response:**\n```json\n{}\n```\n"},{id:"runbook",name:"Runbook",description:"Operational runbook",defaultPath:"docs/runbook.md",content:`# Runbook
35
+
36
+ **Last updated:** ${m}
37
+
38
+ ## Overview
39
+
40
+ ## Procedures
41
+
42
+ ### Deploy
43
+
44
+ ### Rollback
45
+
46
+ ### Troubleshooting
47
+
48
+ ## Contacts
49
+ `},{id:"adr",name:"Architecture Decision",description:"Architecture Decision Record",defaultPath:"docs/architecture/decisions/ADR-001.md",content:`# ADR-001: Title
50
+
51
+ **Status:** Proposed
52
+ **Date:** ${m}
53
+
54
+ ## Context
55
+
56
+ ## Decision
57
+
58
+ ## Rationale
59
+
60
+ ## Consequences
61
+ `},{id:"meeting-notes",name:"Meeting Notes",description:"Meeting notes template",defaultPath:`docs/meetings/${m}.md`,content:`# Meeting Notes — ${m}
62
+
63
+ **Attendees:**
64
+
65
+ ## Agenda
66
+
67
+ ## Notes
68
+
69
+ ## Action items
70
+
71
+ | Action | Owner | Due |
72
+ |--------|-------|-----|
73
+ | | | |
74
+ `},{id:"onboarding",name:"Onboarding Guide",description:"Developer onboarding guide",defaultPath:"docs/onboarding.md",content:`# Developer Onboarding
75
+
76
+ **Last updated:** ${m}
77
+
78
+ ## Setup
79
+
80
+ \`\`\`bash
81
+ git clone <repo>
82
+ npm install
83
+ npm run dev
84
+ \`\`\`
85
+
86
+ ## Project structure
87
+
88
+ ## Key concepts
89
+
90
+ ## Who to ask
91
+ `}];function x({open:e,onOpenChange:t,rootParam:a,onDocCreated:m}){let[x,p]=(0,r.useState)(1),[b,h]=(0,r.useState)(null),[g,v]=(0,r.useState)(""),[j,N]=(0,r.useState)(""),[w,y]=(0,r.useState)(!1);async function k(){if(b&&g.trim()){N(""),y(!0);try{let e=await fetch(`/api/docs${a}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({path:g.trim(),content:b.content})});if(409===e.status){N("File already exists"),y(!1);return}if(!e.ok){let t=await e.json();N(t.error||"Failed to create file"),y(!1);return}t(!1),m(g.trim())}catch{N("Network error"),y(!1)}}}return s.jsx(o.Vq,{open:e,onOpenChange:t,children:(0,s.jsxs)(o.cZ,{className:"max-w-2xl bg-surface border-border",children:[s.jsx(o.fK,{children:s.jsx(o.$N,{className:"text-txt text-sm font-semibold",children:1===x?"Choose a template":"Confirm file path"})}),1===x&&s.jsx(u.x,{className:"max-h-[420px]",children:s.jsx("div",{className:"grid grid-cols-3 gap-2 p-1",children:f.map(e=>(0,s.jsxs)("button",{onClick:()=>{h(e),v(e.defaultPath),N(""),p(2)},className:(0,d.cn)("flex flex-col items-start gap-1.5 p-3 rounded-lg border border-border text-left","bg-surface2 hover:bg-surface2/80 hover:border-accent/50 transition-colors"),children:[(0,s.jsxs)("div",{className:"flex items-center gap-2",children:[s.jsx(n.Z,{className:"h-3.5 w-3.5 text-accent shrink-0"}),s.jsx("span",{className:"text-xs font-medium text-txt",children:e.name})]}),s.jsx("p",{className:"text-[11px] text-muted leading-relaxed",children:e.description}),s.jsx("p",{className:"text-[10px] text-muted/60 font-mono truncate w-full",children:e.defaultPath})]},e.id))})}),2===x&&b&&(0,s.jsxs)("div",{className:"space-y-4",children:[(0,s.jsxs)("div",{className:"flex items-start gap-3 p-3 rounded-lg bg-surface2 border border-border",children:[s.jsx(n.Z,{className:"h-4 w-4 text-accent shrink-0 mt-0.5"}),(0,s.jsxs)("div",{children:[s.jsx("p",{className:"text-xs font-medium text-txt",children:b.name}),s.jsx("p",{className:"text-[11px] text-muted mt-0.5",children:b.description})]})]}),(0,s.jsxs)("div",{className:"space-y-1.5",children:[s.jsx("label",{className:"text-[11px] font-medium text-muted uppercase tracking-wider",children:"File path"}),s.jsx(c.I,{autoFocus:!0,value:g,onChange:e=>{v(e.target.value),N("")},onKeyDown:e=>{"Enter"===e.key&&k()},placeholder:"docs/my-document.md",className:"h-8 text-xs bg-surface2 border-border font-mono"}),j&&s.jsx("p",{className:"text-[11px] text-red-400",children:j})]}),(0,s.jsxs)("div",{className:"flex items-center justify-between pt-1",children:[(0,s.jsxs)(l.z,{variant:"ghost",size:"sm",onClick:()=>p(1),className:"h-7 text-xs text-muted hover:text-txt gap-1.5",children:[s.jsx(i.Z,{className:"h-3 w-3"}),"Back"]}),s.jsx(l.z,{size:"sm",onClick:k,disabled:w||!g.trim(),className:"h-7 text-xs bg-accent hover:bg-accent/90 text-white",children:w?"Creating…":"Create"})]})]})]})})}},5819:(e,t,a)=>{"use strict";a.d(t,{C:()=>d});var s=a(7486);a(618);var r=a(4039),n=a(5098);let i=(0,r.j)("inline-flex items-center rounded-full border border-slate-200 px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-slate-950 focus:ring-offset-2 dark:border-slate-800 dark:focus:ring-slate-300",{variants:{variant:{default:"border-transparent bg-slate-900 text-slate-50 hover:bg-slate-900/80 dark:bg-slate-50 dark:text-slate-900 dark:hover:bg-slate-50/80",secondary:"border-transparent bg-slate-100 text-slate-900 hover:bg-slate-100/80 dark:bg-slate-800 dark:text-slate-50 dark:hover:bg-slate-800/80",destructive:"border-transparent bg-red-500 text-slate-50 hover:bg-red-500/80 dark:bg-red-900 dark:text-slate-50 dark:hover:bg-red-900/80",outline:"text-slate-950 dark:text-slate-50"}},defaultVariants:{variant:"default"}});function d({className:e,variant:t,...a}){return s.jsx("div",{className:(0,n.cn)(i({variant:t}),e),...a})}},3068:(e,t,a)=>{"use strict";a.d(t,{z:()=>l});var s=a(7486),r=a(618),n=a(8942),i=a(4039),d=a(5098);let o=(0,i.j)("inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-white transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-slate-950 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 dark:ring-offset-slate-950 dark:focus-visible:ring-slate-300",{variants:{variant:{default:"bg-slate-900 text-slate-50 hover:bg-slate-900/90 dark:bg-slate-50 dark:text-slate-900 dark:hover:bg-slate-50/90",destructive:"bg-red-500 text-slate-50 hover:bg-red-500/90 dark:bg-red-900 dark:text-slate-50 dark:hover:bg-red-900/90",outline:"border border-slate-200 bg-white hover:bg-slate-100 hover:text-slate-900 dark:border-slate-800 dark:bg-slate-950 dark:hover:bg-slate-800 dark:hover:text-slate-50",secondary:"bg-slate-100 text-slate-900 hover:bg-slate-100/80 dark:bg-slate-800 dark:text-slate-50 dark:hover:bg-slate-800/80",ghost:"hover:bg-slate-100 hover:text-slate-900 dark:hover:bg-slate-800 dark:hover:text-slate-50",link:"text-slate-900 underline-offset-4 hover:underline dark:text-slate-50"},size:{default:"h-10 px-4 py-2",sm:"h-9 rounded-md px-3",lg:"h-11 rounded-md px-8",icon:"h-10 w-10"}},defaultVariants:{variant:"default",size:"default"}}),l=r.forwardRef(({className:e,variant:t,size:a,asChild:r=!1,...i},l)=>{let c=r?n.g7:"button";return s.jsx(c,{className:(0,d.cn)(o({variant:t,size:a,className:e})),ref:l,...i})});l.displayName="Button"},8650:(e,t,a)=>{"use strict";a.d(t,{$N:()=>f,Vq:()=>o,cZ:()=>u,fK:()=>m});var s=a(7486),r=a(618),n=a(2439),i=a(2153),d=a(5098);let o=n.fC;n.xz;let l=n.h_;n.x8;let c=r.forwardRef(({className:e,...t},a)=>s.jsx(n.aV,{ref:a,className:(0,d.cn)("fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",e),...t}));c.displayName=n.aV.displayName;let u=r.forwardRef(({className:e,children:t,...a},r)=>(0,s.jsxs)(l,{children:[s.jsx(c,{}),(0,s.jsxs)(n.VY,{ref:r,className:(0,d.cn)("fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border border-slate-200 bg-white p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg dark:border-slate-800 dark:bg-slate-950",e),...a,children:[t,(0,s.jsxs)(n.x8,{className:"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-white transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-slate-950 focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-slate-100 data-[state=open]:text-slate-500 dark:ring-offset-slate-950 dark:focus:ring-slate-300 dark:data-[state=open]:bg-slate-800 dark:data-[state=open]:text-slate-400",children:[s.jsx(i.Z,{className:"h-4 w-4"}),s.jsx("span",{className:"sr-only",children:"Close"})]})]})]}));u.displayName=n.VY.displayName;let m=({className:e,...t})=>s.jsx("div",{className:(0,d.cn)("flex flex-col space-y-1.5 text-center sm:text-left",e),...t});m.displayName="DialogHeader";let f=r.forwardRef(({className:e,...t},a)=>s.jsx(n.Dx,{ref:a,className:(0,d.cn)("text-lg font-semibold leading-none tracking-tight",e),...t}));f.displayName=n.Dx.displayName,r.forwardRef(({className:e,...t},a)=>s.jsx(n.dk,{ref:a,className:(0,d.cn)("text-sm text-slate-500 dark:text-slate-400",e),...t})).displayName=n.dk.displayName},9228:(e,t,a)=>{"use strict";a.d(t,{$F:()=>u,AW:()=>m,Xi:()=>f,h_:()=>c});var s=a(7486),r=a(618),n=a(79),i=a(8953),d=a(9644),o=a(3399),l=a(5098);let c=n.fC,u=n.xz;n.ZA,n.Uv,n.Tr,n.Ee,r.forwardRef(({className:e,inset:t,children:a,...r},d)=>(0,s.jsxs)(n.fF,{ref:d,className:(0,l.cn)("flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none focus:bg-slate-100 data-[state=open]:bg-slate-100 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 dark:focus:bg-slate-800 dark:data-[state=open]:bg-slate-800",t&&"pl-8",e),...r,children:[a,s.jsx(i.Z,{className:"ml-auto"})]})).displayName=n.fF.displayName,r.forwardRef(({className:e,...t},a)=>s.jsx(n.tu,{ref:a,className:(0,l.cn)("z-50 min-w-[8rem] overflow-hidden rounded-md border border-slate-200 bg-white p-1 text-slate-950 shadow-lg data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin] dark:border-slate-800 dark:bg-slate-950 dark:text-slate-50",e),...t})).displayName=n.tu.displayName;let m=r.forwardRef(({className:e,sideOffset:t=4,...a},r)=>s.jsx(n.Uv,{children:s.jsx(n.VY,{ref:r,sideOffset:t,className:(0,l.cn)("z-50 max-h-[var(--radix-dropdown-menu-content-available-height)] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border border-slate-200 bg-white p-1 text-slate-950 shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-dropdown-menu-content-transform-origin] dark:border-slate-800 dark:bg-slate-950 dark:text-slate-50",e),...a})}));m.displayName=n.VY.displayName;let f=r.forwardRef(({className:e,inset:t,...a},r)=>s.jsx(n.ck,{ref:r,className:(0,l.cn)("relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-slate-100 focus:text-slate-900 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0 dark:focus:bg-slate-800 dark:focus:text-slate-50",t&&"pl-8",e),...a}));f.displayName=n.ck.displayName,r.forwardRef(({className:e,children:t,checked:a,...r},i)=>(0,s.jsxs)(n.oC,{ref:i,className:(0,l.cn)("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-slate-100 focus:text-slate-900 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 dark:focus:bg-slate-800 dark:focus:text-slate-50",e),checked:a,...r,children:[s.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:s.jsx(n.wU,{children:s.jsx(d.Z,{className:"h-4 w-4"})})}),t]})).displayName=n.oC.displayName,r.forwardRef(({className:e,children:t,...a},r)=>(0,s.jsxs)(n.Rk,{ref:r,className:(0,l.cn)("relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-slate-100 focus:text-slate-900 data-[disabled]:pointer-events-none data-[disabled]:opacity-50 dark:focus:bg-slate-800 dark:focus:text-slate-50",e),...a,children:[s.jsx("span",{className:"absolute left-2 flex h-3.5 w-3.5 items-center justify-center",children:s.jsx(n.wU,{children:s.jsx(o.Z,{className:"h-2 w-2 fill-current"})})}),t]})).displayName=n.Rk.displayName,r.forwardRef(({className:e,inset:t,...a},r)=>s.jsx(n.__,{ref:r,className:(0,l.cn)("px-2 py-1.5 text-sm font-semibold",t&&"pl-8",e),...a})).displayName=n.__.displayName,r.forwardRef(({className:e,...t},a)=>s.jsx(n.Z0,{ref:a,className:(0,l.cn)("-mx-1 my-1 h-px bg-slate-100 dark:bg-slate-800",e),...t})).displayName=n.Z0.displayName},2162:(e,t,a)=>{"use strict";a.d(t,{I:()=>i});var s=a(7486),r=a(618),n=a(5098);let i=r.forwardRef(({className:e,type:t,...a},r)=>s.jsx("input",{type:t,className:(0,n.cn)("flex h-10 w-full rounded-md border border-slate-200 bg-white px-3 py-2 text-base ring-offset-white file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-slate-950 placeholder:text-slate-500 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-slate-950 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm dark:border-slate-800 dark:bg-slate-950 dark:ring-offset-slate-950 dark:file:text-slate-50 dark:placeholder:text-slate-400 dark:focus-visible:ring-slate-300",e),ref:r,...a}));i.displayName="Input"},2119:(e,t,a)=>{"use strict";a.d(t,{x:()=>d});var s=a(7486),r=a(618),n=a(7051),i=a(5098);let d=r.forwardRef(({className:e,children:t,...a},r)=>(0,s.jsxs)(n.fC,{ref:r,className:(0,i.cn)("relative overflow-hidden",e),...a,children:[s.jsx(n.l_,{className:"h-full w-full rounded-[inherit]",children:t}),s.jsx(o,{}),s.jsx(n.Ns,{})]}));d.displayName=n.fC.displayName;let o=r.forwardRef(({className:e,orientation:t="vertical",...a},r)=>s.jsx(n.gb,{ref:r,orientation:t,className:(0,i.cn)("flex touch-none select-none transition-colors","vertical"===t&&"h-full w-2.5 border-l border-l-transparent p-[1px]","horizontal"===t&&"h-2.5 flex-col border-t border-t-transparent p-[1px]",e),...a,children:s.jsx(n.q4,{className:"relative flex-1 rounded-full bg-slate-200 dark:bg-slate-800"})}));o.displayName=n.gb.displayName},6637:(e,t,a)=>{"use strict";a.d(t,{Z:()=>d});var s=a(7486),r=a(618),n=a(7168),i=a(5098);let d=r.forwardRef(({className:e,orientation:t="horizontal",decorative:a=!0,...r},d)=>s.jsx(n.f,{ref:d,decorative:a,orientation:t,className:(0,i.cn)("shrink-0 bg-slate-200 dark:bg-slate-800","horizontal"===t?"h-[1px] w-full":"h-full w-[1px]",e),...r}));d.displayName=n.f.displayName},5875:(e,t,a)=>{"use strict";a.d(t,{_v:()=>c,aJ:()=>l,pn:()=>d,u:()=>o});var s=a(7486),r=a(618),n=a(6448),i=a(5098);let d=n.zt,o=n.fC,l=n.xz,c=r.forwardRef(({className:e,sideOffset:t=4,...a},r)=>s.jsx(n.VY,{ref:r,sideOffset:t,className:(0,i.cn)("z-50 overflow-hidden rounded-md border border-slate-200 bg-white px-3 py-1.5 text-sm text-slate-950 shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin] dark:border-slate-800 dark:bg-slate-950 dark:text-slate-50",e),...a}));c.displayName=n.VY.displayName},6266:(e,t,a)=>{"use strict";a.d(t,{q:()=>d,w:()=>o});var s=a(7486),r=a(618),n=a(6811);let i=(0,r.createContext)(null);function d(){let e=(0,r.useContext)(i);if(!e)throw Error("useApp must be used inside AppProvider");return e}function o({children:e}){let t=(0,n.useRouter)(),[a,d]=(0,r.useState)([]),[o,l]=(0,r.useState)(""),[c,u]=(0,r.useState)(null),[m,f]=(0,r.useState)(null),[x,p]=(0,r.useState)([]),[b,h]=(0,r.useState)(!0),[g,v]=(0,r.useState)(!1),[j,N]=(0,r.useState)(null);(0,r.useRef)(null);let w=o?`?root=${encodeURIComponent(o)}`:"",y=(0,r.useCallback)(async e=>{let t=e||o;if(!t)return;let a=`?root=${encodeURIComponent(t)}`;try{let[e,t,s]=await Promise.all([fetch(`/api/summary${a}`).then(e=>e.json()),fetch(`/api/tasks${a}`).then(e=>e.json()),fetch(`/api/activity${a}&limit=30`).then(e=>e.json())]);u(e),f(t.board),p(Array.isArray(s)?s:[])}catch{}h(!1)},[o]),k=(0,r.useCallback)(async(e,t)=>{f(a=>{let s;if(!a)return a;let r=structuredClone(a);for(let a of Object.keys(r)){let n=r[a].findIndex(t=>t.id===e);-1!==n&&(s={...r[a][n],status:t},r[a]=r[a].filter(t=>t.id!==e))}return s&&r[t]&&(r[t]=[s,...r[t]]),r});try{await fetch(`/api/tasks${w}`,{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({taskId:e,status:t,actor:"human"})}),y()}catch{y()}},[w,y]),S=(0,r.useCallback)(async e=>{let a=await fetch(`/api/docs${w}&read=${encodeURIComponent(e)}`);N(await a.json()),t.push("/docs")},[w,t]);return s.jsx(i.Provider,{value:{projects:a,activeProject:o,summary:c,board:m,activity:x,liveIndicator:g,loading:b,selectedDoc:j,setSelectedDoc:N,rootParam:w,onProjectChange:function(e){l(e),y(e)},refresh:y,moveTask:k,openDoc:S},children:e})}},5098:(e,t,a)=>{"use strict";a.d(t,{cn:()=>n});var s=a(9360),r=a(2646);function n(...e){return(0,r.m6)((0,s.W)(e))}},2026:(e,t,a)=>{"use strict";a.r(t),a.d(t,{$$typeof:()=>i,__esModule:()=>n,default:()=>d});var s=a(2334);let r=(0,s.createProxy)(String.raw`/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/layout.tsx`),{__esModule:n,$$typeof:i}=r;r.default;let d=(0,s.createProxy)(String.raw`/Users/hoangnguyen/Documents/nextjs/vibedoc/src/app/(app)/layout.tsx#default`)},7831:(e,t,a)=>{"use strict";a.r(t),a.d(t,{default:()=>n,metadata:()=>r});var s=a(9703);a(5260);let r={title:"VibeDoc",description:"Project intelligence for AI-assisted development"};function n({children:e}){return s.jsx("html",{lang:"en",className:"dark",children:s.jsx("body",{className:"bg-bg text-txt min-h-screen",children:e})})}},5260:()=>{}};