takt 0.3.9 → 0.4.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 (309) hide show
  1. package/README.md +364 -325
  2. package/dist/agents/index.d.ts +1 -1
  3. package/dist/agents/index.d.ts.map +1 -1
  4. package/dist/agents/index.js +1 -1
  5. package/dist/agents/index.js.map +1 -1
  6. package/dist/agents/runner.d.ts +0 -1
  7. package/dist/agents/runner.d.ts.map +1 -1
  8. package/dist/agents/runner.js +6 -5
  9. package/dist/agents/runner.js.map +1 -1
  10. package/dist/agents/types.d.ts +3 -1
  11. package/dist/agents/types.d.ts.map +1 -1
  12. package/dist/app/cli/commands.d.ts +1 -1
  13. package/dist/app/cli/commands.js +9 -1
  14. package/dist/app/cli/commands.js.map +1 -1
  15. package/dist/app/cli/routing.js +1 -0
  16. package/dist/app/cli/routing.js.map +1 -1
  17. package/dist/core/models/index.d.ts +1 -1
  18. package/dist/core/models/index.d.ts.map +1 -1
  19. package/dist/core/models/schemas.d.ts +8 -6
  20. package/dist/core/models/schemas.d.ts.map +1 -1
  21. package/dist/core/models/schemas.js +16 -15
  22. package/dist/core/models/schemas.js.map +1 -1
  23. package/dist/core/models/types.d.ts +1 -1
  24. package/dist/core/models/types.d.ts.map +1 -1
  25. package/dist/core/models/workflow-types.d.ts +26 -24
  26. package/dist/core/models/workflow-types.d.ts.map +1 -1
  27. package/dist/core/workflow/constants.d.ts +7 -7
  28. package/dist/core/workflow/constants.d.ts.map +1 -1
  29. package/dist/core/workflow/constants.js +7 -7
  30. package/dist/core/workflow/constants.js.map +1 -1
  31. package/dist/core/workflow/engine/MovementExecutor.d.ts +59 -0
  32. package/dist/core/workflow/engine/MovementExecutor.d.ts.map +1 -0
  33. package/dist/core/workflow/engine/{StepExecutor.js → MovementExecutor.js} +30 -25
  34. package/dist/core/workflow/engine/MovementExecutor.js.map +1 -0
  35. package/dist/core/workflow/engine/OptionsBuilder.d.ts +6 -6
  36. package/dist/core/workflow/engine/OptionsBuilder.d.ts.map +1 -1
  37. package/dist/core/workflow/engine/OptionsBuilder.js +8 -3
  38. package/dist/core/workflow/engine/OptionsBuilder.js.map +1 -1
  39. package/dist/core/workflow/engine/ParallelRunner.d.ts +12 -10
  40. package/dist/core/workflow/engine/ParallelRunner.d.ts.map +1 -1
  41. package/dist/core/workflow/engine/ParallelRunner.js +46 -41
  42. package/dist/core/workflow/engine/ParallelRunner.js.map +1 -1
  43. package/dist/core/workflow/engine/WorkflowEngine.d.ts +16 -16
  44. package/dist/core/workflow/engine/WorkflowEngine.d.ts.map +1 -1
  45. package/dist/core/workflow/engine/WorkflowEngine.js +105 -92
  46. package/dist/core/workflow/engine/WorkflowEngine.js.map +1 -1
  47. package/dist/core/workflow/engine/blocked-handler.d.ts +3 -3
  48. package/dist/core/workflow/engine/blocked-handler.d.ts.map +1 -1
  49. package/dist/core/workflow/engine/blocked-handler.js +2 -2
  50. package/dist/core/workflow/engine/blocked-handler.js.map +1 -1
  51. package/dist/core/workflow/engine/index.d.ts +2 -1
  52. package/dist/core/workflow/engine/index.d.ts.map +1 -1
  53. package/dist/core/workflow/engine/index.js +1 -1
  54. package/dist/core/workflow/engine/index.js.map +1 -1
  55. package/dist/core/workflow/engine/loop-detector.d.ts +5 -5
  56. package/dist/core/workflow/engine/loop-detector.d.ts.map +1 -1
  57. package/dist/core/workflow/engine/loop-detector.js +8 -8
  58. package/dist/core/workflow/engine/loop-detector.js.map +1 -1
  59. package/dist/core/workflow/engine/parallel-logger.d.ts +15 -15
  60. package/dist/core/workflow/engine/parallel-logger.d.ts.map +1 -1
  61. package/dist/core/workflow/engine/parallel-logger.js +22 -21
  62. package/dist/core/workflow/engine/parallel-logger.js.map +1 -1
  63. package/dist/core/workflow/engine/state-manager.d.ts +6 -6
  64. package/dist/core/workflow/engine/state-manager.d.ts.map +1 -1
  65. package/dist/core/workflow/engine/state-manager.js +15 -16
  66. package/dist/core/workflow/engine/state-manager.js.map +1 -1
  67. package/dist/core/workflow/engine/transitions.d.ts +5 -5
  68. package/dist/core/workflow/engine/transitions.d.ts.map +1 -1
  69. package/dist/core/workflow/engine/transitions.js +4 -4
  70. package/dist/core/workflow/engine/transitions.js.map +1 -1
  71. package/dist/core/workflow/evaluation/AggregateEvaluator.d.ts +15 -15
  72. package/dist/core/workflow/evaluation/AggregateEvaluator.d.ts.map +1 -1
  73. package/dist/core/workflow/evaluation/AggregateEvaluator.js +35 -33
  74. package/dist/core/workflow/evaluation/AggregateEvaluator.js.map +1 -1
  75. package/dist/core/workflow/evaluation/RuleEvaluator.d.ts +8 -8
  76. package/dist/core/workflow/evaluation/RuleEvaluator.d.ts.map +1 -1
  77. package/dist/core/workflow/evaluation/RuleEvaluator.js +18 -14
  78. package/dist/core/workflow/evaluation/RuleEvaluator.js.map +1 -1
  79. package/dist/core/workflow/evaluation/index.d.ts +4 -4
  80. package/dist/core/workflow/evaluation/index.d.ts.map +1 -1
  81. package/dist/core/workflow/evaluation/index.js +1 -1
  82. package/dist/core/workflow/evaluation/index.js.map +1 -1
  83. package/dist/core/workflow/evaluation/rule-utils.d.ts +4 -4
  84. package/dist/core/workflow/evaluation/rule-utils.d.ts.map +1 -1
  85. package/dist/core/workflow/evaluation/rule-utils.js +2 -2
  86. package/dist/core/workflow/evaluation/rule-utils.js.map +1 -1
  87. package/dist/core/workflow/index.d.ts +6 -6
  88. package/dist/core/workflow/index.d.ts.map +1 -1
  89. package/dist/core/workflow/index.js +5 -5
  90. package/dist/core/workflow/index.js.map +1 -1
  91. package/dist/core/workflow/instruction/InstructionBuilder.d.ts +17 -15
  92. package/dist/core/workflow/instruction/InstructionBuilder.d.ts.map +1 -1
  93. package/dist/core/workflow/instruction/InstructionBuilder.js +105 -120
  94. package/dist/core/workflow/instruction/InstructionBuilder.js.map +1 -1
  95. package/dist/core/workflow/instruction/ReportInstructionBuilder.d.ts +10 -11
  96. package/dist/core/workflow/instruction/ReportInstructionBuilder.d.ts.map +1 -1
  97. package/dist/core/workflow/instruction/ReportInstructionBuilder.js +38 -84
  98. package/dist/core/workflow/instruction/ReportInstructionBuilder.js.map +1 -1
  99. package/dist/core/workflow/instruction/StatusJudgmentBuilder.d.ts +6 -5
  100. package/dist/core/workflow/instruction/StatusJudgmentBuilder.d.ts.map +1 -1
  101. package/dist/core/workflow/instruction/StatusJudgmentBuilder.js +14 -22
  102. package/dist/core/workflow/instruction/StatusJudgmentBuilder.js.map +1 -1
  103. package/dist/core/workflow/instruction/escape.d.ts +3 -3
  104. package/dist/core/workflow/instruction/escape.d.ts.map +1 -1
  105. package/dist/core/workflow/instruction/escape.js +3 -3
  106. package/dist/core/workflow/instruction/escape.js.map +1 -1
  107. package/dist/core/workflow/instruction/instruction-context.d.ts +16 -49
  108. package/dist/core/workflow/instruction/instruction-context.d.ts.map +1 -1
  109. package/dist/core/workflow/instruction/instruction-context.js +17 -62
  110. package/dist/core/workflow/instruction/instruction-context.js.map +1 -1
  111. package/dist/core/workflow/instruction/status-rules.d.ts +19 -14
  112. package/dist/core/workflow/instruction/status-rules.d.ts.map +1 -1
  113. package/dist/core/workflow/instruction/status-rules.js +47 -66
  114. package/dist/core/workflow/instruction/status-rules.js.map +1 -1
  115. package/dist/core/workflow/phase-runner.d.ts +14 -8
  116. package/dist/core/workflow/phase-runner.d.ts.map +1 -1
  117. package/dist/core/workflow/phase-runner.js +75 -78
  118. package/dist/core/workflow/phase-runner.js.map +1 -1
  119. package/dist/core/workflow/types.d.ts +15 -12
  120. package/dist/core/workflow/types.d.ts.map +1 -1
  121. package/dist/features/config/ejectBuiltin.js +3 -3
  122. package/dist/features/config/ejectBuiltin.js.map +1 -1
  123. package/dist/features/interactive/interactive.d.ts.map +1 -1
  124. package/dist/features/interactive/interactive.js +38 -169
  125. package/dist/features/interactive/interactive.js.map +1 -1
  126. package/dist/features/prompt/index.d.ts +5 -0
  127. package/dist/features/prompt/index.d.ts.map +1 -0
  128. package/dist/features/prompt/index.js +5 -0
  129. package/dist/features/prompt/index.js.map +1 -0
  130. package/dist/features/prompt/preview.d.ts +14 -0
  131. package/dist/features/prompt/preview.d.ts.map +1 -0
  132. package/dist/features/prompt/preview.js +74 -0
  133. package/dist/features/prompt/preview.js.map +1 -0
  134. package/dist/features/tasks/add/index.d.ts +6 -9
  135. package/dist/features/tasks/add/index.d.ts.map +1 -1
  136. package/dist/features/tasks/add/index.js +23 -55
  137. package/dist/features/tasks/add/index.js.map +1 -1
  138. package/dist/features/tasks/execute/selectAndExecute.d.ts.map +1 -1
  139. package/dist/features/tasks/execute/selectAndExecute.js +1 -0
  140. package/dist/features/tasks/execute/selectAndExecute.js.map +1 -1
  141. package/dist/features/tasks/execute/taskExecution.d.ts.map +1 -1
  142. package/dist/features/tasks/execute/taskExecution.js +4 -3
  143. package/dist/features/tasks/execute/taskExecution.js.map +1 -1
  144. package/dist/features/tasks/execute/types.d.ts +13 -0
  145. package/dist/features/tasks/execute/types.d.ts.map +1 -1
  146. package/dist/features/tasks/execute/workflowExecution.d.ts.map +1 -1
  147. package/dist/features/tasks/execute/workflowExecution.js +63 -18
  148. package/dist/features/tasks/execute/workflowExecution.js.map +1 -1
  149. package/dist/features/tasks/index.d.ts +1 -1
  150. package/dist/features/tasks/index.d.ts.map +1 -1
  151. package/dist/features/tasks/index.js +1 -1
  152. package/dist/features/tasks/index.js.map +1 -1
  153. package/dist/features/tasks/list/index.d.ts.map +1 -1
  154. package/dist/features/tasks/list/index.js +0 -1
  155. package/dist/features/tasks/list/index.js.map +1 -1
  156. package/dist/features/tasks/list/taskActions.d.ts +1 -0
  157. package/dist/features/tasks/list/taskActions.d.ts.map +1 -1
  158. package/dist/features/tasks/list/taskActions.js +24 -1
  159. package/dist/features/tasks/list/taskActions.js.map +1 -1
  160. package/dist/features/workflowSelection/index.js +1 -1
  161. package/dist/features/workflowSelection/index.js.map +1 -1
  162. package/dist/index.d.ts +3 -3
  163. package/dist/index.d.ts.map +1 -1
  164. package/dist/index.js +1 -1
  165. package/dist/index.js.map +1 -1
  166. package/dist/infra/claude/client.d.ts +1 -1
  167. package/dist/infra/claude/client.d.ts.map +1 -1
  168. package/dist/infra/claude/client.js +6 -24
  169. package/dist/infra/claude/client.js.map +1 -1
  170. package/dist/infra/claude/executor.d.ts +0 -1
  171. package/dist/infra/claude/executor.d.ts.map +1 -1
  172. package/dist/infra/claude/executor.js +0 -2
  173. package/dist/infra/claude/executor.js.map +1 -1
  174. package/dist/infra/claude/index.js +2 -2
  175. package/dist/infra/claude/index.js.map +1 -1
  176. package/dist/infra/claude/options-builder.js +4 -4
  177. package/dist/infra/claude/options-builder.js.map +1 -1
  178. package/dist/infra/claude/process.d.ts +1 -1
  179. package/dist/infra/claude/process.d.ts.map +1 -1
  180. package/dist/infra/claude/process.js +1 -1
  181. package/dist/infra/claude/process.js.map +1 -1
  182. package/dist/infra/claude/query-manager.d.ts +1 -1
  183. package/dist/infra/claude/query-manager.d.ts.map +1 -1
  184. package/dist/infra/claude/query-manager.js +1 -2
  185. package/dist/infra/claude/query-manager.js.map +1 -1
  186. package/dist/infra/claude/stream-converter.d.ts +2 -2
  187. package/dist/infra/claude/stream-converter.js +2 -2
  188. package/dist/infra/claude/types.d.ts +1 -1
  189. package/dist/infra/claude/types.d.ts.map +1 -1
  190. package/dist/infra/codex/client.d.ts.map +1 -1
  191. package/dist/infra/codex/client.js +0 -1
  192. package/dist/infra/codex/client.js.map +1 -1
  193. package/dist/infra/config/global/globalConfig.d.ts.map +1 -1
  194. package/dist/infra/config/global/globalConfig.js +0 -1
  195. package/dist/infra/config/global/globalConfig.js.map +1 -1
  196. package/dist/infra/config/loaders/agentLoader.d.ts +1 -1
  197. package/dist/infra/config/loaders/agentLoader.d.ts.map +1 -1
  198. package/dist/infra/config/loaders/agentLoader.js +6 -5
  199. package/dist/infra/config/loaders/agentLoader.js.map +1 -1
  200. package/dist/infra/config/loaders/loader.d.ts +1 -1
  201. package/dist/infra/config/loaders/loader.js +1 -1
  202. package/dist/infra/config/loaders/workflowParser.d.ts.map +1 -1
  203. package/dist/infra/config/loaders/workflowParser.js +9 -5
  204. package/dist/infra/config/loaders/workflowParser.js.map +1 -1
  205. package/dist/infra/config/loaders/workflowResolver.d.ts +4 -4
  206. package/dist/infra/config/loaders/workflowResolver.js +11 -11
  207. package/dist/infra/config/loaders/workflowResolver.js.map +1 -1
  208. package/dist/infra/config/paths.d.ts +4 -4
  209. package/dist/infra/config/paths.d.ts.map +1 -1
  210. package/dist/infra/config/paths.js +7 -7
  211. package/dist/infra/config/paths.js.map +1 -1
  212. package/dist/infra/config/project/index.d.ts +1 -1
  213. package/dist/infra/config/project/index.d.ts.map +1 -1
  214. package/dist/infra/config/project/index.js.map +1 -1
  215. package/dist/infra/config/project/projectConfig.d.ts +2 -2
  216. package/dist/infra/config/project/projectConfig.d.ts.map +1 -1
  217. package/dist/infra/config/types.d.ts +0 -2
  218. package/dist/infra/config/types.d.ts.map +1 -1
  219. package/dist/infra/fs/index.d.ts +1 -1
  220. package/dist/infra/fs/index.d.ts.map +1 -1
  221. package/dist/infra/fs/index.js.map +1 -1
  222. package/dist/infra/fs/session.d.ts +1 -1
  223. package/dist/infra/fs/session.d.ts.map +1 -1
  224. package/dist/infra/fs/session.js +0 -1
  225. package/dist/infra/fs/session.js.map +1 -1
  226. package/dist/infra/providers/index.d.ts.map +1 -1
  227. package/dist/infra/providers/index.js +0 -1
  228. package/dist/infra/providers/index.js.map +1 -1
  229. package/dist/infra/task/autoCommit.js +1 -1
  230. package/dist/infra/task/autoCommit.js.map +1 -1
  231. package/dist/infra/task/branchList.d.ts +4 -2
  232. package/dist/infra/task/branchList.d.ts.map +1 -1
  233. package/dist/infra/task/branchList.js +87 -9
  234. package/dist/infra/task/branchList.js.map +1 -1
  235. package/dist/infra/task/clone.js +1 -1
  236. package/dist/infra/task/clone.js.map +1 -1
  237. package/dist/infra/task/parser.d.ts +1 -1
  238. package/dist/infra/task/parser.js +1 -1
  239. package/dist/infra/task/summarize.d.ts.map +1 -1
  240. package/dist/infra/task/summarize.js +3 -15
  241. package/dist/infra/task/summarize.js.map +1 -1
  242. package/dist/infra/task/types.d.ts +1 -0
  243. package/dist/infra/task/types.d.ts.map +1 -1
  244. package/dist/shared/context.d.ts.map +1 -1
  245. package/dist/shared/context.js +0 -1
  246. package/dist/shared/context.js.map +1 -1
  247. package/dist/shared/i18n/index.d.ts +31 -0
  248. package/dist/shared/i18n/index.d.ts.map +1 -0
  249. package/dist/shared/i18n/index.js +97 -0
  250. package/dist/shared/i18n/index.js.map +1 -0
  251. package/dist/shared/i18n/labels_en.yaml +37 -0
  252. package/dist/shared/i18n/labels_ja.yaml +37 -0
  253. package/dist/shared/prompt/select.d.ts +0 -3
  254. package/dist/shared/prompt/select.d.ts.map +1 -1
  255. package/dist/shared/prompt/select.js +5 -20
  256. package/dist/shared/prompt/select.js.map +1 -1
  257. package/dist/shared/prompts/en/perform_agent_system_prompt.md +7 -0
  258. package/dist/shared/prompts/en/perform_builtin_agent_system_prompt.md +7 -0
  259. package/dist/shared/prompts/en/perform_judge_message.md +24 -0
  260. package/dist/shared/prompts/en/perform_phase1_message.md +45 -0
  261. package/dist/shared/prompts/en/perform_phase2_message.md +31 -0
  262. package/dist/shared/prompts/en/perform_phase3_message.md +19 -0
  263. package/dist/shared/prompts/en/score_interactive_system_prompt.md +53 -0
  264. package/dist/shared/prompts/en/score_slug_system_prompt.md +19 -0
  265. package/dist/shared/prompts/en/score_summary_system_prompt.md +25 -0
  266. package/dist/shared/prompts/index.d.ts +27 -0
  267. package/dist/shared/prompts/index.d.ts.map +1 -0
  268. package/dist/shared/prompts/index.js +111 -0
  269. package/dist/shared/prompts/index.js.map +1 -0
  270. package/dist/shared/prompts/ja/perform_agent_system_prompt.md +7 -0
  271. package/dist/shared/prompts/ja/perform_builtin_agent_system_prompt.md +7 -0
  272. package/dist/shared/prompts/ja/perform_judge_message.md +24 -0
  273. package/dist/shared/prompts/ja/perform_phase1_message.md +44 -0
  274. package/dist/shared/prompts/ja/perform_phase2_message.md +30 -0
  275. package/dist/shared/prompts/ja/perform_phase3_message.md +19 -0
  276. package/dist/shared/prompts/ja/score_interactive_system_prompt.md +59 -0
  277. package/dist/shared/prompts/ja/score_slug_system_prompt.md +19 -0
  278. package/dist/shared/prompts/ja/score_summary_system_prompt.md +32 -0
  279. package/dist/shared/ui/LogManager.d.ts +1 -1
  280. package/dist/shared/ui/LogManager.d.ts.map +1 -1
  281. package/dist/shared/ui/LogManager.js +1 -2
  282. package/dist/shared/ui/LogManager.js.map +1 -1
  283. package/dist/shared/utils/debug.js +1 -1
  284. package/dist/shared/utils/debug.js.map +1 -1
  285. package/dist/shared/utils/types.d.ts +29 -1
  286. package/dist/shared/utils/types.d.ts.map +1 -1
  287. package/package.json +2 -2
  288. package/resources/global/en/{workflows → pieces}/default.yaml +16 -16
  289. package/resources/global/en/{workflows → pieces}/expert-cqrs.yaml +17 -17
  290. package/resources/global/en/{workflows → pieces}/expert.yaml +20 -20
  291. package/resources/global/en/{workflows → pieces}/magi.yaml +4 -4
  292. package/resources/global/en/{workflows → pieces}/minimal.yaml +7 -7
  293. package/resources/global/en/{workflows → pieces}/research.yaml +11 -11
  294. package/resources/global/en/{workflows → pieces}/review-fix-minimal.yaml +8 -8
  295. package/resources/global/en/{workflows → pieces}/review-only.yaml +7 -7
  296. package/resources/global/ja/agents/default/architecture-reviewer.md +3 -3
  297. package/resources/global/ja/agents/default/supervisor.md +1 -1
  298. package/resources/global/ja/agents/templates/planner.md +1 -1
  299. package/resources/global/ja/{workflows → pieces}/default.yaml +12 -12
  300. package/resources/global/ja/{workflows → pieces}/expert-cqrs.yaml +18 -18
  301. package/resources/global/ja/{workflows → pieces}/expert.yaml +15 -15
  302. package/resources/global/ja/{workflows → pieces}/magi.yaml +4 -4
  303. package/resources/global/ja/{workflows → pieces}/minimal.yaml +8 -8
  304. package/resources/global/ja/{workflows → pieces}/research.yaml +11 -11
  305. package/resources/global/ja/{workflows → pieces}/review-fix-minimal.yaml +8 -8
  306. package/resources/global/ja/{workflows → pieces}/review-only.yaml +7 -7
  307. package/dist/core/workflow/engine/StepExecutor.d.ts +0 -52
  308. package/dist/core/workflow/engine/StepExecutor.d.ts.map +0 -1
  309. package/dist/core/workflow/engine/StepExecutor.js.map +0 -1
