claude-flow 2.7.0 → 2.7.2

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 (1135) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/README.md +83 -22
  3. package/bin/claude-flow +1 -1
  4. package/dist/src/cli/commands/memory.js +64 -1
  5. package/dist/src/cli/commands/memory.js.map +1 -1
  6. package/dist/src/cli/help-formatter.js +3 -5
  7. package/dist/src/cli/help-formatter.js.map +1 -1
  8. package/dist/src/cli/simple-cli.js +104 -0
  9. package/dist/src/cli/simple-cli.js.map +1 -1
  10. package/dist/src/cli/validation-helper.js.map +1 -1
  11. package/dist/src/core/version.js +1 -1
  12. package/dist/src/core/version.js.map +1 -1
  13. package/dist/src/mcp/mcp-server.js +261 -3
  14. package/dist/src/mcp/mcp-server.js.map +1 -1
  15. package/dist/src/memory/agentdb-adapter.js +214 -0
  16. package/dist/src/memory/agentdb-adapter.js.map +1 -0
  17. package/dist/src/memory/backends/agentdb.js +234 -0
  18. package/dist/src/memory/backends/agentdb.js.map +1 -0
  19. package/dist/src/memory/index.js +11 -2
  20. package/dist/src/memory/index.js.map +1 -1
  21. package/dist/src/memory/migration/legacy-bridge.js +222 -0
  22. package/dist/src/memory/migration/legacy-bridge.js.map +1 -0
  23. package/dist/src/memory/swarm-memory.js +421 -340
  24. package/dist/src/memory/swarm-memory.js.map +1 -1
  25. package/dist/src/utils/metrics-reader.js +41 -29
  26. package/dist/src/utils/metrics-reader.js.map +1 -1
  27. package/docs/.claude-flow/metrics/performance.json +80 -2
  28. package/docs/.claude-flow/metrics/task-metrics.json +3 -3
  29. package/docs/INDEX.md +37 -12
  30. package/docs/README.md +92 -4
  31. package/docs/agentdb/AGENT3_FINAL_REPORT.md +643 -0
  32. package/docs/agentdb/AGENT3_SUMMARY.md +354 -0
  33. package/docs/agentdb/AGENTDB_INTEGRATION_PLAN.md +1258 -0
  34. package/docs/agentdb/BACKWARD_COMPATIBILITY_GUARANTEE.md +421 -0
  35. package/docs/agentdb/OPTIMIZATION_REPORT.md +360 -0
  36. package/docs/agentdb/PRODUCTION_READINESS.md +499 -0
  37. package/docs/agentdb/PUBLISHING_CHECKLIST.md +364 -0
  38. package/docs/agentdb/README.md +58 -0
  39. package/docs/agentdb/SWARM_COORDINATION.md +393 -0
  40. package/docs/agentdb/SWARM_IMPLEMENTATION_COMPLETE.md +538 -0
  41. package/docs/agentdb/agentdb-integration-summary.md +331 -0
  42. package/docs/agentdb/benchmarks/baseline-report.json +75 -0
  43. package/docs/development/AGENT1_COMPLETION_REPORT.md +466 -0
  44. package/docs/development/README.md +22 -0
  45. package/docs/fixes/PATTERN_FIX_CONFIRMATION.md +513 -0
  46. package/docs/fixes/PATTERN_PERSISTENCE_FIX.md +328 -0
  47. package/docs/fixes/README.md +33 -0
  48. package/docs/guides/README.md +29 -0
  49. package/docs/{skills-tutorial.md → guides/skills-tutorial.md} +2 -2
  50. package/docs/integrations/agentic-flow/INTEGRATION-TEST-v1.7.1.md +419 -0
  51. package/docs/integrations/agentic-flow/MIGRATION_v1.7.0.md +381 -0
  52. package/docs/integrations/agentic-flow/README.md +229 -0
  53. package/docs/integrations/agentic-flow/RELEASE-v1.7.0.md +348 -0
  54. package/docs/integrations/agentic-flow/RELEASE-v1.7.1.md +547 -0
  55. package/docs/integrations/agentic-flow/VERIFICATION-v1.7.4.md +556 -0
  56. package/docs/performance/README.md +31 -0
  57. package/docs/releases/ALPHA_TAG_UPDATE.md +150 -0
  58. package/docs/releases/README.md +25 -0
  59. package/docs/{RELEASE-NOTES-v2.7.0-alpha.10.md → releases/v2.7.0-alpha.10/RELEASE-NOTES-v2.7.0-alpha.10.md} +1 -1
  60. package/docs/releases/v2.7.1/RELEASE_SUMMARY_v2.7.1.md +340 -0
  61. package/docs/releases/v2.7.1/RELEASE_v2.7.1.md +244 -0
  62. package/docs/validation/DOCKER_VERIFICATION_REPORT.md +371 -0
  63. package/docs/validation/README.md +25 -0
  64. package/docs/validation/REGRESSION_ANALYSIS_v2.7.1.md +357 -0
  65. package/package.json +4 -3
  66. package/scripts/fix-agentdb-imports.sh +18 -0
  67. package/scripts/run-docker-regression.sh +101 -0
  68. package/scripts/verify-agentdb-integration.sh +220 -0
  69. package/src/cli/commands/memory.ts +95 -1
  70. package/src/mcp/mcp-server.js +302 -2
  71. package/src/memory/README-AGENTDB.md +366 -0
  72. package/src/memory/agentdb-adapter.js +373 -0
  73. package/src/memory/backends/agentdb.js +360 -0
  74. package/src/memory/index.js +32 -3
  75. package/src/memory/migration/legacy-bridge.js +330 -0
  76. package/dist/agents/agent-loader.d.ts +0 -103
  77. package/dist/agents/agent-loader.d.ts.map +0 -1
  78. package/dist/agents/agent-loader.js +0 -220
  79. package/dist/agents/agent-loader.js.map +0 -1
  80. package/dist/agents/agent-manager.d.ts +0 -191
  81. package/dist/agents/agent-manager.d.ts.map +0 -1
  82. package/dist/agents/agent-manager.js +0 -1405
  83. package/dist/agents/agent-manager.js.map +0 -1
  84. package/dist/api/claude-api-errors.d.ts +0 -115
  85. package/dist/api/claude-api-errors.d.ts.map +0 -1
  86. package/dist/api/claude-api-errors.js +0 -198
  87. package/dist/api/claude-api-errors.js.map +0 -1
  88. package/dist/api/claude-client.d.ts +0 -197
  89. package/dist/api/claude-client.d.ts.map +0 -1
  90. package/dist/api/claude-client.js +0 -525
  91. package/dist/api/claude-client.js.map +0 -1
  92. package/dist/cli/cli-core.d.ts +0 -52
  93. package/dist/cli/cli-core.d.ts.map +0 -1
  94. package/dist/cli/cli-core.js +0 -264
  95. package/dist/cli/cli-core.js.map +0 -1
  96. package/dist/cli/command-registry.d.ts +0 -10
  97. package/dist/cli/command-registry.d.ts.map +0 -1
  98. package/dist/cli/command-registry.js +0 -1126
  99. package/dist/cli/command-registry.js.map +0 -1
  100. package/dist/cli/commander-fix.d.ts +0 -4
  101. package/dist/cli/commander-fix.d.ts.map +0 -1
  102. package/dist/cli/commander-fix.js +0 -6
  103. package/dist/cli/commander-fix.js.map +0 -1
  104. package/dist/cli/commands/agent.d.ts +0 -6
  105. package/dist/cli/commands/agent.d.ts.map +0 -1
  106. package/dist/cli/commands/agent.js +0 -382
  107. package/dist/cli/commands/agent.js.map +0 -1
  108. package/dist/cli/commands/config.d.ts +0 -4
  109. package/dist/cli/commands/config.d.ts.map +0 -1
  110. package/dist/cli/commands/config.js +0 -88
  111. package/dist/cli/commands/config.js.map +0 -1
  112. package/dist/cli/commands/enterprise.d.ts +0 -3
  113. package/dist/cli/commands/enterprise.d.ts.map +0 -1
  114. package/dist/cli/commands/enterprise.js +0 -1506
  115. package/dist/cli/commands/enterprise.js.map +0 -1
  116. package/dist/cli/commands/help.d.ts +0 -6
  117. package/dist/cli/commands/help.d.ts.map +0 -1
  118. package/dist/cli/commands/help.js +0 -936
  119. package/dist/cli/commands/help.js.map +0 -1
  120. package/dist/cli/commands/hive-mind/index.d.ts +0 -18
  121. package/dist/cli/commands/hive-mind/index.d.ts.map +0 -1
  122. package/dist/cli/commands/hive-mind/index.js +0 -30
  123. package/dist/cli/commands/hive-mind/index.js.map +0 -1
  124. package/dist/cli/commands/hive-mind/init.d.ts +0 -9
  125. package/dist/cli/commands/hive-mind/init.d.ts.map +0 -1
  126. package/dist/cli/commands/hive-mind/init.js +0 -68
  127. package/dist/cli/commands/hive-mind/init.js.map +0 -1
  128. package/dist/cli/commands/hive-mind/pause.d.ts +0 -8
  129. package/dist/cli/commands/hive-mind/pause.d.ts.map +0 -1
  130. package/dist/cli/commands/hive-mind/pause.js +0 -81
  131. package/dist/cli/commands/hive-mind/pause.js.map +0 -1
  132. package/dist/cli/commands/hive-mind/ps.d.ts +0 -8
  133. package/dist/cli/commands/hive-mind/ps.d.ts.map +0 -1
  134. package/dist/cli/commands/hive-mind/ps.js +0 -120
  135. package/dist/cli/commands/hive-mind/ps.js.map +0 -1
  136. package/dist/cli/commands/hive-mind/resume.d.ts +0 -8
  137. package/dist/cli/commands/hive-mind/resume.d.ts.map +0 -1
  138. package/dist/cli/commands/hive-mind/resume.js +0 -62
  139. package/dist/cli/commands/hive-mind/resume.js.map +0 -1
  140. package/dist/cli/commands/hive-mind/spawn.d.ts +0 -9
  141. package/dist/cli/commands/hive-mind/spawn.d.ts.map +0 -1
  142. package/dist/cli/commands/hive-mind/spawn.js +0 -174
  143. package/dist/cli/commands/hive-mind/spawn.js.map +0 -1
  144. package/dist/cli/commands/hive-mind/status.d.ts +0 -9
  145. package/dist/cli/commands/hive-mind/status.d.ts.map +0 -1
  146. package/dist/cli/commands/hive-mind/status.js +0 -204
  147. package/dist/cli/commands/hive-mind/status.js.map +0 -1
  148. package/dist/cli/commands/hive-mind/stop.d.ts +0 -8
  149. package/dist/cli/commands/hive-mind/stop.d.ts.map +0 -1
  150. package/dist/cli/commands/hive-mind/stop.js +0 -125
  151. package/dist/cli/commands/hive-mind/stop.js.map +0 -1
  152. package/dist/cli/commands/hive-mind/task.d.ts +0 -9
  153. package/dist/cli/commands/hive-mind/task.d.ts.map +0 -1
  154. package/dist/cli/commands/hive-mind/task.js +0 -294
  155. package/dist/cli/commands/hive-mind/task.js.map +0 -1
  156. package/dist/cli/commands/hive-mind/wizard.d.ts +0 -9
  157. package/dist/cli/commands/hive-mind/wizard.d.ts.map +0 -1
  158. package/dist/cli/commands/hive-mind/wizard.js +0 -531
  159. package/dist/cli/commands/hive-mind/wizard.js.map +0 -1
  160. package/dist/cli/commands/hive.d.ts +0 -6
  161. package/dist/cli/commands/hive.d.ts.map +0 -1
  162. package/dist/cli/commands/hive.js +0 -409
  163. package/dist/cli/commands/hive.js.map +0 -1
  164. package/dist/cli/commands/index.d.ts +0 -3
  165. package/dist/cli/commands/index.d.ts.map +0 -1
  166. package/dist/cli/commands/index.js +0 -2624
  167. package/dist/cli/commands/index.js.map +0 -1
  168. package/dist/cli/commands/mcp.d.ts +0 -5
  169. package/dist/cli/commands/mcp.d.ts.map +0 -1
  170. package/dist/cli/commands/mcp.js +0 -169
  171. package/dist/cli/commands/mcp.js.map +0 -1
  172. package/dist/cli/commands/memory.d.ts +0 -26
  173. package/dist/cli/commands/memory.d.ts.map +0 -1
  174. package/dist/cli/commands/memory.js +0 -225
  175. package/dist/cli/commands/memory.js.map +0 -1
  176. package/dist/cli/commands/migrate.d.ts +0 -5
  177. package/dist/cli/commands/migrate.d.ts.map +0 -1
  178. package/dist/cli/commands/migrate.js +0 -139
  179. package/dist/cli/commands/migrate.js.map +0 -1
  180. package/dist/cli/commands/monitor.d.ts +0 -5
  181. package/dist/cli/commands/monitor.d.ts.map +0 -1
  182. package/dist/cli/commands/monitor.js +0 -493
  183. package/dist/cli/commands/monitor.js.map +0 -1
  184. package/dist/cli/commands/session.d.ts +0 -5
  185. package/dist/cli/commands/session.d.ts.map +0 -1
  186. package/dist/cli/commands/session.js +0 -548
  187. package/dist/cli/commands/session.js.map +0 -1
  188. package/dist/cli/commands/sparc.d.ts +0 -3
  189. package/dist/cli/commands/sparc.d.ts.map +0 -1
  190. package/dist/cli/commands/sparc.js +0 -472
  191. package/dist/cli/commands/sparc.js.map +0 -1
  192. package/dist/cli/commands/start/event-emitter.d.ts +0 -13
  193. package/dist/cli/commands/start/event-emitter.d.ts.map +0 -1
  194. package/dist/cli/commands/start/event-emitter.js +0 -35
  195. package/dist/cli/commands/start/event-emitter.js.map +0 -1
  196. package/dist/cli/commands/start/index.d.ts +0 -10
  197. package/dist/cli/commands/start/index.d.ts.map +0 -1
  198. package/dist/cli/commands/start/index.js +0 -9
  199. package/dist/cli/commands/start/index.js.map +0 -1
  200. package/dist/cli/commands/start/process-manager.d.ts +0 -31
  201. package/dist/cli/commands/start/process-manager.d.ts.map +0 -1
  202. package/dist/cli/commands/start/process-manager.js +0 -283
  203. package/dist/cli/commands/start/process-manager.js.map +0 -1
  204. package/dist/cli/commands/start/process-ui-simple.d.ts +0 -29
  205. package/dist/cli/commands/start/process-ui-simple.d.ts.map +0 -1
  206. package/dist/cli/commands/start/process-ui-simple.js +0 -334
  207. package/dist/cli/commands/start/process-ui-simple.js.map +0 -1
  208. package/dist/cli/commands/start/process-ui.d.ts +0 -5
  209. package/dist/cli/commands/start/process-ui.d.ts.map +0 -1
  210. package/dist/cli/commands/start/process-ui.js +0 -5
  211. package/dist/cli/commands/start/process-ui.js.map +0 -1
  212. package/dist/cli/commands/start/start-command.d.ts +0 -2
  213. package/dist/cli/commands/start/start-command.d.ts.map +0 -1
  214. package/dist/cli/commands/start/start-command.js +0 -462
  215. package/dist/cli/commands/start/start-command.js.map +0 -1
  216. package/dist/cli/commands/start/system-monitor.d.ts +0 -25
  217. package/dist/cli/commands/start/system-monitor.d.ts.map +0 -1
  218. package/dist/cli/commands/start/system-monitor.js +0 -265
  219. package/dist/cli/commands/start/system-monitor.js.map +0 -1
  220. package/dist/cli/commands/start/types.d.ts +0 -64
  221. package/dist/cli/commands/start/types.d.ts.map +0 -1
  222. package/dist/cli/commands/start/types.js +0 -22
  223. package/dist/cli/commands/start/types.js.map +0 -1
  224. package/dist/cli/commands/start.d.ts +0 -6
  225. package/dist/cli/commands/start.d.ts.map +0 -1
  226. package/dist/cli/commands/start.js +0 -6
  227. package/dist/cli/commands/start.js.map +0 -1
  228. package/dist/cli/commands/status.d.ts +0 -2
  229. package/dist/cli/commands/status.d.ts.map +0 -1
  230. package/dist/cli/commands/status.js +0 -304
  231. package/dist/cli/commands/status.js.map +0 -1
  232. package/dist/cli/commands/swarm.d.ts +0 -6
  233. package/dist/cli/commands/swarm.d.ts.map +0 -1
  234. package/dist/cli/commands/swarm.js +0 -465
  235. package/dist/cli/commands/swarm.js.map +0 -1
  236. package/dist/cli/commands/task.d.ts +0 -2
  237. package/dist/cli/commands/task.d.ts.map +0 -1
  238. package/dist/cli/commands/task.js +0 -75
  239. package/dist/cli/commands/task.js.map +0 -1
  240. package/dist/cli/commands/workflow.d.ts +0 -2
  241. package/dist/cli/commands/workflow.d.ts.map +0 -1
  242. package/dist/cli/commands/workflow.js +0 -624
  243. package/dist/cli/commands/workflow.js.map +0 -1
  244. package/dist/cli/completion.d.ts +0 -19
  245. package/dist/cli/completion.d.ts.map +0 -1
  246. package/dist/cli/completion.js +0 -545
  247. package/dist/cli/completion.js.map +0 -1
  248. package/dist/cli/formatter.d.ts +0 -69
  249. package/dist/cli/formatter.d.ts.map +0 -1
  250. package/dist/cli/formatter.js +0 -277
  251. package/dist/cli/formatter.js.map +0 -1
  252. package/dist/cli/help-formatter.d.ts +0 -49
  253. package/dist/cli/help-formatter.d.ts.map +0 -1
  254. package/dist/cli/help-formatter.js +0 -108
  255. package/dist/cli/help-formatter.js.map +0 -1
  256. package/dist/cli/help-text.d.ts +0 -25
  257. package/dist/cli/help-text.d.ts.map +0 -1
  258. package/dist/cli/help-text.js +0 -1051
  259. package/dist/cli/help-text.js.map +0 -1
  260. package/dist/cli/index-remote.d.ts +0 -7
  261. package/dist/cli/index-remote.d.ts.map +0 -1
  262. package/dist/cli/index-remote.js +0 -125
  263. package/dist/cli/index-remote.js.map +0 -1
  264. package/dist/cli/index.d.ts +0 -7
  265. package/dist/cli/index.d.ts.map +0 -1
  266. package/dist/cli/index.js +0 -189
  267. package/dist/cli/index.js.map +0 -1
  268. package/dist/cli/node-compat.d.ts +0 -81
  269. package/dist/cli/node-compat.d.ts.map +0 -1
  270. package/dist/cli/node-compat.js +0 -229
  271. package/dist/cli/node-compat.js.map +0 -1
  272. package/dist/cli/repl.d.ts +0 -5
  273. package/dist/cli/repl.d.ts.map +0 -1
  274. package/dist/cli/repl.js +0 -949
  275. package/dist/cli/repl.js.map +0 -1
  276. package/dist/cli/runtime-detector.d.ts +0 -128
  277. package/dist/cli/runtime-detector.d.ts.map +0 -1
  278. package/dist/cli/runtime-detector.js +0 -267
  279. package/dist/cli/runtime-detector.js.map +0 -1
  280. package/dist/cli/simple-cli.d.ts +0 -7
  281. package/dist/cli/simple-cli.d.ts.map +0 -1
  282. package/dist/cli/simple-cli.js +0 -3085
  283. package/dist/cli/simple-cli.js.map +0 -1
  284. package/dist/cli/simple-commands/agent.d.ts +0 -6
  285. package/dist/cli/simple-commands/agent.d.ts.map +0 -1
  286. package/dist/cli/simple-commands/agent.js +0 -128
  287. package/dist/cli/simple-commands/agent.js.map +0 -1
  288. package/dist/cli/simple-commands/analysis.d.ts +0 -2
  289. package/dist/cli/simple-commands/analysis.d.ts.map +0 -1
  290. package/dist/cli/simple-commands/analysis.js +0 -473
  291. package/dist/cli/simple-commands/analysis.js.map +0 -1
  292. package/dist/cli/simple-commands/automation-executor.d.ts +0 -188
  293. package/dist/cli/simple-commands/automation-executor.d.ts.map +0 -1
  294. package/dist/cli/simple-commands/automation-executor.js +0 -1383
  295. package/dist/cli/simple-commands/automation-executor.js.map +0 -1
  296. package/dist/cli/simple-commands/automation.d.ts +0 -2
  297. package/dist/cli/simple-commands/automation.d.ts.map +0 -1
  298. package/dist/cli/simple-commands/automation.js +0 -531
  299. package/dist/cli/simple-commands/automation.js.map +0 -1
  300. package/dist/cli/simple-commands/batch-manager.d.ts +0 -2
  301. package/dist/cli/simple-commands/batch-manager.d.ts.map +0 -1
  302. package/dist/cli/simple-commands/batch-manager.js +0 -290
  303. package/dist/cli/simple-commands/batch-manager.js.map +0 -1
  304. package/dist/cli/simple-commands/claude-telemetry.d.ts +0 -14
  305. package/dist/cli/simple-commands/claude-telemetry.d.ts.map +0 -1
  306. package/dist/cli/simple-commands/claude-telemetry.js +0 -263
  307. package/dist/cli/simple-commands/claude-telemetry.js.map +0 -1
  308. package/dist/cli/simple-commands/config.d.ts +0 -6
  309. package/dist/cli/simple-commands/config.d.ts.map +0 -1
  310. package/dist/cli/simple-commands/config.js +0 -116
  311. package/dist/cli/simple-commands/config.js.map +0 -1
  312. package/dist/cli/simple-commands/coordination.d.ts +0 -2
  313. package/dist/cli/simple-commands/coordination.d.ts.map +0 -1
  314. package/dist/cli/simple-commands/coordination.js +0 -249
  315. package/dist/cli/simple-commands/coordination.js.map +0 -1
  316. package/dist/cli/simple-commands/env-template.d.ts +0 -42
  317. package/dist/cli/simple-commands/env-template.d.ts.map +0 -1
  318. package/dist/cli/simple-commands/env-template.js +0 -183
  319. package/dist/cli/simple-commands/env-template.js.map +0 -1
  320. package/dist/cli/simple-commands/fix-hook-variables.d.ts +0 -16
  321. package/dist/cli/simple-commands/fix-hook-variables.d.ts.map +0 -1
  322. package/dist/cli/simple-commands/fix-hook-variables.js +0 -320
  323. package/dist/cli/simple-commands/fix-hook-variables.js.map +0 -1
  324. package/dist/cli/simple-commands/github/init.d.ts +0 -6
  325. package/dist/cli/simple-commands/github/init.d.ts.map +0 -1
  326. package/dist/cli/simple-commands/github/init.js +0 -506
  327. package/dist/cli/simple-commands/github/init.js.map +0 -1
  328. package/dist/cli/simple-commands/github.d.ts +0 -3
  329. package/dist/cli/simple-commands/github.d.ts.map +0 -1
  330. package/dist/cli/simple-commands/github.js +0 -356
  331. package/dist/cli/simple-commands/github.js.map +0 -1
  332. package/dist/cli/simple-commands/goal.d.ts +0 -3
  333. package/dist/cli/simple-commands/goal.d.ts.map +0 -1
  334. package/dist/cli/simple-commands/goal.js +0 -136
  335. package/dist/cli/simple-commands/goal.js.map +0 -1
  336. package/dist/cli/simple-commands/hive-mind/auto-save-middleware.d.ts +0 -68
  337. package/dist/cli/simple-commands/hive-mind/auto-save-middleware.d.ts.map +0 -1
  338. package/dist/cli/simple-commands/hive-mind/auto-save-middleware.js +0 -264
  339. package/dist/cli/simple-commands/hive-mind/auto-save-middleware.js.map +0 -1
  340. package/dist/cli/simple-commands/hive-mind/communication.d.ts +0 -176
  341. package/dist/cli/simple-commands/hive-mind/communication.d.ts.map +0 -1
  342. package/dist/cli/simple-commands/hive-mind/communication.js +0 -611
  343. package/dist/cli/simple-commands/hive-mind/communication.js.map +0 -1
  344. package/dist/cli/simple-commands/hive-mind/core.d.ts +0 -306
  345. package/dist/cli/simple-commands/hive-mind/core.d.ts.map +0 -1
  346. package/dist/cli/simple-commands/hive-mind/core.js +0 -839
  347. package/dist/cli/simple-commands/hive-mind/core.js.map +0 -1
  348. package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts +0 -32
  349. package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts.map +0 -1
  350. package/dist/cli/simple-commands/hive-mind/db-optimizer.js +0 -702
  351. package/dist/cli/simple-commands/hive-mind/db-optimizer.js.map +0 -1
  352. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts +0 -270
  353. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts.map +0 -1
  354. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js +0 -1211
  355. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js.map +0 -1
  356. package/dist/cli/simple-commands/hive-mind/memory.d.ts +0 -334
  357. package/dist/cli/simple-commands/hive-mind/memory.d.ts.map +0 -1
  358. package/dist/cli/simple-commands/hive-mind/memory.js +0 -1068
  359. package/dist/cli/simple-commands/hive-mind/memory.js.map +0 -1
  360. package/dist/cli/simple-commands/hive-mind/metrics-reader.js +0 -274
  361. package/dist/cli/simple-commands/hive-mind/metrics-reader.js.map +0 -1
  362. package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts +0 -256
  363. package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts.map +0 -1
  364. package/dist/cli/simple-commands/hive-mind/performance-optimizer.js +0 -520
  365. package/dist/cli/simple-commands/hive-mind/performance-optimizer.js.map +0 -1
  366. package/dist/cli/simple-commands/hive-mind/queen.d.ts +0 -235
  367. package/dist/cli/simple-commands/hive-mind/queen.d.ts.map +0 -1
  368. package/dist/cli/simple-commands/hive-mind/queen.js +0 -697
  369. package/dist/cli/simple-commands/hive-mind/queen.js.map +0 -1
  370. package/dist/cli/simple-commands/hive-mind/session-manager.d.ts +0 -140
  371. package/dist/cli/simple-commands/hive-mind/session-manager.d.ts.map +0 -1
  372. package/dist/cli/simple-commands/hive-mind/session-manager.js +0 -1000
  373. package/dist/cli/simple-commands/hive-mind/session-manager.js.map +0 -1
  374. package/dist/cli/simple-commands/hive-mind-optimize.d.ts +0 -6
  375. package/dist/cli/simple-commands/hive-mind-optimize.d.ts.map +0 -1
  376. package/dist/cli/simple-commands/hive-mind-optimize.js +0 -317
  377. package/dist/cli/simple-commands/hive-mind-optimize.js.map +0 -1
  378. package/dist/cli/simple-commands/hive-mind.d.ts +0 -22
  379. package/dist/cli/simple-commands/hive-mind.d.ts.map +0 -1
  380. package/dist/cli/simple-commands/hive-mind.js +0 -2722
  381. package/dist/cli/simple-commands/hive-mind.js.map +0 -1
  382. package/dist/cli/simple-commands/hook-safety.d.ts +0 -177
  383. package/dist/cli/simple-commands/hook-safety.d.ts.map +0 -1
  384. package/dist/cli/simple-commands/hook-safety.js +0 -590
  385. package/dist/cli/simple-commands/hook-safety.js.map +0 -1
  386. package/dist/cli/simple-commands/hooks.d.ts +0 -3
  387. package/dist/cli/simple-commands/hooks.d.ts.map +0 -1
  388. package/dist/cli/simple-commands/hooks.js +0 -1298
  389. package/dist/cli/simple-commands/hooks.js.map +0 -1
  390. package/dist/cli/simple-commands/init/agent-copier.d.ts +0 -65
  391. package/dist/cli/simple-commands/init/agent-copier.d.ts.map +0 -1
  392. package/dist/cli/simple-commands/init/agent-copier.js +0 -320
  393. package/dist/cli/simple-commands/init/agent-copier.js.map +0 -1
  394. package/dist/cli/simple-commands/init/batch-init.d.ts +0 -137
  395. package/dist/cli/simple-commands/init/batch-init.d.ts.map +0 -1
  396. package/dist/cli/simple-commands/init/batch-init.js +0 -558
  397. package/dist/cli/simple-commands/init/batch-init.js.map +0 -1
  398. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts +0 -2
  399. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts.map +0 -1
  400. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js +0 -433
  401. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js.map +0 -1
  402. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts +0 -2
  403. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts.map +0 -1
  404. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js +0 -871
  405. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js.map +0 -1
  406. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts +0 -2
  407. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts.map +0 -1
  408. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js +0 -332
  409. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js.map +0 -1
  410. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts +0 -3
  411. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts.map +0 -1
  412. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js +0 -488
  413. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js.map +0 -1
  414. package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts +0 -2
  415. package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts.map +0 -1
  416. package/dist/cli/simple-commands/init/claude-commands/slash-commands.js +0 -51
  417. package/dist/cli/simple-commands/init/claude-commands/slash-commands.js.map +0 -1
  418. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts +0 -3
  419. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts.map +0 -1
  420. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js +0 -288
  421. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js.map +0 -1
  422. package/dist/cli/simple-commands/init/copy-revised-templates.d.ts +0 -29
  423. package/dist/cli/simple-commands/init/copy-revised-templates.d.ts.map +0 -1
  424. package/dist/cli/simple-commands/init/copy-revised-templates.js +0 -166
  425. package/dist/cli/simple-commands/init/copy-revised-templates.js.map +0 -1
  426. package/dist/cli/simple-commands/init/executable-wrapper.d.ts +0 -2
  427. package/dist/cli/simple-commands/init/executable-wrapper.d.ts.map +0 -1
  428. package/dist/cli/simple-commands/init/executable-wrapper.js +0 -116
  429. package/dist/cli/simple-commands/init/executable-wrapper.js.map +0 -1
  430. package/dist/cli/simple-commands/init/gitignore-updater.d.ts +0 -23
  431. package/dist/cli/simple-commands/init/gitignore-updater.d.ts.map +0 -1
  432. package/dist/cli/simple-commands/init/gitignore-updater.js +0 -128
  433. package/dist/cli/simple-commands/init/gitignore-updater.js.map +0 -1
  434. package/dist/cli/simple-commands/init/help.d.ts +0 -2
  435. package/dist/cli/simple-commands/init/help.d.ts.map +0 -1
  436. package/dist/cli/simple-commands/init/help.js +0 -131
  437. package/dist/cli/simple-commands/init/help.js.map +0 -1
  438. package/dist/cli/simple-commands/init/hive-mind-init.d.ts +0 -152
  439. package/dist/cli/simple-commands/init/hive-mind-init.d.ts.map +0 -1
  440. package/dist/cli/simple-commands/init/hive-mind-init.js +0 -699
  441. package/dist/cli/simple-commands/init/hive-mind-init.js.map +0 -1
  442. package/dist/cli/simple-commands/init/index.d.ts +0 -2
  443. package/dist/cli/simple-commands/init/index.d.ts.map +0 -1
  444. package/dist/cli/simple-commands/init/index.js +0 -1784
  445. package/dist/cli/simple-commands/init/index.js.map +0 -1
  446. package/dist/cli/simple-commands/init/performance-monitor.d.ts +0 -73
  447. package/dist/cli/simple-commands/init/performance-monitor.d.ts.map +0 -1
  448. package/dist/cli/simple-commands/init/performance-monitor.js +0 -277
  449. package/dist/cli/simple-commands/init/performance-monitor.js.map +0 -1
  450. package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts +0 -95
  451. package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts.map +0 -1
  452. package/dist/cli/simple-commands/init/rollback/backup-manager.js +0 -486
  453. package/dist/cli/simple-commands/init/rollback/backup-manager.js.map +0 -1
  454. package/dist/cli/simple-commands/init/rollback/index.d.ts +0 -114
  455. package/dist/cli/simple-commands/init/rollback/index.d.ts.map +0 -1
  456. package/dist/cli/simple-commands/init/rollback/index.js +0 -353
  457. package/dist/cli/simple-commands/init/rollback/index.js.map +0 -1
  458. package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts +0 -161
  459. package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts.map +0 -1
  460. package/dist/cli/simple-commands/init/rollback/recovery-manager.js +0 -686
  461. package/dist/cli/simple-commands/init/rollback/recovery-manager.js.map +0 -1
  462. package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts +0 -112
  463. package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts.map +0 -1
  464. package/dist/cli/simple-commands/init/rollback/rollback-executor.js +0 -480
  465. package/dist/cli/simple-commands/init/rollback/rollback-executor.js.map +0 -1
  466. package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts +0 -121
  467. package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts.map +0 -1
  468. package/dist/cli/simple-commands/init/rollback/state-tracker.js +0 -432
  469. package/dist/cli/simple-commands/init/rollback/state-tracker.js.map +0 -1
  470. package/dist/cli/simple-commands/init/skills-copier.d.ts +0 -41
  471. package/dist/cli/simple-commands/init/skills-copier.d.ts.map +0 -1
  472. package/dist/cli/simple-commands/init/skills-copier.js +0 -192
  473. package/dist/cli/simple-commands/init/skills-copier.js.map +0 -1
  474. package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts +0 -2
  475. package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts.map +0 -1
  476. package/dist/cli/simple-commands/init/sparc/roo-readme.js +0 -61
  477. package/dist/cli/simple-commands/init/sparc/roo-readme.js.map +0 -1
  478. package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts +0 -2
  479. package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts.map +0 -1
  480. package/dist/cli/simple-commands/init/sparc/roomodes-config.js +0 -80
  481. package/dist/cli/simple-commands/init/sparc/roomodes-config.js.map +0 -1
  482. package/dist/cli/simple-commands/init/sparc/workflows.d.ts +0 -2
  483. package/dist/cli/simple-commands/init/sparc/workflows.d.ts.map +0 -1
  484. package/dist/cli/simple-commands/init/sparc/workflows.js +0 -36
  485. package/dist/cli/simple-commands/init/sparc/workflows.js.map +0 -1
  486. package/dist/cli/simple-commands/init/sparc-structure.d.ts +0 -2
  487. package/dist/cli/simple-commands/init/sparc-structure.d.ts.map +0 -1
  488. package/dist/cli/simple-commands/init/sparc-structure.js +0 -63
  489. package/dist/cli/simple-commands/init/sparc-structure.js.map +0 -1
  490. package/dist/cli/simple-commands/init/template-copier.d.ts +0 -27
  491. package/dist/cli/simple-commands/init/template-copier.d.ts.map +0 -1
  492. package/dist/cli/simple-commands/init/template-copier.js +0 -538
  493. package/dist/cli/simple-commands/init/template-copier.js.map +0 -1
  494. package/dist/cli/simple-commands/init/templates/claude-md.d.ts +0 -6
  495. package/dist/cli/simple-commands/init/templates/claude-md.d.ts.map +0 -1
  496. package/dist/cli/simple-commands/init/templates/claude-md.js +0 -1097
  497. package/dist/cli/simple-commands/init/templates/claude-md.js.map +0 -1
  498. package/dist/cli/simple-commands/init/templates/coordination-md.d.ts +0 -4
  499. package/dist/cli/simple-commands/init/templates/coordination-md.d.ts.map +0 -1
  500. package/dist/cli/simple-commands/init/templates/coordination-md.js +0 -338
  501. package/dist/cli/simple-commands/init/templates/coordination-md.js.map +0 -1
  502. package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts +0 -21
  503. package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts.map +0 -1
  504. package/dist/cli/simple-commands/init/templates/enhanced-templates.js +0 -2304
  505. package/dist/cli/simple-commands/init/templates/enhanced-templates.js.map +0 -1
  506. package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts +0 -4
  507. package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts.map +0 -1
  508. package/dist/cli/simple-commands/init/templates/memory-bank-md.js +0 -257
  509. package/dist/cli/simple-commands/init/templates/memory-bank-md.js.map +0 -1
  510. package/dist/cli/simple-commands/init/templates/readme-files.d.ts +0 -3
  511. package/dist/cli/simple-commands/init/templates/readme-files.d.ts.map +0 -1
  512. package/dist/cli/simple-commands/init/templates/readme-files.js +0 -71
  513. package/dist/cli/simple-commands/init/templates/readme-files.js.map +0 -1
  514. package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts +0 -30
  515. package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts.map +0 -1
  516. package/dist/cli/simple-commands/init/templates/sparc-modes.js +0 -1375
  517. package/dist/cli/simple-commands/init/templates/sparc-modes.js.map +0 -1
  518. package/dist/cli/simple-commands/init/templates/verification-claude-md.d.ts +0 -3
  519. package/dist/cli/simple-commands/init/templates/verification-claude-md.d.ts.map +0 -1
  520. package/dist/cli/simple-commands/init/templates/verification-claude-md.js +0 -432
  521. package/dist/cli/simple-commands/init/templates/verification-claude-md.js.map +0 -1
  522. package/dist/cli/simple-commands/init/validation/config-validator.d.ts +0 -63
  523. package/dist/cli/simple-commands/init/validation/config-validator.d.ts.map +0 -1
  524. package/dist/cli/simple-commands/init/validation/config-validator.js +0 -308
  525. package/dist/cli/simple-commands/init/validation/config-validator.js.map +0 -1
  526. package/dist/cli/simple-commands/init/validation/health-checker.d.ts +0 -117
  527. package/dist/cli/simple-commands/init/validation/health-checker.d.ts.map +0 -1
  528. package/dist/cli/simple-commands/init/validation/health-checker.js +0 -539
  529. package/dist/cli/simple-commands/init/validation/health-checker.js.map +0 -1
  530. package/dist/cli/simple-commands/init/validation/index.d.ts +0 -55
  531. package/dist/cli/simple-commands/init/validation/index.d.ts.map +0 -1
  532. package/dist/cli/simple-commands/init/validation/index.js +0 -347
  533. package/dist/cli/simple-commands/init/validation/index.js.map +0 -1
  534. package/dist/cli/simple-commands/init/validation/mode-validator.d.ts +0 -76
  535. package/dist/cli/simple-commands/init/validation/mode-validator.d.ts.map +0 -1
  536. package/dist/cli/simple-commands/init/validation/mode-validator.js +0 -343
  537. package/dist/cli/simple-commands/init/validation/mode-validator.js.map +0 -1
  538. package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts +0 -62
  539. package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts.map +0 -1
  540. package/dist/cli/simple-commands/init/validation/post-init-validator.js +0 -349
  541. package/dist/cli/simple-commands/init/validation/post-init-validator.js.map +0 -1
  542. package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts +0 -86
  543. package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts.map +0 -1
  544. package/dist/cli/simple-commands/init/validation/pre-init-validator.js +0 -260
  545. package/dist/cli/simple-commands/init/validation/pre-init-validator.js.map +0 -1
  546. package/dist/cli/simple-commands/inject-memory-protocol.d.ts +0 -34
  547. package/dist/cli/simple-commands/inject-memory-protocol.d.ts.map +0 -1
  548. package/dist/cli/simple-commands/inject-memory-protocol.js +0 -229
  549. package/dist/cli/simple-commands/inject-memory-protocol.js.map +0 -1
  550. package/dist/cli/simple-commands/mcp.d.ts +0 -2
  551. package/dist/cli/simple-commands/mcp.d.ts.map +0 -1
  552. package/dist/cli/simple-commands/mcp.js +0 -369
  553. package/dist/cli/simple-commands/mcp.js.map +0 -1
  554. package/dist/cli/simple-commands/memory-consolidation.d.ts +0 -73
  555. package/dist/cli/simple-commands/memory-consolidation.d.ts.map +0 -1
  556. package/dist/cli/simple-commands/memory-consolidation.js +0 -537
  557. package/dist/cli/simple-commands/memory-consolidation.js.map +0 -1
  558. package/dist/cli/simple-commands/memory.d.ts +0 -2
  559. package/dist/cli/simple-commands/memory.d.ts.map +0 -1
  560. package/dist/cli/simple-commands/memory.js +0 -778
  561. package/dist/cli/simple-commands/memory.js.map +0 -1
  562. package/dist/cli/simple-commands/migrate-hooks.d.ts +0 -10
  563. package/dist/cli/simple-commands/migrate-hooks.d.ts.map +0 -1
  564. package/dist/cli/simple-commands/migrate-hooks.js +0 -57
  565. package/dist/cli/simple-commands/migrate-hooks.js.map +0 -1
  566. package/dist/cli/simple-commands/monitor.d.ts +0 -3
  567. package/dist/cli/simple-commands/monitor.d.ts.map +0 -1
  568. package/dist/cli/simple-commands/monitor.js +0 -366
  569. package/dist/cli/simple-commands/monitor.js.map +0 -1
  570. package/dist/cli/simple-commands/neural.d.ts +0 -3
  571. package/dist/cli/simple-commands/neural.d.ts.map +0 -1
  572. package/dist/cli/simple-commands/neural.js +0 -137
  573. package/dist/cli/simple-commands/neural.js.map +0 -1
  574. package/dist/cli/simple-commands/pair.d.ts +0 -3
  575. package/dist/cli/simple-commands/pair.d.ts.map +0 -1
  576. package/dist/cli/simple-commands/pair.js +0 -735
  577. package/dist/cli/simple-commands/pair.js.map +0 -1
  578. package/dist/cli/simple-commands/performance-hooks.d.ts +0 -20
  579. package/dist/cli/simple-commands/performance-hooks.d.ts.map +0 -1
  580. package/dist/cli/simple-commands/performance-hooks.js +0 -127
  581. package/dist/cli/simple-commands/performance-hooks.js.map +0 -1
  582. package/dist/cli/simple-commands/performance-metrics.d.ts +0 -153
  583. package/dist/cli/simple-commands/performance-metrics.d.ts.map +0 -1
  584. package/dist/cli/simple-commands/performance-metrics.js +0 -759
  585. package/dist/cli/simple-commands/performance-metrics.js.map +0 -1
  586. package/dist/cli/simple-commands/process-ui-enhanced.d.ts +0 -55
  587. package/dist/cli/simple-commands/process-ui-enhanced.d.ts.map +0 -1
  588. package/dist/cli/simple-commands/process-ui-enhanced.js +0 -680
  589. package/dist/cli/simple-commands/process-ui-enhanced.js.map +0 -1
  590. package/dist/cli/simple-commands/proxy.d.ts +0 -5
  591. package/dist/cli/simple-commands/proxy.d.ts.map +0 -1
  592. package/dist/cli/simple-commands/proxy.js +0 -346
  593. package/dist/cli/simple-commands/proxy.js.map +0 -1
  594. package/dist/cli/simple-commands/sparc-modes/architect.d.ts +0 -2
  595. package/dist/cli/simple-commands/sparc-modes/architect.d.ts.map +0 -1
  596. package/dist/cli/simple-commands/sparc-modes/architect.js +0 -126
  597. package/dist/cli/simple-commands/sparc-modes/architect.js.map +0 -1
  598. package/dist/cli/simple-commands/sparc-modes/ask.d.ts +0 -2
  599. package/dist/cli/simple-commands/sparc-modes/ask.d.ts.map +0 -1
  600. package/dist/cli/simple-commands/sparc-modes/ask.js +0 -127
  601. package/dist/cli/simple-commands/sparc-modes/ask.js.map +0 -1
  602. package/dist/cli/simple-commands/sparc-modes/code.d.ts +0 -2
  603. package/dist/cli/simple-commands/sparc-modes/code.d.ts.map +0 -1
  604. package/dist/cli/simple-commands/sparc-modes/code.js +0 -149
  605. package/dist/cli/simple-commands/sparc-modes/code.js.map +0 -1
  606. package/dist/cli/simple-commands/sparc-modes/debug.d.ts +0 -2
  607. package/dist/cli/simple-commands/sparc-modes/debug.d.ts.map +0 -1
  608. package/dist/cli/simple-commands/sparc-modes/debug.js +0 -113
  609. package/dist/cli/simple-commands/sparc-modes/debug.js.map +0 -1
  610. package/dist/cli/simple-commands/sparc-modes/devops.d.ts +0 -2
  611. package/dist/cli/simple-commands/sparc-modes/devops.d.ts.map +0 -1
  612. package/dist/cli/simple-commands/sparc-modes/devops.js +0 -138
  613. package/dist/cli/simple-commands/sparc-modes/devops.js.map +0 -1
  614. package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts +0 -2
  615. package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts.map +0 -1
  616. package/dist/cli/simple-commands/sparc-modes/docs-writer.js +0 -39
  617. package/dist/cli/simple-commands/sparc-modes/docs-writer.js.map +0 -1
  618. package/dist/cli/simple-commands/sparc-modes/generic.d.ts +0 -2
  619. package/dist/cli/simple-commands/sparc-modes/generic.d.ts.map +0 -1
  620. package/dist/cli/simple-commands/sparc-modes/generic.js +0 -35
  621. package/dist/cli/simple-commands/sparc-modes/generic.js.map +0 -1
  622. package/dist/cli/simple-commands/sparc-modes/index.d.ts +0 -17
  623. package/dist/cli/simple-commands/sparc-modes/index.d.ts.map +0 -1
  624. package/dist/cli/simple-commands/sparc-modes/index.js +0 -196
  625. package/dist/cli/simple-commands/sparc-modes/index.js.map +0 -1
  626. package/dist/cli/simple-commands/sparc-modes/integration.d.ts +0 -2
  627. package/dist/cli/simple-commands/sparc-modes/integration.d.ts.map +0 -1
  628. package/dist/cli/simple-commands/sparc-modes/integration.js +0 -56
  629. package/dist/cli/simple-commands/sparc-modes/integration.js.map +0 -1
  630. package/dist/cli/simple-commands/sparc-modes/mcp.d.ts +0 -2
  631. package/dist/cli/simple-commands/sparc-modes/mcp.d.ts.map +0 -1
  632. package/dist/cli/simple-commands/sparc-modes/mcp.js +0 -39
  633. package/dist/cli/simple-commands/sparc-modes/mcp.js.map +0 -1
  634. package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts +0 -2
  635. package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts.map +0 -1
  636. package/dist/cli/simple-commands/sparc-modes/monitoring.js +0 -39
  637. package/dist/cli/simple-commands/sparc-modes/monitoring.js.map +0 -1
  638. package/dist/cli/simple-commands/sparc-modes/optimization.d.ts +0 -2
  639. package/dist/cli/simple-commands/sparc-modes/optimization.d.ts.map +0 -1
  640. package/dist/cli/simple-commands/sparc-modes/optimization.js +0 -39
  641. package/dist/cli/simple-commands/sparc-modes/optimization.js.map +0 -1
  642. package/dist/cli/simple-commands/sparc-modes/security-review.d.ts +0 -2
  643. package/dist/cli/simple-commands/sparc-modes/security-review.d.ts.map +0 -1
  644. package/dist/cli/simple-commands/sparc-modes/security-review.js +0 -131
  645. package/dist/cli/simple-commands/sparc-modes/security-review.js.map +0 -1
  646. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts +0 -2
  647. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts.map +0 -1
  648. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js +0 -168
  649. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js.map +0 -1
  650. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts +0 -2
  651. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts.map +0 -1
  652. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js +0 -39
  653. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js.map +0 -1
  654. package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts +0 -2
  655. package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts.map +0 -1
  656. package/dist/cli/simple-commands/sparc-modes/supabase-admin.js +0 -150
  657. package/dist/cli/simple-commands/sparc-modes/supabase-admin.js.map +0 -1
  658. package/dist/cli/simple-commands/sparc-modes/swarm.d.ts +0 -81
  659. package/dist/cli/simple-commands/sparc-modes/swarm.d.ts.map +0 -1
  660. package/dist/cli/simple-commands/sparc-modes/swarm.js +0 -428
  661. package/dist/cli/simple-commands/sparc-modes/swarm.js.map +0 -1
  662. package/dist/cli/simple-commands/sparc-modes/tdd.d.ts +0 -2
  663. package/dist/cli/simple-commands/sparc-modes/tdd.d.ts.map +0 -1
  664. package/dist/cli/simple-commands/sparc-modes/tdd.js +0 -113
  665. package/dist/cli/simple-commands/sparc-modes/tdd.js.map +0 -1
  666. package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts +0 -2
  667. package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts.map +0 -1
  668. package/dist/cli/simple-commands/sparc-modes/tutorial.js +0 -278
  669. package/dist/cli/simple-commands/sparc-modes/tutorial.js.map +0 -1
  670. package/dist/cli/simple-commands/sparc.d.ts +0 -2
  671. package/dist/cli/simple-commands/sparc.d.ts.map +0 -1
  672. package/dist/cli/simple-commands/sparc.js +0 -477
  673. package/dist/cli/simple-commands/sparc.js.map +0 -1
  674. package/dist/cli/simple-commands/start-ui.d.ts +0 -2
  675. package/dist/cli/simple-commands/start-ui.d.ts.map +0 -1
  676. package/dist/cli/simple-commands/start-ui.js +0 -135
  677. package/dist/cli/simple-commands/start-ui.js.map +0 -1
  678. package/dist/cli/simple-commands/start-wrapper.d.ts +0 -2
  679. package/dist/cli/simple-commands/start-wrapper.d.ts.map +0 -1
  680. package/dist/cli/simple-commands/start-wrapper.js +0 -264
  681. package/dist/cli/simple-commands/start-wrapper.js.map +0 -1
  682. package/dist/cli/simple-commands/start.d.ts +0 -2
  683. package/dist/cli/simple-commands/start.d.ts.map +0 -1
  684. package/dist/cli/simple-commands/start.js +0 -3
  685. package/dist/cli/simple-commands/start.js.map +0 -1
  686. package/dist/cli/simple-commands/status.d.ts +0 -2
  687. package/dist/cli/simple-commands/status.d.ts.map +0 -1
  688. package/dist/cli/simple-commands/status.js +0 -292
  689. package/dist/cli/simple-commands/status.js.map +0 -1
  690. package/dist/cli/simple-commands/stream-chain.d.ts +0 -7
  691. package/dist/cli/simple-commands/stream-chain.d.ts.map +0 -1
  692. package/dist/cli/simple-commands/stream-chain.js +0 -433
  693. package/dist/cli/simple-commands/stream-chain.js.map +0 -1
  694. package/dist/cli/simple-commands/stream-processor.d.ts +0 -32
  695. package/dist/cli/simple-commands/stream-processor.d.ts.map +0 -1
  696. package/dist/cli/simple-commands/stream-processor.js +0 -318
  697. package/dist/cli/simple-commands/stream-processor.js.map +0 -1
  698. package/dist/cli/simple-commands/swarm-executor.d.ts +0 -68
  699. package/dist/cli/simple-commands/swarm-executor.d.ts.map +0 -1
  700. package/dist/cli/simple-commands/swarm-executor.js +0 -218
  701. package/dist/cli/simple-commands/swarm-executor.js.map +0 -1
  702. package/dist/cli/simple-commands/swarm-metrics-integration.d.ts +0 -69
  703. package/dist/cli/simple-commands/swarm-metrics-integration.d.ts.map +0 -1
  704. package/dist/cli/simple-commands/swarm-metrics-integration.js +0 -294
  705. package/dist/cli/simple-commands/swarm-metrics-integration.js.map +0 -1
  706. package/dist/cli/simple-commands/swarm-webui-integration.d.ts +0 -68
  707. package/dist/cli/simple-commands/swarm-webui-integration.d.ts.map +0 -1
  708. package/dist/cli/simple-commands/swarm-webui-integration.js +0 -265
  709. package/dist/cli/simple-commands/swarm-webui-integration.js.map +0 -1
  710. package/dist/cli/simple-commands/swarm.d.ts +0 -2
  711. package/dist/cli/simple-commands/swarm.d.ts.map +0 -1
  712. package/dist/cli/simple-commands/swarm.js +0 -2104
  713. package/dist/cli/simple-commands/swarm.js.map +0 -1
  714. package/dist/cli/simple-commands/task.d.ts +0 -2
  715. package/dist/cli/simple-commands/task.d.ts.map +0 -1
  716. package/dist/cli/simple-commands/task.js +0 -250
  717. package/dist/cli/simple-commands/task.js.map +0 -1
  718. package/dist/cli/simple-commands/token-tracker.d.ts +0 -73
  719. package/dist/cli/simple-commands/token-tracker.d.ts.map +0 -1
  720. package/dist/cli/simple-commands/token-tracker.js +0 -319
  721. package/dist/cli/simple-commands/token-tracker.js.map +0 -1
  722. package/dist/cli/simple-commands/training-pipeline.d.ts +0 -166
  723. package/dist/cli/simple-commands/training-pipeline.d.ts.map +0 -1
  724. package/dist/cli/simple-commands/training-pipeline.js +0 -760
  725. package/dist/cli/simple-commands/training-pipeline.js.map +0 -1
  726. package/dist/cli/simple-commands/training.d.ts +0 -2
  727. package/dist/cli/simple-commands/training.d.ts.map +0 -1
  728. package/dist/cli/simple-commands/training.js +0 -240
  729. package/dist/cli/simple-commands/training.js.map +0 -1
  730. package/dist/cli/simple-commands/verification-training-integration.d.ts +0 -181
  731. package/dist/cli/simple-commands/verification-training-integration.d.ts.map +0 -1
  732. package/dist/cli/simple-commands/verification-training-integration.js +0 -561
  733. package/dist/cli/simple-commands/verification-training-integration.js.map +0 -1
  734. package/dist/cli/simple-commands/verification.d.ts +0 -10
  735. package/dist/cli/simple-commands/verification.d.ts.map +0 -1
  736. package/dist/cli/simple-commands/verification.js +0 -476
  737. package/dist/cli/simple-commands/verification.js.map +0 -1
  738. package/dist/cli/simple-commands/web-server.d.ts +0 -152
  739. package/dist/cli/simple-commands/web-server.d.ts.map +0 -1
  740. package/dist/cli/simple-commands/web-server.js +0 -816
  741. package/dist/cli/simple-commands/web-server.js.map +0 -1
  742. package/dist/cli/utils/interactive-detector.d.ts +0 -25
  743. package/dist/cli/utils/interactive-detector.d.ts.map +0 -1
  744. package/dist/cli/utils/interactive-detector.js +0 -129
  745. package/dist/cli/utils/interactive-detector.js.map +0 -1
  746. package/dist/cli/utils/safe-interactive.d.ts +0 -30
  747. package/dist/cli/utils/safe-interactive.d.ts.map +0 -1
  748. package/dist/cli/utils/safe-interactive.js +0 -134
  749. package/dist/cli/utils/safe-interactive.js.map +0 -1
  750. package/dist/cli/utils.d.ts +0 -75
  751. package/dist/cli/utils.d.ts.map +0 -1
  752. package/dist/cli/utils.js +0 -567
  753. package/dist/cli/utils.js.map +0 -1
  754. package/dist/config/config-manager.d.ts +0 -212
  755. package/dist/config/config-manager.d.ts.map +0 -1
  756. package/dist/config/config-manager.js +0 -550
  757. package/dist/config/config-manager.js.map +0 -1
  758. package/dist/constants/agent-types.d.ts +0 -57
  759. package/dist/constants/agent-types.d.ts.map +0 -1
  760. package/dist/constants/agent-types.js +0 -57
  761. package/dist/constants/agent-types.js.map +0 -1
  762. package/dist/coordination/advanced-scheduler.d.ts +0 -121
  763. package/dist/coordination/advanced-scheduler.d.ts.map +0 -1
  764. package/dist/coordination/advanced-scheduler.js +0 -382
  765. package/dist/coordination/advanced-scheduler.js.map +0 -1
  766. package/dist/coordination/background-executor.d.ts +0 -69
  767. package/dist/coordination/background-executor.d.ts.map +0 -1
  768. package/dist/coordination/background-executor.js +0 -363
  769. package/dist/coordination/background-executor.js.map +0 -1
  770. package/dist/coordination/circuit-breaker.d.ts +0 -124
  771. package/dist/coordination/circuit-breaker.d.ts.map +0 -1
  772. package/dist/coordination/circuit-breaker.js +0 -301
  773. package/dist/coordination/circuit-breaker.js.map +0 -1
  774. package/dist/coordination/conflict-resolution.d.ts +0 -133
  775. package/dist/coordination/conflict-resolution.d.ts.map +0 -1
  776. package/dist/coordination/conflict-resolution.js +0 -360
  777. package/dist/coordination/conflict-resolution.js.map +0 -1
  778. package/dist/coordination/dependency-graph.d.ts +0 -78
  779. package/dist/coordination/dependency-graph.d.ts.map +0 -1
  780. package/dist/coordination/dependency-graph.js +0 -387
  781. package/dist/coordination/dependency-graph.js.map +0 -1
  782. package/dist/coordination/manager.d.ts +0 -66
  783. package/dist/coordination/manager.d.ts.map +0 -1
  784. package/dist/coordination/manager.js +0 -354
  785. package/dist/coordination/manager.js.map +0 -1
  786. package/dist/coordination/messaging.d.ts +0 -37
  787. package/dist/coordination/messaging.d.ts.map +0 -1
  788. package/dist/coordination/messaging.js +0 -219
  789. package/dist/coordination/messaging.js.map +0 -1
  790. package/dist/coordination/metrics.d.ts +0 -153
  791. package/dist/coordination/metrics.d.ts.map +0 -1
  792. package/dist/coordination/metrics.js +0 -436
  793. package/dist/coordination/metrics.js.map +0 -1
  794. package/dist/coordination/resources.d.ts +0 -36
  795. package/dist/coordination/resources.d.ts.map +0 -1
  796. package/dist/coordination/resources.js +0 -254
  797. package/dist/coordination/resources.js.map +0 -1
  798. package/dist/coordination/scheduler.d.ts +0 -48
  799. package/dist/coordination/scheduler.d.ts.map +0 -1
  800. package/dist/coordination/scheduler.js +0 -308
  801. package/dist/coordination/scheduler.js.map +0 -1
  802. package/dist/coordination/swarm-coordinator.d.ts +0 -116
  803. package/dist/coordination/swarm-coordinator.d.ts.map +0 -1
  804. package/dist/coordination/swarm-coordinator.js +0 -563
  805. package/dist/coordination/swarm-coordinator.js.map +0 -1
  806. package/dist/coordination/swarm-monitor.d.ts +0 -101
  807. package/dist/coordination/swarm-monitor.d.ts.map +0 -1
  808. package/dist/coordination/swarm-monitor.js +0 -340
  809. package/dist/coordination/swarm-monitor.js.map +0 -1
  810. package/dist/coordination/work-stealing.d.ts +0 -44
  811. package/dist/coordination/work-stealing.d.ts.map +0 -1
  812. package/dist/coordination/work-stealing.js +0 -158
  813. package/dist/coordination/work-stealing.js.map +0 -1
  814. package/dist/core/config.d.ts +0 -243
  815. package/dist/core/config.d.ts.map +0 -1
  816. package/dist/core/config.js +0 -1125
  817. package/dist/core/config.js.map +0 -1
  818. package/dist/core/event-bus.d.ts +0 -63
  819. package/dist/core/event-bus.d.ts.map +0 -1
  820. package/dist/core/event-bus.js +0 -153
  821. package/dist/core/event-bus.js.map +0 -1
  822. package/dist/core/json-persistence.d.ts +0 -55
  823. package/dist/core/json-persistence.d.ts.map +0 -1
  824. package/dist/core/json-persistence.js +0 -111
  825. package/dist/core/json-persistence.js.map +0 -1
  826. package/dist/core/logger.d.ts +0 -62
  827. package/dist/core/logger.d.ts.map +0 -1
  828. package/dist/core/logger.js +0 -252
  829. package/dist/core/logger.js.map +0 -1
  830. package/dist/core/orchestrator-fixed.d.ts +0 -81
  831. package/dist/core/orchestrator-fixed.d.ts.map +0 -1
  832. package/dist/core/orchestrator-fixed.js +0 -213
  833. package/dist/core/orchestrator-fixed.js.map +0 -1
  834. package/dist/core/orchestrator.d.ts +0 -141
  835. package/dist/core/orchestrator.d.ts.map +0 -1
  836. package/dist/core/orchestrator.js +0 -1166
  837. package/dist/core/orchestrator.js.map +0 -1
  838. package/dist/core/version.d.ts +0 -10
  839. package/dist/core/version.d.ts.map +0 -1
  840. package/dist/core/version.js +0 -36
  841. package/dist/core/version.js.map +0 -1
  842. package/dist/enterprise/analytics-manager.d.ts +0 -489
  843. package/dist/enterprise/analytics-manager.d.ts.map +0 -1
  844. package/dist/enterprise/analytics-manager.js +0 -956
  845. package/dist/enterprise/analytics-manager.js.map +0 -1
  846. package/dist/enterprise/audit-manager.d.ts +0 -459
  847. package/dist/enterprise/audit-manager.d.ts.map +0 -1
  848. package/dist/enterprise/audit-manager.js +0 -1014
  849. package/dist/enterprise/audit-manager.js.map +0 -1
  850. package/dist/enterprise/cloud-manager.d.ts +0 -435
  851. package/dist/enterprise/cloud-manager.d.ts.map +0 -1
  852. package/dist/enterprise/cloud-manager.js +0 -789
  853. package/dist/enterprise/cloud-manager.js.map +0 -1
  854. package/dist/enterprise/deployment-manager.d.ts +0 -328
  855. package/dist/enterprise/deployment-manager.d.ts.map +0 -1
  856. package/dist/enterprise/deployment-manager.js +0 -830
  857. package/dist/enterprise/deployment-manager.js.map +0 -1
  858. package/dist/enterprise/project-manager.d.ts +0 -228
  859. package/dist/enterprise/project-manager.d.ts.map +0 -1
  860. package/dist/enterprise/project-manager.js +0 -537
  861. package/dist/enterprise/project-manager.js.map +0 -1
  862. package/dist/enterprise/security-manager.d.ts +0 -422
  863. package/dist/enterprise/security-manager.d.ts.map +0 -1
  864. package/dist/enterprise/security-manager.js +0 -910
  865. package/dist/enterprise/security-manager.js.map +0 -1
  866. package/dist/execution/agent-executor.d.ts +0 -80
  867. package/dist/execution/agent-executor.d.ts.map +0 -1
  868. package/dist/execution/agent-executor.js +0 -220
  869. package/dist/execution/agent-executor.js.map +0 -1
  870. package/dist/execution/provider-manager.d.ts +0 -65
  871. package/dist/execution/provider-manager.d.ts.map +0 -1
  872. package/dist/execution/provider-manager.js +0 -144
  873. package/dist/execution/provider-manager.js.map +0 -1
  874. package/dist/hive-mind/core/Agent.d.ts +0 -137
  875. package/dist/hive-mind/core/Agent.d.ts.map +0 -1
  876. package/dist/hive-mind/core/Agent.js +0 -567
  877. package/dist/hive-mind/core/Agent.js.map +0 -1
  878. package/dist/hive-mind/core/Communication.d.ts +0 -116
  879. package/dist/hive-mind/core/Communication.d.ts.map +0 -1
  880. package/dist/hive-mind/core/Communication.js +0 -407
  881. package/dist/hive-mind/core/Communication.js.map +0 -1
  882. package/dist/hive-mind/core/DatabaseManager.d.ts +0 -99
  883. package/dist/hive-mind/core/DatabaseManager.d.ts.map +0 -1
  884. package/dist/hive-mind/core/DatabaseManager.js +0 -648
  885. package/dist/hive-mind/core/DatabaseManager.js.map +0 -1
  886. package/dist/hive-mind/core/HiveMind.d.ts +0 -90
  887. package/dist/hive-mind/core/HiveMind.d.ts.map +0 -1
  888. package/dist/hive-mind/core/HiveMind.js +0 -455
  889. package/dist/hive-mind/core/HiveMind.js.map +0 -1
  890. package/dist/hive-mind/core/Memory.d.ts +0 -235
  891. package/dist/hive-mind/core/Memory.d.ts.map +0 -1
  892. package/dist/hive-mind/core/Memory.js +0 -1192
  893. package/dist/hive-mind/core/Memory.js.map +0 -1
  894. package/dist/hive-mind/core/Queen.d.ts +0 -115
  895. package/dist/hive-mind/core/Queen.d.ts.map +0 -1
  896. package/dist/hive-mind/core/Queen.js +0 -649
  897. package/dist/hive-mind/core/Queen.js.map +0 -1
  898. package/dist/hive-mind/integration/ConsensusEngine.d.ts +0 -117
  899. package/dist/hive-mind/integration/ConsensusEngine.d.ts.map +0 -1
  900. package/dist/hive-mind/integration/ConsensusEngine.js +0 -478
  901. package/dist/hive-mind/integration/ConsensusEngine.js.map +0 -1
  902. package/dist/hive-mind/integration/MCPToolWrapper.d.ts +0 -172
  903. package/dist/hive-mind/integration/MCPToolWrapper.d.ts.map +0 -1
  904. package/dist/hive-mind/integration/MCPToolWrapper.js +0 -217
  905. package/dist/hive-mind/integration/MCPToolWrapper.js.map +0 -1
  906. package/dist/hive-mind/integration/SwarmOrchestrator.d.ts +0 -172
  907. package/dist/hive-mind/integration/SwarmOrchestrator.d.ts.map +0 -1
  908. package/dist/hive-mind/integration/SwarmOrchestrator.js +0 -748
  909. package/dist/hive-mind/integration/SwarmOrchestrator.js.map +0 -1
  910. package/dist/hive-mind/types.d.ts +0 -314
  911. package/dist/hive-mind/types.d.ts.map +0 -1
  912. package/dist/hive-mind/types.js +0 -7
  913. package/dist/hive-mind/types.js.map +0 -1
  914. package/dist/mcp/auth.d.ts +0 -80
  915. package/dist/mcp/auth.d.ts.map +0 -1
  916. package/dist/mcp/auth.js +0 -350
  917. package/dist/mcp/auth.js.map +0 -1
  918. package/dist/mcp/claude-flow-tools.d.ts +0 -13
  919. package/dist/mcp/claude-flow-tools.d.ts.map +0 -1
  920. package/dist/mcp/claude-flow-tools.js +0 -1398
  921. package/dist/mcp/claude-flow-tools.js.map +0 -1
  922. package/dist/mcp/load-balancer.d.ts +0 -88
  923. package/dist/mcp/load-balancer.d.ts.map +0 -1
  924. package/dist/mcp/load-balancer.js +0 -393
  925. package/dist/mcp/load-balancer.js.map +0 -1
  926. package/dist/mcp/router.d.ts +0 -54
  927. package/dist/mcp/router.d.ts.map +0 -1
  928. package/dist/mcp/router.js +0 -204
  929. package/dist/mcp/router.js.map +0 -1
  930. package/dist/mcp/ruv-swarm-tools.d.ts +0 -58
  931. package/dist/mcp/ruv-swarm-tools.d.ts.map +0 -1
  932. package/dist/mcp/ruv-swarm-tools.js +0 -568
  933. package/dist/mcp/ruv-swarm-tools.js.map +0 -1
  934. package/dist/mcp/server.d.ts +0 -75
  935. package/dist/mcp/server.d.ts.map +0 -1
  936. package/dist/mcp/server.js +0 -538
  937. package/dist/mcp/server.js.map +0 -1
  938. package/dist/mcp/session-manager.d.ts +0 -60
  939. package/dist/mcp/session-manager.d.ts.map +0 -1
  940. package/dist/mcp/session-manager.js +0 -323
  941. package/dist/mcp/session-manager.js.map +0 -1
  942. package/dist/mcp/swarm-tools.d.ts +0 -87
  943. package/dist/mcp/swarm-tools.d.ts.map +0 -1
  944. package/dist/mcp/swarm-tools.js +0 -731
  945. package/dist/mcp/swarm-tools.js.map +0 -1
  946. package/dist/mcp/tools.d.ts +0 -145
  947. package/dist/mcp/tools.d.ts.map +0 -1
  948. package/dist/mcp/tools.js +0 -434
  949. package/dist/mcp/tools.js.map +0 -1
  950. package/dist/mcp/transports/base.d.ts +0 -22
  951. package/dist/mcp/transports/base.d.ts.map +0 -1
  952. package/dist/mcp/transports/base.js +0 -5
  953. package/dist/mcp/transports/base.js.map +0 -1
  954. package/dist/mcp/transports/http.d.ts +0 -48
  955. package/dist/mcp/transports/http.d.ts.map +0 -1
  956. package/dist/mcp/transports/http.js +0 -400
  957. package/dist/mcp/transports/http.js.map +0 -1
  958. package/dist/mcp/transports/stdio.d.ts +0 -37
  959. package/dist/mcp/transports/stdio.d.ts.map +0 -1
  960. package/dist/mcp/transports/stdio.js +0 -206
  961. package/dist/mcp/transports/stdio.js.map +0 -1
  962. package/dist/memory/advanced-serializer.d.ts +0 -159
  963. package/dist/memory/advanced-serializer.d.ts.map +0 -1
  964. package/dist/memory/advanced-serializer.js +0 -564
  965. package/dist/memory/advanced-serializer.js.map +0 -1
  966. package/dist/memory/backends/base.d.ts +0 -21
  967. package/dist/memory/backends/base.d.ts.map +0 -1
  968. package/dist/memory/backends/base.js +0 -5
  969. package/dist/memory/backends/base.js.map +0 -1
  970. package/dist/memory/backends/markdown.d.ts +0 -35
  971. package/dist/memory/backends/markdown.d.ts.map +0 -1
  972. package/dist/memory/backends/markdown.js +0 -223
  973. package/dist/memory/backends/markdown.js.map +0 -1
  974. package/dist/memory/backends/sqlite.d.ts +0 -33
  975. package/dist/memory/backends/sqlite.d.ts.map +0 -1
  976. package/dist/memory/backends/sqlite.js +0 -291
  977. package/dist/memory/backends/sqlite.js.map +0 -1
  978. package/dist/memory/cache.d.ts +0 -65
  979. package/dist/memory/cache.d.ts.map +0 -1
  980. package/dist/memory/cache.js +0 -188
  981. package/dist/memory/cache.js.map +0 -1
  982. package/dist/memory/distributed-memory.d.ts +0 -188
  983. package/dist/memory/distributed-memory.d.ts.map +0 -1
  984. package/dist/memory/distributed-memory.js +0 -710
  985. package/dist/memory/distributed-memory.js.map +0 -1
  986. package/dist/memory/enhanced-session-serializer.d.ts +0 -115
  987. package/dist/memory/enhanced-session-serializer.d.ts.map +0 -1
  988. package/dist/memory/enhanced-session-serializer.js +0 -478
  989. package/dist/memory/enhanced-session-serializer.js.map +0 -1
  990. package/dist/memory/fallback-store.d.ts +0 -28
  991. package/dist/memory/fallback-store.d.ts.map +0 -1
  992. package/dist/memory/fallback-store.js +0 -101
  993. package/dist/memory/fallback-store.js.map +0 -1
  994. package/dist/memory/in-memory-store.d.ts +0 -37
  995. package/dist/memory/in-memory-store.d.ts.map +0 -1
  996. package/dist/memory/in-memory-store.js +0 -174
  997. package/dist/memory/in-memory-store.js.map +0 -1
  998. package/dist/memory/indexer.d.ts +0 -52
  999. package/dist/memory/indexer.d.ts.map +0 -1
  1000. package/dist/memory/indexer.js +0 -191
  1001. package/dist/memory/indexer.js.map +0 -1
  1002. package/dist/memory/manager.d.ts +0 -58
  1003. package/dist/memory/manager.d.ts.map +0 -1
  1004. package/dist/memory/manager.js +0 -423
  1005. package/dist/memory/manager.js.map +0 -1
  1006. package/dist/memory/sqlite-store.d.ts +0 -34
  1007. package/dist/memory/sqlite-store.d.ts.map +0 -1
  1008. package/dist/memory/sqlite-store.js +0 -268
  1009. package/dist/memory/sqlite-store.js.map +0 -1
  1010. package/dist/memory/sqlite-wrapper.d.ts +0 -38
  1011. package/dist/memory/sqlite-wrapper.d.ts.map +0 -1
  1012. package/dist/memory/sqlite-wrapper.js +0 -152
  1013. package/dist/memory/sqlite-wrapper.js.map +0 -1
  1014. package/dist/memory/swarm-memory.d.ts +0 -91
  1015. package/dist/memory/swarm-memory.d.ts.map +0 -1
  1016. package/dist/memory/swarm-memory.js +0 -454
  1017. package/dist/memory/swarm-memory.js.map +0 -1
  1018. package/dist/memory/unified-memory-manager.d.ts +0 -116
  1019. package/dist/memory/unified-memory-manager.d.ts.map +0 -1
  1020. package/dist/memory/unified-memory-manager.js +0 -397
  1021. package/dist/memory/unified-memory-manager.js.map +0 -1
  1022. package/dist/migration/logger.d.ts +0 -26
  1023. package/dist/migration/logger.d.ts.map +0 -1
  1024. package/dist/migration/logger.js +0 -145
  1025. package/dist/migration/logger.js.map +0 -1
  1026. package/dist/migration/migration-analyzer.d.ts +0 -18
  1027. package/dist/migration/migration-analyzer.d.ts.map +0 -1
  1028. package/dist/migration/migration-analyzer.js +0 -284
  1029. package/dist/migration/migration-analyzer.js.map +0 -1
  1030. package/dist/migration/migration-runner.d.ts +0 -26
  1031. package/dist/migration/migration-runner.d.ts.map +0 -1
  1032. package/dist/migration/migration-runner.js +0 -505
  1033. package/dist/migration/migration-runner.js.map +0 -1
  1034. package/dist/migration/migration-validator.d.ts +0 -17
  1035. package/dist/migration/migration-validator.d.ts.map +0 -1
  1036. package/dist/migration/migration-validator.js +0 -309
  1037. package/dist/migration/migration-validator.js.map +0 -1
  1038. package/dist/migration/progress-reporter.d.ts +0 -28
  1039. package/dist/migration/progress-reporter.d.ts.map +0 -1
  1040. package/dist/migration/progress-reporter.js +0 -163
  1041. package/dist/migration/progress-reporter.js.map +0 -1
  1042. package/dist/migration/rollback-manager.d.ts +0 -24
  1043. package/dist/migration/rollback-manager.d.ts.map +0 -1
  1044. package/dist/migration/rollback-manager.js +0 -351
  1045. package/dist/migration/rollback-manager.js.map +0 -1
  1046. package/dist/migration/types.d.ts +0 -103
  1047. package/dist/migration/types.d.ts.map +0 -1
  1048. package/dist/migration/types.js +0 -6
  1049. package/dist/migration/types.js.map +0 -1
  1050. package/dist/reasoningbank/reasoningbank-adapter.d.ts +0 -93
  1051. package/dist/reasoningbank/reasoningbank-adapter.d.ts.map +0 -1
  1052. package/dist/reasoningbank/reasoningbank-adapter.js +0 -365
  1053. package/dist/reasoningbank/reasoningbank-adapter.js.map +0 -1
  1054. package/dist/sdk/query-control.d.ts +0 -131
  1055. package/dist/sdk/query-control.d.ts.map +0 -1
  1056. package/dist/sdk/query-control.js +0 -363
  1057. package/dist/sdk/query-control.js.map +0 -1
  1058. package/dist/sdk/session-forking.d.ts +0 -109
  1059. package/dist/sdk/session-forking.d.ts.map +0 -1
  1060. package/dist/sdk/session-forking.js +0 -275
  1061. package/dist/sdk/session-forking.js.map +0 -1
  1062. package/dist/swarm/types.d.ts +0 -578
  1063. package/dist/swarm/types.d.ts.map +0 -1
  1064. package/dist/swarm/types.js +0 -54
  1065. package/dist/swarm/types.js.map +0 -1
  1066. package/dist/terminal/adapters/base.d.ts +0 -40
  1067. package/dist/terminal/adapters/base.d.ts.map +0 -1
  1068. package/dist/terminal/adapters/base.js +0 -5
  1069. package/dist/terminal/adapters/base.js.map +0 -1
  1070. package/dist/terminal/adapters/native.d.ts +0 -19
  1071. package/dist/terminal/adapters/native.d.ts.map +0 -1
  1072. package/dist/terminal/adapters/native.js +0 -414
  1073. package/dist/terminal/adapters/native.js.map +0 -1
  1074. package/dist/terminal/adapters/vscode.d.ts +0 -23
  1075. package/dist/terminal/adapters/vscode.d.ts.map +0 -1
  1076. package/dist/terminal/adapters/vscode.js +0 -267
  1077. package/dist/terminal/adapters/vscode.js.map +0 -1
  1078. package/dist/terminal/manager.d.ts +0 -59
  1079. package/dist/terminal/manager.d.ts.map +0 -1
  1080. package/dist/terminal/manager.js +0 -235
  1081. package/dist/terminal/manager.js.map +0 -1
  1082. package/dist/terminal/pool.d.ts +0 -32
  1083. package/dist/terminal/pool.d.ts.map +0 -1
  1084. package/dist/terminal/pool.js +0 -208
  1085. package/dist/terminal/pool.js.map +0 -1
  1086. package/dist/terminal/session.d.ts +0 -41
  1087. package/dist/terminal/session.d.ts.map +0 -1
  1088. package/dist/terminal/session.js +0 -210
  1089. package/dist/terminal/session.js.map +0 -1
  1090. package/dist/utils/error-handler.d.ts +0 -14
  1091. package/dist/utils/error-handler.d.ts.map +0 -1
  1092. package/dist/utils/error-handler.js +0 -29
  1093. package/dist/utils/error-handler.js.map +0 -1
  1094. package/dist/utils/errors.d.ts +0 -121
  1095. package/dist/utils/errors.d.ts.map +0 -1
  1096. package/dist/utils/errors.js +0 -194
  1097. package/dist/utils/errors.js.map +0 -1
  1098. package/dist/utils/formatters.d.ts +0 -15
  1099. package/dist/utils/formatters.d.ts.map +0 -1
  1100. package/dist/utils/formatters.js +0 -75
  1101. package/dist/utils/formatters.js.map +0 -1
  1102. package/dist/utils/helpers.d.ts +0 -134
  1103. package/dist/utils/helpers.d.ts.map +0 -1
  1104. package/dist/utils/helpers.js +0 -444
  1105. package/dist/utils/helpers.js.map +0 -1
  1106. package/dist/utils/key-redactor.d.ts +0 -46
  1107. package/dist/utils/key-redactor.d.ts.map +0 -1
  1108. package/dist/utils/key-redactor.js +0 -153
  1109. package/dist/utils/key-redactor.js.map +0 -1
  1110. package/dist/utils/metrics-reader.d.ts +0 -67
  1111. package/dist/utils/metrics-reader.d.ts.map +0 -1
  1112. package/dist/utils/metrics-reader.js +0 -201
  1113. package/dist/utils/metrics-reader.js.map +0 -1
  1114. package/dist/utils/npx-isolated-cache.d.ts +0 -17
  1115. package/dist/utils/npx-isolated-cache.d.ts.map +0 -1
  1116. package/dist/utils/npx-isolated-cache.js +0 -140
  1117. package/dist/utils/npx-isolated-cache.js.map +0 -1
  1118. package/dist/utils/project-root.d.ts +0 -35
  1119. package/dist/utils/project-root.d.ts.map +0 -1
  1120. package/dist/utils/project-root.js +0 -115
  1121. package/dist/utils/project-root.js.map +0 -1
  1122. package/dist/utils/type-guards.d.ts +0 -117
  1123. package/dist/utils/type-guards.d.ts.map +0 -1
  1124. package/dist/utils/type-guards.js +0 -166
  1125. package/dist/utils/type-guards.js.map +0 -1
  1126. package/dist/utils/types.d.ts +0 -568
  1127. package/dist/utils/types.d.ts.map +0 -1
  1128. package/dist/utils/types.js +0 -37
  1129. package/dist/utils/types.js.map +0 -1
  1130. /package/docs/{COMMANDS_TO_SKILLS_MIGRATION.md → development/COMMANDS_TO_SKILLS_MIGRATION.md} +0 -0
  1131. /package/docs/{FINAL_INIT_STRUCTURE.md → development/FINAL_INIT_STRUCTURE.md} +0 -0
  1132. /package/docs/{CLI-MEMORY-COMMANDS-WORKING.md → fixes/CLI-MEMORY-COMMANDS-WORKING.md} +0 -0
  1133. /package/docs/{PERFORMANCE-JSON-IMPROVEMENTS.md → performance/PERFORMANCE-JSON-IMPROVEMENTS.md} +0 -0
  1134. /package/docs/{PERFORMANCE-METRICS-GUIDE.md → performance/PERFORMANCE-METRICS-GUIDE.md} +0 -0
  1135. /package/docs/{RELEASE-NOTES-v2.7.0-alpha.9.md → releases/v2.7.0-alpha.9/RELEASE-NOTES-v2.7.0-alpha.9.md} +0 -0
