claude-flow 2.0.0-alpha.4 → 2.0.0-alpha.40

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 (537) hide show
  1. package/.claude/commands/analysis/performance-bottlenecks.md +1 -1
  2. package/.claude/commands/coordination/init.md +2 -2
  3. package/.claude/commands/coordination/orchestrate.md +2 -2
  4. package/.claude/commands/coordination/spawn.md +2 -2
  5. package/.claude/commands/github/github-modes.md +5 -5
  6. package/.claude/commands/github/issue-tracker.md +13 -13
  7. package/.claude/commands/github/pr-manager.md +11 -11
  8. package/.claude/commands/github/release-manager.md +16 -16
  9. package/.claude/commands/github/repo-architect.md +14 -14
  10. package/.claude/commands/github/sync-coordinator.md +15 -15
  11. package/.claude/commands/memory/neural.md +2 -2
  12. package/.claude/commands/memory/usage.md +2 -2
  13. package/.claude/commands/monitoring/agents.md +2 -2
  14. package/.claude/commands/monitoring/status.md +2 -2
  15. package/.claude/commands/optimization/auto-topology.md +2 -2
  16. package/.claude/commands/optimization/parallel-execution.md +2 -2
  17. package/.claude/commands/training/neural-patterns.md +2 -2
  18. package/.claude/commands/training/specialization.md +2 -2
  19. package/.claude/commands/workflows/development.md +4 -4
  20. package/.claude/commands/workflows/research.md +4 -4
  21. package/.claude/settings.json +5 -5
  22. package/README.md +651 -640
  23. package/bin/claude-flow +1 -1
  24. package/dist/cli/cli-core.d.ts +1 -1
  25. package/dist/cli/cli-core.js +1 -1
  26. package/dist/cli/command-registry.d.ts +10 -0
  27. package/dist/cli/command-registry.d.ts.map +1 -0
  28. package/dist/cli/command-registry.js +703 -0
  29. package/dist/cli/command-registry.js.map +1 -0
  30. package/dist/cli/commands/hook-types.d.ts +95 -0
  31. package/dist/cli/commands/hook-types.d.ts.map +1 -0
  32. package/dist/cli/commands/hook-types.js +5 -0
  33. package/dist/cli/commands/hook-types.js.map +1 -0
  34. package/dist/cli/commands/hook-validator.d.ts +18 -0
  35. package/dist/cli/commands/hook-validator.d.ts.map +1 -0
  36. package/dist/cli/commands/hook-validator.js +165 -0
  37. package/dist/cli/commands/hook-validator.js.map +1 -0
  38. package/dist/cli/commands/hook.d.ts +8 -0
  39. package/dist/cli/commands/hook.d.ts.map +1 -0
  40. package/dist/cli/commands/hook.js +299 -0
  41. package/dist/cli/commands/hook.js.map +1 -0
  42. package/dist/cli/commands/index.d.ts.map +1 -1
  43. package/dist/cli/commands/index.js +34 -0
  44. package/dist/cli/commands/index.js.map +1 -1
  45. package/dist/cli/commands/swarm-new.d.ts.map +1 -1
  46. package/dist/cli/commands/swarm-new.js +735 -325
  47. package/dist/cli/commands/swarm-new.js.map +1 -1
  48. package/dist/cli/commands/swarm-spawn.d.ts.map +1 -1
  49. package/dist/cli/commands/swarm-spawn.js +8 -4
  50. package/dist/cli/commands/swarm-spawn.js.map +1 -1
  51. package/dist/cli/commands/task.d.ts +1 -1
  52. package/dist/cli/commands/task.d.ts.map +1 -1
  53. package/dist/cli/commands/task.js +31 -28
  54. package/dist/cli/commands/task.js.map +1 -1
  55. package/dist/cli/commands/workflow.d.ts.map +1 -1
  56. package/dist/cli/commands/workflow.js +33 -31
  57. package/dist/cli/commands/workflow.js.map +1 -1
  58. package/dist/cli/formatter.js +1 -1
  59. package/dist/cli/formatter.js.map +1 -1
  60. package/dist/cli/index.js +22 -22
  61. package/dist/cli/index.js.map +1 -1
  62. package/dist/cli/node-compat.d.ts +66 -0
  63. package/dist/cli/node-compat.d.ts.map +1 -0
  64. package/dist/cli/node-compat.js +130 -0
  65. package/dist/cli/node-compat.js.map +1 -0
  66. package/dist/cli/node-repl.d.ts.map +1 -1
  67. package/dist/cli/node-repl.js +63 -63
  68. package/dist/cli/node-repl.js.map +1 -1
  69. package/dist/cli/repl.js +11 -11
  70. package/dist/cli/repl.js.map +1 -1
  71. package/dist/cli/runtime-detector.d.ts +128 -0
  72. package/dist/cli/runtime-detector.d.ts.map +1 -0
  73. package/dist/cli/runtime-detector.js +263 -0
  74. package/dist/cli/runtime-detector.js.map +1 -0
  75. package/dist/cli/simple-commands/agent.d.ts +2 -0
  76. package/dist/cli/simple-commands/agent.d.ts.map +1 -0
  77. package/dist/cli/simple-commands/agent.js +175 -0
  78. package/dist/cli/simple-commands/agent.js.map +1 -0
  79. package/dist/cli/simple-commands/analysis.d.ts +2 -0
  80. package/dist/cli/simple-commands/analysis.d.ts.map +1 -0
  81. package/dist/cli/simple-commands/analysis.js +200 -0
  82. package/dist/cli/simple-commands/analysis.js.map +1 -0
  83. package/dist/cli/simple-commands/automation.d.ts +2 -0
  84. package/dist/cli/simple-commands/automation.d.ts.map +1 -0
  85. package/dist/cli/simple-commands/automation.js +231 -0
  86. package/dist/cli/simple-commands/automation.js.map +1 -0
  87. package/dist/cli/simple-commands/batch-manager.d.ts +2 -0
  88. package/dist/cli/simple-commands/batch-manager.d.ts.map +1 -0
  89. package/dist/cli/simple-commands/batch-manager.js +284 -0
  90. package/dist/cli/simple-commands/batch-manager.js.map +1 -0
  91. package/dist/cli/simple-commands/config.d.ts +2 -0
  92. package/dist/cli/simple-commands/config.d.ts.map +1 -0
  93. package/dist/cli/simple-commands/config.js +277 -0
  94. package/dist/cli/simple-commands/config.js.map +1 -0
  95. package/dist/cli/simple-commands/coordination.d.ts +2 -0
  96. package/dist/cli/simple-commands/coordination.d.ts.map +1 -0
  97. package/dist/cli/simple-commands/coordination.js +229 -0
  98. package/dist/cli/simple-commands/coordination.js.map +1 -0
  99. package/dist/cli/simple-commands/github.d.ts +3 -0
  100. package/dist/cli/simple-commands/github.d.ts.map +1 -0
  101. package/dist/cli/simple-commands/github.js +289 -0
  102. package/dist/cli/simple-commands/github.js.map +1 -0
  103. package/dist/cli/simple-commands/hive-mind/communication.d.ts +176 -0
  104. package/dist/cli/simple-commands/hive-mind/communication.d.ts.map +1 -0
  105. package/dist/cli/simple-commands/hive-mind/communication.js +614 -0
  106. package/dist/cli/simple-commands/hive-mind/communication.js.map +1 -0
  107. package/dist/cli/simple-commands/hive-mind/core.d.ts +306 -0
  108. package/dist/cli/simple-commands/hive-mind/core.d.ts.map +1 -0
  109. package/dist/cli/simple-commands/hive-mind/core.js +832 -0
  110. package/dist/cli/simple-commands/hive-mind/core.js.map +1 -0
  111. package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts +32 -0
  112. package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts.map +1 -0
  113. package/dist/cli/simple-commands/hive-mind/db-optimizer.js +647 -0
  114. package/dist/cli/simple-commands/hive-mind/db-optimizer.js.map +1 -0
  115. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts +204 -0
  116. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts.map +1 -0
  117. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js +857 -0
  118. package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js.map +1 -0
  119. package/dist/cli/simple-commands/hive-mind/memory.d.ts +334 -0
  120. package/dist/cli/simple-commands/hive-mind/memory.d.ts.map +1 -0
  121. package/dist/cli/simple-commands/hive-mind/memory.js +1038 -0
  122. package/dist/cli/simple-commands/hive-mind/memory.js.map +1 -0
  123. package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts +256 -0
  124. package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts.map +1 -0
  125. package/dist/cli/simple-commands/hive-mind/performance-optimizer.js +518 -0
  126. package/dist/cli/simple-commands/hive-mind/performance-optimizer.js.map +1 -0
  127. package/dist/cli/simple-commands/hive-mind/queen.d.ts +294 -0
  128. package/dist/cli/simple-commands/hive-mind/queen.d.ts.map +1 -0
  129. package/dist/cli/simple-commands/hive-mind/queen.js +684 -0
  130. package/dist/cli/simple-commands/hive-mind/queen.js.map +1 -0
  131. package/dist/cli/simple-commands/hive-mind-optimize.d.ts +6 -0
  132. package/dist/cli/simple-commands/hive-mind-optimize.d.ts.map +1 -0
  133. package/dist/cli/simple-commands/hive-mind-optimize.js +317 -0
  134. package/dist/cli/simple-commands/hive-mind-optimize.js.map +1 -0
  135. package/dist/cli/simple-commands/hive-mind.d.ts +18 -0
  136. package/dist/cli/simple-commands/hive-mind.d.ts.map +1 -0
  137. package/dist/cli/simple-commands/hive-mind.js +1847 -0
  138. package/dist/cli/simple-commands/hive-mind.js.map +1 -0
  139. package/dist/cli/simple-commands/hook-safety.d.ts +177 -0
  140. package/dist/cli/simple-commands/hook-safety.d.ts.map +1 -0
  141. package/dist/cli/simple-commands/hook-safety.js +590 -0
  142. package/dist/cli/simple-commands/hook-safety.js.map +1 -0
  143. package/dist/cli/simple-commands/hooks.d.ts +2 -0
  144. package/dist/cli/simple-commands/hooks.d.ts.map +1 -0
  145. package/dist/cli/simple-commands/hooks.js +309 -0
  146. package/dist/cli/simple-commands/hooks.js.map +1 -0
  147. package/dist/cli/simple-commands/init/batch-init.d.ts +137 -0
  148. package/dist/cli/simple-commands/init/batch-init.d.ts.map +1 -0
  149. package/dist/cli/simple-commands/init/batch-init.js +550 -0
  150. package/dist/cli/simple-commands/init/batch-init.js.map +1 -0
  151. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts +2 -0
  152. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts.map +1 -0
  153. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js +432 -0
  154. package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js.map +1 -0
  155. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts +2 -0
  156. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts.map +1 -0
  157. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js +870 -0
  158. package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js.map +1 -0
  159. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts +2 -0
  160. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts.map +1 -0
  161. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js +309 -0
  162. package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js.map +1 -0
  163. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts +3 -0
  164. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts.map +1 -0
  165. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js +480 -0
  166. package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js.map +1 -0
  167. package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts +2 -0
  168. package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts.map +1 -0
  169. package/dist/cli/simple-commands/init/claude-commands/slash-commands.js +29 -0
  170. package/dist/cli/simple-commands/init/claude-commands/slash-commands.js.map +1 -0
  171. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts +3 -0
  172. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts.map +1 -0
  173. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js +205 -0
  174. package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js.map +1 -0
  175. package/dist/cli/simple-commands/init/executable-wrapper.d.ts +2 -0
  176. package/dist/cli/simple-commands/init/executable-wrapper.d.ts.map +1 -0
  177. package/dist/cli/simple-commands/init/executable-wrapper.js +113 -0
  178. package/dist/cli/simple-commands/init/executable-wrapper.js.map +1 -0
  179. package/dist/cli/simple-commands/init/help.d.ts +2 -0
  180. package/dist/cli/simple-commands/init/help.d.ts.map +1 -0
  181. package/dist/cli/simple-commands/init/help.js +92 -0
  182. package/dist/cli/simple-commands/init/help.js.map +1 -0
  183. package/dist/cli/simple-commands/init/index.d.ts +2 -0
  184. package/dist/cli/simple-commands/init/index.d.ts.map +1 -0
  185. package/dist/cli/simple-commands/init/index.js +1044 -0
  186. package/dist/cli/simple-commands/init/index.js.map +1 -0
  187. package/dist/cli/simple-commands/init/performance-monitor.d.ts +73 -0
  188. package/dist/cli/simple-commands/init/performance-monitor.d.ts.map +1 -0
  189. package/dist/cli/simple-commands/init/performance-monitor.js +278 -0
  190. package/dist/cli/simple-commands/init/performance-monitor.js.map +1 -0
  191. package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts +95 -0
  192. package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts.map +1 -0
  193. package/dist/cli/simple-commands/init/rollback/backup-manager.js +491 -0
  194. package/dist/cli/simple-commands/init/rollback/backup-manager.js.map +1 -0
  195. package/dist/cli/simple-commands/init/rollback/index.d.ts +114 -0
  196. package/dist/cli/simple-commands/init/rollback/index.d.ts.map +1 -0
  197. package/dist/cli/simple-commands/init/rollback/index.js +350 -0
  198. package/dist/cli/simple-commands/init/rollback/index.js.map +1 -0
  199. package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts +161 -0
  200. package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts.map +1 -0
  201. package/dist/cli/simple-commands/init/rollback/recovery-manager.js +705 -0
  202. package/dist/cli/simple-commands/init/rollback/recovery-manager.js.map +1 -0
  203. package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts +112 -0
  204. package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts.map +1 -0
  205. package/dist/cli/simple-commands/init/rollback/rollback-executor.js +487 -0
  206. package/dist/cli/simple-commands/init/rollback/rollback-executor.js.map +1 -0
  207. package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts +121 -0
  208. package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts.map +1 -0
  209. package/dist/cli/simple-commands/init/rollback/state-tracker.js +431 -0
  210. package/dist/cli/simple-commands/init/rollback/state-tracker.js.map +1 -0
  211. package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts +2 -0
  212. package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts.map +1 -0
  213. package/dist/cli/simple-commands/init/sparc/roo-readme.js +61 -0
  214. package/dist/cli/simple-commands/init/sparc/roo-readme.js.map +1 -0
  215. package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts +2 -0
  216. package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts.map +1 -0
  217. package/dist/cli/simple-commands/init/sparc/roomodes-config.js +80 -0
  218. package/dist/cli/simple-commands/init/sparc/roomodes-config.js.map +1 -0
  219. package/dist/cli/simple-commands/init/sparc/workflows.d.ts +2 -0
  220. package/dist/cli/simple-commands/init/sparc/workflows.d.ts.map +1 -0
  221. package/dist/cli/simple-commands/init/sparc/workflows.js +36 -0
  222. package/dist/cli/simple-commands/init/sparc/workflows.js.map +1 -0
  223. package/dist/cli/simple-commands/init/sparc-structure.d.ts +2 -0
  224. package/dist/cli/simple-commands/init/sparc-structure.d.ts.map +1 -0
  225. package/dist/cli/simple-commands/init/sparc-structure.js +61 -0
  226. package/dist/cli/simple-commands/init/sparc-structure.js.map +1 -0
  227. package/dist/cli/simple-commands/init/templates/claude-md.d.ts +5 -0
  228. package/dist/cli/simple-commands/init/templates/claude-md.d.ts.map +1 -0
  229. package/dist/cli/simple-commands/init/templates/claude-md.js +464 -0
  230. package/dist/cli/simple-commands/init/templates/claude-md.js.map +1 -0
  231. package/dist/cli/simple-commands/init/templates/coordination-md.d.ts +4 -0
  232. package/dist/cli/simple-commands/init/templates/coordination-md.d.ts.map +1 -0
  233. package/dist/cli/simple-commands/init/templates/coordination-md.js +338 -0
  234. package/dist/cli/simple-commands/init/templates/coordination-md.js.map +1 -0
  235. package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts +18 -0
  236. package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts.map +1 -0
  237. package/dist/cli/simple-commands/init/templates/enhanced-templates.js +1315 -0
  238. package/dist/cli/simple-commands/init/templates/enhanced-templates.js.map +1 -0
  239. package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts +4 -0
  240. package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts.map +1 -0
  241. package/dist/cli/simple-commands/init/templates/memory-bank-md.js +257 -0
  242. package/dist/cli/simple-commands/init/templates/memory-bank-md.js.map +1 -0
  243. package/dist/cli/simple-commands/init/templates/readme-files.d.ts +3 -0
  244. package/dist/cli/simple-commands/init/templates/readme-files.d.ts.map +1 -0
  245. package/dist/cli/simple-commands/init/templates/readme-files.js +71 -0
  246. package/dist/cli/simple-commands/init/templates/readme-files.js.map +1 -0
  247. package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts +30 -0
  248. package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts.map +1 -0
  249. package/dist/cli/simple-commands/init/templates/sparc-modes.js +764 -0
  250. package/dist/cli/simple-commands/init/templates/sparc-modes.js.map +1 -0
  251. package/dist/cli/simple-commands/init/validation/config-validator.d.ts +63 -0
  252. package/dist/cli/simple-commands/init/validation/config-validator.d.ts.map +1 -0
  253. package/dist/cli/simple-commands/init/validation/config-validator.js +311 -0
  254. package/dist/cli/simple-commands/init/validation/config-validator.js.map +1 -0
  255. package/dist/cli/simple-commands/init/validation/health-checker.d.ts +117 -0
  256. package/dist/cli/simple-commands/init/validation/health-checker.d.ts.map +1 -0
  257. package/dist/cli/simple-commands/init/validation/health-checker.js +540 -0
  258. package/dist/cli/simple-commands/init/validation/health-checker.js.map +1 -0
  259. package/dist/cli/simple-commands/init/validation/index.d.ts +55 -0
  260. package/dist/cli/simple-commands/init/validation/index.d.ts.map +1 -0
  261. package/dist/cli/simple-commands/init/validation/index.js +347 -0
  262. package/dist/cli/simple-commands/init/validation/index.js.map +1 -0
  263. package/dist/cli/simple-commands/init/validation/mode-validator.d.ts +76 -0
  264. package/dist/cli/simple-commands/init/validation/mode-validator.d.ts.map +1 -0
  265. package/dist/cli/simple-commands/init/validation/mode-validator.js +342 -0
  266. package/dist/cli/simple-commands/init/validation/mode-validator.js.map +1 -0
  267. package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts +62 -0
  268. package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts.map +1 -0
  269. package/dist/cli/simple-commands/init/validation/post-init-validator.js +348 -0
  270. package/dist/cli/simple-commands/init/validation/post-init-validator.js.map +1 -0
  271. package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts +86 -0
  272. package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts.map +1 -0
  273. package/dist/cli/simple-commands/init/validation/pre-init-validator.js +265 -0
  274. package/dist/cli/simple-commands/init/validation/pre-init-validator.js.map +1 -0
  275. package/dist/cli/simple-commands/mcp.d.ts +2 -0
  276. package/dist/cli/simple-commands/mcp.d.ts.map +1 -0
  277. package/dist/cli/simple-commands/mcp.js +358 -0
  278. package/dist/cli/simple-commands/mcp.js.map +1 -0
  279. package/dist/cli/simple-commands/memory.d.ts +2 -0
  280. package/dist/cli/simple-commands/memory.d.ts.map +1 -0
  281. package/dist/cli/simple-commands/memory.js +277 -0
  282. package/dist/cli/simple-commands/memory.js.map +1 -0
  283. package/dist/cli/simple-commands/monitor.d.ts +3 -0
  284. package/dist/cli/simple-commands/monitor.d.ts.map +1 -0
  285. package/dist/cli/simple-commands/monitor.js +157 -0
  286. package/dist/cli/simple-commands/monitor.js.map +1 -0
  287. package/dist/cli/simple-commands/process-ui-enhanced.d.ts +55 -0
  288. package/dist/cli/simple-commands/process-ui-enhanced.d.ts.map +1 -0
  289. package/dist/cli/simple-commands/process-ui-enhanced.js +666 -0
  290. package/dist/cli/simple-commands/process-ui-enhanced.js.map +1 -0
  291. package/dist/cli/simple-commands/sparc-modes/architect.d.ts +2 -0
  292. package/dist/cli/simple-commands/sparc-modes/architect.d.ts.map +1 -0
  293. package/dist/cli/simple-commands/sparc-modes/architect.js +126 -0
  294. package/dist/cli/simple-commands/sparc-modes/architect.js.map +1 -0
  295. package/dist/cli/simple-commands/sparc-modes/ask.d.ts +2 -0
  296. package/dist/cli/simple-commands/sparc-modes/ask.d.ts.map +1 -0
  297. package/dist/cli/simple-commands/sparc-modes/ask.js +127 -0
  298. package/dist/cli/simple-commands/sparc-modes/ask.js.map +1 -0
  299. package/dist/cli/simple-commands/sparc-modes/code.d.ts +2 -0
  300. package/dist/cli/simple-commands/sparc-modes/code.d.ts.map +1 -0
  301. package/dist/cli/simple-commands/sparc-modes/code.js +149 -0
  302. package/dist/cli/simple-commands/sparc-modes/code.js.map +1 -0
  303. package/dist/cli/simple-commands/sparc-modes/debug.d.ts +2 -0
  304. package/dist/cli/simple-commands/sparc-modes/debug.d.ts.map +1 -0
  305. package/dist/cli/simple-commands/sparc-modes/debug.js +113 -0
  306. package/dist/cli/simple-commands/sparc-modes/debug.js.map +1 -0
  307. package/dist/cli/simple-commands/sparc-modes/devops.d.ts +2 -0
  308. package/dist/cli/simple-commands/sparc-modes/devops.d.ts.map +1 -0
  309. package/dist/cli/simple-commands/sparc-modes/devops.js +138 -0
  310. package/dist/cli/simple-commands/sparc-modes/devops.js.map +1 -0
  311. package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts +2 -0
  312. package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts.map +1 -0
  313. package/dist/cli/simple-commands/sparc-modes/docs-writer.js +39 -0
  314. package/dist/cli/simple-commands/sparc-modes/docs-writer.js.map +1 -0
  315. package/dist/cli/simple-commands/sparc-modes/generic.d.ts +2 -0
  316. package/dist/cli/simple-commands/sparc-modes/generic.d.ts.map +1 -0
  317. package/dist/cli/simple-commands/sparc-modes/generic.js +35 -0
  318. package/dist/cli/simple-commands/sparc-modes/generic.js.map +1 -0
  319. package/dist/cli/simple-commands/sparc-modes/index.d.ts +17 -0
  320. package/dist/cli/simple-commands/sparc-modes/index.d.ts.map +1 -0
  321. package/dist/cli/simple-commands/sparc-modes/index.js +196 -0
  322. package/dist/cli/simple-commands/sparc-modes/index.js.map +1 -0
  323. package/dist/cli/simple-commands/sparc-modes/integration.d.ts +2 -0
  324. package/dist/cli/simple-commands/sparc-modes/integration.d.ts.map +1 -0
  325. package/dist/cli/simple-commands/sparc-modes/integration.js +56 -0
  326. package/dist/cli/simple-commands/sparc-modes/integration.js.map +1 -0
  327. package/dist/cli/simple-commands/sparc-modes/mcp.d.ts +2 -0
  328. package/dist/cli/simple-commands/sparc-modes/mcp.d.ts.map +1 -0
  329. package/dist/cli/simple-commands/sparc-modes/mcp.js +39 -0
  330. package/dist/cli/simple-commands/sparc-modes/mcp.js.map +1 -0
  331. package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts +2 -0
  332. package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts.map +1 -0
  333. package/dist/cli/simple-commands/sparc-modes/monitoring.js +39 -0
  334. package/dist/cli/simple-commands/sparc-modes/monitoring.js.map +1 -0
  335. package/dist/cli/simple-commands/sparc-modes/optimization.d.ts +2 -0
  336. package/dist/cli/simple-commands/sparc-modes/optimization.d.ts.map +1 -0
  337. package/dist/cli/simple-commands/sparc-modes/optimization.js +39 -0
  338. package/dist/cli/simple-commands/sparc-modes/optimization.js.map +1 -0
  339. package/dist/cli/simple-commands/sparc-modes/security-review.d.ts +2 -0
  340. package/dist/cli/simple-commands/sparc-modes/security-review.d.ts.map +1 -0
  341. package/dist/cli/simple-commands/sparc-modes/security-review.js +131 -0
  342. package/dist/cli/simple-commands/sparc-modes/security-review.js.map +1 -0
  343. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts +2 -0
  344. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts.map +1 -0
  345. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js +168 -0
  346. package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js.map +1 -0
  347. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts +2 -0
  348. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts.map +1 -0
  349. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js +39 -0
  350. package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js.map +1 -0
  351. package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts +2 -0
  352. package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts.map +1 -0
  353. package/dist/cli/simple-commands/sparc-modes/supabase-admin.js +150 -0
  354. package/dist/cli/simple-commands/sparc-modes/supabase-admin.js.map +1 -0
  355. package/dist/cli/simple-commands/sparc-modes/swarm.d.ts +81 -0
  356. package/dist/cli/simple-commands/sparc-modes/swarm.d.ts.map +1 -0
  357. package/dist/cli/simple-commands/sparc-modes/swarm.js +428 -0
  358. package/dist/cli/simple-commands/sparc-modes/swarm.js.map +1 -0
  359. package/dist/cli/simple-commands/sparc-modes/tdd.d.ts +2 -0
  360. package/dist/cli/simple-commands/sparc-modes/tdd.d.ts.map +1 -0
  361. package/dist/cli/simple-commands/sparc-modes/tdd.js +113 -0
  362. package/dist/cli/simple-commands/sparc-modes/tdd.js.map +1 -0
  363. package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts +2 -0
  364. package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts.map +1 -0
  365. package/dist/cli/simple-commands/sparc-modes/tutorial.js +278 -0
  366. package/dist/cli/simple-commands/sparc-modes/tutorial.js.map +1 -0
  367. package/dist/cli/simple-commands/sparc.d.ts +2 -0
  368. package/dist/cli/simple-commands/sparc.d.ts.map +1 -0
  369. package/dist/cli/simple-commands/sparc.js +468 -0
  370. package/dist/cli/simple-commands/sparc.js.map +1 -0
  371. package/dist/cli/simple-commands/start-ui.d.ts +2 -0
  372. package/dist/cli/simple-commands/start-ui.d.ts.map +1 -0
  373. package/dist/cli/simple-commands/start-ui.js +133 -0
  374. package/dist/cli/simple-commands/start-ui.js.map +1 -0
  375. package/dist/cli/simple-commands/start-wrapper.d.ts +2 -0
  376. package/dist/cli/simple-commands/start-wrapper.d.ts.map +1 -0
  377. package/dist/cli/simple-commands/start-wrapper.js +263 -0
  378. package/dist/cli/simple-commands/start-wrapper.js.map +1 -0
  379. package/dist/cli/simple-commands/start.d.ts +2 -0
  380. package/dist/cli/simple-commands/start.d.ts.map +1 -0
  381. package/dist/cli/simple-commands/start.js +3 -0
  382. package/dist/cli/simple-commands/start.js.map +1 -0
  383. package/dist/cli/simple-commands/status.d.ts +2 -0
  384. package/dist/cli/simple-commands/status.d.ts.map +1 -0
  385. package/dist/cli/simple-commands/status.js +273 -0
  386. package/dist/cli/simple-commands/status.js.map +1 -0
  387. package/dist/cli/simple-commands/swarm-executor.d.ts +68 -0
  388. package/dist/cli/simple-commands/swarm-executor.d.ts.map +1 -0
  389. package/dist/cli/simple-commands/swarm-executor.js +212 -0
  390. package/dist/cli/simple-commands/swarm-executor.js.map +1 -0
  391. package/dist/cli/simple-commands/swarm-metrics-integration.d.ts +69 -0
  392. package/dist/cli/simple-commands/swarm-metrics-integration.d.ts.map +1 -0
  393. package/dist/cli/simple-commands/swarm-metrics-integration.js +285 -0
  394. package/dist/cli/simple-commands/swarm-metrics-integration.js.map +1 -0
  395. package/dist/cli/simple-commands/swarm-webui-integration.d.ts +68 -0
  396. package/dist/cli/simple-commands/swarm-webui-integration.d.ts.map +1 -0
  397. package/dist/cli/simple-commands/swarm-webui-integration.js +253 -0
  398. package/dist/cli/simple-commands/swarm-webui-integration.js.map +1 -0
  399. package/dist/cli/simple-commands/swarm.d.ts +2 -0
  400. package/dist/cli/simple-commands/swarm.d.ts.map +1 -0
  401. package/dist/cli/simple-commands/swarm.js +1675 -0
  402. package/dist/cli/simple-commands/swarm.js.map +1 -0
  403. package/dist/cli/simple-commands/task.d.ts +2 -0
  404. package/dist/cli/simple-commands/task.d.ts.map +1 -0
  405. package/dist/cli/simple-commands/task.js +145 -0
  406. package/dist/cli/simple-commands/task.js.map +1 -0
  407. package/dist/cli/simple-commands/training.d.ts +2 -0
  408. package/dist/cli/simple-commands/training.d.ts.map +1 -0
  409. package/dist/cli/simple-commands/training.js +240 -0
  410. package/dist/cli/simple-commands/training.js.map +1 -0
  411. package/dist/cli/simple-commands/web-server.d.ts +152 -0
  412. package/dist/cli/simple-commands/web-server.d.ts.map +1 -0
  413. package/dist/cli/simple-commands/web-server.js +814 -0
  414. package/dist/cli/simple-commands/web-server.js.map +1 -0
  415. package/dist/cli/ui/fallback-handler.d.ts.map +1 -1
  416. package/dist/cli/ui/fallback-handler.js +4 -1
  417. package/dist/cli/ui/fallback-handler.js.map +1 -1
  418. package/dist/cli/utils/environment-detector.d.ts +2 -0
  419. package/dist/cli/utils/environment-detector.d.ts.map +1 -1
  420. package/dist/cli/utils/environment-detector.js +27 -0
  421. package/dist/cli/utils/environment-detector.js.map +1 -1
  422. package/dist/cli/utils/interactive-detector.d.ts +25 -0
  423. package/dist/cli/utils/interactive-detector.d.ts.map +1 -0
  424. package/dist/cli/utils/interactive-detector.js +129 -0
  425. package/dist/cli/utils/interactive-detector.js.map +1 -0
  426. package/dist/cli/utils/safe-interactive.d.ts +30 -0
  427. package/dist/cli/utils/safe-interactive.d.ts.map +1 -0
  428. package/dist/cli/utils/safe-interactive.js +133 -0
  429. package/dist/cli/utils/safe-interactive.js.map +1 -0
  430. package/dist/cli/utils.d.ts +74 -0
  431. package/dist/cli/utils.d.ts.map +1 -0
  432. package/dist/cli/utils.js +570 -0
  433. package/dist/cli/utils.js.map +1 -0
  434. package/dist/communication/message-bus.d.ts.map +1 -1
  435. package/dist/communication/message-bus.js +7 -2
  436. package/dist/communication/message-bus.js.map +1 -1
  437. package/dist/coordination/advanced-task-executor.d.ts.map +1 -1
  438. package/dist/coordination/advanced-task-executor.js +9 -5
  439. package/dist/coordination/advanced-task-executor.js.map +1 -1
  440. package/dist/coordination/load-balancer.d.ts.map +1 -1
  441. package/dist/coordination/load-balancer.js +13 -4
  442. package/dist/coordination/load-balancer.js.map +1 -1
  443. package/dist/hive-mind/integration/MCPToolWrapper.d.ts.map +1 -1
  444. package/dist/hive-mind/integration/MCPToolWrapper.js +2 -1
  445. package/dist/hive-mind/integration/MCPToolWrapper.js.map +1 -1
  446. package/dist/memory/sqlite-store.js +267 -0
  447. package/dist/memory/sqlite-store.js.map +1 -0
  448. package/dist/swarm/prompt-copier-enhanced.js.map +1 -1
  449. package/dist/swarm/prompt-copier.d.ts.map +1 -1
  450. package/dist/swarm/prompt-copier.js +2 -1
  451. package/dist/swarm/prompt-copier.js.map +1 -1
  452. package/dist/utils/error-handler.d.ts +4 -3
  453. package/dist/utils/error-handler.d.ts.map +1 -1
  454. package/dist/utils/error-handler.js +5 -21
  455. package/dist/utils/error-handler.js.map +1 -1
  456. package/dist/utils/type-guards.d.ts +117 -0
  457. package/dist/utils/type-guards.d.ts.map +1 -0
  458. package/dist/utils/type-guards.js +165 -0
  459. package/dist/utils/type-guards.js.map +1 -0
  460. package/package.json +5 -3
  461. package/scripts/claude-flow-wrapper.sh +35 -0
  462. package/scripts/quick-fix-ts.js +281 -0
  463. package/scripts/ruv-swarm-safe.js +74 -0
  464. package/scripts/update-bin-version.js +32 -0
  465. package/src/cli/cli-core.ts +1 -1
  466. package/src/cli/command-registry.js +68 -0
  467. package/src/cli/commands/hook-types.ts +126 -0
  468. package/src/cli/commands/hook-validator.ts +191 -0
  469. package/src/cli/commands/hook.ts +346 -0
  470. package/src/cli/commands/index.ts +37 -0
  471. package/src/cli/commands/swarm-new.ts +762 -352
  472. package/src/cli/commands/swarm-spawn.ts +8 -4
  473. package/src/cli/commands/task.ts +30 -33
  474. package/src/cli/commands/workflow.ts +33 -37
  475. package/src/cli/formatter.ts +1 -1
  476. package/src/cli/help-text.js +3 -3
  477. package/src/cli/index.ts +4 -4
  478. package/src/cli/node-repl.ts +1 -1
  479. package/src/cli/repl.ts +11 -11
  480. package/src/cli/simple-commands/hive-mind/core.js +3 -1
  481. package/src/cli/simple-commands/hive-mind/db-optimizer.js +762 -0
  482. package/src/cli/simple-commands/hive-mind/mcp-wrapper.js +4 -1
  483. package/src/cli/simple-commands/hive-mind/memory.js +19 -5
  484. package/src/cli/simple-commands/hive-mind-optimize.js +357 -0
  485. package/src/cli/simple-commands/hive-mind-wizard.js +1 -1
  486. package/src/cli/simple-commands/hive-mind.js +352 -107
  487. package/src/cli/simple-commands/hook-safety.js +668 -0
  488. package/src/cli/simple-commands/hooks-complete.js +677 -0
  489. package/src/cli/simple-commands/hooks-enhanced-integration.js +231 -0
  490. package/src/cli/simple-commands/hooks-enhanced.js +424 -0
  491. package/src/cli/simple-commands/hooks-memory-bridge.js +97 -0
  492. package/src/cli/simple-commands/hooks-original.js +377 -0
  493. package/src/cli/simple-commands/hooks.js +575 -262
  494. package/src/cli/simple-commands/init/executable-wrapper.js +17 -13
  495. package/src/cli/simple-commands/init/help.js +2 -0
  496. package/src/cli/simple-commands/init/index.js +101 -53
  497. package/src/cli/simple-commands/init/sparc-structure.js +3 -1
  498. package/src/cli/simple-commands/init/templates/CLAUDE.md +14 -14
  499. package/src/cli/simple-commands/init/templates/claude-flow-universal +79 -0
  500. package/src/cli/simple-commands/init/templates/commands/hooks/notification.md +102 -0
  501. package/src/cli/simple-commands/init/templates/commands/hooks/post-command.md +105 -0
  502. package/src/cli/simple-commands/init/templates/commands/hooks/post-edit.md +106 -0
  503. package/src/cli/simple-commands/init/templates/commands/hooks/post-task.md +101 -0
  504. package/src/cli/simple-commands/init/templates/commands/hooks/pre-command.md +102 -0
  505. package/src/cli/simple-commands/init/templates/commands/hooks/pre-edit.md +102 -0
  506. package/src/cli/simple-commands/init/templates/commands/hooks/pre-search.md +105 -0
  507. package/src/cli/simple-commands/init/templates/commands/hooks/session-end.md +107 -0
  508. package/src/cli/simple-commands/init/templates/commands/hooks/session-restore.md +110 -0
  509. package/src/cli/simple-commands/init/templates/commands/hooks/session-start.md +106 -0
  510. package/src/cli/simple-commands/init/templates/enhanced-templates.js +82 -23
  511. package/src/cli/simple-commands/init/templates/safe-hook-patterns.js +381 -0
  512. package/src/cli/simple-commands/init/templates/settings.json +5 -5
  513. package/src/cli/simple-commands/swarm.js +10 -8
  514. package/src/cli/ui/fallback-handler.ts +4 -2
  515. package/src/cli/utils/environment-detector.ts +33 -0
  516. package/src/cli/utils/interactive-detector.js +3 -0
  517. package/src/cli/utils/safe-interactive.js +142 -0
  518. package/src/communication/message-bus.ts +7 -3
  519. package/src/coordination/advanced-task-executor.ts +11 -8
  520. package/src/coordination/load-balancer.ts +13 -5
  521. package/src/hive-mind/integration/MCPToolWrapper.ts +2 -1
  522. package/src/mcp/mcp-server.js +159 -22
  523. package/src/mcp/ruv-swarm-wrapper.js +202 -0
  524. package/src/memory/README.md +282 -0
  525. package/src/memory/enhanced-examples.js +298 -0
  526. package/src/memory/enhanced-memory.js +343 -0
  527. package/src/memory/enhanced-schema.sql +154 -0
  528. package/src/memory/index.js +38 -0
  529. package/src/memory/migration.js +445 -0
  530. package/src/memory/shared-memory.js +792 -0
  531. package/src/memory/sqlite-store.js +313 -0
  532. package/src/memory/swarm-memory.js +597 -0
  533. package/src/memory/test-example.js +140 -0
  534. package/src/swarm/prompt-copier-enhanced.ts +17 -17
  535. package/src/swarm/prompt-copier.ts +3 -2
  536. package/src/utils/error-handler.ts +6 -23
  537. package/src/utils/type-guards.ts +188 -0