@@ -14,17 +14,17 @@
14
14
  #
15
15
  # Boilerplate sections (Workflow Context, User Request, Previous Response,
16
16
  # Additional User Inputs, Instructions heading) are auto-injected by buildInstruction().
17
- # Only step-specific content belongs in instruction_template.
17
+ # Only movement-specific content belongs in instruction_template.
18
18
  #
19
19
  # Template Variables (available in instruction_template):
20
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
20
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
21
21
  # {max_iterations} - Maximum iterations allowed for the workflow
22
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
23
- # {previous_response} - Output from the previous step (only when pass_previous_response: true)
22
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
23
+ # {previous_response} - Output from the previous movement (only when pass_previous_response: true)
24
24
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
25
25
  #
26
- # Step-level Fields:
27
- # report: - Report file(s) for the step (auto-injected as Report File/Files in Workflow Context)
26
+ # Movement-level Fields:
27
+ # report: - Report file(s) for the movement (auto-injected as Report File/Files in Workflow Context)
28
28
  # Single: report: 00-plan.md
29
29
  # Multiple: report:
30
30
  # - Scope: 01-coder-scope.md
@@ -35,11 +35,11 @@ description: Architecture, Frontend, Security, QA Expert Review
35
35
 
36
36
  max_iterations: 30
