tmux-ide 2.1.4 → 2.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (805) hide show
  1. package/README.md +115 -101
  2. package/bin/cli.js +13678 -4
  3. package/bin/cli.ts +1143 -260
  4. package/package.json +27 -17
  5. package/packages/daemon/dist/__tests__/support.d.ts +7 -0
  6. package/packages/daemon/dist/__tests__/support.js +33 -0
  7. package/packages/daemon/dist/agent-explain.d.ts +45 -0
  8. package/packages/daemon/dist/agent-explain.js +210 -0
  9. package/packages/daemon/dist/attach.d.ts +3 -0
  10. package/packages/daemon/dist/attach.js +14 -0
  11. package/packages/daemon/dist/bin.d.ts +2 -0
  12. package/packages/daemon/dist/bin.js +3 -0
  13. package/packages/daemon/dist/canonical.d.ts +2 -0
  14. package/packages/daemon/dist/canonical.js +1 -0
  15. package/packages/daemon/dist/cli.d.ts +1 -0
  16. package/packages/daemon/dist/cli.js +425 -0
  17. package/packages/daemon/dist/command-center/actions/contract.d.ts +1 -0
  18. package/packages/daemon/dist/command-center/actions/contract.js +2 -0
  19. package/packages/daemon/dist/command-center/actions/dispatcher.d.ts +27 -0
  20. package/packages/daemon/dist/command-center/actions/dispatcher.js +109 -0
  21. package/packages/daemon/dist/command-center/actions/errors.d.ts +38 -0
  22. package/packages/daemon/dist/command-center/actions/errors.js +56 -0
  23. package/packages/daemon/dist/command-center/actions/handlers/_project-context.d.ts +12 -0
  24. package/packages/daemon/dist/command-center/actions/handlers/_project-context.js +12 -0
  25. package/packages/daemon/dist/command-center/actions/handlers/_resolve-project.d.ts +42 -0
  26. package/packages/daemon/dist/command-center/actions/handlers/_resolve-project.js +48 -0
  27. package/packages/daemon/dist/command-center/actions/handlers/app-set-remote-access.d.ts +23 -0
  28. package/packages/daemon/dist/command-center/actions/handlers/app-set-remote-access.js +67 -0
  29. package/packages/daemon/dist/command-center/actions/handlers/config-actions.d.ts +12 -0
  30. package/packages/daemon/dist/command-center/actions/handlers/config-actions.js +69 -0
  31. package/packages/daemon/dist/command-center/actions/handlers/daemon-shutdown.d.ts +6 -0
  32. package/packages/daemon/dist/command-center/actions/handlers/daemon-shutdown.js +24 -0
  33. package/packages/daemon/dist/command-center/actions/handlers/project-activate.d.ts +7 -0
  34. package/packages/daemon/dist/command-center/actions/handlers/project-activate.js +19 -0
  35. package/packages/daemon/dist/command-center/actions/handlers/project-launch.d.ts +18 -0
  36. package/packages/daemon/dist/command-center/actions/handlers/project-launch.js +58 -0
  37. package/packages/daemon/dist/command-center/actions/handlers/project-open-terminal.d.ts +32 -0
  38. package/packages/daemon/dist/command-center/actions/handlers/project-open-terminal.js +69 -0
  39. package/packages/daemon/dist/command-center/actions/handlers/project-restart.d.ts +17 -0
  40. package/packages/daemon/dist/command-center/actions/handlers/project-restart.js +27 -0
  41. package/packages/daemon/dist/command-center/actions/handlers/project-stop.d.ts +24 -0
  42. package/packages/daemon/dist/command-center/actions/handlers/project-stop.js +38 -0
  43. package/packages/daemon/dist/command-center/actions/handlers/terminal-respawn.d.ts +24 -0
  44. package/packages/daemon/dist/command-center/actions/handlers/terminal-respawn.js +88 -0
  45. package/packages/daemon/dist/command-center/actions/handlers/terminal-stop.d.ts +14 -0
  46. package/packages/daemon/dist/command-center/actions/handlers/terminal-stop.js +22 -0
  47. package/packages/daemon/dist/command-center/actions/registry.d.ts +35 -0
  48. package/packages/daemon/dist/command-center/actions/registry.js +109 -0
  49. package/packages/daemon/dist/command-center/discovery.d.ts +23 -0
  50. package/packages/daemon/dist/command-center/discovery.js +67 -0
  51. package/packages/daemon/dist/command-center/index.d.ts +10 -0
  52. package/packages/daemon/dist/command-center/index.js +21 -0
  53. package/packages/daemon/dist/command-center/schemas.d.ts +76 -0
  54. package/packages/daemon/dist/command-center/schemas.js +68 -0
  55. package/packages/daemon/dist/command-center/server.d.ts +26 -0
  56. package/packages/daemon/dist/command-center/server.js +1103 -0
  57. package/packages/daemon/dist/command-center/ws-events.d.ts +59 -0
  58. package/packages/daemon/dist/command-center/ws-events.js +277 -0
  59. package/packages/daemon/dist/config.d.ts +19 -0
  60. package/packages/daemon/dist/config.js +494 -0
  61. package/packages/daemon/dist/detect.d.ts +15 -0
  62. package/packages/daemon/dist/detect.js +228 -0
  63. package/packages/daemon/dist/doctor.d.ts +21 -0
  64. package/packages/daemon/dist/doctor.js +154 -0
  65. package/packages/daemon/dist/embed.d.ts +1 -0
  66. package/packages/daemon/dist/embed.js +1 -0
  67. package/packages/daemon/dist/index.d.ts +3 -0
  68. package/packages/daemon/dist/index.js +2 -0
  69. package/packages/daemon/dist/init.d.ts +4 -0
  70. package/packages/daemon/dist/init.js +174 -0
  71. package/packages/daemon/dist/inspect.d.ts +54 -0
  72. package/packages/daemon/dist/inspect.js +118 -0
  73. package/packages/daemon/dist/launch.d.ts +23 -0
  74. package/packages/daemon/dist/launch.js +250 -0
  75. package/packages/daemon/dist/lib/active-projects.d.ts +12 -0
  76. package/packages/daemon/dist/lib/active-projects.js +35 -0
  77. package/packages/daemon/dist/lib/agent-discovery.d.ts +43 -0
  78. package/packages/daemon/dist/lib/agent-discovery.js +85 -0
  79. package/packages/daemon/dist/lib/app-config.d.ts +147 -0
  80. package/packages/daemon/dist/lib/app-config.js +191 -0
  81. package/packages/daemon/dist/lib/app-settings.d.ts +9 -0
  82. package/packages/daemon/dist/lib/app-settings.js +44 -0
  83. package/packages/daemon/dist/lib/auth/auth-service.d.ts +33 -0
  84. package/packages/daemon/dist/lib/auth/auth-service.js +172 -0
  85. package/packages/daemon/dist/lib/auth/middleware.d.ts +16 -0
  86. package/packages/daemon/dist/lib/auth/middleware.js +43 -0
  87. package/packages/daemon/dist/lib/auth/types.d.ts +1 -0
  88. package/packages/daemon/dist/lib/auth/types.js +2 -0
  89. package/packages/daemon/dist/lib/auth-token.d.ts +1 -0
  90. package/packages/daemon/dist/lib/auth-token.js +4 -0
  91. package/packages/daemon/dist/lib/authorship.d.ts +62 -0
  92. package/packages/daemon/dist/lib/authorship.js +209 -0
  93. package/packages/daemon/dist/lib/canonical-daemon.d.ts +21 -0
  94. package/packages/daemon/dist/lib/canonical-daemon.js +111 -0
  95. package/packages/daemon/dist/lib/cli-action-bridge.d.ts +27 -0
  96. package/packages/daemon/dist/lib/cli-action-bridge.js +161 -0
  97. package/packages/daemon/dist/lib/daemon-embed.d.ts +31 -0
  98. package/packages/daemon/dist/lib/daemon-embed.js +643 -0
  99. package/packages/daemon/dist/lib/daemon-watchdog.d.ts +16 -0
  100. package/packages/daemon/dist/lib/daemon-watchdog.js +98 -0
  101. package/packages/daemon/dist/lib/daemon.d.ts +8 -0
  102. package/packages/daemon/dist/lib/daemon.js +79 -0
  103. package/packages/daemon/dist/lib/dot-path.d.ts +2 -0
  104. package/packages/daemon/dist/lib/dot-path.js +17 -0
  105. package/packages/daemon/dist/lib/errors.d.ts +37 -0
  106. package/packages/daemon/dist/lib/errors.js +50 -0
  107. package/packages/daemon/dist/lib/filesystem-browser.d.ts +85 -0
  108. package/packages/daemon/dist/lib/filesystem-browser.js +257 -0
  109. package/packages/daemon/dist/lib/launch-plan.d.ts +6 -0
  110. package/packages/daemon/dist/lib/launch-plan.js +76 -0
  111. package/packages/daemon/dist/lib/log.d.ts +40 -0
  112. package/packages/daemon/dist/lib/log.js +86 -0
  113. package/packages/daemon/dist/lib/output.d.ts +9 -0
  114. package/packages/daemon/dist/lib/output.js +65 -0
  115. package/packages/daemon/dist/lib/project-init-runner.d.ts +46 -0
  116. package/packages/daemon/dist/lib/project-init-runner.js +117 -0
  117. package/packages/daemon/dist/lib/project-inspect.d.ts +28 -0
  118. package/packages/daemon/dist/lib/project-inspect.js +67 -0
  119. package/packages/daemon/dist/lib/project-onboard.d.ts +58 -0
  120. package/packages/daemon/dist/lib/project-onboard.js +108 -0
  121. package/packages/daemon/dist/lib/project-probe.d.ts +35 -0
  122. package/packages/daemon/dist/lib/project-probe.js +61 -0
  123. package/packages/daemon/dist/lib/project-registry.d.ts +76 -0
  124. package/packages/daemon/dist/lib/project-registry.js +230 -0
  125. package/packages/daemon/dist/lib/session-monitor.d.ts +15 -0
  126. package/packages/daemon/dist/lib/session-monitor.js +103 -0
  127. package/packages/daemon/dist/lib/session-options.d.ts +13 -0
  128. package/packages/daemon/dist/lib/session-options.js +85 -0
  129. package/packages/daemon/dist/lib/shell.d.ts +5 -0
  130. package/{src/lib/shell.ts → packages/daemon/dist/lib/shell.js} +3 -3
  131. package/packages/daemon/dist/lib/sizes.d.ts +16 -0
  132. package/packages/daemon/dist/lib/sizes.js +36 -0
  133. package/packages/daemon/dist/lib/skill-sync.d.ts +60 -0
  134. package/packages/daemon/dist/lib/skill-sync.js +128 -0
  135. package/packages/daemon/dist/lib/slugify.d.ts +4 -0
  136. package/packages/daemon/dist/lib/slugify.js +10 -0
  137. package/packages/daemon/dist/lib/terminals-store.d.ts +27 -0
  138. package/packages/daemon/dist/lib/terminals-store.js +111 -0
  139. package/packages/daemon/dist/lib/update-check.d.ts +118 -0
  140. package/packages/daemon/dist/lib/update-check.js +261 -0
  141. package/packages/daemon/dist/lib/update.d.ts +65 -0
  142. package/packages/daemon/dist/lib/update.js +141 -0
  143. package/packages/daemon/dist/lib/workspace-registry.d.ts +84 -0
  144. package/packages/daemon/dist/lib/workspace-registry.js +176 -0
  145. package/packages/daemon/dist/lib/worktree.d.ts +76 -0
  146. package/packages/daemon/dist/lib/worktree.js +207 -0
  147. package/packages/daemon/dist/lib/yaml-io.d.ts +10 -0
  148. package/packages/daemon/dist/lib/yaml-io.js +24 -0
  149. package/packages/daemon/dist/ls.d.ts +3 -0
  150. package/packages/daemon/dist/ls.js +35 -0
  151. package/packages/daemon/dist/restart.d.ts +4 -0
  152. package/packages/daemon/dist/restart.js +16 -0
  153. package/packages/daemon/dist/restore.d.ts +86 -0
  154. package/packages/daemon/dist/restore.js +406 -0
  155. package/packages/daemon/dist/schemas/domain.d.ts +1 -0
  156. package/packages/daemon/dist/schemas/domain.js +2 -0
  157. package/packages/daemon/dist/schemas/filesystem.d.ts +29 -0
  158. package/packages/daemon/dist/schemas/filesystem.js +29 -0
  159. package/packages/daemon/dist/schemas/ide-config.d.ts +1 -0
  160. package/packages/daemon/dist/schemas/ide-config.js +2 -0
  161. package/packages/daemon/dist/schemas/index.d.ts +12 -0
  162. package/packages/daemon/dist/schemas/index.js +6 -0
  163. package/packages/daemon/dist/schemas/inspect.d.ts +53 -0
  164. package/packages/daemon/dist/schemas/inspect.js +57 -0
  165. package/packages/daemon/dist/schemas/registry.d.ts +35 -0
  166. package/packages/daemon/dist/schemas/registry.js +43 -0
  167. package/packages/daemon/dist/schemas/ws-events.d.ts +72 -0
  168. package/packages/daemon/dist/schemas/ws-events.js +110 -0
  169. package/packages/daemon/dist/send.d.ts +27 -0
  170. package/packages/daemon/dist/send.js +141 -0
  171. package/packages/daemon/dist/server/index.d.ts +10 -0
  172. package/packages/daemon/dist/server/index.js +55 -0
  173. package/packages/daemon/dist/server/pty-bridge.d.ts +174 -0
  174. package/packages/daemon/dist/server/pty-bridge.js +422 -0
  175. package/packages/daemon/dist/server/standalone.d.ts +1 -0
  176. package/packages/daemon/dist/server/standalone.js +14 -0
  177. package/packages/daemon/dist/server/ws-route.d.ts +74 -0
  178. package/packages/daemon/dist/server/ws-route.js +379 -0
  179. package/packages/daemon/dist/status.d.ts +3 -0
  180. package/packages/daemon/dist/status.js +46 -0
  181. package/packages/daemon/dist/stop.d.ts +3 -0
  182. package/packages/daemon/dist/stop.js +21 -0
  183. package/packages/daemon/dist/terminal/NodePtyAdapter.d.ts +44 -0
  184. package/packages/daemon/dist/terminal/NodePtyAdapter.js +253 -0
  185. package/packages/daemon/dist/terminal/PtyAdapter.d.ts +124 -0
  186. package/packages/daemon/dist/terminal/PtyAdapter.js +43 -0
  187. package/packages/daemon/dist/terminal/__tests__/MockPtyAdapter.d.ts +77 -0
  188. package/packages/daemon/dist/terminal/__tests__/MockPtyAdapter.js +155 -0
  189. package/packages/daemon/dist/types.d.ts +2 -0
  190. package/packages/daemon/dist/types.js +1 -0
  191. package/packages/daemon/dist/validate.d.ts +4 -0
  192. package/packages/daemon/dist/validate.js +184 -0
  193. package/packages/daemon/dist/widgets/changes/index.d.ts +1 -0
  194. package/packages/daemon/dist/widgets/changes/index.jsx +575 -0
  195. package/packages/daemon/dist/widgets/config/index.d.ts +1 -0
  196. package/packages/daemon/dist/widgets/config/index.jsx +395 -0
  197. package/packages/daemon/dist/widgets/explorer/breadcrumbs.d.ts +10 -0
  198. package/packages/daemon/dist/widgets/explorer/breadcrumbs.jsx +51 -0
  199. package/packages/daemon/dist/widgets/explorer/footer.d.ts +6 -0
  200. package/packages/daemon/dist/widgets/explorer/footer.jsx +11 -0
  201. package/packages/daemon/dist/widgets/explorer/index.d.ts +1 -0
  202. package/packages/daemon/dist/widgets/explorer/index.jsx +393 -0
  203. package/packages/daemon/dist/widgets/explorer/tree-model.d.ts +13 -0
  204. package/packages/daemon/dist/widgets/explorer/tree-model.js +69 -0
  205. package/packages/daemon/dist/widgets/explorer/tree.d.ts +13 -0
  206. package/packages/daemon/dist/widgets/explorer/tree.jsx +108 -0
  207. package/packages/daemon/dist/widgets/lib/config-model.d.ts +22 -0
  208. package/packages/daemon/dist/widgets/lib/config-model.js +99 -0
  209. package/packages/daemon/dist/widgets/lib/files.d.ts +11 -0
  210. package/packages/daemon/dist/widgets/lib/files.js +76 -0
  211. package/packages/daemon/dist/widgets/lib/git.d.ts +11 -0
  212. package/packages/daemon/dist/widgets/lib/git.js +70 -0
  213. package/packages/daemon/dist/widgets/lib/grammar.d.ts +79 -0
  214. package/packages/daemon/dist/widgets/lib/grammar.js +95 -0
  215. package/packages/daemon/dist/widgets/lib/help-overlay.d.ts +19 -0
  216. package/packages/daemon/dist/widgets/lib/help-overlay.jsx +69 -0
  217. package/packages/daemon/dist/widgets/lib/pane-comms.d.ts +28 -0
  218. package/packages/daemon/dist/widgets/lib/pane-comms.js +189 -0
  219. package/packages/daemon/dist/widgets/lib/theme.d.ts +44 -0
  220. package/packages/daemon/dist/widgets/lib/theme.js +153 -0
  221. package/packages/daemon/dist/widgets/lib/watcher.d.ts +9 -0
  222. package/packages/daemon/dist/widgets/lib/watcher.js +92 -0
  223. package/packages/daemon/dist/widgets/preview/index.d.ts +1 -0
  224. package/packages/daemon/dist/widgets/preview/index.jsx +371 -0
  225. package/packages/daemon/dist/widgets/resolve.d.ts +20 -0
  226. package/packages/daemon/dist/widgets/resolve.js +100 -0
  227. package/packages/daemon/dist/widgets/setup/agent-naming.d.ts +9 -0
  228. package/packages/daemon/dist/widgets/setup/agent-naming.jsx +81 -0
  229. package/packages/daemon/dist/widgets/setup/config-tree.d.ts +13 -0
  230. package/packages/daemon/dist/widgets/setup/config-tree.jsx +203 -0
  231. package/packages/daemon/dist/widgets/setup/detect-panel.d.ts +14 -0
  232. package/{src/widgets/setup/detect-panel.tsx → packages/daemon/dist/widgets/setup/detect-panel.jsx} +16 -40
  233. package/packages/daemon/dist/widgets/setup/field-editor.d.ts +12 -0
  234. package/packages/daemon/dist/widgets/setup/field-editor.jsx +163 -0
  235. package/packages/daemon/dist/widgets/setup/footer.d.ts +17 -0
  236. package/packages/daemon/dist/widgets/setup/footer.jsx +64 -0
  237. package/packages/daemon/dist/widgets/setup/index.d.ts +1 -0
  238. package/packages/daemon/dist/widgets/setup/index.jsx +261 -0
  239. package/packages/daemon/dist/widgets/setup/layout-picker.d.ts +9 -0
  240. package/packages/daemon/dist/widgets/setup/layout-picker.jsx +69 -0
  241. package/packages/daemon/dist/widgets/setup/setup-model.d.ts +15 -0
  242. package/packages/daemon/dist/widgets/setup/setup-model.js +157 -0
  243. package/packages/daemon/dist/widgets/sidebar/index.d.ts +1 -0
  244. package/packages/daemon/dist/widgets/sidebar/index.jsx +462 -0
  245. package/scripts/build-cli.mjs +101 -0
  246. package/scripts/build-tui.mjs +58 -0
  247. package/scripts/capture-codex-traffic.mjs +195 -0
  248. package/scripts/check-src-additions.sh +74 -0
  249. package/scripts/coverage-summary.mjs +68 -0
  250. package/scripts/install-git-hooks.js +53 -0
  251. package/scripts/merge-update-manifests.mjs +58 -0
  252. package/scripts/merge-update-manifests.test.mjs +82 -0
  253. package/scripts/pack-check-run.mjs +83 -0
  254. package/scripts/postinstall.js +28 -6
  255. package/scripts/prepublish-check.mjs +44 -0
  256. package/scripts/stress-test.ts +141 -0
  257. package/scripts/verify-endpoints.sh +90 -0
  258. package/skill/SKILL.md +203 -236
  259. package/dashboard/out/404/index.html +0 -1
  260. package/dashboard/out/404.html +0 -1
  261. package/dashboard/out/__next.__PAGE__.txt +0 -9
  262. package/dashboard/out/__next._full.txt +0 -21
  263. package/dashboard/out/__next._head.txt +0 -5
  264. package/dashboard/out/__next._index.txt +0 -7
  265. package/dashboard/out/__next._tree.txt +0 -4
  266. package/dashboard/out/_next/static/Tl1KoIH7mHCyjo5KtXqQ0/_buildManifest.js +0 -11
  267. package/dashboard/out/_next/static/Tl1KoIH7mHCyjo5KtXqQ0/_clientMiddlewareManifest.json +0 -1
  268. package/dashboard/out/_next/static/Tl1KoIH7mHCyjo5KtXqQ0/_ssgManifest.js +0 -1
  269. package/dashboard/out/_next/static/chunks/048e2449530877e2.js +0 -1
  270. package/dashboard/out/_next/static/chunks/053c57bda6abb959.js +0 -1
  271. package/dashboard/out/_next/static/chunks/056760c6c2dd9172.js +0 -1
  272. package/dashboard/out/_next/static/chunks/06ab47357b6d3e35.js +0 -1
  273. package/dashboard/out/_next/static/chunks/0921cbe5dfd6738e.js +0 -1
  274. package/dashboard/out/_next/static/chunks/0b2599bf468cf5ea.js +0 -1
  275. package/dashboard/out/_next/static/chunks/0c012eac08ef2c4f.js +0 -1
  276. package/dashboard/out/_next/static/chunks/0c29e87fcdcffac3.js +0 -1
  277. package/dashboard/out/_next/static/chunks/0e1e98854430c693.js +0 -1
  278. package/dashboard/out/_next/static/chunks/0e24498976a88976.js +0 -1
  279. package/dashboard/out/_next/static/chunks/0e5bf11ff0b9ab90.js +0 -1
  280. package/dashboard/out/_next/static/chunks/0eae0a45ab8416c8.js +0 -1
  281. package/dashboard/out/_next/static/chunks/104797400d9d38ad.js +0 -1
  282. package/dashboard/out/_next/static/chunks/10cfcfce475f9d2d.js +0 -1
  283. package/dashboard/out/_next/static/chunks/11bac38e7cfb4ecc.js +0 -1
  284. package/dashboard/out/_next/static/chunks/120c5f6501ec3529.js +0 -1
  285. package/dashboard/out/_next/static/chunks/121fceb2b1dcd79f.js +0 -1
  286. package/dashboard/out/_next/static/chunks/13726b63e1be6b98.js +0 -1
  287. package/dashboard/out/_next/static/chunks/140c6ce631514660.js +0 -1
  288. package/dashboard/out/_next/static/chunks/1435ee3a51174c97.js +0 -1
  289. package/dashboard/out/_next/static/chunks/14dc927d2e2cca91.js +0 -1
  290. package/dashboard/out/_next/static/chunks/179c3031b292d98e.js +0 -1
  291. package/dashboard/out/_next/static/chunks/181e88957c47e5c1.js +0 -1
  292. package/dashboard/out/_next/static/chunks/18f70ba23873c432.js +0 -1
  293. package/dashboard/out/_next/static/chunks/1b58303b027fd135.js +0 -1
  294. package/dashboard/out/_next/static/chunks/1b5f49a358dcc71e.js +0 -1
  295. package/dashboard/out/_next/static/chunks/1bba44b81585099a.js +0 -1
  296. package/dashboard/out/_next/static/chunks/1bea8dee19a3e9ae.js +0 -1
  297. package/dashboard/out/_next/static/chunks/1cfad21646fc250e.js +0 -1
  298. package/dashboard/out/_next/static/chunks/1d053dc9e1e428ef.js +0 -1
  299. package/dashboard/out/_next/static/chunks/1e7d7639c6f0ee5e.js +0 -1
  300. package/dashboard/out/_next/static/chunks/1f42504ca81463f1.js +0 -1
  301. package/dashboard/out/_next/static/chunks/20c92047399305b4.js +0 -1
  302. package/dashboard/out/_next/static/chunks/214560e9514a9a4d.js +0 -1
  303. package/dashboard/out/_next/static/chunks/21d4ef106914e997.js +0 -1
  304. package/dashboard/out/_next/static/chunks/2586e83fc3dc2588.js +0 -1
  305. package/dashboard/out/_next/static/chunks/267136a09e94f5c2.js +0 -1
  306. package/dashboard/out/_next/static/chunks/271c50b329917c10.js +0 -1
  307. package/dashboard/out/_next/static/chunks/27fccecefffd88b5.js +0 -1
  308. package/dashboard/out/_next/static/chunks/28f058ed331315b6.js +0 -1
  309. package/dashboard/out/_next/static/chunks/28f704f2cc5713eb.js +0 -1
  310. package/dashboard/out/_next/static/chunks/290f67a6cd150a98.js +0 -1
  311. package/dashboard/out/_next/static/chunks/2ad12f4dcc30d30a.js +0 -1
  312. package/dashboard/out/_next/static/chunks/2b650b172078ab92.js +0 -1
  313. package/dashboard/out/_next/static/chunks/2bd91076019a6453.js +0 -1
  314. package/dashboard/out/_next/static/chunks/2e1278563a8e26be.js +0 -1
  315. package/dashboard/out/_next/static/chunks/309eb70780a3d67d.js +0 -1
  316. package/dashboard/out/_next/static/chunks/30f71950992e2307.js +0 -1
  317. package/dashboard/out/_next/static/chunks/31191873c2075784.js +0 -1
  318. package/dashboard/out/_next/static/chunks/31a790921a0c035e.js +0 -1
  319. package/dashboard/out/_next/static/chunks/34f8d7a5a06e8e32.js +0 -1
  320. package/dashboard/out/_next/static/chunks/36b3716436d9bc9d.js +0 -1
  321. package/dashboard/out/_next/static/chunks/3770b7d0ff004de3.js +0 -1
  322. package/dashboard/out/_next/static/chunks/381ab3bd4cffbf4d.js +0 -1
  323. package/dashboard/out/_next/static/chunks/38aa4eada5dcd1a4.js +0 -1
  324. package/dashboard/out/_next/static/chunks/39723132b78cb77e.js +0 -1
  325. package/dashboard/out/_next/static/chunks/399efdcc3fe56e09.js +0 -1
  326. package/dashboard/out/_next/static/chunks/3a8431a9221b0706.js +0 -1
  327. package/dashboard/out/_next/static/chunks/3a9b40810ce88cbf.js +0 -1
  328. package/dashboard/out/_next/static/chunks/3b322e3e9476ecdf.js +0 -1
  329. package/dashboard/out/_next/static/chunks/3bb14befeeb08c28.js +0 -1
  330. package/dashboard/out/_next/static/chunks/3c99637ebd462b20.js +0 -1
  331. package/dashboard/out/_next/static/chunks/3cbb9217d56459d8.js +0 -1
  332. package/dashboard/out/_next/static/chunks/3d438e0929a762f7.js +0 -1
  333. package/dashboard/out/_next/static/chunks/3e6d4834e0752f76.js +0 -2
  334. package/dashboard/out/_next/static/chunks/3e6f8cedaad4e89b.js +0 -1
  335. package/dashboard/out/_next/static/chunks/3e701259ce1b53e3.js +0 -1
  336. package/dashboard/out/_next/static/chunks/41562f7ab7c033eb.js +0 -1
  337. package/dashboard/out/_next/static/chunks/418fadd8a94e2fd7.js +0 -1
  338. package/dashboard/out/_next/static/chunks/42345437bb922e9c.js +0 -1
  339. package/dashboard/out/_next/static/chunks/434b6bd78c97b668.js +0 -1
  340. package/dashboard/out/_next/static/chunks/434febe897d33e2d.js +0 -1
  341. package/dashboard/out/_next/static/chunks/45d28707dd8ce1c1.js +0 -1
  342. package/dashboard/out/_next/static/chunks/4620a640e88cb1b7.js +0 -1
  343. package/dashboard/out/_next/static/chunks/468f8eb604502ea4.js +0 -1
  344. package/dashboard/out/_next/static/chunks/495f5cedf8afe823.js +0 -1
  345. package/dashboard/out/_next/static/chunks/49a89d1704d27740.js +0 -1
  346. package/dashboard/out/_next/static/chunks/49e5c37d15f63def.js +0 -1
  347. package/dashboard/out/_next/static/chunks/4a46ad186a8587ee.css +0 -2
  348. package/dashboard/out/_next/static/chunks/4a5c728574935d50.js +0 -1
  349. package/dashboard/out/_next/static/chunks/4b27ebd4d9304d8f.js +0 -1
  350. package/dashboard/out/_next/static/chunks/4b965aa320a9b358.js +0 -1
  351. package/dashboard/out/_next/static/chunks/4bb2da90bbe5794f.js +0 -1
  352. package/dashboard/out/_next/static/chunks/4d2f1c6f631e4b85.js +0 -1
  353. package/dashboard/out/_next/static/chunks/4d696d5a64dab42e.js +0 -1
  354. package/dashboard/out/_next/static/chunks/4f660dadb3f1e9e2.js +0 -1
  355. package/dashboard/out/_next/static/chunks/507b50d47f949333.js +0 -1
  356. package/dashboard/out/_next/static/chunks/50b1b7063bb044e2.js +0 -1
  357. package/dashboard/out/_next/static/chunks/50c0c2e3c4f02508.js +0 -1
  358. package/dashboard/out/_next/static/chunks/50d7ba9803e65b02.js +0 -1
  359. package/dashboard/out/_next/static/chunks/51535a6d4c98c7a4.js +0 -1
  360. package/dashboard/out/_next/static/chunks/526de6cc16c7dd2f.js +0 -1
  361. package/dashboard/out/_next/static/chunks/5307604f8632b3fd.js +0 -1
  362. package/dashboard/out/_next/static/chunks/5480bd722260f231.js +0 -1
  363. package/dashboard/out/_next/static/chunks/54c61c82e5f1dca5.js +0 -1
  364. package/dashboard/out/_next/static/chunks/555de6ac6bb9034c.js +0 -1
  365. package/dashboard/out/_next/static/chunks/562b89ee76a4b90c.js +0 -1
  366. package/dashboard/out/_next/static/chunks/5747f9a32edff429.js +0 -1
  367. package/dashboard/out/_next/static/chunks/57ee141430b4c05c.js +0 -1
  368. package/dashboard/out/_next/static/chunks/584c066a0837dd9a.js +0 -1
  369. package/dashboard/out/_next/static/chunks/5856aed4670a6253.js +0 -1
  370. package/dashboard/out/_next/static/chunks/58fe563414726511.js +0 -1
  371. package/dashboard/out/_next/static/chunks/5948196b2729b18c.js +0 -1
  372. package/dashboard/out/_next/static/chunks/5ab77c69e7306f97.js +0 -1
  373. package/dashboard/out/_next/static/chunks/5b3fa4c99d61611c.js +0 -1
  374. package/dashboard/out/_next/static/chunks/5cc87abaef616661.js +0 -1
  375. package/dashboard/out/_next/static/chunks/5dfa7913f99bb966.js +0 -1
  376. package/dashboard/out/_next/static/chunks/5e49b008432770f1.js +0 -1
  377. package/dashboard/out/_next/static/chunks/5e5a33dd81c45c47.js +0 -1
  378. package/dashboard/out/_next/static/chunks/5ee61bed638eb8a8.js +0 -1
  379. package/dashboard/out/_next/static/chunks/5eed557b9f45ae4a.js +0 -1
  380. package/dashboard/out/_next/static/chunks/60446823a7d30c1b.js +0 -1
  381. package/dashboard/out/_next/static/chunks/605150c490861442.js +0 -1
  382. package/dashboard/out/_next/static/chunks/609056d51c0bf332.js +0 -1
  383. package/dashboard/out/_next/static/chunks/60ec91dfeb50071b.js +0 -1
  384. package/dashboard/out/_next/static/chunks/61bc7be0bba6a33f.js +0 -1
  385. package/dashboard/out/_next/static/chunks/61f4a5c9ce23e55e.js +0 -1
  386. package/dashboard/out/_next/static/chunks/63aae3585be04e65.js +0 -1
  387. package/dashboard/out/_next/static/chunks/64e0e1ee7ef4f01b.js +0 -1
  388. package/dashboard/out/_next/static/chunks/66e9b4c26ff1aaaf.js +0 -1
  389. package/dashboard/out/_next/static/chunks/67068847aa1b5e98.js +0 -1
  390. package/dashboard/out/_next/static/chunks/68d7de1f2e202c26.js +0 -1
  391. package/dashboard/out/_next/static/chunks/698ca3ea1937ba4f.js +0 -1
  392. package/dashboard/out/_next/static/chunks/69eb97c24b5b6b9d.js +0 -1
  393. package/dashboard/out/_next/static/chunks/6b1ac098c228a479.js +0 -1
  394. package/dashboard/out/_next/static/chunks/6bb8020cb796bcc1.js +0 -1
  395. package/dashboard/out/_next/static/chunks/6cf8b1db17f2a155.js +0 -1
  396. package/dashboard/out/_next/static/chunks/6e7613643906ea88.js +0 -1
  397. package/dashboard/out/_next/static/chunks/6ea27ceb2e6feae5.js +0 -1
  398. package/dashboard/out/_next/static/chunks/6f95a8dbcf23dded.js +0 -1
  399. package/dashboard/out/_next/static/chunks/6fd44e759d82f64e.js +0 -1
  400. package/dashboard/out/_next/static/chunks/716ec29c268c38f6.js +0 -1
  401. package/dashboard/out/_next/static/chunks/717b399dfcf7c02c.js +0 -1
  402. package/dashboard/out/_next/static/chunks/72badd90e1c91348.js +0 -1
  403. package/dashboard/out/_next/static/chunks/72f9296dbb7ae3c4.js +0 -1
  404. package/dashboard/out/_next/static/chunks/73aa31e1144d8191.js +0 -1
  405. package/dashboard/out/_next/static/chunks/73f98ded8fe2e879.js +0 -1
  406. package/dashboard/out/_next/static/chunks/740a2e8ace15e13b.js +0 -1
  407. package/dashboard/out/_next/static/chunks/74e57c16e7304b6b.js +0 -1
  408. package/dashboard/out/_next/static/chunks/7628dead4d113df2.js +0 -1
  409. package/dashboard/out/_next/static/chunks/7717c88c07ed96e6.js +0 -1
  410. package/dashboard/out/_next/static/chunks/775581f7956d9a27.js +0 -1
  411. package/dashboard/out/_next/static/chunks/77d3b6661befdb98.js +0 -1
  412. package/dashboard/out/_next/static/chunks/78435c0e1c77fea7.js +0 -1
  413. package/dashboard/out/_next/static/chunks/791336748b9c9393.js +0 -1
  414. package/dashboard/out/_next/static/chunks/79ea68dfae65ef2f.js +0 -1
  415. package/dashboard/out/_next/static/chunks/7bae777a472eb13c.js +0 -1
  416. package/dashboard/out/_next/static/chunks/7fd847f47237a35c.js +0 -1
  417. package/dashboard/out/_next/static/chunks/804d718be0370058.css +0 -1
  418. package/dashboard/out/_next/static/chunks/807cb3c1923995ab.js +0 -1
  419. package/dashboard/out/_next/static/chunks/8286b39407d94447.js +0 -1
  420. package/dashboard/out/_next/static/chunks/84e4305b8dc830ed.js +0 -1
  421. package/dashboard/out/_next/static/chunks/850f99dbfabb53e0.js +0 -1
  422. package/dashboard/out/_next/static/chunks/85594127e66b6b7f.js +0 -1
  423. package/dashboard/out/_next/static/chunks/858c11169c183c9c.js +0 -1
  424. package/dashboard/out/_next/static/chunks/85e27005dfe4c3e3.js +0 -1
  425. package/dashboard/out/_next/static/chunks/8707bd3d8ddc1f1c.js +0 -1
  426. package/dashboard/out/_next/static/chunks/8851e5d7ef894973.js +0 -1
  427. package/dashboard/out/_next/static/chunks/88ba3782cc614989.js +0 -1
  428. package/dashboard/out/_next/static/chunks/8a0c9a181784c2ef.js +0 -1
  429. package/dashboard/out/_next/static/chunks/8ad01ae355a6e7f6.js +0 -1
  430. package/dashboard/out/_next/static/chunks/8d2ed93b0d0a4b4f.js +0 -1
  431. package/dashboard/out/_next/static/chunks/8dc352ebd5310d3c.js +0 -1
  432. package/dashboard/out/_next/static/chunks/8dd1d722c8c1a22c.js +0 -1
  433. package/dashboard/out/_next/static/chunks/8e60fe307e3e4986.js +0 -1
  434. package/dashboard/out/_next/static/chunks/8eea4dd71e25f32a.js +0 -1
  435. package/dashboard/out/_next/static/chunks/8f468a65bac34eaa.js +0 -1
  436. package/dashboard/out/_next/static/chunks/9057e5382d6a5059.js +0 -1
  437. package/dashboard/out/_next/static/chunks/931d056437805ecb.js +0 -1
  438. package/dashboard/out/_next/static/chunks/954eb11648dd8cff.js +0 -1
  439. package/dashboard/out/_next/static/chunks/955034d876d14bb3.js +0 -1
  440. package/dashboard/out/_next/static/chunks/966c4895773249f6.js +0 -1
  441. package/dashboard/out/_next/static/chunks/96aff410a6ab106c.js +0 -1
  442. package/dashboard/out/_next/static/chunks/99b396c821c1dd2d.js +0 -1
  443. package/dashboard/out/_next/static/chunks/9a255fd2cf4922ae.js +0 -1
  444. package/dashboard/out/_next/static/chunks/9b1f6aa73bc864b2.js +0 -1
  445. package/dashboard/out/_next/static/chunks/9b9ce582c533aa79.js +0 -1
  446. package/dashboard/out/_next/static/chunks/9c19bd3c773c6611.js +0 -1
  447. package/dashboard/out/_next/static/chunks/9ceeaa847eb15ca2.js +0 -1
  448. package/dashboard/out/_next/static/chunks/9d2e6e7b8b65f845.js +0 -1
  449. package/dashboard/out/_next/static/chunks/9de23802066128ff.js +0 -1
  450. package/dashboard/out/_next/static/chunks/9e327f94b3701170.js +0 -1
  451. package/dashboard/out/_next/static/chunks/9e7818421c2d455a.js +0 -1
  452. package/dashboard/out/_next/static/chunks/9e935acbcf2fb519.js +0 -1
  453. package/dashboard/out/_next/static/chunks/9ed9f68340343b51.js +0 -1
  454. package/dashboard/out/_next/static/chunks/9f94a0242455fc20.js +0 -1
  455. package/dashboard/out/_next/static/chunks/9fff46b5aaecf47e.js +0 -1
  456. package/dashboard/out/_next/static/chunks/a06d267a5c557657.js +0 -1
  457. package/dashboard/out/_next/static/chunks/a0eb8c81c54722fe.js +0 -1
  458. package/dashboard/out/_next/static/chunks/a16808e83106427d.js +0 -1
  459. package/dashboard/out/_next/static/chunks/a2215e2bc72739ef.js +0 -1
  460. package/dashboard/out/_next/static/chunks/a2de9e6696eb9c17.js +0 -1
  461. package/dashboard/out/_next/static/chunks/a33420b8c14090d6.js +0 -1
  462. package/dashboard/out/_next/static/chunks/a360bffef39d818b.js +0 -1
  463. package/dashboard/out/_next/static/chunks/a42852fdf5287cf5.js +0 -1
  464. package/dashboard/out/_next/static/chunks/a4efc88488322b67.js +0 -1
  465. package/dashboard/out/_next/static/chunks/a696a91d14101bdb.js +0 -1
  466. package/dashboard/out/_next/static/chunks/a6dad97d9634a72d.js +0 -1
  467. package/dashboard/out/_next/static/chunks/a6dad97d9634a72d.js.map +0 -1
  468. package/dashboard/out/_next/static/chunks/a705c7261712bd8e.js +0 -1
  469. package/dashboard/out/_next/static/chunks/a7d1e4b067ace180.js +0 -1
  470. package/dashboard/out/_next/static/chunks/a8590c121a7efaa5.js +0 -1
  471. package/dashboard/out/_next/static/chunks/a95953a83a6df6cf.js +0 -1
  472. package/dashboard/out/_next/static/chunks/a9d0a757d3b4afed.js +0 -1
  473. package/dashboard/out/_next/static/chunks/a9dc35514619c872.js +0 -1
  474. package/dashboard/out/_next/static/chunks/aae0253c73fba984.js +0 -193
  475. package/dashboard/out/_next/static/chunks/ab1821552066a74d.js +0 -1
  476. package/dashboard/out/_next/static/chunks/ac96bc0eccebe15a.js +0 -1
  477. package/dashboard/out/_next/static/chunks/acc03cfaaf6bb30f.js +0 -1
  478. package/dashboard/out/_next/static/chunks/acc298ae059b9fe4.js +0 -1
  479. package/dashboard/out/_next/static/chunks/ad076b6e996d250c.js +0 -1
  480. package/dashboard/out/_next/static/chunks/ae53b64af7ba16d5.js +0 -1
  481. package/dashboard/out/_next/static/chunks/ae5da7fa4bc5fa95.js +0 -1
  482. package/dashboard/out/_next/static/chunks/aefcf0eb033a155e.js +0 -1
  483. package/dashboard/out/_next/static/chunks/b12d43100ee10526.js +0 -1
  484. package/dashboard/out/_next/static/chunks/b137952dd5566a41.js +0 -1
  485. package/dashboard/out/_next/static/chunks/b2832d8a2d332a47.js +0 -1
  486. package/dashboard/out/_next/static/chunks/b417aa09c15f63c6.js +0 -1
  487. package/dashboard/out/_next/static/chunks/b48e152ba7bf6caf.js +0 -1
  488. package/dashboard/out/_next/static/chunks/b4cbef8e4714bf92.js +0 -1
  489. package/dashboard/out/_next/static/chunks/b568ff8383a37f53.js +0 -1
  490. package/dashboard/out/_next/static/chunks/b6e1495dd89a39e3.js +0 -1
  491. package/dashboard/out/_next/static/chunks/b73a21bd67528440.js +0 -1
  492. package/dashboard/out/_next/static/chunks/b77ee62bc71dcec7.js +0 -1
  493. package/dashboard/out/_next/static/chunks/b7f454615c11d4eb.js +0 -1
  494. package/dashboard/out/_next/static/chunks/b818ea32a839590f.js +0 -1
  495. package/dashboard/out/_next/static/chunks/b901ce78c1c65d66.js +0 -1
  496. package/dashboard/out/_next/static/chunks/b93d647b803be9fa.js +0 -1
  497. package/dashboard/out/_next/static/chunks/b960b09ff1ecd6bb.js +0 -1
  498. package/dashboard/out/_next/static/chunks/ba717c7779a778fc.js +0 -1
  499. package/dashboard/out/_next/static/chunks/bacb0ae7458d18b6.js +0 -1
  500. package/dashboard/out/_next/static/chunks/bb51f68b27346852.js +0 -1
  501. package/dashboard/out/_next/static/chunks/bb67f22e1ab632ae.js +0 -1
  502. package/dashboard/out/_next/static/chunks/bbae97ec58d1bb9d.js +0 -1
  503. package/dashboard/out/_next/static/chunks/bbaf38ee90307765.js +0 -1
  504. package/dashboard/out/_next/static/chunks/be01598fe1fce5db.js +0 -1
  505. package/dashboard/out/_next/static/chunks/bf4cbbc095987fec.js +0 -1
  506. package/dashboard/out/_next/static/chunks/c18f823797d57446.js +0 -1
  507. package/dashboard/out/_next/static/chunks/c1bcece34ec5b295.js +0 -1
  508. package/dashboard/out/_next/static/chunks/c1ccbc3a51adaf0a.js +0 -1
  509. package/dashboard/out/_next/static/chunks/c1f54a628f27791c.js +0 -1
  510. package/dashboard/out/_next/static/chunks/c21916bf5d232151.js +0 -1
  511. package/dashboard/out/_next/static/chunks/c27e570f0fc2f78b.js +0 -1
  512. package/dashboard/out/_next/static/chunks/c322b8005eebc0d8.js +0 -1
  513. package/dashboard/out/_next/static/chunks/c3900ac2b009b764.js +0 -1
  514. package/dashboard/out/_next/static/chunks/c3c597c8eb77ad6b.js +0 -1
  515. package/dashboard/out/_next/static/chunks/c58d45c1d88e208c.js +0 -1
  516. package/dashboard/out/_next/static/chunks/c63875998d7a655f.js +0 -1
  517. package/dashboard/out/_next/static/chunks/c6eaa7c8e7209c8e.js +0 -1
  518. package/dashboard/out/_next/static/chunks/c6f820f71162a59a.js +0 -1
  519. package/dashboard/out/_next/static/chunks/c7ce0941d1dfe7ed.js +0 -1
  520. package/dashboard/out/_next/static/chunks/c877259f784ec8e5.js +0 -1
  521. package/dashboard/out/_next/static/chunks/cb8057e86aaa1c68.js +0 -1
  522. package/dashboard/out/_next/static/chunks/ccb4e306ee4859b1.js +0 -1
  523. package/dashboard/out/_next/static/chunks/ccde62b0fa8112eb.js +0 -1
  524. package/dashboard/out/_next/static/chunks/cd421f0971c63c31.js +0 -1
  525. package/dashboard/out/_next/static/chunks/cde0317494d4adb7.js +0 -1
  526. package/dashboard/out/_next/static/chunks/cfae64434b92b8b6.js +0 -1
  527. package/dashboard/out/_next/static/chunks/cfc0e19310ec0a36.js +0 -1
  528. package/dashboard/out/_next/static/chunks/d0f344c7d0bcb59a.js +0 -1
  529. package/dashboard/out/_next/static/chunks/d1871c73e74e1f50.js +0 -1
  530. package/dashboard/out/_next/static/chunks/d18f658850711061.js +0 -1
  531. package/dashboard/out/_next/static/chunks/d25d9c48880697f6.js +0 -1
  532. package/dashboard/out/_next/static/chunks/d3f0a72bbc3060b0.js +0 -1
  533. package/dashboard/out/_next/static/chunks/d5fca429bc89060b.js +0 -1
  534. package/dashboard/out/_next/static/chunks/d6a6c75c9a4bef49.js +0 -1
  535. package/dashboard/out/_next/static/chunks/d6a8f93aa8f1e345.js +0 -1
  536. package/dashboard/out/_next/static/chunks/d7deab676b19ba0e.js +0 -1
  537. package/dashboard/out/_next/static/chunks/d80030dde88cec85.js +0 -1
  538. package/dashboard/out/_next/static/chunks/da84f9774c076ff1.js +0 -1
  539. package/dashboard/out/_next/static/chunks/da98ecc6b9b0ceb2.js +0 -1
  540. package/dashboard/out/_next/static/chunks/db550aabce60b912.js +0 -4
  541. package/dashboard/out/_next/static/chunks/dc87f77fcc029482.js +0 -1
  542. package/dashboard/out/_next/static/chunks/dd05f30acdb63a53.js +0 -1
  543. package/dashboard/out/_next/static/chunks/dea150155499b903.js +0 -1
  544. package/dashboard/out/_next/static/chunks/df4358754ff1d5e8.js +0 -1
  545. package/dashboard/out/_next/static/chunks/df8b21ff12d23b0e.js +0 -1
  546. package/dashboard/out/_next/static/chunks/df8fc68d77debf2c.js +0 -1
  547. package/dashboard/out/_next/static/chunks/df9ed1ffec90589f.js +0 -1
  548. package/dashboard/out/_next/static/chunks/dfa65ece1598f934.js +0 -1
  549. package/dashboard/out/_next/static/chunks/dfaab5cdd41a20d9.js +0 -1
  550. package/dashboard/out/_next/static/chunks/e00c03c942b5ae3e.js +0 -1
  551. package/dashboard/out/_next/static/chunks/e02d27cf679bece1.js +0 -1
  552. package/dashboard/out/_next/static/chunks/e0b747585f78513a.js +0 -1
  553. package/dashboard/out/_next/static/chunks/e19b71ca23fd7df0.js +0 -1
  554. package/dashboard/out/_next/static/chunks/e21cbe89d0cda120.js +0 -1
  555. package/dashboard/out/_next/static/chunks/e2a0386930edd34f.js +0 -1
  556. package/dashboard/out/_next/static/chunks/e375de19a36e2f38.js +0 -1
  557. package/dashboard/out/_next/static/chunks/e5241b4a6496a9e0.js +0 -1
  558. package/dashboard/out/_next/static/chunks/e569dd07c96eb4dd.js +0 -1
  559. package/dashboard/out/_next/static/chunks/e61c3ea91233f948.js +0 -1
  560. package/dashboard/out/_next/static/chunks/e73b42c5d34c4c28.js +0 -1
  561. package/dashboard/out/_next/static/chunks/e7c5b2105f651e87.js +0 -1
  562. package/dashboard/out/_next/static/chunks/e878e58a69bb01b6.js +0 -1
  563. package/dashboard/out/_next/static/chunks/e8f090a4dc571062.js +0 -1
  564. package/dashboard/out/_next/static/chunks/e98dc34dac91cdad.js +0 -1
  565. package/dashboard/out/_next/static/chunks/ea67cf7a0c5e7233.js +0 -1
  566. package/dashboard/out/_next/static/chunks/eacc98a1e3512fa9.js +0 -1
  567. package/dashboard/out/_next/static/chunks/eae9cd74d9bbed8b.js +0 -1
  568. package/dashboard/out/_next/static/chunks/eb187fd345852b34.js +0 -1
  569. package/dashboard/out/_next/static/chunks/ecea46df7a40b427.js +0 -1
  570. package/dashboard/out/_next/static/chunks/ecf48b83f4245d9c.js +0 -1
  571. package/dashboard/out/_next/static/chunks/eda41732bf966c6d.js +0 -1
  572. package/dashboard/out/_next/static/chunks/ee174a433049f43a.js +0 -1
  573. package/dashboard/out/_next/static/chunks/ee66b2d3b76de72e.js +0 -1
  574. package/dashboard/out/_next/static/chunks/ef058d3041c3d8ab.js +0 -1
  575. package/dashboard/out/_next/static/chunks/f3544b800b0d4969.js +0 -1
  576. package/dashboard/out/_next/static/chunks/f3b280e604b97509.js +0 -1
  577. package/dashboard/out/_next/static/chunks/f42e1d3693232993.js +0 -1
  578. package/dashboard/out/_next/static/chunks/f5a5fdd80166d304.js +0 -1
  579. package/dashboard/out/_next/static/chunks/f60adc5dd6169316.js +0 -1
  580. package/dashboard/out/_next/static/chunks/f6255bc2e6c68ce8.js +0 -1
  581. package/dashboard/out/_next/static/chunks/f6bb677d2d8840db.js +0 -1
  582. package/dashboard/out/_next/static/chunks/f6f3bf016239c33a.js +0 -1
  583. package/dashboard/out/_next/static/chunks/f6f57a46cd074bfe.js +0 -1
  584. package/dashboard/out/_next/static/chunks/f7feb9c1199e8cf6.js +0 -1
  585. package/dashboard/out/_next/static/chunks/f831087bf964cc3d.js +0 -1
  586. package/dashboard/out/_next/static/chunks/fa5a2f7244935aa2.js +0 -1
  587. package/dashboard/out/_next/static/chunks/fa73f36df4c38fa0.js +0 -1
  588. package/dashboard/out/_next/static/chunks/faa1461722d6a88d.js +0 -1
  589. package/dashboard/out/_next/static/chunks/fbf706b9a0edb7e6.js +0 -1
  590. package/dashboard/out/_next/static/chunks/fc2b8c8b7446bbc2.js +0 -1
  591. package/dashboard/out/_next/static/chunks/fd516f3930c128c1.js +0 -1
  592. package/dashboard/out/_next/static/chunks/fd663e7ff8de4887.js +0 -1
  593. package/dashboard/out/_next/static/chunks/fe5b656cc9bdd60e.js +0 -1
  594. package/dashboard/out/_next/static/chunks/turbopack-2f5dec4a537c0ee7.js +0 -4
  595. package/dashboard/out/_next/static/media/02263ebadd758ea4-s.8da66e7f.woff2 +0 -0
  596. package/dashboard/out/_next/static/media/2fe89d53234c61d4-s.cb53f04b.woff2 +0 -0
  597. package/dashboard/out/_next/static/media/59b15b4bcd7b1eb5-s.afa48be3.woff2 +0 -0
  598. package/dashboard/out/_next/static/media/5e05ae5b48faa55e-s.6b5ea6af.woff2 +0 -0
  599. package/dashboard/out/_next/static/media/68757d6cddeff913-s.e6cd1753.woff2 +0 -0
  600. package/dashboard/out/_next/static/media/99e609270109b47d-s.p.64b9304e.woff2 +0 -0
  601. package/dashboard/out/_next/static/media/a7afbb44bec2bb18-s.1dcddae6.woff2 +0 -0
  602. package/dashboard/out/_next/static/media/e390973e931a41c5-s.a82ecf4e.woff2 +0 -0
  603. package/dashboard/out/_next/static/media/e532fa1b9921e1cd-s.764b43eb.woff2 +0 -0
  604. package/dashboard/out/_next/static/media/effe91970fc4db64-s.p.19510058.woff2 +0 -0
  605. package/dashboard/out/_not-found/__next._full.txt +0 -15
  606. package/dashboard/out/_not-found/__next._head.txt +0 -5
  607. package/dashboard/out/_not-found/__next._index.txt +0 -7
  608. package/dashboard/out/_not-found/__next._not-found.__PAGE__.txt +0 -5
  609. package/dashboard/out/_not-found/__next._not-found.txt +0 -4
  610. package/dashboard/out/_not-found/__next._tree.txt +0 -2
  611. package/dashboard/out/_not-found/index.html +0 -1
  612. package/dashboard/out/_not-found/index.txt +0 -15
  613. package/dashboard/out/index.html +0 -1
  614. package/dashboard/out/index.txt +0 -21
  615. package/dashboard/out/project/__fallback/__next._full.txt +0 -19
  616. package/dashboard/out/project/__fallback/__next._head.txt +0 -5
  617. package/dashboard/out/project/__fallback/__next._index.txt +0 -7
  618. package/dashboard/out/project/__fallback/__next._tree.txt +0 -5
  619. package/dashboard/out/project/__fallback/__next.project.$d$name.__PAGE__.txt +0 -7
  620. package/dashboard/out/project/__fallback/__next.project.$d$name.txt +0 -4
  621. package/dashboard/out/project/__fallback/__next.project.txt +0 -4
  622. package/dashboard/out/project/__fallback/index.html +0 -1
  623. package/dashboard/out/project/__fallback/index.txt +0 -19
  624. package/src/__tests__/support.ts +0 -186
  625. package/src/attach.ts +0 -20
  626. package/src/cli.test.ts +0 -314
  627. package/src/command-center/discovery.test.ts +0 -265
  628. package/src/command-center/discovery.ts +0 -296
  629. package/src/command-center/index.ts +0 -31
  630. package/src/command-center/schemas.ts +0 -57
  631. package/src/command-center/server.test.ts +0 -814
  632. package/src/command-center/server.ts +0 -1427
  633. package/src/command-center/static.test.ts +0 -105
  634. package/src/command-center/static.ts +0 -122
  635. package/src/config-cli.test.ts +0 -86
  636. package/src/config.test.ts +0 -205
  637. package/src/config.ts +0 -313
  638. package/src/detect.test.ts +0 -142
  639. package/src/detect.ts +0 -248
  640. package/src/dispatch.ts +0 -102
  641. package/src/doctor.test.ts +0 -119
  642. package/src/doctor.ts +0 -167
  643. package/src/init.test.ts +0 -101
  644. package/src/init.ts +0 -211
  645. package/src/inspect.test.ts +0 -67
  646. package/src/inspect.ts +0 -212
  647. package/src/integration.test.ts.skip +0 -276
  648. package/src/js-yaml.d.ts +0 -10
  649. package/src/launch.test.ts +0 -149
  650. package/src/launch.ts +0 -583
  651. package/src/lib/auth/auth-service.test.ts +0 -178
  652. package/src/lib/auth/auth-service.ts +0 -227
  653. package/src/lib/auth/middleware.test.ts +0 -119
  654. package/src/lib/auth/middleware.ts +0 -56
  655. package/src/lib/auth/types.ts +0 -13
  656. package/src/lib/authorship.test.ts +0 -242
  657. package/src/lib/authorship.ts +0 -280
  658. package/src/lib/cast/recorder.test.ts +0 -127
  659. package/src/lib/cast/recorder.ts +0 -148
  660. package/src/lib/daemon-watchdog.ts +0 -102
  661. package/src/lib/daemon.ts +0 -431
  662. package/src/lib/dot-path.test.ts +0 -66
  663. package/src/lib/dot-path.ts +0 -17
  664. package/src/lib/errors.ts +0 -44
  665. package/src/lib/event-log.test.ts +0 -189
  666. package/src/lib/event-log.ts +0 -237
  667. package/src/lib/github-pr.ts +0 -182
  668. package/src/lib/hq/client.test.ts +0 -154
  669. package/src/lib/hq/client.ts +0 -142
  670. package/src/lib/hq/mdns.test.ts +0 -54
  671. package/src/lib/hq/mdns.ts +0 -88
  672. package/src/lib/hq/registry.test.ts +0 -237
  673. package/src/lib/hq/registry.ts +0 -145
  674. package/src/lib/hq/types.ts +0 -44
  675. package/src/lib/ipc/socket-protocol.test.ts +0 -126
  676. package/src/lib/ipc/socket-protocol.ts +0 -324
  677. package/src/lib/launch-plan.test.ts +0 -119
  678. package/src/lib/launch-plan.ts +0 -90
  679. package/src/lib/log.test.ts +0 -39
  680. package/src/lib/log.ts +0 -71
  681. package/src/lib/metrics.test.ts +0 -213
  682. package/src/lib/metrics.ts +0 -345
  683. package/src/lib/orchestrator.test.ts +0 -2358
  684. package/src/lib/orchestrator.ts +0 -1799
  685. package/src/lib/output.ts +0 -76
  686. package/src/lib/plan-store.test.ts +0 -148
  687. package/src/lib/plan-store.ts +0 -131
  688. package/src/lib/research.test.ts +0 -208
  689. package/src/lib/research.ts +0 -475
  690. package/src/lib/round-trip.test.ts +0 -341
  691. package/src/lib/session-monitor.test.ts +0 -152
  692. package/src/lib/session-monitor.ts +0 -282
  693. package/src/lib/session-options.test.ts +0 -146
  694. package/src/lib/session-options.ts +0 -100
  695. package/src/lib/shell.test.ts +0 -20
  696. package/src/lib/sizes.test.ts +0 -73
  697. package/src/lib/sizes.ts +0 -36
  698. package/src/lib/skill-registry.test.ts +0 -134
  699. package/src/lib/skill-registry.ts +0 -86
  700. package/src/lib/slugify.test.ts +0 -35
  701. package/src/lib/slugify.ts +0 -10
  702. package/src/lib/task-store.ts +0 -352
  703. package/src/lib/tmux.test.ts +0 -500
  704. package/src/lib/tmux.ts +0 -372
  705. package/src/lib/token-tracker.test.ts +0 -102
  706. package/src/lib/token-tracker.ts +0 -70
  707. package/src/lib/tunnels/cloudflare.test.ts +0 -73
  708. package/src/lib/tunnels/cloudflare.ts +0 -254
  709. package/src/lib/tunnels/manager.test.ts +0 -63
  710. package/src/lib/tunnels/manager.ts +0 -132
  711. package/src/lib/tunnels/ngrok.test.ts +0 -94
  712. package/src/lib/tunnels/ngrok.ts +0 -261
  713. package/src/lib/tunnels/tailscale.test.ts +0 -103
  714. package/src/lib/tunnels/tailscale.ts +0 -1048
  715. package/src/lib/tunnels/types.ts +0 -44
  716. package/src/lib/validation.test.ts +0 -289
  717. package/src/lib/validation.ts +0 -123
  718. package/src/lib/webhook.ts +0 -51
  719. package/src/lib/workflow-store.ts +0 -209
  720. package/src/lib/ws-v3/protocol.test.ts +0 -127
  721. package/src/lib/ws-v3/protocol.ts +0 -160
  722. package/src/lib/yaml-io.test.ts +0 -125
  723. package/src/lib/yaml-io.ts +0 -27
  724. package/src/ls.test.ts +0 -76
  725. package/src/ls.ts +0 -40
  726. package/src/metrics-cli.ts +0 -177
  727. package/src/notify.ts +0 -85
  728. package/src/orchestrator-status.ts +0 -228
  729. package/src/plan.ts +0 -117
  730. package/src/postinstall.test.ts +0 -79
  731. package/src/remote.test.ts +0 -115
  732. package/src/remote.ts +0 -148
  733. package/src/restart.ts +0 -24
  734. package/src/schemas/domain.ts +0 -422
  735. package/src/schemas/ide-config.ts +0 -148
  736. package/src/schemas/index.ts +0 -53
  737. package/src/send.test.ts +0 -70
  738. package/src/send.ts +0 -181
  739. package/src/skill.test.ts +0 -114
  740. package/src/skill.ts +0 -138
  741. package/src/status.ts +0 -66
  742. package/src/stop.test.ts +0 -151
  743. package/src/stop.ts +0 -37
  744. package/src/task.test.ts +0 -1466
  745. package/src/task.ts +0 -1143
  746. package/src/tunnel.test.ts +0 -80
  747. package/src/tunnel.ts +0 -133
  748. package/src/types.ts +0 -15
  749. package/src/ui/index.ts +0 -32
  750. package/src/ui/terminal/index.ts +0 -9
  751. package/src/ui/types.ts +0 -91
  752. package/src/ui/web/base.css +0 -80
  753. package/src/ui/web/components/Box.tsx +0 -59
  754. package/src/ui/web/components/Input.tsx +0 -32
  755. package/src/ui/web/components/ScrollBox.tsx +0 -60
  756. package/src/ui/web/components/Text.tsx +0 -28
  757. package/src/ui/web/hooks.ts +0 -106
  758. package/src/ui/web/index.ts +0 -27
  759. package/src/ui/web/render.ts +0 -77
  760. package/src/ui/web/utils/color.test.ts +0 -93
  761. package/src/ui/web/utils/color.ts +0 -27
  762. package/src/validate.test.ts +0 -385
  763. package/src/validate.ts +0 -217
  764. package/src/widgets/changes/index.tsx +0 -576
  765. package/src/widgets/config/index.tsx +0 -440
  766. package/src/widgets/costs/index.tsx +0 -216
  767. package/src/widgets/explorer/breadcrumbs.tsx +0 -77
  768. package/src/widgets/explorer/footer.tsx +0 -20
  769. package/src/widgets/explorer/header.tsx +0 -23
  770. package/src/widgets/explorer/index.tsx +0 -408
  771. package/src/widgets/explorer/tree-model.test.ts +0 -214
  772. package/src/widgets/explorer/tree-model.ts +0 -103
  773. package/src/widgets/explorer/tree.tsx +0 -156
  774. package/src/widgets/lib/config-model.ts +0 -116
  775. package/src/widgets/lib/files.test.ts +0 -103
  776. package/src/widgets/lib/files.ts +0 -88
  777. package/src/widgets/lib/git.test.ts +0 -151
  778. package/src/widgets/lib/git.ts +0 -88
  779. package/src/widgets/lib/pane-comms.test.ts +0 -178
  780. package/src/widgets/lib/pane-comms.ts +0 -207
  781. package/src/widgets/lib/theme.ts +0 -151
  782. package/src/widgets/lib/watcher.ts +0 -50
  783. package/src/widgets/mission-control/activity-feed.tsx +0 -59
  784. package/src/widgets/mission-control/agent-panel.tsx +0 -132
  785. package/src/widgets/mission-control/command-bar.tsx +0 -63
  786. package/src/widgets/mission-control/index.tsx +0 -751
  787. package/src/widgets/mission-control/task-panel.tsx +0 -238
  788. package/src/widgets/preview/index.tsx +0 -415
  789. package/src/widgets/resolve.ts +0 -40
  790. package/src/widgets/setup/agent-naming.tsx +0 -112
  791. package/src/widgets/setup/config-tree.tsx +0 -238
  792. package/src/widgets/setup/field-editor.tsx +0 -265
  793. package/src/widgets/setup/footer.tsx +0 -107
  794. package/src/widgets/setup/index.tsx +0 -340
  795. package/src/widgets/setup/layout-picker.tsx +0 -96
  796. package/src/widgets/setup/orchestrator-panel.tsx +0 -200
  797. package/src/widgets/setup/review-panel.tsx +0 -140
  798. package/src/widgets/setup/setup-model.test.ts +0 -303
  799. package/src/widgets/setup/setup-model.ts +0 -188
  800. package/src/widgets/tasks/index.tsx +0 -129
  801. package/src/widgets/tasks/task-detail.tsx +0 -309
  802. package/src/widgets/tasks/task-form.tsx +0 -193
  803. package/src/widgets/tasks/task-list.tsx +0 -205
  804. package/src/widgets/tasks/task-model.test.ts +0 -473
  805. package/src/widgets/tasks/task-model.ts +0 -157