@@ -32,7 +32,7 @@ The post-task hook automatically analyzes:
32
32
  ### 3. Improvement Suggestions
33
33
 
34
34
  ```
35
- Tool: mcp__ruv-swarm__task_results
35
+ Tool: mcp__claude-flow__task_results
36
36
  Parameters: {"taskId": "task-123", "format": "detailed"}
37
37
 
38
38
  Result includes:
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__swarm_init`
8
+ **Tool:** `mcp__claude-flow__swarm_init`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -27,7 +27,7 @@ Remember: This does NOT create actual coding agents. It creates a coordination p
27
27
  ## Example Usage
28
28
 
29
29
  **In Claude Code:**
30
- 1. Use the tool: `mcp__ruv-swarm__swarm_init`
30
+ 1. Use the tool: `mcp__claude-flow__swarm_init`
31
31
  2. With parameters: `{"topology": "mesh", "maxAgents": 5, "strategy": "balanced"}`
32
32
  3. Claude Code then executes the coordinated plan using its native tools
33
33
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__task_orchestrate`
8
+ **Tool:** `mcp__claude-flow__task_orchestrate`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -26,7 +26,7 @@ The orchestrator creates a plan that Claude Code follows using its native tools.
26
26
  ## Example Usage
27
27
 
28
28
  **In Claude Code:**
29
- 1. Use the tool: `mcp__ruv-swarm__task_orchestrate`
29
+ 1. Use the tool: `mcp__claude-flow__task_orchestrate`
30
30
  2. With parameters: `{"task": "Implement authentication system", "strategy": "parallel", "priority": "high"}`
31
31
  3. Claude Code then executes the coordinated plan using its native tools
32
32
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__agent_spawn`
8
+ **Tool:** `mcp__claude-flow__agent_spawn`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -28,7 +28,7 @@ These patterns guide how Claude Code approaches different aspects of your task.
28
28
  ## Example Usage
