agentplane 0.3.6 → 0.3.8

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 (663) hide show
  1. package/assets/AGENTS.md +11 -1
  2. package/assets/RUNNER.md +17 -0
  3. package/bin/agentplane.js +16 -7
  4. package/bin/framework-dev-contract.d.ts +6 -0
  5. package/bin/framework-dev-contract.js +13 -0
  6. package/bin/stale-dist-policy.js +6 -1
  7. package/dist/.build-manifest.json +724 -359
  8. package/dist/adapters/task-backend/task-backend-adapter.d.ts +4 -2
  9. package/dist/adapters/task-backend/task-backend-adapter.d.ts.map +1 -1
  10. package/dist/adapters/task-backend/task-backend-adapter.js +15 -2
  11. package/dist/backends/task-backend/local-backend-doc.d.ts +5 -0
  12. package/dist/backends/task-backend/local-backend-doc.d.ts.map +1 -0
  13. package/dist/backends/task-backend/local-backend-doc.js +98 -0
  14. package/dist/backends/task-backend/local-backend-read.d.ts +7 -0
  15. package/dist/backends/task-backend/local-backend-read.d.ts.map +1 -0
  16. package/dist/backends/task-backend/local-backend-read.js +186 -0
  17. package/dist/backends/task-backend/local-backend-state.d.ts +17 -0
  18. package/dist/backends/task-backend/local-backend-state.d.ts.map +1 -0
  19. package/dist/backends/task-backend/local-backend-state.js +50 -0
  20. package/dist/backends/task-backend/local-backend-write.d.ts +15 -0
  21. package/dist/backends/task-backend/local-backend-write.d.ts.map +1 -0
  22. package/dist/backends/task-backend/local-backend-write.js +254 -0
  23. package/dist/backends/task-backend/local-backend.d.ts +10 -6
  24. package/dist/backends/task-backend/local-backend.d.ts.map +1 -1
  25. package/dist/backends/task-backend/local-backend.js +32 -337
  26. package/dist/backends/task-backend/redmine/backend-cache-doc.d.ts +40 -0
  27. package/dist/backends/task-backend/redmine/backend-cache-doc.d.ts.map +1 -0
  28. package/dist/backends/task-backend/redmine/backend-cache-doc.js +178 -0
  29. package/dist/backends/task-backend/redmine/backend-report.d.ts +10 -0
  30. package/dist/backends/task-backend/redmine/backend-report.d.ts.map +1 -0
  31. package/dist/backends/task-backend/redmine/backend-report.js +43 -0
  32. package/dist/backends/task-backend/redmine/backend-sync.d.ts +67 -0
  33. package/dist/backends/task-backend/redmine/backend-sync.d.ts.map +1 -0
  34. package/dist/backends/task-backend/redmine/backend-sync.js +367 -0
  35. package/dist/backends/task-backend/redmine/env.d.ts +1 -1
  36. package/dist/backends/task-backend/redmine/env.d.ts.map +1 -1
  37. package/dist/backends/task-backend/redmine/env.js +3 -0
  38. package/dist/backends/task-backend/redmine/inspect.d.ts +11 -0
  39. package/dist/backends/task-backend/redmine/inspect.d.ts.map +1 -0
  40. package/dist/backends/task-backend/redmine/inspect.js +75 -0
  41. package/dist/backends/task-backend/redmine/mapping.d.ts +2 -1
  42. package/dist/backends/task-backend/redmine/mapping.d.ts.map +1 -1
  43. package/dist/backends/task-backend/redmine/mapping.js +32 -3
  44. package/dist/backends/task-backend/redmine/parse.d.ts +2 -1
  45. package/dist/backends/task-backend/redmine/parse.d.ts.map +1 -1
  46. package/dist/backends/task-backend/redmine/parse.js +5 -3
  47. package/dist/backends/task-backend/redmine/state.d.ts +19 -0
  48. package/dist/backends/task-backend/redmine/state.d.ts.map +1 -0
  49. package/dist/backends/task-backend/redmine/state.js +109 -0
  50. package/dist/backends/task-backend/redmine-backend.d.ts +14 -17
  51. package/dist/backends/task-backend/redmine-backend.d.ts.map +1 -1
  52. package/dist/backends/task-backend/redmine-backend.js +121 -379
  53. package/dist/backends/task-backend/shared/constants.d.ts +2 -1
  54. package/dist/backends/task-backend/shared/constants.d.ts.map +1 -1
  55. package/dist/backends/task-backend/shared/constants.js +1 -1
  56. package/dist/backends/task-backend/shared/doc.d.ts.map +1 -1
  57. package/dist/backends/task-backend/shared/doc.js +25 -39
  58. package/dist/backends/task-backend/shared/export.d.ts +2 -9
  59. package/dist/backends/task-backend/shared/export.d.ts.map +1 -1
  60. package/dist/backends/task-backend/shared/export.js +73 -8
  61. package/dist/backends/task-backend/shared/normalize.d.ts +5 -1
  62. package/dist/backends/task-backend/shared/normalize.d.ts.map +1 -1
  63. package/dist/backends/task-backend/shared/normalize.js +166 -0
  64. package/dist/backends/task-backend/shared/record.d.ts +1 -1
  65. package/dist/backends/task-backend/shared/record.d.ts.map +1 -1
  66. package/dist/backends/task-backend/shared/record.js +27 -3
  67. package/dist/backends/task-backend/shared/types.d.ts +76 -36
  68. package/dist/backends/task-backend/shared/types.d.ts.map +1 -1
  69. package/dist/backends/task-backend/shared.d.ts +2 -2
  70. package/dist/backends/task-backend/shared.d.ts.map +1 -1
  71. package/dist/backends/task-backend/shared.js +1 -1
  72. package/dist/backends/task-backend.d.ts +1 -1
  73. package/dist/backends/task-backend.d.ts.map +1 -1
  74. package/dist/backends/task-backend.js +1 -1
  75. package/dist/backends/task-index.d.ts +2 -2
  76. package/dist/backends/task-index.d.ts.map +1 -1
  77. package/dist/backends/task-index.js +9 -5
  78. package/dist/cli/bootstrap-guide.d.ts +2 -2
  79. package/dist/cli/bootstrap-guide.d.ts.map +1 -1
  80. package/dist/cli/bootstrap-guide.js +10 -10
  81. package/dist/cli/command-guide.d.ts.map +1 -1
  82. package/dist/cli/command-guide.js +11 -9
  83. package/dist/cli/command-invocations.d.ts +4 -0
  84. package/dist/cli/command-invocations.d.ts.map +1 -0
  85. package/dist/cli/command-invocations.js +35 -0
  86. package/dist/cli/command-snippets.d.ts +12 -8
  87. package/dist/cli/command-snippets.d.ts.map +1 -1
  88. package/dist/cli/command-snippets.js +14 -8
  89. package/dist/cli/exit-codes.d.ts.map +1 -1
  90. package/dist/cli/exit-codes.js +1 -0
  91. package/dist/cli/group-command.d.ts +18 -0
  92. package/dist/cli/group-command.d.ts.map +1 -0
  93. package/dist/cli/group-command.js +45 -0
  94. package/dist/cli/output.d.ts +29 -0
  95. package/dist/cli/output.d.ts.map +1 -1
  96. package/dist/cli/output.js +76 -0
  97. package/dist/cli/prompts.d.ts.map +1 -1
  98. package/dist/cli/prompts.js +5 -1
  99. package/dist/cli/run-cli/command-catalog/core.d.ts.map +1 -1
  100. package/dist/cli/run-cli/command-catalog/core.js +38 -29
  101. package/dist/cli/run-cli/command-catalog/lifecycle.d.ts.map +1 -1
  102. package/dist/cli/run-cli/command-catalog/lifecycle.js +9 -6
  103. package/dist/cli/run-cli/command-catalog/project.d.ts +1 -1
  104. package/dist/cli/run-cli/command-catalog/project.d.ts.map +1 -1
  105. package/dist/cli/run-cli/command-catalog/project.js +11 -7
  106. package/dist/cli/run-cli/command-catalog/shared.d.ts +12 -3
  107. package/dist/cli/run-cli/command-catalog/shared.d.ts.map +1 -1
  108. package/dist/cli/run-cli/command-catalog/shared.js +6 -3
  109. package/dist/cli/run-cli/command-catalog/task.d.ts +1 -1
  110. package/dist/cli/run-cli/command-catalog/task.d.ts.map +1 -1
  111. package/dist/cli/run-cli/command-catalog/task.js +46 -11
  112. package/dist/cli/run-cli/command-catalog.d.ts +11 -1
  113. package/dist/cli/run-cli/command-catalog.d.ts.map +1 -1
  114. package/dist/cli/run-cli/command-catalog.js +29 -0
  115. package/dist/cli/run-cli/commands/config.d.ts.map +1 -1
  116. package/dist/cli/run-cli/commands/config.js +52 -6
  117. package/dist/cli/run-cli/commands/core/agent-profiles.d.ts +34 -0
  118. package/dist/cli/run-cli/commands/core/agent-profiles.d.ts.map +1 -0
  119. package/dist/cli/run-cli/commands/core/agent-profiles.js +97 -0
  120. package/dist/cli/run-cli/commands/core/agents.d.ts +7 -0
  121. package/dist/cli/run-cli/commands/core/agents.d.ts.map +1 -0
  122. package/dist/cli/run-cli/commands/core/agents.js +97 -0
  123. package/dist/cli/run-cli/commands/core/preflight.d.ts +10 -0
  124. package/dist/cli/run-cli/commands/core/preflight.d.ts.map +1 -0
  125. package/dist/cli/run-cli/commands/core/preflight.js +286 -0
  126. package/dist/cli/run-cli/commands/core/quickstart.d.ts +8 -0
  127. package/dist/cli/run-cli/commands/core/quickstart.d.ts.map +1 -0
  128. package/dist/cli/run-cli/commands/core/quickstart.js +43 -0
  129. package/dist/cli/run-cli/commands/core/role.d.ts +9 -0
  130. package/dist/cli/run-cli/commands/core/role.d.ts.map +1 -0
  131. package/dist/cli/run-cli/commands/core/role.js +128 -0
  132. package/dist/cli/run-cli/commands/core.d.ts +4 -24
  133. package/dist/cli/run-cli/commands/core.d.ts.map +1 -1
  134. package/dist/cli/run-cli/commands/core.js +4 -630
  135. package/dist/cli/run-cli/commands/init/write-env.d.ts.map +1 -1
  136. package/dist/cli/run-cli/commands/init/write-env.js +12 -0
  137. package/dist/cli/run-cli/error-guidance.js +10 -0
  138. package/dist/cli/run-cli/globals.d.ts +5 -2
  139. package/dist/cli/run-cli/globals.d.ts.map +1 -1
  140. package/dist/cli/run-cli/globals.js +82 -86
  141. package/dist/cli/run-cli.d.ts.map +1 -1
  142. package/dist/cli/run-cli.js +137 -100
  143. package/dist/cli/run-cli.test-helpers.d.ts +21 -0
  144. package/dist/cli/run-cli.test-helpers.d.ts.map +1 -1
  145. package/dist/cli/run-cli.test-helpers.js +90 -4
  146. package/dist/cli/spec/help.d.ts +10 -2
  147. package/dist/cli/spec/help.d.ts.map +1 -1
  148. package/dist/cli/spec/help.js +7 -5
  149. package/dist/cli/spec/registry.d.ts +27 -1
  150. package/dist/cli/spec/registry.d.ts.map +1 -1
  151. package/dist/cli/spec/registry.js +98 -25
  152. package/dist/commands/backend/sync.command.d.ts +8 -6
  153. package/dist/commands/backend/sync.command.d.ts.map +1 -1
  154. package/dist/commands/backend/sync.command.js +75 -14
  155. package/dist/commands/backend.d.ts +22 -0
  156. package/dist/commands/backend.d.ts.map +1 -1
  157. package/dist/commands/backend.js +111 -1
  158. package/dist/commands/branch/base.command.d.ts +2 -3
  159. package/dist/commands/branch/base.command.d.ts.map +1 -1
  160. package/dist/commands/branch/base.command.js +8 -12
  161. package/dist/commands/branch/base.d.ts.map +1 -1
  162. package/dist/commands/branch/base.js +11 -7
  163. package/dist/commands/branch/cleanup-merged.d.ts.map +1 -1
  164. package/dist/commands/branch/cleanup-merged.js +9 -8
  165. package/dist/commands/branch/remove.d.ts.map +1 -1
  166. package/dist/commands/branch/remove.js +4 -3
  167. package/dist/commands/branch/status.d.ts.map +1 -1
  168. package/dist/commands/branch/status.js +4 -3
  169. package/dist/commands/branch/work-start.d.ts.map +1 -1
  170. package/dist/commands/branch/work-start.js +48 -5
  171. package/dist/commands/cleanup/merged.command.d.ts +2 -3
  172. package/dist/commands/cleanup/merged.command.d.ts.map +1 -1
  173. package/dist/commands/cleanup/merged.command.js +8 -12
  174. package/dist/commands/commit.spec.d.ts.map +1 -1
  175. package/dist/commands/commit.spec.js +30 -6
  176. package/dist/commands/docs/cli.command.js +2 -2
  177. package/dist/commands/doctor/runtime.js +1 -1
  178. package/dist/commands/doctor/workflow.d.ts.map +1 -1
  179. package/dist/commands/doctor/workflow.js +10 -1
  180. package/dist/commands/doctor/workspace.d.ts +8 -0
  181. package/dist/commands/doctor/workspace.d.ts.map +1 -1
  182. package/dist/commands/doctor/workspace.js +127 -3
  183. package/dist/commands/finish.spec.d.ts.map +1 -1
  184. package/dist/commands/finish.spec.js +7 -0
  185. package/dist/commands/guard/commit.command.d.ts.map +1 -1
  186. package/dist/commands/guard/commit.command.js +30 -6
  187. package/dist/commands/guard/guard.command.d.ts +3 -3
  188. package/dist/commands/guard/guard.command.d.ts.map +1 -1
  189. package/dist/commands/guard/guard.command.js +9 -14
  190. package/dist/commands/guard/impl/allow.d.ts +4 -0
  191. package/dist/commands/guard/impl/allow.d.ts.map +1 -1
  192. package/dist/commands/guard/impl/allow.js +14 -3
  193. package/dist/commands/guard/impl/commands.d.ts +2 -0
  194. package/dist/commands/guard/impl/commands.d.ts.map +1 -1
  195. package/dist/commands/guard/impl/commands.js +66 -9
  196. package/dist/commands/guard/impl/policy.d.ts +1 -0
  197. package/dist/commands/guard/impl/policy.d.ts.map +1 -1
  198. package/dist/commands/guard/impl/policy.js +9 -6
  199. package/dist/commands/hooks/hooks.command.d.ts +3 -3
  200. package/dist/commands/hooks/hooks.command.d.ts.map +1 -1
  201. package/dist/commands/hooks/hooks.command.js +9 -11
  202. package/dist/commands/pr/check.d.ts.map +1 -1
  203. package/dist/commands/pr/check.js +90 -18
  204. package/dist/commands/pr/integrate/cmd.d.ts.map +1 -1
  205. package/dist/commands/pr/integrate/cmd.js +31 -3
  206. package/dist/commands/pr/integrate/internal/cleanup.d.ts +12 -0
  207. package/dist/commands/pr/integrate/internal/cleanup.d.ts.map +1 -0
  208. package/dist/commands/pr/integrate/internal/cleanup.js +46 -0
  209. package/dist/commands/pr/integrate/internal/finalize.d.ts +4 -0
  210. package/dist/commands/pr/integrate/internal/finalize.d.ts.map +1 -1
  211. package/dist/commands/pr/integrate/internal/finalize.js +34 -40
  212. package/dist/commands/pr/integrate/internal/merge.d.ts +6 -0
  213. package/dist/commands/pr/integrate/internal/merge.d.ts.map +1 -1
  214. package/dist/commands/pr/integrate/internal/merge.js +92 -0
  215. package/dist/commands/pr/integrate/internal/prepare.d.ts +1 -0
  216. package/dist/commands/pr/integrate/internal/prepare.d.ts.map +1 -1
  217. package/dist/commands/pr/integrate/internal/prepare.js +1 -0
  218. package/dist/commands/pr/integrate/verify.d.ts.map +1 -1
  219. package/dist/commands/pr/integrate/verify.js +4 -3
  220. package/dist/commands/pr/note.d.ts.map +1 -1
  221. package/dist/commands/pr/note.js +3 -2
  222. package/dist/commands/pr/open.d.ts.map +1 -1
  223. package/dist/commands/pr/open.js +9 -12
  224. package/dist/commands/pr/pr.command.d.ts +3 -4
  225. package/dist/commands/pr/pr.command.d.ts.map +1 -1
  226. package/dist/commands/pr/pr.command.js +6 -11
  227. package/dist/commands/pr/update.d.ts.map +1 -1
  228. package/dist/commands/pr/update.js +5 -10
  229. package/dist/commands/recipes/cache.command.d.ts +3 -4
  230. package/dist/commands/recipes/cache.command.d.ts.map +1 -1
  231. package/dist/commands/recipes/cache.command.js +8 -26
  232. package/dist/commands/recipes/impl/apply.d.ts +1 -1
  233. package/dist/commands/recipes/impl/apply.d.ts.map +1 -1
  234. package/dist/commands/recipes/impl/apply.js +1 -1
  235. package/dist/commands/recipes/impl/commands/explain.js +1 -1
  236. package/dist/commands/recipes/impl/commands/install.d.ts.map +1 -1
  237. package/dist/commands/recipes/impl/commands/install.js +1 -2
  238. package/dist/commands/recipes/impl/installed-recipes.d.ts +1 -1
  239. package/dist/commands/recipes/impl/installed-recipes.d.ts.map +1 -1
  240. package/dist/commands/recipes/impl/installed-recipes.js +1 -2
  241. package/dist/commands/recipes/impl/manifest.d.ts.map +1 -1
  242. package/dist/commands/recipes/impl/manifest.js +0 -10
  243. package/dist/commands/recipes/impl/project-installed-recipes.d.ts +1 -1
  244. package/dist/commands/recipes/impl/project-installed-recipes.d.ts.map +1 -1
  245. package/dist/commands/recipes/impl/project-installed-recipes.js +1 -2
  246. package/dist/commands/recipes/impl/resolver.d.ts +1 -1
  247. package/dist/commands/recipes/impl/resolver.d.ts.map +1 -1
  248. package/dist/commands/recipes/impl/resolver.js +26 -16
  249. package/dist/commands/recipes/impl/scenario.d.ts.map +1 -1
  250. package/dist/commands/recipes/impl/scenario.js +80 -0
  251. package/dist/commands/recipes/impl/types.d.ts +27 -13
  252. package/dist/commands/recipes/impl/types.d.ts.map +1 -1
  253. package/dist/commands/recipes/recipes.command.d.ts +3 -4
  254. package/dist/commands/recipes/recipes.command.d.ts.map +1 -1
  255. package/dist/commands/recipes/recipes.command.js +8 -34
  256. package/dist/commands/recipes.d.ts +4 -4
  257. package/dist/commands/recipes.d.ts.map +1 -1
  258. package/dist/commands/recipes.js +3 -3
  259. package/dist/commands/recipes.test-helpers.d.ts +17 -0
  260. package/dist/commands/recipes.test-helpers.d.ts.map +1 -1
  261. package/dist/commands/recipes.test-helpers.js +56 -2
  262. package/dist/commands/release/apply.command.d.ts.map +1 -1
  263. package/dist/commands/release/apply.command.js +77 -56
  264. package/dist/commands/release/plan.command.d.ts.map +1 -1
  265. package/dist/commands/release/plan.command.js +7 -3
  266. package/dist/commands/release/release.command.d.ts +3 -3
  267. package/dist/commands/release/release.command.d.ts.map +1 -1
  268. package/dist/commands/release/release.command.js +9 -11
  269. package/dist/commands/release.test-helpers.d.ts +20 -0
  270. package/dist/commands/release.test-helpers.d.ts.map +1 -0
  271. package/dist/commands/release.test-helpers.js +37 -0
  272. package/dist/commands/runtime.command.d.ts +7 -7
  273. package/dist/commands/runtime.command.d.ts.map +1 -1
  274. package/dist/commands/runtime.command.js +29 -33
  275. package/dist/commands/scenario/execute.command.d.ts +8 -0
  276. package/dist/commands/scenario/execute.command.d.ts.map +1 -0
  277. package/dist/commands/scenario/execute.command.js +117 -0
  278. package/dist/commands/scenario/impl/commands.d.ts.map +1 -1
  279. package/dist/commands/scenario/impl/commands.js +45 -32
  280. package/dist/commands/scenario/run.command.js +2 -2
  281. package/dist/commands/scenario/scenario.command.d.ts +3 -4
  282. package/dist/commands/scenario/scenario.command.d.ts.map +1 -1
  283. package/dist/commands/scenario/scenario.command.js +8 -26
  284. package/dist/commands/shared/git-context.d.ts +1 -0
  285. package/dist/commands/shared/git-context.d.ts.map +1 -1
  286. package/dist/commands/shared/git-context.js +4 -2
  287. package/dist/commands/shared/git-ops.d.ts +1 -0
  288. package/dist/commands/shared/git-ops.d.ts.map +1 -1
  289. package/dist/commands/shared/git-ops.js +13 -0
  290. package/dist/commands/shared/operator-pipeline.d.ts +10 -0
  291. package/dist/commands/shared/operator-pipeline.d.ts.map +1 -0
  292. package/dist/commands/shared/operator-pipeline.js +16 -0
  293. package/dist/commands/shared/pr-meta.d.ts +32 -12
  294. package/dist/commands/shared/pr-meta.d.ts.map +1 -1
  295. package/dist/commands/shared/pr-meta.js +49 -14
  296. package/dist/commands/shared/reconcile-check.d.ts.map +1 -1
  297. package/dist/commands/shared/reconcile-check.js +28 -3
  298. package/dist/commands/shared/task-backend.d.ts +11 -7
  299. package/dist/commands/shared/task-backend.d.ts.map +1 -1
  300. package/dist/commands/shared/task-backend.js +107 -24
  301. package/dist/commands/shared/task-handoff.d.ts +64 -0
  302. package/dist/commands/shared/task-handoff.d.ts.map +1 -0
  303. package/dist/commands/shared/task-handoff.js +151 -0
  304. package/dist/commands/shared/task-mutation.d.ts +36 -0
  305. package/dist/commands/shared/task-mutation.d.ts.map +1 -0
  306. package/dist/commands/shared/task-mutation.js +67 -0
  307. package/dist/commands/shared/task-store.d.ts +65 -2
  308. package/dist/commands/shared/task-store.d.ts.map +1 -1
  309. package/dist/commands/shared/task-store.js +309 -91
  310. package/dist/commands/task/add.d.ts.map +1 -1
  311. package/dist/commands/task/add.js +41 -39
  312. package/dist/commands/task/block.d.ts.map +1 -1
  313. package/dist/commands/task/block.js +31 -89
  314. package/dist/commands/task/close-duplicate.d.ts.map +1 -1
  315. package/dist/commands/task/close-duplicate.js +0 -7
  316. package/dist/commands/task/close-noop.d.ts.map +1 -1
  317. package/dist/commands/task/close-noop.js +0 -21
  318. package/dist/commands/task/close-shared.d.ts +0 -2
  319. package/dist/commands/task/close-shared.d.ts.map +1 -1
  320. package/dist/commands/task/close-shared.js +24 -57
  321. package/dist/commands/task/comment.d.ts.map +1 -1
  322. package/dist/commands/task/comment.js +48 -42
  323. package/dist/commands/task/derive.command.d.ts +1 -0
  324. package/dist/commands/task/derive.command.d.ts.map +1 -1
  325. package/dist/commands/task/derive.command.js +15 -2
  326. package/dist/commands/task/derive.d.ts +1 -0
  327. package/dist/commands/task/derive.d.ts.map +1 -1
  328. package/dist/commands/task/derive.js +37 -7
  329. package/dist/commands/task/doc.command.d.ts.map +1 -1
  330. package/dist/commands/task/doc.command.js +7 -6
  331. package/dist/commands/task/doc.d.ts.map +1 -1
  332. package/dist/commands/task/doc.js +68 -61
  333. package/dist/commands/task/finish-shared.d.ts +60 -0
  334. package/dist/commands/task/finish-shared.d.ts.map +1 -0
  335. package/dist/commands/task/finish-shared.js +181 -0
  336. package/dist/commands/task/finish.d.ts +1 -0
  337. package/dist/commands/task/finish.d.ts.map +1 -1
  338. package/dist/commands/task/finish.js +73 -204
  339. package/dist/commands/task/handoff-record.command.d.ts +17 -0
  340. package/dist/commands/task/handoff-record.command.d.ts.map +1 -0
  341. package/dist/commands/task/handoff-record.command.js +140 -0
  342. package/dist/commands/task/handoff-show.command.d.ts +8 -0
  343. package/dist/commands/task/handoff-show.command.d.ts.map +1 -0
  344. package/dist/commands/task/handoff-show.command.js +77 -0
  345. package/dist/commands/task/handoff.command.d.ts +7 -0
  346. package/dist/commands/task/handoff.command.d.ts.map +1 -0
  347. package/dist/commands/task/handoff.command.js +21 -0
  348. package/dist/commands/task/handoff.shared.d.ts +39 -0
  349. package/dist/commands/task/handoff.shared.d.ts.map +1 -0
  350. package/dist/commands/task/handoff.shared.js +134 -0
  351. package/dist/commands/task/hosted-close.command.d.ts +9 -0
  352. package/dist/commands/task/hosted-close.command.d.ts.map +1 -0
  353. package/dist/commands/task/hosted-close.command.js +190 -0
  354. package/dist/commands/task/hosted-merge-sync.d.ts +40 -0
  355. package/dist/commands/task/hosted-merge-sync.d.ts.map +1 -0
  356. package/dist/commands/task/hosted-merge-sync.js +277 -0
  357. package/dist/commands/task/list.d.ts.map +1 -1
  358. package/dist/commands/task/list.js +7 -24
  359. package/dist/commands/task/migrate-doc.d.ts +15 -0
  360. package/dist/commands/task/migrate-doc.d.ts.map +1 -1
  361. package/dist/commands/task/migrate-doc.js +126 -35
  362. package/dist/commands/task/new.d.ts.map +1 -1
  363. package/dist/commands/task/new.js +26 -4
  364. package/dist/commands/task/next.d.ts.map +1 -1
  365. package/dist/commands/task/next.js +10 -28
  366. package/dist/commands/task/normalize.command.d.ts +1 -0
  367. package/dist/commands/task/normalize.command.d.ts.map +1 -1
  368. package/dist/commands/task/normalize.command.js +12 -0
  369. package/dist/commands/task/normalize.d.ts +1 -0
  370. package/dist/commands/task/normalize.d.ts.map +1 -1
  371. package/dist/commands/task/normalize.js +21 -9
  372. package/dist/commands/task/plan.command.d.ts +3 -4
  373. package/dist/commands/task/plan.command.d.ts.map +1 -1
  374. package/dist/commands/task/plan.command.js +6 -12
  375. package/dist/commands/task/plan.d.ts.map +1 -1
  376. package/dist/commands/task/plan.js +118 -125
  377. package/dist/commands/task/reclaim.command.d.ts +11 -0
  378. package/dist/commands/task/reclaim.command.d.ts.map +1 -0
  379. package/dist/commands/task/reclaim.command.js +102 -0
  380. package/dist/commands/task/resume-context.command.d.ts +9 -0
  381. package/dist/commands/task/resume-context.command.d.ts.map +1 -0
  382. package/dist/commands/task/resume-context.command.js +60 -0
  383. package/dist/commands/task/run-cancel.command.d.ts +6 -0
  384. package/dist/commands/task/run-cancel.command.d.ts.map +1 -0
  385. package/dist/commands/task/run-cancel.command.js +45 -0
  386. package/dist/commands/task/run-cancel.spec.d.ts +7 -0
  387. package/dist/commands/task/run-cancel.spec.d.ts.map +1 -0
  388. package/dist/commands/task/run-cancel.spec.js +20 -0
  389. package/dist/commands/task/run-resume.command.d.ts +6 -0
  390. package/dist/commands/task/run-resume.command.d.ts.map +1 -0
  391. package/dist/commands/task/run-resume.command.js +55 -0
  392. package/dist/commands/task/run-resume.spec.d.ts +7 -0
  393. package/dist/commands/task/run-resume.spec.d.ts.map +1 -0
  394. package/dist/commands/task/run-resume.spec.js +20 -0
  395. package/dist/commands/task/run-retry.command.d.ts +6 -0
  396. package/dist/commands/task/run-retry.command.d.ts.map +1 -0
  397. package/dist/commands/task/run-retry.command.js +56 -0
  398. package/dist/commands/task/run-retry.spec.d.ts +7 -0
  399. package/dist/commands/task/run-retry.spec.d.ts.map +1 -0
  400. package/dist/commands/task/run-retry.spec.js +20 -0
  401. package/dist/commands/task/run-show.command.d.ts +6 -0
  402. package/dist/commands/task/run-show.command.d.ts.map +1 -0
  403. package/dist/commands/task/run-show.command.js +133 -0
  404. package/dist/commands/task/run-show.spec.d.ts +8 -0
  405. package/dist/commands/task/run-show.spec.d.ts.map +1 -0
  406. package/dist/commands/task/run-show.spec.js +44 -0
  407. package/dist/commands/task/run-tail.command.d.ts +6 -0
  408. package/dist/commands/task/run-tail.command.d.ts.map +1 -0
  409. package/dist/commands/task/run-tail.command.js +26 -0
  410. package/dist/commands/task/run-tail.spec.d.ts +8 -0
  411. package/dist/commands/task/run-tail.spec.d.ts.map +1 -0
  412. package/dist/commands/task/run-tail.spec.js +51 -0
  413. package/dist/commands/task/run-trace.command.d.ts +6 -0
  414. package/dist/commands/task/run-trace.command.d.ts.map +1 -0
  415. package/dist/commands/task/run-trace.command.js +25 -0
  416. package/dist/commands/task/run-trace.spec.d.ts +7 -0
  417. package/dist/commands/task/run-trace.spec.d.ts.map +1 -0
  418. package/dist/commands/task/run-trace.spec.js +31 -0
  419. package/dist/commands/task/run.command.d.ts +6 -0
  420. package/dist/commands/task/run.command.d.ts.map +1 -0
  421. package/dist/commands/task/run.command.js +74 -0
  422. package/dist/commands/task/run.spec.d.ts +7 -0
  423. package/dist/commands/task/run.spec.d.ts.map +1 -0
  424. package/dist/commands/task/run.spec.js +26 -0
  425. package/dist/commands/task/scaffold.d.ts.map +1 -1
  426. package/dist/commands/task/scaffold.js +4 -2
  427. package/dist/commands/task/scrub.d.ts.map +1 -1
  428. package/dist/commands/task/scrub.js +27 -24
  429. package/dist/commands/task/search.d.ts.map +1 -1
  430. package/dist/commands/task/search.js +21 -31
  431. package/dist/commands/task/set-status.d.ts.map +1 -1
  432. package/dist/commands/task/set-status.js +38 -111
  433. package/dist/commands/task/shared/dependencies.d.ts +5 -4
  434. package/dist/commands/task/shared/dependencies.d.ts.map +1 -1
  435. package/dist/commands/task/shared/dependencies.js +20 -2
  436. package/dist/commands/task/shared/docs.d.ts +6 -1
  437. package/dist/commands/task/shared/docs.d.ts.map +1 -1
  438. package/dist/commands/task/shared/docs.js +14 -1
  439. package/dist/commands/task/shared/listing.d.ts +16 -2
  440. package/dist/commands/task/shared/listing.d.ts.map +1 -1
  441. package/dist/commands/task/shared/listing.js +56 -0
  442. package/dist/commands/task/shared/transition-command.d.ts +15 -0
  443. package/dist/commands/task/shared/transition-command.d.ts.map +1 -0
  444. package/dist/commands/task/shared/transition-command.js +43 -0
  445. package/dist/commands/task/shared/transitions.d.ts +56 -0
  446. package/dist/commands/task/shared/transitions.d.ts.map +1 -1
  447. package/dist/commands/task/shared/transitions.js +82 -8
  448. package/dist/commands/task/shared/workflow-transition-service.d.ts +75 -0
  449. package/dist/commands/task/shared/workflow-transition-service.d.ts.map +1 -0
  450. package/dist/commands/task/shared/workflow-transition-service.js +226 -0
  451. package/dist/commands/task/shared.d.ts +6 -4
  452. package/dist/commands/task/shared.d.ts.map +1 -1
  453. package/dist/commands/task/shared.js +6 -4
  454. package/dist/commands/task/show.d.ts.map +1 -1
  455. package/dist/commands/task/show.js +37 -3
  456. package/dist/commands/task/start.d.ts.map +1 -1
  457. package/dist/commands/task/start.js +32 -113
  458. package/dist/commands/task/task.command.d.ts +3 -4
  459. package/dist/commands/task/task.command.d.ts.map +1 -1
  460. package/dist/commands/task/task.command.js +22 -37
  461. package/dist/commands/task/verify-record.d.ts.map +1 -1
  462. package/dist/commands/task/verify-record.js +21 -146
  463. package/dist/commands/task/verify.command.d.ts.map +1 -1
  464. package/dist/commands/task/verify.command.js +7 -6
  465. package/dist/commands/task.test-helpers.d.ts +13 -0
  466. package/dist/commands/task.test-helpers.d.ts.map +1 -0
  467. package/dist/commands/task.test-helpers.js +65 -0
  468. package/dist/commands/upgrade/apply.d.ts +2 -0
  469. package/dist/commands/upgrade/apply.d.ts.map +1 -1
  470. package/dist/commands/upgrade/apply.js +33 -1
  471. package/dist/commands/upgrade/materialize.d.ts +28 -0
  472. package/dist/commands/upgrade/materialize.d.ts.map +1 -0
  473. package/dist/commands/upgrade/materialize.js +154 -0
  474. package/dist/commands/upgrade/plan.d.ts +18 -0
  475. package/dist/commands/upgrade/plan.d.ts.map +1 -0
  476. package/dist/commands/upgrade/plan.js +219 -0
  477. package/dist/commands/upgrade/policy.d.ts +24 -0
  478. package/dist/commands/upgrade/policy.d.ts.map +1 -0
  479. package/dist/commands/upgrade/policy.js +182 -0
  480. package/dist/commands/upgrade/report.d.ts.map +1 -1
  481. package/dist/commands/upgrade/report.js +7 -5
  482. package/dist/commands/upgrade.command.d.ts.map +1 -1
  483. package/dist/commands/upgrade.command.js +25 -0
  484. package/dist/commands/upgrade.d.ts +1 -0
  485. package/dist/commands/upgrade.d.ts.map +1 -1
  486. package/dist/commands/upgrade.js +164 -618
  487. package/dist/commands/workflow.command.d.ts +3 -4
  488. package/dist/commands/workflow.command.d.ts.map +1 -1
  489. package/dist/commands/workflow.command.js +8 -25
  490. package/dist/policy/rules/allowlist.d.ts.map +1 -1
  491. package/dist/policy/rules/allowlist.js +12 -9
  492. package/dist/ports/task-backend-port.d.ts +4 -2
  493. package/dist/ports/task-backend-port.d.ts.map +1 -1
  494. package/dist/runner/adapters/codex.d.ts +9 -0
  495. package/dist/runner/adapters/codex.d.ts.map +1 -0
  496. package/dist/runner/adapters/codex.js +414 -0
  497. package/dist/runner/adapters/custom.d.ts +12 -0
  498. package/dist/runner/adapters/custom.d.ts.map +1 -0
  499. package/dist/runner/adapters/custom.js +512 -0
  500. package/dist/runner/adapters/index.d.ts +8 -0
  501. package/dist/runner/adapters/index.d.ts.map +1 -0
  502. package/dist/runner/adapters/index.js +15 -0
  503. package/dist/runner/adapters/recipe-run-profile.d.ts +8 -0
  504. package/dist/runner/adapters/recipe-run-profile.d.ts.map +1 -0
  505. package/dist/runner/adapters/recipe-run-profile.js +53 -0
  506. package/dist/runner/adapters/shared.d.ts +45 -0
  507. package/dist/runner/adapters/shared.d.ts.map +1 -0
  508. package/dist/runner/adapters/shared.js +58 -0
  509. package/dist/runner/artifacts.d.ts +31 -0
  510. package/dist/runner/artifacts.d.ts.map +1 -0
  511. package/dist/runner/artifacts.js +153 -0
  512. package/dist/runner/codex-approval-probe.d.ts +23 -0
  513. package/dist/runner/codex-approval-probe.d.ts.map +1 -0
  514. package/dist/runner/codex-approval-probe.js +55 -0
  515. package/dist/runner/codex-smoke.d.ts +11 -0
  516. package/dist/runner/codex-smoke.d.ts.map +1 -0
  517. package/dist/runner/codex-smoke.js +45 -0
  518. package/dist/runner/config.d.ts +6 -0
  519. package/dist/runner/config.d.ts.map +1 -0
  520. package/dist/runner/config.js +15 -0
  521. package/dist/runner/context/base-prompts.d.ts +10 -0
  522. package/dist/runner/context/base-prompts.d.ts.map +1 -0
  523. package/dist/runner/context/base-prompts.js +255 -0
  524. package/dist/runner/context/recipe-context.d.ts +17 -0
  525. package/dist/runner/context/recipe-context.d.ts.map +1 -0
  526. package/dist/runner/context/recipe-context.js +48 -0
  527. package/dist/runner/context/task-context.d.ts +24 -0
  528. package/dist/runner/context/task-context.d.ts.map +1 -0
  529. package/dist/runner/context/task-context.js +266 -0
  530. package/dist/runner/index.d.ts +12 -0
  531. package/dist/runner/index.d.ts.map +1 -0
  532. package/dist/runner/index.js +11 -0
  533. package/dist/runner/policy-decision.d.ts +12 -0
  534. package/dist/runner/policy-decision.d.ts.map +1 -0
  535. package/dist/runner/policy-decision.js +89 -0
  536. package/dist/runner/policy-display.d.ts +4 -0
  537. package/dist/runner/policy-display.d.ts.map +1 -0
  538. package/dist/runner/policy-display.js +41 -0
  539. package/dist/runner/process-supervision.d.ts +48 -0
  540. package/dist/runner/process-supervision.d.ts.map +1 -0
  541. package/dist/runner/process-supervision.js +490 -0
  542. package/dist/runner/result-manifest-policy.d.ts +9 -0
  543. package/dist/runner/result-manifest-policy.d.ts.map +1 -0
  544. package/dist/runner/result-manifest-policy.js +96 -0
  545. package/dist/runner/result-manifest.d.ts +30 -0
  546. package/dist/runner/result-manifest.d.ts.map +1 -0
  547. package/dist/runner/result-manifest.js +322 -0
  548. package/dist/runner/run-id.d.ts +2 -0
  549. package/dist/runner/run-id.d.ts.map +1 -0
  550. package/dist/runner/run-id.js +3 -0
  551. package/dist/runner/run-repository.d.ts +51 -0
  552. package/dist/runner/run-repository.d.ts.map +1 -0
  553. package/dist/runner/run-repository.js +222 -0
  554. package/dist/runner/task-run-paths.d.ts +19 -0
  555. package/dist/runner/task-run-paths.d.ts.map +1 -0
  556. package/dist/runner/task-run-paths.js +25 -0
  557. package/dist/runner/task-state.d.ts +9 -0
  558. package/dist/runner/task-state.d.ts.map +1 -0
  559. package/dist/runner/task-state.js +354 -0
  560. package/dist/runner/test-helpers.d.ts +30 -0
  561. package/dist/runner/test-helpers.d.ts.map +1 -0
  562. package/dist/runner/test-helpers.js +97 -0
  563. package/dist/runner/trace-artifacts.d.ts +14 -0
  564. package/dist/runner/trace-artifacts.d.ts.map +1 -0
  565. package/dist/runner/trace-artifacts.js +80 -0
  566. package/dist/runner/trace.d.ts +10 -0
  567. package/dist/runner/trace.d.ts.map +1 -0
  568. package/dist/runner/trace.js +37 -0
  569. package/dist/runner/types.d.ts +317 -0
  570. package/dist/runner/types.d.ts.map +1 -0
  571. package/dist/runner/types.js +3 -0
  572. package/dist/runner/usecases/scenario-materialize-task.d.ts +29 -0
  573. package/dist/runner/usecases/scenario-materialize-task.d.ts.map +1 -0
  574. package/dist/runner/usecases/scenario-materialize-task.js +151 -0
  575. package/dist/runner/usecases/task-run-inspect.d.ts +41 -0
  576. package/dist/runner/usecases/task-run-inspect.d.ts.map +1 -0
  577. package/dist/runner/usecases/task-run-inspect.js +74 -0
  578. package/dist/runner/usecases/task-run-lifecycle-cancel.d.ts +10 -0
  579. package/dist/runner/usecases/task-run-lifecycle-cancel.d.ts.map +1 -0
  580. package/dist/runner/usecases/task-run-lifecycle-cancel.js +172 -0
  581. package/dist/runner/usecases/task-run-lifecycle-replay.d.ts +18 -0
  582. package/dist/runner/usecases/task-run-lifecycle-replay.d.ts.map +1 -0
  583. package/dist/runner/usecases/task-run-lifecycle-replay.js +128 -0
  584. package/dist/runner/usecases/task-run-lifecycle-shared.d.ts +45 -0
  585. package/dist/runner/usecases/task-run-lifecycle-shared.d.ts.map +1 -0
  586. package/dist/runner/usecases/task-run-lifecycle-shared.js +172 -0
  587. package/dist/runner/usecases/task-run-lifecycle.d.ts +4 -0
  588. package/dist/runner/usecases/task-run-lifecycle.d.ts.map +1 -0
  589. package/dist/runner/usecases/task-run-lifecycle.js +2 -0
  590. package/dist/runner/usecases/task-run.d.ts +32 -0
  591. package/dist/runner/usecases/task-run.d.ts.map +1 -0
  592. package/dist/runner/usecases/task-run.js +278 -0
  593. package/dist/shared/agent-emoji.d.ts.map +1 -1
  594. package/dist/shared/agent-emoji.js +1 -0
  595. package/dist/shared/errors.d.ts +1 -1
  596. package/dist/shared/errors.d.ts.map +1 -1
  597. package/dist/shared/guards.d.ts.map +1 -1
  598. package/dist/shared/guards.js +1 -0
  599. package/dist/shared/protected-paths.d.ts +10 -0
  600. package/dist/shared/protected-paths.d.ts.map +1 -1
  601. package/dist/shared/protected-paths.js +33 -0
  602. package/dist/shared/repo-cli-version.d.ts.map +1 -1
  603. package/dist/shared/repo-cli-version.js +7 -5
  604. package/dist/shared/task-doc-conflicts.d.ts +12 -0
  605. package/dist/shared/task-doc-conflicts.d.ts.map +1 -0
  606. package/dist/shared/task-doc-conflicts.js +40 -0
  607. package/dist/shared/task-doc-state.d.ts +10 -0
  608. package/dist/shared/task-doc-state.d.ts.map +1 -0
  609. package/dist/shared/task-doc-state.js +15 -0
  610. package/dist/test-helpers/fs.d.ts +2 -0
  611. package/dist/test-helpers/fs.d.ts.map +1 -0
  612. package/dist/test-helpers/fs.js +9 -0
  613. package/dist/usecases/context/resolve-context.d.ts +2 -0
  614. package/dist/usecases/context/resolve-context.d.ts.map +1 -1
  615. package/dist/usecases/context/resolve-context.js +4 -1
  616. package/dist/usecases/task/task-list-usecase.d.ts.map +1 -1
  617. package/dist/usecases/task/task-list-usecase.js +2 -8
  618. package/dist/workflow-runtime/fix.d.ts +9 -1
  619. package/dist/workflow-runtime/fix.d.ts.map +1 -1
  620. package/dist/workflow-runtime/fix.js +9 -1
  621. package/package.json +3 -2
  622. package/dist/backends/task-backend.test-helpers.d.ts +0 -4
  623. package/dist/backends/task-backend.test-helpers.d.ts.map +0 -1
  624. package/dist/backends/task-backend.test-helpers.js +0 -33
  625. package/dist/cli/run-cli/catalog.d.ts +0 -7
  626. package/dist/cli/run-cli/catalog.d.ts.map +0 -1
  627. package/dist/cli/run-cli/catalog.js +0 -22
  628. package/dist/cli/run-cli.core.pr-flow.test-helpers.d.ts +0 -3
  629. package/dist/cli/run-cli.core.pr-flow.test-helpers.d.ts.map +0 -1
  630. package/dist/cli/run-cli.core.pr-flow.test-helpers.js +0 -41
  631. package/dist/cli/run-cli.core.tasks.test-helpers.d.ts +0 -2
  632. package/dist/cli/run-cli.core.tasks.test-helpers.d.ts.map +0 -1
  633. package/dist/cli/run-cli.core.tasks.test-helpers.js +0 -6
  634. package/dist/commands/block.command.d.ts +0 -4
  635. package/dist/commands/block.command.d.ts.map +0 -1
  636. package/dist/commands/block.command.js +0 -2
  637. package/dist/commands/doctor.command.d.ts +0 -3
  638. package/dist/commands/doctor.command.d.ts.map +0 -1
  639. package/dist/commands/doctor.command.js +0 -2
  640. package/dist/commands/finish.command.d.ts +0 -4
  641. package/dist/commands/finish.command.d.ts.map +0 -1
  642. package/dist/commands/finish.command.js +0 -2
  643. package/dist/commands/recipes/install.command.d.ts +0 -3
  644. package/dist/commands/recipes/install.command.d.ts.map +0 -1
  645. package/dist/commands/recipes/install.command.js +0 -2
  646. package/dist/commands/start.command.d.ts +0 -4
  647. package/dist/commands/start.command.d.ts.map +0 -1
  648. package/dist/commands/start.command.js +0 -2
  649. package/dist/commands/task/list.command.d.ts +0 -4
  650. package/dist/commands/task/list.command.d.ts.map +0 -1
  651. package/dist/commands/task/list.command.js +0 -2
  652. package/dist/commands/task/next.command.d.ts +0 -4
  653. package/dist/commands/task/next.command.d.ts.map +0 -1
  654. package/dist/commands/task/next.command.js +0 -2
  655. package/dist/commands/task/search.command.d.ts +0 -4
  656. package/dist/commands/task/search.command.d.ts.map +0 -1
  657. package/dist/commands/task/search.command.js +0 -2
  658. package/dist/commands/task/show.command.d.ts +0 -4
  659. package/dist/commands/task/show.command.d.ts.map +0 -1
  660. package/dist/commands/task/show.command.js +0 -2
  661. package/dist/commands/verify.command.d.ts +0 -4
  662. package/dist/commands/verify.command.d.ts.map +0 -1
  663. package/dist/commands/verify.command.js +0 -2
