claude-code-workflow 7.2.15 → 7.2.16

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 (526) hide show
  1. package/.ccw/workflows/cli-templates/schemas/team-tasks-schema.json +255 -0
  2. package/.codex/agents/team-supervisor.toml +39 -0
  3. package/.codex/agents/team-worker.toml +46 -0
  4. package/.codex/skills/team-arch-opt/SKILL.md +151 -698
  5. package/.codex/skills/team-arch-opt/roles/analyzer/role.md +78 -0
  6. package/.codex/skills/team-arch-opt/roles/coordinator/commands/analyze.md +57 -0
  7. package/.codex/skills/team-arch-opt/roles/coordinator/commands/dispatch.md +287 -0
  8. package/.codex/skills/team-arch-opt/roles/coordinator/commands/monitor.md +204 -0
  9. package/.codex/skills/team-arch-opt/roles/coordinator/role.md +162 -0
  10. package/.codex/skills/team-arch-opt/roles/designer/role.md +115 -0
  11. package/.codex/skills/team-arch-opt/roles/refactorer/role.md +102 -0
  12. package/.codex/skills/team-arch-opt/roles/reviewer/role.md +111 -0
  13. package/.codex/skills/team-arch-opt/roles/validator/role.md +115 -0
  14. package/.codex/skills/team-arch-opt/specs/pipelines.md +102 -0
  15. package/.codex/skills/team-arch-opt/specs/team-config.json +263 -0
  16. package/.codex/skills/team-brainstorm/SKILL.md +167 -724
  17. package/.codex/skills/team-brainstorm/roles/challenger/role.md +61 -0
  18. package/.codex/skills/team-brainstorm/roles/coordinator/commands/analyze.md +58 -0
  19. package/.codex/skills/team-brainstorm/roles/coordinator/commands/dispatch.md +162 -0
  20. package/.codex/skills/team-brainstorm/roles/coordinator/commands/monitor.md +171 -0
  21. package/.codex/skills/team-brainstorm/roles/coordinator/role.md +140 -0
  22. package/.codex/skills/team-brainstorm/roles/evaluator/role.md +56 -0
  23. package/.codex/skills/team-brainstorm/roles/ideator/role.md +69 -0
  24. package/.codex/skills/team-brainstorm/roles/synthesizer/role.md +57 -0
  25. package/.codex/skills/team-brainstorm/specs/pipelines.md +72 -0
  26. package/.codex/skills/team-brainstorm/specs/team-config.json +86 -0
  27. package/.codex/skills/team-coordinate/SKILL.md +267 -667
  28. package/.codex/skills/team-coordinate/roles/coordinator/commands/analyze-task.md +247 -0
  29. package/.codex/skills/team-coordinate/roles/coordinator/commands/dispatch.md +126 -0
  30. package/.codex/skills/team-coordinate/roles/coordinator/commands/monitor.md +327 -0
  31. package/.codex/skills/team-coordinate/roles/coordinator/role.md +361 -0
  32. package/.codex/skills/team-coordinate/specs/knowledge-transfer.md +111 -0
  33. package/.codex/skills/team-coordinate/specs/pipelines.md +97 -0
  34. package/.codex/skills/team-coordinate/specs/quality-gates.md +112 -0
  35. package/.codex/skills/team-coordinate/specs/role-spec-template.md +192 -0
  36. package/.codex/skills/team-designer/SKILL.md +153 -691
  37. package/.codex/skills/team-designer/phases/01-requirements-analysis.md +250 -0
  38. package/.codex/skills/team-designer/phases/02-scaffold-generation.md +228 -0
  39. package/.codex/skills/team-designer/phases/03-content-generation.md +330 -0
  40. package/.codex/skills/team-designer/phases/04-validation.md +320 -0
  41. package/.codex/skills/team-executor/SKILL.md +191 -515
  42. package/.codex/skills/team-executor/roles/executor/commands/monitor.md +280 -0
  43. package/.codex/skills/team-executor/roles/executor/role.md +170 -0
  44. package/.codex/skills/team-executor/specs/session-schema.md +264 -0
  45. package/.codex/skills/team-frontend/SKILL.md +129 -750
  46. package/.codex/skills/team-frontend/roles/analyst/role.md +92 -0
  47. package/.codex/skills/team-frontend/roles/architect/role.md +86 -0
  48. package/.codex/skills/team-frontend/roles/coordinator/commands/analyze.md +52 -0
  49. package/.codex/skills/team-frontend/roles/coordinator/commands/dispatch.md +151 -0
  50. package/.codex/skills/team-frontend/roles/coordinator/commands/monitor.md +188 -0
  51. package/.codex/skills/team-frontend/roles/coordinator/role.md +157 -0
  52. package/.codex/skills/team-frontend/roles/developer/role.md +93 -0
  53. package/.codex/skills/team-frontend/roles/qa/role.md +79 -0
  54. package/.codex/skills/team-frontend/specs/pipelines.md +76 -0
  55. package/.codex/skills/team-frontend/specs/team-config.json +84 -0
  56. package/.codex/skills/team-frontend-debug/SKILL.md +191 -821
  57. package/.codex/skills/team-frontend-debug/roles/analyzer/role.md +208 -0
  58. package/.codex/skills/team-frontend-debug/roles/coordinator/commands/analyze.md +174 -0
  59. package/.codex/skills/team-frontend-debug/roles/coordinator/commands/dispatch.md +198 -0
  60. package/.codex/skills/team-frontend-debug/roles/coordinator/commands/monitor.md +143 -0
  61. package/.codex/skills/team-frontend-debug/roles/coordinator/role.md +131 -0
  62. package/.codex/skills/team-frontend-debug/roles/fixer/role.md +147 -0
  63. package/.codex/skills/team-frontend-debug/roles/reproducer/role.md +147 -0
  64. package/.codex/skills/team-frontend-debug/roles/tester/role.md +231 -0
  65. package/.codex/skills/team-frontend-debug/roles/verifier/role.md +172 -0
  66. package/.codex/skills/team-frontend-debug/specs/debug-tools.md +215 -0
  67. package/.codex/skills/team-frontend-debug/specs/pipelines.md +94 -0
  68. package/.codex/skills/team-issue/SKILL.md +166 -751
  69. package/.codex/skills/team-issue/roles/coordinator/commands/analyze.md +64 -0
  70. package/.codex/skills/team-issue/roles/coordinator/commands/dispatch.md +273 -0
  71. package/.codex/skills/team-issue/roles/coordinator/commands/monitor.md +194 -0
  72. package/.codex/skills/team-issue/roles/coordinator/role.md +175 -0
  73. package/.codex/skills/team-issue/roles/explorer/role.md +94 -0
  74. package/.codex/skills/team-issue/roles/implementer/role.md +87 -0
  75. package/.codex/skills/team-issue/roles/integrator/role.md +84 -0
  76. package/.codex/skills/team-issue/roles/planner/role.md +81 -0
  77. package/.codex/skills/team-issue/roles/reviewer/role.md +86 -0
  78. package/.codex/skills/team-issue/specs/pipelines.md +124 -0
  79. package/.codex/skills/team-issue/specs/team-config.json +70 -0
  80. package/.codex/skills/team-iterdev/SKILL.md +134 -825
  81. package/.codex/skills/team-iterdev/roles/architect/role.md +65 -0
  82. package/.codex/skills/team-iterdev/roles/coordinator/commands/analyze.md +62 -0
  83. package/.codex/skills/team-iterdev/roles/coordinator/commands/dispatch.md +187 -0
  84. package/.codex/skills/team-iterdev/roles/coordinator/commands/monitor.md +186 -0
  85. package/.codex/skills/team-iterdev/roles/coordinator/role.md +161 -0
  86. package/.codex/skills/team-iterdev/roles/developer/role.md +74 -0
  87. package/.codex/skills/team-iterdev/roles/reviewer/role.md +66 -0
  88. package/.codex/skills/team-iterdev/roles/tester/role.md +88 -0
  89. package/.codex/skills/team-iterdev/specs/pipelines.md +94 -0
  90. package/.codex/skills/team-iterdev/specs/team-config.json +172 -0
  91. package/.codex/skills/team-lifecycle-v4/MIGRATION-PLAN.md +512 -0
  92. package/.codex/skills/team-lifecycle-v4/SKILL.md +166 -723
  93. package/.codex/skills/team-lifecycle-v4/roles/analyst/role.md +104 -0
  94. package/.codex/skills/team-lifecycle-v4/roles/coordinator/commands/analyze.md +56 -0
  95. package/.codex/skills/team-lifecycle-v4/roles/coordinator/commands/dispatch.md +61 -0
  96. package/.codex/skills/team-lifecycle-v4/roles/coordinator/commands/monitor.md +177 -0
  97. package/.codex/skills/team-lifecycle-v4/roles/coordinator/role.md +152 -0
  98. package/.codex/skills/team-lifecycle-v4/roles/executor/commands/fix.md +35 -0
  99. package/.codex/skills/team-lifecycle-v4/roles/executor/commands/implement.md +63 -0
  100. package/.codex/skills/team-lifecycle-v4/roles/executor/role.md +89 -0
  101. package/.codex/skills/team-lifecycle-v4/roles/planner/role.md +108 -0
  102. package/.codex/skills/team-lifecycle-v4/roles/reviewer/commands/review-code.md +57 -0
  103. package/.codex/skills/team-lifecycle-v4/roles/reviewer/commands/review-spec.md +44 -0
  104. package/.codex/skills/team-lifecycle-v4/roles/reviewer/role.md +98 -0
  105. package/.codex/skills/team-lifecycle-v4/roles/supervisor/role.md +210 -0
  106. package/.codex/skills/team-lifecycle-v4/roles/tester/role.md +126 -0
  107. package/.codex/skills/team-lifecycle-v4/roles/writer/role.md +125 -0
  108. package/.codex/skills/team-lifecycle-v4/schemas/tasks-schema.md +82 -160
  109. package/.codex/skills/team-lifecycle-v4/specs/knowledge-transfer.md +136 -0
  110. package/.codex/skills/team-lifecycle-v4/specs/pipelines.md +125 -0
  111. package/.codex/skills/team-lifecycle-v4/specs/quality-gates.md +130 -0
  112. package/.codex/skills/team-perf-opt/SKILL.md +169 -697
  113. package/.codex/skills/team-perf-opt/roles/benchmarker/role.md +89 -0
  114. package/.codex/skills/team-perf-opt/roles/coordinator/commands/analyze.md +61 -0
  115. package/.codex/skills/team-perf-opt/roles/coordinator/commands/dispatch.md +262 -0
  116. package/.codex/skills/team-perf-opt/roles/coordinator/commands/monitor.md +320 -0
  117. package/.codex/skills/team-perf-opt/roles/coordinator/role.md +147 -0
  118. package/.codex/skills/team-perf-opt/roles/optimizer/role.md +97 -0
  119. package/.codex/skills/team-perf-opt/roles/profiler/role.md +73 -0
  120. package/.codex/skills/team-perf-opt/roles/reviewer/role.md +75 -0
  121. package/.codex/skills/team-perf-opt/roles/strategist/role.md +94 -0
  122. package/.codex/skills/team-perf-opt/specs/pipelines.md +65 -0
  123. package/.codex/skills/team-perf-opt/specs/team-config.json +246 -0
  124. package/.codex/skills/team-planex/SKILL.md +103 -477
  125. package/.codex/skills/team-planex/roles/coordinator/commands/analyze.md +52 -0
  126. package/.codex/skills/team-planex/roles/coordinator/commands/dispatch.md +80 -0
  127. package/.codex/skills/team-planex/roles/coordinator/commands/monitor.md +164 -0
  128. package/.codex/skills/team-planex/roles/coordinator/role.md +140 -0
  129. package/.codex/skills/team-planex/roles/executor/role.md +91 -0
  130. package/.codex/skills/team-planex/roles/planner/role.md +112 -0
  131. package/.codex/skills/team-planex/specs/pipelines.md +93 -0
  132. package/.codex/skills/team-quality-assurance/SKILL.md +148 -813
  133. package/.codex/skills/team-quality-assurance/roles/analyst/role.md +80 -0
  134. package/.codex/skills/team-quality-assurance/roles/coordinator/commands/analyze.md +72 -0
  135. package/.codex/skills/team-quality-assurance/roles/coordinator/commands/dispatch.md +108 -0
  136. package/.codex/skills/team-quality-assurance/roles/coordinator/commands/monitor.md +209 -0
  137. package/.codex/skills/team-quality-assurance/roles/coordinator/role.md +143 -0
  138. package/.codex/skills/team-quality-assurance/roles/executor/role.md +66 -0
  139. package/.codex/skills/team-quality-assurance/roles/generator/role.md +68 -0
  140. package/.codex/skills/team-quality-assurance/roles/scout/role.md +67 -0
  141. package/.codex/skills/team-quality-assurance/roles/strategist/role.md +71 -0
  142. package/.codex/skills/team-quality-assurance/specs/pipelines.md +115 -0
  143. package/.codex/skills/team-quality-assurance/specs/team-config.json +131 -0
  144. package/.codex/skills/team-review/SKILL.md +148 -533
  145. package/.codex/skills/team-review/roles/coordinator/commands/analyze.md +71 -0
  146. package/.codex/skills/team-review/roles/coordinator/commands/dispatch.md +90 -0
  147. package/.codex/skills/team-review/roles/coordinator/commands/monitor.md +185 -0
  148. package/.codex/skills/team-review/roles/coordinator/role.md +142 -0
  149. package/.codex/skills/team-review/roles/fixer/role.md +76 -0
  150. package/.codex/skills/team-review/roles/reviewer/role.md +68 -0
  151. package/.codex/skills/team-review/roles/scanner/role.md +71 -0
  152. package/.codex/skills/team-review/specs/dimensions.md +82 -0
  153. package/.codex/skills/team-review/specs/finding-schema.json +82 -0
  154. package/.codex/skills/team-review/specs/pipelines.md +102 -0
  155. package/.codex/skills/team-review/specs/team-config.json +27 -0
  156. package/.codex/skills/team-roadmap-dev/SKILL.md +162 -683
  157. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/analyze.md +61 -0
  158. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/dispatch.md +241 -0
  159. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/monitor.md +468 -0
  160. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/pause.md +90 -0
  161. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/resume.md +137 -0
  162. package/.codex/skills/team-roadmap-dev/roles/coordinator/commands/roadmap-discuss.md +243 -0
  163. package/.codex/skills/team-roadmap-dev/roles/coordinator/role.md +303 -0
  164. package/.codex/skills/team-roadmap-dev/roles/executor/role.md +71 -0
  165. package/.codex/skills/team-roadmap-dev/roles/planner/role.md +76 -0
  166. package/.codex/skills/team-roadmap-dev/roles/verifier/role.md +74 -0
  167. package/.codex/skills/team-roadmap-dev/specs/pipelines.md +93 -0
  168. package/.codex/skills/team-roadmap-dev/specs/team-config.json +95 -0
  169. package/.codex/skills/team-tech-debt/SKILL.md +129 -708
  170. package/.codex/skills/team-tech-debt/roles/assessor/role.md +69 -0
  171. package/.codex/skills/team-tech-debt/roles/coordinator/commands/analyze.md +47 -0
  172. package/.codex/skills/team-tech-debt/roles/coordinator/commands/dispatch.md +163 -0
  173. package/.codex/skills/team-tech-debt/roles/coordinator/commands/monitor.md +231 -0
  174. package/.codex/skills/team-tech-debt/roles/coordinator/role.md +141 -0
  175. package/.codex/skills/team-tech-debt/roles/executor/role.md +76 -0
  176. package/.codex/skills/team-tech-debt/roles/planner/role.md +69 -0
  177. package/.codex/skills/team-tech-debt/roles/scanner/role.md +82 -0
  178. package/.codex/skills/team-tech-debt/roles/validator/role.md +75 -0
  179. package/.codex/skills/team-tech-debt/specs/pipelines.md +47 -0
  180. package/.codex/skills/team-tech-debt/specs/team-config.json +129 -0
  181. package/.codex/skills/team-testing/SKILL.md +144 -769
  182. package/.codex/skills/team-testing/roles/analyst/role.md +95 -0
  183. package/.codex/skills/team-testing/roles/coordinator/commands/analyze.md +70 -0
  184. package/.codex/skills/team-testing/roles/coordinator/commands/dispatch.md +106 -0
  185. package/.codex/skills/team-testing/roles/coordinator/commands/monitor.md +242 -0
  186. package/.codex/skills/team-testing/roles/coordinator/role.md +151 -0
  187. package/.codex/skills/team-testing/roles/executor/role.md +96 -0
  188. package/.codex/skills/team-testing/roles/generator/role.md +95 -0
  189. package/.codex/skills/team-testing/roles/strategist/role.md +83 -0
  190. package/.codex/skills/team-testing/specs/pipelines.md +101 -0
  191. package/.codex/skills/team-testing/specs/team-config.json +93 -0
  192. package/.codex/skills/team-uidesign/SKILL.md +133 -767
  193. package/.codex/skills/team-uidesign/roles/coordinator/commands/analyze.md +59 -0
  194. package/.codex/skills/team-uidesign/roles/coordinator/commands/dispatch.md +156 -0
  195. package/.codex/skills/team-uidesign/roles/coordinator/commands/monitor.md +194 -0
  196. package/.codex/skills/team-uidesign/roles/coordinator/role.md +179 -0
  197. package/.codex/skills/team-uidesign/roles/designer/role.md +69 -0
  198. package/.codex/skills/team-uidesign/roles/implementer/role.md +72 -0
  199. package/.codex/skills/team-uidesign/roles/researcher/role.md +82 -0
  200. package/.codex/skills/team-uidesign/roles/reviewer/role.md +67 -0
  201. package/.codex/skills/team-uidesign/specs/pipelines.md +76 -0
  202. package/.codex/skills/team-uidesign/specs/team-config.json +107 -0
  203. package/.codex/skills/team-ultra-analyze/SKILL.md +166 -786
  204. package/.codex/skills/team-ultra-analyze/roles/analyst/role.md +90 -0
  205. package/.codex/skills/team-ultra-analyze/roles/coordinator/commands/analyze.md +73 -0
  206. package/.codex/skills/team-ultra-analyze/roles/coordinator/commands/dispatch.md +225 -0
  207. package/.codex/skills/team-ultra-analyze/roles/coordinator/commands/monitor.md +327 -0
  208. package/.codex/skills/team-ultra-analyze/roles/coordinator/role.md +223 -0
  209. package/.codex/skills/team-ultra-analyze/roles/discussant/role.md +104 -0
  210. package/.codex/skills/team-ultra-analyze/roles/explorer/role.md +74 -0
  211. package/.codex/skills/team-ultra-analyze/roles/synthesizer/role.md +78 -0
  212. package/.codex/skills/team-ultra-analyze/specs/pipelines.md +64 -0
  213. package/.codex/skills/team-ultra-analyze/specs/team-config.json +129 -0
  214. package/.codex/skills/team-ux-improve/SKILL.md +142 -638
  215. package/.codex/skills/team-ux-improve/roles/coordinator/commands/analyze.md +62 -0
  216. package/.codex/skills/team-ux-improve/roles/coordinator/commands/dispatch.md +233 -0
  217. package/.codex/skills/team-ux-improve/roles/coordinator/commands/monitor.md +160 -0
  218. package/.codex/skills/team-ux-improve/roles/coordinator/role.md +138 -0
  219. package/.codex/skills/team-ux-improve/roles/designer/role.md +122 -0
  220. package/.codex/skills/team-ux-improve/roles/diagnoser/role.md +93 -0
  221. package/.codex/skills/team-ux-improve/roles/explorer/role.md +77 -0
  222. package/.codex/skills/team-ux-improve/roles/implementer/role.md +102 -0
  223. package/.codex/skills/team-ux-improve/roles/scanner/role.md +93 -0
  224. package/.codex/skills/team-ux-improve/roles/tester/role.md +84 -0
  225. package/.codex/skills/team-ux-improve/specs/pipelines.md +54 -0
  226. package/.codex/skills/team-ux-improve/specs/team-config.json +181 -0
  227. package/.codex/skills/team-ux-improve/wisdom/anti-patterns/common-ux-pitfalls.md +17 -0
  228. package/.codex/skills/team-ux-improve/wisdom/contributions/.gitkeep +0 -0
  229. package/.codex/skills/team-ux-improve/wisdom/patterns/state-management.md +14 -0
  230. package/.codex/skills/team-ux-improve/wisdom/patterns/ui-feedback.md +16 -0
  231. package/.codex/skills/team-ux-improve/wisdom/principles/general-ux.md +16 -0
  232. package/ccw/dist/core/routes/cli-settings-routes.d.ts.map +1 -1
  233. package/ccw/dist/core/routes/cli-settings-routes.js +135 -133
  234. package/ccw/dist/core/routes/cli-settings-routes.js.map +1 -1
  235. package/ccw/frontend/dist/assets/{AlertDialog-BW9jiZ-p.js → AlertDialog-CnpjWAGm.js} +2 -2
  236. package/ccw/frontend/dist/assets/{AlertDialog-BW9jiZ-p.js.map → AlertDialog-CnpjWAGm.js.map} +1 -1
  237. package/ccw/frontend/dist/assets/{AnalysisPage-ds-w_nVO.js → AnalysisPage-BT2rDDUD.js} +2 -2
  238. package/ccw/frontend/dist/assets/{AnalysisPage-ds-w_nVO.js.map → AnalysisPage-BT2rDDUD.js.map} +1 -1
  239. package/ccw/frontend/dist/assets/{ApiSettingsPage-DlCbXxTz.js → ApiSettingsPage-DGpjiNVu.js} +2 -2
  240. package/ccw/frontend/dist/assets/{ApiSettingsPage-DlCbXxTz.js.map → ApiSettingsPage-DGpjiNVu.js.map} +1 -1
  241. package/ccw/frontend/dist/assets/{CliModeToggle-Dq3nL4fF.js → CliModeToggle-BqUadHn3.js} +2 -2
  242. package/ccw/frontend/dist/assets/{CliModeToggle-Dq3nL4fF.js.map → CliModeToggle-BqUadHn3.js.map} +1 -1
  243. package/ccw/frontend/dist/assets/{CliSessionSharePage-BNDkEE4u.js → CliSessionSharePage-C3AdsDkm.js} +2 -2
  244. package/ccw/frontend/dist/assets/{CliSessionSharePage-BNDkEE4u.js.map → CliSessionSharePage-C3AdsDkm.js.map} +1 -1
  245. package/ccw/frontend/dist/assets/{CliViewerPage-ChM-uNx_.js → CliViewerPage-BZXpgY0N.js} +2 -2
  246. package/ccw/frontend/dist/assets/{CliViewerPage-ChM-uNx_.js.map → CliViewerPage-BZXpgY0N.js.map} +1 -1
  247. package/ccw/frontend/dist/assets/{CodexLensPage-DOcsYNQk.js → CodexLensPage-CePoJz-u.js} +2 -2
  248. package/ccw/frontend/dist/assets/{CodexLensPage-DOcsYNQk.js.map → CodexLensPage-CePoJz-u.js.map} +1 -1
  249. package/ccw/frontend/dist/assets/{Collapsible-CRNbykXN.js → Collapsible-DXVzWwmb.js} +2 -2
  250. package/ccw/frontend/dist/assets/{Collapsible-CRNbykXN.js.map → Collapsible-DXVzWwmb.js.map} +1 -1
  251. package/ccw/frontend/dist/assets/{CommandsManagerPage-C2JWcemF.js → CommandsManagerPage-B6wJYF0z.js} +2 -2
  252. package/ccw/frontend/dist/assets/{CommandsManagerPage-C2JWcemF.js.map → CommandsManagerPage-B6wJYF0z.js.map} +1 -1
  253. package/ccw/frontend/dist/assets/{DeepWikiPage-CvleOtJy.js → DeepWikiPage-D55fcvSk.js} +2 -2
  254. package/ccw/frontend/dist/assets/{DeepWikiPage-CvleOtJy.js.map → DeepWikiPage-D55fcvSk.js.map} +1 -1
  255. package/ccw/frontend/dist/assets/{EndpointsPage-CMOWQG64.js → EndpointsPage-DcGziJ5t.js} +2 -2
  256. package/ccw/frontend/dist/assets/{EndpointsPage-CMOWQG64.js.map → EndpointsPage-DcGziJ5t.js.map} +1 -1
  257. package/ccw/frontend/dist/assets/{ExplorerPage-DaFPRlNo.js → ExplorerPage-C4eKzn7F.js} +2 -2
  258. package/ccw/frontend/dist/assets/{ExplorerPage-DaFPRlNo.js.map → ExplorerPage-C4eKzn7F.js.map} +1 -1
  259. package/ccw/frontend/dist/assets/{FixSessionPage-CC4p04Az.js → FixSessionPage-BUHh954A.js} +2 -2
  260. package/ccw/frontend/dist/assets/{FixSessionPage-CC4p04Az.js.map → FixSessionPage-BUHh954A.js.map} +1 -1
  261. package/ccw/frontend/dist/assets/{FloatingFileBrowser-DROn1xZ5.js → FloatingFileBrowser-C3GF_u1C.js} +2 -2
  262. package/ccw/frontend/dist/assets/{FloatingFileBrowser-DROn1xZ5.js.map → FloatingFileBrowser-C3GF_u1C.js.map} +1 -1
  263. package/ccw/frontend/dist/assets/{FloatingPanel-CmL_yhDv.js → FloatingPanel-Cn-q9PyJ.js} +2 -2
  264. package/ccw/frontend/dist/assets/{FloatingPanel-CmL_yhDv.js.map → FloatingPanel-Cn-q9PyJ.js.map} +1 -1
  265. package/ccw/frontend/dist/assets/{GraphExplorerPage-DCV5ybKE.js → GraphExplorerPage-DIpqgvoU.js} +2 -2
  266. package/ccw/frontend/dist/assets/{GraphExplorerPage-DCV5ybKE.js.map → GraphExplorerPage-DIpqgvoU.js.map} +1 -1
  267. package/ccw/frontend/dist/assets/{HistoryPage-D0fYQZgc.js → HistoryPage-DzSvEAFe.js} +2 -2
  268. package/ccw/frontend/dist/assets/{HistoryPage-D0fYQZgc.js.map → HistoryPage-DzSvEAFe.js.map} +1 -1
  269. package/ccw/frontend/dist/assets/{HookManagerPage-D2FuJfsM.js → HookManagerPage-C6LDhWrH.js} +2 -2
  270. package/ccw/frontend/dist/assets/{HookManagerPage-D2FuJfsM.js.map → HookManagerPage-C6LDhWrH.js.map} +1 -1
  271. package/ccw/frontend/dist/assets/{InstallationsPage-tjklillZ.js → InstallationsPage-D9ct9xFV.js} +2 -2
  272. package/ccw/frontend/dist/assets/{InstallationsPage-tjklillZ.js.map → InstallationsPage-D9ct9xFV.js.map} +1 -1
  273. package/ccw/frontend/dist/assets/{IssueHubPage-E4JVrhO1.js → IssueHubPage-CXgDC8pS.js} +2 -2
  274. package/ccw/frontend/dist/assets/{IssueHubPage-E4JVrhO1.js.map → IssueHubPage-CXgDC8pS.js.map} +1 -1
  275. package/ccw/frontend/dist/assets/{LiteTasksPage-aJuRoyLt.js → LiteTasksPage-DMkauCwG.js} +2 -2
  276. package/ccw/frontend/dist/assets/{LiteTasksPage-aJuRoyLt.js.map → LiteTasksPage-DMkauCwG.js.map} +1 -1
  277. package/ccw/frontend/dist/assets/{McpManagerPage-BJeuWJv1.js → McpManagerPage-DhLDydgc.js} +2 -2
  278. package/ccw/frontend/dist/assets/{McpManagerPage-BJeuWJv1.js.map → McpManagerPage-DhLDydgc.js.map} +1 -1
  279. package/ccw/frontend/dist/assets/{MemoryPage-BI4FAXhs.js → MemoryPage-Be3nhq40.js} +2 -2
  280. package/ccw/frontend/dist/assets/{MemoryPage-BI4FAXhs.js.map → MemoryPage-Be3nhq40.js.map} +1 -1
  281. package/ccw/frontend/dist/assets/{NotFoundPage-DD2svchp.js → NotFoundPage-0yGnCePd.js} +2 -2
  282. package/ccw/frontend/dist/assets/{NotFoundPage-DD2svchp.js.map → NotFoundPage-0yGnCePd.js.map} +1 -1
  283. package/ccw/frontend/dist/assets/{OrchestratorPage-FC__7yYa.js → OrchestratorPage-_SmXZcGl.js} +2 -2
  284. package/ccw/frontend/dist/assets/{OrchestratorPage-FC__7yYa.js.map → OrchestratorPage-_SmXZcGl.js.map} +1 -1
  285. package/ccw/frontend/dist/assets/{ProjectOverviewPage-DBB_-FzV.js → ProjectOverviewPage-BeXTMsdo.js} +2 -2
  286. package/ccw/frontend/dist/assets/{ProjectOverviewPage-DBB_-FzV.js.map → ProjectOverviewPage-BeXTMsdo.js.map} +1 -1
  287. package/ccw/frontend/dist/assets/{PromptHistoryPage-BwOAvCH8.js → PromptHistoryPage-DS6ycuAv.js} +2 -2
  288. package/ccw/frontend/dist/assets/{PromptHistoryPage-BwOAvCH8.js.map → PromptHistoryPage-DS6ycuAv.js.map} +1 -1
  289. package/ccw/frontend/dist/assets/{ReviewSessionPage-Dd1-g_gp.js → ReviewSessionPage-BoqyjhPo.js} +2 -2
  290. package/ccw/frontend/dist/assets/{ReviewSessionPage-Dd1-g_gp.js.map → ReviewSessionPage-BoqyjhPo.js.map} +1 -1
  291. package/ccw/frontend/dist/assets/{RulesManagerPage-B3RGdsKD.js → RulesManagerPage-DMAwkKlc.js} +2 -2
  292. package/ccw/frontend/dist/assets/{RulesManagerPage-B3RGdsKD.js.map → RulesManagerPage-DMAwkKlc.js.map} +1 -1
  293. package/ccw/frontend/dist/assets/{SessionDetailPage-DM-W5R8K.js → SessionDetailPage-BgJRHIF4.js} +2 -2
  294. package/ccw/frontend/dist/assets/{SessionDetailPage-DM-W5R8K.js.map → SessionDetailPage-BgJRHIF4.js.map} +1 -1
  295. package/ccw/frontend/dist/assets/{SessionsPage-BVz1KCc7.js → SessionsPage-DBPdWlji.js} +2 -2
  296. package/ccw/frontend/dist/assets/{SessionsPage-BVz1KCc7.js.map → SessionsPage-DBPdWlji.js.map} +1 -1
  297. package/ccw/frontend/dist/assets/{SettingsPage-ComW7EZS.js → SettingsPage-BY3QiJhm.js} +4 -4
  298. package/ccw/frontend/dist/assets/{SettingsPage-ComW7EZS.js.map → SettingsPage-BY3QiJhm.js.map} +1 -1
  299. package/ccw/frontend/dist/assets/{SkillsManagerPage-CKom9XwV.js → SkillsManagerPage-DS101Adm.js} +2 -2
  300. package/ccw/frontend/dist/assets/{SkillsManagerPage-CKom9XwV.js.map → SkillsManagerPage-DS101Adm.js.map} +1 -1
  301. package/ccw/frontend/dist/assets/{SpecsSettingsPage-DQz7WP2s.js → SpecsSettingsPage-BcsLu1qq.js} +2 -2
  302. package/ccw/frontend/dist/assets/{SpecsSettingsPage-DQz7WP2s.js.map → SpecsSettingsPage-BcsLu1qq.js.map} +1 -1
  303. package/ccw/frontend/dist/assets/{Switch-BPMdND9H.js → Switch-BL9AmNPC.js} +2 -2
  304. package/ccw/frontend/dist/assets/{Switch-BPMdND9H.js.map → Switch-BL9AmNPC.js.map} +1 -1
  305. package/ccw/frontend/dist/assets/{TabsNavigation-qqt70VYL.js → TabsNavigation-BUcjsLeE.js} +2 -2
  306. package/ccw/frontend/dist/assets/{TabsNavigation-qqt70VYL.js.map → TabsNavigation-BUcjsLeE.js.map} +1 -1
  307. package/ccw/frontend/dist/assets/{TaskDrawer-BqK_qiHX.js → TaskDrawer-BNvfS6dq.js} +2 -2
  308. package/ccw/frontend/dist/assets/{TaskDrawer-BqK_qiHX.js.map → TaskDrawer-BNvfS6dq.js.map} +1 -1
  309. package/ccw/frontend/dist/assets/{TeamPage-u5_i0Rgh.js → TeamPage-CT-zNCrF.js} +2 -2
  310. package/ccw/frontend/dist/assets/{TeamPage-u5_i0Rgh.js.map → TeamPage-CT-zNCrF.js.map} +1 -1
  311. package/ccw/frontend/dist/assets/{TerminalDashboardPage-rUtC9e40.js → TerminalDashboardPage-DfZFGs8g.js} +2 -2
  312. package/ccw/frontend/dist/assets/{TerminalDashboardPage-rUtC9e40.js.map → TerminalDashboardPage-DfZFGs8g.js.map} +1 -1
  313. package/ccw/frontend/dist/assets/{archive-C3u8YNQF.js → archive-Cev1SaQq.js} +2 -2
  314. package/ccw/frontend/dist/assets/{archive-C3u8YNQF.js.map → archive-Cev1SaQq.js.map} +1 -1
  315. package/ccw/frontend/dist/assets/{archive-restore-DfQ998g5.js → archive-restore-BIVluaHZ.js} +2 -2
  316. package/ccw/frontend/dist/assets/{archive-restore-DfQ998g5.js.map → archive-restore-BIVluaHZ.js.map} +1 -1
  317. package/ccw/frontend/dist/assets/{arrow-right-BshJM9Po.js → arrow-right-DrivbS5j.js} +2 -2
  318. package/ccw/frontend/dist/assets/{arrow-right-BshJM9Po.js.map → arrow-right-DrivbS5j.js.map} +1 -1
  319. package/ccw/frontend/dist/assets/{bookmark-plus-D03qJyOZ.js → bookmark-plus-DKyzL0Xg.js} +2 -2
  320. package/ccw/frontend/dist/assets/{bookmark-plus-D03qJyOZ.js.map → bookmark-plus-DKyzL0Xg.js.map} +1 -1
  321. package/ccw/frontend/dist/assets/{bot-CyzWuwq0.js → bot-GBUkPAe3.js} +2 -2
  322. package/ccw/frontend/dist/assets/{bot-CyzWuwq0.js.map → bot-GBUkPAe3.js.map} +1 -1
  323. package/ccw/frontend/dist/assets/{braces-BPgtyjsG.js → braces-BWhm2c4g.js} +2 -2
  324. package/ccw/frontend/dist/assets/{braces-BPgtyjsG.js.map → braces-BWhm2c4g.js.map} +1 -1
  325. package/ccw/frontend/dist/assets/{circle-stop-Dix1AOmw.js → circle-stop-CBcZSKNp.js} +2 -2
  326. package/ccw/frontend/dist/assets/{circle-stop-Dix1AOmw.js.map → circle-stop-CBcZSKNp.js.map} +1 -1
  327. package/ccw/frontend/dist/assets/{cpu-CCQ4Q0Zh.js → cpu-CzNmuTZD.js} +2 -2
  328. package/ccw/frontend/dist/assets/{cpu-CCQ4Q0Zh.js.map → cpu-CzNmuTZD.js.map} +1 -1
  329. package/ccw/frontend/dist/assets/{ellipsis-vertical-BpTysg-Y.js → ellipsis-vertical-BoIyQKaI.js} +2 -2
  330. package/ccw/frontend/dist/assets/{ellipsis-vertical-BpTysg-Y.js.map → ellipsis-vertical-BoIyQKaI.js.map} +1 -1
  331. package/ccw/frontend/dist/assets/{eye-DGY1rAZs.js → eye-BqxyhxQq.js} +2 -2
  332. package/ccw/frontend/dist/assets/{eye-DGY1rAZs.js.map → eye-BqxyhxQq.js.map} +1 -1
  333. package/ccw/frontend/dist/assets/{eye-off-D8t3JfWG.js → eye-off-D9dTZP1A.js} +2 -2
  334. package/ccw/frontend/dist/assets/{eye-off-D8t3JfWG.js.map → eye-off-D9dTZP1A.js.map} +1 -1
  335. package/ccw/frontend/dist/assets/{file-json-BAdJb0n8.js → file-json-CLYEUI6e.js} +2 -2
  336. package/ccw/frontend/dist/assets/{file-json-BAdJb0n8.js.map → file-json-CLYEUI6e.js.map} +1 -1
  337. package/ccw/frontend/dist/assets/{file-text-DrJFiOUB.js → file-text-D5j9C5XC.js} +2 -2
  338. package/ccw/frontend/dist/assets/{file-text-DrJFiOUB.js.map → file-text-D5j9C5XC.js.map} +1 -1
  339. package/ccw/frontend/dist/assets/{filter-CKqzYbz7.js → filter-CEUK5jsA.js} +2 -2
  340. package/ccw/frontend/dist/assets/{filter-CKqzYbz7.js.map → filter-CEUK5jsA.js.map} +1 -1
  341. package/ccw/frontend/dist/assets/{folder-CV8511y9.js → folder-BEOY8txM.js} +2 -2
  342. package/ccw/frontend/dist/assets/{folder-CV8511y9.js.map → folder-BEOY8txM.js.map} +1 -1
  343. package/ccw/frontend/dist/assets/{gauge-XKvmu_uU.js → gauge-CbumHmVn.js} +2 -2
  344. package/ccw/frontend/dist/assets/{gauge-XKvmu_uU.js.map → gauge-CbumHmVn.js.map} +1 -1
  345. package/ccw/frontend/dist/assets/{globe-C56cDUzX.js → globe-D8_IB9gV.js} +2 -2
  346. package/ccw/frontend/dist/assets/{globe-C56cDUzX.js.map → globe-D8_IB9gV.js.map} +1 -1
  347. package/ccw/frontend/dist/assets/{grid-3x3-Bya-suFW.js → grid-3x3-BpzWmYF5.js} +2 -2
  348. package/ccw/frontend/dist/assets/{grid-3x3-Bya-suFW.js.map → grid-3x3-BpzWmYF5.js.map} +1 -1
  349. package/ccw/frontend/dist/assets/{hard-drive-CmuTZpsB.js → hard-drive-QIHpGln7.js} +2 -2
  350. package/ccw/frontend/dist/assets/{hard-drive-CmuTZpsB.js.map → hard-drive-QIHpGln7.js.map} +1 -1
  351. package/ccw/frontend/dist/assets/{hash-CRPT_tJQ.js → hash-CP0YRHVs.js} +2 -2
  352. package/ccw/frontend/dist/assets/{hash-CRPT_tJQ.js.map → hash-CP0YRHVs.js.map} +1 -1
  353. package/ccw/frontend/dist/assets/{history-C1pJZQCL.js → history-hOjgVKax.js} +2 -2
  354. package/ccw/frontend/dist/assets/{history-C1pJZQCL.js.map → history-hOjgVKax.js.map} +1 -1
  355. package/ccw/frontend/dist/assets/{index-Dmt9OiEf.js → index-B_ysvdnP.js} +2 -2
  356. package/ccw/frontend/dist/assets/{index-Dmt9OiEf.js.map → index-B_ysvdnP.js.map} +1 -1
  357. package/ccw/frontend/dist/assets/{index-dWT2M6Ef.js → index-C5Oqx2xI.js} +3 -3
  358. package/ccw/frontend/dist/assets/{index-dWT2M6Ef.js.map → index-C5Oqx2xI.js.map} +1 -1
  359. package/ccw/frontend/dist/assets/{index-CI8-rBff.js → index-CJi0bWL-.js} +2 -2
  360. package/ccw/frontend/dist/assets/{index-CI8-rBff.js.map → index-CJi0bWL-.js.map} +1 -1
  361. package/ccw/frontend/dist/assets/{index-anSMmEF8.js → index-CdQpo1x0.js} +2 -2
  362. package/ccw/frontend/dist/assets/{index-anSMmEF8.js.map → index-CdQpo1x0.js.map} +1 -1
  363. package/ccw/frontend/dist/assets/{layout-grid-TSO0BFQE.js → layout-grid-C38fQyLs.js} +2 -2
  364. package/ccw/frontend/dist/assets/{layout-grid-TSO0BFQE.js.map → layout-grid-C38fQyLs.js.map} +1 -1
  365. package/ccw/frontend/dist/assets/{lightbulb-Caj6fIQD.js → lightbulb-CClbCUzu.js} +2 -2
  366. package/ccw/frontend/dist/assets/{lightbulb-Caj6fIQD.js.map → lightbulb-CClbCUzu.js.map} +1 -1
  367. package/ccw/frontend/dist/assets/{link-2-DE9lMxa-.js → link-2-CB-LKbI0.js} +2 -2
  368. package/ccw/frontend/dist/assets/{link-2-DE9lMxa-.js.map → link-2-CB-LKbI0.js.map} +1 -1
  369. package/ccw/frontend/dist/assets/{link-BZtPgLW0.js → link-BK6SBzHS.js} +2 -2
  370. package/ccw/frontend/dist/assets/{link-BZtPgLW0.js.map → link-BK6SBzHS.js.map} +1 -1
  371. package/ccw/frontend/dist/assets/{list-DubWyY-U.js → list-BME_WOA_.js} +2 -2
  372. package/ccw/frontend/dist/assets/{list-DubWyY-U.js.map → list-BME_WOA_.js.map} +1 -1
  373. package/ccw/frontend/dist/assets/{map-pin-DwN_48AF.js → map-pin-ADsnCyjJ.js} +2 -2
  374. package/ccw/frontend/dist/assets/{map-pin-DwN_48AF.js.map → map-pin-ADsnCyjJ.js.map} +1 -1
  375. package/ccw/frontend/dist/assets/{messages-square-bjxvaiM9.js → messages-square-CLflB1Cq.js} +2 -2
  376. package/ccw/frontend/dist/assets/{messages-square-bjxvaiM9.js.map → messages-square-CLflB1Cq.js.map} +1 -1
  377. package/ccw/frontend/dist/assets/{minimize-2-CGfBKD_V.js → minimize-2-B3ZNzfGr.js} +2 -2
  378. package/ccw/frontend/dist/assets/{minimize-2-CGfBKD_V.js.map → minimize-2-B3ZNzfGr.js.map} +1 -1
  379. package/ccw/frontend/dist/assets/{package-nzWY6ilt.js → package-CByPhtMG.js} +2 -2
  380. package/ccw/frontend/dist/assets/{package-nzWY6ilt.js.map → package-CByPhtMG.js.map} +1 -1
  381. package/ccw/frontend/dist/assets/{plug-CiLce49C.js → plug-BggRzPX9.js} +2 -2
  382. package/ccw/frontend/dist/assets/{plug-CiLce49C.js.map → plug-BggRzPX9.js.map} +1 -1
  383. package/ccw/frontend/dist/assets/{power-CFLmB-U9.js → power-CWuxQSJK.js} +2 -2
  384. package/ccw/frontend/dist/assets/{power-CFLmB-U9.js.map → power-CWuxQSJK.js.map} +1 -1
  385. package/ccw/frontend/dist/assets/{save-DuO6OF0C.js → save-BdJ6EX4Q.js} +2 -2
  386. package/ccw/frontend/dist/assets/{save-DuO6OF0C.js.map → save-BdJ6EX4Q.js.map} +1 -1
  387. package/ccw/frontend/dist/assets/{send-CZk9p0mM.js → send-Ce9wuY7Q.js} +2 -2
  388. package/ccw/frontend/dist/assets/{send-CZk9p0mM.js.map → send-Ce9wuY7Q.js.map} +1 -1
  389. package/ccw/frontend/dist/assets/{square-check-big-BY_1YQQg.js → square-check-big-D6jItkfw.js} +2 -2
  390. package/ccw/frontend/dist/assets/{square-check-big-BY_1YQQg.js.map → square-check-big-D6jItkfw.js.map} +1 -1
  391. package/ccw/frontend/dist/assets/{square-pen-CnZgm6g-.js → square-pen-Byxq21zp.js} +2 -2
  392. package/ccw/frontend/dist/assets/{square-pen-CnZgm6g-.js.map → square-pen-Byxq21zp.js.map} +1 -1
  393. package/ccw/frontend/dist/assets/{star-Cn1F0qy7.js → star-Codj9dvK.js} +2 -2
  394. package/ccw/frontend/dist/assets/{star-Cn1F0qy7.js.map → star-Codj9dvK.js.map} +1 -1
  395. package/ccw/frontend/dist/assets/{style-Dxs1iXCV.js → style-4bYpUGcc.js} +2 -2
  396. package/ccw/frontend/dist/assets/{style-Dxs1iXCV.js.map → style-4bYpUGcc.js.map} +1 -1
  397. package/ccw/frontend/dist/assets/{target-Bz1fLRKH.js → target-DKBoDNCn.js} +2 -2
  398. package/ccw/frontend/dist/assets/{target-Bz1fLRKH.js.map → target-DKBoDNCn.js.map} +1 -1
  399. package/ccw/frontend/dist/assets/{test-tube-C6qCYlDr.js → test-tube-DTqZcBtA.js} +2 -2
  400. package/ccw/frontend/dist/assets/{test-tube-C6qCYlDr.js.map → test-tube-DTqZcBtA.js.map} +1 -1
  401. package/ccw/frontend/dist/assets/{upload-C71kd4Qs.js → upload-DlUl-e6b.js} +2 -2
  402. package/ccw/frontend/dist/assets/{upload-C71kd4Qs.js.map → upload-DlUl-e6b.js.map} +1 -1
  403. package/ccw/frontend/dist/assets/{useApiSettings-CqP2BAJ7.js → useApiSettings-D4zhKKT-.js} +2 -2
  404. package/ccw/frontend/dist/assets/{useApiSettings-CqP2BAJ7.js.map → useApiSettings-D4zhKKT-.js.map} +1 -1
  405. package/ccw/frontend/dist/assets/{useCli-PCoPoVeM.js → useCli-D-qDwsAH.js} +2 -2
  406. package/ccw/frontend/dist/assets/{useCli-PCoPoVeM.js.map → useCli-D-qDwsAH.js.map} +1 -1
  407. package/ccw/frontend/dist/assets/{useCommands-3OfPQPw4.js → useCommands-B0sidbbW.js} +2 -2
  408. package/ccw/frontend/dist/assets/{useCommands-3OfPQPw4.js.map → useCommands-B0sidbbW.js.map} +1 -1
  409. package/ccw/frontend/dist/assets/{useDebounce-bXiFhQx9.js → useDebounce-eTtbKevt.js} +2 -2
  410. package/ccw/frontend/dist/assets/{useDebounce-bXiFhQx9.js.map → useDebounce-eTtbKevt.js.map} +1 -1
  411. package/ccw/frontend/dist/assets/{useFileExplorer-DEyUm46_.js → useFileExplorer-MGSK0h33.js} +2 -2
  412. package/ccw/frontend/dist/assets/{useFileExplorer-DEyUm46_.js.map → useFileExplorer-MGSK0h33.js.map} +1 -1
  413. package/ccw/frontend/dist/assets/{useLocale-sXTrdxcJ.js → useLocale-DDNxU7pJ.js} +2 -2
  414. package/ccw/frontend/dist/assets/{useLocale-sXTrdxcJ.js.map → useLocale-DDNxU7pJ.js.map} +1 -1
  415. package/ccw/frontend/dist/assets/{useSkills-D0W0kXYm.js → useSkills-CZCRBtMY.js} +3 -3
  416. package/ccw/frontend/dist/assets/{useSkills-D0W0kXYm.js.map → useSkills-CZCRBtMY.js.map} +1 -1
  417. package/ccw/frontend/dist/assets/{useSystemSettings-DZ-8lZsG.js → useSystemSettings-DfQEFXSD.js} +2 -2
  418. package/ccw/frontend/dist/assets/{useSystemSettings-DZ-8lZsG.js.map → useSystemSettings-DfQEFXSD.js.map} +1 -1
  419. package/ccw/frontend/dist/assets/{wand-sparkles-83GmAYuw.js → wand-sparkles-DCLvfgl1.js} +2 -2
  420. package/ccw/frontend/dist/assets/{wand-sparkles-83GmAYuw.js.map → wand-sparkles-DCLvfgl1.js.map} +1 -1
  421. package/ccw/frontend/dist/index.html +1 -1
  422. package/package.json +1 -1
  423. package/.codex/skills/team-arch-opt/agents/completion-handler.md +0 -138
  424. package/.codex/skills/team-arch-opt/agents/fix-cycle-handler.md +0 -146
  425. package/.codex/skills/team-arch-opt/agents/plan-reviewer.md +0 -150
  426. package/.codex/skills/team-arch-opt/instructions/agent-instruction.md +0 -114
  427. package/.codex/skills/team-arch-opt/schemas/tasks-schema.md +0 -174
  428. package/.codex/skills/team-brainstorm/agents/gc-controller.md +0 -122
  429. package/.codex/skills/team-brainstorm/agents/topic-clarifier.md +0 -126
  430. package/.codex/skills/team-brainstorm/instructions/agent-instruction.md +0 -105
  431. package/.codex/skills/team-brainstorm/schemas/tasks-schema.md +0 -171
  432. package/.codex/skills/team-coordinate/agents/completion-handler.md +0 -127
  433. package/.codex/skills/team-coordinate/agents/plan-reviewer.md +0 -145
  434. package/.codex/skills/team-coordinate/instructions/agent-instruction.md +0 -184
  435. package/.codex/skills/team-coordinate/schemas/tasks-schema.md +0 -165
  436. package/.codex/skills/team-designer/agents/requirement-clarifier.md +0 -247
  437. package/.codex/skills/team-designer/agents/validation-reporter.md +0 -186
  438. package/.codex/skills/team-designer/instructions/agent-instruction.md +0 -163
  439. package/.codex/skills/team-designer/schemas/tasks-schema.md +0 -180
  440. package/.codex/skills/team-executor/instructions/agent-instruction.md +0 -62
  441. package/.codex/skills/team-executor/schemas/tasks-schema.md +0 -141
  442. package/.codex/skills/team-frontend/agents/completion-handler.md +0 -131
  443. package/.codex/skills/team-frontend/agents/qa-gate-reviewer.md +0 -153
  444. package/.codex/skills/team-frontend/instructions/agent-instruction.md +0 -197
  445. package/.codex/skills/team-frontend/schemas/tasks-schema.md +0 -188
  446. package/.codex/skills/team-frontend-debug/agents/completion-handler.md +0 -142
  447. package/.codex/skills/team-frontend-debug/agents/conditional-skip-gate.md +0 -130
  448. package/.codex/skills/team-frontend-debug/agents/iteration-handler.md +0 -120
  449. package/.codex/skills/team-frontend-debug/instructions/agent-instruction.md +0 -272
  450. package/.codex/skills/team-frontend-debug/schemas/tasks-schema.md +0 -198
  451. package/.codex/skills/team-issue/agents/reviewer.md +0 -204
  452. package/.codex/skills/team-issue/instructions/agent-instruction.md +0 -198
  453. package/.codex/skills/team-issue/schemas/tasks-schema.md +0 -198
  454. package/.codex/skills/team-iterdev/agents/gc-controller.md +0 -193
  455. package/.codex/skills/team-iterdev/agents/task-analyzer.md +0 -206
  456. package/.codex/skills/team-iterdev/instructions/agent-instruction.md +0 -118
  457. package/.codex/skills/team-iterdev/schemas/tasks-schema.md +0 -174
  458. package/.codex/skills/team-lifecycle/SKILL.md +0 -906
  459. package/.codex/skills/team-lifecycle/agents/analyst.md +0 -424
  460. package/.codex/skills/team-lifecycle/agents/architect.md +0 -274
  461. package/.codex/skills/team-lifecycle/agents/discuss-agent.md +0 -422
  462. package/.codex/skills/team-lifecycle/agents/executor.md +0 -423
  463. package/.codex/skills/team-lifecycle/agents/explore-agent.md +0 -471
  464. package/.codex/skills/team-lifecycle/agents/fe-developer.md +0 -239
  465. package/.codex/skills/team-lifecycle/agents/fe-qa.md +0 -357
  466. package/.codex/skills/team-lifecycle/agents/planner.md +0 -437
  467. package/.codex/skills/team-lifecycle/agents/reviewer.md +0 -483
  468. package/.codex/skills/team-lifecycle/agents/tester.md +0 -423
  469. package/.codex/skills/team-lifecycle/agents/writer.md +0 -502
  470. package/.codex/skills/team-lifecycle/phases/01-requirement-clarification.md +0 -209
  471. package/.codex/skills/team-lifecycle/phases/02-team-initialization.md +0 -263
  472. package/.codex/skills/team-lifecycle/phases/03-task-chain-creation.md +0 -251
  473. package/.codex/skills/team-lifecycle/phases/04-pipeline-coordination.md +0 -831
  474. package/.codex/skills/team-lifecycle/phases/05-completion-report.md +0 -309
  475. package/.codex/skills/team-lifecycle/specs/document-standards.md +0 -192
  476. package/.codex/skills/team-lifecycle/specs/quality-gates.md +0 -207
  477. package/.codex/skills/team-lifecycle-v4/agents/quality-gate.md +0 -165
  478. package/.codex/skills/team-lifecycle-v4/agents/requirement-clarifier.md +0 -163
  479. package/.codex/skills/team-lifecycle-v4/agents/supervisor.md +0 -182
  480. package/.codex/skills/team-perf-opt/agents/completion-handler.md +0 -141
  481. package/.codex/skills/team-perf-opt/agents/fix-cycle-handler.md +0 -156
  482. package/.codex/skills/team-perf-opt/agents/plan-reviewer.md +0 -150
  483. package/.codex/skills/team-perf-opt/instructions/agent-instruction.md +0 -122
  484. package/.codex/skills/team-perf-opt/schemas/tasks-schema.md +0 -174
  485. package/.codex/skills/team-planex/instructions/agent-instruction.md +0 -301
  486. package/.codex/skills/team-planex/schemas/tasks-schema.md +0 -198
  487. package/.codex/skills/team-planex-v2/SKILL.md +0 -652
  488. package/.codex/skills/team-planex-v2/instructions/agent-instruction.md +0 -193
  489. package/.codex/skills/team-planex-v2/schemas/tasks-schema.md +0 -206
  490. package/.codex/skills/team-quality-assurance/agents/executor.md +0 -192
  491. package/.codex/skills/team-quality-assurance/agents/gc-loop-handler.md +0 -163
  492. package/.codex/skills/team-quality-assurance/instructions/agent-instruction.md +0 -185
  493. package/.codex/skills/team-quality-assurance/schemas/tasks-schema.md +0 -190
  494. package/.codex/skills/team-review/agents/fixer.md +0 -360
  495. package/.codex/skills/team-review/instructions/agent-instruction.md +0 -102
  496. package/.codex/skills/team-review/schemas/tasks-schema.md +0 -143
  497. package/.codex/skills/team-roadmap-dev/agents/roadmap-discusser.md +0 -176
  498. package/.codex/skills/team-roadmap-dev/agents/roadmap-planner.md +0 -194
  499. package/.codex/skills/team-roadmap-dev/agents/roadmap-verifier.md +0 -221
  500. package/.codex/skills/team-roadmap-dev/instructions/executor-instruction.md +0 -55
  501. package/.codex/skills/team-roadmap-dev/schemas/tasks-schema.md +0 -144
  502. package/.codex/skills/team-tech-debt/agents/gc-loop-manager.md +0 -130
  503. package/.codex/skills/team-tech-debt/agents/plan-approver.md +0 -151
  504. package/.codex/skills/team-tech-debt/instructions/agent-instruction.md +0 -390
  505. package/.codex/skills/team-tech-debt/schemas/tasks-schema.md +0 -196
  506. package/.codex/skills/team-testing/agents/executor.md +0 -195
  507. package/.codex/skills/team-testing/agents/gc-loop-handler.md +0 -155
  508. package/.codex/skills/team-testing/instructions/agent-instruction.md +0 -142
  509. package/.codex/skills/team-testing/schemas/tasks-schema.md +0 -172
  510. package/.codex/skills/team-uidesign/agents/completion-handler.md +0 -177
  511. package/.codex/skills/team-uidesign/agents/gc-loop-handler.md +0 -162
  512. package/.codex/skills/team-uidesign/instructions/agent-instruction.md +0 -509
  513. package/.codex/skills/team-uidesign/schemas/tasks-schema.md +0 -187
  514. package/.codex/skills/team-ultra-analyze/agents/discussion-feedback.md +0 -155
  515. package/.codex/skills/team-ultra-analyze/agents/topic-analyzer.md +0 -153
  516. package/.codex/skills/team-ultra-analyze/instructions/agent-instruction.md +0 -169
  517. package/.codex/skills/team-ultra-analyze/schemas/tasks-schema.md +0 -180
  518. package/.codex/skills/team-ux-improve/agents/ux-designer.md +0 -136
  519. package/.codex/skills/team-ux-improve/agents/ux-explorer.md +0 -158
  520. package/.codex/skills/team-ux-improve/agents/ux-tester.md +0 -174
  521. package/.codex/skills/team-ux-improve/instructions/ux-worker-instruction.md +0 -55
  522. package/.codex/skills/team-ux-improve/schemas/tasks-schema.md +0 -87
  523. /package/.codex/skills/{team-lifecycle/templates/architecture-doc.md → team-lifecycle-v4/templates/architecture.md} +0 -0
  524. /package/.codex/skills/{team-lifecycle/templates/epics-template.md → team-lifecycle-v4/templates/epics.md} +0 -0
  525. /package/.codex/skills/{team-lifecycle → team-lifecycle-v4}/templates/product-brief.md +0 -0
  526. /package/.codex/skills/{team-lifecycle/templates/requirements-prd.md → team-lifecycle-v4/templates/requirements.md} +0 -0