29
29
 
30
30
  **In Claude Code:**
31
- 1. Use the tool: `mcp__ruv-swarm__agent_spawn`
31
+ 1. Use the tool: `mcp__claude-flow__agent_spawn`
32
32
  2. With parameters: `{"type": "researcher", "name": "Literature Analysis", "capabilities": ["deep-analysis"]}`
33
33
  3. Claude Code then executes the coordinated plan using its native tools
34
34
 
@@ -137,11 +137,11 @@ All GitHub modes can be enhanced with ruv-swarm coordination:
137
137
 
138
138
  ```javascript
139
139
  // Initialize swarm for GitHub workflow
140
- mcp__ruv-swarm__swarm_init { topology: "hierarchical", maxAgents: 5 }
141
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "GitHub Coordinator" }
142
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Code Reviewer" }
143
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "QA Agent" }
140
+ mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 5 }
141
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "GitHub Coordinator" }
142
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Code Reviewer" }
143
+ mcp__claude-flow__agent_spawn { type: "tester", name: "QA Agent" }
144
144
 
145
145
  // Execute GitHub workflow with coordination
146
- mcp__ruv-swarm__task_orchestrate { task: "GitHub workflow", strategy: "parallel" }
146
+ mcp__claude-flow__task_orchestrate { task: "GitHub workflow", strategy: "parallel" }
147
147
  ```