37
37
 
38
- initial_step: plan
38
+ initial_movement: plan
39
39
 
40
- steps:
40
+ movements:
41
41
  # ===========================================
42
- # Phase 0: Planning
42
+ # Movement 0: Planning
43
43
  # ===========================================
44
44
  - name: plan
45
45
  edit: false
@@ -77,7 +77,7 @@ steps:
77
77
  instruction_template: |
78
78
  Analyze the task and create an implementation plan.
79
79
 
80
- **Note:** If returned from implement step (Previous Response exists),
80
+ **Note:** If returned from implement movement (Previous Response exists),
81
81
  review and revise the plan based on that feedback (replan).
82
82
 
83
83
  **Tasks:**
@@ -92,7 +92,7 @@ steps:
92
92
  next: ABORT
93
93
 
94
94
  # ===========================================
95
- # Phase 1: Implementation
95
+ # Movement 1: Implementation
96
96
  # ===========================================
97
97
  - name: implement
98
98
  edit: true
@@ -111,7 +111,7 @@ steps:
111
111
  - WebSearch
112
112
  - WebFetch
113
113
  instruction_template: |
114
- Follow the plan from the plan step and implement.
114
+ Follow the plan from the plan movement and implement.
115
115
  Refer to the plan report ({report:00-plan.md}) and proceed with implementation.