@@ -1,906 +0,0 @@
1
- ---
2
- name: team-lifecycle
3
- description: Full lifecycle orchestrator - spec/impl/test. Spawn-wait-close pipeline with inline discuss subagent, shared explore cache, fast-advance, and consensus severity routing.
4
- ---
5
-
6
- # Team Lifecycle Orchestrator
7
-
8
- Full lifecycle team orchestration for specification, implementation, and testing workflows. The orchestrator drives a multi-agent pipeline through five phases: requirement clarification, session initialization, task chain creation, pipeline coordination (spawn/wait/close loop), and completion reporting.
9
-
10
- Key design principles:
11
-
12
- - **Inline discuss subagent**: Produce roles (analyst, writer, reviewer) call a discuss subagent internally rather than spawning a dedicated discussion agent. This halves spec pipeline beats from 12 to 6.
13
- - **Shared explore cache**: All agents share a centralized `explorations/` directory with `cache-index.json`, eliminating duplicate codebase exploration.
14
- - **Fast-advance spawning**: After an agent completes, the orchestrator immediately spawns the next agent in a linear chain without waiting for a full coordination cycle.
15
- - **Consensus severity routing**: Discussion verdicts route through HIGH/MEDIUM/LOW severity tiers, each with distinct orchestrator behavior (revision, warn-proceed, or pass-through).
16
- - **Beat model**: Each pipeline step is a single beat -- spawn agent, wait for result, process output, spawn next. The orchestrator processes one beat per cycle, then yields.
17
-
18
- ---
19
-
20
- ## Architecture
21
-
22
- ```
23
- +-------------------------------------------------------------+
24
- | Team Lifecycle Orchestrator |
25
- | Phase 1 -> Phase 2 -> Phase 3 -> Phase 4 -> Phase 5 |
26
- | Require Init Dispatch Coordinate Report |
27
- +----------+------------------------------------------------+--+
28
- |
29
- +-----+------+----------+-----------+-----------+
30
- v v v v v
31
- +---------+ +---------+ +---------+ +---------+ +---------+
32
- | Phase 1 | | Phase 2 | | Phase 3 | | Phase 4 | | Phase 5 |
33
- | Require | | Init | | Dispatch| | Coord | | Report |
34
- +---------+ +---------+ +---------+ +---------+ +---------+
35
- | | | ||| |
36
- params session tasks agents summary
37
- / | \
38
- spawn wait close
39
- / | \
40
- +------+ +-------+ +--------+
41
- |agent1| |agent2 | |agent N |
42
- +------+ +-------+ +--------+
43
- | | |
44
- (may call discuss/explore subagents internally)
45
- ```
46
-
47
- **Phase 4 Beat Cycle (single beat)**:
48
-
49
- ```
50
- event (phase advance / user resume)
51
- |
52
- v
53
- [Orchestrator]
54
- +-- read state file
55
- +-- find ready tasks (pending + all blockers completed)
56
- +-- spawn agent(s) for ready task(s)
57
- +-- wait(agent_ids, timeout)
58
- +-- process results (consensus routing, artifacts)
59
- +-- update state file
60
- +-- close completed agents
61
- +-- fast-advance: immediately spawn next if linear successor
62
- +-- yield (wait for next event or user command)
63
- ```
64
-
65
- ---
66
-
67
- ## Agent Registry
68
-
69
- | Agent | Role File | Responsibility | Pattern |
70
- |-------|-----------|----------------|---------|
71
- | analyst | ~/.codex/agents/analyst.md | Seed analysis, context gathering, DISCUSS-001 | 2.8 Inline Subagent |
72
- | writer | ~/.codex/agents/writer.md | Document generation, DISCUSS-002 to DISCUSS-005 | 2.8 Inline Subagent |
73
- | planner | ~/.codex/agents/planner.md | Multi-angle exploration, plan generation | 2.9 Cached Exploration |
74
- | executor | ~/.codex/agents/executor.md | Code implementation | 2.1 Standard |
75
- | tester | ~/.codex/agents/tester.md | Test-fix cycles | 2.3 Deep Interaction |
76
- | reviewer | ~/.codex/agents/reviewer.md | Code review + spec quality, DISCUSS-006 | 2.8 Inline Subagent |
77
- | architect | ~/.codex/agents/architect.md | Architecture consulting (on-demand) | 2.1 Standard |
78
- | fe-developer | ~/.codex/agents/fe-developer.md | Frontend implementation | 2.1 Standard |
79
- | fe-qa | ~/.codex/agents/fe-qa.md | Frontend QA, GC loop | 2.3 Deep Interaction |
80
-
81
- > All agent role files MUST be deployed to `~/.codex/agents/` before use.
82
- > Pattern 2.8 = agent internally spawns discuss subagent for multi-perspective critique.
83
- > Pattern 2.9 = agent uses shared explore cache before work.
84
- > Pattern 2.3 = orchestrator may use send_input for iterative correction loops.
85
-
86
- ---
87
-
88
- ## Subagent Registry
89
-
90
- | Subagent | Agent File | Callable By | Purpose |
91
- |----------|-----------|-------------|---------|
92
- | discuss | ~/.codex/agents/discuss-agent.md | analyst, writer, reviewer | Multi-perspective critique via CLI tools |
93
- | explore | ~/.codex/agents/explore-agent.md | analyst, planner, any agent | Codebase exploration with shared cache |
94
-
95
- Subagents are spawned by **agents themselves** (not by the orchestrator). An agent reads the subagent spec, spawns it inline via `spawn_agent`, waits for the result, and closes it. The orchestrator never directly manages subagent lifecycle.
96
-
97
- ---
98
-
99
- ## Fast-Advance Spawning
100
-
101
- After `wait()` returns a completed agent result, the orchestrator checks whether the next pipeline step is a simple linear successor (exactly one task becomes ready, no parallel window, no checkpoint).
102
-
103
- **Decision table**:
104
-
105
- | Condition | Action |
106
- |-----------|--------|
107
- | 1 ready task, simple linear successor, no checkpoint | Immediately `spawn_agent` for next task (fast-advance) |
108
- | Multiple ready tasks (parallel window) | Spawn all ready tasks in batch, then `wait` on all |
109
- | No ready tasks, other agents still running | Yield, wait for those agents to complete |
110
- | No ready tasks, nothing running | Pipeline complete, proceed to Phase 5 |
111
- | Checkpoint task completed (e.g., QUALITY-001) | Pause, output checkpoint message, wait for user |
112
-
113
- **Fast-advance failure recovery**:
114
- When the orchestrator detects that a fast-advanced agent has failed (wait returns error or timeout with no result):
115
-
116
- 1. Record failure in state file
117
- 2. Mark that task as "pending" again in state
118
- 3. Spawn a fresh agent for the same task
119
- 4. If the same task fails 3+ times, pause pipeline and report to user
120
-
121
- ---
122
-
123
- ## Consensus Severity Routing
124
-
125
- When a produce agent (analyst, writer, reviewer) reports a discuss result, the orchestrator parses the verdict from the agent output.
126
-
127
- **Output format from agents** (written to their artifact, also in wait() result):
128
-
129
- ```
130
- DISCUSS_RESULT:
131
- - verdict: <consensus_reached | consensus_blocked>
132
- - severity: <HIGH | MEDIUM | LOW>
133
- - average_rating: <N>/5
134
- - divergences: <summary>
135
- - action_items: <list>
136
- - recommendation: <revise | proceed-with-caution | escalate>
137
- - discussion_path: <path-to-discussion-record>
138
- ```
139
-
140
- **Routing table**:
141
-
142
- | Verdict | Severity | Orchestrator Action |
143
- |---------|----------|---------------------|
144
- | consensus_reached | - | Proceed normally, fast-advance to next task |
145
- | consensus_blocked | LOW | Treat as reached with notes, proceed normally |
146
- | consensus_blocked | MEDIUM | Log warning to `wisdom/issues.md`, include divergence in next task context, proceed |
147
- | consensus_blocked | HIGH | Create revision task (see below) OR pause for user |
148
- | consensus_blocked | HIGH (DISCUSS-006) | Always pause for user decision (final sign-off gate) |
149
-
150
- **Revision task creation** (HIGH severity, not DISCUSS-006):
151
-
152
- ```javascript
153
- // Add revision entry to state file
154
- const revisionTask = {
155
- id: "<original-task-id>-R1",
156
- owner: "<same-agent-role>",
157
- blocked_by: [],
158
- description: "Revision of <original-task-id>: address consensus-blocked divergences.\n"
159
- + "Session: <session-dir>\n"
160
- + "Original artifact: <artifact-path>\n"
161
- + "Divergences: <divergence-details>\n"
162
- + "Action items: <action-items-from-discuss>\n"
163
- + "InlineDiscuss: <same-round-id>",
164
- status: "pending",
165
- is_revision: true
166
- }
167
-
168
- // Max 1 revision per task. If already revised once, pause for user.
169
- if (stateHasRevision(originalTaskId)) {
170
- // Pause pipeline, ask user
171
- } else {
172
- // Insert revision task into state, spawn agent
173
- }
174
- ```
175
-
176
- ---
177
-
178
- ## Phase Execution
179
-
180
- | Phase | File | Summary |
181
- |-------|------|---------|
182
- | Phase 1 | [phases/01-requirement-clarification.md](phases/01-requirement-clarification.md) | Parse user input, detect mode, frontend auto-detection, gather parameters |
183
- | Phase 2 | [phases/02-team-initialization.md](phases/02-team-initialization.md) | Create session directory, initialize state file, wisdom, explore cache |
184
- | Phase 3 | [phases/03-task-chain-creation.md](phases/03-task-chain-creation.md) | Build pipeline task chain based on mode, write to state file |
185
- | Phase 4 | [phases/04-pipeline-coordination.md](phases/04-pipeline-coordination.md) | Main spawn/wait/close loop, fast-advance, consensus routing, checkpoints |
186
- | Phase 5 | [phases/05-completion-report.md](phases/05-completion-report.md) | Summarize results, list artifacts, offer next steps |
187
-
188
- ### Phase 0: Session Resume Check (before Phase 1)
189
-
190
- Before entering Phase 1, the orchestrator checks for interrupted sessions:
191
-
192
- 1. Scan `.workflow/.team/TLS-*/team-session.json` for files with `status: "active"` or `status: "paused"`
193
- 2. No sessions found -> proceed to Phase 1
194
- 3. Single session found -> resume it (Session Reconciliation below)
195
- 4. Multiple sessions found -> ask user to select
196
-
197
- **Session Reconciliation** (when resuming):
198
-
199
- 1. Read state file -> get pipeline state
200
- 2. For each task in state file:
201
- - If status is "in_progress" but no agent is running -> reset to "pending" (interrupted)
202
- - If status is "completed" -> verify artifact exists
203
- 3. Rebuild task readiness from reconciled state
204
- 4. Proceed to Phase 4 with reconciled state (spawn ready tasks)
205
-
206
- ---
207
-
208
- ## Pipeline Definitions
209
-
210
- ### Spec-only (6 beats)
211
-
212
- ```
213
- RESEARCH-001(+D1) -> DRAFT-001(+D2) -> DRAFT-002(+D3) -> DRAFT-003(+D4) -> DRAFT-004(+D5) -> QUALITY-001(+D6)
214
- ```
215
-
216
- Each task includes inline discuss. `(+DN)` = inline discuss round N executed by the agent internally.
217
-
218
- ### Impl-only (3 beats with parallel window)
219
-
220
- ```
221
- PLAN-001 -> IMPL-001 -> TEST-001 || REVIEW-001
222
- ```
223
-
224
- TEST-001 and REVIEW-001 run in parallel after IMPL-001 completes.
225
-
226
- ### Full-lifecycle (9 beats)
227
-
228
- ```
229
- [Spec pipeline: RESEARCH-001 -> DRAFT-001 -> ... -> QUALITY-001]
230
- |
231
- CHECKPOINT: pause for user confirmation
232
- |
233
- PLAN-001(blockedBy: QUALITY-001) -> IMPL-001 -> TEST-001 || REVIEW-001
234
- ```
235
-
236
- ### FE-only (3 beats)
237
-
238
- ```
239
- PLAN-001 -> DEV-FE-001 -> QA-FE-001
240
- ```
241
-
242
- GC loop: if QA-FE verdict is NEEDS_FIX, dynamically create DEV-FE-002 -> QA-FE-002 (max 2 rounds).
243
-
244
- ### Fullstack (4 beats with dual parallel)
245
-
246
- ```
247
- PLAN-001 -> IMPL-001 || DEV-FE-001 -> TEST-001 || QA-FE-001 -> REVIEW-001
248
- ```
249
-
250
- REVIEW-001 is blocked by both TEST-001 and QA-FE-001.
251
-
252
- ### Full-lifecycle-FE (12 tasks)
253
-
254
- ```
255
- [Spec pipeline] -> PLAN-001 -> IMPL-001 || DEV-FE-001 -> TEST-001 || QA-FE-001 -> REVIEW-001
256
- ```
257
-
258
- PLAN-001 blockedBy QUALITY-001. Spec-to-impl checkpoint applies.
259
-
260
- ---
261
-
262
- ## Task Metadata Registry
263
-
264
- | Task ID | Agent | Phase | Dependencies | Description | Inline Discuss |
265
- |---------|-------|-------|-------------|-------------|---------------|
266
- | RESEARCH-001 | analyst | spec | (none) | Seed analysis and context gathering | DISCUSS-001 |
267
- | DRAFT-001 | writer | spec | RESEARCH-001 | Generate Product Brief | DISCUSS-002 |
268
- | DRAFT-002 | writer | spec | DRAFT-001 | Generate Requirements/PRD | DISCUSS-003 |
269
- | DRAFT-003 | writer | spec | DRAFT-002 | Generate Architecture Document | DISCUSS-004 |
270
- | DRAFT-004 | writer | spec | DRAFT-003 | Generate Epics and Stories | DISCUSS-005 |
271
- | QUALITY-001 | reviewer | spec | DRAFT-004 | 5-dimension spec quality + sign-off | DISCUSS-006 |
272
- | PLAN-001 | planner | impl | (none or QUALITY-001) | Multi-angle exploration and planning | - |
273
- | IMPL-001 | executor | impl | PLAN-001 | Code implementation | - |
274
- | TEST-001 | tester | impl | IMPL-001 | Test-fix cycles | - |
275
- | REVIEW-001 | reviewer | impl | IMPL-001 | 4-dimension code review | - |
276
- | DEV-FE-001 | fe-developer | impl | PLAN-001 | Frontend implementation | - |
277
- | QA-FE-001 | fe-qa | impl | DEV-FE-001 | 5-dimension frontend QA | - |
278
-
279
- ---
280
-
281
- ## Cadence Control
282
-
283
- ### Beat Model
284
-
285
- Event-driven pipeline. Each beat = orchestrator processes one event -> spawns agent(s) -> waits -> processes result -> yields.
286
-
287
- ```
288
- Beat Cycle (single beat)
289
- ======================================================================
290
- Event Orchestrator Agents
291
- ----------------------------------------------------------------------
292
- advance/resume --> +- read state file ------+
293
- | find ready tasks |
294
- | spawn agent(s) --------+--> [Agent A] executes
295
- | wait(ids, timeout) ----+--> [Agent B] executes
296
- +- process results -------+ |
297
- | update state file | |
298
- | close agents | |
299
- +- yield -----------------+ |
300
- |
301
- next beat <--- result from wait() <-------------------+
302
- ======================================================================
303
-
304
- Fast-Advance (skips full yield for linear successors)
305
- ======================================================================
306
- [Agent A] completes via wait()
307
- +- 1 ready task? simple linear successor?
308
- | YES -> spawn Agent B immediately, enter wait() again
309
- | NO -> yield, wait for user/event
310
- ======================================================================
311
- ```
312
-
313
- ### Pipeline Beat View
314
-
315
- ```
316
- Spec-only (6 beats, was 12 in v3)
317
- -------------------------------------------------------
318
- Beat 1 2 3 4 5 6
319
- | | | | | |
320
- R1+D1 --> W1+D2 --> W2+D3 --> W3+D4 --> W4+D5 --> Q1+D6
321
- ^ ^
322
- pipeline sign-off
323
- start pause
324
-
325
- R=RESEARCH W=DRAFT(writer) Q=QUALITY D=DISCUSS(inline)
326
-
327
- Impl-only (3 beats, with parallel window)
328
- -------------------------------------------------------
329
- Beat 1 2 3
330
- | | +----+----+
331
- PLAN --> IMPL --> TEST || REVIEW <-- parallel window
332
- +----+----+
333
- pipeline
334
- done
335
-
336
- Full-lifecycle (9 beats)
337
- -------------------------------------------------------
338
- Beat 1-6: [Spec pipeline as above]
339
- |
340
- Beat 6 (Q1+D6 done): CHECKPOINT -- user confirms then resume
341
- |
342
- Beat 7 8 9
343
- PLAN --> IMPL --> TEST || REVIEW
344
-
345
- Fullstack (with dual parallel windows)
346
- -------------------------------------------------------
347
- Beat 1 2 3 4
348
- | +----+----+ +----+----+ |
349
- PLAN --> IMPL || DEV-FE --> TEST || QA-FE --> REVIEW
350
- ^ ^ ^
351
- parallel 1 parallel 2 sync barrier
352
- ```
353
-
354
- ### Checkpoints
355
-
356
- | Trigger | Position | Behavior |
357
- |---------|----------|----------|
358
- | Spec-to-impl transition | QUALITY-001 completed | Pause, output "SPEC PHASE COMPLETE", wait for user |
359
- | GC loop max reached | QA-FE max 2 rounds | Stop iteration, report current QA state |
360
- | Pipeline stall | No ready + no running | Check for missing tasks, report to user |
361
- | DISCUSS-006 HIGH severity | Final sign-off | Always pause for user decision |
362
-
363
- ### Stall Detection
364
-
365
- | Check | Condition | Resolution |
366
- |-------|-----------|-----------|
367
- | Agent unresponsive | wait() timeout on active agent | Close agent, reset task to pending, respawn |
368
- | Pipeline deadlock | No ready + no running + has pending | Inspect blocked_by chains, report blockage to user |
369
- | GC loop exceeded | DEV-FE / QA-FE iteration > 2 rounds | Terminate loop, output latest QA report |
370
- | Fast-advance orphan | Task is "in_progress" in state but agent closed | Reset to pending, respawn |
371
-
372
- ---
373
-
374
- ## Agent Spawn Template
375
-
376
- When the orchestrator spawns an agent for a pipeline task, it uses this template:
377
-
378
- ```javascript
379
- const agentId = spawn_agent({
380
- message: `
381
- ## TASK ASSIGNMENT
382
-
383
- ### MANDATORY FIRST STEPS (Agent Execute)
384
- 1. **Read role definition**: ~/.codex/agents/<agent-role>.md (MUST read first)
385
- 2. Read session state: <session-dir>/team-session.json
386
- 3. Read wisdom files: <session-dir>/wisdom/*.md (if exists)
387
-
388
- ---
389
-
390
- ## Session
391
- Session directory: <session-dir>
392
- Task ID: <task-id>
393
- Pipeline mode: <mode>
394
-
395
- ## Scope
396
- <scope-description>
397
-
398
- ## Task
399
- <task-description>
400
-
401
- ## InlineDiscuss
402
- <discuss-round-id or "none">
403
-
404
- ## Dependencies
405
- Completed predecessors: <list of completed task IDs and their artifact paths>
406
-
407
- ## Constraints
408
- - Only process <PREFIX>-* tasks
409
- - All output prefixed with [<agent-role>] tag
410
- - Write artifacts to <session-dir>/<artifact-subdir>/
411
- - Before each major output, read wisdom files for cross-task knowledge
412
- - After task completion, write discoveries to <session-dir>/wisdom/
413
- - If InlineDiscuss is set, call discuss subagent after primary artifact creation
414
-
415
- ## Completion Protocol
416
- When work is complete, output EXACTLY:
417
-
418
- TASK_COMPLETE:
419
- - task_id: <task-id>
420
- - status: <success | failed>
421
- - artifact: <path-to-primary-artifact>
422
- - discuss_verdict: <consensus_reached | consensus_blocked | none>
423
- - discuss_severity: <HIGH | MEDIUM | LOW | none>
424
- - summary: <one-line summary>
425
- `
426
- })
427
- ```
428
-
429
- ---
430
-
431
- ## Session Directory
432
-
433
- ```
434
- .workflow/.team/TLS-<slug>-<date>/
435
- +-- team-session.json # Pipeline state (replaces TaskCreate/TaskList)
436
- +-- spec/ # Spec artifacts
437
- | +-- spec-config.json
438
- | +-- discovery-context.json
439
- | +-- product-brief.md
440
- | +-- requirements/
441
- | +-- architecture/
442
- | +-- epics/
443
- | +-- readiness-report.md
444
- | +-- spec-summary.md
445
- +-- discussions/ # Discussion records (written by discuss subagent)
446
- +-- plan/ # Plan artifacts
447
- | +-- plan.json
448
- | +-- tasks/ # Detailed task specs
449
- +-- explorations/ # Shared explore cache
450
- | +-- cache-index.json # { angle -> file_path }
451
- | +-- explore-<angle>.json
452
- +-- architecture/ # Architect assessments + design-tokens.json
453
- +-- analysis/ # Analyst design-intelligence.json (UI mode)
454
- +-- qa/ # QA audit reports
455
- +-- wisdom/ # Cross-task knowledge accumulation
456
- | +-- learnings.md # Patterns and insights
457
- | +-- decisions.md # Architecture and design decisions
458
- | +-- conventions.md # Codebase conventions
459
- | +-- issues.md # Known risks and issues
460
- +-- .msg/ # Message bus (UI integration)
461
- | +-- meta.json # Pipeline metadata (stages, roles, team_name)
462
- | +-- messages.jsonl # NDJSON event log
463
- +-- shared-memory.json # Cross-agent state
464
- ```
465
-
466
- ---
467
-
468
- ## State File Schema (team-session.json)
469
-
470
- The state file replaces Claude's TaskCreate/TaskList/TaskGet/TaskUpdate system. The orchestrator owns this file exclusively.
471
-
472
- ```json
473
- {
474
- "session_id": "TLS-<slug>-<date>",
475
- "mode": "<spec-only | impl-only | full-lifecycle | fe-only | fullstack | full-lifecycle-fe>",
476
- "scope": "<project description>",
477
- "status": "<active | paused | completed>",
478
- "started_at": "<ISO8601>",
479
- "updated_at": "<ISO8601>",
480
- "tasks_total": 0,
481
- "tasks_completed": 0,
482
- "pipeline": [
483
- {
484
- "id": "RESEARCH-001",
485
- "owner": "analyst",
486
- "status": "pending | in_progress | completed | failed",
487
- "blocked_by": [],
488
- "description": "...",
489
- "inline_discuss": "DISCUSS-001",
490
- "agent_id": null,
491
- "artifact_path": null,
492
- "discuss_verdict": null,
493
- "discuss_severity": null,
494
- "started_at": null,
495
- "completed_at": null,
496
- "revision_of": null,
497
- "revision_count": 0
498
- }
499
- ],
500
- "active_agents": [],
501
- "completed_tasks": [],
502
- "revision_chains": {},
503
- "wisdom_entries": [],
504
- "checkpoints_hit": [],
505
- "gc_loop_count": 0
506
- }
507
- ```
508
-
509
- ---
510
-
511
- ## Message Bus (.msg/)
512
-
513
- The `.msg/` directory provides pipeline metadata for the frontend UI. This is the **same format** used by Claude version's `team_msg` tool with `type: "state_update"`.
514
-
515
- ### meta.json
516
-
517
- Pipeline metadata read by the API for frontend display:
518
-
519
- ```json
520
- {
521
- "status": "active",
522
- "pipeline_mode": "<mode>",
523
- "pipeline_stages": ["role1", "role2", "..."],
524
- "roles": ["coordinator", "role1", "role2", "..."],
525
- "team_name": "lifecycle",
526
- "role_state": {
527
- "<role>": {
528
- "status": "completed",
529
- "task_id": "TASK-ID",
530
- "_updated_at": "<ISO8601>"
531
- }
532
- },
533
- "updated_at": "<ISO8601>"
534
- }
535
- ```
536
-
537
- **pipeline_stages by mode**:
538
-
539
- | Mode | pipeline_stages |
540
- |------|-----------------|
541
- | spec-only | `["analyst", "writer", "reviewer"]` |
542
- | impl-only | `["planner", "executor", "tester", "reviewer"]` |
543
- | fe-only | `["planner", "fe-developer", "fe-qa"]` |
544
- | fullstack | `["planner", "executor", "fe-developer", "tester", "fe-qa", "reviewer"]` |
545
- | full-lifecycle | `["analyst", "writer", "planner", "executor", "tester", "reviewer"]` |
546
- | full-lifecycle-fe | `["analyst", "writer", "planner", "executor", "fe-developer", "tester", "fe-qa", "reviewer"]` |
547
-
548
- ### messages.jsonl
549
-
550
- NDJSON event log (one JSON object per line):
551
-
552
- ```json
553
- {"id":"MSG-001","ts":"<ISO8601>","from":"coordinator","to":"coordinator","type":"state_update","summary":"Session initialized","data":{...}}
554
- {"id":"MSG-002","ts":"<ISO8601>","from":"analyst","to":"coordinator","type":"impl_complete","summary":"RESEARCH-001 completed","data":{...}}
555
- ```
556
-
557
- **Message types**: `state_update`, `impl_complete`, `impl_progress`, `test_result`, `review_result`, `error`, `shutdown`
558
-
559
- ---
560
-
561
- ## Session Resume
562
-
563
- When the orchestrator detects an existing active/paused session:
564
-
565
- 1. Read `team-session.json` from session directory
566
- 2. For each task with status "in_progress":
567
- - No matching active agent -> task was interrupted -> reset to "pending"
568
- - Has matching active agent -> verify agent is still alive (attempt wait with 0 timeout)
569
- 3. Reconcile: ensure all expected tasks for the mode exist in state
570
- 4. Create missing tasks with correct blocked_by dependencies
571
- 5. Verify dependency chain integrity (no cycles, no dangling references)
572
- 6. Update state file with reconciled state
573
- 7. Proceed to Phase 4 to spawn ready tasks
574
-
575
- ---
576
-
577
- ## User Commands
578
-
579
- During pipeline execution, the user may issue commands:
580
-
581
- | Command | Action |
582
- |---------|--------|
583
- | `check` / `status` | Output execution status graph (read-only, no advancement) |
584
- | `resume` / `continue` | Check agent states, advance pipeline |
585
- | New session request | Phase 0 detects, enters normal Phase 1-5 flow |
586
-
587
- **Status graph output format**:
588
-
589
- ```
590
- [orchestrator] Pipeline Status
591
- [orchestrator] Mode: <mode> | Progress: <completed>/<total> (<percent>%)
592
-
593
- [orchestrator] Execution Graph:
594
- Spec Phase: (if applicable)
595
- [V RESEARCH-001(+D1)] -> [V DRAFT-001(+D2)] -> [>>> DRAFT-002(+D3)]
596
- -> [o DRAFT-003(+D4)] -> [o DRAFT-004(+D5)] -> [o QUALITY-001(+D6)]
597
- Impl Phase: (if applicable)
598
- [o PLAN-001]
599
- +- BE: [o IMPL-001] -> [o TEST-001] -> [o REVIEW-001]
600
- +- FE: [o DEV-FE-001] -> [o QA-FE-001]
601
-
602
- V=completed >>>=running o=pending .=not created
603
-
604
- [orchestrator] Active Agents:
605
- > <task-id> (<agent-role>) - running <elapsed>
606
-
607
- [orchestrator] Ready to spawn: <task-ids>
608
- [orchestrator] Commands: 'resume' to advance | 'check' to refresh
609
- ```
610
-
611
- ---
612
-
613
- ## Lifecycle Management
614
-
615
- ### Timeout Protocol
616
-
617
- | Phase | Timeout | On Timeout |
618
- |-------|---------|------------|
619
- | Phase 1 (requirements) | None (interactive) | N/A |
620
- | Phase 2 (init) | 60s | Fail with error |
621
- | Phase 3 (dispatch) | 60s | Fail with error |
622
- | Phase 4 per agent | 15 min (spec agents), 30 min (impl agents) | Send convergence request via `send_input`, wait 2 min more, then close |
623
- | Phase 5 (report) | 60s | Output partial report |
624
-
625
- **Convergence request** (sent via `send_input` on timeout):
626
-
627
- ```javascript
628
- send_input({
629
- id: <agent-id>,
630
- message: `
631
- ## TIMEOUT NOTIFICATION
632
-
633
- Execution timeout reached. Please:
634
- 1. Save all current progress to artifact files
635
- 2. Output TASK_COMPLETE with status: partial
636
- 3. Include summary of completed vs remaining work
637
- `
638
- })
639
- ```
640
-
641
- ### Cleanup Protocol
642
-
643
- When the pipeline completes (or is aborted):
644
-
645
- ```javascript
646
- // Close all active agents
647
- for (const agentEntry of state.active_agents) {
648
- try {
649
- close_agent({ id: agentEntry.agent_id })
650
- } catch (e) {
651
- // Agent already closed, ignore
652
- }
653
- }
654
-
655
- // Update state file
656
- state.status = "completed" // or "aborted"
657
- state.updated_at = new Date().toISOString()
658
- // Write state file
659
- ```
660
-
661
- ---
662
-
663
- ## Error Handling
664
-
665
- | Scenario | Detection | Resolution |
666
- |----------|-----------|------------|
667
- | Agent timeout | wait() returns timed_out | send_input convergence request, retry wait 2 min, then close + reset task |
668
- | Agent crash / unexpected close | wait() returns error status | Reset task to pending, respawn agent (max 3 retries) |
669
- | 3+ failures on same task | Retry count in state file | Pause pipeline, report to user |
670
- | Fast-advance orphan | Task in_progress but no active agent and > 5 min elapsed | Reset to pending, respawn |
671
- | Consensus blocked HIGH | DISCUSS_RESULT parsed from agent output | Create revision task (max 1) or pause |
672
- | Consensus blocked HIGH on DISCUSS-006 | Same as above but final sign-off round | Always pause for user |
673
- | Revision also blocked | Revision task returns blocked HIGH | Pause pipeline, escalate to user |
674
- | Session file corrupt | JSON parse error | Attempt recovery from last known good state, or report error |
675
- | Pipeline stall | No ready + no running + has pending | Inspect blocked_by, report blockage details |
676
- | Unknown agent output format | TASK_COMPLETE not found in wait result | Log warning, attempt to extract status, mark as partial |
677
- | Duplicate task in state | Task ID already exists during dispatch | Skip creation, log warning |
678
- | Missing dependency | blocked_by references non-existent task | Log error, halt pipeline |
679
-
680
- ---
681
-
682
- ## Frontend Auto-Detection
683
-
684
- During Phase 1, the orchestrator detects whether frontend work is needed:
685
-
686
- | Signal | Detection | Pipeline Upgrade |
687
- |--------|----------|-----------------|
688
- | FE keywords in description | Match: component, page, UI, React, Vue, CSS, HTML, Tailwind, Svelte, Next.js, Nuxt, shadcn, design system | impl-only -> fe-only or fullstack |
689
- | BE keywords also present | Match: API, database, server, endpoint, backend, middleware | impl-only -> fullstack |
690
- | FE framework in project | Detect react/vue/svelte/next in package.json | full-lifecycle -> full-lifecycle-fe |
691
-
692
- ---
693
-
694
- ## Inline Discuss Protocol (for agents)
695
-
696
- Produce agents (analyst, writer, reviewer) call the discuss subagent after completing their primary artifact. The protocol is documented here for reference; each agent's role file contains the specific invocation.
697
-
698
- **Discussion round mapping**:
699
-
700
- | Agent | After Task | Discuss Round | Perspectives |
701
- |-------|-----------|---------------|-------------|
702
- | analyst | RESEARCH-001 | DISCUSS-001 | product, risk, coverage |
703
- | writer | DRAFT-001 | DISCUSS-002 | product, technical, quality, coverage |
704
- | writer | DRAFT-002 | DISCUSS-003 | quality, product, coverage |
705
- | writer | DRAFT-003 | DISCUSS-004 | technical, risk |
706
- | writer | DRAFT-004 | DISCUSS-005 | product, technical, quality, coverage |
707
- | reviewer | QUALITY-001 | DISCUSS-006 | all 5 (product, technical, quality, risk, coverage) |
708
-
709
- **Agent-side discuss invocation** (inside the agent, not orchestrator):
710
-
711
- ```javascript
712
- // Agent spawns discuss subagent internally
713
- const discussId = spawn_agent({
714
- message: `
715
- ## MANDATORY FIRST STEPS (Agent Execute)
716
- 1. **Read agent definition**: ~/.codex/agents/discuss-agent.md (MUST read first)
717
-
718
- ---
719
-
720
- ## Multi-Perspective Critique: <round-id>
721
-
722
- ### Input
723
- - Artifact: <artifact-path>
724
- - Round: <round-id>
725
- - Perspectives: <perspective-list>
726
- - Session: <session-dir>
727
- - Discovery Context: <session-dir>/spec/discovery-context.json
728
-
729
- ### Execution
730
- Per-perspective CLI analysis -> divergence detection -> consensus determination -> write record.
731
-
732
- ### Output
733
- Write discussion record to: <session-dir>/discussions/<round-id>-discussion.md
734
- Return verdict summary with: verdict, severity, average_rating, action_items, recommendation.
735
- `
736
- })
737
-
738
- const discussResult = wait({ ids: [discussId], timeout_ms: 300000 })
739
- close_agent({ id: discussId })
740
- // Agent includes discuss result in its TASK_COMPLETE output
741
- ```
742
-
743
- ---
744
-
745
- ## Shared Explore Protocol (for agents)
746
-
747
- Any agent needing codebase context calls the explore subagent. Results are cached in `explorations/`.
748
-
749
- **Agent-side explore invocation** (inside the agent, not orchestrator):
750
-
751
- ```javascript
752
- // Agent spawns explore subagent internally
753
- const exploreId = spawn_agent({
754
- message: `
755
- ## MANDATORY FIRST STEPS (Agent Execute)
756
- 1. **Read agent definition**: ~/.codex/agents/explore-agent.md (MUST read first)
757
-
758
- ---
759
-
760
- ## Explore Codebase
761
-
762
- Query: <query>
763
- Focus angle: <angle>
764
- Keywords: <keyword-list>
765
- Session folder: <session-dir>
766
-
767
- ## Cache Check
768
- 1. Read <session-dir>/explorations/cache-index.json (if exists)
769
- 2. If matching angle found AND file exists -> return cached result
770
- 3. If not found -> proceed to exploration
771
-
772
- ## Output
773
- Write JSON to: <session-dir>/explorations/explore-<angle>.json
774
- Update cache-index.json with new entry.
775
- Return summary: file count, pattern count, top 5 files, output path.
776
- `
777
- })
778
-
779
- const exploreResult = wait({ ids: [exploreId], timeout_ms: 300000 })
780
- close_agent({ id: exploreId })
781
- ```
782
-
783
- **Cache lookup rules**:
784
-
785
- | Condition | Action |
786
- |-----------|--------|
787
- | Exact angle match exists in cache-index.json | Return cached result |
788
- | No match | Execute exploration, cache result |
789
- | Cache file missing but index has entry | Remove stale entry, re-explore |
790
-
791
- ---
792
-
793
- ## Wisdom Accumulation
794
-
795
- Cross-task knowledge accumulation. Orchestrator creates `wisdom/` at session init.
796
-
797
- **Directory**:
798
-
799
- ```
800
- <session-dir>/wisdom/
801
- +-- learnings.md # Patterns and insights discovered
802
- +-- decisions.md # Architecture and design decisions made
803
- +-- conventions.md # Codebase conventions identified
804
- +-- issues.md # Known risks and issues flagged
805
- ```
806
-
807
- **Agent responsibilities**:
808
- - On start: read all wisdom files for cross-task context
809
- - During work: append discoveries to appropriate wisdom file
810
- - On complete: include significant findings in TASK_COMPLETE summary
811
-
812
- ---
813
-
814
- ## Role Isolation Rules
815
-
816
- | Allowed | Prohibited |
817
- |---------|-----------|
818
- | Agent processes only its own prefix tasks | Processing other agents' tasks |
819
- | Agent communicates results via TASK_COMPLETE output | Direct agent-to-agent communication |
820
- | Agent calls discuss/explore subagents internally | Agent modifying orchestrator state file |
821
- | Agent writes artifacts to its designated directory | Agent writing to other agents' directories |
822
- | Agent reads wisdom files and shared-memory.json | Agent deleting or overwriting other agents' artifacts |
823
-
824
- Orchestrator additionally prohibited: directly write/modify code, call implementation tools, execute analysis/test/review work.
825
-
826
- ---
827
-
828
- ## GC Loop (Frontend QA)
829
-
830
- For FE pipelines, QA-FE may trigger a fix-retest cycle:
831
-
832
- ```
833
- Round 1: DEV-FE-001 -> QA-FE-001
834
- QA-FE verdict: NEEDS_FIX?
835
- YES -> Round 2: DEV-FE-002(blocked_by: QA-FE-001) -> QA-FE-002(blocked_by: DEV-FE-002)
836
- QA-FE-002 verdict: NEEDS_FIX?
837
- YES -> max rounds reached (2), stop loop, report current state
838
- NO -> proceed to next pipeline step
839
- NO -> proceed to next pipeline step
840
- ```
841
-
842
- The orchestrator dynamically adds DEV-FE-NNN and QA-FE-NNN tasks to the state file when a GC loop iteration is needed.
843
-
844
- ---
845
-
846
- ## Mode-to-Pipeline Quick Reference
847
-
848
- | Mode | Total Tasks | First Task | Checkpoint |
849
- |------|-------------|------------|------------|
850
- | spec-only | 6 | RESEARCH-001 | None (QUALITY-001 is final) |
851
- | impl-only | 4 | PLAN-001 | None |
852
- | fe-only | 3 (+GC) | PLAN-001 | None |
853
- | fullstack | 6 | PLAN-001 | None |
854
- | full-lifecycle | 10 | RESEARCH-001 | After QUALITY-001 |
855
- | full-lifecycle-fe | 12 (+GC) | RESEARCH-001 | After QUALITY-001 |
856
-
857
- ---
858
-
859
- ## Shared Spec Resources
860
-
861
- | Resource | Path (relative to skill) | Usage |
862
- |----------|--------------------------|-------|
863
- | Document Standards | specs/document-standards.md | YAML frontmatter, naming, structure |
864
- | Quality Gates | specs/quality-gates.md | Per-phase quality gates |
865
- | Product Brief Template | templates/product-brief.md | DRAFT-001 |
866
- | Requirements Template | templates/requirements-prd.md | DRAFT-002 |
867
- | Architecture Template | templates/architecture-doc.md | DRAFT-003 |
868
- | Epics Template | templates/epics-template.md | DRAFT-004 |
869
-
870
-
871
- ---
872
-
873
- ## Coordinator Role Constraints (Main Agent)
874
-
875
- **CRITICAL**: The coordinator (main agent executing this skill) is responsible for **orchestration only**, NOT implementation.
876
-
877
- 15. **Coordinator Does NOT Execute Code**: The main agent MUST NOT write, modify, or implement any code directly. All implementation work is delegated to spawned team agents. The coordinator only:
878
- - Spawns agents with task assignments
879
- - Waits for agent callbacks
880
- - Merges results and coordinates workflow
881
- - Manages workflow transitions between phases
882
-
883
- 16. **Patient Waiting is Mandatory**: Agent execution takes significant time (typically 10-30 minutes per phase, sometimes longer). The coordinator MUST:
884
- - Wait patiently for `wait()` calls to complete
885
- - NOT skip workflow steps due to perceived delays
886
- - NOT assume agents have failed just because they're taking time
887
- - Trust the timeout mechanisms defined in the skill
888
-
889
- 17. **Use send_input for Clarification**: When agents need guidance or appear stuck, the coordinator MUST:
890
- - Use `send_input()` to ask questions or provide clarification
891
- - NOT skip the agent or move to next phase prematurely
892
- - Give agents opportunity to respond before escalating
893
- - Example: `send_input({ id: agent_id, message: "Please provide status update or clarify blockers" })`
894
-
895
- 18. **No Workflow Shortcuts**: The coordinator MUST NOT:
896
- - Skip phases or stages defined in the workflow
897
- - Bypass required approval or review steps
898
- - Execute dependent tasks before prerequisites complete
899
- - Assume task completion without explicit agent callback
900
- - Make up or fabricate agent results
901
-
902
- 19. **Respect Long-Running Processes**: This is a complex multi-agent workflow that requires patience:
903
- - Total execution time may range from 30-90 minutes or longer
904
- - Each phase may take 10-30 minutes depending on complexity
905
- - The coordinator must remain active and attentive throughout the entire process
906
- - Do not terminate or skip steps due to time concerns