@@ -1,12 +1,9 @@
1
1
  import { mapBackendError } from "../../cli/error-map.js";
2
- import { successMessage, warnMessage } from "../../cli/output.js";
3
- import { formatCommentBodyForCommit } from "../../shared/comment-format.js";
2
+ import { successMessage } from "../../cli/output.js";
4
3
  import { CliError } from "../../shared/errors.js";
5
- import { commitFromComment } from "../guard/index.js";
6
4
  import { ensureActionApproved } from "../shared/approval-requirements.js";
7
- import { loadCommandContext, loadTaskFromContext, resolveDocUpdatedBy, } from "../shared/task-backend.js";
8
- import { backendIsLocalFileBackend, getTaskStore } from "../shared/task-store.js";
9
- import { appendTaskEvent, defaultCommitEmojiForStatus, ensureCommentCommitAllowed, ensureStatusTransitionAllowed, normalizeTaskDocVersion, normalizeTaskStatus, nowIso, readCommitInfo, resolveTaskDependencyState, resolvePrimaryTag, toStringArray, } from "./shared.js";
5
+ import { loadCommandContext, resolveDocUpdatedBy, } from "../shared/task-backend.js";
6
+ import { applyTaskStatusTransitionCommand, defaultCommitEmojiForStatus, normalizeTaskStatus, nowIso, prepareTaskTransitionComment, readCommitInfo, runTaskTransitionCommentCommit, } from "./shared.js";
10
7
  export async function cmdTaskSetStatus(opts) {
11
8
  const nextStatus = normalizeTaskStatus(opts.status);
12
9
  if (nextStatus === "DONE" && !opts.force) {
@@ -36,115 +33,46 @@ export async function cmdTaskSetStatus(opts) {
36
33
  });
37
34
  }