116
116
  Use only the Report Directory files shown in Workflow Context. Do not search or open reports outside that directory.
117
117
 
@@ -165,7 +165,7 @@ steps:
165
165
  interactive_only: true
166
166
 
167
167
  # ===========================================
168
- # Phase 2: AI Review
168
+ # Movement 2: AI Review
169
169
  # ===========================================
170
170
  - name: ai_review
171
171
  edit: false
@@ -231,7 +231,7 @@ steps:
231
231
  - WebSearch
232
232
  - WebFetch
233
233
  instruction_template: |
234
- **This is AI Review iteration {step_iteration}.**
234
+ **This is AI Review iteration {movement_iteration}.**
235
235
 
236
236
  If this is iteration 2 or later, it means your previous fixes were not actually applied.
237
237
  **Your belief that you "already fixed it" is wrong.**
@@ -284,7 +284,7 @@ steps:
284
284
  next: plan
285
285
 
286
286
  # ===========================================
287
- # Phase 3: Expert Reviews (Parallel)
287
+ # Movement 3: Expert Reviews (Parallel)
288
288
  # ===========================================
289
289
  - name: reviewers
290
290
  parallel:
@@ -335,7 +335,7 @@ steps:
335
335
  - condition: approved
336
336
  - condition: needs_fix