@@ -17,7 +17,7 @@ Intelligent issue management and project coordination with ruv-swarm integration
17
17
  - `mcp__github__update_issue`
18
18
  - `mcp__github__add_issue_comment`
19
19
  - `mcp__github__search_issues`
20
- - `mcp__ruv-swarm__*` (all swarm coordination tools)
20
+ - `mcp__claude-flow__*` (all swarm coordination tools)
21
21
  - `TodoWrite`, `TodoRead`, `Task`, `Bash`, `Read`, `Write`
22
22
 
23
23
  ## Usage Patterns
@@ -25,10 +25,10 @@ Intelligent issue management and project coordination with ruv-swarm integration
25
25
  ### 1. Create Coordinated Issue with Swarm Tracking
26
26
  ```javascript
27
27
  // Initialize issue management swarm
28
- mcp__ruv-swarm__swarm_init { topology: "star", maxAgents: 3 }
29
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Issue Coordinator" }
30
- mcp__ruv-swarm__agent_spawn { type: "researcher", name: "Requirements Analyst" }
31
- mcp__ruv-swarm__agent_spawn { type: "coder", name: "Implementation Planner" }
28
+ mcp__claude-flow__swarm_init { topology: "star", maxAgents: 3 }
29
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Issue Coordinator" }
30
+ mcp__claude-flow__agent_spawn { type: "researcher", name: "Requirements Analyst" }
31
+ mcp__claude-flow__agent_spawn { type: "coder", name: "Implementation Planner" }
32
32
 
33
33
  // Create comprehensive issue
34
34
  mcp__github__create_issue {
@@ -53,7 +53,7 @@ mcp__github__create_issue {
53
53
  }
54
54
 
55
55
  // Set up automated tracking
56
- mcp__ruv-swarm__task_orchestrate {
56
+ mcp__claude-flow__task_orchestrate {
57
57
  task: "Monitor and coordinate issue progress with automated updates",
58
58
  strategy: "adaptive",
59
59
  priority: "medium"
@@ -63,7 +63,7 @@ mcp__ruv-swarm__task_orchestrate {
63
63
  ### 2. Automated Progress Updates
64
64
  ```javascript