38
35
  const resolved = ctx.resolvedProject;
39
- const useStore = backendIsLocalFileBackend(ctx);
40
- const store = useStore ? getTaskStore(ctx) : null;
41
- const task = useStore
42
- ? await store.get(opts.taskId)
43
- : await loadTaskFromContext({ ctx, taskId: opts.taskId });
44
- const currentStatus = String(task.status || "TODO").toUpperCase();
45
- ensureStatusTransitionAllowed({
46
- currentStatus,
47
- nextStatus,
48
- force: opts.force,
49
- });
50
- if (!opts.force && (nextStatus === "DOING" || nextStatus === "DONE")) {
51
- const dep = await resolveTaskDependencyState(task, ctx.taskBackend);
52
- if (dep.missing.length > 0 || dep.incomplete.length > 0) {
53
- if (!opts.quiet) {
54
- if (dep.missing.length > 0) {
55
- process.stderr.write(`${warnMessage(`missing deps: ${dep.missing.join(", ")}`)}\n`);
56
- }
57
- if (dep.incomplete.length > 0) {
58
- process.stderr.write(`${warnMessage(`incomplete deps: ${dep.incomplete.join(", ")}`)}\n`);
59
- }
60
- }
61
- throw new CliError({
62
- exitCode: 2,
63
- code: "E_USAGE",
64
- message: `Task is not ready: ${task.id} (use --force to override)`,
65
- });
66
- }
67
- }
68
- ensureCommentCommitAllowed({
69
- enabled: opts.commitFromComment,
70
- config,
71
- action: "task set-status",
72
- confirmed: opts.confirmStatusCommit,
73
- quiet: opts.quiet,
74
- statusFrom: currentStatus,
75
- statusTo: nextStatus,
76
- });
77
- const existingComments = Array.isArray(task.comments)
78
- ? task.comments.filter((item) => !!item && typeof item.author === "string" && typeof item.body === "string")
79
- : [];
80
- let comments = existingComments;
81
- let commentBody;
82
- if (opts.author && opts.body) {
83
- commentBody = opts.commitFromComment
84
- ? formatCommentBodyForCommit(opts.body, config)
85
- : opts.body;
86
- comments = [...existingComments, { author: opts.author, body: commentBody }];
87
- }
36
+ const preparedComment = opts.author && opts.body
37
+ ? prepareTaskTransitionComment({
38
+ body: opts.body,
39
+ enabled: opts.commitFromComment,
40
+ config,
41
+ })
42
+ : null;
43
+ const commentBody = preparedComment?.commentBody;
88
44
  const at = nowIso();
