tower-studio 0.1.1 → 0.1.3

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 (873) hide show
  1. package/components.json +25 -0
  2. package/next.config.ts +1 -1
  3. package/package.json +10 -11
  4. package/postcss.config.mjs +7 -0
  5. package/prisma/dev.db +0 -0
  6. package/prisma/prisma/dev.db +0 -0
  7. package/prisma/seed.ts +50 -0
  8. package/scripts/init-tower.ts +10 -0
  9. package/scripts/post-tool-hook.js +188 -0
  10. package/scripts/session-start-hook.js +79 -0
  11. package/scripts/stop-hook.js +78 -0
  12. package/skills/tower/SKILL.md +375 -0
  13. package/src/actions/__tests__/agent-actions-username.test.ts +30 -0
  14. package/src/actions/__tests__/asset-actions.test.ts +251 -0
  15. package/src/actions/__tests__/assistant-actions.test.ts +20 -0
  16. package/src/actions/__tests__/cli-profile-actions.test.ts +243 -0
  17. package/src/actions/__tests__/label-actions.test.ts +187 -0
  18. package/src/actions/__tests__/note-actions.test.ts +237 -0
  19. package/src/actions/__tests__/onboarding-actions.test.ts +265 -0
  20. package/src/actions/__tests__/project-actions.test.ts +179 -0
  21. package/src/actions/__tests__/prompt-actions.test.ts +213 -0
  22. package/src/actions/__tests__/report-actions.test.ts +246 -0
  23. package/src/actions/__tests__/search-code-actions.test.ts +308 -0
  24. package/src/actions/__tests__/task-actions-overview.test.ts +58 -0
  25. package/src/actions/__tests__/task-actions-pin.test.ts +79 -0
  26. package/src/actions/__tests__/workspace-actions.test.ts +256 -0
  27. package/src/actions/agent-actions.ts +741 -0
  28. package/src/actions/agent-config-actions.ts +44 -0
  29. package/src/actions/ai-config-actions.ts +51 -0
  30. package/src/actions/asset-actions.ts +131 -0
  31. package/src/actions/assistant-actions.ts +107 -0
  32. package/src/actions/cli-profile-actions.ts +98 -0
  33. package/src/actions/config-actions.ts +84 -0
  34. package/src/actions/file-actions.ts +262 -0
  35. package/src/actions/git-actions.ts +90 -0
  36. package/src/actions/label-actions.ts +67 -0
  37. package/src/actions/note-actions.ts +87 -0
  38. package/src/actions/onboarding-actions.ts +103 -0
  39. package/src/actions/preview-actions.ts +76 -0
  40. package/src/actions/project-actions.ts +222 -0
  41. package/src/actions/prompt-actions.ts +73 -0
  42. package/src/actions/report-actions.ts +141 -0
  43. package/src/actions/search-actions.ts +21 -0
  44. package/src/actions/search-code-actions.ts +185 -0
  45. package/src/actions/task-actions.ts +350 -0
  46. package/src/actions/workspace-actions.ts +224 -0
  47. package/src/app/api/adapters/test/route.ts +52 -0
  48. package/src/app/api/browse-fs/route.ts +90 -0
  49. package/src/app/api/files/assets/[projectId]/[filename]/route.ts +38 -0
  50. package/src/app/api/git/route.ts +367 -0
  51. package/src/app/api/internal/assets/[projectId]/[filename]/route.ts +51 -0
  52. package/src/app/api/internal/assets/reveal/route.ts +71 -0
  53. package/src/app/api/internal/assistant/chat/route.ts +217 -0
  54. package/src/app/api/internal/assistant/images/route.ts +51 -0
  55. package/src/app/api/internal/assistant/route.ts +50 -0
  56. package/src/app/api/internal/assistant/sessions/route.ts +44 -0
  57. package/src/app/api/internal/cache/[...segments]/route.ts +59 -0
  58. package/src/app/api/internal/hooks/install/route.ts +41 -0
  59. package/src/app/api/internal/hooks/session/route.ts +60 -0
  60. package/src/app/api/internal/hooks/stop/route.ts +61 -0
  61. package/src/app/api/internal/hooks/upload/route.ts +173 -0
  62. package/src/app/api/internal/notifications/pending/route.ts +20 -0
  63. package/src/app/api/internal/terminal/[taskId]/buffer/route.ts +48 -0
  64. package/src/app/api/internal/terminal/[taskId]/input/route.ts +64 -0
  65. package/src/app/api/internal/terminal/[taskId]/start/route.ts +37 -0
  66. package/src/app/api/tasks/[taskId]/diff/route.ts +224 -0
  67. package/src/app/api/tasks/[taskId]/merge/route.ts +159 -0
  68. package/src/app/globals.css +247 -0
  69. package/src/app/layout.tsx +63 -0
  70. package/src/app/missions/missions-client.tsx +338 -0
  71. package/src/app/missions/page.tsx +10 -0
  72. package/src/app/onboarding/page.tsx +619 -0
  73. package/src/app/page.tsx +5 -0
  74. package/src/app/settings/page.tsx +7 -0
  75. package/src/app/workspaces/[workspaceId]/archive/archive-page-client.tsx +258 -0
  76. package/src/app/workspaces/[workspaceId]/archive/page.tsx +36 -0
  77. package/src/app/workspaces/[workspaceId]/assets/assets-page-client.tsx +232 -0
  78. package/src/app/workspaces/[workspaceId]/assets/page.tsx +36 -0
  79. package/src/app/workspaces/[workspaceId]/board-page-client.tsx +257 -0
  80. package/src/app/workspaces/[workspaceId]/notes/notes-page-client.tsx +337 -0
  81. package/src/app/workspaces/[workspaceId]/notes/page.tsx +39 -0
  82. package/src/app/workspaces/[workspaceId]/page.tsx +81 -0
  83. package/src/app/workspaces/[workspaceId]/projects/[projectId]/page.tsx +30 -0
  84. package/src/app/workspaces/[workspaceId]/tasks/[taskId]/page.tsx +97 -0
  85. package/src/app/workspaces/[workspaceId]/tasks/[taskId]/task-page-client.tsx +601 -0
  86. package/src/app/workspaces/page.tsx +13 -0
  87. package/src/components/assets/asset-item.tsx +128 -0
  88. package/src/components/assets/asset-list.tsx +31 -0
  89. package/src/components/assets/asset-upload.tsx +216 -0
  90. package/src/components/assets/image-lightbox.tsx +72 -0
  91. package/src/components/assets/text-preview-dialog.tsx +135 -0
  92. package/src/components/assistant/assistant-chat-bubble.tsx +308 -0
  93. package/src/components/assistant/assistant-chat.tsx +215 -0
  94. package/src/components/assistant/assistant-panel.tsx +149 -0
  95. package/src/components/assistant/assistant-provider.tsx +512 -0
  96. package/src/components/assistant/image-preview-modal.tsx +60 -0
  97. package/src/components/assistant/image-thumbnail-strip.tsx +94 -0
  98. package/src/components/board/board-column.tsx +115 -0
  99. package/src/components/board/board-filters.tsx +42 -0
  100. package/src/components/board/board-stats.tsx +52 -0
  101. package/src/components/board/column-tasks-dialog.tsx +100 -0
  102. package/src/components/board/create-task-dialog.tsx +362 -0
  103. package/src/components/board/kanban-board.tsx +169 -0
  104. package/src/components/board/project-tabs.tsx +93 -0
  105. package/src/components/board/task-card-context-menu.tsx +121 -0
  106. package/src/components/board/task-card.tsx +135 -0
  107. package/src/components/layout/__tests__/top-bar-username.test.tsx +24 -0
  108. package/src/components/layout/app-sidebar.tsx +662 -0
  109. package/src/components/layout/folder-browser-dialog.tsx +273 -0
  110. package/src/components/layout/layout-client.tsx +198 -0
  111. package/src/components/layout/search-dialog.tsx +196 -0
  112. package/src/components/layout/sub-page-nav.tsx +54 -0
  113. package/src/components/layout/top-bar.tsx +265 -0
  114. package/src/components/missions/grid-layout-presets.ts +19 -0
  115. package/src/components/missions/grid-preset-picker.tsx +209 -0
  116. package/src/components/missions/merge-missions.ts +30 -0
  117. package/src/components/missions/mission-card.tsx +203 -0
  118. package/src/components/missions/task-picker-dialog.tsx +415 -0
  119. package/src/components/notes/category-filter.tsx +44 -0
  120. package/src/components/notes/note-card.tsx +67 -0
  121. package/src/components/notes/note-editor.tsx +28 -0
  122. package/src/components/notes/note-list.tsx +30 -0
  123. package/src/components/notifications/notification-permission-banner.tsx +49 -0
  124. package/src/components/notifications/use-notification-listener.ts +114 -0
  125. package/src/components/onboarding/__tests__/onboarding-wizard.test.tsx +185 -0
  126. package/src/components/onboarding/guided-tour.tsx +255 -0
  127. package/src/components/onboarding/onboarding-wizard.tsx +84 -0
  128. package/src/components/onboarding/wizard-step-cli.tsx +53 -0
  129. package/src/components/onboarding/wizard-step-username.tsx +59 -0
  130. package/src/components/project/create-project-dialog.tsx +310 -0
  131. package/src/components/project/import-project-dialog.tsx +414 -0
  132. package/src/components/providers/theme-provider.tsx +8 -0
  133. package/src/components/repository/create-branch-dialog.tsx +165 -0
  134. package/src/components/repository/git-changes-panel.tsx +294 -0
  135. package/src/components/repository/git-log-panel.tsx +83 -0
  136. package/src/components/repository/git-stash-panel.tsx +158 -0
  137. package/src/components/repository/repo-sidebar.tsx +855 -0
  138. package/src/components/settings/cli-adapter-tester.tsx +144 -0
  139. package/src/components/settings/settings-page.tsx +2111 -0
  140. package/src/components/task/code-editor.tsx +376 -0
  141. package/src/components/task/code-search.tsx +219 -0
  142. package/src/components/task/diff-editor.tsx +97 -0
  143. package/src/components/task/editor-git-panel.tsx +792 -0
  144. package/src/components/task/editor-tabs.tsx +68 -0
  145. package/src/components/task/execution-timeline.tsx +258 -0
  146. package/src/components/task/file-tree-context-menu.tsx +113 -0
  147. package/src/components/task/file-tree-node.tsx +269 -0
  148. package/src/components/task/file-tree.tsx +575 -0
  149. package/src/components/task/preview-panel.tsx +281 -0
  150. package/src/components/task/task-detail-panel.tsx +455 -0
  151. package/src/components/task/task-diff-view.tsx +207 -0
  152. package/src/components/task/task-file-changes.tsx +19 -0
  153. package/src/components/task/task-merge-confirm-dialog.tsx +152 -0
  154. package/src/components/task/task-metadata.tsx +74 -0
  155. package/src/components/task/task-notes-panel.tsx +219 -0
  156. package/src/components/task/task-overview-drawer.tsx +172 -0
  157. package/src/components/task/task-terminal.tsx +294 -0
  158. package/src/components/task/terminal-portal.tsx +156 -0
  159. package/src/components/task/types.ts +6 -0
  160. package/src/components/ui/avatar.tsx +109 -0
  161. package/src/components/ui/badge.tsx +52 -0
  162. package/src/components/ui/button.tsx +58 -0
  163. package/src/components/ui/card.tsx +103 -0
  164. package/src/components/ui/command.tsx +196 -0
  165. package/src/components/ui/dialog.tsx +160 -0
  166. package/src/components/ui/dropdown-menu.tsx +268 -0
  167. package/src/components/ui/empty-state.tsx +26 -0
  168. package/src/components/ui/error-boundary.tsx +58 -0
  169. package/src/components/ui/input-group.tsx +158 -0
  170. package/src/components/ui/input.tsx +20 -0
  171. package/src/components/ui/label.tsx +20 -0
  172. package/src/components/ui/popover.tsx +90 -0
  173. package/src/components/ui/scroll-area.tsx +55 -0
  174. package/src/components/ui/segmented-control.tsx +42 -0
  175. package/src/components/ui/select.tsx +207 -0
  176. package/src/components/ui/separator.tsx +25 -0
  177. package/src/components/ui/sheet.tsx +138 -0
  178. package/src/components/ui/sonner.tsx +49 -0
  179. package/src/components/ui/switch.tsx +32 -0
  180. package/src/components/ui/tabs.tsx +82 -0
  181. package/src/components/ui/textarea.tsx +18 -0
  182. package/src/components/ui/toast.tsx +86 -0
  183. package/src/components/ui/tooltip.tsx +66 -0
  184. package/src/hooks/__tests__/sse-event-reducer.test.ts +263 -0
  185. package/src/hooks/__tests__/use-assistant-chat.test.ts +34 -0
  186. package/src/hooks/__tests__/use-image-upload.test.ts +443 -0
  187. package/src/hooks/sse-event-reducer.ts +144 -0
  188. package/src/hooks/use-assistant-chat.ts +190 -0
  189. package/src/hooks/use-image-upload.ts +140 -0
  190. package/src/instrumentation.ts +18 -0
  191. package/src/lib/__tests__/assistant-message-converter.test.ts +162 -0
  192. package/src/lib/__tests__/assistant-sessions.test.ts +253 -0
  193. package/src/lib/__tests__/build-multimodal-prompt.test.ts +173 -0
  194. package/src/lib/__tests__/config-reader.test.ts +75 -0
  195. package/src/lib/__tests__/diff-parser.test.ts +212 -0
  196. package/src/lib/__tests__/execution-summary.test.ts +237 -0
  197. package/src/lib/__tests__/file-serve.test.ts +178 -0
  198. package/src/lib/__tests__/file-utils.test.ts +177 -0
  199. package/src/lib/__tests__/internal-api-guard.test.ts +151 -0
  200. package/src/lib/__tests__/logger.test.ts +181 -0
  201. package/src/lib/__tests__/platform.test.ts +566 -0
  202. package/src/lib/__tests__/reveal-route-security.test.ts +65 -0
  203. package/src/lib/__tests__/schemas.test.ts +377 -0
  204. package/src/lib/__tests__/terminal-link-provider.test.ts +160 -0
  205. package/src/lib/__tests__/upload-route-security.test.ts +120 -0
  206. package/src/lib/ai/__tests__/capability-resolver.test.ts +71 -0
  207. package/src/lib/ai/__tests__/claude-cli-adapter.test.ts +103 -0
  208. package/src/lib/ai/__tests__/provider-registry.test.ts +74 -0
  209. package/src/lib/ai/adapters/cli/claude-cli-adapter.ts +166 -0
  210. package/src/lib/ai/capability-resolver.ts +81 -0
  211. package/src/lib/ai/provider-registry.ts +54 -0
  212. package/src/lib/ai/providers/claude.ts +19 -0
  213. package/src/lib/ai/providers/index.ts +12 -0
  214. package/src/lib/ai/types.ts +151 -0
  215. package/src/lib/assistant-constants.ts +2 -0
  216. package/src/lib/assistant-message-converter.ts +131 -0
  217. package/src/lib/assistant-sessions.ts +75 -0
  218. package/src/lib/build-multimodal-prompt.ts +53 -0
  219. package/src/lib/claude-session.ts +156 -0
  220. package/src/lib/cli-test.ts +476 -0
  221. package/src/lib/config-defaults.ts +121 -0
  222. package/src/lib/config-reader.ts +16 -0
  223. package/src/lib/constants.ts +26 -0
  224. package/src/lib/db.ts +28 -0
  225. package/src/lib/diff-parser.ts +132 -0
  226. package/src/lib/execution-summary.ts +287 -0
  227. package/src/lib/file-serve-client.ts +13 -0
  228. package/src/lib/file-serve.ts +32 -0
  229. package/src/lib/file-utils.ts +108 -0
  230. package/src/lib/fs-security.ts +22 -0
  231. package/src/lib/fts.ts +83 -0
  232. package/src/lib/git-api.ts +19 -0
  233. package/src/lib/git-url.ts +244 -0
  234. package/src/lib/i18n/en.ts +754 -0
  235. package/src/lib/i18n/types.ts +4 -0
  236. package/src/lib/i18n/zh.ts +769 -0
  237. package/src/lib/i18n.tsx +64 -0
  238. package/src/lib/init-tower.ts +129 -0
  239. package/src/lib/instrumentation-tasks.ts +116 -0
  240. package/src/lib/internal-api-guard.ts +63 -0
  241. package/src/lib/logger.ts +46 -0
  242. package/src/lib/mime-magic.ts +67 -0
  243. package/src/lib/platform.ts +518 -0
  244. package/src/lib/preview-process.ts +40 -0
  245. package/src/lib/pty/__tests__/ws-server-assistant.test.ts +7 -0
  246. package/src/lib/pty/pty-session.ts +157 -0
  247. package/src/lib/pty/session-store.ts +67 -0
  248. package/src/lib/pty/ws-server.ts +335 -0
  249. package/src/lib/schemas.ts +67 -0
  250. package/src/lib/search.ts +225 -0
  251. package/src/lib/terminal-link-provider.ts +90 -0
  252. package/src/lib/tower-dir.ts +69 -0
  253. package/src/lib/utils.ts +20 -0
  254. package/src/lib/worktree.ts +184 -0
  255. package/src/stores/board-store.ts +46 -0
  256. package/src/stores/task-execution-store.ts +41 -0
  257. package/src/types/index.ts +36 -0
  258. package/.next/BUILD_ID +0 -1
  259. package/.next/app-path-routes-manifest.json +0 -41
  260. package/.next/build/chunks/0kjx__pnpm_05m.mc_._.js +0 -6681
  261. package/.next/build/chunks/[root-of-the-server]__0a5dngl._.js +0 -206
  262. package/.next/build/chunks/[root-of-the-server]__13e2v6w._.js +0 -500
  263. package/.next/build/chunks/[turbopack-node]_transforms_postcss_ts_0y_r.ay._.js +0 -13
  264. package/.next/build/chunks/[turbopack]_runtime.js +0 -890
  265. package/.next/build/package.json +0 -1
  266. package/.next/build/postcss.js +0 -6
  267. package/.next/build-manifest.json +0 -22
  268. package/.next/cache/.previewinfo +0 -1
  269. package/.next/cache/.rscinfo +0 -1
  270. package/.next/cache/.tsbuildinfo +0 -1
  271. package/.next/diagnostics/build-diagnostics.json +0 -6
  272. package/.next/diagnostics/framework.json +0 -1
  273. package/.next/diagnostics/route-bundle-stats.json +0 -299
  274. package/.next/export-marker.json +0 -6
  275. package/.next/fallback-build-manifest.json +0 -13
  276. package/.next/images-manifest.json +0 -68
  277. package/.next/next-minimal-server.js.nft.json +0 -1
  278. package/.next/next-server.js.nft.json +0 -1
  279. package/.next/package.json +0 -1
  280. package/.next/prerender-manifest.json +0 -278
  281. package/.next/required-server-files.js +0 -338
  282. package/.next/required-server-files.json +0 -338
  283. package/.next/routes-manifest.json +0 -312
  284. package/.next/server/app/_global-error/page/app-paths-manifest.json +0 -3
  285. package/.next/server/app/_global-error/page/build-manifest.json +0 -18
  286. package/.next/server/app/_global-error/page/next-font-manifest.json +0 -6
  287. package/.next/server/app/_global-error/page/react-loadable-manifest.json +0 -1
  288. package/.next/server/app/_global-error/page/server-reference-manifest.json +0 -4
  289. package/.next/server/app/_global-error/page.js +0 -12
  290. package/.next/server/app/_global-error/page.js.nft.json +0 -1
  291. package/.next/server/app/_global-error/page_client-reference-manifest.js +0 -3
  292. package/.next/server/app/_global-error.html +0 -1
  293. package/.next/server/app/_global-error.meta +0 -15
  294. package/.next/server/app/_global-error.rsc +0 -15
  295. package/.next/server/app/_global-error.segments/__PAGE__.segment.rsc +0 -5
  296. package/.next/server/app/_global-error.segments/_full.segment.rsc +0 -15
  297. package/.next/server/app/_global-error.segments/_head.segment.rsc +0 -6
  298. package/.next/server/app/_global-error.segments/_index.segment.rsc +0 -5
  299. package/.next/server/app/_global-error.segments/_tree.segment.rsc +0 -1
  300. package/.next/server/app/_not-found/page/app-paths-manifest.json +0 -3
  301. package/.next/server/app/_not-found/page/build-manifest.json +0 -18
  302. package/.next/server/app/_not-found/page/next-font-manifest.json +0 -11
  303. package/.next/server/app/_not-found/page/react-loadable-manifest.json +0 -16
  304. package/.next/server/app/_not-found/page/server-reference-manifest.json +0 -233
  305. package/.next/server/app/_not-found/page.js +0 -20
  306. package/.next/server/app/_not-found/page.js.nft.json +0 -1
  307. package/.next/server/app/_not-found/page_client-reference-manifest.js +0 -3
  308. package/.next/server/app/_not-found.html +0 -1
  309. package/.next/server/app/_not-found.meta +0 -16
  310. package/.next/server/app/_not-found.rsc +0 -24
  311. package/.next/server/app/_not-found.segments/_full.segment.rsc +0 -24
  312. package/.next/server/app/_not-found.segments/_head.segment.rsc +0 -6
  313. package/.next/server/app/_not-found.segments/_index.segment.rsc +0 -12
  314. package/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +0 -5
  315. package/.next/server/app/_not-found.segments/_not-found.segment.rsc +0 -5
  316. package/.next/server/app/_not-found.segments/_tree.segment.rsc +0 -4
  317. package/.next/server/app/api/adapters/test/route/app-paths-manifest.json +0 -3
  318. package/.next/server/app/api/adapters/test/route/build-manifest.json +0 -9
  319. package/.next/server/app/api/adapters/test/route/server-reference-manifest.json +0 -4
  320. package/.next/server/app/api/adapters/test/route.js +0 -9
  321. package/.next/server/app/api/adapters/test/route.js.nft.json +0 -1
  322. package/.next/server/app/api/adapters/test/route_client-reference-manifest.js +0 -3
  323. package/.next/server/app/api/browse-fs/route/app-paths-manifest.json +0 -3
  324. package/.next/server/app/api/browse-fs/route/build-manifest.json +0 -9
  325. package/.next/server/app/api/browse-fs/route/server-reference-manifest.json +0 -4
  326. package/.next/server/app/api/browse-fs/route.js +0 -7
  327. package/.next/server/app/api/browse-fs/route.js.nft.json +0 -1
  328. package/.next/server/app/api/browse-fs/route_client-reference-manifest.js +0 -3
  329. package/.next/server/app/api/files/assets/[projectId]/[filename]/route/app-paths-manifest.json +0 -3
  330. package/.next/server/app/api/files/assets/[projectId]/[filename]/route/build-manifest.json +0 -9
  331. package/.next/server/app/api/files/assets/[projectId]/[filename]/route/server-reference-manifest.json +0 -4
  332. package/.next/server/app/api/files/assets/[projectId]/[filename]/route.js +0 -7
  333. package/.next/server/app/api/files/assets/[projectId]/[filename]/route.js.nft.json +0 -1
  334. package/.next/server/app/api/files/assets/[projectId]/[filename]/route_client-reference-manifest.js +0 -3
  335. package/.next/server/app/api/git/route/app-paths-manifest.json +0 -3
  336. package/.next/server/app/api/git/route/build-manifest.json +0 -9
  337. package/.next/server/app/api/git/route/server-reference-manifest.json +0 -4
  338. package/.next/server/app/api/git/route.js +0 -8
  339. package/.next/server/app/api/git/route.js.nft.json +0 -1
  340. package/.next/server/app/api/git/route_client-reference-manifest.js +0 -3
  341. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route/app-paths-manifest.json +0 -3
  342. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route/build-manifest.json +0 -9
  343. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route/server-reference-manifest.json +0 -4
  344. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route.js +0 -7
  345. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route.js.nft.json +0 -1
  346. package/.next/server/app/api/internal/assets/[projectId]/[filename]/route_client-reference-manifest.js +0 -3
  347. package/.next/server/app/api/internal/assets/reveal/route/app-paths-manifest.json +0 -3
  348. package/.next/server/app/api/internal/assets/reveal/route/build-manifest.json +0 -9
  349. package/.next/server/app/api/internal/assets/reveal/route/server-reference-manifest.json +0 -4
  350. package/.next/server/app/api/internal/assets/reveal/route.js +0 -7
  351. package/.next/server/app/api/internal/assets/reveal/route.js.nft.json +0 -1
  352. package/.next/server/app/api/internal/assets/reveal/route_client-reference-manifest.js +0 -3
  353. package/.next/server/app/api/internal/assistant/chat/route/app-paths-manifest.json +0 -3
  354. package/.next/server/app/api/internal/assistant/chat/route/build-manifest.json +0 -9
  355. package/.next/server/app/api/internal/assistant/chat/route/server-reference-manifest.json +0 -4
  356. package/.next/server/app/api/internal/assistant/chat/route.js +0 -7
  357. package/.next/server/app/api/internal/assistant/chat/route.js.nft.json +0 -1
  358. package/.next/server/app/api/internal/assistant/chat/route_client-reference-manifest.js +0 -3
  359. package/.next/server/app/api/internal/assistant/images/route/app-paths-manifest.json +0 -3
  360. package/.next/server/app/api/internal/assistant/images/route/build-manifest.json +0 -9
  361. package/.next/server/app/api/internal/assistant/images/route/server-reference-manifest.json +0 -4
  362. package/.next/server/app/api/internal/assistant/images/route.js +0 -9
  363. package/.next/server/app/api/internal/assistant/images/route.js.nft.json +0 -1
  364. package/.next/server/app/api/internal/assistant/images/route_client-reference-manifest.js +0 -3
  365. package/.next/server/app/api/internal/assistant/route/app-paths-manifest.json +0 -3
  366. package/.next/server/app/api/internal/assistant/route/build-manifest.json +0 -9
  367. package/.next/server/app/api/internal/assistant/route/server-reference-manifest.json +0 -4
  368. package/.next/server/app/api/internal/assistant/route.js +0 -7
  369. package/.next/server/app/api/internal/assistant/route.js.nft.json +0 -1
  370. package/.next/server/app/api/internal/assistant/route_client-reference-manifest.js +0 -3
  371. package/.next/server/app/api/internal/assistant/sessions/route/app-paths-manifest.json +0 -3
  372. package/.next/server/app/api/internal/assistant/sessions/route/build-manifest.json +0 -9
  373. package/.next/server/app/api/internal/assistant/sessions/route/server-reference-manifest.json +0 -4
  374. package/.next/server/app/api/internal/assistant/sessions/route.js +0 -7
  375. package/.next/server/app/api/internal/assistant/sessions/route.js.nft.json +0 -1
  376. package/.next/server/app/api/internal/assistant/sessions/route_client-reference-manifest.js +0 -3
  377. package/.next/server/app/api/internal/cache/[...segments]/route/app-paths-manifest.json +0 -3
  378. package/.next/server/app/api/internal/cache/[...segments]/route/build-manifest.json +0 -9
  379. package/.next/server/app/api/internal/cache/[...segments]/route/server-reference-manifest.json +0 -4
  380. package/.next/server/app/api/internal/cache/[...segments]/route.js +0 -7
  381. package/.next/server/app/api/internal/cache/[...segments]/route.js.nft.json +0 -1
  382. package/.next/server/app/api/internal/cache/[...segments]/route_client-reference-manifest.js +0 -3
  383. package/.next/server/app/api/internal/hooks/install/route/app-paths-manifest.json +0 -3
  384. package/.next/server/app/api/internal/hooks/install/route/build-manifest.json +0 -9
  385. package/.next/server/app/api/internal/hooks/install/route/server-reference-manifest.json +0 -4
  386. package/.next/server/app/api/internal/hooks/install/route.js +0 -7
  387. package/.next/server/app/api/internal/hooks/install/route.js.nft.json +0 -1
  388. package/.next/server/app/api/internal/hooks/install/route_client-reference-manifest.js +0 -3
  389. package/.next/server/app/api/internal/hooks/session/route/app-paths-manifest.json +0 -3
  390. package/.next/server/app/api/internal/hooks/session/route/build-manifest.json +0 -9
  391. package/.next/server/app/api/internal/hooks/session/route/server-reference-manifest.json +0 -4
  392. package/.next/server/app/api/internal/hooks/session/route.js +0 -7
  393. package/.next/server/app/api/internal/hooks/session/route.js.nft.json +0 -1
  394. package/.next/server/app/api/internal/hooks/session/route_client-reference-manifest.js +0 -3
  395. package/.next/server/app/api/internal/hooks/stop/route/app-paths-manifest.json +0 -3
  396. package/.next/server/app/api/internal/hooks/stop/route/build-manifest.json +0 -9
  397. package/.next/server/app/api/internal/hooks/stop/route/server-reference-manifest.json +0 -4
  398. package/.next/server/app/api/internal/hooks/stop/route.js +0 -8
  399. package/.next/server/app/api/internal/hooks/stop/route.js.nft.json +0 -1
  400. package/.next/server/app/api/internal/hooks/stop/route_client-reference-manifest.js +0 -3
  401. package/.next/server/app/api/internal/hooks/upload/route/app-paths-manifest.json +0 -3
  402. package/.next/server/app/api/internal/hooks/upload/route/build-manifest.json +0 -9
  403. package/.next/server/app/api/internal/hooks/upload/route/server-reference-manifest.json +0 -4
  404. package/.next/server/app/api/internal/hooks/upload/route.js +0 -7
  405. package/.next/server/app/api/internal/hooks/upload/route.js.nft.json +0 -1
  406. package/.next/server/app/api/internal/hooks/upload/route_client-reference-manifest.js +0 -3
  407. package/.next/server/app/api/internal/notifications/pending/route/app-paths-manifest.json +0 -3
  408. package/.next/server/app/api/internal/notifications/pending/route/build-manifest.json +0 -9
  409. package/.next/server/app/api/internal/notifications/pending/route/server-reference-manifest.json +0 -4
  410. package/.next/server/app/api/internal/notifications/pending/route.js +0 -7
  411. package/.next/server/app/api/internal/notifications/pending/route.js.nft.json +0 -1
  412. package/.next/server/app/api/internal/notifications/pending/route_client-reference-manifest.js +0 -3
  413. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route/app-paths-manifest.json +0 -3
  414. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route/build-manifest.json +0 -9
  415. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route/server-reference-manifest.json +0 -4
  416. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route.js +0 -8
  417. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route.js.nft.json +0 -1
  418. package/.next/server/app/api/internal/terminal/[taskId]/buffer/route_client-reference-manifest.js +0 -3
  419. package/.next/server/app/api/internal/terminal/[taskId]/input/route/app-paths-manifest.json +0 -3
  420. package/.next/server/app/api/internal/terminal/[taskId]/input/route/build-manifest.json +0 -9
  421. package/.next/server/app/api/internal/terminal/[taskId]/input/route/server-reference-manifest.json +0 -4
  422. package/.next/server/app/api/internal/terminal/[taskId]/input/route.js +0 -8
  423. package/.next/server/app/api/internal/terminal/[taskId]/input/route.js.nft.json +0 -1
  424. package/.next/server/app/api/internal/terminal/[taskId]/input/route_client-reference-manifest.js +0 -3
  425. package/.next/server/app/api/internal/terminal/[taskId]/start/route/app-paths-manifest.json +0 -3
  426. package/.next/server/app/api/internal/terminal/[taskId]/start/route/build-manifest.json +0 -9
  427. package/.next/server/app/api/internal/terminal/[taskId]/start/route/server-reference-manifest.json +0 -4
  428. package/.next/server/app/api/internal/terminal/[taskId]/start/route.js +0 -10
  429. package/.next/server/app/api/internal/terminal/[taskId]/start/route.js.nft.json +0 -1
  430. package/.next/server/app/api/internal/terminal/[taskId]/start/route_client-reference-manifest.js +0 -3
  431. package/.next/server/app/api/tasks/[taskId]/diff/route/app-paths-manifest.json +0 -3
  432. package/.next/server/app/api/tasks/[taskId]/diff/route/build-manifest.json +0 -9
  433. package/.next/server/app/api/tasks/[taskId]/diff/route/server-reference-manifest.json +0 -4
  434. package/.next/server/app/api/tasks/[taskId]/diff/route.js +0 -8
  435. package/.next/server/app/api/tasks/[taskId]/diff/route.js.nft.json +0 -1
  436. package/.next/server/app/api/tasks/[taskId]/diff/route_client-reference-manifest.js +0 -3
  437. package/.next/server/app/api/tasks/[taskId]/merge/route/app-paths-manifest.json +0 -3
  438. package/.next/server/app/api/tasks/[taskId]/merge/route/build-manifest.json +0 -9
  439. package/.next/server/app/api/tasks/[taskId]/merge/route/server-reference-manifest.json +0 -4
  440. package/.next/server/app/api/tasks/[taskId]/merge/route.js +0 -9
  441. package/.next/server/app/api/tasks/[taskId]/merge/route.js.nft.json +0 -1
  442. package/.next/server/app/api/tasks/[taskId]/merge/route_client-reference-manifest.js +0 -3
  443. package/.next/server/app/apple-icon.png/route/app-paths-manifest.json +0 -3
  444. package/.next/server/app/apple-icon.png/route/build-manifest.json +0 -9
  445. package/.next/server/app/apple-icon.png/route.js +0 -8
  446. package/.next/server/app/apple-icon.png/route.js.nft.json +0 -1
  447. package/.next/server/app/apple-icon.png.meta +0 -1
  448. package/.next/server/app/favicon.ico/route/app-paths-manifest.json +0 -3
  449. package/.next/server/app/favicon.ico/route/build-manifest.json +0 -9
  450. package/.next/server/app/favicon.ico/route.js +0 -8
  451. package/.next/server/app/favicon.ico/route.js.nft.json +0 -1
  452. package/.next/server/app/favicon.ico.meta +0 -1
  453. package/.next/server/app/icon0.svg/route/app-paths-manifest.json +0 -3
  454. package/.next/server/app/icon0.svg/route/build-manifest.json +0 -9
  455. package/.next/server/app/icon0.svg/route.js +0 -8
  456. package/.next/server/app/icon0.svg/route.js.nft.json +0 -1
  457. package/.next/server/app/icon0.svg.meta +0 -1
  458. package/.next/server/app/icon1.png/route/app-paths-manifest.json +0 -3
  459. package/.next/server/app/icon1.png/route/build-manifest.json +0 -9
  460. package/.next/server/app/icon1.png/route.js +0 -8
  461. package/.next/server/app/icon1.png/route.js.nft.json +0 -1
  462. package/.next/server/app/icon1.png.meta +0 -1
  463. package/.next/server/app/index.html +0 -1
  464. package/.next/server/app/index.meta +0 -16
  465. package/.next/server/app/index.rsc +0 -25
  466. package/.next/server/app/index.segments/__PAGE__.segment.rsc +0 -6
  467. package/.next/server/app/index.segments/_full.segment.rsc +0 -25
  468. package/.next/server/app/index.segments/_head.segment.rsc +0 -6
  469. package/.next/server/app/index.segments/_index.segment.rsc +0 -12
  470. package/.next/server/app/index.segments/_tree.segment.rsc +0 -6
  471. package/.next/server/app/manifest.json/route/app-paths-manifest.json +0 -3
  472. package/.next/server/app/manifest.json/route/build-manifest.json +0 -9
  473. package/.next/server/app/manifest.json/route.js +0 -7
  474. package/.next/server/app/manifest.json/route.js.nft.json +0 -1
  475. package/.next/server/app/manifest.json.meta +0 -1
  476. package/.next/server/app/missions/page/app-paths-manifest.json +0 -3
  477. package/.next/server/app/missions/page/build-manifest.json +0 -18
  478. package/.next/server/app/missions/page/next-font-manifest.json +0 -11
  479. package/.next/server/app/missions/page/react-loadable-manifest.json +0 -16
  480. package/.next/server/app/missions/page/server-reference-manifest.json +0 -401
  481. package/.next/server/app/missions/page.js +0 -22
  482. package/.next/server/app/missions/page.js.nft.json +0 -1
  483. package/.next/server/app/missions/page_client-reference-manifest.js +0 -3
  484. package/.next/server/app/onboarding/page/app-paths-manifest.json +0 -3
  485. package/.next/server/app/onboarding/page/build-manifest.json +0 -18
  486. package/.next/server/app/onboarding/page/next-font-manifest.json +0 -11
  487. package/.next/server/app/onboarding/page/react-loadable-manifest.json +0 -16
  488. package/.next/server/app/onboarding/page/server-reference-manifest.json +0 -233
  489. package/.next/server/app/onboarding/page.js +0 -21
  490. package/.next/server/app/onboarding/page.js.nft.json +0 -1
  491. package/.next/server/app/onboarding/page_client-reference-manifest.js +0 -3
  492. package/.next/server/app/onboarding.html +0 -1
  493. package/.next/server/app/onboarding.meta +0 -15
  494. package/.next/server/app/onboarding.rsc +0 -30
  495. package/.next/server/app/onboarding.segments/_full.segment.rsc +0 -30
  496. package/.next/server/app/onboarding.segments/_head.segment.rsc +0 -6
  497. package/.next/server/app/onboarding.segments/_index.segment.rsc +0 -12
  498. package/.next/server/app/onboarding.segments/_tree.segment.rsc +0 -6
  499. package/.next/server/app/onboarding.segments/onboarding/__PAGE__.segment.rsc +0 -9
  500. package/.next/server/app/onboarding.segments/onboarding.segment.rsc +0 -5
  501. package/.next/server/app/page/app-paths-manifest.json +0 -3
  502. package/.next/server/app/page/build-manifest.json +0 -18
  503. package/.next/server/app/page/next-font-manifest.json +0 -11
  504. package/.next/server/app/page/react-loadable-manifest.json +0 -16
  505. package/.next/server/app/page/server-reference-manifest.json +0 -233
  506. package/.next/server/app/page.js +0 -21
  507. package/.next/server/app/page.js.nft.json +0 -1
  508. package/.next/server/app/page_client-reference-manifest.js +0 -3
  509. package/.next/server/app/settings/page/app-paths-manifest.json +0 -3
  510. package/.next/server/app/settings/page/build-manifest.json +0 -18
  511. package/.next/server/app/settings/page/next-font-manifest.json +0 -11
  512. package/.next/server/app/settings/page/react-loadable-manifest.json +0 -16
  513. package/.next/server/app/settings/page/server-reference-manifest.json +0 -341
  514. package/.next/server/app/settings/page.js +0 -21
  515. package/.next/server/app/settings/page.js.nft.json +0 -1
  516. package/.next/server/app/settings/page_client-reference-manifest.js +0 -3
  517. package/.next/server/app/settings.html +0 -1
  518. package/.next/server/app/settings.meta +0 -15
  519. package/.next/server/app/settings.rsc +0 -30
  520. package/.next/server/app/settings.segments/_full.segment.rsc +0 -30
  521. package/.next/server/app/settings.segments/_head.segment.rsc +0 -6
  522. package/.next/server/app/settings.segments/_index.segment.rsc +0 -12
  523. package/.next/server/app/settings.segments/_tree.segment.rsc +0 -6
  524. package/.next/server/app/settings.segments/settings/__PAGE__.segment.rsc +0 -9
  525. package/.next/server/app/settings.segments/settings.segment.rsc +0 -5
  526. package/.next/server/app/workspaces/[workspaceId]/archive/page/app-paths-manifest.json +0 -3
  527. package/.next/server/app/workspaces/[workspaceId]/archive/page/build-manifest.json +0 -18
  528. package/.next/server/app/workspaces/[workspaceId]/archive/page/next-font-manifest.json +0 -11
  529. package/.next/server/app/workspaces/[workspaceId]/archive/page/react-loadable-manifest.json +0 -16
  530. package/.next/server/app/workspaces/[workspaceId]/archive/page/server-reference-manifest.json +0 -497
  531. package/.next/server/app/workspaces/[workspaceId]/archive/page.js +0 -21
  532. package/.next/server/app/workspaces/[workspaceId]/archive/page.js.nft.json +0 -1
  533. package/.next/server/app/workspaces/[workspaceId]/archive/page_client-reference-manifest.js +0 -3
  534. package/.next/server/app/workspaces/[workspaceId]/assets/page/app-paths-manifest.json +0 -3
  535. package/.next/server/app/workspaces/[workspaceId]/assets/page/build-manifest.json +0 -18
  536. package/.next/server/app/workspaces/[workspaceId]/assets/page/next-font-manifest.json +0 -11
  537. package/.next/server/app/workspaces/[workspaceId]/assets/page/react-loadable-manifest.json +0 -16
  538. package/.next/server/app/workspaces/[workspaceId]/assets/page/server-reference-manifest.json +0 -461
  539. package/.next/server/app/workspaces/[workspaceId]/assets/page.js +0 -21
  540. package/.next/server/app/workspaces/[workspaceId]/assets/page.js.nft.json +0 -1
  541. package/.next/server/app/workspaces/[workspaceId]/assets/page_client-reference-manifest.js +0 -3
  542. package/.next/server/app/workspaces/[workspaceId]/notes/page/app-paths-manifest.json +0 -3
  543. package/.next/server/app/workspaces/[workspaceId]/notes/page/build-manifest.json +0 -18
  544. package/.next/server/app/workspaces/[workspaceId]/notes/page/next-font-manifest.json +0 -11
  545. package/.next/server/app/workspaces/[workspaceId]/notes/page/react-loadable-manifest.json +0 -16
  546. package/.next/server/app/workspaces/[workspaceId]/notes/page/server-reference-manifest.json +0 -401
  547. package/.next/server/app/workspaces/[workspaceId]/notes/page.js +0 -21
  548. package/.next/server/app/workspaces/[workspaceId]/notes/page.js.nft.json +0 -1
  549. package/.next/server/app/workspaces/[workspaceId]/notes/page_client-reference-manifest.js +0 -3
  550. package/.next/server/app/workspaces/[workspaceId]/page/app-paths-manifest.json +0 -3
  551. package/.next/server/app/workspaces/[workspaceId]/page/build-manifest.json +0 -18
  552. package/.next/server/app/workspaces/[workspaceId]/page/next-font-manifest.json +0 -11
  553. package/.next/server/app/workspaces/[workspaceId]/page/react-loadable-manifest.json +0 -16
  554. package/.next/server/app/workspaces/[workspaceId]/page/server-reference-manifest.json +0 -569
  555. package/.next/server/app/workspaces/[workspaceId]/page.js +0 -22
  556. package/.next/server/app/workspaces/[workspaceId]/page.js.nft.json +0 -1
  557. package/.next/server/app/workspaces/[workspaceId]/page_client-reference-manifest.js +0 -3
  558. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page/app-paths-manifest.json +0 -3
  559. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page/build-manifest.json +0 -18
  560. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page/next-font-manifest.json +0 -11
  561. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page/react-loadable-manifest.json +0 -16
  562. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page/server-reference-manifest.json +0 -233
  563. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page.js +0 -21
  564. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page.js.nft.json +0 -1
  565. package/.next/server/app/workspaces/[workspaceId]/projects/[projectId]/page_client-reference-manifest.js +0 -3
  566. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page/app-paths-manifest.json +0 -3
  567. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page/build-manifest.json +0 -18
  568. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page/next-font-manifest.json +0 -11
  569. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page/react-loadable-manifest.json +0 -22
  570. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page/server-reference-manifest.json +0 -581
  571. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page.js +0 -23
  572. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page.js.nft.json +0 -1
  573. package/.next/server/app/workspaces/[workspaceId]/tasks/[taskId]/page_client-reference-manifest.js +0 -3
  574. package/.next/server/app/workspaces/page/app-paths-manifest.json +0 -3
  575. package/.next/server/app/workspaces/page/build-manifest.json +0 -18
  576. package/.next/server/app/workspaces/page/next-font-manifest.json +0 -11
  577. package/.next/server/app/workspaces/page/react-loadable-manifest.json +0 -16
  578. package/.next/server/app/workspaces/page/server-reference-manifest.json +0 -329
  579. package/.next/server/app/workspaces/page.js +0 -21
  580. package/.next/server/app/workspaces/page.js.nft.json +0 -1
  581. package/.next/server/app/workspaces/page_client-reference-manifest.js +0 -3
  582. package/.next/server/app-paths-manifest.json +0 -41
  583. package/.next/server/chunks/03j-_@anthropic-ai_claude-agent-sdk_sdk_mjs_04597t~._.js +0 -85
  584. package/.next/server/chunks/0cve_next-internal_server_app_api_internal_cache_[___segments]_route_actions_09n1sa3.js +0 -3
  585. package/.next/server/chunks/0tp-_server_app_api_files_assets_[projectId]_[filename]_route_actions_02i2urs.js +0 -3
  586. package/.next/server/chunks/0tp-_server_app_api_internal_assets_[projectId]_[filename]_route_actions_0kjz576.js +0 -3
  587. package/.next/server/chunks/0tp-_server_app_api_internal_notifications_pending_route_actions_08bx38r.js +0 -3
  588. package/.next/server/chunks/0tp-_server_app_api_internal_terminal_[taskId]_buffer_route_actions_0bpyf5x.js +0 -3
  589. package/.next/server/chunks/0tp-_server_app_api_internal_terminal_[taskId]_input_route_actions_0alu32r.js +0 -3
  590. package/.next/server/chunks/0tp-_server_app_api_internal_terminal_[taskId]_start_route_actions_0swqog2.js +0 -3
  591. package/.next/server/chunks/0w1v_zod_v4_classic_external_0m-7hz_.js +0 -39
  592. package/.next/server/chunks/0~.g__next-internal_server_app_api_internal_assistant_chat_route_actions_0x-qbrh.js +0 -3
  593. package/.next/server/chunks/0~.g__next-internal_server_app_api_internal_assistant_images_route_actions_0vws40t.js +0 -3
  594. package/.next/server/chunks/0~.g__next-internal_server_app_api_internal_assistant_sessions_route_actions_0p09rcp.js +0 -3
  595. package/.next/server/chunks/10ge_next_dist_08.3req._.js +0 -13
  596. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_00gmiw_.js +0 -3
  597. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_0jwpolf.js +0 -3
  598. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_0liabcf.js +0 -3
  599. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_0z9_0_i.js +0 -3
  600. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_13w3ubu.js +0 -3
  601. package/.next/server/chunks/10ge_next_dist_esm_build_templates_app-route_13~vb_i.js +0 -4
  602. package/.next/server/chunks/[externals]__02xkqim._.js +0 -3
  603. package/.next/server/chunks/[externals]__09oeovy._.js +0 -3
  604. package/.next/server/chunks/[externals]__0~rg.xo._.js +0 -3
  605. package/.next/server/chunks/[externals]__11rejr-._.js +0 -3
  606. package/.next/server/chunks/[externals]_child_process_0pwkpv9._.js +0 -3
  607. package/.next/server/chunks/[externals]_next_dist_0g2nsos._.js +0 -3
  608. package/.next/server/chunks/[externals]_util_0wtvqkc._.js +0 -3
  609. package/.next/server/chunks/[root-of-the-server]__02p-gd5._.js +0 -3
  610. package/.next/server/chunks/[root-of-the-server]__0319djr._.js +0 -3
  611. package/.next/server/chunks/[root-of-the-server]__043lk8~._.js +0 -4
  612. package/.next/server/chunks/[root-of-the-server]__053y9tf._.js +0 -3
  613. package/.next/server/chunks/[root-of-the-server]__05pxb~w._.js +0 -20
  614. package/.next/server/chunks/[root-of-the-server]__07-am_7._.js +0 -20
  615. package/.next/server/chunks/[root-of-the-server]__09gjz6h._.js +0 -3
  616. package/.next/server/chunks/[root-of-the-server]__0_irb2s._.js +0 -3
  617. package/.next/server/chunks/[root-of-the-server]__0c4edwt._.js +0 -3
  618. package/.next/server/chunks/[root-of-the-server]__0c7y1r0._.js +0 -3
  619. package/.next/server/chunks/[root-of-the-server]__0dj34zn._.js +0 -3
  620. package/.next/server/chunks/[root-of-the-server]__0dqta7g._.js +0 -3
  621. package/.next/server/chunks/[root-of-the-server]__0j3gbp7._.js +0 -3
  622. package/.next/server/chunks/[root-of-the-server]__0ko_rm_._.js +0 -3
  623. package/.next/server/chunks/[root-of-the-server]__0miy2g.._.js +0 -3
  624. package/.next/server/chunks/[root-of-the-server]__0mt-eeb._.js +0 -3
  625. package/.next/server/chunks/[root-of-the-server]__0n-6-hc._.js +0 -3
  626. package/.next/server/chunks/[root-of-the-server]__0nur_ir._.js +0 -3
  627. package/.next/server/chunks/[root-of-the-server]__0pz60q-._.js +0 -20
  628. package/.next/server/chunks/[root-of-the-server]__0q~5ya5._.js +0 -3
  629. package/.next/server/chunks/[root-of-the-server]__0rpqx55._.js +0 -3
  630. package/.next/server/chunks/[root-of-the-server]__0sjsc63._.js +0 -4
  631. package/.next/server/chunks/[root-of-the-server]__0th.w7w._.js +0 -3
  632. package/.next/server/chunks/[root-of-the-server]__0u..agy._.js +0 -11
  633. package/.next/server/chunks/[root-of-the-server]__0umzekq._.js +0 -3
  634. package/.next/server/chunks/[root-of-the-server]__0wu61w.._.js +0 -3
  635. package/.next/server/chunks/[root-of-the-server]__11v.yk_._.js +0 -4
  636. package/.next/server/chunks/[root-of-the-server]__12._zd-._.js +0 -3
  637. package/.next/server/chunks/[root-of-the-server]__130shf~._.js +0 -3
  638. package/.next/server/chunks/[turbopack]_runtime.js +0 -903
  639. package/.next/server/chunks/ssr/03j-_@anthropic-ai_claude-agent-sdk_sdk_mjs_0kr2_y.._.js +0 -84
  640. package/.next/server/chunks/ssr/040e_@monaco-editor_react_dist_index_mjs_0t4i-ho._.js +0 -3
  641. package/.next/server/chunks/ssr/040e_@monaco-editor_react_dist_index_mjs_0z6t1fr._.js +0 -3
  642. package/.next/server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js +0 -3
  643. package/.next/server/chunks/ssr/0kjx__pnpm_0l.5ii.._.js +0 -3
  644. package/.next/server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js +0 -14
  645. package/.next/server/chunks/ssr/0rik_@dnd-kit_core_dist_core_esm_11giptg.js +0 -3
  646. package/.next/server/chunks/ssr/0~.g_src_app_workspaces_[workspaceId]_tasks_[taskId]_task-page-client_tsx_0bbseig._.js +0 -3
  647. package/.next/server/chunks/ssr/10ge_next_00.-vj.._.js +0 -18
  648. package/.next/server/chunks/ssr/10ge_next_dist_01n~t8z._.js +0 -6
  649. package/.next/server/chunks/ssr/10ge_next_dist_06_-w96._.js +0 -19
  650. package/.next/server/chunks/ssr/10ge_next_dist_0pw4my6._.js +0 -6
  651. package/.next/server/chunks/ssr/10ge_next_dist_0wjbiu9._.js +0 -3
  652. package/.next/server/chunks/ssr/10ge_next_dist_0~ti7jc._.js +0 -3
  653. package/.next/server/chunks/ssr/10ge_next_dist_10.ihny._.js +0 -3
  654. package/.next/server/chunks/ssr/10ge_next_dist_client_components_0--gzcy._.js +0 -3
  655. package/.next/server/chunks/ssr/10ge_next_dist_client_components_0eil7-a._.js +0 -33
  656. package/.next/server/chunks/ssr/10ge_next_dist_client_components_builtin_forbidden_0nzsnb2.js +0 -3
  657. package/.next/server/chunks/ssr/10ge_next_dist_client_components_builtin_global-error_125sopd.js +0 -3
  658. package/.next/server/chunks/ssr/10ge_next_dist_client_components_builtin_unauthorized_0z93cpe.js +0 -3
  659. package/.next/server/chunks/ssr/10ge_next_dist_compiled_0g45ze2._.js +0 -3
  660. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_080g02v.js +0 -4
  661. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_08khzah.js +0 -4
  662. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_09~o5q0.js +0 -4
  663. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0_rj_f4.js +0 -4
  664. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0c-wmj1.js +0 -4
  665. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0fjd2ua.js +0 -4
  666. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0hpuyf0.js +0 -4
  667. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0knnyic.js +0 -4
  668. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0oi86k6.js +0 -4
  669. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0rmwdra.js +0 -4
  670. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_0zgisbd.js +0 -4
  671. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_11pz1fw.js +0 -4
  672. package/.next/server/chunks/ssr/10ge_next_dist_esm_build_templates_app-page_12reczc.js +0 -4
  673. package/.next/server/chunks/ssr/119e_lucide-react_dist_esm_icons_0636jyq._.js +0 -3
  674. package/.next/server/chunks/ssr/[externals]__0of4r_r._.js +0 -3
  675. package/.next/server/chunks/ssr/[externals]__0z1ffhu._.js +0 -3
  676. package/.next/server/chunks/ssr/[externals]_child_process_0pwkpv9._.js +0 -3
  677. package/.next/server/chunks/ssr/[root-of-the-server]__0-0j_z3._.js +0 -3
  678. package/.next/server/chunks/ssr/[root-of-the-server]__0.8y0n9._.js +0 -3
  679. package/.next/server/chunks/ssr/[root-of-the-server]__0.uoh7q._.js +0 -3
  680. package/.next/server/chunks/ssr/[root-of-the-server]__01ws4-7._.js +0 -3
  681. package/.next/server/chunks/ssr/[root-of-the-server]__024-5kd._.js +0 -3
  682. package/.next/server/chunks/ssr/[root-of-the-server]__02ipahf._.js +0 -3
  683. package/.next/server/chunks/ssr/[root-of-the-server]__03.14vw._.js +0 -3
  684. package/.next/server/chunks/ssr/[root-of-the-server]__03swpls._.js +0 -3
  685. package/.next/server/chunks/ssr/[root-of-the-server]__04xn50b._.js +0 -30
  686. package/.next/server/chunks/ssr/[root-of-the-server]__05452ke._.js +0 -30
  687. package/.next/server/chunks/ssr/[root-of-the-server]__06o5v8i._.js +0 -30
  688. package/.next/server/chunks/ssr/[root-of-the-server]__06sm5cw._.js +0 -3
  689. package/.next/server/chunks/ssr/[root-of-the-server]__09m32ch._.js +0 -3
  690. package/.next/server/chunks/ssr/[root-of-the-server]__0_0kxz4._.js +0 -3
  691. package/.next/server/chunks/ssr/[root-of-the-server]__0adx8p4._.js +0 -30
  692. package/.next/server/chunks/ssr/[root-of-the-server]__0bk3s4l._.js +0 -3
  693. package/.next/server/chunks/ssr/[root-of-the-server]__0d5p5d.._.js +0 -30
  694. package/.next/server/chunks/ssr/[root-of-the-server]__0d7u1lw._.js +0 -3
  695. package/.next/server/chunks/ssr/[root-of-the-server]__0fg8.hp._.js +0 -3
  696. package/.next/server/chunks/ssr/[root-of-the-server]__0gsj3~.._.js +0 -30
  697. package/.next/server/chunks/ssr/[root-of-the-server]__0i6glcp._.js +0 -30
  698. package/.next/server/chunks/ssr/[root-of-the-server]__0ibsor_._.js +0 -3
  699. package/.next/server/chunks/ssr/[root-of-the-server]__0j5~a_o._.js +0 -3
  700. package/.next/server/chunks/ssr/[root-of-the-server]__0jgbj6l._.js +0 -3
  701. package/.next/server/chunks/ssr/[root-of-the-server]__0jux8~h._.js +0 -33
  702. package/.next/server/chunks/ssr/[root-of-the-server]__0l~dc3x._.js +0 -3
  703. package/.next/server/chunks/ssr/[root-of-the-server]__0n32nv5._.js +0 -30
  704. package/.next/server/chunks/ssr/[root-of-the-server]__0n8qufu._.js +0 -3
  705. package/.next/server/chunks/ssr/[root-of-the-server]__0ndt9h3._.js +0 -3
  706. package/.next/server/chunks/ssr/[root-of-the-server]__0p~u4y6._.js +0 -3
  707. package/.next/server/chunks/ssr/[root-of-the-server]__0q.du4s._.js +0 -3
  708. package/.next/server/chunks/ssr/[root-of-the-server]__0rs7pkn._.js +0 -3
  709. package/.next/server/chunks/ssr/[root-of-the-server]__0sysz2q._.js +0 -47
  710. package/.next/server/chunks/ssr/[root-of-the-server]__0t25~v8._.js +0 -3
  711. package/.next/server/chunks/ssr/[root-of-the-server]__0ti70do._.js +0 -3
  712. package/.next/server/chunks/ssr/[root-of-the-server]__0uevudp._.js +0 -30
  713. package/.next/server/chunks/ssr/[root-of-the-server]__0v0dk_o._.js +0 -3
  714. package/.next/server/chunks/ssr/[root-of-the-server]__0vpgotk._.js +0 -3
  715. package/.next/server/chunks/ssr/[root-of-the-server]__0wwqzmm._.js +0 -3
  716. package/.next/server/chunks/ssr/[root-of-the-server]__0xt3-qb._.js +0 -3
  717. package/.next/server/chunks/ssr/[root-of-the-server]__0y-lkvf._.js +0 -3
  718. package/.next/server/chunks/ssr/[root-of-the-server]__0zvf.ro._.js +0 -3
  719. package/.next/server/chunks/ssr/[root-of-the-server]__11m7m-q._.js +0 -3
  720. package/.next/server/chunks/ssr/[root-of-the-server]__1223b0_._.js +0 -30
  721. package/.next/server/chunks/ssr/[root-of-the-server]__12f810l._.js +0 -3
  722. package/.next/server/chunks/ssr/[root-of-the-server]__13-by9r._.js +0 -33
  723. package/.next/server/chunks/ssr/[root-of-the-server]__13-egel._.js +0 -3
  724. package/.next/server/chunks/ssr/[turbopack]_runtime.js +0 -903
  725. package/.next/server/chunks/ssr/tower_0-nwtka._.js +0 -3
  726. package/.next/server/chunks/ssr/tower_0-omr_b._.js +0 -30
  727. package/.next/server/chunks/ssr/tower_01szasw._.js +0 -3
  728. package/.next/server/chunks/ssr/tower_035l~qv._.js +0 -3
  729. package/.next/server/chunks/ssr/tower_03jazku._.js +0 -3
  730. package/.next/server/chunks/ssr/tower_0_i~57x._.js +0 -3
  731. package/.next/server/chunks/ssr/tower_0agzi_m._.js +0 -3
  732. package/.next/server/chunks/ssr/tower_0d.car1._.js +0 -30
  733. package/.next/server/chunks/ssr/tower_0egtw-7._.js +0 -30
  734. package/.next/server/chunks/ssr/tower_0h3r32m._.js +0 -30
  735. package/.next/server/chunks/ssr/tower_0kl_bfy._.js +0 -7
  736. package/.next/server/chunks/ssr/tower_0le1h0h._.js +0 -3
  737. package/.next/server/chunks/ssr/tower_0mz4ut.._.js +0 -3
  738. package/.next/server/chunks/ssr/tower_0nuj.0p._.js +0 -39
  739. package/.next/server/chunks/ssr/tower_0pcqezm._.js +0 -3
  740. package/.next/server/chunks/ssr/tower_0r7uuim._.js +0 -30
  741. package/.next/server/chunks/ssr/tower_0rdk81e._.js +0 -3
  742. package/.next/server/chunks/ssr/tower_0sojjnu._.js +0 -3
  743. package/.next/server/chunks/ssr/tower_0tc~.xl._.js +0 -30
  744. package/.next/server/chunks/ssr/tower_0tuq2iz._.js +0 -30
  745. package/.next/server/chunks/ssr/tower_0wvk~r.._.js +0 -3
  746. package/.next/server/chunks/ssr/tower_0xg_zeq._.js +0 -3
  747. package/.next/server/chunks/ssr/tower_0~oir9k._.js +0 -3
  748. package/.next/server/chunks/ssr/tower_10p15te._.js +0 -3
  749. package/.next/server/chunks/ssr/tower_10t13p4._.js +0 -6
  750. package/.next/server/chunks/ssr/tower_117pzh8._.js +0 -3
  751. package/.next/server/chunks/ssr/tower_11q5_.m._.js +0 -3
  752. package/.next/server/chunks/ssr/tower_138qlx5._.js +0 -3
  753. package/.next/server/chunks/ssr/tower__next-internal_server_app__global-error_page_actions_13t5~qk.js +0 -3
  754. package/.next/server/chunks/ssr/tower_src_0puzd-6._.js +0 -3
  755. package/.next/server/chunks/ssr/tower_src_actions_agent-actions_ts_0j.e1tn._.js +0 -4
  756. package/.next/server/chunks/ssr/tower_src_actions_file-actions_ts_0424lna._.js +0 -3
  757. package/.next/server/chunks/ssr/tower_src_app_missions_missions-client_tsx_0a9vjyr._.js +0 -3
  758. package/.next/server/chunks/ssr/tower_src_app_onboarding_page_tsx_0_3krz1._.js +0 -3
  759. package/.next/server/chunks/ssr/tower_src_app_settings_page_tsx_0vo5e-o._.js +0 -3
  760. package/.next/server/chunks/ssr/tower_src_app_workspaces_[workspaceId]_assets_assets-page-client_tsx_0zfgzhi._.js +0 -3
  761. package/.next/server/chunks/ssr/tower_src_app_workspaces_[workspaceId]_board-page-client_tsx_0kjp1u0._.js +0 -7
  762. package/.next/server/chunks/ssr/tower_src_components_ui_select_tsx_10ajx~2._.js +0 -3
  763. package/.next/server/chunks/ssr/tower_src_lib_01420_4._.js +0 -3
  764. package/.next/server/chunks/ssr/tower_src_lib_0i-zjpa._.js +0 -3
  765. package/.next/server/chunks/ssr/tower_src_lib_0ja~kdb._.js +0 -3
  766. package/.next/server/chunks/ssr/tower_src_lib_0obw2r8._.js +0 -3
  767. package/.next/server/chunks/ssr/tower_src_lib_0rgfsuf._.js +0 -3
  768. package/.next/server/chunks/ssr/tower_src_lib_constants_ts_0o218_c._.js +0 -3
  769. package/.next/server/chunks/tower_03g~ktv._.js +0 -7
  770. package/.next/server/chunks/tower_05du07.._.js +0 -10
  771. package/.next/server/chunks/tower_0a-x6m.._.js +0 -3
  772. package/.next/server/chunks/tower__next-internal_server_app_api_adapters_test_route_actions_13jw~9b.js +0 -3
  773. package/.next/server/chunks/tower__next-internal_server_app_api_browse-fs_route_actions_0k5p2xy.js +0 -3
  774. package/.next/server/chunks/tower__next-internal_server_app_api_git_route_actions_0rvpodb.js +0 -3
  775. package/.next/server/chunks/tower__next-internal_server_app_api_internal_assets_reveal_route_actions_0idwm6j.js +0 -3
  776. package/.next/server/chunks/tower__next-internal_server_app_api_internal_assistant_route_actions_0rdz1d..js +0 -3
  777. package/.next/server/chunks/tower__next-internal_server_app_api_internal_hooks_install_route_actions_06dxleu.js +0 -3
  778. package/.next/server/chunks/tower__next-internal_server_app_api_internal_hooks_session_route_actions_0wlv4lf.js +0 -3
  779. package/.next/server/chunks/tower__next-internal_server_app_api_internal_hooks_stop_route_actions_101_oub.js +0 -3
  780. package/.next/server/chunks/tower__next-internal_server_app_api_internal_hooks_upload_route_actions_0439qz_.js +0 -3
  781. package/.next/server/chunks/tower__next-internal_server_app_api_tasks_[taskId]_diff_route_actions_0nthc84.js +0 -3
  782. package/.next/server/chunks/tower__next-internal_server_app_api_tasks_[taskId]_merge_route_actions_0g.x0nb.js +0 -3
  783. package/.next/server/chunks/tower__next-internal_server_app_apple-icon_png_route_actions_0bni-sb.js +0 -3
  784. package/.next/server/chunks/tower__next-internal_server_app_favicon_ico_route_actions_0kw~xj2.js +0 -3
  785. package/.next/server/chunks/tower__next-internal_server_app_icon0_svg_route_actions_0nww9-e.js +0 -3
  786. package/.next/server/chunks/tower__next-internal_server_app_icon1_png_route_actions_09h.ywu.js +0 -3
  787. package/.next/server/chunks/tower__next-internal_server_app_manifest_json_route_actions_080ob~r.js +0 -3
  788. package/.next/server/chunks/tower_src_0..vg-t._.js +0 -3
  789. package/.next/server/chunks/tower_src_05rqj.1._.js +0 -3
  790. package/.next/server/chunks/tower_src_lib_0uok6j3._.js +0 -3
  791. package/.next/server/chunks/tower_src_lib_0w8qt4s._.js +0 -3
  792. package/.next/server/chunks/tower_src_lib_constants_ts_0cxd4.p._.js +0 -3
  793. package/.next/server/edge/chunks/0y9m_next_dist_esm_build_templates_edge-wrapper_0cx_eo..js +0 -3
  794. package/.next/server/edge/chunks/tower_0wvfs38._.js +0 -3
  795. package/.next/server/functions-config-manifest.json +0 -22
  796. package/.next/server/instrumentation/middleware-manifest.json +0 -12
  797. package/.next/server/instrumentation.js +0 -4
  798. package/.next/server/instrumentation.js.nft.json +0 -1
  799. package/.next/server/interception-route-rewrite-manifest.js +0 -1
  800. package/.next/server/middleware-build-manifest.js +0 -22
  801. package/.next/server/middleware-manifest.json +0 -6
  802. package/.next/server/next-font-manifest.js +0 -1
  803. package/.next/server/next-font-manifest.json +0 -55
  804. package/.next/server/pages/404.html +0 -1
  805. package/.next/server/pages/500.html +0 -1
  806. package/.next/server/pages-manifest.json +0 -4
  807. package/.next/server/prefetch-hints.json +0 -1
  808. package/.next/server/server-reference-manifest.js +0 -1
  809. package/.next/server/server-reference-manifest.json +0 -2778
  810. package/.next/static/chunks/0.uav~g39w7rr.js +0 -1
  811. package/.next/static/chunks/00z-g3x93ngvn.js +0 -1
  812. package/.next/static/chunks/02f8le_y~6gnd.js +0 -1
  813. package/.next/static/chunks/03e.4ymu.j5wl.js +0 -1
  814. package/.next/static/chunks/03~yq9q893hmn.js +0 -1
  815. package/.next/static/chunks/05-b9qqm3av9~.js +0 -1
  816. package/.next/static/chunks/05~v02mkan5z..js +0 -1
  817. package/.next/static/chunks/06-mw~zl.diaf.js +0 -1
  818. package/.next/static/chunks/06fsp5nfga486.js +0 -1
  819. package/.next/static/chunks/07~c.vc82_c1-.js +0 -1
  820. package/.next/static/chunks/0abtpeymj-58i.js +0 -1
  821. package/.next/static/chunks/0amhu3hs4zxxw.js +0 -1
  822. package/.next/static/chunks/0drgc-oztq6o-.css +0 -1
  823. package/.next/static/chunks/0eaa2lmymh2fx.js +0 -1
  824. package/.next/static/chunks/0j9qriqni_r1..js +0 -2
  825. package/.next/static/chunks/0k.u8sxy~e469.js +0 -4
  826. package/.next/static/chunks/0k_9.73yz~q10.js +0 -1
  827. package/.next/static/chunks/0ltsz~s~e4wzu.js +0 -1
  828. package/.next/static/chunks/0lvd52mjiit6s.js +0 -1
  829. package/.next/static/chunks/0mf7~j7tvqr46.js +0 -1
  830. package/.next/static/chunks/0mq0uqbbbb1~2.js +0 -1
  831. package/.next/static/chunks/0neevhl_o1ozu.css +0 -2
  832. package/.next/static/chunks/0omj~p3uxkic-.js +0 -1
  833. package/.next/static/chunks/0qe.8bmmwuucu.js +0 -5
  834. package/.next/static/chunks/0qpq1~6v-eql7.js +0 -1
  835. package/.next/static/chunks/0t-gr6j-c65qb.js +0 -1
  836. package/.next/static/chunks/0tcl81ybuob5i.js +0 -1
  837. package/.next/static/chunks/0uqimvsni_op~.js +0 -1
  838. package/.next/static/chunks/0uxf0jd91e-0r.js +0 -1
  839. package/.next/static/chunks/0vn2y~4w7u3ui.js +0 -83
  840. package/.next/static/chunks/0wt3kws~_yr8z.js +0 -1
  841. package/.next/static/chunks/0z2bzovqhl2f5.js +0 -1
  842. package/.next/static/chunks/0z7bwntvfhxzi.js +0 -12
  843. package/.next/static/chunks/10n23t.1hpb-1.js +0 -1
  844. package/.next/static/chunks/14xzmrt5ly6gq.js +0 -31
  845. package/.next/static/chunks/151wr~6x8aclx.js +0 -1
  846. package/.next/static/chunks/15gjy.xhhriy8.js +0 -5
  847. package/.next/static/chunks/16ft9mdv3zwse.js +0 -1
  848. package/.next/static/chunks/16w-ap~msrwpj.js +0 -1
  849. package/.next/static/chunks/17oc2l.ekcs8b.css +0 -1
  850. package/.next/static/chunks/turbopack-0wjmrsi.z32s0.js +0 -1
  851. package/.next/static/dwsGxWRLV_FPRJyEkai5s/_buildManifest.js +0 -11
  852. package/.next/static/dwsGxWRLV_FPRJyEkai5s/_clientMiddlewareManifest.js +0 -1
  853. package/.next/static/dwsGxWRLV_FPRJyEkai5s/_ssgManifest.js +0 -1
  854. package/.next/static/media/4fa387ec64143e14-s.0q3udbd2bu5yp.woff2 +0 -0
  855. package/.next/static/media/7178b3e590c64307-s.11.cyxs5p-0z~.woff2 +0 -0
  856. package/.next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2 +0 -0
  857. package/.next/static/media/8a480f0b521d4e75-s.06d3mdzz5bre_.woff2 +0 -0
  858. package/.next/static/media/apple-icon.16aocl-s-v2qz.png +0 -0
  859. package/.next/static/media/bbc41e54d2fcbd21-s.0gw~uztddq1df.woff2 +0 -0
  860. package/.next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2 +0 -0
  861. package/.next/static/media/favicon.0y2d6j9cou~8p.ico +0 -0
  862. package/.next/static/media/icon0.0a6mkq6meyird.svg +0 -1
  863. package/.next/static/media/icon1.04ux133882seb.png +0 -0
  864. package/.next/trace +0 -2
  865. package/.next/trace-build +0 -1
  866. package/.next/turbopack +0 -0
  867. package/.next/types/routes.d.ts +0 -103
  868. package/.next/types/validator.ts +0 -349
  869. /package/{.next/server/app/apple-icon.png.body → src/app/apple-icon.png} +0 -0
  870. /package/{.next/server/app/favicon.ico.body → src/app/favicon.ico} +0 -0
  871. /package/{.next/server/app/icon0.svg.body → src/app/icon0.svg} +0 -0
  872. /package/{.next/server/app/icon1.png.body → src/app/icon1.png} +0 -0
  873. /package/{.next/server/app/manifest.json.body → src/app/manifest.json} +0 -0