65
65
  // Update issue with progress from swarm memory
66
- mcp__ruv-swarm__memory_usage {
66
+ mcp__claude-flow__memory_usage {
67
67
  action: "retrieve",
68
68
  key: "issue/54/progress"
69
69
  }
@@ -92,7 +92,7 @@ mcp__github__add_issue_comment {
92
92
  }
93
93
 
94
94
  // Store progress in swarm memory
95
- mcp__ruv-swarm__memory_usage {
95
+ mcp__claude-flow__memory_usage {
96
96
  action: "store",
97
97
  key: "issue/54/latest_update",
98
98
  value: { timestamp: Date.now(), progress: "89%", status: "near_completion" }
@@ -125,10 +125,10 @@ mcp__github__update_issue {
125
125
  ```javascript
126
126
  [Single Message - Issue Lifecycle Management]:
127
127
  // Initialize issue coordination swarm
128
- mcp__ruv-swarm__swarm_init { topology: "mesh", maxAgents: 4 }
129
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Issue Manager" }
130
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Progress Tracker" }
131
- mcp__ruv-swarm__agent_spawn { type: "researcher", name: "Context Gatherer" }
128
+ mcp__claude-flow__swarm_init { topology: "mesh", maxAgents: 4 }
129
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Issue Manager" }
130
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Progress Tracker" }
131
+ mcp__claude-flow__agent_spawn { type: "researcher", name: "Context Gatherer" }
132
132
 
133
133
  // Create multiple related issues
134
134
  mcp__github__create_issue {
@@ -155,7 +155,7 @@ mcp__github__update_issue {
155
155
  ]}
156
156
 
157
157
  // Store initial coordination state
158
- mcp__ruv-swarm__memory_usage {
158
+ mcp__claude-flow__memory_usage {
159
159
  action: "store",
160
160
  key: "project/github_integration/issues",
161
161
  value: { created: Date.now(), total_issues: 3, status: "initialized" }
@@ -21,7 +21,7 @@ Comprehensive pull request management with ruv-swarm coordination for automated
21
21
  - `mcp__github__update_pull_request_branch`
22
22
  - `mcp__github__get_pull_request_comments`
23
23
  - `mcp__github__get_pull_request_reviews`
24
- - `mcp__ruv-swarm__*` (all swarm coordination tools)
24
+ - `mcp__claude-flow__*` (all swarm coordination tools)
25
25
  - `TodoWrite`, `TodoRead`, `Task`, `Bash`, `Read`, `Write`
26
26
 
27
27
  ## Usage Patterns
@@ -29,10 +29,10 @@ Comprehensive pull request management with ruv-swarm coordination for automated
29
29
  ### 1. Create and Manage PR with Swarm Coordination
30
30
  ```javascript
31
31
  // Initialize review swarm
32
- mcp__ruv-swarm__swarm_init { topology: "mesh", maxAgents: 4 }
33
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Code Quality Reviewer" }
34
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "Testing Agent" }
35
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "PR Coordinator" }
32
+ mcp__claude-flow__swarm_init { topology: "mesh", maxAgents: 4 }
33
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Code Quality Reviewer" }
34
+ mcp__claude-flow__agent_spawn { type: "tester", name: "Testing Agent" }
35
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "PR Coordinator" }
36
36
 
37
37
  // Create PR and orchestrate review
38
38
  mcp__github__create_pull_request {
@@ -45,7 +45,7 @@ mcp__github__create_pull_request {
45
45
  }
46
46
 
47
47
  // Orchestrate review process
48
- mcp__ruv-swarm__task_orchestrate {
48
+ mcp__claude-flow__task_orchestrate {
49
49
  task: "Complete PR review with testing and validation",
50
50
  strategy: "parallel",
51
51
  priority: "high"
@@ -87,7 +87,7 @@ mcp__github__merge_pull_request {
87
87
  }
88
88
 
89
89
  // Post-merge coordination
90
- mcp__ruv-swarm__memory_usage {
90
+ mcp__claude-flow__memory_usage {
91
91
  action: "store",
92
92
  key: "pr/54/merged",
93
93
  value: { timestamp: Date.now(), status: "success" }
@@ -100,10 +100,10 @@ mcp__ruv-swarm__memory_usage {
100
100
  ```javascript
101
101
  [Single Message - Complete PR Management]:
102
102
  // Initialize coordination
103
- mcp__ruv-swarm__swarm_init { topology: "hierarchical", maxAgents: 5 }
104
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Senior Reviewer" }
105
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "QA Engineer" }
106
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Merge Coordinator" }
103
+ mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 5 }
104
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Senior Reviewer" }
105
+ mcp__claude-flow__agent_spawn { type: "tester", name: "QA Engineer" }
106
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Merge Coordinator" }
107
107
 
108
108
  // Create and manage PR
109
109
  mcp__github__create_pull_request { title: "...", head: "...", base: "main" }
@@ -16,7 +16,7 @@ Automated release coordination and deployment with ruv-swarm orchestration for s
16
16
  - `mcp__github__create_branch`
17
17
  - `mcp__github__push_files`
18
18
  - `mcp__github__create_issue`
19
- - `mcp__ruv-swarm__*` (all swarm coordination tools)
19
+ - `mcp__claude-flow__*` (all swarm coordination tools)
20
20
  - `TodoWrite`, `TodoRead`, `Task`, `Bash`, `Read`, `Write`, `Edit`
21
21
 
22
22
  ## Usage Patterns
@@ -24,12 +24,12 @@ Automated release coordination and deployment with ruv-swarm orchestration for s
24
24
  ### 1. Coordinated Release Preparation
25
25
  ```javascript
26
26
  // Initialize release management swarm
27
- mcp__ruv-swarm__swarm_init { topology: "hierarchical", maxAgents: 6 }
28
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Release Coordinator" }
29
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "QA Engineer" }
30
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Release Reviewer" }
31
- mcp__ruv-swarm__agent_spawn { type: "coder", name: "Version Manager" }
32
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Deployment Analyst" }
27
+ mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 6 }
28
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Release Coordinator" }
29
+ mcp__claude-flow__agent_spawn { type: "tester", name: "QA Engineer" }
30
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Release Reviewer" }
31
+ mcp__claude-flow__agent_spawn { type: "coder", name: "Version Manager" }
32
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Deployment Analyst" }
33
33
 
34
34
  // Create release preparation branch
35
35
  mcp__github__create_branch {
@@ -40,7 +40,7 @@ mcp__github__create_branch {
40
40
  }
41
41
 
42
42
  // Orchestrate release preparation
43
- mcp__ruv-swarm__task_orchestrate {
43
+ mcp__claude-flow__task_orchestrate {
44
44
  task: "Prepare release v1.0.72 with comprehensive testing and validation",
45
45
  strategy: "sequential",
46
46
  priority: "critical"
@@ -177,13 +177,13 @@ This release is production-ready with comprehensive validation and testing.
177
177
  ```javascript
178
178
  [Single Message - Complete Release Management]:
179
179
  // Initialize comprehensive release swarm
180
- mcp__ruv-swarm__swarm_init { topology: "star", maxAgents: 8 }
181
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Release Director" }
182
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "QA Lead" }
183
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Senior Reviewer" }
184
- mcp__ruv-swarm__agent_spawn { type: "coder", name: "Version Controller" }
185
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Performance Analyst" }
186
- mcp__ruv-swarm__agent_spawn { type: "researcher", name: "Compatibility Checker" }
180
+ mcp__claude-flow__swarm_init { topology: "star", maxAgents: 8 }
181
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Release Director" }
182
+ mcp__claude-flow__agent_spawn { type: "tester", name: "QA Lead" }
183
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Senior Reviewer" }
184
+ mcp__claude-flow__agent_spawn { type: "coder", name: "Version Controller" }
185
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Performance Analyst" }
186
+ mcp__claude-flow__agent_spawn { type: "researcher", name: "Compatibility Checker" }
187
187
 
188
188
  // Create release branch and prepare files
189
189
  mcp__github__create_branch { branch: "release/v1.0.72", from_branch: "main" }
@@ -222,7 +222,7 @@ This release is production-ready with comprehensive validation and testing.
222
222
  ]}
223
223
 
224
224
  // Store release state
225
- mcp__ruv-swarm__memory_usage {
225
+ mcp__claude-flow__memory_usage {
226
226
  action: "store",
227
227
  key: "release/v1.0.72/status",
228
228
  value: {
@@ -16,7 +16,7 @@ Repository structure optimization and multi-repo management with ruv-swarm coord
16
16
  - `mcp__github__search_repositories`
17
17
  - `mcp__github__push_files`
18
18
  - `mcp__github__create_or_update_file`
19
- - `mcp__ruv-swarm__*` (all swarm coordination tools)
19
+ - `mcp__claude-flow__*` (all swarm coordination tools)
20
20
  - `TodoWrite`, `TodoRead`, `Task`, `Bash`, `Read`, `Write`, `LS`, `Glob`
21
21
 
22
22
  ## Usage Patterns
@@ -24,11 +24,11 @@ Repository structure optimization and multi-repo management with ruv-swarm coord
24
24
  ### 1. Repository Structure Analysis and Optimization
25
25
  ```javascript
26
26
  // Initialize architecture analysis swarm
27
- mcp__ruv-swarm__swarm_init { topology: "mesh", maxAgents: 4 }
28
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Structure Analyzer" }
29
- mcp__ruv-swarm__agent_spawn { type: "architect", name: "Repository Architect" }
30
- mcp__ruv-swarm__agent_spawn { type: "optimizer", name: "Structure Optimizer" }
31
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Multi-Repo Coordinator" }
27
+ mcp__claude-flow__swarm_init { topology: "mesh", maxAgents: 4 }
28
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Structure Analyzer" }
29
+ mcp__claude-flow__agent_spawn { type: "architect", name: "Repository Architect" }
30
+ mcp__claude-flow__agent_spawn { type: "optimizer", name: "Structure Optimizer" }
31
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Multi-Repo Coordinator" }
32
32
 
33
33
  // Analyze current repository structure
34
34
  LS("/workspaces/ruv-FANN/claude-code-flow/claude-code-flow")
@@ -42,7 +42,7 @@ mcp__github__search_repositories {
42
42
  }
43
43
 
44
44
  // Orchestrate structure optimization
45
- mcp__ruv-swarm__task_orchestrate {
45
+ mcp__claude-flow__task_orchestrate {
46
46
  task: "Analyze and optimize repository structure for scalability and maintainability",
47
47
  strategy: "adaptive",
48
48
  priority: "medium"
@@ -169,12 +169,12 @@ jobs:
169
169
  ```javascript
170
170
  [Single Message - Repository Architecture Review]:
171
171
  // Initialize comprehensive architecture swarm
172
- mcp__ruv-swarm__swarm_init { topology: "hierarchical", maxAgents: 6 }
173
- mcp__ruv-swarm__agent_spawn { type: "architect", name: "Senior Architect" }
174
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Structure Analyst" }
175
- mcp__ruv-swarm__agent_spawn { type: "optimizer", name: "Performance Optimizer" }
176
- mcp__ruv-swarm__agent_spawn { type: "researcher", name: "Best Practices Researcher" }
177
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Multi-Repo Coordinator" }
172
+ mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 6 }
173
+ mcp__claude-flow__agent_spawn { type: "architect", name: "Senior Architect" }
174
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Structure Analyst" }
175
+ mcp__claude-flow__agent_spawn { type: "optimizer", name: "Performance Optimizer" }
176
+ mcp__claude-flow__agent_spawn { type: "researcher", name: "Best Practices Researcher" }
177
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Multi-Repo Coordinator" }
178
178
 
179
179
  // Analyze current repository structures
180
180
  LS("/workspaces/ruv-FANN/claude-code-flow/claude-code-flow")
@@ -223,7 +223,7 @@ jobs:
223
223
  ]}
224
224
 
225
225
  // Store architecture analysis
226
- mcp__ruv-swarm__memory_usage {
226
+ mcp__claude-flow__memory_usage {
227
227
  action: "store",
228
228
  key: "architecture/analysis/results",
229
229
  value: {
@@ -16,7 +16,7 @@ Multi-package synchronization and version alignment with ruv-swarm coordination
16
16
  - `mcp__github__get_file_contents`
17
17
  - `mcp__github__create_pull_request`
18
18
  - `mcp__github__search_repositories`
19
- - `mcp__ruv-swarm__*` (all swarm coordination tools)
19
+ - `mcp__claude-flow__*` (all swarm coordination tools)
20
20
  - `TodoWrite`, `TodoRead`, `Task`, `Bash`, `Read`, `Write`, `Edit`, `MultiEdit`
21
21
 
22
22
  ## Usage Patterns
@@ -24,11 +24,11 @@ Multi-package synchronization and version alignment with ruv-swarm coordination
24
24
  ### 1. Synchronize Package Dependencies
25
25
  ```javascript
26
26
  // Initialize sync coordination swarm
27
- mcp__ruv-swarm__swarm_init { topology: "hierarchical", maxAgents: 5 }
28
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Sync Coordinator" }
29
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Dependency Analyzer" }
30
- mcp__ruv-swarm__agent_spawn { type: "coder", name: "Integration Developer" }
31
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "Validation Engineer" }
27
+ mcp__claude-flow__swarm_init { topology: "hierarchical", maxAgents: 5 }
28
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Sync Coordinator" }
29
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Dependency Analyzer" }
30
+ mcp__claude-flow__agent_spawn { type: "coder", name: "Integration Developer" }
31
+ mcp__claude-flow__agent_spawn { type: "tester", name: "Validation Engineer" }
32
32
 
33
33
  // Analyze current package states
34
34
  Read("/workspaces/ruv-FANN/claude-code-flow/claude-code-flow/package.json")
@@ -45,7 +45,7 @@ mcp__github__create_or_update_file {
45
45
  }
46
46
 
47
47
  // Orchestrate validation
48
- mcp__ruv-swarm__task_orchestrate {
48
+ mcp__claude-flow__task_orchestrate {
49
49
  task: "Validate package synchronization and run integration tests",
50
50
  strategy: "parallel",
51
51
  priority: "high"
@@ -72,7 +72,7 @@ mcp__github__create_or_update_file {
72
72
  }
73
73
 
74
74
  // Store sync state in memory
75
- mcp__ruv-swarm__memory_usage {
75
+ mcp__claude-flow__memory_usage {
76
76
  action: "store",
77
77
  key: "sync/documentation/status",
78
78
  value: { timestamp: Date.now(), status: "synchronized", files: ["CLAUDE.md"] }
@@ -147,12 +147,12 @@ This integration uses ruv-swarm agents for:
147
147
  ```javascript
148
148
  [Single Message - Complete Synchronization]:
149
149
  // Initialize comprehensive sync swarm
150
- mcp__ruv-swarm__swarm_init { topology: "mesh", maxAgents: 6 }
151
- mcp__ruv-swarm__agent_spawn { type: "coordinator", name: "Master Sync Coordinator" }
152
- mcp__ruv-swarm__agent_spawn { type: "analyst", name: "Package Analyzer" }
153
- mcp__ruv-swarm__agent_spawn { type: "coder", name: "Integration Coder" }
154
- mcp__ruv-swarm__agent_spawn { type: "tester", name: "Validation Tester" }
155
- mcp__ruv-swarm__agent_spawn { type: "reviewer", name: "Quality Reviewer" }
150
+ mcp__claude-flow__swarm_init { topology: "mesh", maxAgents: 6 }
151
+ mcp__claude-flow__agent_spawn { type: "coordinator", name: "Master Sync Coordinator" }
152
+ mcp__claude-flow__agent_spawn { type: "analyst", name: "Package Analyzer" }
153
+ mcp__claude-flow__agent_spawn { type: "coder", name: "Integration Coder" }
154
+ mcp__claude-flow__agent_spawn { type: "tester", name: "Validation Tester" }
155
+ mcp__claude-flow__agent_spawn { type: "reviewer", name: "Quality Reviewer" }
156
156
 
157
157
  // Read current state of both packages
158
158
  Read("/workspaces/ruv-FANN/claude-code-flow/claude-code-flow/package.json")
@@ -186,7 +186,7 @@ This integration uses ruv-swarm agents for:
186
186
  ]}
187
187
 
188
188
  // Store comprehensive sync state
189
- mcp__ruv-swarm__memory_usage {
189
+ mcp__claude-flow__memory_usage {
190
190
  action: "store",
191
191
  key: "sync/complete/status",
192
192
  value: {
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__neural_train`
8
+ **Tool:** `mcp__claude-flow__neural_train`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -25,7 +25,7 @@ Training improves:
25
25
  ## Example Usage
26
26
 
27
27
  **In Claude Code:**
28
- 1. Use the tool: `mcp__ruv-swarm__neural_train`
28
+ 1. Use the tool: `mcp__claude-flow__neural_train`
29
29
  2. With parameters: `{"iterations": 10}`
30
30
  3. Claude Code then executes the coordinated plan using its native tools
31
31
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__memory_usage`
8
+ **Tool:** `mcp__claude-flow__memory_usage`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -25,7 +25,7 @@ Memory helps Claude Code:
25
25
  ## Example Usage
26
26
 
27
27
  **In Claude Code:**
28
- 1. Use the tool: `mcp__ruv-swarm__memory_usage`
28
+ 1. Use the tool: `mcp__claude-flow__memory_usage`
29
29
  2. With parameters: `{"detail": "detailed"}`
30
30
  3. Claude Code then executes the coordinated plan using its native tools
31
31
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__agent_list`
8
+ **Tool:** `mcp__claude-flow__agent_list`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -25,7 +25,7 @@ Filters:
25
25
  ## Example Usage
26
26
 
27
27
  **In Claude Code:**
28
- 1. Use the tool: `mcp__ruv-swarm__agent_list`
28
+ 1. Use the tool: `mcp__claude-flow__agent_list`
29
29
  2. With parameters: `{"filter": "active"}`
30
30
  3. Claude Code then executes the coordinated plan using its native tools
31
31
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## MCP Tool Usage in Claude Code
7
7
 
8
- **Tool:** `mcp__ruv-swarm__swarm_status`
8
+ **Tool:** `mcp__claude-flow__swarm_status`
9
9
 
10
10
  ## Parameters
11
11
  ```json
@@ -26,7 +26,7 @@ Shows:
26
26
  ## Example Usage
27
27
 
28
28
  **In Claude Code:**
29
- 1. Use the tool: `mcp__ruv-swarm__swarm_status`
29
+ 1. Use the tool: `mcp__claude-flow__swarm_status`
30
30
  2. With parameters: `{"verbose": true}`
31
31
  3. Claude Code then executes the coordinated plan using its native tools
32
32
 
@@ -23,14 +23,14 @@ Based on analysis, it selects:
23
23
 
24
24
  **Simple Task:**
25
25
  ```
26
- Tool: mcp__ruv-swarm__task_orchestrate
26
+ Tool: mcp__claude-flow__task_orchestrate
27
27
  Parameters: {"task": "Fix typo in README.md"}
28
28
  Result: Automatically uses star topology with single agent
29
29
  ```
30
30
 
31
31
  **Complex Task:**
32
32
  ```
33
- Tool: mcp__ruv-swarm__task_orchestrate
33
+ Tool: mcp__claude-flow__task_orchestrate
34
34
  Parameters: {"task": "Refactor authentication system with JWT, add tests, update documentation"}
35
35
  Result: Automatically uses hierarchical topology with architect, coder, and tester agents
36
36
  ```
@@ -7,7 +7,7 @@ Execute independent subtasks in parallel for maximum efficiency.
7
7
 
8
8
  ### 1. Task Decomposition
9
9
  ```
10
- Tool: mcp__ruv-swarm__task_orchestrate
10
+ Tool: mcp__claude-flow__task_orchestrate
11
11
  Parameters: {
12
12
  "task": "Build complete REST API with auth, CRUD operations, and tests",
13
13
  "strategy": "parallel",
@@ -37,7 +37,7 @@ For the REST API task:
37
37
 
38
38
  ## Monitoring
39
39
  ```
40
- Tool: mcp__ruv-swarm__swarm_monitor
40
+ Tool: mcp__claude-flow__swarm_monitor
41
41
  Parameters: {"interval": 1, "duration": 10}
42
42
  ```
43
43
 
@@ -14,7 +14,7 @@ Every successful operation trains the neural networks:
14
14
 
15
15
  ### 2. Manual Training
16
16
  ```
17
- Tool: mcp__ruv-swarm__neural_train
17
+ Tool: mcp__claude-flow__neural_train
18
18
  Parameters: {"iterations": 20}
19
19
  ```
20
20
 
@@ -30,7 +30,7 @@ Parameters: {"iterations": 20}
30
30
 
31
31
  ### 4. Improvement Tracking
32
32
  ```
33
- Tool: mcp__ruv-swarm__neural_status
33
+ Tool: mcp__claude-flow__neural_status
34
34
  Result: {
35
35
  "patterns": {
36
36
  "convergent": 0.92,
@@ -14,7 +14,7 @@ Agents automatically specialize based on file extensions:
14
14
 
15
15
  ### 2. By Task Type
16
16
  ```
17
- Tool: mcp__ruv-swarm__agent_spawn
17
+ Tool: mcp__claude-flow__agent_spawn
18
18
  Parameters: {
19
19
  "type": "coder",
20
20
  "capabilities": ["react", "typescript", "testing"]
@@ -31,7 +31,7 @@ The system trains through:
31
31
  ### 4. Specialization Benefits
32
32
  ```
33
33
  # Check agent specializations
34
- Tool: mcp__ruv-swarm__agent_list
34
+ Tool: mcp__claude-flow__agent_list
35
35
  Parameters: {"filter": "active"}
36
36
 
37
37
  Result shows expertise levels:
@@ -7,25 +7,25 @@ Structure Claude Code's approach to complex development tasks for maximum effici
7
7
 
8
8
  ### 1. Initialize Development Framework
9
9
  ```
10
- Tool: mcp__ruv-swarm__swarm_init
10
+ Tool: mcp__claude-flow__swarm_init
11
11
  Parameters: {"topology": "hierarchical", "maxAgents": 8, "strategy": "specialized"}
12
12
  ```
13
13
  Creates hierarchical structure for organized, top-down development.
14
14
 
15
15
  ### 2. Define Development Perspectives
16
16
  ```
17
- Tool: mcp__ruv-swarm__agent_spawn
17
+ Tool: mcp__claude-flow__agent_spawn
18
18
  Parameters: {"type": "architect", "name": "System Design"}
19
19
  ```
20
20
  ```
21
- Tool: mcp__ruv-swarm__agent_spawn
21
+ Tool: mcp__claude-flow__agent_spawn
22
22
  Parameters: {"type": "coder", "name": "Implementation Focus"}
23
23
  ```
24
24
  Sets up architectural and implementation thinking patterns.
25
25
 
26
26
  ### 3. Coordinate Implementation
27
27
  ```
28
- Tool: mcp__ruv-swarm__task_orchestrate
28
+ Tool: mcp__claude-flow__task_orchestrate
29
29
  Parameters: {"task": "Build REST API with authentication", "strategy": "parallel", "priority": "high"}
30
30
  ```
31
31
 
@@ -7,25 +7,25 @@ Coordinate Claude Code's research activities for comprehensive, systematic explo
7
7
 
8
8
  ### 1. Initialize Research Framework
9
9
  ```
10
- Tool: mcp__ruv-swarm__swarm_init
10
+ Tool: mcp__claude-flow__swarm_init
11
11
  Parameters: {"topology": "mesh", "maxAgents": 5, "strategy": "balanced"}
12
12
  ```
13
13
  Creates a mesh topology for comprehensive exploration from multiple angles.
14
14
 
15
15
  ### 2. Define Research Perspectives
16
16
  ```
17
- Tool: mcp__ruv-swarm__agent_spawn
17
+ Tool: mcp__claude-flow__agent_spawn
18
18
  Parameters: {"type": "researcher", "name": "Literature Review"}
19
19
  ```
20
20
  ```
21
- Tool: mcp__ruv-swarm__agent_spawn
21
+ Tool: mcp__claude-flow__agent_spawn
22
22
  Parameters: {"type": "analyst", "name": "Data Analysis"}
23
23
  ```
24
24
  Sets up different analytical approaches for Claude Code to use.
25
25
 
26
26
  ### 3. Execute Coordinated Research
27
27
  ```
28
- Tool: mcp__ruv-swarm__task_orchestrate
28
+ Tool: mcp__claude-flow__task_orchestrate
29
29
  Parameters: {"task": "Research modern web frameworks performance", "strategy": "adaptive"}
30
30
  ```
31
31