package/src/task.ts DELETED
@@ -1,1143 +0,0 @@
1
- import { resolve } from "node:path";
2
- import { outputError } from "./lib/output.ts";
3
- import type { ProofSchema } from "./types.ts";
4
- import {
5
- ensureTasksDir,
6
- loadMission,
7
- saveMission,
8
- clearMission,
9
- loadGoals,
10
- loadGoal,
11
- saveGoal,
12
- deleteGoal,
13
- nextGoalId,
14
- loadTasks,
15
- loadTask,
16
- saveTask,
17
- deleteTask,
18
- nextTaskId,
19
- loadTasksForGoal,
20
- detectCycle,
21
- type Mission,
22
- type Goal,
23
- type Task,
24
- } from "./lib/task-store.ts";
25
- import { isGhAvailable, createTaskPr } from "./lib/github-pr.ts";
26
- import {
27
- loadValidationContract,
28
- loadValidationState,
29
- saveValidationState,
30
- checkCoverage,
31
- parseAssertionIds,
32
- } from "./lib/validation.ts";
33
- import { getSessionName, readConfig } from "./lib/yaml-io.ts";
34
- import { getSessionState } from "./lib/tmux.ts";
35
- import { listSessionPanes } from "./widgets/lib/pane-comms.ts";
36
- import { dispatchResearch, loadResearchState, type ResearchTrigger } from "./lib/research.ts";
37
- import { type OrchestratorState } from "./lib/orchestrator.ts";
38
-
39
- export function parseProof(raw: string, existing: ProofSchema | null): ProofSchema {
40
- // Try parsing as JSON first
41
- if (raw.startsWith("{")) {
42
- try {
43
- const parsed = JSON.parse(raw) as Record<string, unknown>;
44
- const proof: ProofSchema = { ...existing };
45
- if (parsed.tests && typeof parsed.tests === "object") {
46
- const t = parsed.tests as Record<string, unknown>;
47
- if (typeof t.passed === "number" && typeof t.total === "number") {
48
- proof.tests = { passed: t.passed, total: t.total };
49
- }
50
- }
51
- if (parsed.pr && typeof parsed.pr === "object") {
52
- const p = parsed.pr as Record<string, unknown>;
53
- if (typeof p.number === "number") {
54
- proof.pr = { number: p.number };
55
- if (typeof p.url === "string") proof.pr.url = p.url;
56
- if (typeof p.status === "string") proof.pr.status = p.status;
57
- }
58
- }
59
- if (parsed.ci && typeof parsed.ci === "object") {
60
- const c = parsed.ci as Record<string, unknown>;
61
- if (typeof c.status === "string") {
62
- proof.ci = { status: c.status };
63
- if (typeof c.url === "string") proof.ci.url = c.url;
64
- }
65
- }
66
- if (typeof parsed.notes === "string") proof.notes = parsed.notes;
67
- return proof;
68
- } catch {
69
- // Not valid JSON, fall through to treat as plain string
70
- }
71
- }
72
- // Plain string → proof.notes (backward compat)
73
- return { ...existing, notes: raw };
74
- }
75
-
76
- interface TaskCommandValues {
77
- title?: string;
78
- description?: string;
79
- acceptance?: string;
80
- priority?: string;
81
- status?: string;
82
- assign?: string;
83
- goal?: string;
84
- tags?: string;
85
- proof?: string;
86
- depends?: string;
87
- pr?: boolean;
88
- specialty?: string;
89
- milestone?: string;
90
- fulfills?: string;
91
- summary?: string;
92
- sequence?: string;
93
- evidence?: string;
94
- }
95
-
96
- export async function taskCommand(
97
- targetDir: string | undefined,
98
- {
99
- json = false,
100
- action,
101
- sub,
102
- args = [],
103
- values = {},
104
- }: {
105
- json?: boolean;
106
- action: string;
107
- sub?: string;
108
- args: string[];
109
- values?: TaskCommandValues;
110
- },
111
- ): Promise<void> {
112
- const dir = resolve(targetDir ?? ".");
113
-
114
- switch (action) {
115
- case "mission":
116
- return handleMission(dir, sub, args, values, json);
117
- case "milestone":
118
- return handleMilestone(dir, sub, args, values, json);
119
- case "validate":
120
- return handleValidation(dir, sub, args, values, json);
121
- case "research":
122
- return handleResearch(dir, sub, args, json);
123
- case "goal":
124
- return handleGoal(dir, sub, args, values, json);
125
- case "task":
126
- return handleTask(dir, sub, args, values, json);
127
- default:
128
- outputError(`Unknown action: ${action}`, "USAGE");
129
- }
130
- }
131
-
132
- function emptyOrchestratorState(): OrchestratorState {
133
- return {
134
- lastActivity: new Map(),
135
- previousTasks: new Map(),
136
- claimedTasks: new Set(),
137
- taskClaimTimes: new Map(),
138
- };
139
- }
140
-
141
- function handleResearch(dir: string, sub: string | undefined, args: string[], json: boolean): void {
142
- switch (sub) {
143
- case "status": {
144
- const researchState = loadResearchState(dir);
145
- const tasks = loadTasks(dir);
146
- const activeTask =
147
- researchState.activeResearchTaskId != null
148
- ? (tasks.find((task) => task.id === researchState.activeResearchTaskId) ?? null)
149
- : null;
150
- const recentFindings = tasks
151
- .filter((task) => task.tags.includes("research") && task.status === "done")
152
- .sort((a, b) => Date.parse(b.updated) - Date.parse(a.updated))
153
- .slice(0, 5)
154
- .map((task) => ({
155
- id: task.id,
156
- title: task.title,
157
- updated: task.updated,
158
- type: task.tags.find((tag) => tag !== "research") ?? "research",
159
- summary: task.salientSummary,
160
- }));
161
-
162
- const payload = {
163
- activeTask,
164
- recentFindings,
165
- cooldowns: researchState.lastResearchAt,
166
- missionStartAnalyzed: researchState.missionStartAnalyzed,
167
- retryWindow: researchState.retryWindow,
168
- };
169
-
170
- if (json) {
171
- console.log(JSON.stringify(payload, null, 2));
172
- } else {
173
- console.log(
174
- `Active research task: ${activeTask ? `${activeTask.id} — ${activeTask.title}` : "none"}`,
175
- );
176
- console.log(`Mission start analyzed: ${researchState.missionStartAnalyzed ? "yes" : "no"}`);
177
- console.log(`Recent findings: ${recentFindings.length}`);
178
- }
179
- break;
180
- }
181
-
182
- case "trigger": {
183
- const type = args[0];
184
- if (!type) outputError("Usage: tmux-ide research trigger <type>", "USAGE");
185
-
186
- const { name: session } = getSessionName(dir);
187
- const sessionState = getSessionState(session);
188
- if (!sessionState.running) {
189
- outputError(`Session "${session}" is not running`, "SESSION_NOT_FOUND");
190
- }
191
-
192
- const panes = listSessionPanes(session);
193
- const tasks = loadTasks(dir);
194
- const researchState = loadResearchState(dir);
195
- let maxConcurrentAgents = 10;
196
- let masterPane: string | null = null;
197
- let researchEnabled = true;
198
-
199
- try {
200
- const { config } = readConfig(dir);
201
- maxConcurrentAgents = config.orchestrator?.max_concurrent_agents ?? 10;
202
- masterPane = config.orchestrator?.master_pane ?? null;
203
- researchEnabled = config.orchestrator?.research?.enabled ?? true;
204
- } catch {
205
- // Fall back to defaults when ide.yml is unreadable
206
- }
207
-
208
- const task = dispatchResearch(
209
- {
210
- session,
211
- dir,
212
- masterPane,
213
- maxConcurrentAgents,
214
- research: { enabled: researchEnabled },
215
- },
216
- emptyOrchestratorState(),
217
- researchState,
218
- tasks,
219
- panes,
220
- {
221
- type,
222
- reason: `Manual research trigger: ${type}`,
223
- } satisfies ResearchTrigger,
224
- );
225
-
226
- if (!task) {
227
- outputError(`Unable to dispatch research trigger "${type}"`, "CONFLICT");
228
- }
229
-
230
- if (json) {
231
- console.log(JSON.stringify(task, null, 2));
232
- } else {
233
- console.log(`Dispatched research task ${task.id}: ${task.title}`);
234
- }
235
- break;
236
- }
237
-
238
- case "help":
239
- case undefined:
240
- console.log(`Usage: tmux-ide research <status|trigger>
241
-
242
- status Show research agent state
243
- trigger <type> Manually dispatch a research task`);
244
- break;
245
- default:
246
- outputError(
247
- "Usage: tmux-ide research <status|trigger>\nRun: tmux-ide research help",
248
- "USAGE",
249
- );
250
- }
251
- }
252
-
253
- // --- Mission ---
254
-
255
- function handleMission(
256
- dir: string,
257
- sub: string | undefined,
258
- args: string[],
259
- values: TaskCommandValues,
260
- json: boolean,
261
- ): void {
262
- switch (sub) {
263
- case "set": {
264
- const title = args[0];
265
- if (!title) outputError('Usage: tmux-ide mission set "title"', "USAGE");
266
- ensureTasksDir(dir);
267
- const now = new Date().toISOString();
268
- const mission: Mission = {
269
- title,
270
- description: values.description ?? "",
271
- status: "active",
272
- branch: null,
273
- milestones: [],
274
- created: now,
275
- updated: now,
276
- };
277
- saveMission(dir, mission);
278
- if (json) {
279
- console.log(JSON.stringify(mission, null, 2));
280
- } else {
281
- console.log(`Mission set: ${title}`);
282
- }
283
- break;
284
- }
285
- case "create": {
286
- const title = args[0];
287
- if (!title) outputError('Usage: tmux-ide mission create "title" [-d "description"]', "USAGE");
288
- ensureTasksDir(dir);
289
- const now = new Date().toISOString();
290
- const mission: Mission = {
291
- title,
292
- description: values.description ?? "",
293
- status: "planning",
294
- branch: null,
295
- milestones: [],
296
- created: now,
297
- updated: now,
298
- };
299
- saveMission(dir, mission);
300
- if (json) {
301
- console.log(JSON.stringify(mission, null, 2));
302
- } else {
303
- console.log(`Mission created (planning): ${title}`);
304
- }
305
- break;
306
- }
307
- case "plan-complete": {
308
- const mission = loadMission(dir);
309
- if (!mission) outputError("No mission set", "NOT_FOUND");
310
- if (mission.status !== "planning") {
311
- outputError(`Mission is "${mission.status}", expected "planning"`, "CONFLICT");
312
- }
313
- mission.status = "active";
314
- // Normalize milestone activation so plan completion always starts with only
315
- // the earliest milestone active, even if planning left bad statuses behind.
316
- const sorted = [...mission.milestones].sort((a, b) => a.order - b.order);
317
- const first = sorted[0] ?? null;
318
- const now = new Date().toISOString();
319
- for (const milestone of sorted) {
320
- milestone.status = first && milestone.id === first.id ? "active" : "locked";
321
- milestone.updated = now;
322
- }
323
- mission.updated = now;
324
- saveMission(dir, mission);
325
- // Check coverage invariant
326
- const { unclaimed } = checkCoverage(dir);
327
- if (json) {
328
- console.log(JSON.stringify({ ...mission, coverageGaps: unclaimed }, null, 2));
329
- } else {
330
- console.log(`Mission "${mission.title}" planning complete — now active`);
331
- if (first) console.log(` Activated milestone: ${first.id} — ${first.title}`);
332
- if (unclaimed.length > 0) {
333
- console.log(
334
- ` Warning: ${unclaimed.length} assertion(s) not claimed by any task: ${unclaimed.join(", ")}`,
335
- );
336
- }
337
- }
338
- break;
339
- }
340
- case "show": {
341
- const mission = loadMission(dir);
342
- if (!mission) outputError('No mission set. Run: tmux-ide mission set "..."', "NOT_FOUND");
343
- if (json) {
344
- console.log(JSON.stringify(mission, null, 2));
345
- } else {
346
- console.log(`Mission: ${mission.title}`);
347
- if (mission.description) console.log(` ${mission.description}`);
348
- }
349
- break;
350
- }
351
- case "status": {
352
- const mission = loadMission(dir);
353
- if (!mission) outputError("No mission set", "NOT_FOUND");
354
- const tasks = loadTasks(dir);
355
- const doneMilestones = mission.milestones.filter((m) => m.status === "done").length;
356
- const totalMilestones = mission.milestones.length;
357
- const doneTasks = tasks.filter((t) => t.status === "done").length;
358
- const totalTasks = tasks.length;
359
- const valState = loadValidationState(dir);
360
- const assertions = valState ? Object.values(valState.assertions) : [];
361
- const passingCount = assertions.filter((a) => a.status === "passing").length;
362
- const failingCount = assertions.filter((a) => a.status === "failing").length;
363
- const pendingCount = assertions.filter((a) => a.status === "pending").length;
364
- if (json) {
365
- console.log(
366
- JSON.stringify(
367
- {
368
- title: mission.title,
369
- status: mission.status,
370
- milestones: { done: doneMilestones, total: totalMilestones },
371
- tasks: { done: doneTasks, total: totalTasks },
372
- validation: { passing: passingCount, failing: failingCount, pending: pendingCount },
373
- },
374
- null,
375
- 2,
376
- ),
377
- );
378
- } else {
379
- console.log(`Mission: ${mission.title} [${mission.status}]`);
380
- console.log(` Milestones: ${doneMilestones}/${totalMilestones} done`);
381
- console.log(` Tasks: ${doneTasks}/${totalTasks} done`);
382
- if (assertions.length > 0) {
383
- console.log(
384
- ` Validation: ${passingCount} passing, ${failingCount} failing, ${pendingCount} pending`,
385
- );
386
- }
387
- }
388
- break;
389
- }
390
- case "clear": {
391
- clearMission(dir);
392
- if (json) {
393
- console.log(JSON.stringify({ cleared: true }));
394
- } else {
395
- console.log("Mission cleared");
396
- }
397
- break;
398
- }
399
- case "help":
400
- case undefined:
401
- console.log(`Usage: tmux-ide mission <set|create|show|status|plan-complete|clear>
402
-
403
- set "title" [-d "description"] Set mission (status: active)
404
- create "title" [-d "description"] Create mission (status: planning)
405
- show Show current mission
406
- status Show mission progress
407
- plan-complete Signal planning is done
408
- clear Clear the mission`);
409
- break;
410
- default:
411
- outputError(
412
- "Usage: tmux-ide mission <set|create|show|status|plan-complete|clear>\nRun: tmux-ide mission help",
413
- "USAGE",
414
- );
415
- }
416
- }
417
-
418
- // --- Milestone ---
419
-
420
- function handleMilestone(
421
- dir: string,
422
- sub: string | undefined,
423
- args: string[],
424
- values: TaskCommandValues,
425
- json: boolean,
426
- ): void {
427
- switch (sub) {
428
- case "create": {
429
- const title = args[0];
430
- if (!title) outputError('Usage: tmux-ide milestone create "title" --sequence N', "USAGE");
431
- const mission = loadMission(dir);
432
- if (!mission)
433
- outputError('No mission set. Run: tmux-ide mission set "..." first', "NOT_FOUND");
434
- const sequence = parseInt(values.sequence ?? "0", 10) || mission.milestones.length + 1;
435
- const id = `M${sequence}`;
436
- // Check for duplicate ID
437
- if (mission.milestones.find((m) => m.id === id)) {
438
- outputError(`Milestone ${id} already exists`, "CONFLICT");
439
- }
440
- const now = new Date().toISOString();
441
- const hasActive = mission.milestones.some(
442
- (m) => m.status === "active" || m.status === "done",
443
- );
444
- const milestone: Mission["milestones"][number] = {
445
- id,
446
- title,
447
- description: values.description ?? "",
448
- status: hasActive ? "locked" : "active",
449
- order: sequence,
450
- created: now,
451
- updated: now,
452
- };
453
- mission.milestones.push(milestone);
454
- mission.milestones.sort((a, b) => a.order - b.order);
455
- mission.updated = now;
456
- saveMission(dir, mission);
457
- if (json) {
458
- console.log(JSON.stringify(milestone, null, 2));
459
- } else {
460
- console.log(`Created milestone ${id}: ${title} [${milestone.status}]`);
461
- }
462
- break;
463
- }
464
- case "list": {
465
- const mission = loadMission(dir);
466
- if (!mission) outputError("No mission set", "NOT_FOUND");
467
- const tasks = loadTasks(dir);
468
- const milestones = [...mission.milestones].sort((a, b) => a.order - b.order);
469
- if (json) {
470
- const data = milestones.map((m) => {
471
- const mTasks = tasks.filter((t) => t.milestone === m.id);
472
- const done = mTasks.filter((t) => t.status === "done").length;
473
- return { ...m, taskCount: mTasks.length, tasksDone: done };
474
- });
475
- console.log(JSON.stringify(data, null, 2));
476
- } else if (milestones.length === 0) {
477
- console.log('No milestones. Run: tmux-ide milestone create "title" --sequence N');
478
- } else {
479
- for (const m of milestones) {
480
- const mTasks = tasks.filter((t) => t.milestone === m.id);
481
- const done = mTasks.filter((t) => t.status === "done").length;
482
- console.log(` ${m.id} [${m.status}] ${m.title} (${done}/${mTasks.length} tasks)`);
483
- }
484
- }
485
- break;
486
- }
487
- case "show": {
488
- const id = args[0];
489
- if (!id) outputError("Usage: tmux-ide milestone show <id>", "USAGE");
490
- const mission = loadMission(dir);
491
- if (!mission) outputError("No mission set", "NOT_FOUND");
492
- const milestone = mission.milestones.find((m) => m.id === id);
493
- if (!milestone) outputError(`Milestone ${id} not found`, "NOT_FOUND");
494
- const tasks = loadTasks(dir).filter((t) => t.milestone === id);
495
- if (json) {
496
- console.log(JSON.stringify({ milestone, tasks }, null, 2));
497
- } else {
498
- console.log(`Milestone ${milestone.id}: ${milestone.title}`);
499
- console.log(` Status: ${milestone.status}`);
500
- console.log(` Order: ${milestone.order}`);
501
- if (milestone.description) console.log(` Description: ${milestone.description}`);
502
- if (tasks.length > 0) {
503
- console.log(` Tasks:`);
504
- for (const t of tasks) {
505
- console.log(` ${t.id} [${t.status}] ${t.title}`);
506
- }
507
- }
508
- }
509
- break;
510
- }
511
- case "update": {
512
- const id = args[0];
513
- if (!id) outputError("Usage: tmux-ide milestone update <id> --status <status>", "USAGE");
514
- const mission = loadMission(dir);
515
- if (!mission) outputError("No mission set", "NOT_FOUND");
516
- const milestone = mission.milestones.find((m) => m.id === id);
517
- if (!milestone) outputError(`Milestone ${id} not found`, "NOT_FOUND");
518
- if (values.status) {
519
- milestone.status = values.status as typeof milestone.status;
520
- }
521
- if (values.description) milestone.description = values.description;
522
- milestone.updated = new Date().toISOString();
523
- mission.updated = milestone.updated;
524
- saveMission(dir, mission);
525
- if (json) {
526
- console.log(JSON.stringify(milestone, null, 2));
527
- } else {
528
- console.log(`Updated milestone ${id}`);
529
- }
530
- break;
531
- }
532
- case "help":
533
- case undefined:
534
- console.log(`Usage: tmux-ide milestone <create|list|show|update>
535
-
536
- create "title" [--sequence N] [-d "desc"] Create a milestone
537
- list List milestones
538
- show <id> Show milestone with tasks
539
- update <id> [--status active|done|locked] Update milestone`);
540
- break;
541
- default:
542
- outputError(
543
- "Usage: tmux-ide milestone <create|list|show|update>\nRun: tmux-ide milestone help",
544
- "USAGE",
545
- );
546
- }
547
- }
548
-
549
- // --- Validation ---
550
-
551
- function handleValidation(
552
- dir: string,
553
- sub: string | undefined,
554
- args: string[],
555
- values: TaskCommandValues,
556
- json: boolean,
557
- ): void {
558
- switch (sub) {
559
- case "show": {
560
- const contract = loadValidationContract(dir);
561
- const state = loadValidationState(dir);
562
- if (json) {
563
- console.log(JSON.stringify({ contract: contract ?? null, state: state ?? null }, null, 2));
564
- } else {
565
- if (contract) {
566
- console.log("Validation Contract:");
567
- console.log(contract);
568
- console.log();
569
- } else {
570
- console.log("No validation contract found (.tasks/validation-contract.md)");
571
- }
572
- if (state && Object.keys(state.assertions).length > 0) {
573
- console.log("Assertion Status:");
574
- for (const [id, entry] of Object.entries(state.assertions)) {
575
- const evidence = entry.evidence ? ` — ${entry.evidence}` : "";
576
- console.log(` ${id} [${entry.status}]${evidence}`);
577
- }
578
- } else {
579
- console.log("No assertion state yet.");
580
- }
581
- }
582
- break;
583
- }
584
- case "assert": {
585
- const assertionId = args[0];
586
- if (!assertionId || !values.status) {
587
- outputError(
588
- 'Usage: tmux-ide validate assert <ASSERT_ID> --status passing|failing [--evidence "..."]',
589
- "USAGE",
590
- );
591
- }
592
- const status = values.status as "passing" | "failing" | "blocked";
593
- if (status !== "passing" && status !== "failing" && status !== "blocked") {
594
- outputError("Status must be 'passing', 'failing', or 'blocked'", "USAGE");
595
- }
596
- ensureTasksDir(dir);
597
- const state = loadValidationState(dir) ?? { assertions: {}, lastVerified: null };
598
- state.assertions[assertionId] = {
599
- status,
600
- verifiedBy: values.assign ?? null,
601
- verifiedAt: new Date().toISOString(),
602
- evidence: values.evidence ?? null,
603
- blockedBy: status === "blocked" ? (values.evidence ?? null) : null,
604
- };
605
- state.lastVerified = new Date().toISOString();
606
- saveValidationState(dir, state);
607
- if (json) {
608
- console.log(JSON.stringify({ assertionId, ...state.assertions[assertionId] }, null, 2));
609
- } else {
610
- console.log(
611
- `Assertion ${assertionId}: ${status}${values.evidence ? ` — ${values.evidence}` : ""}`,
612
- );
613
- }
614
- break;
615
- }
616
- case "report": {
617
- const state = loadValidationState(dir);
618
- if (!state || Object.keys(state.assertions).length === 0) {
619
- if (json) {
620
- console.log(JSON.stringify({ total: 0, passing: 0, failing: 0, pending: 0, blocked: 0 }));
621
- } else {
622
- console.log("No assertions to report.");
623
- }
624
- break;
625
- }
626
- const entries = Object.values(state.assertions);
627
- const report = {
628
- total: entries.length,
629
- passing: entries.filter((e) => e.status === "passing").length,
630
- failing: entries.filter((e) => e.status === "failing").length,
631
- pending: entries.filter((e) => e.status === "pending").length,
632
- blocked: entries.filter((e) => e.status === "blocked").length,
633
- };
634
- if (json) {
635
- console.log(JSON.stringify(report, null, 2));
636
- } else {
637
- console.log(`Validation Report: ${report.total} assertions`);
638
- console.log(` Passing: ${report.passing}`);
639
- console.log(` Failing: ${report.failing}`);
640
- console.log(` Pending: ${report.pending}`);
641
- if (report.blocked > 0) console.log(` Blocked: ${report.blocked}`);
642
- }
643
- break;
644
- }
645
- case "coverage": {
646
- const result = checkCoverage(dir);
647
- const contract = loadValidationContract(dir);
648
- const allIds = contract ? parseAssertionIds(contract) : [];
649
- const claimed = allIds.length - result.unclaimed.length;
650
- if (json) {
651
- console.log(
652
- JSON.stringify(
653
- {
654
- total: allIds.length,
655
- claimed,
656
- unclaimed: result.unclaimed,
657
- duplicates: result.duplicates,
658
- },
659
- null,
660
- 2,
661
- ),
662
- );
663
- } else {
664
- console.log(`Assertion Coverage: ${claimed}/${allIds.length} claimed`);
665
- if (result.unclaimed.length > 0) {
666
- console.log(` Unclaimed: ${result.unclaimed.join(", ")}`);
667
- }
668
- if (Object.keys(result.duplicates).length > 0) {
669
- console.log(` Duplicate claims:`);
670
- for (const [id, taskIds] of Object.entries(result.duplicates)) {
671
- console.log(` ${id}: tasks ${taskIds.join(", ")}`);
672
- }
673
- }
674
- if (result.unclaimed.length === 0 && Object.keys(result.duplicates).length === 0) {
675
- console.log(" Full coverage — all assertions claimed.");
676
- }
677
- }
678
- break;
679
- }
680
- case "help":
681
- case undefined:
682
- console.log(`Usage: tmux-ide validate <show|assert|report|coverage>
683
-
684
- show Show contract + assertion state
685
- assert <ID> --status passing|failing|blocked [--evidence] Update assertion status
686
- report Summary of assertion results
687
- coverage Check assertion coverage`);
688
- break;
689
- default:
690
- outputError(
691
- "Usage: tmux-ide validate <show|assert|report|coverage>\nRun: tmux-ide validate help",
692
- "USAGE",
693
- );
694
- }
695
- }
696
-
697
- // --- Goal ---
698
-
699
- function handleGoal(
700
- dir: string,
701
- sub: string | undefined,
702
- args: string[],
703
- values: TaskCommandValues,
704
- json: boolean,
705
- ): void {
706
- switch (sub) {
707
- case "list": {
708
- const goals = loadGoals(dir);
709
- if (json) {
710
- console.log(JSON.stringify(goals, null, 2));
711
- } else if (goals.length === 0) {
712
- console.log('No goals. Run: tmux-ide goal create "..."');
713
- } else {
714
- for (const g of goals) {
715
- const tasks = loadTasksForGoal(dir, g.id);
716
- const done = tasks.filter((t) => t.status === "done").length;
717
- console.log(` ${g.id} [${g.status}] ${g.title} (${done}/${tasks.length} tasks)`);
718
- }
719
- }
720
- break;
721
- }
722
- case "create": {
723
- const title = args[0];
724
- if (!title) outputError('Usage: tmux-ide goal create "title"', "USAGE");
725
- ensureTasksDir(dir);
726
- const id = nextGoalId(dir);
727
- const now = new Date().toISOString();
728
- const goal: Goal = {
729
- id,
730
- title,
731
- description: values.description ?? "",
732
- status: "todo",
733
- acceptance: values.acceptance ?? "",
734
- priority: parseInt(values.priority ?? "2", 10),
735
- created: now,
736
- updated: now,
737
- assignee: null,
738
- specialty: values.specialty ?? null,
739
- milestone: values.milestone ?? null,
740
- };
741
- saveGoal(dir, goal);
742
- if (json) {
743
- console.log(JSON.stringify(goal, null, 2));
744
- } else {
745
- console.log(`Created goal ${id}: ${title}`);
746
- }
747
- break;
748
- }
749
- case "update": {
750
- const id = args[0];
751
- if (!id) outputError("Usage: tmux-ide goal update <id>", "USAGE");
752
- const goal = loadGoal(dir, id);
753
- if (!goal) outputError(`Goal ${id} not found`, "NOT_FOUND");
754
- if (values.status) goal.status = values.status as Goal["status"];
755
- if (values.description) goal.description = values.description;
756
- if (values.acceptance) goal.acceptance = values.acceptance;
757
- if (values.priority) goal.priority = parseInt(values.priority, 10);
758
- if (values.milestone) goal.milestone = values.milestone;
759
- goal.updated = new Date().toISOString();
760
- saveGoal(dir, goal);
761
- if (json) {
762
- console.log(JSON.stringify(goal, null, 2));
763
- } else {
764
- console.log(`Updated goal ${id}`);
765
- }
766
- break;
767
- }
768
- case "done": {
769
- const id = args[0];
770
- if (!id) outputError("Usage: tmux-ide goal done <id>", "USAGE");
771
- const goal = loadGoal(dir, id);
772
- if (!goal) outputError(`Goal ${id} not found`, "NOT_FOUND");
773
- goal.status = "done";
774
- goal.updated = new Date().toISOString();
775
- saveGoal(dir, goal);
776
- if (json) {
777
- console.log(JSON.stringify(goal, null, 2));
778
- } else {
779
- console.log(`Goal ${id} marked done: ${goal.title}`);
780
- }
781
- break;
782
- }
783
- case "show": {
784
- const id = args[0];
785
- if (!id) outputError("Usage: tmux-ide goal show <id>", "USAGE");
786
- const goal = loadGoal(dir, id);
787
- if (!goal) outputError(`Goal ${id} not found`, "NOT_FOUND");
788
- const tasks = loadTasksForGoal(dir, id);
789
- if (json) {
790
- console.log(JSON.stringify({ goal, tasks }, null, 2));
791
- } else {
792
- console.log(`Goal ${goal.id}: ${goal.title}`);
793
- console.log(` Status: ${goal.status}`);
794
- if (goal.acceptance) console.log(` Acceptance: ${goal.acceptance}`);
795
- if (tasks.length > 0) {
796
- console.log(` Tasks:`);
797
- for (const t of tasks) {
798
- console.log(` ${t.id} [${t.status}] ${t.title}`);
799
- }
800
- }
801
- }
802
- break;
803
- }
804
- case "delete": {
805
- const id = args[0];
806
- if (!id) outputError("Usage: tmux-ide goal delete <id>", "USAGE");
807
- if (!deleteGoal(dir, id)) outputError(`Goal ${id} not found`, "NOT_FOUND");
808
- if (json) {
809
- console.log(JSON.stringify({ deleted: id }));
810
- } else {
811
- console.log(`Deleted goal ${id}`);
812
- }
813
- break;
814
- }
815
- case "help":
816
- case undefined:
817
- console.log(`Usage: tmux-ide goal <list|create|update|done|show|delete>
818
-
819
- list List all goals
820
- create "title" [-p N] [-d "desc"] Create a goal
821
- update <id> [-s status] [-p N] Update a goal
822
- done <id> Mark goal complete
823
- show <id> Show goal with tasks
824
- delete <id> Delete a goal`);
825
- break;
826
- default:
827
- outputError(
828
- "Usage: tmux-ide goal <list|create|update|done|show|delete>\nRun: tmux-ide goal help",
829
- "USAGE",
830
- );
831
- }
832
- }
833
-
834
- // --- Task ---
835
-
836
- function handleTask(
837
- dir: string,
838
- sub: string | undefined,
839
- args: string[],
840
- values: TaskCommandValues,
841
- json: boolean,
842
- ): void {
843
- switch (sub) {
844
- case "init": {
845
- ensureTasksDir(dir);
846
- if (json) {
847
- console.log(JSON.stringify({ initialized: true }));
848
- } else {
849
- console.log("Initialized .tasks/ directory");
850
- }
851
- break;
852
- }
853
- case "list": {
854
- let tasks = loadTasks(dir);
855
- const allTasks = tasks; // keep full list for dependency checks
856
- if (values.status) tasks = tasks.filter((t) => t.status === values.status);
857
- if (values.goal) tasks = tasks.filter((t) => t.goal === values.goal);
858
- tasks.sort((a, b) => a.priority - b.priority);
859
- if (json) {
860
- console.log(JSON.stringify(tasks, null, 2));
861
- } else if (tasks.length === 0) {
862
- console.log('No tasks. Run: tmux-ide task create "title"');
863
- } else {
864
- // Build goal name map for display
865
- const goals = loadGoals(dir);
866
- const goalNames = new Map(goals.map((g) => [g.id, g.title]));
867
-
868
- for (const t of tasks) {
869
- // Check if blocked by unfinished dependencies
870
- const blocked =
871
- t.depends_on.length > 0 &&
872
- t.depends_on.some((depId) => {
873
- const dep = allTasks.find((d) => d.id === depId);
874
- return !dep || dep.status !== "done";
875
- });
876
-
877
- const status = blocked ? "blocked" : t.status;
878
- const assignee = t.assignee ? ` @${t.assignee}` : "";
879
- const goalLabel = t.goal ? ` (${goalNames.get(t.goal) ?? `goal ${t.goal}`})` : "";
880
- const deps = blocked ? ` (depends: ${t.depends_on.join(", ")})` : "";
881
- console.log(` ${t.id} [${status}] ${t.title}${assignee}${goalLabel}${deps}`);
882
- }
883
- }
884
- break;
885
- }
886
- case "create": {
887
- const title = args[0];
888
- if (!title)
889
- outputError(
890
- 'Missing title. Usage:\n tmux-ide task create "Fix the auth bug" -g 01 -p 1 -d "Token storage issue"',
891
- "USAGE",
892
- );
893
- ensureTasksDir(dir);
894
- const id = nextTaskId(dir);
895
- const now = new Date().toISOString();
896
- const task: Task = {
897
- id,
898
- title,
899
- description: values.description ?? "",
900
- goal: values.goal ?? null,
901
- status: "todo",
902
- assignee: values.assign ?? null,
903
- priority: parseInt(values.priority ?? "2", 10),
904
- created: now,
905
- updated: now,
906
- tags: values.tags ? values.tags.split(",").map((t) => t.trim()) : [],
907
- proof: null,
908
- depends_on: values.depends ? values.depends.split(",").map((d) => d.trim()) : [],
909
- retryCount: 0,
910
- maxRetries: 5,
911
- lastError: null,
912
- nextRetryAt: null,
913
- milestone: values.milestone ?? null,
914
- specialty: values.specialty ?? null,
915
- fulfills: values.fulfills ? values.fulfills.split(",").map((f) => f.trim()) : [],
916
- discoveredIssues: [],
917
- salientSummary: null,
918
- };
919
- if (task.depends_on.length > 0) {
920
- const cycle = detectCycle(dir, task.id, task.depends_on);
921
- if (cycle) {
922
- outputError(`Dependency cycle detected: ${cycle.join(" -> ")}`, "CYCLE");
923
- return;
924
- }
925
- }
926
- saveTask(dir, task);
927
- if (json) {
928
- console.log(JSON.stringify(task, null, 2));
929
- } else {
930
- console.log(`Created task ${id}: ${title}`);
931
- }
932
- break;
933
- }
934
- case "update": {
935
- const id = args[0];
936
- if (!id) outputError("Usage: tmux-ide task update <id>", "USAGE");
937
- const task = loadTask(dir, id);
938
- if (!task) outputError(`Task ${id} not found`, "NOT_FOUND");
939
- if (values.status) task.status = values.status as Task["status"];
940
- if (values.assign) task.assignee = values.assign;
941
- if (values.description) task.description = values.description;
942
- if (values.priority) task.priority = parseInt(values.priority, 10);
943
- if (values.tags) task.tags = values.tags.split(",").map((t) => t.trim());
944
- if (values.goal) task.goal = values.goal;
945
- if (values.depends) {
946
- const newDeps = values.depends.split(",").map((d) => d.trim());
947
- const cycle = detectCycle(dir, task.id, newDeps);
948
- if (cycle) {
949
- outputError(`Dependency cycle detected: ${cycle.join(" -> ")}`, "CYCLE");
950
- return;
951
- }
952
- task.depends_on = newDeps;
953
- }
954
- if (values.proof) task.proof = parseProof(values.proof, task.proof);
955
- if (values.milestone) task.milestone = values.milestone;
956
- if (values.specialty) task.specialty = values.specialty;
957
- if (values.fulfills) task.fulfills = values.fulfills.split(",").map((f) => f.trim());
958
- task.updated = new Date().toISOString();
959
- saveTask(dir, task);
960
- if (json) {
961
- console.log(JSON.stringify(task, null, 2));
962
- } else {
963
- console.log(`Updated task ${id}`);
964
- }
965
- break;
966
- }
967
- case "done": {
968
- const id = args[0];
969
- if (!id) outputError("Usage: tmux-ide task done <id>", "USAGE");
970
- const task = loadTask(dir, id);
971
- if (!task) outputError(`Task ${id} not found`, "NOT_FOUND");
972
- task.status = "done";
973
- if (values.proof) task.proof = parseProof(values.proof, task.proof);
974
- if (values.summary) task.salientSummary = values.summary;
975
- task.updated = new Date().toISOString();
976
-
977
- // Auto-create GitHub PR if --pr flag is set
978
- let prWarning: string | undefined;
979
- if (values.pr) {
980
- if (isGhAvailable()) {
981
- const pr = createTaskPr(task, dir);
982
- if (pr) {
983
- if (!task.proof) task.proof = {};
984
- (task.proof as ProofSchema).pr = {
985
- number: pr.number,
986
- url: pr.url,
987
- status: "open",
988
- };
989
- if (!json) console.log(`PR created: ${pr.url}`);
990
- } else {
991
- prWarning = "PR creation failed (gh error)";
992
- console.error(`Warning: ${prWarning}`);
993
- }
994
- } else {
995
- prWarning = "gh CLI not found, skipping PR creation";
996
- console.error(`Warning: ${prWarning}`);
997
- }
998
- }
999
-
1000
- saveTask(dir, task);
1001
- if (json) {
1002
- const output: Record<string, unknown> = { ...task };
1003
- if (prWarning) output.prError = prWarning;
1004
- console.log(JSON.stringify(output, null, 2));
1005
- } else {
1006
- console.log(`Task ${id} done: ${task.title}`);
1007
- }
1008
- // Check if all tasks for this goal are done
1009
- if (task.goal) {
1010
- const goalTasks = loadTasksForGoal(dir, task.goal);
1011
- if (goalTasks.every((t) => t.status === "done")) {
1012
- if (!json) {
1013
- console.log(
1014
- `All tasks for goal ${task.goal} are done. Run: tmux-ide goal done ${task.goal}`,
1015
- );
1016
- }
1017
- }
1018
- }
1019
- break;
1020
- }
1021
- case "claim": {
1022
- const id = args[0];
1023
- if (!id) outputError("Usage: tmux-ide task claim <id>", "USAGE");
1024
- const task = loadTask(dir, id);
1025
- if (!task) outputError(`Task ${id} not found`, "NOT_FOUND");
1026
- task.assignee = values.assign ?? null;
1027
- task.status = "in-progress";
1028
- task.updated = new Date().toISOString();
1029
- saveTask(dir, task);
1030
- if (json) {
1031
- console.log(JSON.stringify(task, null, 2));
1032
- } else {
1033
- const who = task.assignee ? ` by ${task.assignee}` : "";
1034
- console.log(`Task ${id} claimed${who}: ${task.title}`);
1035
- }
1036
- break;
1037
- }
1038
- case "show": {
1039
- const id = args[0];
1040
- if (!id) outputError("Usage: tmux-ide task show <id>", "USAGE");
1041
- const task = loadTask(dir, id);
1042
- if (!task) outputError(`Task ${id} not found. Run: tmux-ide task list`, "NOT_FOUND");
1043
- const mission = loadMission(dir);
1044
- const goal = task.goal ? loadGoal(dir, task.goal) : null;
1045
- if (json) {
1046
- console.log(
1047
- JSON.stringify({ mission: mission ?? null, goal: goal ?? null, task }, null, 2),
1048
- );
1049
- } else {
1050
- if (mission) console.log(`Mission: ${mission.title}`);
1051
- if (goal) {
1052
- console.log(`Goal ${goal.id}: ${goal.title}`);
1053
- if (goal.acceptance) console.log(` Acceptance: ${goal.acceptance}`);
1054
- }
1055
- console.log(`Task ${task.id}: ${task.title}`);
1056
- console.log(` Status: ${task.status}`);
1057
- if (task.description) console.log(` Description: ${task.description}`);
1058
- if (task.assignee) console.log(` Assignee: ${task.assignee}`);
1059
- if (task.tags.length > 0) console.log(` Tags: ${task.tags.join(", ")}`);
1060
- if (task.depends_on.length > 0) console.log(` Depends on: ${task.depends_on.join(", ")}`);
1061
- if (task.proof) console.log(` Proof: ${JSON.stringify(task.proof)}`);
1062
- }
1063
- break;
1064
- }
1065
- case "edit": {
1066
- const id = args[0];
1067
- if (!id)
1068
- outputError("Usage: tmux-ide task edit <id> --title 'new title' -d 'new desc'", "USAGE");
1069
- const task = loadTask(dir, id);
1070
- if (!task) outputError(`Task ${id} not found. Run: tmux-ide task list`, "NOT_FOUND");
1071
- if (values.title) task.title = values.title;
1072
- if (values.description) task.description = values.description;
1073
- if (values.priority) task.priority = parseInt(values.priority, 10);
1074
- if (values.tags) task.tags = values.tags.split(",").map((t) => t.trim());
1075
- if (values.goal) task.goal = values.goal;
1076
- if (values.depends) {
1077
- const newDeps = values.depends.split(",").map((d) => d.trim());
1078
- const cycle = detectCycle(dir, task.id, newDeps);
1079
- if (cycle) {
1080
- outputError(`Dependency cycle detected: ${cycle.join(" -> ")}`, "CYCLE");
1081
- return;
1082
- }
1083
- task.depends_on = newDeps;
1084
- }
1085
- task.updated = new Date().toISOString();
1086
- saveTask(dir, task);
1087
- if (json) {
1088
- console.log(JSON.stringify(task, null, 2));
1089
- } else {
1090
- console.log(`Edited task ${id}: ${task.title}`);
1091
- }
1092
- break;
1093
- }
1094
- case "unassign": {
1095
- const id = args[0];
1096
- if (!id) outputError("Usage: tmux-ide task unassign <id>", "USAGE");
1097
- const task = loadTask(dir, id);
1098
- if (!task) outputError(`Task ${id} not found. Run: tmux-ide task list`, "NOT_FOUND");
1099
- task.assignee = null;
1100
- task.status = "todo";
1101
- task.updated = new Date().toISOString();
1102
- saveTask(dir, task);
1103
- if (json) {
1104
- console.log(JSON.stringify(task, null, 2));
1105
- } else {
1106
- console.log(`Task ${id} unassigned, status reset to todo: ${task.title}`);
1107
- }
1108
- break;
1109
- }
1110
- case "delete": {
1111
- const id = args[0];
1112
- if (!id) outputError("Usage: tmux-ide task delete <id>", "USAGE");
1113
- if (!deleteTask(dir, id))
1114
- outputError(`Task ${id} not found. Run: tmux-ide task list`, "NOT_FOUND");
1115
- if (json) {
1116
- console.log(JSON.stringify({ deleted: id }));
1117
- } else {
1118
- console.log(`Deleted task ${id}`);
1119
- }
1120
- break;
1121
- }
1122
- case "help":
1123
- case undefined:
1124
- console.log(`Usage: tmux-ide task <subcommand>
1125
-
1126
- init Initialize .tasks/ directory
1127
- list [-s status] [-g goalId] [--json] List tasks
1128
- create "title" [-g id] [-p N] [-d ...] Create a task
1129
- edit <id> [--title ...] [-d ...] [-p N] Edit task fields
1130
- update <id> [-s status] [-a name] Update task status/assignee
1131
- done <id> [--proof "..."] Mark task complete
1132
- claim <id> [-a name] Claim and start a task
1133
- unassign <id> Unassign and reset to todo
1134
- show <id> [--json] Show task with full context
1135
- delete <id> Delete a task
1136
-
1137
- Short flags: -p priority, -g goal, -d description, -a assign,
1138
- -s status, -t tags, -b branch`);
1139
- break;
1140
- default:
1141
- outputError(`Unknown subcommand: ${sub}\nRun: tmux-ide task help`, "USAGE");
1142
- }
1143
- }