@@ -1,1383 +0,0 @@
1
- /**
2
- * Modular Automation Executor for Claude Flow
3
- *
4
- * This module provides the core infrastructure for executing automation
5
- * workflows with Claude CLI integration, while preserving existing
6
- * swarm and hive-mind functionality.
7
- */
8
- import { promises as fs } from 'fs';
9
- import { spawn } from 'child_process';
10
- import { join, dirname } from 'path';
11
- import { printSuccess, printError, printWarning } from '../utils.js';
12
- // Simple ID generator
13
- function generateId(prefix = 'id') {
14
- return `${prefix}-${Date.now()}-${Math.random().toString(36).substr(2, 9)}`;
15
- }
16
- /**
17
- * WorkflowExecutor - Core class for executing automation workflows
18
- */
19
- export class WorkflowExecutor {
20
- constructor(options = {}) {
21
- this.options = {
22
- enableClaude: false,
23
- nonInteractive: false,
24
- outputFormat: 'text',
25
- maxConcurrency: 3,
26
- timeout: 3600000, // 1 hour default
27
- logLevel: 'info',
28
- ...options
29
- };
30
- // Increase timeout for ML workflows
31
- if (options.workflowType === 'ml' || options.workflowName?.toLowerCase().includes('mle')) {
32
- this.options.timeout = 7200000; // 2 hours for ML workflows
33
- }
34
- // Execution state
35
- this.executionId = generateId('workflow-exec');
36
- this.startTime = Date.now();
37
- this.activeTasks = new Map();
38
- this.claudeInstances = new Map();
39
- this.results = new Map();
40
- this.errors = [];
41
- this.currentWorkflow = null;
42
- // Stream chaining support
43
- this.taskOutputStreams = new Map(); // Store output streams for chaining
44
- this.enableChaining = options.enableChaining !== false; // Default to true
45
- // Hooks integration
46
- this.hooksEnabled = true;
47
- this.sessionId = generateId('automation-session');
48
- }
49
- /**
50
- * Execute a workflow from JSON definition
51
- */
52
- async executeWorkflow(workflowData, variables = {}) {
53
- try {
54
- // Store workflow for reference
55
- this.currentWorkflow = workflowData;
56
- if (this.options.logLevel === 'quiet') {
57
- console.log(`🚀 Executing workflow: ${this.executionId}`);
58
- }
59
- else {
60
- console.log(`🚀 Starting workflow execution: ${this.executionId}`);
61
- console.log(`📋 Workflow: ${workflowData.name}`);
62
- console.log(`🎯 Strategy: MLE-STAR Machine Learning Engineering`);
63
- if (this.options.enableClaude) {
64
- console.log(`🤖 Claude CLI Integration: Enabled`);
65
- }
66
- if (this.options.nonInteractive) {
67
- console.log(`🖥️ Non-Interactive Mode: Enabled`);
68
- if (this.options.outputFormat === 'stream-json') {
69
- console.log();
70
- console.log('● Running MLE-STAR workflow with Claude CLI integration');
71
- console.log(' ⎿ Command format: claude --print --output-format stream-json --verbose --dangerously-skip-permissions');
72
- console.log(' ⎿ Each agent will show real-time stream output below');
73
- console.log(' ⎿ Interactive-style formatting enabled');
74
- }
75
- }
76
- }
77
- console.log();
78
- // Pre-execution hooks
79
- if (this.hooksEnabled) {
80
- await this.executeHook('pre-task', {
81
- description: `Execute workflow: ${workflowData.name}`,
82
- sessionId: this.sessionId
83
- });
84
- }
85
- // Validate workflow
86
- this.validateWorkflow(workflowData);
87
- // Apply variable substitutions
88
- const processedWorkflow = this.applyVariables(workflowData, variables);
89
- // Initialize agents if Claude integration is enabled
90
- if (this.options.enableClaude) {
91
- await this.initializeClaudeAgents(processedWorkflow.agents);
92
- }
93
- // Execute workflow phases
94
- const result = await this.executeWorkflowTasks(processedWorkflow);
95
- // Post-execution hooks
96
- if (this.hooksEnabled) {
97
- await this.executeHook('post-task', {
98
- taskId: this.executionId,
99
- sessionId: this.sessionId,
100
- result: result.success ? 'success' : 'failure'
101
- });
102
- }
103
- const duration = Date.now() - this.startTime;
104
- if (result.success) {
105
- printSuccess(`✅ Workflow completed successfully in ${this.formatDuration(duration)}`);
106
- console.log(`📊 Tasks: ${result.completedTasks}/${result.totalTasks} completed`);
107
- console.log(`🆔 Execution ID: ${this.executionId}`);
108
- }
109
- else {
110
- printError(`❌ Workflow failed after ${this.formatDuration(duration)}`);
111
- console.log(`📊 Tasks: ${result.completedTasks}/${result.totalTasks} completed`);
112
- console.log(`❌ Errors: ${this.errors.length}`);
113
- }
114
- // Cleanup Claude instances
115
- if (this.options.enableClaude) {
116
- await this.cleanupClaudeInstances();
117
- }
118
- return result;
119
- }
120
- catch (error) {
121
- printError(`Workflow execution failed: ${error.message}`);
122
- await this.cleanupClaudeInstances();
123
- throw error;
124
- }
125
- }
126
- /**
127
- * Initialize Claude CLI instances for agents
128
- */
129
- async initializeClaudeAgents(agents) {
130
- if (!agents || agents.length === 0) {
131
- return;
132
- }
133
- // Check if Claude CLI is available
134
- if (!await this.isClaudeAvailable()) {
135
- throw new Error('Claude CLI not found. Please install Claude Code: https://claude.ai/code');
136
- }
137
- if (this.options.nonInteractive) {
138
- // Non-interactive mode: agents are spawned per task instead
139
- if (this.options.logLevel !== 'quiet') {
140
- console.log(`🤖 Non-interactive mode: Claude instances will be spawned per task`);
141
- console.log(`📋 Each task will launch its own Claude process with specific prompts`);
142
- }
143
- return;
144
- }
145
- else {
146
- // Interactive mode: spawn single Claude instance with master coordination prompt
147
- console.log(`🤖 Interactive mode: Initializing single Claude instance for workflow coordination...`);
148
- try {
149
- // Create master coordination prompt for all agents and workflow
150
- const masterPrompt = this.createMasterCoordinationPrompt(agents);
151
- // Spawn single Claude instance for workflow coordination
152
- const claudeProcess = await this.spawnClaudeInstance({
153
- id: 'master-coordinator',
154
- name: 'Workflow Coordinator',
155
- type: 'coordinator'
156
- }, masterPrompt);
157
- // Store as master coordinator
158
- this.claudeInstances.set('master-coordinator', {
159
- process: claudeProcess,
160
- agent: { id: 'master-coordinator', name: 'Workflow Coordinator', type: 'coordinator' },
161
- status: 'active',
162
- startTime: Date.now(),
163
- agents: agents // Store agent definitions for reference
164
- });
165
- console.log(` ✅ Master Workflow Coordinator (PID: ${claudeProcess.pid})`);
166
- console.log(` 🎯 Coordinating ${agents.length} sub-agents via concurrent streams`);
167
- console.log(` 📋 Agents: ${agents.map(a => a.name).join(', ')}`);
168
- }
169
- catch (error) {
170
- console.error(` ❌ Failed to initialize master coordinator: ${error.message}`);
171
- this.errors.push({
172
- type: 'master_coordinator_initialization',
173
- error: error.message,
174
- timestamp: new Date()
175
- });
176
- }
177
- console.log();
178
- }
179
- }
180
- /**
181
- * Check if Claude CLI is available
182
- */
183
- async isClaudeAvailable() {
184
- try {
185
- const { execSync } = await import('child_process');
186
- execSync('which claude', { stdio: 'ignore' });
187
- return true;
188
- }
189
- catch {
190
- return false;
191
- }
192
- }
193
- /**
194
- * Spawn a Claude CLI instance for an agent
195
- * @param {Object} agent - The agent configuration
196
- * @param {string} prompt - The prompt for the agent
197
- * @param {Object} options - Additional options
198
- * @param {Stream} options.inputStream - Optional input stream from previous agent
199
- * @param {boolean} options.enableChaining - Whether to enable stream-json chaining
200
- */
201
- async spawnClaudeInstance(agent, prompt, options = {}) {
202
- const claudeArgs = [];
203
- // Add flags based on mode
204
- if (this.options.nonInteractive) {
205
- // Non-interactive mode: use --print with stream-json output
206
- claudeArgs.push('--print');
207
- if (this.options.outputFormat === 'stream-json') {
208
- claudeArgs.push('--output-format', 'stream-json');
209
- claudeArgs.push('--verbose'); // Required for stream-json
210
- // Add input format if we're chaining from a previous agent
211
- if (options.inputStream) {
212
- claudeArgs.push('--input-format', 'stream-json');
213
- }
214
- }
215
- }
216
- // Always skip permissions for automated workflows (both interactive and non-interactive)
217
- claudeArgs.push('--dangerously-skip-permissions');
218
- // Always add the prompt as the final argument
219
- claudeArgs.push(prompt);
220
- // Only show command details in verbose mode
221
- if (this.options.logLevel === 'debug') {
222
- const displayPrompt = prompt.length > 100 ? prompt.substring(0, 100) + '...' : prompt;
223
- const flagsDisplay = this.options.nonInteractive ?
224
- (this.options.outputFormat === 'stream-json' ?
225
- (options.inputStream ? '--print --input-format stream-json --output-format stream-json --verbose --dangerously-skip-permissions' : '--print --output-format stream-json --verbose --dangerously-skip-permissions') :
226
- '--print --dangerously-skip-permissions') :
227
- '--dangerously-skip-permissions';
228
- console.log(` 🤖 Spawning Claude for ${agent.name}: claude ${flagsDisplay} "${displayPrompt}"`);
229
- }
230
- else if (this.options.logLevel !== 'quiet') {
231
- console.log(` 🚀 Starting ${agent.name}`);
232
- }
233
- // Determine stdio configuration based on mode and chaining
234
- const stdioConfig = this.options.nonInteractive ?
235
- [options.inputStream ? 'pipe' : 'inherit', 'pipe', 'pipe'] : // Non-interactive: pipe for chaining
236
- ['inherit', 'inherit', 'inherit']; // Interactive: inherit all for normal Claude interaction
237
- // Spawn Claude process
238
- const claudeProcess = spawn('claude', claudeArgs, {
239
- stdio: stdioConfig,
240
- shell: false,
241
- });
242
- // If we have an input stream, pipe it to Claude's stdin
243
- if (options.inputStream && claudeProcess.stdin) {
244
- console.log(` 🔗 Chaining: Piping output from previous agent to ${agent.name}`);
245
- options.inputStream.pipe(claudeProcess.stdin);
246
- }
247
- // Handle stdout with stream processor for better formatting (only in non-interactive mode)
248
- if (this.options.nonInteractive && this.options.outputFormat === 'stream-json' && claudeProcess.stdout) {
249
- // Import and use stream processor
250
- const { createStreamProcessor } = await import('./stream-processor.js');
251
- const streamProcessor = createStreamProcessor(agent.name, this.getAgentIcon(agent.id), {
252
- verbose: this.options.logLevel === 'debug',
253
- logLevel: this.options.logLevel,
254
- taskId: agent.taskId,
255
- agentId: agent.id,
256
- display: null // Interactive-style formatting instead of concurrent display
257
- });
258
- // Pipe stdout through processor
259
- claudeProcess.stdout.pipe(streamProcessor);
260
- // Handle stderr for non-interactive mode
261
- claudeProcess.stderr.on('data', (data) => {
262
- const message = data.toString().trim();
263
- if (message) {
264
- console.error(` ❌ [${agent.name}] Error: ${message}`);
265
- }
266
- });
267
- }
268
- else if (this.options.nonInteractive && this.options.outputFormat !== 'stream-json') {
269
- // For non-interactive non-stream-json output, show stdout directly
270
- claudeProcess.stdout.on('data', (data) => {
271
- console.log(data.toString().trimEnd());
272
- });
273
- claudeProcess.stderr.on('data', (data) => {
274
- console.error(data.toString().trimEnd());
275
- });
276
- }
277
- // Note: In interactive mode, stdio is inherited so Claude handles its own I/O
278
- // Handle process events
279
- claudeProcess.on('error', (error) => {
280
- console.error(`❌ Claude instance error for ${agent.name}:`, error.message);
281
- this.errors.push({
282
- type: 'claude_instance_error',
283
- agent: agent.id,
284
- error: error.message,
285
- timestamp: new Date()
286
- });
287
- });
288
- claudeProcess.on('exit', (code) => {
289
- const instance = this.claudeInstances.get(agent.id);
290
- if (instance) {
291
- instance.status = code === 0 ? 'completed' : 'failed';
292
- instance.exitCode = code;
293
- instance.endTime = Date.now();
294
- }
295
- });
296
- return claudeProcess;
297
- }
298
- /**
299
- * Handle Claude stream events
300
- */
301
- handleClaudeStreamEvent(agent, event) {
302
- if (this.options.outputFormat === 'stream-json') {
303
- // Create concise formatted JSON with summary
304
- const summary = this.getEventSummary(event);
305
- const icon = this.getEventIcon(event.type);
306
- // Simplified output for better readability
307
- const output = {
308
- t: new Date().toISOString().split('T')[1].split('.')[0], // HH:MM:SS
309
- agent: `${this.getAgentIcon(agent.id)} ${agent.name}`,
310
- phase: this.currentPhase,
311
- event: `${icon} ${summary}`
312
- };
313
- // Add relevant details based on event type
314
- if (event.type === 'tool_use' && event.name) {
315
- output.tool = event.name;
316
- }
317
- else if (event.type === 'error' && event.error) {
318
- output.error = event.error;
319
- }
320
- console.log(JSON.stringify(output));
321
- }
322
- else {
323
- // Format output for text mode
324
- switch (event.type) {
325
- case 'tool_use':
326
- console.log(` [${agent.name}] 🔧 Using tool: ${event.name}`);
327
- break;
328
- case 'message':
329
- console.log(` [${agent.name}] 💬 ${event.content}`);
330
- break;
331
- case 'completion':
332
- console.log(` [${agent.name}] ✅ Task completed`);
333
- break;
334
- case 'error':
335
- console.error(` [${agent.name}] ❌ Error: ${event.error}`);
336
- break;
337
- default:
338
- // Log other events in debug mode
339
- if (this.options.logLevel === 'debug') {
340
- console.log(` [${agent.name}] ${event.type}: ${JSON.stringify(event)}`);
341
- }
342
- }
343
- }
344
- }
345
- /**
346
- * Get a brief summary of an event
347
- */
348
- getEventSummary(event) {
349
- switch (event.type) {
350
- case 'tool_use':
351
- return `Using ${event.name} tool`;
352
- case 'message':
353
- return event.content?.substring(0, 100) + (event.content?.length > 100 ? '...' : '');
354
- case 'completion':
355
- return 'Task completed successfully';
356
- case 'error':
357
- return `Error: ${event.error}`;
358
- case 'status':
359
- return event.status || 'Status update';
360
- default:
361
- return event.type;
362
- }
363
- }
364
- /**
365
- * Get icon for event type
366
- */
367
- getEventIcon(eventType) {
368
- const icons = {
369
- 'tool_use': '🔧',
370
- 'message': '💬',
371
- 'completion': '✅',
372
- 'error': '❌',
373
- 'status': '📊',
374
- 'init': '🚀',
375
- 'thinking': '🤔',
376
- 'result': '📋'
377
- };
378
- return icons[eventType] || '📌';
379
- }
380
- /**
381
- * Create task-specific Claude prompt with comprehensive MLE-STAR instructions
382
- */
383
- createTaskPrompt(task, agent, workflow) {
384
- // Use the claudePrompt from the task if available
385
- if (task.claudePrompt) {
386
- // Apply variable substitutions to the prompt
387
- let basePrompt = task.claudePrompt;
388
- const allVariables = { ...workflow.variables, ...task.input };
389
- for (const [key, value] of Object.entries(allVariables)) {
390
- const pattern = new RegExp(`\\$\\{${key}\\}`, 'g');
391
- basePrompt = basePrompt.replace(pattern, value);
392
- }
393
- // Create comprehensive task prompt with MLE-STAR methodology
394
- return `🎯 MLE-STAR AGENT TASK EXECUTION
395
-
396
- You are the **${agent.name}** (${agent.type}) in a coordinated MLE-STAR automation workflow.
397
-
398
- 📋 IMMEDIATE TASK:
399
- ${basePrompt}
400
-
401
- 🤖 AGENT ROLE & SPECIALIZATION:
402
- ${this.getAgentRoleDescription(agent.type)}
403
-
404
- 🎯 AGENT CAPABILITIES:
405
- ${agent.config?.capabilities?.join(', ') || 'general automation'}
406
-
407
- 🔬 MLE-STAR METHODOLOGY FOCUS:
408
- ${this.getMethodologyGuidance(agent.type)}
409
-
410
- 🔧 COORDINATION REQUIREMENTS:
411
- 1. **HOOKS INTEGRATION** (CRITICAL):
412
- - BEFORE starting: \`npx claude-flow@alpha hooks pre-task --description "${task.description}"\`
413
- - AFTER each file operation: \`npx claude-flow@alpha hooks post-edit --file "[filepath]"\`
414
- - WHEN complete: \`npx claude-flow@alpha hooks post-task --task-id "${task.id}"\`
415
-
416
- 2. **MEMORY STORAGE** (CRITICAL):
417
- - Store findings: \`npx claude-flow@alpha memory store "agent/${agent.id}/findings" "[your_findings]"\`
418
- - Store results: \`npx claude-flow@alpha memory store "agent/${agent.id}/results" "[your_results]"\`
419
- - Check other agents: \`npx claude-flow@alpha memory search "agent/*"\`
420
-
421
- 3. **SESSION COORDINATION**:
422
- - Session ID: ${this.sessionId}
423
- - Execution ID: ${this.executionId}
424
- - Task ID: ${task.id}
425
- - Agent ID: ${agent.id}
426
-
427
- 4. **WORKFLOW PIPELINE AWARENESS**:
428
- - Your position: ${this.getAgentPositionInPipeline(agent.type)}
429
- - Coordinate with: ${this.getCoordinationPartners(agent.type)}
430
- - File naming: Use \`${agent.id}_[component].[ext]\` convention
431
-
432
- 5. **OUTPUT REQUIREMENTS**:
433
- - Use detailed progress reporting
434
- - Document methodology decisions
435
- - Provide clear deliverables
436
- - Follow MLE-STAR best practices for your role
437
-
438
- 🚀 EXECUTION INSTRUCTIONS:
439
- 1. Start with hooks pre-task command
440
- 2. Execute your specialized MLE-STAR role
441
- 3. Store all findings and results in memory
442
- 4. Coordinate with other agents as needed
443
- 5. Complete with hooks post-task command
444
- 6. Exit when task is fully complete
445
-
446
- 🎯 SUCCESS CRITERIA:
447
- - Task objective completed according to MLE-STAR methodology
448
- - All coordination hooks executed successfully
449
- - Results stored in memory for other agents
450
- - Clear documentation of approach and findings
451
- - Ready for next pipeline phase
452
-
453
- Begin execution now with the hooks pre-task command.`;
454
- }
455
- else {
456
- // Fallback to full agent prompt
457
- return this.createAgentPrompt(agent);
458
- }
459
- }
460
- /**
461
- * Create agent-specific Claude prompt
462
- */
463
- createAgentPrompt(agent) {
464
- const { config } = agent;
465
- const capabilities = config?.capabilities?.join(', ') || 'general automation';
466
- return `You are the ${agent.name} in a coordinated MLE-STAR automation workflow.
467
-
468
- 🎯 AGENT ROLE: ${agent.type.toUpperCase()}
469
- 📋 CAPABILITIES: ${capabilities}
470
- 🆔 AGENT ID: ${agent.id}
471
-
472
- CRITICAL COORDINATION REQUIREMENTS:
473
- 1. HOOKS: Use claude-flow hooks for coordination:
474
- - Run "npx claude-flow@alpha hooks pre-task --description '[your task]'" before starting
475
- - Run "npx claude-flow@alpha hooks post-edit --file '[file]'" after each file operation
476
- - Run "npx claude-flow@alpha hooks post-task --task-id '${agent.id}'" when complete
477
-
478
- 2. MEMORY: Store all findings and results:
479
- - Use "npx claude-flow@alpha memory store 'agent/${agent.id}/[key]' '[value]'" for important data
480
- - Check "npx claude-flow@alpha memory search 'agent/*'" for coordination with other agents
481
-
482
- 3. SESSION: Maintain session coordination:
483
- - Session ID: ${this.sessionId}
484
- - Execution ID: ${this.executionId}
485
-
486
- AGENT-SPECIFIC CONFIGURATION:
487
- ${JSON.stringify(config, null, 2)}
488
-
489
- MLE-STAR METHODOLOGY FOCUS:
490
- ${this.getMethodologyGuidance(agent.type)}
491
-
492
- WORKFLOW COORDINATION:
493
- - Work with other agents in the pipeline: Search → Foundation → Refinement → Ensemble → Validation
494
- - Share findings through memory system
495
- - Use proper file naming conventions: ${agent.id}_[component].[ext]
496
- - Follow MLE-STAR best practices for your role
497
-
498
- Execute your role in the MLE-STAR workflow with full coordination and hook integration.`;
499
- }
500
- /**
501
- * Create master coordination prompt for interactive mode
502
- */
503
- createMasterCoordinationPrompt(agents) {
504
- const workflowData = this.currentWorkflow || { name: 'MLE-STAR Workflow', description: 'Machine Learning Engineering via Search and Targeted Refinement' };
505
- return `🚀 MLE-STAR WORKFLOW COORDINATION MASTER
506
-
507
- You are the MASTER COORDINATOR for a comprehensive MLE-STAR (Machine Learning Engineering via Search and Targeted Refinement) workflow.
508
-
509
- 📋 WORKFLOW: ${workflowData.name}
510
- 🎯 DESCRIPTION: ${workflowData.description}
511
- 🆔 EXECUTION ID: ${this.executionId}
512
- 🔄 SESSION ID: ${this.sessionId}
513
-
514
- 🤖 SUB-AGENTS TO COORDINATE (${agents.length} total):
515
- ${agents.map((agent, index) => `
516
- ${index + 1}. ${agent.name} (${agent.type})
517
- 🎯 Role: ${this.getAgentRoleDescription(agent.type)}
518
- 📋 Capabilities: ${agent.config?.capabilities?.join(', ') || 'general automation'}
519
- 🆔 ID: ${agent.id}`).join('')}
520
-
521
- 🔧 CRITICAL: USE CONCURRENT STREAMS FOR PARALLEL EXECUTION
522
-
523
- You MUST coordinate these agents using Claude's concurrent execution capabilities:
524
-
525
- 1. **USE TASK TOOL FOR CONCURRENT AGENTS**:
526
- For each sub-agent, use the Task tool to spawn them with detailed prompts:
527
-
528
- Task("You are ${agent.name}. ${detailed_role_prompt}", "${agent.id}", "agent-${agent.type}")
529
-
530
- 2. **PARALLEL EXECUTION PATTERN**:
531
- Execute multiple agents simultaneously using the Task tool in a single response:
532
-
533
- \`\`\`
534
- Task("Detailed prompt for Search Agent...", "search_agent", "researcher")
535
- Task("Detailed prompt for Foundation Agent...", "foundation_agent", "coder")
536
- Task("Detailed prompt for Refinement Agent...", "refinement_agent", "optimizer")
537
- Task("Detailed prompt for Ensemble Agent...", "ensemble_agent", "analyst")
538
- Task("Detailed prompt for Validation Agent...", "validation_agent", "tester")
539
- \`\`\`
540
-
541
- 3. **DETAILED SUB-AGENT PROMPTS**:
542
- Each Task call should include comprehensive instructions:
543
- - Specific MLE-STAR role and responsibilities
544
- - Required actions and deliverables
545
- - Coordination requirements with other agents
546
- - Output format specifications
547
- - Use of --output-format stream-json for progress tracking
548
-
549
- 4. **COORDINATION WORKFLOW**:
550
- Phase 1: Search & Foundation (parallel)
551
- Phase 2: Refinement & Optimization (depends on Phase 1)
552
- Phase 3: Ensemble & Validation (depends on Phase 2)
553
-
554
- 5. **OUTPUT MANAGEMENT**:
555
- Instruct each agent to use appropriate Claude CLI flags:
556
- - Use --print --output-format stream-json --verbose for real-time progress
557
- - Coordinate results through file system and memory
558
-
559
- 🎯 YOUR MISSION:
560
- 1. Launch all ${agents.length} sub-agents using concurrent Task calls
561
- 2. Provide detailed, specific prompts for each agent's MLE-STAR role
562
- 3. Coordinate the workflow execution phases
563
- 4. Monitor progress and provide updates
564
- 5. Synthesize final results
565
-
566
- METHODOLOGY PHASES:
567
- ${this.getMasterMethodologyGuide()}
568
-
569
- 🚀 BEGIN: Start by deploying all sub-agents with detailed prompts using the Task tool for concurrent execution. Each agent should receive comprehensive instructions for their specific MLE-STAR role.`;
570
- }
571
- /**
572
- * Get agent role description for coordination
573
- */
574
- getAgentRoleDescription(agentType) {
575
- const roles = {
576
- researcher: 'Web Search & Foundation Discovery - Find state-of-the-art approaches',
577
- coder: 'Model Implementation & Training Pipeline - Build foundation models',
578
- optimizer: 'Performance Tuning & Architecture Refinement - Optimize models',
579
- analyst: 'Ensemble Methods & Meta-Learning - Combine multiple approaches',
580
- tester: 'Validation & Debugging - Ensure quality and performance',
581
- coordinator: 'Workflow Orchestration - Manage overall pipeline'
582
- };
583
- return roles[agentType] || 'Specialized automation task execution';
584
- }
585
- /**
586
- * Get comprehensive methodology guide for master coordinator
587
- */
588
- getMasterMethodologyGuide() {
589
- return `
590
- PHASE 1 - SEARCH & FOUNDATION (Parallel):
591
- 🔬 Search Agent: Research ML approaches, algorithms, and best practices
592
- 💻 Foundation Agent: Implement baseline models and training infrastructure
593
-
594
- PHASE 2 - REFINEMENT (Sequential, depends on Phase 1):
595
- ⚡ Refinement Agent: Optimize models, tune hyperparameters, improve performance
596
-
597
- PHASE 3 - ENSEMBLE & VALIDATION (Parallel, depends on Phase 2):
598
- 🏛️ Ensemble Agent: Combine models, implement voting/stacking strategies
599
- 🧪 Validation Agent: Test, debug, validate performance, generate reports
600
-
601
- COORDINATION KEY POINTS:
602
- - Use shared file system for intermediate results
603
- - Maintain communication through progress updates
604
- - Each phase builds on previous phases
605
- - Final deliverable: Production-ready ML pipeline`;
606
- }
607
- /**
608
- * Get agent position in MLE-STAR pipeline
609
- */
610
- getAgentPositionInPipeline(agentType) {
611
- const positions = {
612
- researcher: 'Phase 1: Search & Foundation Discovery (Parallel with Foundation)',
613
- coder: 'Phase 1: Foundation Model Building (Parallel with Search)',
614
- optimizer: 'Phase 2: Refinement & Optimization (Sequential, depends on Phase 1)',
615
- analyst: 'Phase 3: Ensemble & Meta-Learning (Parallel with Validation)',
616
- tester: 'Phase 3: Validation & Debugging (Parallel with Ensemble)',
617
- coordinator: 'All Phases: Workflow Orchestration & Coordination'
618
- };
619
- return positions[agentType] || 'Specialized task execution';
620
- }
621
- /**
622
- * Get coordination partners for agent type
623
- */
624
- getCoordinationPartners(agentType) {
625
- const partners = {
626
- researcher: 'Foundation Agent (parallel), Refinement Agent (handoff)',
627
- coder: 'Search Agent (parallel), Refinement Agent (handoff)',
628
- optimizer: 'Search & Foundation Agents (input), Ensemble & Validation Agents (handoff)',
629
- analyst: 'Refinement Agent (input), Validation Agent (parallel)',
630
- tester: 'All previous agents (validation), Ensemble Agent (parallel)',
631
- coordinator: 'All agents (orchestration and monitoring)'
632
- };
633
- return partners[agentType] || 'Other workflow agents as needed';
634
- }
635
- /**
636
- * Get methodology guidance for agent type
637
- */
638
- getMethodologyGuidance(agentType) {
639
- const guidance = {
640
- researcher: `SEARCH PHASE - Web Research & Foundation Discovery:
641
- - Search for state-of-the-art ML approaches for the problem domain
642
- - Find winning Kaggle solutions and benchmark results
643
- - Identify promising model architectures and techniques
644
- - Document implementation examples and model cards
645
- - Focus on proven, recent approaches with good performance`,
646
- coder: `FOUNDATION PHASE - Initial Model Building:
647
- - Analyze dataset characteristics and problem type
648
- - Implement baseline models based on research findings
649
- - Create robust preprocessing pipelines
650
- - Build modular, testable code components
651
- - Establish performance baselines for comparison`,
652
- optimizer: `REFINEMENT PHASE - Targeted Component Optimization:
653
- - Perform ablation analysis to identify high-impact components
654
- - Focus deep optimization on most impactful pipeline elements
655
- - Use iterative improvement with structured feedback
656
- - Implement advanced feature engineering techniques
657
- - Optimize hyperparameters systematically`,
658
- architect: `ENSEMBLE PHASE - Intelligent Model Combination:
659
- - Create sophisticated ensemble strategies beyond simple averaging
660
- - Implement stacking with meta-learners
661
- - Use dynamic weighting and mixture of experts
662
- - Apply Bayesian model averaging where appropriate
663
- - Optimize ensemble composition for maximum performance`,
664
- tester: `VALIDATION PHASE - Comprehensive Testing & Debugging:
665
- - Implement rigorous cross-validation strategies
666
- - Detect and prevent data leakage
667
- - Perform error analysis and debugging
668
- - Validate model robustness and generalization
669
- - Ensure production readiness with quality checks`,
670
- coordinator: `ORCHESTRATION PHASE - Workflow Management:
671
- - Coordinate between all agents and phases
672
- - Monitor progress and performance metrics
673
- - Manage resource allocation and scheduling
674
- - Handle error recovery and workflow adaptation
675
- - Prepare final deployment and documentation`
676
- };
677
- return guidance[agentType] || 'Focus on your specialized capabilities and coordinate with other agents.';
678
- }
679
- /**
680
- * Execute workflow tasks with dependency management
681
- */
682
- async executeWorkflowTasks(workflow) {
683
- const { tasks, dependencies = {} } = workflow;
684
- let completedTasks = 0;
685
- let failedTasks = 0;
686
- const totalTasks = tasks.length;
687
- // Task status tracking
688
- const taskStatuses = new Map();
689
- tasks.forEach(task => {
690
- taskStatuses.set(task.id, {
691
- name: task.name || task.id,
692
- status: 'pending',
693
- agent: task.assignTo,
694
- startTime: null,
695
- endTime: null,
696
- summary: ''
697
- });
698
- });
699
- // Create task execution plan based on dependencies
700
- const executionPlan = this.createExecutionPlan(tasks, dependencies);
701
- console.log(`📋 Executing ${totalTasks} tasks in ${executionPlan.length} phases...`);
702
- console.log();
703
- // Note: Concurrent display disabled in favor of interactive-style stream processing
704
- let concurrentDisplay = null;
705
- // if (this.options.nonInteractive && this.options.outputFormat === 'stream-json') {
706
- // const { createConcurrentDisplay } = await import('./concurrent-display.js');
707
- //
708
- // // Get all agents and their tasks
709
- // const agentTasks = workflow.agents?.map(agent => ({
710
- // id: agent.id,
711
- // name: agent.name,
712
- // type: agent.type,
713
- // tasks: tasks.filter(t => t.assignTo === agent.id).map(t => t.name)
714
- // })) || [];
715
- //
716
- // concurrentDisplay = createConcurrentDisplay(agentTasks);
717
- // concurrentDisplay.start();
718
- //
719
- // // Store reference for stream processors
720
- // this.concurrentDisplay = concurrentDisplay;
721
- // }
722
- // Execute tasks phase by phase
723
- for (const [phaseIndex, phaseTasks] of executionPlan.entries()) {
724
- this.currentPhase = `Phase ${phaseIndex + 1}`;
725
- // Show regular task board or update concurrent display
726
- if (!concurrentDisplay) {
727
- if (this.options.logLevel === 'quiet') {
728
- console.log(`\n🔄 Phase ${phaseIndex + 1}: Running ${phaseTasks.length} tasks`);
729
- }
730
- else {
731
- console.log(`\n🔄 Phase ${phaseIndex + 1}: ${phaseTasks.length} concurrent tasks`);
732
- }
733
- this.displayTaskBoard(taskStatuses, phaseTasks);
734
- }
735
- // Mark tasks as in-progress
736
- phaseTasks.forEach(task => {
737
- const status = taskStatuses.get(task.id);
738
- status.status = 'in-progress';
739
- status.startTime = Date.now();
740
- });
741
- // Execute tasks in this phase (potentially in parallel)
742
- const phasePromises = phaseTasks.map(async (task) => {
743
- const taskStatus = taskStatuses.get(task.id);
744
- try {
745
- // Show task starting
746
- console.log(`\n 🚀 Starting: ${task.name || task.id}`);
747
- console.log(` Agent: ${task.assignTo}`);
748
- console.log(` Description: ${task.description?.substring(0, 80)}...`);
749
- const result = await this.executeTask(task, workflow);
750
- taskStatus.status = result.success ? 'completed' : 'failed';
751
- taskStatus.endTime = Date.now();
752
- taskStatus.summary = result.success ?
753
- `✅ Completed in ${this.formatDuration(result.duration)}` :
754
- `❌ Failed: ${result.error?.message || 'Unknown error'}`;
755
- return result;
756
- }
757
- catch (error) {
758
- taskStatus.status = 'failed';
759
- taskStatus.endTime = Date.now();
760
- taskStatus.summary = `❌ Error: ${error.message}`;
761
- throw error;
762
- }
763
- });
764
- // Wait for all phase tasks to complete
765
- const phaseResults = await Promise.allSettled(phasePromises);
766
- // Process phase results
767
- for (const [taskIndex, result] of phaseResults.entries()) {
768
- const task = phaseTasks[taskIndex];
769
- const taskStatus = taskStatuses.get(task.id);
770
- if (result.status === 'fulfilled' && result.value.success) {
771
- completedTasks++;
772
- this.results.set(task.id, result.value);
773
- }
774
- else {
775
- failedTasks++;
776
- const error = result.status === 'rejected' ? result.reason : result.value.error;
777
- this.errors.push({
778
- type: 'task_execution',
779
- task: task.id,
780
- error: error.message || error,
781
- timestamp: new Date()
782
- });
783
- // Check if we should fail fast
784
- if (workflow.settings?.failurePolicy === 'fail-fast') {
785
- console.log(`\n🛑 Failing fast due to task failure`);
786
- break;
787
- }
788
- }
789
- }
790
- // Show updated task board
791
- if (!concurrentDisplay) {
792
- console.log(`\n📊 Phase ${phaseIndex + 1} Complete:`);
793
- this.displayTaskBoard(taskStatuses);
794
- }
795
- // Stop if fail-fast and we have failures
796
- if (workflow.settings?.failurePolicy === 'fail-fast' && failedTasks > 0) {
797
- break;
798
- }
799
- }
800
- // Final summary
801
- if (!concurrentDisplay) {
802
- console.log(`\n📊 Final Workflow Summary:`);
803
- this.displayTaskBoard(taskStatuses);
804
- }
805
- else {
806
- // Stop concurrent display
807
- concurrentDisplay.stop();
808
- console.log(); // Add some space after display
809
- }
810
- return {
811
- success: failedTasks === 0,
812
- totalTasks,
813
- completedTasks,
814
- failedTasks,
815
- executionId: this.executionId,
816
- duration: Date.now() - this.startTime,
817
- results: Object.fromEntries(this.results),
818
- errors: this.errors
819
- };
820
- }
821
- /**
822
- * Display task board showing current status
823
- */
824
- displayTaskBoard(taskStatuses, highlightTasks = []) {
825
- // In quiet mode, just show simple progress
826
- if (this.options.logLevel === 'quiet') {
827
- const totalTasks = taskStatuses.size;
828
- const completedTasks = Array.from(taskStatuses.values()).filter(s => s.status === 'completed').length;
829
- const activeTasks = Array.from(taskStatuses.values()).filter(s => s.status === 'in-progress').length;
830
- console.log(`📊 Progress: ${completedTasks}/${totalTasks} completed, ${activeTasks} active`);
831
- return;
832
- }
833
- const frames = ['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'];
834
- const frameIndex = Math.floor(Date.now() / 100) % frames.length;
835
- const spinner = frames[frameIndex];
836
- console.log('\n╔═══════════════════════════════════════════════════════════════╗');
837
- console.log('║ 🤖 CONCURRENT TASK STATUS ║');
838
- console.log('╠═══════════════════════════════════════════════════════════════╣');
839
- // Group by status
840
- const statusGroups = {
841
- 'in-progress': [],
842
- 'completed': [],
843
- 'failed': [],
844
- 'pending': []
845
- };
846
- taskStatuses.forEach((status, taskId) => {
847
- statusGroups[status.status].push({ taskId, ...status });
848
- });
849
- // Show in-progress tasks with animation
850
- if (statusGroups['in-progress'].length > 0) {
851
- console.log(`║ ${spinner} RUNNING (${statusGroups['in-progress'].length} agents): ║`);
852
- statusGroups['in-progress'].forEach(task => {
853
- const duration = task.startTime ? this.formatDuration(Date.now() - task.startTime) : '';
854
- const progress = this.getProgressBar(Date.now() - task.startTime, 60000); // 1 min expected
855
- const agentIcon = this.getAgentIcon(task.agent);
856
- console.log(`║ ${agentIcon} ${task.name.padEnd(25)} ${progress} ${duration.padStart(8)} ║`);
857
- });
858
- }
859
- // Show completed tasks
860
- if (statusGroups['completed'].length > 0) {
861
- console.log(`║ ✅ COMPLETED (${statusGroups['completed'].length}): ║`);
862
- statusGroups['completed'].forEach(task => {
863
- const duration = task.endTime && task.startTime ?
864
- this.formatDuration(task.endTime - task.startTime) : '';
865
- console.log(`║ ✓ ${task.name.padEnd(35)} ${duration.padStart(10)} ║`);
866
- });
867
- }
868
- // Show failed tasks
869
- if (statusGroups['failed'].length > 0) {
870
- console.log(`║ ❌ FAILED (${statusGroups['failed'].length}): ║`);
871
- statusGroups['failed'].forEach(task => {
872
- const errorMsg = (task.summary || '').substring(0, 25);
873
- console.log(`║ ✗ ${task.name.padEnd(25)} ${errorMsg.padEnd(20)} ║`);
874
- });
875
- }
876
- // Show pending tasks count
877
- if (statusGroups['pending'].length > 0) {
878
- console.log(`║ ⏳ QUEUED: ${statusGroups['pending'].length} tasks waiting ║`);
879
- }
880
- // Summary stats
881
- const total = taskStatuses.size;
882
- const completed = statusGroups['completed'].length;
883
- const failed = statusGroups['failed'].length;
884
- const progress = total > 0 ? Math.floor((completed + failed) / total * 100) : 0;
885
- console.log('╠═══════════════════════════════════════════════════════════════╣');
886
- console.log(`║ 📊 Progress: ${progress}% (${completed}/${total}) │ ⚡ Active: ${statusGroups['in-progress'].length} │ ❌ Failed: ${failed} ║`);
887
- console.log('╚═══════════════════════════════════════════════════════════════╝');
888
- }
889
- /**
890
- * Get progress bar visualization
891
- */
892
- getProgressBar(elapsed, expected) {
893
- const progress = Math.min(elapsed / expected, 1);
894
- const filled = Math.floor(progress * 10);
895
- const empty = 10 - filled;
896
- return '[' + '█'.repeat(filled) + '░'.repeat(empty) + ']';
897
- }
898
- /**
899
- * Get agent icon based on type
900
- */
901
- getAgentIcon(agentId) {
902
- const icons = {
903
- 'search': '🔍',
904
- 'foundation': '🏗️',
905
- 'refinement': '🔧',
906
- 'ensemble': '🎯',
907
- 'validation': '✅',
908
- 'coordinator': '🎮',
909
- 'researcher': '🔬',
910
- 'coder': '💻',
911
- 'optimizer': '⚡',
912
- 'architect': '🏛️',
913
- 'tester': '🧪'
914
- };
915
- // Extract agent type from ID
916
- const type = agentId?.split('_')[0] || 'default';
917
- return icons[type] || '🤖';
918
- }
919
- /**
920
- * Execute a single task
921
- */
922
- async executeTask(task, workflow) {
923
- const startTime = Date.now();
924
- try {
925
- // Store task execution in memory if hooks enabled
926
- if (this.hooksEnabled) {
927
- await this.executeHook('notify', {
928
- message: `Starting task: ${task.name || task.id}`,
929
- sessionId: this.sessionId
930
- });
931
- }
932
- if (this.options.nonInteractive && this.options.outputFormat === 'stream-json') {
933
- console.log(`\n● ${task.name || task.id} - Starting Execution`);
934
- console.log(` ⎿ ${task.description}`);
935
- console.log(` ⎿ Agent: ${task.assignTo}`);
936
- }
937
- else {
938
- console.log(` 🔄 Executing: ${task.description}`);
939
- }
940
- // For demonstration/testing mode (when Claude integration is disabled)
941
- // we simulate successful task completion
942
- if (!this.options.enableClaude) {
943
- // Simulate variable execution time
944
- const executionTime = Math.min(1000 + Math.random() * 3000, // 1-4 seconds simulation
945
- task.timeout || 30000);
946
- await new Promise(resolve => setTimeout(resolve, executionTime));
947
- // Simulate successful completion for demo/testing
948
- const result = {
949
- success: true,
950
- taskId: task.id,
951
- duration: Date.now() - startTime,
952
- output: {
953
- status: 'completed',
954
- agent: task.assignTo,
955
- executionTime: Date.now() - startTime,
956
- metadata: {
957
- timestamp: new Date().toISOString(),
958
- executionId: this.executionId,
959
- mode: 'simulation'
960
- }
961
- }
962
- };
963
- // Store result in memory
964
- if (this.hooksEnabled) {
965
- await this.storeTaskResult(task.id, result.output);
966
- }
967
- return result;
968
- }
969
- else {
970
- // When Claude integration is enabled, delegate to actual Claude instance
971
- // Check if we have a master coordinator (interactive mode)
972
- const masterCoordinator = this.claudeInstances.get('master-coordinator');
973
- if (masterCoordinator && !this.options.nonInteractive) {
974
- // Interactive mode: All tasks are coordinated by the master coordinator
975
- console.log(` 🎯 Task delegated to Master Coordinator: ${task.description}`);
976
- // In interactive mode, the master coordinator handles all tasks
977
- // We just wait for the master coordinator process to complete
978
- const completionPromise = new Promise((resolve, reject) => {
979
- masterCoordinator.process.on('exit', (code) => {
980
- if (code === 0) {
981
- resolve({ success: true, code });
982
- }
983
- else {
984
- reject(new Error(`Master coordinator exited with code ${code}`));
985
- }
986
- });
987
- masterCoordinator.process.on('error', (err) => {
988
- reject(err);
989
- });
990
- });
991
- // For interactive mode, we use a longer timeout since user interaction is involved
992
- const timeout = Math.max(this.options.timeout, 1800000); // 30 minutes minimum for interactive
993
- const timeoutPromise = new Promise((_, reject) => {
994
- setTimeout(() => reject(new Error('Interactive session timeout')), timeout);
995
- });
996
- try {
997
- await Promise.race([completionPromise, timeoutPromise]);
998
- const result = {
999
- success: true,
1000
- taskId: task.id,
1001
- duration: Date.now() - startTime,
1002
- output: {
1003
- status: 'completed',
1004
- agent: 'master-coordinator',
1005
- executionTime: Date.now() - startTime,
1006
- metadata: {
1007
- timestamp: new Date().toISOString(),
1008
- executionId: this.executionId,
1009
- mode: 'interactive-coordination'
1010
- }
1011
- }
1012
- };
1013
- // Store result in memory
1014
- if (this.hooksEnabled) {
1015
- await this.storeTaskResult(task.id, result.output);
1016
- }
1017
- return result;
1018
- }
1019
- catch (error) {
1020
- throw new Error(`Task execution failed: ${error.message}`);
1021
- }
1022
- }
1023
- // Non-interactive mode or no master coordinator: use individual Claude instances
1024
- const claudeInstance = this.claudeInstances.get(task.assignTo);
1025
- if (!claudeInstance) {
1026
- // If no pre-spawned instance, create one for this task
1027
- const agent = workflow.agents.find(a => a.id === task.assignTo);
1028
- if (!agent) {
1029
- throw new Error(`No agent definition found for: ${task.assignTo}`);
1030
- }
1031
- // Create task-specific prompt
1032
- const taskPrompt = this.createTaskPrompt(task, agent, workflow);
1033
- // Check if we should chain from a previous task
1034
- let chainOptions = {};
1035
- if (this.enableChaining && this.options.outputFormat === 'stream-json' && task.depends?.length > 0) {
1036
- // Get the output stream from the last dependency
1037
- const lastDependency = task.depends[task.depends.length - 1];
1038
- const dependencyStream = this.taskOutputStreams.get(lastDependency);
1039
- if (dependencyStream) {
1040
- console.log(` 🔗 Enabling stream chaining from ${lastDependency} to ${task.id}`);
1041
- chainOptions.inputStream = dependencyStream;
1042
- }
1043
- }
1044
- // Spawn Claude instance for this specific task
1045
- const taskClaudeProcess = await this.spawnClaudeInstance(agent, taskPrompt, chainOptions);
1046
- // Store the output stream for potential chaining
1047
- if (this.enableChaining && this.options.outputFormat === 'stream-json' && taskClaudeProcess.stdout) {
1048
- this.taskOutputStreams.set(task.id, taskClaudeProcess.stdout);
1049
- }
1050
- // Store the instance
1051
- this.claudeInstances.set(agent.id, {
1052
- process: taskClaudeProcess,
1053
- agent: agent,
1054
- status: 'active',
1055
- startTime: Date.now(),
1056
- taskId: task.id
1057
- });
1058
- // Wait for task completion or timeout
1059
- // Use longer timeout for ML tasks
1060
- const baseTimeout = this.options.timeout || 60000;
1061
- const isMLTask = task.type?.toLowerCase().includes('ml') ||
1062
- task.type?.toLowerCase().includes('model') ||
1063
- task.type?.toLowerCase().includes('search') ||
1064
- task.type?.toLowerCase().includes('analysis') ||
1065
- this.options.workflowType === 'ml';
1066
- const timeout = task.timeout || (isMLTask ? Math.max(baseTimeout, 300000) : baseTimeout); // Min 5 minutes for ML tasks
1067
- if (this.options.logLevel === 'debug' || this.options.verbose) {
1068
- console.log(` ⏱️ Timeout: ${this.formatDuration(timeout)} (Base: ${this.formatDuration(baseTimeout)}, ML Task: ${isMLTask})`);
1069
- }
1070
- const completionPromise = new Promise((resolve, reject) => {
1071
- taskClaudeProcess.on('exit', (code) => {
1072
- if (code === 0) {
1073
- resolve({ success: true, code });
1074
- }
1075
- else {
1076
- reject(new Error(`Process exited with code ${code}`));
1077
- }
1078
- });
1079
- taskClaudeProcess.on('error', (err) => {
1080
- reject(err);
1081
- });
1082
- });
1083
- const timeoutPromise = new Promise((_, reject) => {
1084
- // Use a much longer timeout for ML tasks since Claude is actively working
1085
- const actualTimeout = isMLTask ? Math.max(timeout, 600000) : timeout; // 10 min minimum for ML
1086
- setTimeout(() => reject(new Error('Task timeout')), actualTimeout);
1087
- });
1088
- try {
1089
- await Promise.race([completionPromise, timeoutPromise]);
1090
- const result = {
1091
- success: true,
1092
- taskId: task.id,
1093
- duration: Date.now() - startTime,
1094
- output: {
1095
- status: 'completed',
1096
- agent: task.assignTo,
1097
- executionTime: Date.now() - startTime,
1098
- metadata: {
1099
- timestamp: new Date().toISOString(),
1100
- executionId: this.executionId,
1101
- mode: 'claude-task-execution'
1102
- }
1103
- }
1104
- };
1105
- // Store result in memory
1106
- if (this.hooksEnabled) {
1107
- await this.storeTaskResult(task.id, result.output);
1108
- }
1109
- return result;
1110
- }
1111
- catch (error) {
1112
- throw error;
1113
- }
1114
- }
1115
- else {
1116
- // Use existing Claude instance
1117
- // In a full implementation, this would send the task to the running instance
1118
- // For now, we'll spawn a new instance per task for simplicity
1119
- const agent = claudeInstance.agent;
1120
- const taskPrompt = this.createTaskPrompt(task, agent, workflow);
1121
- // Check if we should chain from a previous task
1122
- let chainOptions = {};
1123
- if (this.enableChaining && this.options.outputFormat === 'stream-json' && task.depends?.length > 0) {
1124
- // Get the output stream from the last dependency
1125
- const lastDependency = task.depends[task.depends.length - 1];
1126
- const dependencyStream = this.taskOutputStreams.get(lastDependency);
1127
- if (dependencyStream) {
1128
- console.log(` 🔗 Enabling stream chaining from ${lastDependency} to ${task.id}`);
1129
- chainOptions.inputStream = dependencyStream;
1130
- }
1131
- }
1132
- // For now, spawn a new instance for each task
1133
- const taskClaudeProcess = await this.spawnClaudeInstance(agent, taskPrompt, chainOptions);
1134
- // Store the output stream for potential chaining
1135
- if (this.enableChaining && this.options.outputFormat === 'stream-json' && taskClaudeProcess.stdout) {
1136
- this.taskOutputStreams.set(task.id, taskClaudeProcess.stdout);
1137
- }
1138
- // Wait for completion
1139
- // Use longer timeout for ML tasks
1140
- const baseTimeout = this.options.timeout || 60000;
1141
- const isMLTask = task.type?.toLowerCase().includes('ml') ||
1142
- task.type?.toLowerCase().includes('model') ||
1143
- task.type?.toLowerCase().includes('search') ||
1144
- task.type?.toLowerCase().includes('analysis') ||
1145
- this.options.workflowType === 'ml';
1146
- const timeout = task.timeout || (isMLTask ? Math.max(baseTimeout, 300000) : baseTimeout); // Min 5 minutes for ML tasks
1147
- if (this.options.logLevel === 'debug' || this.options.verbose) {
1148
- console.log(` ⏱️ Timeout: ${this.formatDuration(timeout)} (Base: ${this.formatDuration(baseTimeout)}, ML Task: ${isMLTask})`);
1149
- }
1150
- const completionPromise = new Promise((resolve, reject) => {
1151
- taskClaudeProcess.on('exit', (code) => {
1152
- if (code === 0) {
1153
- resolve({ success: true, code });
1154
- }
1155
- else {
1156
- reject(new Error(`Process exited with code ${code}`));
1157
- }
1158
- });
1159
- taskClaudeProcess.on('error', (err) => {
1160
- reject(err);
1161
- });
1162
- });
1163
- const timeoutPromise = new Promise((_, reject) => {
1164
- // Use a much longer timeout for ML tasks since Claude is actively working
1165
- const actualTimeout = isMLTask ? Math.max(timeout, 600000) : timeout; // 10 min minimum for ML
1166
- setTimeout(() => reject(new Error('Task timeout')), actualTimeout);
1167
- });
1168
- try {
1169
- await Promise.race([completionPromise, timeoutPromise]);
1170
- const result = {
1171
- success: true,
1172
- taskId: task.id,
1173
- duration: Date.now() - startTime,
1174
- output: {
1175
- status: 'completed',
1176
- agent: task.assignTo,
1177
- executionTime: Date.now() - startTime,
1178
- metadata: {
1179
- timestamp: new Date().toISOString(),
1180
- executionId: this.executionId,
1181
- mode: 'claude-task-execution'
1182
- }
1183
- }
1184
- };
1185
- // Store result in memory
1186
- if (this.hooksEnabled) {
1187
- await this.storeTaskResult(task.id, result.output);
1188
- }
1189
- return result;
1190
- }
1191
- catch (error) {
1192
- throw error;
1193
- }
1194
- }
1195
- }
1196
- }
1197
- catch (error) {
1198
- return {
1199
- success: false,
1200
- taskId: task.id,
1201
- duration: Date.now() - startTime,
1202
- error: error
1203
- };
1204
- }
1205
- }
1206
- /**
1207
- * Create execution plan based on task dependencies
1208
- */
1209
- createExecutionPlan(tasks, dependencies) {
1210
- const taskMap = new Map(tasks.map(task => [task.id, task]));
1211
- const completed = new Set();
1212
- const phases = [];
1213
- while (completed.size < tasks.length) {
1214
- const readyTasks = tasks.filter(task => {
1215
- if (completed.has(task.id))
1216
- return false;
1217
- const deps = task.depends || dependencies[task.id] || [];
1218
- return deps.every(dep => completed.has(dep));
1219
- });
1220
- if (readyTasks.length === 0) {
1221
- throw new Error('Circular dependency detected or invalid dependencies');
1222
- }
1223
- phases.push(readyTasks);
1224
- readyTasks.forEach(task => completed.add(task.id));
1225
- }
1226
- return phases;
1227
- }
1228
- /**
1229
- * Execute a hook command
1230
- */
1231
- async executeHook(hookType, params) {
1232
- try {
1233
- const { execSync } = await import('child_process');
1234
- let hookCommand = `npx claude-flow@alpha hooks ${hookType}`;
1235
- if (params.description) {
1236
- hookCommand += ` --description "${params.description}"`;
1237
- }
1238
- if (params.file) {
1239
- hookCommand += ` --file "${params.file}"`;
1240
- }
1241
- if (params.taskId) {
1242
- hookCommand += ` --task-id "${params.taskId}"`;
1243
- }
1244
- if (params.sessionId) {
1245
- hookCommand += ` --session-id "${params.sessionId}"`;
1246
- }
1247
- if (params.message) {
1248
- hookCommand += ` --message "${params.message}"`;
1249
- }
1250
- execSync(hookCommand, { stdio: 'pipe' });
1251
- }
1252
- catch (error) {
1253
- // Hooks are optional, don't fail the workflow if they fail
1254
- console.debug(`Hook ${hookType} failed:`, error.message);
1255
- }
1256
- }
1257
- /**
1258
- * Store task result in memory
1259
- */
1260
- async storeTaskResult(taskId, result) {
1261
- try {
1262
- const { execSync } = await import('child_process');
1263
- const resultJson = JSON.stringify(result);
1264
- execSync(`npx claude-flow@alpha memory store "workflow/${this.executionId}/${taskId}" '${resultJson}'`, {
1265
- stdio: 'pipe'
1266
- });
1267
- }
1268
- catch (error) {
1269
- console.debug(`Failed to store task result for ${taskId}:`, error.message);
1270
- }
1271
- }
1272
- /**
1273
- * Validate workflow definition
1274
- */
1275
- validateWorkflow(workflow) {
1276
- if (!workflow.name) {
1277
- throw new Error('Workflow name is required');
1278
- }
1279
- if (!workflow.tasks || workflow.tasks.length === 0) {
1280
- throw new Error('Workflow must contain at least one task');
1281
- }
1282
- // Validate task structure
1283
- for (const task of workflow.tasks) {
1284
- if (!task.id || !task.type || !task.description) {
1285
- throw new Error(`Task ${task.id || 'unknown'} is missing required fields`);
1286
- }
1287
- }
1288
- // Validate agent assignments
1289
- if (workflow.agents) {
1290
- const agentIds = new Set(workflow.agents.map(a => a.id));
1291
- for (const task of workflow.tasks) {
1292
- if (task.assignTo && !agentIds.has(task.assignTo)) {
1293
- throw new Error(`Task ${task.id} assigned to unknown agent: ${task.assignTo}`);
1294
- }
1295
- }
1296
- }
1297
- }
1298
- /**
1299
- * Apply variable substitutions to workflow
1300
- */
1301
- applyVariables(workflow, variables) {
1302
- const allVariables = { ...workflow.variables, ...variables };
1303
- const workflowStr = JSON.stringify(workflow);
1304
- // Simple variable substitution
1305
- let processedStr = workflowStr;
1306
- for (const [key, value] of Object.entries(allVariables)) {
1307
- const pattern = new RegExp(`\\$\\{${key}\\}`, 'g');
1308
- processedStr = processedStr.replace(pattern, value);
1309
- }
1310
- return JSON.parse(processedStr);
1311
- }
1312
- /**
1313
- * Cleanup Claude instances
1314
- */
1315
- async cleanupClaudeInstances() {
1316
- if (this.claudeInstances.size === 0)
1317
- return;
1318
- console.log('🧹 Cleaning up Claude instances...');
1319
- for (const [agentId, instance] of this.claudeInstances.entries()) {
1320
- try {
1321
- if (instance.process && !instance.process.killed) {
1322
- instance.process.kill('SIGTERM');
1323
- // Wait for graceful shutdown, then force kill if needed
1324
- setTimeout(() => {
1325
- if (!instance.process.killed) {
1326
- instance.process.kill('SIGKILL');
1327
- }
1328
- }, 5000);
1329
- }
1330
- console.log(` ✅ Cleaned up ${instance.agent.name}`);
1331
- }
1332
- catch (error) {
1333
- console.error(` ❌ Error cleaning up ${instance.agent.name}:`, error.message);
1334
- }
1335
- }
1336
- this.claudeInstances.clear();
1337
- }
1338
- /**
1339
- * Format duration in human readable format
1340
- */
1341
- formatDuration(ms) {
1342
- const seconds = Math.floor(ms / 1000);
1343
- const minutes = Math.floor(seconds / 60);
1344
- const hours = Math.floor(minutes / 60);
1345
- if (hours > 0) {
1346
- return `${hours}h ${minutes % 60}m ${seconds % 60}s`;
1347
- }
1348
- else if (minutes > 0) {
1349
- return `${minutes}m ${seconds % 60}s`;
1350
- }
1351
- else {
1352
- return `${seconds}s`;
1353
- }
1354
- }
1355
- }
1356
- /**
1357
- * Load workflow from file
1358
- */
1359
- export async function loadWorkflowFromFile(filePath) {
1360
- try {
1361
- const content = await fs.readFile(filePath, 'utf-8');
1362
- if (filePath.endsWith('.json')) {
1363
- return JSON.parse(content);
1364
- }
1365
- else if (filePath.endsWith('.yaml') || filePath.endsWith('.yml')) {
1366
- // For now, just return error - YAML support can be added later
1367
- throw new Error('YAML workflows not yet supported');
1368
- }
1369
- else {
1370
- throw new Error('Unsupported workflow file format. Use .json or .yaml');
1371
- }
1372
- }
1373
- catch (error) {
1374
- throw new Error(`Failed to load workflow: ${error.message}`);
1375
- }
1376
- }
1377
- /**
1378
- * Get default MLE-STAR workflow path
1379
- */
1380
- export function getMLEStarWorkflowPath() {
1381
- return join(process.cwd(), 'src', 'cli', 'simple-commands', 'templates', 'mle-star-workflow.json');
1382
- }
1383
- //# sourceMappingURL=automation-executor.js.map