89
- const eventAuthor = resolveDocUpdatedBy(task, opts.author);
90
45
  const commitInfo = opts.commit ? await readCommitInfo(resolved.gitRoot, opts.commit) : null;
91
46
  const nextCommit = opts.commit
92
47
  ? { hash: commitInfo.hash, message: commitInfo.message }
93
48
  : undefined;
94
- const next = {
95
- ...task,
96
- status: nextStatus,
97
- comments,
98
- events: appendTaskEvent(task, {
99
- type: "status",
100
- at,
101
- author: eventAuthor,
102
- from: currentStatus,
103
- to: nextStatus,
104
- note: commentBody,
105
- }),
106
- doc_version: normalizeTaskDocVersion(task.doc_version),
107
- doc_updated_at: at,
108
- doc_updated_by: eventAuthor,
109
- };
110
- if (opts.commit) {
111
- next.commit = nextCommit;
112
- }
113
- await (useStore
114
- ? store.patch(opts.taskId, (current) => {
115
- const currentStatus = String(current.status || "TODO").toUpperCase();
116
- ensureStatusTransitionAllowed({
117
- currentStatus,
118
- nextStatus,
119
- force: opts.force,
120
- });
49
+ const transition = await applyTaskStatusTransitionCommand({
50
+ ctx,
51
+ taskId: opts.taskId,
52
+ quiet: opts.quiet,
53
+ build: (current) => {
121
54
  const currentEventAuthor = resolveDocUpdatedBy(current, opts.author);
122
55
  return {
123
- task: {
124
- status: nextStatus,
125
- ...(nextCommit ? { commit: nextCommit } : {}),
126
- },
127
- ...(commentBody
128
- ? { appendComments: [{ author: opts.author, body: commentBody }] }
129
- : {}),
130
- appendEvents: [
131
- {
132
- type: "status",
133
- at,
134
- author: currentEventAuthor,
135
- from: currentStatus,
136
- to: nextStatus,
137
- note: commentBody,
138
- },
139
- ],
140
- docMeta: {
141
- touch: true,
142
- updatedBy: currentEventAuthor,
143
- version: normalizeTaskDocVersion(current.doc_version),
56
+ at,
57
+ toStatus: nextStatus,
58
+ eventAuthor: currentEventAuthor,
59
+ updatedBy: currentEventAuthor,
60
+ note: commentBody,
61
+ comment: commentBody && opts.author ? { author: opts.author, body: commentBody } : undefined,
62
+ commit: nextCommit,
63
+ force: opts.force,
64
+ dependencyPolicy: nextStatus === "DOING" || nextStatus === "DONE"
65
+ ? { kind: "require-ready" }
66
+ : { kind: "none" },
67
+ commentCommitPolicy: {
68
+ enabled: opts.commitFromComment,
69
+ action: "task set-status",
70
+ confirmed: opts.confirmStatusCommit,
71
+ quiet: opts.quiet,
144
72
  },
145
73
  };
146
- })
147
- : ctx.taskBackend.writeTask(next));
74
+ },
75
+ });
148
76
  // tasks.json is export-only; generated via `agentplane task export`.
149
77
  if (opts.commitFromComment) {
150
78
  if (!opts.body) {
@@ -154,24 +82,23 @@ export async function cmdTaskSetStatus(opts) {
154
82
  message: "--body is required when using --commit-from-comment",
155
83
  });
156
84
  }
157
- await commitFromComment({
85
+ await runTaskTransitionCommentCommit({
158
86
  ctx,
159
87
  cwd: opts.cwd,
160
88
  rootOverride: opts.rootOverride,
161
89
  taskId: opts.taskId,
162
- primaryTag: resolvePrimaryTag(toStringArray(task.tags), ctx).primary,
90
+ primaryTag: transition.primaryTag,
163
91
  author: opts.author,
164
- statusFrom: currentStatus,
92
+ statusFrom: transition.execution.currentStatus,
165
93
  statusTo: nextStatus,
166
94
  commentBody: opts.body,
167
- formattedComment: formatCommentBodyForCommit(opts.body, config),
95
+ formattedComment: preparedComment?.formattedComment ?? null,
168
96
  emoji: opts.commitEmoji ?? defaultCommitEmojiForStatus(nextStatus),
169
97
  allow: opts.commitAllow,
170
98
  autoAllow: opts.commitAutoAllow || opts.commitAllow.length === 0,
171
99
  allowTasks: opts.commitAllowTasks,
172
100
  requireClean: opts.commitRequireClean,
173
101
  quiet: opts.quiet,
174
- config,
175
102
  });
176
103
  }
177
104
  if (!opts.quiet) {
@@ -1,15 +1,16 @@
1
- import type { TaskBackend, TaskData } from "../../../backends/task-backend.js";
1
+ import { type TaskBackend, type TaskData, type TaskSummary } from "../../../backends/task-backend.js";
2
2
  export type DependencyState = {
3
3
  dependsOn: string[];
4
4
  missing: string[];
5
5
  incomplete: string[];
6
6
  };
7
7
  export declare function ensureTaskDependsOnGraphIsAcyclic(opts: {
8
- backend: Pick<TaskBackend, "listTasks">;
8
+ backend: Pick<TaskBackend, "listTasks" | "listProjectionTasks">;
9
9
  taskId: string;
10
10
  dependsOn: string[];
11
11
  }): Promise<void>;
12
12
  export declare function resolveTaskDependencyState(task: TaskData, backend: Pick<TaskBackend, "getTask" | "getTasks">): Promise<DependencyState>;
13
- export declare function buildDependencyState(tasks: TaskData[]): Map<string, DependencyState>;
14
- export declare function formatTaskLine(task: TaskData, depState?: DependencyState): string;
13
+ export declare function dependencyWarningMessages(dep: DependencyState): string[];
14
+ export declare function buildDependencyState(tasks: TaskSummary[]): Map<string, DependencyState>;
15
+ export declare function formatTaskLine(task: TaskSummary, depState?: DependencyState): string;
15
16
  //# sourceMappingURL=dependencies.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAK/E,MAAM,MAAM,eAAe,GAAG;IAC5B,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAkCF,wBAAsB,iCAAiC,CAAC,IAAI,EAAE;IAC5D,OAAO,EAAE,IAAI,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG,OAAO,CAAC,IAAI,CAAC,CA2BhB;AAED,wBAAsB,0BAA0B,CAC9C,IAAI,EAAE,QAAQ,EACd,OAAO,EAAE,IAAI,CAAC,WAAW,EAAE,SAAS,GAAG,UAAU,CAAC,GACjD,OAAO,CAAC,eAAe,CAAC,CAuB1B;AAED,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,QAAQ,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAqBpF;AAgBD,wBAAgB,cAAc,CAAC,IAAI,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,eAAe,GAAG,MAAM,CAejF"}
1
+ {"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,WAAW,EAChB,KAAK,QAAQ,EACb,KAAK,WAAW,EACjB,MAAM,mCAAmC,CAAC;AAK3C,MAAM,MAAM,eAAe,GAAG;IAC5B,SAAS,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAkCF,wBAAsB,iCAAiC,CAAC,IAAI,EAAE;IAC5D,OAAO,EAAE,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,qBAAqB,CAAC,CAAC;IAChE,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,EAAE,CAAC;CACrB,GAAG,OAAO,CAAC,IAAI,CAAC,CAiChB;AAED,wBAAsB,0BAA0B,CAC9C,IAAI,EAAE,QAAQ,EACd,OAAO,EAAE,IAAI,CAAC,WAAW,EAAE,SAAS,GAAG,UAAU,CAAC,GACjD,OAAO,CAAC,eAAe,CAAC,CAuB1B;AAED,wBAAgB,yBAAyB,CAAC,GAAG,EAAE,eAAe,GAAG,MAAM,EAAE,CASxE;AAED,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,WAAW,EAAE,GAAG,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAqBvF;AAgBD,wBAAgB,cAAc,CAAC,IAAI,EAAE,WAAW,EAAE,QAAQ,CAAC,EAAE,eAAe,GAAG,MAAM,CAepF"}
@@ -1,3 +1,4 @@
1
+ import { toTaskSummary, } from "../../../backends/task-backend.js";
1
2
  import { CliError } from "../../../shared/errors.js";
2
3
  import { dedupeStrings } from "../../../shared/strings.js";
3
4
  import { toStringArray } from "./tags.js";
@@ -41,9 +42,16 @@ export async function ensureTaskDependsOnGraphIsAcyclic(opts) {
41
42
  message: `depends_on cannot include task itself (${opts.taskId})`,
42
43
  });
43
44
  }
44
- const allTasks = await opts.backend.listTasks();
45
+ let normalizedTasks;
46
+ if (opts.backend.listProjectionTasks) {
47
+ normalizedTasks = await opts.backend.listProjectionTasks();
48
+ }
49
+ else {
50
+ const tasks = await opts.backend.listTasks();
51
+ normalizedTasks = tasks.map((task) => toTaskSummary(task));
52
+ }
45
53
  const depMap = new Map();
46
- for (const task of allTasks) {
54
+ for (const task of normalizedTasks) {
47
55
  const taskId = String(task.id || "").trim();
48
56
  if (!taskId)
49
57
  continue;
@@ -83,6 +91,16 @@ export async function resolveTaskDependencyState(task, backend) {
83
91
  }
84
92
  return { dependsOn, missing, incomplete };
85
93
  }
94
+ export function dependencyWarningMessages(dep) {
95
+ const warnings = [];
96
+ if (dep.missing.length > 0) {
97
+ warnings.push(`missing deps: ${dep.missing.join(", ")}`);
98
+ }
99
+ if (dep.incomplete.length > 0) {
100
+ warnings.push(`incomplete deps: ${dep.incomplete.join(", ")}`);
101
+ }
102
+ return warnings;
103
+ }
86
104
  export function buildDependencyState(tasks) {
87
105
  const byId = new Map(tasks.map((task) => [task.id, task]));
88
106
  const state = new Map();
@@ -1,4 +1,4 @@
1
- import type { AgentplaneConfig } from "@agentplaneorg/core";
1
+ import { type AgentplaneConfig } from "@agentplaneorg/core";
2
2
  import type { TaskData } from "../../../backends/task-backend.js";
3
3
  export declare function nowIso(): string;
4
4
  export declare const VERIFY_STEPS_PLACEHOLDER = "<!-- TODO: REPLACE WITH TASK-SPECIFIC ACCEPTANCE STEPS -->";
@@ -12,6 +12,11 @@ export declare function normalizeTaskDocVersion(value: unknown, fallback?: TaskD
12
12
  export declare function normalizeVerificationSectionLayout(sectionText: string | null, version: TaskDocVersion): string;
13
13
  export declare function taskObservationSectionName(version: TaskDocVersion): "Notes" | "Findings";
14
14
  export declare function extractTaskObservationSection(doc: string, version: TaskDocVersion): string | null;
15
+ export declare function resolveWritableDocSections(opts: {
16
+ allowedSections: readonly string[];
17
+ requiredSections: readonly string[];
18
+ targetSection: string;
19
+ }): string[];
15
20
  export declare function isDocSectionFilled(sectionText: string | null): boolean;
16
21
  export declare function ensureAgentFilledRequiredDocSections(opts: {
17
22
  task: Pick<TaskData, "id">;
@@ -1 +1 @@
1
- {"version":3,"file":"docs.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/docs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAI5D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAElE,wBAAgB,MAAM,IAAI,MAAM,CAE/B;AAED,eAAO,MAAM,wBAAwB,+DACyB,CAAC;AAC/D,eAAO,MAAM,0BAA0B,wCAAwC,CAAC;AAChF,eAAO,MAAM,wBAAwB,sCAAsC,CAAC;AAC5E,MAAM,MAAM,cAAc,GAAG,CAAC,GAAG,CAAC,CAAC;AAEnC,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAMlE;AAED,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiBjF;AAED,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAKvE;AAED,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,OAAO,EACd,QAAQ,GAAE,cAAkB,GAC3B,cAAc,CAEhB;AAED,wBAAgB,kCAAkC,CAChD,WAAW,EAAE,MAAM,GAAG,IAAI,EAC1B,OAAO,EAAE,cAAc,GACtB,MAAM,CAyCR;AAED,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,GAAG,UAAU,CAExF;AAED,wBAAgB,6BAA6B,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,GAAG,MAAM,GAAG,IAAI,CAIjG;AAMD,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAKtE;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE;IACzD,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC3B,MAAM,EAAE,gBAAgB,CAAC;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAChB,GAAG,IAAI,CA6BP"}
1
+ {"version":3,"file":"docs.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/docs.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,KAAK,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAIrF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAElE,wBAAgB,MAAM,IAAI,MAAM,CAE/B;AAED,eAAO,MAAM,wBAAwB,+DACyB,CAAC;AAC/D,eAAO,MAAM,0BAA0B,wCAAwC,CAAC;AAChF,eAAO,MAAM,wBAAwB,sCAAsC,CAAC;AAC5E,MAAM,MAAM,cAAc,GAAG,CAAC,GAAG,CAAC,CAAC;AAEnC,wBAAgB,6BAA6B,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAMlE;AAED,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAiBjF;AAED,wBAAgB,mBAAmB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAKvE;AAED,wBAAgB,uBAAuB,CACrC,KAAK,EAAE,OAAO,EACd,QAAQ,GAAE,cAAkB,GAC3B,cAAc,CAEhB;AAED,wBAAgB,kCAAkC,CAChD,WAAW,EAAE,MAAM,GAAG,IAAI,EAC1B,OAAO,EAAE,cAAc,GACtB,MAAM,CAyCR;AAED,wBAAgB,0BAA0B,CAAC,OAAO,EAAE,cAAc,GAAG,OAAO,GAAG,UAAU,CAExF;AAED,wBAAgB,6BAA6B,CAAC,GAAG,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,GAAG,MAAM,GAAG,IAAI,CAIjG;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE;IAC/C,eAAe,EAAE,SAAS,MAAM,EAAE,CAAC;IACnC,gBAAgB,EAAE,SAAS,MAAM,EAAE,CAAC;IACpC,aAAa,EAAE,MAAM,CAAC;CACvB,GAAG,MAAM,EAAE,CAaX;AAMD,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,MAAM,GAAG,IAAI,GAAG,OAAO,CAKtE;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE;IACzD,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAC;IAC3B,MAAM,EAAE,gBAAgB,CAAC;IACzB,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC;CAChB,GAAG,IAAI,CA6BP"}
@@ -1,3 +1,4 @@
1
+ import { normalizeDocSectionName } from "@agentplaneorg/core";
1
2
  import { CliError } from "../../../shared/errors.js";
2
3
  import { dedupeStrings } from "../../../shared/strings.js";
3
4
  export function nowIso() {
@@ -40,7 +41,7 @@ export function isVerifyStepsFilled(sectionText) {
40
41
  return false;
41
42
  return true;
42
43
  }
43
- export function normalizeTaskDocVersion(value, fallback = 2) {
44
+ export function normalizeTaskDocVersion(value, fallback = 3) {
44
45
  return value === 3 ? 3 : value === 2 ? 2 : fallback;
45
46
  }
46
47
  export function normalizeVerificationSectionLayout(sectionText, version) {
@@ -89,6 +90,18 @@ export function extractTaskObservationSection(doc, version) {
89
90
  const fallback = primary === "Findings" ? "Notes" : "Findings";
90
91
  return extractDocSection(doc, primary) ?? extractDocSection(doc, fallback);
91
92
  }
93
+ export function resolveWritableDocSections(opts) {
94
+ const required = new Set(opts.requiredSections.map((section) => normalizeDocSectionName(section)));
95
+ const target = normalizeDocSectionName(opts.targetSection);
96
+ const ordered = opts.allowedSections.filter((section) => {
97
+ const key = normalizeDocSectionName(section);
98
+ return required.has(key) || key === target;
99
+ });
100
+ if (target && !ordered.some((section) => normalizeDocSectionName(section) === target)) {
101
+ ordered.push(opts.targetSection);
102
+ }
103
+ return ordered;
104
+ }
92
105
  const DOC_PLACEHOLDER_RE = /<!--\s*TODO\b/i;
93
106
  const DOC_SECTIONS_AUTO_MANAGED = new Set(["verification"]);
94
107
  const DOC_SECTIONS_CONDITIONAL = new Set(["verify steps", "notes"]);
@@ -1,4 +1,5 @@
1
- import type { TaskData } from "../../../backends/task-backend.js";
1
+ import type { TaskSummary } from "../../../backends/task-backend.js";
2
+ import { type DependencyState } from "./dependencies.js";
2
3
  export type TaskListFilters = {
3
4
  status: string[];
4
5
  owner: string[];
@@ -16,5 +17,18 @@ export declare function handleTaskListWarnings(opts: {
16
17
  };
17
18
  strictRead?: boolean;
18
19
  }): void;
19
- export declare function taskTextBlob(task: TaskData): string;
20
+ export type QueryTaskProjectionResult = {
21
+ depState: Map<string, DependencyState>;
22
+ filtered: TaskSummary[];
23
+ items: TaskSummary[];
24
+ };
25
+ export declare function queryTaskProjection(opts: {
26
+ tasks: TaskSummary[];
27
+ filters: TaskListFilters;
28
+ defaultStatuses?: string[];
29
+ match?: (task: TaskSummary) => boolean;
30
+ readyOnly?: boolean;
31
+ limitOrder?: "before-sort" | "after-sort";
32
+ }): QueryTaskProjectionResult;
33
+ export declare function taskTextBlob(task: TaskSummary): string;
20
34
  //# sourceMappingURL=listing.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"listing.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/listing.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAIlE,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,MAAM,EAAE,EACd,IAAI,CAAC,EAAE;IAAE,UAAU,CAAC,EAAE,OAAO,CAAA;CAAE,GAC9B,eAAe,CAkFjB;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE;IAC3C,OAAO,EAAE;QAAE,mBAAmB,CAAC,EAAE,MAAM,MAAM,EAAE,CAAA;KAAE,CAAC;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,GAAG,IAAI,CAcP;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,QAAQ,GAAG,MAAM,CAiBnD"}
1
+ {"version":3,"file":"listing.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/listing.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAGrE,OAAO,EAAwB,KAAK,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAG/E,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,CAAC;AAEF,wBAAgB,oBAAoB,CAClC,IAAI,EAAE,MAAM,EAAE,EACd,IAAI,CAAC,EAAE;IAAE,UAAU,CAAC,EAAE,OAAO,CAAA;CAAE,GAC9B,eAAe,CAkFjB;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE;IAC3C,OAAO,EAAE;QAAE,mBAAmB,CAAC,EAAE,MAAM,MAAM,EAAE,CAAA;KAAE,CAAC;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB,GAAG,IAAI,CAcP;AAgDD,MAAM,MAAM,yBAAyB,GAAG;IACtC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IACvC,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,KAAK,EAAE,WAAW,EAAE,CAAC;CACtB,CAAC;AAEF,wBAAgB,mBAAmB,CAAC,IAAI,EAAE;IACxC,KAAK,EAAE,WAAW,EAAE,CAAC;IACrB,OAAO,EAAE,eAAe,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,KAAK,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,KAAK,OAAO,CAAC;IACvC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,aAAa,GAAG,YAAY,CAAC;CAC3C,GAAG,yBAAyB,CAuB5B;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,WAAW,GAAG,MAAM,CAiBtD"}
@@ -1,6 +1,8 @@
1
1
  import { invalidValueForFlag, missingValueMessage, warnMessage } from "../../../cli/output.js";
2
2
  import { exitCodeForError } from "../../../cli/exit-codes.js";
3
3
  import { CliError } from "../../../shared/errors.js";
4
+ import { dedupeStrings } from "../../../shared/strings.js";
5
+ import { buildDependencyState } from "./dependencies.js";
4
6
  import { toStringArray } from "./tags.js";
5
7
  export function parseTaskListFilters(args, opts) {
6
8
  const out = { status: [], owner: [], tag: [], quiet: false, strictRead: false };
@@ -102,6 +104,60 @@ export function handleTaskListWarnings(opts) {
102
104
  }
103
105
  process.stderr.write(`${warnMessage(message)}\n`);
104
106
  }
107
+ function filterTaskProjectionByStatus(tasks, filters, defaultStatuses) {
108
+ const statuses = filters.status.length > 0
109
+ ? filters.status
110
+ : (defaultStatuses ?? []).filter((status) => status.trim().length > 0);
111
+ if (statuses.length === 0) {
112
+ return tasks;
113
+ }
114
+ const wanted = new Set(statuses.map((status) => status.trim().toUpperCase()));
115
+ return tasks.filter((task) => wanted.has(String(task.status || "TODO").toUpperCase()));
116
+ }
117
+ function filterTaskProjectionByOwner(tasks, filters) {
118
+ if (filters.owner.length === 0) {
119
+ return tasks;
120
+ }
121
+ const wanted = new Set(filters.owner.map((owner) => owner.trim().toUpperCase()));
122
+ return tasks.filter((task) => wanted.has(String(task.owner || "").toUpperCase()));
123
+ }
124
+ function filterTaskProjectionByTag(tasks, filters) {
125
+ if (filters.tag.length === 0) {
126
+ return tasks;
127
+ }
128
+ const wanted = new Set(filters.tag.map((tag) => tag.trim()).filter(Boolean));
129
+ return tasks.filter((task) => {
130
+ const tags = dedupeStrings(toStringArray(task.tags));
131
+ return tags.some((tag) => wanted.has(tag));
132
+ });
133
+ }
134
+ function applyProjectionLimit(items, limit) {
135
+ return limit !== undefined && limit >= 0 ? items.slice(0, limit) : items;
136
+ }
137
+ function sortTaskProjection(tasks) {
138
+ return tasks.toSorted((a, b) => a.id.localeCompare(b.id));
139
+ }
140
+ export function queryTaskProjection(opts) {
141
+ const depState = buildDependencyState(opts.tasks);
142
+ let filtered = filterTaskProjectionByStatus(opts.tasks, opts.filters, opts.defaultStatuses);
143
+ filtered = filterTaskProjectionByOwner(filtered, opts.filters);
144
+ filtered = filterTaskProjectionByTag(filtered, opts.filters);
145
+ if (opts.match) {
146
+ filtered = filtered.filter((task) => opts.match?.(task) ?? false);
147
+ }
148
+ let queried = filtered;
149
+ if (opts.readyOnly) {
150
+ queried = queried.filter((task) => {
151
+ const dep = depState.get(task.id);
152
+ return !dep || (dep.missing.length === 0 && dep.incomplete.length === 0);
153
+ });
154
+ }
155
+ const limitOrder = opts.limitOrder ?? "after-sort";
156
+ const items = limitOrder === "before-sort"
157
+ ? sortTaskProjection(applyProjectionLimit(queried, opts.filters.limit))
158
+ : applyProjectionLimit(sortTaskProjection(queried), opts.filters.limit);
159
+ return { depState, filtered, items };
160
+ }
105
161
  export function taskTextBlob(task) {
106
162
  const parts = [];
107
163
  for (const key of ["id", "title", "description", "status", "priority", "owner"]) {
@@ -0,0 +1,15 @@
1
+ import type { TaskData } from "../../../backends/task-backend.js";
2
+ import type { CommandContext } from "../../shared/task-backend.js";
3
+ import { type ExecuteTaskStatusTransitionRequest, type TaskStatusTransitionExecution } from "./workflow-transition-service.js";
4
+ type TaskStatusTransitionCommandRequest = Omit<ExecuteTaskStatusTransitionRequest, "task" | "backend" | "config">;
5
+ export declare function applyTaskStatusTransitionCommand(opts: {
6
+ ctx: CommandContext;
7
+ taskId: string;
8
+ quiet: boolean;
9
+ build: (current: TaskData) => TaskStatusTransitionCommandRequest | Promise<TaskStatusTransitionCommandRequest>;
10
+ }): Promise<{
11
+ execution: TaskStatusTransitionExecution;
12
+ primaryTag: string;
13
+ }>;
14
+ export {};
15
+ //# sourceMappingURL=transition-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"transition-command.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/transition-command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAGlE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAGnE,OAAO,EAGL,KAAK,kCAAkC,EACvC,KAAK,6BAA6B,EACnC,MAAM,kCAAkC,CAAC;AAE1C,KAAK,kCAAkC,GAAG,IAAI,CAC5C,kCAAkC,EAClC,MAAM,GAAG,SAAS,GAAG,QAAQ,CAC9B,CAAC;AAEF,wBAAsB,gCAAgC,CAAC,IAAI,EAAE;IAC3D,GAAG,EAAE,cAAc,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,OAAO,CAAC;IACf,KAAK,EAAE,CACL,OAAO,EAAE,QAAQ,KACd,kCAAkC,GAAG,OAAO,CAAC,kCAAkC,CAAC,CAAC;CACvF,GAAG,OAAO,CAAC;IACV,SAAS,EAAE,6BAA6B,CAAC;IACzC,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC,CAwCD"}
@@ -0,0 +1,43 @@
1
+ import { CliError } from "../../../shared/errors.js";
2
+ import { applyTaskMutation } from "../../shared/task-mutation.js";
3
+ import { emitTransitionWarnings } from "./transitions.js";
4
+ import { resolvePrimaryTag, toStringArray } from "./tags.js";
5
+ import { executeTaskStatusTransitionRequest, readDeferredTaskTransitionWarnings, } from "./workflow-transition-service.js";
6
+ export async function applyTaskStatusTransitionCommand(opts) {
7
+ let execution = null;
8
+ let primaryTag = "meta";
9
+ let deferredWarnings = [];
10
+ try {
11
+ await applyTaskMutation({
12
+ ctx: opts.ctx,
13
+ taskId: opts.taskId,
14
+ build: async (current) => {
15
+ const request = await opts.build(current);
16
+ execution = await executeTaskStatusTransitionRequest({
17
+ ...request,
18
+ task: current,
19
+ backend: opts.ctx.taskBackend,
20
+ config: opts.ctx.config,
21
+ });
22
+ primaryTag = resolvePrimaryTag(toStringArray(current.tags), opts.ctx).primary;
23
+ deferredWarnings = execution.deferredWarnings;
24
+ return { intents: execution.intents };
25
+ },
26
+ });
27
+ }
28
+ catch (error) {
29
+ emitTransitionWarnings(readDeferredTaskTransitionWarnings(error).length > 0
30
+ ? readDeferredTaskTransitionWarnings(error)
31
+ : deferredWarnings, opts.quiet);
32
+ throw error;
33
+ }
34
+ emitTransitionWarnings(deferredWarnings, opts.quiet);
35
+ if (!execution) {
36
+ throw new CliError({
37
+ exitCode: 4,
38
+ code: "E_IO",
39
+ message: `Task transition produced no execution state: ${opts.taskId}`,
40
+ });
41
+ }
42
+ return { execution, primaryTag };
43
+ }
@@ -1,5 +1,6 @@
1
1
  import type { AgentplaneConfig } from "@agentplaneorg/core";
2
2
  import type { TaskData, TaskEvent } from "../../../backends/task-backend.js";
3
+ import type { CommandContext } from "../../shared/task-backend.js";
3
4
  export declare function appendTaskEvent(task: TaskData, event: TaskEvent): TaskEvent[];
4
5
  export declare function ensurePlanApprovedIfRequired(task: TaskData, config: AgentplaneConfig): void;
5
6
  export declare function ensureVerificationSatisfiedIfRequired(task: TaskData, config: AgentplaneConfig): void;
@@ -18,7 +19,54 @@ export declare function ensureCommentCommitAllowed(opts: {
18
19
  statusFrom: string;
19
20
  statusTo: string;
20
21
  }): void;
22
+ export declare function emitTransitionWarnings(warnings: readonly string[], quiet: boolean): void;
23
+ export declare function resolveCommentCommitWarning(opts: {
24
+ enabled: boolean;
25
+ config: AgentplaneConfig;
26
+ action: string;
27
+ confirmed: boolean;
28
+ quiet: boolean;
29
+ statusFrom: string;
30
+ statusTo: string;
31
+ }): string | null;
21
32
  export declare function requireStructuredComment(body: string, prefix: string, minChars: number): void;
33
+ export declare function prepareTaskTransitionComment(opts: {
34
+ body?: string;
35
+ enabled: boolean;
36
+ config: AgentplaneConfig;
37
+ }): {
38
+ formattedComment: string | null;
39
+ commentBody: string | undefined;
40
+ };
41
+ export declare function resolveTaskTransitionExecutorAgent(opts: {
42
+ ctx: Pick<CommandContext, "config" | "resolvedProject">;
43
+ taskId: string;
44
+ author?: string;
45
+ }): Promise<string | undefined>;
46
+ export declare function runTaskTransitionCommentCommit(opts: {
47
+ ctx: CommandContext;
48
+ cwd: string;
49
+ rootOverride?: string;
50
+ taskId: string;
51
+ primaryTag: string;
52
+ author?: string;
53
+ statusFrom?: string;
54
+ statusTo?: string;
55
+ commentBody: string;
56
+ formattedComment: string | null;
57
+ emoji: string;
58
+ allow: string[];
59
+ autoAllow: boolean;
60
+ allowTasks: boolean;
61
+ requireClean: boolean;
62
+ quiet: boolean;
63
+ progressMessage?: string;
64
+ resolveExecutorAgent?: boolean;
65
+ }): Promise<{
66
+ hash: string;
67
+ message: string;
68
+ staged: string[];
69
+ }>;
22
70
  export declare function readHeadCommit(cwd: string): Promise<{
23
71
  hash: string;
24
72
  message: string;
@@ -31,6 +79,14 @@ export declare function enforceStatusCommitPolicy(opts: {
31
79
  statusFrom: string;
32
80
  statusTo: string;
33
81
  }): void;
82
+ export declare function resolveStatusCommitPolicyWarning(opts: {
83
+ policy: AgentplaneConfig["status_commit_policy"];
84
+ action: string;
85
+ confirmed: boolean;
86
+ quiet: boolean;
87
+ statusFrom: string;
88
+ statusTo: string;
89
+ }): string | null;
34
90
  export declare function isMajorStatusCommitTransition(statusFrom: string, statusTo: string): boolean;
35
91
  export declare function readCommitInfo(cwd: string, rev: string): Promise<{
36
92
  hash: string;
@@ -1 +1 @@
1
- {"version":3,"file":"transitions.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/transitions.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AAK5D,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAK7E,wBAAgB,eAAe,CAAC,IAAI,EAAE,QAAQ,EAAE,KAAK,EAAE,SAAS,GAAG,SAAS,EAAE,CAW7E;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAc3F;AAED,wBAAgB,qCAAqC,CACnD,IAAI,EAAE,QAAQ,EACd,MAAM,EAAE,gBAAgB,GACvB,IAAI,CAkBN;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAO1E;AAED,wBAAgB,6BAA6B,CAAC,IAAI,EAAE;IAClD,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;CAChB,GAAG,IAAI,CAUP;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE;IAC/C,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,gBAAgB,CAAC;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CAClB,GAAG,IAAI,CAmBP;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAgB7F;AAED,wBAAsB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC,CAI5F;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE;IAC9C,MAAM,EAAE,gBAAgB,CAAC,sBAAsB,CAAC,CAAC;IACjD,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,OAAO,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CAClB,GAAG,IAAI,CA8BP;AAUD,wBAAgB,6BAA6B,CAAC,UAAU,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAK3F;AAED,wBAAsB,cAAc,CAClC,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,GACV,OAAO,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC,CAI5C;AAED,wBAAgB,2BAA2B,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAMlE"}
1
+ {"version":3,"file":"transitions.d.ts","sourceRoot":"","sources":["../../../../src/commands/task/shared/transitions.ts"],"names":[],"mappings":"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"}