337
337
  instruction_template: |
338
- Focus on **architecture and design** review. Do NOT review AI-specific issues (that's the ai_review step).
338
+ Focus on **architecture and design** review. Do NOT review AI-specific issues (that's the ai_review movement).
339
339
 
340
340
  **Review Criteria:**
341
341
  - Structure/design validity
@@ -395,7 +395,7 @@ steps:
395
395
  - TypeScript type safety
396
396
 
397
397
  **Note**: If this project does not include frontend code,
398
- approve and proceed to the next step.
398
+ approve and proceed to the next movement.
399
399
 
400
400
  - name: security-review
401
401
  edit: false
@@ -538,7 +538,7 @@ steps:
538
538
  pass_previous_response: true
539
539
 
540
540
  # ===========================================
541
- # Phase 4: Supervision
541
+ # Movement 4: Supervision
542
542
  # ===========================================
543
543
  - name: supervise
544
544
  edit: false
@@ -554,7 +554,7 @@ steps:
554
554
  - WebFetch
555
555
  instruction_template: |
556
556
  ## Previous Reviews Summary
557
- Reaching this step means all the following reviews have been APPROVED:
557
+ Reaching this movement means all the following reviews have been APPROVED:
558
558
  - Architecture Review: APPROVED
559
559
  - Frontend Review: APPROVED
560
560
  - AI Review: APPROVED
@@ -565,7 +565,7 @@ steps:
565
565
 
566
566
  **Workflow Overall Review:**
567
567
  1. Does the implementation match the plan ({report:00-plan.md})?
568
- 2. Were all review step issues addressed?
568
+ 2. Were all review movement issues addressed?
569
569
  3. Was the original task objective achieved?
570
570
 
571
571
  **Review Reports:** Read all reports in Report Directory and
@@ -3,11 +3,11 @@
3
3
  # Three personas (scientist, nurturer, pragmatist) analyze from different perspectives and vote
4
4
  #
5
5
  # Template Variables:
6
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
6
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
7
7
  # {max_iterations} - Maximum iterations allowed for the workflow
8
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
8
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
9
9
  # {task} - Original user request
10
- # {previous_response} - Output from the previous step
10
+ # {previous_response} - Output from the previous movement
11
11
  # {user_inputs} - Accumulated user inputs during workflow
12
12
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
13
13
 
@@ -16,7 +16,7 @@ description: MAGI Deliberation System - Analyze from 3 perspectives and decide b
16
16
 
17
17
  max_iterations: 5
18
18
 
19
- steps:
19
+ movements:
20
20
  - name: melchior
21
21
  agent: ../agents/magi/melchior.md
22
22
  allowed_tools:
@@ -3,11 +3,11 @@
3
3
  # (Simplest configuration - no plan, no architect review)
4
4
  #
5
5
  # Template Variables (auto-injected):
6
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
6
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
7
7
  # {max_iterations} - Maximum iterations allowed for the workflow
8
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
8
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
9
9
  # {task} - Original user request (auto-injected)
10
- # {previous_response} - Output from the previous step (auto-injected)
10
+ # {previous_response} - Output from the previous movement (auto-injected)
11
11
  # {user_inputs} - Accumulated user inputs during workflow (auto-injected)
12
12
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
13
13
 
@@ -16,9 +16,9 @@ description: Minimal development workflow (implement -> parallel review -> fix i
16
16
 
17
17
  max_iterations: 20
18
18
 
19
- initial_step: implement
19
+ initial_movement: implement
20
20
 
21
- steps:
21
+ movements:
22
22
  - name: implement
23
23
  edit: true
24
24
  agent: ../agents/default/coder.md
@@ -248,7 +248,7 @@ steps:
248
248
  - condition: No fix needed (verified target files/spec)
249
249
  - condition: Cannot proceed, insufficient info
250
250
  instruction_template: |
251
- **This is AI Review iteration {step_iteration}.**
251
+ **This is AI Review iteration {movement_iteration}.**
252
252
 
253
253
  If this is iteration 2 or later, it means your previous fixes were not actually applied.
254
254
  **Your belief that you "already fixed it" is wrong.**
@@ -350,7 +350,7 @@ steps:
350
350
  - condition: Cannot proceed, insufficient info
351
351
  next: implement
352
352
  instruction_template: |
353
- **This is AI Review iteration {step_iteration}.**
353
+ **This is AI Review iteration {movement_iteration}.**
354
354
 
355
355
  If this is iteration 2 or later, it means your previous fixes were not actually applied.
356
356
  **Your belief that you "already fixed it" is wrong.**
@@ -7,11 +7,11 @@
7
7
  # -> plan (rejected: restart from planning)
8
8
  #
9
9
  # Template Variables:
10
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
10
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
11
11
  # {max_iterations} - Maximum iterations allowed for the workflow
12
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
12
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
13
13
  # {task} - Original user request
14
- # {previous_response} - Output from the previous step
14
+ # {previous_response} - Output from the previous movement
15
15
  # {user_inputs} - Accumulated user inputs during workflow
16
16
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
17
17
 
@@ -20,7 +20,7 @@ description: Research workflow - autonomously executes research without asking q
20
20
 
21
21
  max_iterations: 10
22
22
 
23
- steps:
23
+ movements:
24
24
  - name: plan
25
25
  agent: ../agents/research/planner.md
26
26
  allowed_tools:
@@ -32,8 +32,8 @@ steps:
32
32
  instruction_template: |
33
33
  ## Workflow Status
34
34
  - Iteration: {iteration}/{max_iterations} (workflow-wide)
35
- - Step Iteration: {step_iteration} (times this step has run)
36
- - Step: plan
35
+ - Movement Iteration: {movement_iteration} (times this movement has run)
36
+ - Movement: plan
37
37
 
38
38
  ## Research Request
39
39
  {task}
@@ -69,8 +69,8 @@ steps:
69
69
  instruction_template: |
70
70
  ## Workflow Status
71
71
  - Iteration: {iteration}/{max_iterations} (workflow-wide)
72
- - Step Iteration: {step_iteration} (times this step has run)
73
- - Step: dig
72
+ - Movement Iteration: {movement_iteration} (times this movement has run)
73
+ - Movement: dig
74
74
 
75
75
  ## Original Research Request
76
76
  {task}
@@ -111,8 +111,8 @@ steps:
111
111
  instruction_template: |
112
112
  ## Workflow Status
113
113
  - Iteration: {iteration}/{max_iterations} (workflow-wide)
114
- - Step Iteration: {step_iteration} (times this step has run)
115
- - Step: supervise (research quality evaluation)
114
+ - Movement Iteration: {movement_iteration} (times this movement has run)
115
+ - Movement: supervise (research quality evaluation)
116
116
 
117
117
  ## Original Research Request
118
118
  {task}
@@ -131,4 +131,4 @@ steps:
131
131
  - condition: Research results are insufficient and replanning is needed
132
132
  next: plan
133
133
 
134
- initial_step: plan
134
+ initial_movement: plan
@@ -1,13 +1,13 @@
1
1
  # Review-Fix Minimal TAKT Workflow
2
2
  # Review -> Fix (if needed) -> Re-review -> Complete
3
- # (Starts with review, no implementation step)
3
+ # (Starts with review, no implementation movement)
4
4
  #
5
5
  # Template Variables (auto-injected):
6
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
6
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
7
7
  # {max_iterations} - Maximum iterations allowed for the workflow
8
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
8
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
9
9
  # {task} - Original user request (auto-injected)
10
- # {previous_response} - Output from the previous step (auto-injected)
10
+ # {previous_response} - Output from the previous movement (auto-injected)
11
11
  # {user_inputs} - Accumulated user inputs during workflow (auto-injected)
12
12
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
13
13
 
@@ -16,9 +16,9 @@ description: Review and fix workflow for existing code (starts with review, no i
16
16
 
17
17
  max_iterations: 20
18
18
 
19
- initial_step: reviewers
19
+ initial_movement: reviewers
20
20
 
21
- steps:
21
+ movements:
22
22
  - name: implement
23
23
  edit: true
24
24
  agent: ../agents/default/coder.md
@@ -248,7 +248,7 @@ steps:
248
248
  - condition: No fix needed (verified target files/spec)
249
249
  - condition: Cannot proceed, insufficient info
250
250
  instruction_template: |
251
- **This is AI Review iteration {step_iteration}.**
251
+ **This is AI Review iteration {movement_iteration}.**
252
252
 
253
253
  If this is iteration 2 or later, it means your previous fixes were not actually applied.
254
254
  **Your belief that you "already fixed it" is wrong.**
@@ -350,7 +350,7 @@ steps:
350
350
  - condition: Cannot proceed, insufficient info
351
351
  next: implement
352
352
  instruction_template: |
353
- **This is AI Review iteration {step_iteration}.**
353
+ **This is AI Review iteration {movement_iteration}.**
354
354
 
355
355
  If this is iteration 2 or later, it means your previous fixes were not actually applied.
356
356
  **Your belief that you "already fixed it" is wrong.**
@@ -8,14 +8,14 @@
8
8
  # -> COMPLETE (local: console output only)
9
9
  # -> ABORT (rejected)
10
10
  #
11
- # All steps have edit: false (no file modifications)
11
+ # All movements have edit: false (no file modifications)
12
12
  #
13
13
  # Template Variables:
14
14
  # {iteration} - Workflow-wide turn count
15
15
  # {max_iterations} - Maximum iterations allowed
16
- # {step_iteration} - Per-step iteration count
16
+ # {movement_iteration} - Per-movement iteration count
17
17
  # {task} - Original user request
18
- # {previous_response} - Output from the previous step
18
+ # {previous_response} - Output from the previous movement
19
19
  # {user_inputs} - Accumulated user inputs
20
20
  # {report_dir} - Report directory name
21
21
 
@@ -24,9 +24,9 @@ description: Review-only workflow - reviews code without making edits
24
24
 
25
25
  max_iterations: 10
26
26
 
27
- initial_step: plan
27
+ initial_movement: plan
28
28
 
29
- steps:
29
+ movements:
30
30
  - name: plan
31
31
  edit: false
32
32
  agent: ../agents/default/planner.md
@@ -108,7 +108,7 @@ steps:
108
108
  - condition: approved
109
109
  - condition: needs_fix
110
110
  instruction_template: |
111
- Focus on **architecture and design** review. Do NOT review AI-specific issues (that's the ai_review step).
111
+ Focus on **architecture and design** review. Do NOT review AI-specific issues (that's the ai_review movement).
112
112
 
113
113
  Review the code and provide feedback.
114
114
 
@@ -248,7 +248,7 @@ steps:
248
248
  3. Produce a consolidated review summary with overall verdict
249
249
  4. Determine routing:
250
250
  - If the task mentions posting to a PR (e.g., "post comments to PR", "comment on PR"),
251
- route to `pr-comment` step (condition: "approved, PR comment requested")
251
+ route to `pr-comment` movement (condition: "approved, PR comment requested")
252
252
  - If local review only, route to COMPLETE (condition: "approved")
253
253
  - If critical issues found, route to ABORT (condition: "rejected")
254
254
 
@@ -482,8 +482,8 @@ function createOrder(data: OrderData) {
482
482
  - 既存の設定ファイルが新しいスキーマと整合するか
483
483
 
484
484
  3. ワークフロー定義を変更した場合:
485
- - ステップ種別(通常/parallel)に応じた正しいフィールドが使われているか
486
- - 不要なフィールド(parallelサブステップのnext等)が残っていないか
485
+ - ムーブメント種別(通常/parallel)に応じた正しいフィールドが使われているか
486
+ - 不要なフィールド(parallelサブムーブメントのnext等)が残っていないか
487
487
 
488
488
  **このパターンを見つけたら REJECT:**
489
489
 
@@ -492,7 +492,7 @@ function createOrder(data: OrderData) {
492
492
  | 仕様に存在しないフィールドの使用 | 無視されるか予期しない動作 |
493
493
  | 仕様上無効な値の設定 | 実行時エラーまたは無視される |
494
494
  | 文書化された制約への違反 | 設計意図に反する |
495
- | ステップ種別とフィールドの不整合 | コピペミスの兆候 |
495
+ | ムーブメント種別とフィールドの不整合 | コピペミスの兆候 |
496
496
 
497
497
  ### 9. 呼び出しチェーン検証
498
498
 
@@ -98,7 +98,7 @@ Architectが「正しく作られているか(Verification)」を確認す
98
98
 
99
99
  確認すること:
100
100
  - 計画(00-plan.md)と実装結果が一致しているか
101
- - 各レビューステップの指摘が適切に対応されているか
101
+ - 各レビュームーブメントの指摘が適切に対応されているか
102
102
  - タスクの本来の目的が達成されているか
103
103
 
104
104
  **ワークフロー全体の問題:**
@@ -34,7 +34,7 @@
34
34
  ### 4. 実装アプローチ
35
35
 
36
36
  - 段階的な実装手順を設計する
37
- - 各ステップの成果物を明示する
37
+ - 各ムーブメントの成果物を明示する
38
38
  - リスクと代替案を記載する
39
39
 
40
40
  ## 重要
@@ -2,11 +2,11 @@
2
2
  # Plan -> Architect -> Implement -> AI Review -> Reviewers (parallel: Architect + Security) -> Supervisor Approval
3
3
  #
4
4
  # Template Variables (auto-injected by buildInstruction):
5
- # {iteration} - Workflow-wide turn count (total steps executed across all agents)
5
+ # {iteration} - Workflow-wide turn count (total movements executed across all agents)
6
6
  # {max_iterations} - Maximum iterations allowed for the workflow
7
- # {step_iteration} - Per-step iteration count (how many times THIS step has been executed)
7
+ # {movement_iteration} - Per-movement iteration count (how many times THIS movement has been executed)
8
8
  # {task} - Original user request
9
- # {previous_response} - Output from the previous step
9
+ # {previous_response} - Output from the previous movement
10
10
  # {user_inputs} - Accumulated user inputs during workflow
11
11
  # {report_dir} - Report directory name (e.g., "20250126-143052-task-summary")
12
12
 
@@ -15,9 +15,9 @@ description: Standard development workflow with planning and specialized reviews
15
15
 
16
16
  max_iterations: 30
17
17
 
18
- initial_step: plan
18
+ initial_movement: plan
19
19
 
20
- steps:
20
+ movements:
21
21
  - name: plan
22
22
  edit: false
23
23
  agent: ../agents/default/planner.md
@@ -168,7 +168,7 @@ steps:
168
168
  requires_user_input: true
169
169
  interactive_only: true
170
170
  instruction_template: |
171
- planステップで立てた計画と、architectステップで決定した設計に従って実装してください。
171
+ planムーブメントで立てた計画と、architectムーブメントで決定した設計に従って実装してください。
172
172
 
173
173
  **参照するレポート:**
174
174
  - 計画: {report:00-plan.md}
@@ -176,7 +176,7 @@ steps:
176
176
 
177
177
  Workflow Contextに示されたReport Directory内のファイルのみ参照してください。他のレポートディレクトリは検索/参照しないでください。
178
178
 
179
- **重要:** 設計判断はせず、architectステップで決定された設計に従ってください。
179
+ **重要:** 設計判断はせず、architectムーブメントで決定された設計に従ってください。
180
180
  不明点や設計の変更が必要な場合は報告してください。
181
181
 
182
182
  **重要**: 実装と同時に単体テストを追加してください。
@@ -296,7 +296,7 @@ steps:
296
296
  - condition: 判断できない、情報不足
297
297
  next: plan
298
298
  instruction_template: |
299
- **これは {step_iteration} 回目の AI Review です。**
299
+ **これは {movement_iteration} 回目の AI Review です。**
300
300
 
301
301
  2回目以降は、前回の修正が実際には行われていなかったということです。
302
302
  **あなたの「修正済み」という認識が間違っています。**
@@ -385,8 +385,8 @@ steps:
385
385
  - condition: approved
386
386
  - condition: needs_fix
387
387
  instruction_template: |
388
- **実装がarchitectステップの設計に従っているか**を確認してください。
389
- AI特有の問題はレビューしないでください(ai_reviewステップで行います)。
388
+ **実装がarchitectムーブメントの設計に従っているか**を確認してください。
389
+ AI特有の問題はレビューしないでください(ai_reviewムーブメントで行います)。
390
390
 
391
391
  **参照するレポート:**
392
392
  - 設計: {report:01-architecture.md}(存在する場合)
@@ -400,7 +400,7 @@ steps:
400
400
  - デッドコード
401
401
  - 呼び出しチェーン検証
402
402
 
403
- **注意:** architectステップをスキップした小規模タスクの場合は、従来通り設計の妥当性も確認してください。
403
+ **注意:** architectムーブメントをスキップした小規模タスクの場合は、従来通り設計の妥当性も確認してください。
404
404
 
405
405
  - name: security-review
406
406
  edit: false
@@ -514,7 +514,7 @@ steps:
514
514
 
515
515
  **ワークフロー全体の確認:**
516
516
  1. 計画({report:00-plan.md})と設計({report:01-architecture.md}、存在する場合)に従った実装か
517
- 2. 各レビューステップの指摘が対応されているか
517
+ 2. 各レビュームーブメントの指摘が対応されているか
518
518
  3. 元のタスク目的が達成されているか
519
519
 
520
520
  **レポートの確認:** Report Directory内の全レポートを読み、
@@ -11,17 +11,17 @@
11
11
  #
12
12
  # ボイラープレートセクション(Workflow Context, User Request, Previous Response,
13
13
  # Additional User Inputs, Instructions heading)はbuildInstruction()が自動挿入。
14
- # instruction_templateにはステップ固有の内容のみ記述。
14
+ # instruction_templateにはムーブメント固有の内容のみ記述。
15
15
  #
16
16
  # テンプレート変数(instruction_template内で使用可能):
17
- # {iteration} - ワークフロー全体のターン数(全エージェントで実行されたステップの合計)
17
+ # {iteration} - ワークフロー全体のターン数(全エージェントで実行されたムーブメントの合計)
18
18
  # {max_iterations} - ワークフローの最大イテレーション数
19
- # {step_iteration} - ステップごとのイテレーション数(このステップが何回実行されたか)
20
- # {previous_response} - 前のステップの出力(pass_previous_response: true の場合のみ)
19
+ # {movement_iteration} - ムーブメントごとのイテレーション数(このムーブメントが何回実行されたか)
20
+ # {previous_response} - 前のムーブメントの出力(pass_previous_response: true の場合のみ)
21
21
  # {report_dir} - レポートディレクトリ名(例: "20250126-143052-task-summary")
22
22
  #
23
- # ステップレベルフィールド:
24
- # report: - ステップのレポートファイル(Workflow ContextにReport File/Filesとして自動挿入)
23
+ # ムーブメントレベルフィールド:
24
+ # report: - ムーブメントのレポートファイル(Workflow ContextにReport File/Filesとして自動挿入)
25
25
  # 単一: report: 00-plan.md
26
26
  # 複数: report:
27
27
  # - Scope: 01-coder-scope.md
@@ -32,11 +32,11 @@ description: CQRS+ES・フロントエンド・セキュリティ・QA専門家
32
32
 
33
33
  max_iterations: 30
34
34
 
35
- initial_step: plan
35
+ initial_movement: plan
36
36
 
37
- steps:
37
+ movements:
38
38
  # ===========================================
39
- # Phase 0: Planning
39
+ # Movement 0: Planning
40
40
  # ===========================================
41
41
  - name: plan
42
42
  edit: false
@@ -89,7 +89,7 @@ steps:
89
89
  next: ABORT
90
90
 
91
91
  # ===========================================
92
- # Phase 1: Implementation
92
+ # Movement 1: Implementation
93
93
  # ===========================================
94
94
  - name: implement
95
95
  edit: true
@@ -108,7 +108,7 @@ steps:
108
108
  - WebSearch
109
109
  - WebFetch
110
110
  instruction_template: |
111
- planステップで立てた計画に従って実装してください。
111
+ planムーブメントで立てた計画に従って実装してください。
112
112
  計画レポート({report:00-plan.md})を参照し、実装を進めてください。
113
113
  Workflow Contextに示されたReport Directory内のファイルのみ参照してください。他のレポートディレクトリは検索/参照しないでください。
114
114
 
@@ -162,7 +162,7 @@ steps:
162
162
  interactive_only: true
163
163
 
164
164
  # ===========================================
165
- # Phase 2: AI Review
165
+ # Movement 2: AI Review
166
166
  # ===========================================
167
167
  - name: ai_review
168
168
  edit: false
@@ -228,7 +228,7 @@ steps:
228
228
  - WebSearch
229
229
  - WebFetch
230
230
  instruction_template: |
231
- **これは {step_iteration} 回目の AI Review です。**
231
+ **これは {movement_iteration} 回目の AI Review です。**
232
232
 
233
233
  2回目以降は、前回の修正が実際には行われていなかったということです。
234
234
  **あなたの「修正済み」という認識が間違っています。**
@@ -279,7 +279,7 @@ steps:
279
279
  next: plan
280
280
 
281
281
  # ===========================================
282
- # Phase 3: Expert Reviews (Parallel)
282
+ # Movement 3: Expert Reviews (Parallel)
283
283
  # ===========================================
284
284
  - name: reviewers
285
285
  parallel:
@@ -328,7 +328,7 @@ steps:
328
328
  - condition: needs_fix
329
329
  instruction_template: |
330
330
  CQRS(コマンドクエリ責務分離)とEvent Sourcing(イベントソーシング)の観点から
331
- 変更をレビューしてください。AI特有の問題のレビューは不要です(ai_reviewステップで実施済み)。
331
+ 変更をレビューしてください。AI特有の問題のレビューは不要です(ai_reviewムーブメントで実施済み)。
332
332
 
333
333
  **レビュー観点:**
334
334
  - Aggregate設計の妥当性
@@ -533,7 +533,7 @@ steps:
533
533
  pass_previous_response: true
534
534
 
535
535
  # ===========================================
536
- # Phase 4: Supervision
536
+ # Movement 4: Supervision
537
537
  # ===========================================
538
538
  - name: supervise
539
539
  edit: false
@@ -549,7 +549,7 @@ steps:
549
549
  - WebFetch
550
550
  instruction_template: |
551
551
  ## Previous Reviews Summary
552
- このステップに到達したということは、以下のレビューがすべてAPPROVEされています:
552
+ このムーブメントに到達したということは、以下のレビューがすべてAPPROVEされています:
553
553
  - AI Review: APPROVED
554
554
  - CQRS+ES Review: APPROVED
555
555
  - Frontend Review: APPROVED
@@ -560,7 +560,7 @@ steps:
560
560
 
561
561
  **ワークフロー全体の確認:**
562
562
  1. 計画({report:00-plan.md})と実装結果が一致しているか
563
- 2. 各レビューステップの指摘が対応されているか
563
+ 2. 各レビュームーブメントの指摘が対応されているか
564
564
  3. 元のタスク目的が達成されているか
565
565
 
566
566
  **レポートの確認:** Report Directory内の全レポートを読み、