@@ -1,3 +0,0 @@
1
- globalThis.__RSC_MANIFEST = globalThis.__RSC_MANIFEST || {};
2
- globalThis.__RSC_MANIFEST["/_not-found/page"] = {"moduleLoading":{"prefix":"","crossOrigin":null},"clientModules":{"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js <module evaluation>":{"id":193331,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/layout-router.js":{"id":193331,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js <module evaluation>":{"id":763751,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":763751,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js <module evaluation>":{"id":203958,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-page.js":{"id":203958,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js <module evaluation>":{"id":236586,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/client-segment.js":{"id":236586,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js <module evaluation>":{"id":646162,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":646162,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js <module evaluation>":{"id":322510,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":322510,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js <module evaluation>":{"id":13413,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":13413,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/ui/tooltip.tsx <module evaluation>":{"id":814329,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/ui/tooltip.tsx":{"id":814329,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/layout/layout-client.tsx <module evaluation>":{"id":632612,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/layout/layout-client.tsx":{"id":632612,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/lib/i18n.tsx <module evaluation>":{"id":349369,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/lib/i18n.tsx":{"id":349369,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/providers/theme-provider.tsx <module evaluation>":{"id":574117,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/providers/theme-provider.tsx":{"id":574117,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/ui/sonner.tsx <module evaluation>":{"id":764878,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/src/components/ui/sonner.tsx":{"id":764878,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js <module evaluation>":{"id":498737,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false},"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error.js":{"id":498737,"name":"*","chunks":["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"async":false}},"ssrModuleMapping":{"193331":{"*":{"id":863321,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"763751":{"*":{"id":679804,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"203958":{"*":{"id":471842,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"236586":{"*":{"id":740779,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"646162":{"*":{"id":728230,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"322510":{"*":{"id":776117,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"13413":{"*":{"id":686930,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"814329":{"*":{"id":348160,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"632612":{"*":{"id":916881,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"349369":{"*":{"id":282980,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"574117":{"*":{"id":40298,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"764878":{"*":{"id":646745,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js"],"async":false}},"498737":{"*":{"id":255408,"name":"*","chunks":["server/chunks/ssr/tower_0xg_zeq._.js","server/chunks/ssr/tower_0sojjnu._.js","server/chunks/ssr/[root-of-the-server]__03swpls._.js","server/chunks/ssr/tower_0-nwtka._.js","server/chunks/ssr/tower_035l~qv._.js","server/chunks/ssr/tower_01szasw._.js","server/chunks/ssr/tower_10t13p4._.js","server/chunks/ssr/10ge_next_dist_01n~t8z._.js","server/chunks/ssr/0kjx__pnpm_0g9g8h6._.js","server/chunks/ssr/tower_03jazku._.js","server/chunks/ssr/0kjx__pnpm_0wrn.h9._.js","server/chunks/ssr/10ge_next_dist_0~ti7jc._.js","server/chunks/ssr/tower_0kl_bfy._.js","server/chunks/ssr/10ge_next_dist_client_components_0eil7-a._.js"],"async":false}}},"edgeSSRModuleMapping":{},"rscModuleMapping":{"193331":{"*":{"id":621383,"name":"*","chunks":[],"async":false}},"763751":{"*":{"id":194590,"name":"*","chunks":[],"async":false}},"203958":{"*":{"id":582699,"name":"*","chunks":[],"async":false}},"236586":{"*":{"id":556338,"name":"*","chunks":[],"async":false}},"646162":{"*":{"id":991317,"name":"*","chunks":[],"async":false}},"322510":{"*":{"id":962511,"name":"*","chunks":[],"async":false}},"13413":{"*":{"id":747326,"name":"*","chunks":[],"async":false}},"814329":{"*":{"id":455508,"name":"*","chunks":[],"async":false}},"632612":{"*":{"id":648047,"name":"*","chunks":[],"async":false}},"349369":{"*":{"id":508373,"name":"*","chunks":[],"async":false}},"574117":{"*":{"id":589401,"name":"*","chunks":[],"async":false}},"764878":{"*":{"id":145764,"name":"*","chunks":[],"async":false}},"498737":{"*":{"id":594865,"name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{},"entryCSSFiles":{"[project]/tower/src/app/layout":[{"path":"static/chunks/0neevhl_o1ozu.css","inlined":false},{"path":"static/chunks/0drgc-oztq6o-.css","inlined":false}],"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":[{"path":"static/chunks/0neevhl_o1ozu.css","inlined":false},{"path":"static/chunks/0drgc-oztq6o-.css","inlined":false}]},"entryJSFiles":{"[project]/tower/src/app/layout":["static/chunks/0uqimvsni_op~.js","static/chunks/05~v02mkan5z..js","static/chunks/0t-gr6j-c65qb.js","static/chunks/0abtpeymj-58i.js","static/chunks/0wt3kws~_yr8z.js","static/chunks/0qe.8bmmwuucu.js","static/chunks/151wr~6x8aclx.js","static/chunks/0lvd52mjiit6s.js","static/chunks/05-b9qqm3av9~.js","static/chunks/0z7bwntvfhxzi.js","static/chunks/0k_9.73yz~q10.js"],"[project]/tower/node_modules/.pnpm/next@16.2.1_@babel+core@7.29.0_@playwright+test@1.58.2_react-dom@19.2.4_react@19.2.4__react@19.2.4/node_modules/next/dist/client/components/builtin/global-error":["static/chunks/0uqimvsni_op~.js","static/chunks/05~v02mkan5z..js","static/chunks/0t-gr6j-c65qb.js","static/chunks/0abtpeymj-58i.js","static/chunks/0wt3kws~_yr8z.js","static/chunks/0qe.8bmmwuucu.js","static/chunks/151wr~6x8aclx.js","static/chunks/0lvd52mjiit6s.js","static/chunks/05-b9qqm3av9~.js","static/chunks/0z7bwntvfhxzi.js","static/chunks/0k_9.73yz~q10.js"]}};
3
-
@@ -1 +0,0 @@
1
- <!DOCTYPE html><html lang="zh-CN"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="image" href="/logo.png"/><link rel="stylesheet" href="/_next/static/chunks/0neevhl_o1ozu.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/0drgc-oztq6o-.css" data-precedence="next"/><style data-precedence="base-ui:low" data-href="base-ui-disable-scrollbar">.base-ui-disable-scrollbar{scrollbar-width:none}.base-ui-disable-scrollbar::-webkit-scrollbar{display:none}</style><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/14xzmrt5ly6gq.js"/><script src="/_next/static/chunks/0omj~p3uxkic-.js" async=""></script><script src="/_next/static/chunks/0j9qriqni_r1..js" async=""></script><script src="/_next/static/chunks/10n23t.1hpb-1.js" async=""></script><script src="/_next/static/chunks/0k.u8sxy~e469.js" async=""></script><script src="/_next/static/chunks/turbopack-0wjmrsi.z32s0.js" async=""></script><script src="/_next/static/chunks/0uqimvsni_op~.js" async=""></script><script src="/_next/static/chunks/05~v02mkan5z..js" async=""></script><script src="/_next/static/chunks/0t-gr6j-c65qb.js" async=""></script><script src="/_next/static/chunks/0abtpeymj-58i.js" async=""></script><script src="/_next/static/chunks/0wt3kws~_yr8z.js" async=""></script><script src="/_next/static/chunks/0qe.8bmmwuucu.js" async=""></script><script src="/_next/static/chunks/151wr~6x8aclx.js" async=""></script><script src="/_next/static/chunks/0lvd52mjiit6s.js" async=""></script><script src="/_next/static/chunks/05-b9qqm3av9~.js" async=""></script><script src="/_next/static/chunks/0z7bwntvfhxzi.js" async=""></script><script src="/_next/static/chunks/0k_9.73yz~q10.js" async=""></script><link rel="preload" href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&amp;family=JetBrains+Mono:wght@400;500;600&amp;display=swap" as="style"/><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>AI Task Platform - Tower</title><meta name="description" content="AI task orchestration and multi-project management platform"/><link rel="manifest" href="/manifest.json"/><link rel="icon" href="/favicon.ico?favicon.0y2d6j9cou~8p.ico" sizes="48x48" type="image/x-icon"/><link rel="icon" href="/icon0.svg?icon0.0a6mkq6meyird.svg" sizes="any" type="image/svg+xml"/><link rel="icon" href="/icon1.png?icon1.04ux133882seb.png" sizes="96x96" type="image/png"/><link rel="apple-touch-icon" href="/apple-icon.png?apple-icon.16aocl-s-v2qz.png" sizes="180x180" type="image/png"/><link rel="preconnect" href="https://fonts.googleapis.com"/><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous"/><title>404: This page could not be found.</title><link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&amp;family=JetBrains+Mono:wght@400;500;600&amp;display=swap" rel="stylesheet"/><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script></head><body class="geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased"><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","system",null,["light","dark"],null,true,true)</script><div class="flex h-screen overflow-hidden"><aside class="noise relative flex h-screen w-56 flex-col border-r border-border bg-sidebar"><div class="relative z-10 flex items-center gap-3 px-4 py-4"><img src="/logo.png" alt="Tower" class="h-9 w-9 rounded-lg"/><div class="flex-1"><div class="text-sm font-semibold tracking-tight text-foreground">Tower</div><div class="text-[10px] font-medium uppercase tracking-widest text-muted-foreground">Studio</div></div><button type="button" tabindex="0" data-slot="button" title="折叠侧边栏" class="group/button inline-flex shrink-0 items-center justify-center border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 hover:bg-accent hover:text-foreground aria-expanded:bg-accent aria-expanded:text-foreground size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-3 text-muted-foreground"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-left h-4 w-4" aria-hidden="true"><path d="m11 17-5-5 5-5"></path><path d="m18 17-5-5 5-5"></path></svg></button></div><div class="relative z-10 flex items-center justify-between px-4 py-2"><span class="text-[11px] font-semibold uppercase tracking-wider text-muted-foreground">工作空间</span><button type="button" tabindex="0" data-slot="button" data-tour="create-workspace" title="新建工作空间" class="group/button inline-flex shrink-0 items-center justify-center border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-foreground aria-expanded:bg-accent aria-expanded:text-foreground size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg text-muted-foreground"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-plus h-3.5 w-3.5" aria-hidden="true"><path d="M5 12h14"></path><path d="M12 5v14"></path></svg></button></div><div role="presentation" style="position:relative;--scroll-area-corner-height:0px;--scroll-area-corner-width:0px" data-slot="scroll-area" class="group/scroll relative z-10 mt-2 flex-1 min-h-0"><div role="presentation" data-id="base-ui-_R_1l5lb_-viewport" tabindex="-1" class="size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 base-ui-disable-scrollbar" style="overflow:scroll" data-slot="scroll-area-viewport"><div class="px-2 py-1"><div class="group relative flex items-center rounded-lg transition-all hover:bg-accent/60"><button class="flex flex-1 items-center gap-2.5 px-3 py-2.5 text-left cursor-pointer"><span class="flex h-7 w-7 items-center justify-center rounded-md bg-muted text-sm"><span class="text-xs font-semibold text-muted-foreground">M</span></span><div class="flex-1 min-w-0"><div class="truncate text-sm font-medium text-secondary-foreground">My Workspace</div><div class="text-[11px] text-muted-foreground">1h ago</div></div></button><button class="mr-2 rounded-md p-1 text-muted-foreground opacity-0 transition-all hover:bg-background hover:text-foreground group-hover:opacity-100" type="button" tabindex="0" aria-haspopup="menu" id="base-ui-_R_7b9l5lb_" data-slot="dropdown-menu-trigger"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-ellipsis h-3.5 w-3.5" aria-hidden="true"><circle cx="12" cy="12" r="1"></circle><circle cx="19" cy="12" r="1"></circle><circle cx="5" cy="12" r="1"></circle></svg></button></div></div></div></div><a class="relative z-10 flex items-center gap-2 border-t border-border px-4 py-3 text-[11px] cursor-pointer transition-colors text-muted-foreground hover:text-foreground" href="/missions"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-gauge h-3.5 w-3.5" aria-hidden="true"><path d="m12 14 4-4"></path><path d="M3.34 19a10 10 0 1 1 17.32 0"></path></svg><span>任务控制台</span></a><a class="relative z-10 flex items-center gap-2 border-t border-border px-4 py-3 text-[11px] text-muted-foreground cursor-pointer hover:text-foreground transition-colors" href="/workspaces/cmoh5i75j0004clyq5cofsslo/notes"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-file-text h-3.5 w-3.5" aria-hidden="true"><path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z"></path><path d="M14 2v5a1 1 0 0 0 1 1h5"></path><path d="M10 9H8"></path><path d="M16 13H8"></path><path d="M16 17H8"></path></svg><span>笔记</span></a><a class="relative z-10 flex items-center gap-2 px-4 py-3 text-[11px] text-muted-foreground cursor-pointer hover:text-foreground transition-colors" href="/workspaces/cmoh5i75j0004clyq5cofsslo/assets"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-3.5 w-3.5" aria-hidden="true"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg><span>资源</span></a><a class="relative z-10 flex items-center gap-2 px-4 py-3 text-[11px] text-muted-foreground cursor-pointer hover:text-foreground transition-colors" href="/workspaces/cmoh5i75j0004clyq5cofsslo/archive"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-archive h-3.5 w-3.5" aria-hidden="true"><rect width="20" height="5" x="2" y="3" rx="1"></rect><path d="M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"></path><path d="M10 12h4"></path></svg><span>归档</span></a></aside><div class="flex flex-1 flex-col overflow-hidden"><header class="flex h-12 items-center justify-between border-b border-border bg-background/80 px-5 backdrop-blur-sm"><div class="w-40"></div><div class="flex items-center gap-2"><button type="button" tabindex="0" data-slot="button" class="group/button inline-flex shrink-0 items-center rounded-lg border bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 border-border hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 h-8 w-[400px] justify-start gap-2 bg-muted/50 text-muted-foreground hover:bg-muted"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-search h-3.5 w-3.5" aria-hidden="true"><path d="m21 21-4.34-4.34"></path><circle cx="11" cy="11" r="8"></circle></svg><span class="flex-1 text-left">搜索任务、项目、仓库、笔记、资源...</span><kbd class="mr-1 flex items-center gap-0.5 rounded border border-border bg-background px-1.5 py-0.5 text-[10px] font-mono"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-command h-2.5 w-2.5" aria-hidden="true"><path d="M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"></path></svg>K</kbd></button><button data-tour="open-assistant" aria-label="助手" class="cursor-pointer rounded-lg p-2 text-muted-foreground transition-colors hover:bg-accent hover:text-foreground " id="base-ui-_R_t2p5lb_" data-slot="tooltip-trigger"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bot h-4 w-4" aria-hidden="true"><path d="M12 8V4H8"></path><rect width="16" height="12" x="4" y="8" rx="2"></rect><path d="M2 14h2"></path><path d="M20 14h2"></path><path d="M15 13v2"></path><path d="M9 13v2"></path></svg></button></div><div class="flex items-center gap-1.5"><button type="button" tabindex="0" data-slot="tooltip-trigger" id="base-ui-_R_1jip5lb_" class="group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-foreground aria-expanded:bg-accent aria-expanded:text-foreground h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 text-muted-foreground"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-globe h-3.5 w-3.5" aria-hidden="true"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"></path><path d="M2 12h20"></path></svg><span class="text-[11px] font-semibold">EN</span></button><button type="button" tabindex="0" data-slot="tooltip-trigger" id="base-ui-_R_1lip5lb_" class="group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 hover:bg-accent hover:text-foreground aria-expanded:bg-accent aria-expanded:text-foreground size-8 text-muted-foreground"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-moon h-4 w-4" aria-hidden="true"><path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"></path></svg></button><div class="h-4 w-px bg-border"></div><button type="button" tabindex="0" data-slot="button" class="group/button inline-flex shrink-0 items-center justify-center rounded-lg border bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 border-border bg-background hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50 h-8 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 gap-1.5 ring-1 ring-border hover:bg-accent"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-open h-3.5 w-3.5" aria-hidden="true"><path d="m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2"></path></svg>导入项目</button><button type="button" tabindex="0" data-slot="button" data-tour="create-project" class="group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&amp;_svg]:pointer-events-none [&amp;_svg]:shrink-0 [&amp;_svg:not([class*=&#x27;size-&#x27;])]:size-4 [a]:hover:bg-primary/80 h-8 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2 gap-1.5 bg-primary/10 text-primary ring-1 ring-primary/25 hover:bg-primary/20"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-plus h-3.5 w-3.5" aria-hidden="true"><path d="M5 12h14"></path><path d="M12 5v14"></path></svg>新建项目</button><button class="ml-0.5 flex cursor-pointer items-center gap-1.5 rounded-lg px-2.5 py-1 transition-colors hover:bg-accent" type="button" tabindex="0" aria-haspopup="menu" id="base-ui-_R_1tip5lb_" data-slot="dropdown-menu-trigger"><span class="max-w-[80px] truncate text-xs text-muted-foreground">刘俊平</span><span data-slot="avatar" data-size="default" class="group/avatar relative flex size-8 shrink-0 rounded-full select-none after:absolute after:inset-0 after:rounded-full after:border after:border-border after:mix-blend-darken data-[size=lg]:size-10 data-[size=sm]:size-6 dark:after:mix-blend-lighten h-7 w-7 ring-1 ring-border"><span data-slot="avatar-fallback" class="flex size-full items-center justify-center rounded-full group-data-[size=sm]/avatar:text-xs bg-emerald-500/20 text-emerald-400 text-[10px] font-semibold">刘</span></span></button></div></header><div class="flex flex-1 overflow-hidden"><main class="flex-1 overflow-auto bg-background"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>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)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></main></div></div></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/14xzmrt5ly6gq.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n3:I[193331,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"default\"]\n4:I[763751,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"default\"]\n5:I[322510,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n9:I[322510,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"ViewportBoundary\"]\nb:I[322510,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"MetadataBoundary\"]\nd:I[498737,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/0neevhl_o1ozu.css\",\"style\"]\n:HL[\"/_next/static/chunks/0drgc-oztq6o-.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0neevhl_o1ozu.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0drgc-oztq6o-.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0uqimvsni_op~.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/05~v02mkan5z..js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0abtpeymj-58i.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/151wr~6x8aclx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/0lvd52mjiit6s.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/05-b9qqm3av9~.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/0k_9.73yz~q10.js\",\"async\":true,\"nonce\":\"$undefined\"}]],\"$L2\"]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"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.\"}]}]]}]}]],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,null]},null,false,\"$@8\"]},null,false,null],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0neevhl_o1ozu.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0drgc-oztq6o-.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"dwsGxWRLV_FPRJyEkai5s\"}\n"])</script><script>self.__next_f.push([1,"e:[]\n8:\"$We\"\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"f:I[13413,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"IconMark\"]\n7:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"AI Task Platform - Tower\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"AI task orchestration and multi-project management platform\"}],[\"$\",\"link\",\"2\",{\"rel\":\"manifest\",\"href\":\"/manifest.json\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0y2d6j9cou~8p.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/icon0.svg?icon0.0a6mkq6meyird.svg\",\"sizes\":\"any\",\"type\":\"image/svg+xml\"}],[\"$\",\"link\",\"5\",{\"rel\":\"icon\",\"href\":\"/icon1.png?icon1.04ux133882seb.png\",\"sizes\":\"96x96\",\"type\":\"image/png\"}],[\"$\",\"link\",\"6\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?apple-icon.16aocl-s-v2qz.png\",\"sizes\":\"180x180\",\"type\":\"image/png\"}],[\"$\",\"$Lf\",\"7\",{}]]\n"])</script><script>self.__next_f.push([1,"10:I[574117,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"ThemeProvider\"]\n11:I[814329,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"TooltipProvider\"]\n12:I[349369,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"I18nProvider\"]\n13:I[632612,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"LayoutClient\"]\n14:I[764878,[\"/_next/static/chunks/0uqimvsni_op~.js\",\"/_next/static/chunks/05~v02mkan5z..js\",\"/_next/static/chunks/0t-gr6j-c65qb.js\",\"/_next/static/chunks/0abtpeymj-58i.js\",\"/_next/static/chunks/0wt3kws~_yr8z.js\",\"/_next/static/chunks/0qe.8bmmwuucu.js\",\"/_next/static/chunks/151wr~6x8aclx.js\",\"/_next/static/chunks/0lvd52mjiit6s.js\",\"/_next/static/chunks/05-b9qqm3av9~.js\",\"/_next/static/chunks/0z7bwntvfhxzi.js\",\"/_next/static/chunks/0k_9.73yz~q10.js\"],\"Toaster\"]\n:HL[\"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700\u0026family=JetBrains+Mono:wght@400;500;600\u0026display=swap\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:[\"$\",\"html\",null,{\"lang\":\"zh-CN\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.googleapis.com\"}],[\"$\",\"link\",null,{\"rel\":\"preconnect\",\"href\":\"https://fonts.gstatic.com\",\"crossOrigin\":\"anonymous\"}],[\"$\",\"link\",null,{\"href\":\"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700\u0026family=JetBrains+Mono:wght@400;500;600\u0026display=swap\",\"rel\":\"stylesheet\"}]]}],[\"$\",\"body\",null,{\"className\":\"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased\",\"children\":[\"$\",\"$L10\",null,{\"attribute\":\"class\",\"defaultTheme\":\"system\",\"enableSystem\":true,\"children\":[\"$\",\"$L11\",null,{\"children\":[\"$\",\"$L12\",null,{\"children\":[[\"$\",\"$L13\",null,{\"workspaces\":[{\"id\":\"cmoh5i75j0004clyq5cofsslo\",\"name\":\"My Workspace\",\"description\":null,\"updatedAt\":\"$D2026-04-27T12:05:58.328Z\"}],\"isFirstRun\":false,\"username\":\"刘俊平\",\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L4\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:style\",\"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\":\"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}],[\"$\",\"$L14\",null,{\"richColors\":true,\"position\":\"top-right\"}]]}]}]}]}]]}]\n"])</script></body></html>
@@ -1,16 +0,0 @@
1
- {
2
- "status": 404,
3
- "headers": {
4
- "x-nextjs-stale-time": "300",
5
- "x-nextjs-prerender": "1",
6
- "x-next-cache-tags": "_N_T_/layout,_N_T_/_not-found/layout,_N_T_/_not-found/page,_N_T_/_not-found"
7
- },
8
- "segmentPaths": [
9
- "/_tree",
10
- "/_full",
11
- "/_not-found/__PAGE__",
12
- "/_not-found",
13
- "/_index",
14
- "/_head"
15
- ]
16
- }
@@ -1,24 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 3:I[193331,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
3
- 4:I[763751,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
4
- 5:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"OutletBoundary"]
5
- 6:"$Sreact.suspense"
6
- 9:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ViewportBoundary"]
7
- b:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"MetadataBoundary"]
8
- d:I[498737,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default",1]
9
- :HL["/_next/static/chunks/0neevhl_o1ozu.css","style"]
10
- :HL["/_next/static/chunks/0drgc-oztq6o-.css","style"]
11
- 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0neevhl_o1ozu.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0drgc-oztq6o-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0uqimvsni_op~.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/05~v02mkan5z..js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0t-gr6j-c65qb.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0abtpeymj-58i.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0wt3kws~_yr8z.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/0qe.8bmmwuucu.js","async":true,"nonce":"$undefined"}],["$","script","script-6",{"src":"/_next/static/chunks/151wr~6x8aclx.js","async":true,"nonce":"$undefined"}],["$","script","script-7",{"src":"/_next/static/chunks/0lvd52mjiit6s.js","async":true,"nonce":"$undefined"}],["$","script","script-8",{"src":"/_next/static/chunks/05-b9qqm3av9~.js","async":true,"nonce":"$undefined"}],["$","script","script-9",{"src":"/_next/static/chunks/0z7bwntvfhxzi.js","async":true,"nonce":"$undefined"}],["$","script","script-10",{"src":"/_next/static/chunks/0k_9.73yz~q10.js","async":true,"nonce":"$undefined"}]],"$L2"]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","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."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0neevhl_o1ozu.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0drgc-oztq6o-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"dwsGxWRLV_FPRJyEkai5s"}
12
- e:[]
13
- 8:"$We"
14
- a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
15
- f:I[13413,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"IconMark"]
16
- 7:null
17
- c:[["$","title","0",{"children":"AI Task Platform - Tower"}],["$","meta","1",{"name":"description","content":"AI task orchestration and multi-project management platform"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","link","3",{"rel":"icon","href":"/favicon.ico?favicon.0y2d6j9cou~8p.ico","sizes":"48x48","type":"image/x-icon"}],["$","link","4",{"rel":"icon","href":"/icon0.svg?icon0.0a6mkq6meyird.svg","sizes":"any","type":"image/svg+xml"}],["$","link","5",{"rel":"icon","href":"/icon1.png?icon1.04ux133882seb.png","sizes":"96x96","type":"image/png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/apple-icon.png?apple-icon.16aocl-s-v2qz.png","sizes":"180x180","type":"image/png"}],["$","$Lf","7",{}]]
18
- 10:I[574117,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ThemeProvider"]
19
- 11:I[814329,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"TooltipProvider"]
20
- 12:I[349369,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"I18nProvider"]
21
- 13:I[632612,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"LayoutClient"]
22
- 14:I[764878,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"Toaster"]
23
- :HL["https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","style"]
24
- 2:["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"preconnect","href":"https://fonts.googleapis.com"}],["$","link",null,{"rel":"preconnect","href":"https://fonts.gstatic.com","crossOrigin":"anonymous"}],["$","link",null,{"href":"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","rel":"stylesheet"}]]}],["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L10",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"children":["$","$L11",null,{"children":["$","$L12",null,{"children":[["$","$L13",null,{"workspaces":[{"id":"cmoh5i75j0004clyq5cofsslo","name":"My Workspace","description":null,"updatedAt":"$D2026-04-27T12:05:58.328Z"}],"isFirstRun":false,"username":"刘俊平","children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:style","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":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L14",null,{"richColors":true,"position":"top-right"}]]}]}]}]}]]}]
@@ -1,24 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 3:I[193331,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
3
- 4:I[763751,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
4
- 5:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"OutletBoundary"]
5
- 6:"$Sreact.suspense"
6
- 9:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ViewportBoundary"]
7
- b:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"MetadataBoundary"]
8
- d:I[498737,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default",1]
9
- :HL["/_next/static/chunks/0neevhl_o1ozu.css","style"]
10
- :HL["/_next/static/chunks/0drgc-oztq6o-.css","style"]
11
- 0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0neevhl_o1ozu.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0drgc-oztq6o-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/0uqimvsni_op~.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/05~v02mkan5z..js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0t-gr6j-c65qb.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0abtpeymj-58i.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/0wt3kws~_yr8z.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/0qe.8bmmwuucu.js","async":true,"nonce":"$undefined"}],["$","script","script-6",{"src":"/_next/static/chunks/151wr~6x8aclx.js","async":true,"nonce":"$undefined"}],["$","script","script-7",{"src":"/_next/static/chunks/0lvd52mjiit6s.js","async":true,"nonce":"$undefined"}],["$","script","script-8",{"src":"/_next/static/chunks/05-b9qqm3av9~.js","async":true,"nonce":"$undefined"}],["$","script","script-9",{"src":"/_next/static/chunks/0z7bwntvfhxzi.js","async":true,"nonce":"$undefined"}],["$","script","script-10",{"src":"/_next/static/chunks/0k_9.73yz~q10.js","async":true,"nonce":"$undefined"}]],"$L2"]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","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."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0neevhl_o1ozu.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0drgc-oztq6o-.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"dwsGxWRLV_FPRJyEkai5s"}
12
- e:[]
13
- 8:"$We"
14
- a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
15
- f:I[13413,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"IconMark"]
16
- 7:null
17
- c:[["$","title","0",{"children":"AI Task Platform - Tower"}],["$","meta","1",{"name":"description","content":"AI task orchestration and multi-project management platform"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","link","3",{"rel":"icon","href":"/favicon.ico?favicon.0y2d6j9cou~8p.ico","sizes":"48x48","type":"image/x-icon"}],["$","link","4",{"rel":"icon","href":"/icon0.svg?icon0.0a6mkq6meyird.svg","sizes":"any","type":"image/svg+xml"}],["$","link","5",{"rel":"icon","href":"/icon1.png?icon1.04ux133882seb.png","sizes":"96x96","type":"image/png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/apple-icon.png?apple-icon.16aocl-s-v2qz.png","sizes":"180x180","type":"image/png"}],["$","$Lf","7",{}]]
18
- 10:I[574117,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ThemeProvider"]
19
- 11:I[814329,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"TooltipProvider"]
20
- 12:I[349369,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"I18nProvider"]
21
- 13:I[632612,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"LayoutClient"]
22
- 14:I[764878,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"Toaster"]
23
- :HL["https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","style"]
24
- 2:["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"preconnect","href":"https://fonts.googleapis.com"}],["$","link",null,{"rel":"preconnect","href":"https://fonts.gstatic.com","crossOrigin":"anonymous"}],["$","link",null,{"href":"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","rel":"stylesheet"}]]}],["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L10",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"children":["$","$L11",null,{"children":["$","$L12",null,{"children":[["$","$L13",null,{"workspaces":[{"id":"cmoh5i75j0004clyq5cofsslo","name":"My Workspace","description":null,"updatedAt":"$D2026-04-27T12:05:58.328Z"}],"isFirstRun":false,"username":"刘俊平","children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:style","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":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:1:children:1:children:0:props:children:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}],["$","$L14",null,{"richColors":true,"position":"top-right"}]]}]}]}]}]]}]
@@ -1,6 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 2:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ViewportBoundary"]
3
- 3:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"MetadataBoundary"]
4
- 4:"$Sreact.suspense"
5
- 5:I[13413,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"IconMark"]
6
- 0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AI Task Platform - Tower"}],["$","meta","1",{"name":"description","content":"AI task orchestration and multi-project management platform"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","link","3",{"rel":"icon","href":"/favicon.ico?favicon.0y2d6j9cou~8p.ico","sizes":"48x48","type":"image/x-icon"}],["$","link","4",{"rel":"icon","href":"/icon0.svg?icon0.0a6mkq6meyird.svg","sizes":"any","type":"image/svg+xml"}],["$","link","5",{"rel":"icon","href":"/icon1.png?icon1.04ux133882seb.png","sizes":"96x96","type":"image/png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/apple-icon.png?apple-icon.16aocl-s-v2qz.png","sizes":"180x180","type":"image/png"}],["$","$L5","7",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"dwsGxWRLV_FPRJyEkai5s"}
@@ -1,12 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 2:I[574117,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"ThemeProvider"]
3
- 3:I[814329,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"TooltipProvider"]
4
- 4:I[349369,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"I18nProvider"]
5
- 5:I[632612,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"LayoutClient"]
6
- 6:I[193331,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
7
- 7:I[763751,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
8
- 8:I[764878,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"Toaster"]
9
- :HL["/_next/static/chunks/0neevhl_o1ozu.css","style"]
10
- :HL["/_next/static/chunks/0drgc-oztq6o-.css","style"]
11
- :HL["https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","style"]
12
- 0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/0neevhl_o1ozu.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/0drgc-oztq6o-.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/0uqimvsni_op~.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/05~v02mkan5z..js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/0t-gr6j-c65qb.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0abtpeymj-58i.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/0wt3kws~_yr8z.js","async":true}],["$","script","script-5",{"src":"/_next/static/chunks/0qe.8bmmwuucu.js","async":true}],["$","script","script-6",{"src":"/_next/static/chunks/151wr~6x8aclx.js","async":true}],["$","script","script-7",{"src":"/_next/static/chunks/0lvd52mjiit6s.js","async":true}],["$","script","script-8",{"src":"/_next/static/chunks/05-b9qqm3av9~.js","async":true}],["$","script","script-9",{"src":"/_next/static/chunks/0z7bwntvfhxzi.js","async":true}],["$","script","script-10",{"src":"/_next/static/chunks/0k_9.73yz~q10.js","async":true}]],["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"children":[["$","head",null,{"children":[["$","link",null,{"rel":"preconnect","href":"https://fonts.googleapis.com"}],["$","link",null,{"rel":"preconnect","href":"https://fonts.gstatic.com","crossOrigin":"anonymous"}],["$","link",null,{"href":"https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","rel":"stylesheet"}]]}],["$","body",null,{"className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable antialiased","children":["$","$L2",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"children":["$","$L3",null,{"children":["$","$L4",null,{"children":[["$","$L5",null,{"workspaces":[{"id":"cmoh5i75j0004clyq5cofsslo","name":"My Workspace","description":null,"updatedAt":"$D2026-04-27T12:05:58.328Z"}],"isFirstRun":false,"username":"刘俊平","children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"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."}]}]]}]}]],[]]}]}],["$","$L8",null,{"richColors":true,"position":"top-right"}]]}]}]}]}]]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"dwsGxWRLV_FPRJyEkai5s"}
@@ -1,5 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 2:I[322510,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"OutletBoundary"]
3
- 3:"$Sreact.suspense"
4
- 0:{"rsc":["$","$1","c",{"children":[[["$","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."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"dwsGxWRLV_FPRJyEkai5s"}
5
- 4:null
@@ -1,5 +0,0 @@
1
- 1:"$Sreact.fragment"
2
- 2:I[193331,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
3
- 3:I[763751,["/_next/static/chunks/0uqimvsni_op~.js","/_next/static/chunks/05~v02mkan5z..js","/_next/static/chunks/0t-gr6j-c65qb.js","/_next/static/chunks/0abtpeymj-58i.js","/_next/static/chunks/0wt3kws~_yr8z.js","/_next/static/chunks/0qe.8bmmwuucu.js","/_next/static/chunks/151wr~6x8aclx.js","/_next/static/chunks/0lvd52mjiit6s.js","/_next/static/chunks/05-b9qqm3av9~.js","/_next/static/chunks/0z7bwntvfhxzi.js","/_next/static/chunks/0k_9.73yz~q10.js"],"default"]
4
- 4:[]
5
- 0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"dwsGxWRLV_FPRJyEkai5s"}
@@ -1,4 +0,0 @@
1
- :HL["/_next/static/chunks/0neevhl_o1ozu.css","style"]
2
- :HL["/_next/static/chunks/0drgc-oztq6o-.css","style"]
3
- :HL["https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=JetBrains+Mono:wght@400;500;600&display=swap","style"]
4
- 0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"dwsGxWRLV_FPRJyEkai5s"}
@@ -1,3 +0,0 @@
1
- {
2
- "/api/adapters/test/route": "app/api/adapters/test/route.js"
3
- }
@@ -1,9 +0,0 @@
1
- {
2
- "devFiles": [],
3
- "ampDevFiles": [],
4
- "polyfillFiles": [],
5
- "lowPriorityFiles": [],
6
- "rootMainFiles": [],
7
- "pages": {},
8
- "ampFirstPages": []
9
- }
@@ -1,4 +0,0 @@
1
- {
2
- "node": {},
3
- "edge": {}
4
- }
@@ -1,9 +0,0 @@
1
- var R=require("../../../../chunks/[turbopack]_runtime.js")("server/app/api/adapters/test/route.js")
2
- R.c("server/chunks/[root-of-the-server]__0rpqx55._.js")
3
- R.c("server/chunks/10ge_next_dist_esm_build_templates_app-route_0jwpolf.js")
4
- R.c("server/chunks/0w1v_zod_v4_classic_external_0m-7hz_.js")
5
- R.c("server/chunks/[root-of-the-server]__0miy2g.._.js")
6
- R.c("server/chunks/10ge_next_dist_08.3req._.js")
7
- R.c("server/chunks/tower__next-internal_server_app_api_adapters_test_route_actions_13jw~9b.js")
8
- R.m(285161)
9
- module.exports=R.m(285161).exports