@claude-flow/cli 3.32.26 → 3.32.30

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 (403) hide show
  1. package/.claude/helpers/.helpers-version +1 -1
  2. package/.claude/helpers/helpers.manifest.json +2 -2
  3. package/catalog-manifest.json +4 -4
  4. package/dist/src/commands/index.d.ts +1 -0
  5. package/dist/src/commands/index.js +5 -3
  6. package/dist/src/commands/memory.js +49 -5
  7. package/dist/src/commands/metaharness.js +25 -5
  8. package/dist/src/commands/policy.d.ts +4 -0
  9. package/dist/src/commands/policy.js +107 -0
  10. package/dist/src/index.js +18 -0
  11. package/dist/src/init/claudemd-generator.js +53 -2
  12. package/dist/src/mcp-client.js +25 -1
  13. package/dist/src/mcp-tools/capability-brain.d.ts +134 -0
  14. package/dist/src/mcp-tools/capability-brain.js +697 -0
  15. package/dist/src/mcp-tools/guidance-tools.d.ts +2 -0
  16. package/dist/src/mcp-tools/guidance-tools.js +369 -37
  17. package/dist/src/mcp-tools/index.d.ts +4 -1
  18. package/dist/src/mcp-tools/index.js +3 -1
  19. package/dist/src/mcp-tools/memory-tools.js +26 -0
  20. package/dist/src/mcp-tools/metaharness-tools.js +27 -1
  21. package/dist/src/mcp-tools/policy-tools.d.ts +3 -0
  22. package/dist/src/mcp-tools/policy-tools.js +121 -0
  23. package/dist/src/memory/memory-bridge.d.ts +11 -0
  24. package/dist/src/memory/memory-bridge.js +100 -21
  25. package/dist/src/memory/memory-initializer.d.ts +22 -1
  26. package/dist/src/memory/memory-initializer.js +184 -39
  27. package/dist/src/services/bounded-worker-pool.d.ts +28 -0
  28. package/dist/src/services/bounded-worker-pool.js +90 -0
  29. package/dist/src/services/harness-flywheel-runtime.d.ts +2 -0
  30. package/dist/src/services/harness-flywheel-runtime.js +18 -0
  31. package/dist/src/services/harness-flywheel.d.ts +4 -1
  32. package/dist/src/services/harness-flywheel.js +27 -6
  33. package/dist/src/services/policy-runtime.d.ts +38 -0
  34. package/dist/src/services/policy-runtime.js +340 -0
  35. package/node_modules/@claude-flow/codex/.agents/skills/memory-management/SKILL.md +45 -0
  36. package/node_modules/@claude-flow/codex/.agents/skills/security-audit/SKILL.md +46 -0
  37. package/node_modules/@claude-flow/codex/.agents/skills/sparc-methodology/SKILL.md +46 -0
  38. package/node_modules/@claude-flow/codex/.agents/skills/swarm-orchestration/SKILL.md +53 -0
  39. package/node_modules/@claude-flow/codex/README.md +1044 -0
  40. package/node_modules/@claude-flow/codex/dist/cli.d.ts +9 -0
  41. package/node_modules/@claude-flow/codex/dist/cli.d.ts.map +1 -0
  42. package/node_modules/@claude-flow/codex/dist/cli.js +686 -0
  43. package/node_modules/@claude-flow/codex/dist/cli.js.map +1 -0
  44. package/node_modules/@claude-flow/codex/dist/dual-mode/cli.d.ts +17 -0
  45. package/node_modules/@claude-flow/codex/dist/dual-mode/cli.d.ts.map +1 -0
  46. package/node_modules/@claude-flow/codex/dist/dual-mode/cli.js +278 -0
  47. package/node_modules/@claude-flow/codex/dist/dual-mode/cli.js.map +1 -0
  48. package/node_modules/@claude-flow/codex/dist/dual-mode/index.d.ts +8 -0
  49. package/node_modules/@claude-flow/codex/dist/dual-mode/index.d.ts.map +1 -0
  50. package/node_modules/@claude-flow/codex/dist/dual-mode/index.js +7 -0
  51. package/node_modules/@claude-flow/codex/dist/dual-mode/index.js.map +1 -0
  52. package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.d.ts +143 -0
  53. package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.d.ts.map +1 -0
  54. package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.js +621 -0
  55. package/node_modules/@claude-flow/codex/dist/dual-mode/orchestrator.js.map +1 -0
  56. package/node_modules/@claude-flow/codex/dist/generators/agents-md.d.ts +12 -0
  57. package/node_modules/@claude-flow/codex/dist/generators/agents-md.d.ts.map +1 -0
  58. package/node_modules/@claude-flow/codex/dist/generators/agents-md.js +730 -0
  59. package/node_modules/@claude-flow/codex/dist/generators/agents-md.js.map +1 -0
  60. package/node_modules/@claude-flow/codex/dist/generators/config-toml.d.ts +74 -0
  61. package/node_modules/@claude-flow/codex/dist/generators/config-toml.d.ts.map +1 -0
  62. package/node_modules/@claude-flow/codex/dist/generators/config-toml.js +922 -0
  63. package/node_modules/@claude-flow/codex/dist/generators/config-toml.js.map +1 -0
  64. package/node_modules/@claude-flow/codex/dist/generators/index.d.ts +9 -0
  65. package/node_modules/@claude-flow/codex/dist/generators/index.d.ts.map +1 -0
  66. package/node_modules/@claude-flow/codex/dist/generators/index.js +9 -0
  67. package/node_modules/@claude-flow/codex/dist/generators/index.js.map +1 -0
  68. package/node_modules/@claude-flow/codex/dist/generators/skill-md.d.ts +20 -0
  69. package/node_modules/@claude-flow/codex/dist/generators/skill-md.d.ts.map +1 -0
  70. package/node_modules/@claude-flow/codex/dist/generators/skill-md.js +951 -0
  71. package/node_modules/@claude-flow/codex/dist/generators/skill-md.js.map +1 -0
  72. package/node_modules/@claude-flow/codex/dist/harness/build-evidence.d.ts +46 -0
  73. package/node_modules/@claude-flow/codex/dist/harness/build-evidence.d.ts.map +1 -0
  74. package/node_modules/@claude-flow/codex/dist/harness/build-evidence.js +126 -0
  75. package/node_modules/@claude-flow/codex/dist/harness/build-evidence.js.map +1 -0
  76. package/node_modules/@claude-flow/codex/dist/harness/contract.d.ts +153 -0
  77. package/node_modules/@claude-flow/codex/dist/harness/contract.d.ts.map +1 -0
  78. package/node_modules/@claude-flow/codex/dist/harness/contract.js +44 -0
  79. package/node_modules/@claude-flow/codex/dist/harness/contract.js.map +1 -0
  80. package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.d.ts +33 -0
  81. package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.d.ts.map +1 -0
  82. package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.js +175 -0
  83. package/node_modules/@claude-flow/codex/dist/harness/in-memory-fenced-lease-reference.js.map +1 -0
  84. package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.d.ts +42 -0
  85. package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.d.ts.map +1 -0
  86. package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.js +140 -0
  87. package/node_modules/@claude-flow/codex/dist/harness/in-memory-inbox-reference.js.map +1 -0
  88. package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.d.ts +19 -0
  89. package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.d.ts.map +1 -0
  90. package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.js +79 -0
  91. package/node_modules/@claude-flow/codex/dist/harness/in-memory-run-receipt-reference.js.map +1 -0
  92. package/node_modules/@claude-flow/codex/dist/harness/index.d.ts +9 -0
  93. package/node_modules/@claude-flow/codex/dist/harness/index.d.ts.map +1 -0
  94. package/node_modules/@claude-flow/codex/dist/harness/index.js +9 -0
  95. package/node_modules/@claude-flow/codex/dist/harness/index.js.map +1 -0
  96. package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.d.ts +8 -0
  97. package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.d.ts.map +1 -0
  98. package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.js +10 -0
  99. package/node_modules/@claude-flow/codex/dist/harness/portable-case-fold.js.map +1 -0
  100. package/node_modules/@claude-flow/codex/dist/harness/repository-state.d.ts +68 -0
  101. package/node_modules/@claude-flow/codex/dist/harness/repository-state.d.ts.map +1 -0
  102. package/node_modules/@claude-flow/codex/dist/harness/repository-state.js +403 -0
  103. package/node_modules/@claude-flow/codex/dist/harness/repository-state.js.map +1 -0
  104. package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.d.ts +3 -0
  105. package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.d.ts.map +1 -0
  106. package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.js +14 -0
  107. package/node_modules/@claude-flow/codex/dist/harness/unsigned-integer.js.map +1 -0
  108. package/node_modules/@claude-flow/codex/dist/index.d.ts +53 -0
  109. package/node_modules/@claude-flow/codex/dist/index.d.ts.map +1 -0
  110. package/node_modules/@claude-flow/codex/dist/index.js +54 -0
  111. package/node_modules/@claude-flow/codex/dist/index.js.map +1 -0
  112. package/node_modules/@claude-flow/codex/dist/initializer.d.ts +98 -0
  113. package/node_modules/@claude-flow/codex/dist/initializer.d.ts.map +1 -0
  114. package/node_modules/@claude-flow/codex/dist/initializer.js +795 -0
  115. package/node_modules/@claude-flow/codex/dist/initializer.js.map +1 -0
  116. package/node_modules/@claude-flow/codex/dist/loop/cli.d.ts +3 -0
  117. package/node_modules/@claude-flow/codex/dist/loop/cli.d.ts.map +1 -0
  118. package/node_modules/@claude-flow/codex/dist/loop/cli.js +123 -0
  119. package/node_modules/@claude-flow/codex/dist/loop/cli.js.map +1 -0
  120. package/node_modules/@claude-flow/codex/dist/loop/index.d.ts +58 -0
  121. package/node_modules/@claude-flow/codex/dist/loop/index.d.ts.map +1 -0
  122. package/node_modules/@claude-flow/codex/dist/loop/index.js +230 -0
  123. package/node_modules/@claude-flow/codex/dist/loop/index.js.map +1 -0
  124. package/node_modules/@claude-flow/codex/dist/mcp-config.d.ts +28 -0
  125. package/node_modules/@claude-flow/codex/dist/mcp-config.d.ts.map +1 -0
  126. package/node_modules/@claude-flow/codex/dist/mcp-config.js +121 -0
  127. package/node_modules/@claude-flow/codex/dist/mcp-config.js.map +1 -0
  128. package/node_modules/@claude-flow/codex/dist/migrations/index.d.ts +114 -0
  129. package/node_modules/@claude-flow/codex/dist/migrations/index.d.ts.map +1 -0
  130. package/node_modules/@claude-flow/codex/dist/migrations/index.js +880 -0
  131. package/node_modules/@claude-flow/codex/dist/migrations/index.js.map +1 -0
  132. package/node_modules/@claude-flow/codex/dist/templates/index.d.ts +92 -0
  133. package/node_modules/@claude-flow/codex/dist/templates/index.d.ts.map +1 -0
  134. package/node_modules/@claude-flow/codex/dist/templates/index.js +284 -0
  135. package/node_modules/@claude-flow/codex/dist/templates/index.js.map +1 -0
  136. package/node_modules/@claude-flow/codex/dist/types.d.ts +240 -0
  137. package/node_modules/@claude-flow/codex/dist/types.d.ts.map +1 -0
  138. package/node_modules/@claude-flow/codex/dist/types.js +8 -0
  139. package/node_modules/@claude-flow/codex/dist/types.js.map +1 -0
  140. package/node_modules/@claude-flow/codex/dist/validators/index.d.ts +42 -0
  141. package/node_modules/@claude-flow/codex/dist/validators/index.d.ts.map +1 -0
  142. package/node_modules/@claude-flow/codex/dist/validators/index.js +929 -0
  143. package/node_modules/@claude-flow/codex/dist/validators/index.js.map +1 -0
  144. package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.d.ts +37 -0
  145. package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.d.ts.map +1 -0
  146. package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.js +137 -0
  147. package/node_modules/@claude-flow/codex/dist/worktrees/coordinator.js.map +1 -0
  148. package/node_modules/@claude-flow/codex/dist/worktrees/index.d.ts +2 -0
  149. package/node_modules/@claude-flow/codex/dist/worktrees/index.d.ts.map +1 -0
  150. package/node_modules/@claude-flow/codex/dist/worktrees/index.js +2 -0
  151. package/node_modules/@claude-flow/codex/dist/worktrees/index.js.map +1 -0
  152. package/node_modules/@claude-flow/codex/package.json +122 -0
  153. package/node_modules/@claude-flow/plugin-agent-federation/README.md +49 -0
  154. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.d.ts +130 -0
  155. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.d.ts.map +1 -0
  156. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.js +239 -0
  157. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/agent-card.js.map +1 -0
  158. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.d.ts +34 -0
  159. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.d.ts.map +1 -0
  160. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.js +69 -0
  161. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/consume.js.map +1 -0
  162. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.d.ts +46 -0
  163. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.d.ts.map +1 -0
  164. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.js +84 -0
  165. package/node_modules/@claude-flow/plugin-agent-federation/dist/a2a/well-known.js.map +1 -0
  166. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.d.ts +27 -0
  167. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.d.ts.map +1 -0
  168. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.js +46 -0
  169. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/claim-checker.js.map +1 -0
  170. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.d.ts +192 -0
  171. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.d.ts.map +1 -0
  172. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.js +253 -0
  173. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-breaker-service.js.map +1 -0
  174. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.d.ts +211 -0
  175. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.d.ts.map +1 -0
  176. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.js +501 -0
  177. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/federation-coordinator.js.map +1 -0
  178. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.d.ts +114 -0
  179. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.d.ts.map +1 -0
  180. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.js +356 -0
  181. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/inbound-dispatcher.js.map +1 -0
  182. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.d.ts +41 -0
  183. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.d.ts.map +1 -0
  184. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.js +184 -0
  185. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/policy-engine.js.map +1 -0
  186. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.d.ts +150 -0
  187. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.d.ts.map +1 -0
  188. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.js +128 -0
  189. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/spend-reporter.js.map +1 -0
  190. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.d.ts +74 -0
  191. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.d.ts.map +1 -0
  192. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.js +179 -0
  193. package/node_modules/@claude-flow/plugin-agent-federation/dist/application/trust-evaluator.js.map +1 -0
  194. package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.d.ts +13 -0
  195. package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.d.ts.map +1 -0
  196. package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.js +189 -0
  197. package/node_modules/@claude-flow/plugin-agent-federation/dist/bin.js.map +1 -0
  198. package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.d.ts +7 -0
  199. package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.d.ts.map +1 -0
  200. package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.js +317 -0
  201. package/node_modules/@claude-flow/plugin-agent-federation/dist/cli-commands.js.map +1 -0
  202. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.d.ts +45 -0
  203. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.d.ts.map +1 -0
  204. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.js +71 -0
  205. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-envelope.js.map +1 -0
  206. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.d.ts +104 -0
  207. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.d.ts.map +1 -0
  208. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.js +152 -0
  209. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-node.js.map +1 -0
  210. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.d.ts +55 -0
  211. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.d.ts.map +1 -0
  212. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.js +105 -0
  213. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/federation-session.js.map +1 -0
  214. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.d.ts +17 -0
  215. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.d.ts.map +1 -0
  216. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.js +35 -0
  217. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/entities/trust-level.js.map +1 -0
  218. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.d.ts +69 -0
  219. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.d.ts.map +1 -0
  220. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.js +149 -0
  221. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/audit-service.js.map +1 -0
  222. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.d.ts +68 -0
  223. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.d.ts.map +1 -0
  224. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.js +161 -0
  225. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/discovery-service.js.map +1 -0
  226. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.d.ts +58 -0
  227. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.d.ts.map +1 -0
  228. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.js +122 -0
  229. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/handshake-service.js.map +1 -0
  230. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.d.ts +65 -0
  231. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.d.ts.map +1 -0
  232. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.js +208 -0
  233. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/pii-pipeline-service.js.map +1 -0
  234. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.d.ts +51 -0
  235. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.d.ts.map +1 -0
  236. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.js +147 -0
  237. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/routing-service.js.map +1 -0
  238. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.d.ts +71 -0
  239. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.d.ts.map +1 -0
  240. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.js +194 -0
  241. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-firewall-service.js.map +1 -0
  242. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.d.ts +156 -0
  243. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.d.ts.map +1 -0
  244. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.js +292 -0
  245. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-mesh-service.js.map +1 -0
  246. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.d.ts +98 -0
  247. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.d.ts.map +1 -0
  248. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.js +122 -0
  249. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/services/wg-witness-service.js.map +1 -0
  250. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.d.ts +89 -0
  251. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.d.ts.map +1 -0
  252. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.js +165 -0
  253. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-budget.js.map +1 -0
  254. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.d.ts +92 -0
  255. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.d.ts.map +1 -0
  256. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.js +100 -0
  257. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/federation-node-state.js.map +1 -0
  258. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.d.ts +70 -0
  259. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.d.ts.map +1 -0
  260. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.js +104 -0
  261. package/node_modules/@claude-flow/plugin-agent-federation/dist/domain/value-objects/wg-config.js.map +1 -0
  262. package/node_modules/@claude-flow/plugin-agent-federation/dist/index.d.ts +23 -0
  263. package/node_modules/@claude-flow/plugin-agent-federation/dist/index.d.ts.map +1 -0
  264. package/node_modules/@claude-flow/plugin-agent-federation/dist/index.js +24 -0
  265. package/node_modules/@claude-flow/plugin-agent-federation/dist/index.js.map +1 -0
  266. package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.d.ts +10 -0
  267. package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.d.ts.map +1 -0
  268. package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.js +439 -0
  269. package/node_modules/@claude-flow/plugin-agent-federation/dist/mcp-tools.js.map +1 -0
  270. package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.d.ts +19 -0
  271. package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.d.ts.map +1 -0
  272. package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.js +515 -0
  273. package/node_modules/@claude-flow/plugin-agent-federation/dist/plugin.js.map +1 -0
  274. package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.d.ts +72 -0
  275. package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.d.ts.map +1 -0
  276. package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.js +269 -0
  277. package/node_modules/@claude-flow/plugin-agent-federation/dist/transport/midstream-aware-loader.js.map +1 -0
  278. package/node_modules/@claude-flow/plugin-agent-federation/dist/version.d.ts +3 -0
  279. package/node_modules/@claude-flow/plugin-agent-federation/dist/version.d.ts.map +1 -0
  280. package/node_modules/@claude-flow/plugin-agent-federation/dist/version.js +3 -0
  281. package/node_modules/@claude-flow/plugin-agent-federation/dist/version.js.map +1 -0
  282. package/node_modules/@claude-flow/plugin-agent-federation/package.json +64 -0
  283. package/node_modules/@claude-flow/security/README.md +292 -0
  284. package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.d.ts +97 -0
  285. package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.d.ts.map +1 -0
  286. package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.js +537 -0
  287. package/node_modules/@claude-flow/security/dist/CVE-REMEDIATION.js.map +1 -0
  288. package/node_modules/@claude-flow/security/dist/application/index.d.ts +7 -0
  289. package/node_modules/@claude-flow/security/dist/application/index.d.ts.map +1 -0
  290. package/node_modules/@claude-flow/security/dist/application/index.js +7 -0
  291. package/node_modules/@claude-flow/security/dist/application/index.js.map +1 -0
  292. package/node_modules/@claude-flow/security/dist/application/services/security-application-service.d.ts +71 -0
  293. package/node_modules/@claude-flow/security/dist/application/services/security-application-service.d.ts.map +1 -0
  294. package/node_modules/@claude-flow/security/dist/application/services/security-application-service.js +153 -0
  295. package/node_modules/@claude-flow/security/dist/application/services/security-application-service.js.map +1 -0
  296. package/node_modules/@claude-flow/security/dist/authorization/propagator.d.ts +148 -0
  297. package/node_modules/@claude-flow/security/dist/authorization/propagator.d.ts.map +1 -0
  298. package/node_modules/@claude-flow/security/dist/authorization/propagator.js +182 -0
  299. package/node_modules/@claude-flow/security/dist/authorization/propagator.js.map +1 -0
  300. package/node_modules/@claude-flow/security/dist/credential-generator.d.ts +176 -0
  301. package/node_modules/@claude-flow/security/dist/credential-generator.d.ts.map +1 -0
  302. package/node_modules/@claude-flow/security/dist/credential-generator.js +272 -0
  303. package/node_modules/@claude-flow/security/dist/credential-generator.js.map +1 -0
  304. package/node_modules/@claude-flow/security/dist/domain/entities/security-context.d.ts +68 -0
  305. package/node_modules/@claude-flow/security/dist/domain/entities/security-context.d.ts.map +1 -0
  306. package/node_modules/@claude-flow/security/dist/domain/entities/security-context.js +132 -0
  307. package/node_modules/@claude-flow/security/dist/domain/entities/security-context.js.map +1 -0
  308. package/node_modules/@claude-flow/security/dist/domain/index.d.ts +8 -0
  309. package/node_modules/@claude-flow/security/dist/domain/index.d.ts.map +1 -0
  310. package/node_modules/@claude-flow/security/dist/domain/index.js +8 -0
  311. package/node_modules/@claude-flow/security/dist/domain/index.js.map +1 -0
  312. package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.d.ts +71 -0
  313. package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.d.ts.map +1 -0
  314. package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.js +237 -0
  315. package/node_modules/@claude-flow/security/dist/domain/services/security-domain-service.js.map +1 -0
  316. package/node_modules/@claude-flow/security/dist/index.d.ts +129 -0
  317. package/node_modules/@claude-flow/security/dist/index.d.ts.map +1 -0
  318. package/node_modules/@claude-flow/security/dist/index.js +176 -0
  319. package/node_modules/@claude-flow/security/dist/index.js.map +1 -0
  320. package/node_modules/@claude-flow/security/dist/input-validator.d.ts +306 -0
  321. package/node_modules/@claude-flow/security/dist/input-validator.d.ts.map +1 -0
  322. package/node_modules/@claude-flow/security/dist/input-validator.js +393 -0
  323. package/node_modules/@claude-flow/security/dist/input-validator.js.map +1 -0
  324. package/node_modules/@claude-flow/security/dist/keychain-adapter.d.ts +48 -0
  325. package/node_modules/@claude-flow/security/dist/keychain-adapter.d.ts.map +1 -0
  326. package/node_modules/@claude-flow/security/dist/keychain-adapter.js +0 -0
  327. package/node_modules/@claude-flow/security/dist/keychain-adapter.js.map +1 -0
  328. package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.d.ts +133 -0
  329. package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.d.ts.map +1 -0
  330. package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.js +254 -0
  331. package/node_modules/@claude-flow/security/dist/mcp-composition-inspector.js.map +1 -0
  332. package/node_modules/@claude-flow/security/dist/oauth/browser.d.ts +31 -0
  333. package/node_modules/@claude-flow/security/dist/oauth/browser.d.ts.map +1 -0
  334. package/node_modules/@claude-flow/security/dist/oauth/browser.js +55 -0
  335. package/node_modules/@claude-flow/security/dist/oauth/browser.js.map +1 -0
  336. package/node_modules/@claude-flow/security/dist/oauth/callback-server.d.ts +37 -0
  337. package/node_modules/@claude-flow/security/dist/oauth/callback-server.d.ts.map +1 -0
  338. package/node_modules/@claude-flow/security/dist/oauth/callback-server.js +86 -0
  339. package/node_modules/@claude-flow/security/dist/oauth/callback-server.js.map +1 -0
  340. package/node_modules/@claude-flow/security/dist/oauth/client.d.ts +57 -0
  341. package/node_modules/@claude-flow/security/dist/oauth/client.d.ts.map +1 -0
  342. package/node_modules/@claude-flow/security/dist/oauth/client.js +120 -0
  343. package/node_modules/@claude-flow/security/dist/oauth/client.js.map +1 -0
  344. package/node_modules/@claude-flow/security/dist/oauth/pkce.d.ts +25 -0
  345. package/node_modules/@claude-flow/security/dist/oauth/pkce.d.ts.map +1 -0
  346. package/node_modules/@claude-flow/security/dist/oauth/pkce.js +36 -0
  347. package/node_modules/@claude-flow/security/dist/oauth/pkce.js.map +1 -0
  348. package/node_modules/@claude-flow/security/dist/password-hasher.d.ts +128 -0
  349. package/node_modules/@claude-flow/security/dist/password-hasher.d.ts.map +1 -0
  350. package/node_modules/@claude-flow/security/dist/password-hasher.js +190 -0
  351. package/node_modules/@claude-flow/security/dist/password-hasher.js.map +1 -0
  352. package/node_modules/@claude-flow/security/dist/path-validator.d.ts +148 -0
  353. package/node_modules/@claude-flow/security/dist/path-validator.d.ts.map +1 -0
  354. package/node_modules/@claude-flow/security/dist/path-validator.js +421 -0
  355. package/node_modules/@claude-flow/security/dist/path-validator.js.map +1 -0
  356. package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.d.ts +125 -0
  357. package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.d.ts.map +1 -0
  358. package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.js +186 -0
  359. package/node_modules/@claude-flow/security/dist/plugins/integrity-verifier.js.map +1 -0
  360. package/node_modules/@claude-flow/security/dist/policy/canonical.d.ts +5 -0
  361. package/node_modules/@claude-flow/security/dist/policy/canonical.d.ts.map +1 -0
  362. package/node_modules/@claude-flow/security/dist/policy/canonical.js +30 -0
  363. package/node_modules/@claude-flow/security/dist/policy/canonical.js.map +1 -0
  364. package/node_modules/@claude-flow/security/dist/policy/engine.d.ts +34 -0
  365. package/node_modules/@claude-flow/security/dist/policy/engine.d.ts.map +1 -0
  366. package/node_modules/@claude-flow/security/dist/policy/engine.js +285 -0
  367. package/node_modules/@claude-flow/security/dist/policy/engine.js.map +1 -0
  368. package/node_modules/@claude-flow/security/dist/policy/envelope.d.ts +9 -0
  369. package/node_modules/@claude-flow/security/dist/policy/envelope.d.ts.map +1 -0
  370. package/node_modules/@claude-flow/security/dist/policy/envelope.js +90 -0
  371. package/node_modules/@claude-flow/security/dist/policy/envelope.js.map +1 -0
  372. package/node_modules/@claude-flow/security/dist/policy/evaluator.d.ts +4 -0
  373. package/node_modules/@claude-flow/security/dist/policy/evaluator.d.ts.map +1 -0
  374. package/node_modules/@claude-flow/security/dist/policy/evaluator.js +119 -0
  375. package/node_modules/@claude-flow/security/dist/policy/evaluator.js.map +1 -0
  376. package/node_modules/@claude-flow/security/dist/policy/index.d.ts +7 -0
  377. package/node_modules/@claude-flow/security/dist/policy/index.d.ts.map +1 -0
  378. package/node_modules/@claude-flow/security/dist/policy/index.js +7 -0
  379. package/node_modules/@claude-flow/security/dist/policy/index.js.map +1 -0
  380. package/node_modules/@claude-flow/security/dist/policy/product-plane.d.ts +238 -0
  381. package/node_modules/@claude-flow/security/dist/policy/product-plane.d.ts.map +1 -0
  382. package/node_modules/@claude-flow/security/dist/policy/product-plane.js +1022 -0
  383. package/node_modules/@claude-flow/security/dist/policy/product-plane.js.map +1 -0
  384. package/node_modules/@claude-flow/security/dist/policy/types.d.ts +169 -0
  385. package/node_modules/@claude-flow/security/dist/policy/types.d.ts.map +1 -0
  386. package/node_modules/@claude-flow/security/dist/policy/types.js +2 -0
  387. package/node_modules/@claude-flow/security/dist/policy/types.js.map +1 -0
  388. package/node_modules/@claude-flow/security/dist/safe-executor.d.ts +180 -0
  389. package/node_modules/@claude-flow/security/dist/safe-executor.d.ts.map +1 -0
  390. package/node_modules/@claude-flow/security/dist/safe-executor.js +390 -0
  391. package/node_modules/@claude-flow/security/dist/safe-executor.js.map +1 -0
  392. package/node_modules/@claude-flow/security/dist/token-generator.d.ts +224 -0
  393. package/node_modules/@claude-flow/security/dist/token-generator.d.ts.map +1 -0
  394. package/node_modules/@claude-flow/security/dist/token-generator.js +351 -0
  395. package/node_modules/@claude-flow/security/dist/token-generator.js.map +1 -0
  396. package/node_modules/@claude-flow/security/dist/tool-output-guardrail.d.ts +126 -0
  397. package/node_modules/@claude-flow/security/dist/tool-output-guardrail.d.ts.map +1 -0
  398. package/node_modules/@claude-flow/security/dist/tool-output-guardrail.js +257 -0
  399. package/node_modules/@claude-flow/security/dist/tool-output-guardrail.js.map +1 -0
  400. package/node_modules/@claude-flow/security/package.json +44 -0
  401. package/package.json +44 -12
  402. package/plugins/ruflo-metaharness/scripts/smoke.sh +22 -14
  403. package/plugins/ruflo-metaharness/scripts/test-mcp-tools.mjs +3 -1
@@ -0,0 +1,1044 @@
1
+ # @claude-flow/codex
2
+
3
+ <p align="center">
4
+ <strong>OpenAI Codex CLI Adapter for Claude Flow V3</strong><br/>
5
+ <em>Self-learning multi-agent orchestration following the <a href="https://agentics.org">Agentics Foundation</a> standard</em>
6
+ </p>
7
+
8
+ <p align="center">
9
+ <a href="https://www.npmjs.com/package/@claude-flow/codex"><img src="https://img.shields.io/npm/v/@claude-flow/codex?label=npm&color=blue" alt="npm version"></a>
10
+ <a href="https://www.npmjs.com/package/@claude-flow/codex"><img src="https://img.shields.io/npm/dm/@claude-flow/codex?label=downloads&color=cb3837" alt="npm downloads"></a>
11
+ <a href="https://github.com/ruvnet/ruflo"><img src="https://img.shields.io/badge/license-MIT-green" alt="license"></a>
12
+ <a href="https://agentics.org"><img src="https://img.shields.io/badge/standard-Agentics-purple" alt="Agentics Standard"></a>
13
+ </p>
14
+
15
+ ---
16
+
17
+ ## Why @claude-flow/codex?
18
+
19
+ Transform OpenAI Codex CLI into a **self-improving AI development system**. While Codex executes code, claude-flow orchestrates, coordinates, and **learns from every interaction**.
20
+
21
+ | Traditional Codex | With Claude-Flow |
22
+ |-------------------|------------------|
23
+ | Stateless execution | Persistent vector memory |
24
+ | Single-agent | Multi-agent swarms (up to 15) |
25
+ | Manual coordination | Automatic orchestration |
26
+ | No learning | Self-learning patterns (HNSW) |
27
+ | One platform | Dual-mode (Claude Code + Codex) |
28
+
29
+ ## Key Concept: Execution Model
30
+
31
+ ```
32
+ ┌─────────────────────────────────────────────────────────────────┐
33
+ │ CLAUDE-FLOW = ORCHESTRATOR (tracks state, stores memory) │
34
+ │ CODEX = EXECUTOR (writes code, runs commands, implements) │
35
+ └─────────────────────────────────────────────────────────────────┘
36
+ ```
37
+
38
+ **Codex does the work. Claude-flow coordinates and learns.**
39
+
40
+ ### The Self-Learning Loop
41
+
42
+ ```
43
+ ┌──────────────┐
44
+ │ SEARCH │ ──→ Find relevant patterns from past successes
45
+ │ memory │
46
+ └──────┬───────┘
47
+
48
+ ┌──────▼───────┐
49
+ │ COORDINATE │ ──→ Initialize swarm, spawn specialized agents
50
+ │ swarm │
51
+ └──────┬───────┘
52
+
53
+ ┌──────▼───────┐
54
+ │ EXECUTE │ ──→ Codex writes code, runs commands
55
+ │ codex │
56
+ └──────┬───────┘
57
+
58
+ ┌──────▼───────┐
59
+ │ STORE │ ──→ Save successful patterns for future use
60
+ │ memory │
61
+ └──────────────┘
62
+ ```
63
+
64
+ ## Quick Start
65
+
66
+ ```bash
67
+ # Initialize for Codex (recommended)
68
+ npx ruflo@latest init --codex
69
+
70
+ # Full setup with all 137+ skills
71
+ npx ruflo@latest init --codex --full
72
+
73
+ # Dual mode (both Claude Code and Codex)
74
+ npx ruflo@latest init --dual
75
+ ```
76
+
77
+ **That's it!** The MCP server is auto-registered, skills are installed, and your project is ready for self-learning development.
78
+
79
+ ---
80
+
81
+ <details>
82
+ <summary><b>Features</b></summary>
83
+
84
+ | Feature | Description |
85
+ |---------|-------------|
86
+ | **AGENTS.md Generation** | Creates project instructions for Codex |
87
+ | **MCP Integration** | Self-learning via memory and vector search |
88
+ | **137+ Skills** | Invoke with `$skill-name` syntax |
89
+ | **Vector Memory** | Semantic pattern search (384-dim embeddings) |
90
+ | **Dual Platform** | Supports both Claude Code and Codex |
91
+ | **Auto-Registration** | MCP server registered during init |
92
+ | **HNSW Search** | 150x-12,500x faster pattern matching |
93
+ | **Self-Learning** | Learn from successes, remember patterns |
94
+ | **GPT-5.3 Support** | Optimized for latest OpenAI models |
95
+ | **Neural Training** | Train patterns with SONA architecture |
96
+
97
+ </details>
98
+
99
+ ---
100
+
101
+ <details>
102
+ <summary><b>MCP Integration (Self-Learning)</b></summary>
103
+
104
+ ### Automatic Registration
105
+
106
+ When you run `init --codex`, the MCP server is **automatically registered** with Codex:
107
+
108
+ ```bash
109
+ # Verify MCP is registered
110
+ codex mcp list
111
+
112
+ # Expected output:
113
+ # Name Command Args Status
114
+ # claude-flow npx claude-flow mcp start enabled
115
+ ```
116
+
117
+ ### Manual Registration
118
+
119
+ If MCP is not present, add manually:
120
+
121
+ ```bash
122
+ codex mcp add claude-flow -- npx claude-flow mcp start
123
+ ```
124
+
125
+ ### MCP Tools Reference
126
+
127
+ | Tool | Purpose | When to Use |
128
+ |------|---------|-------------|
129
+ | `memory_search` | Semantic vector search | **BEFORE** starting any task |
130
+ | `memory_store` | Save patterns with embeddings | **AFTER** completing successfully |
131
+ | `swarm_init` | Initialize coordination | Start of complex tasks |
132
+ | `agent_spawn` | Register agent roles | Multi-agent workflows |
133
+ | `neural_train` | Train on patterns | Periodic improvement |
134
+
135
+ ### Tool Parameters
136
+
137
+ **memory_search**
138
+ ```json
139
+ {
140
+ "query": "search terms",
141
+ "namespace": "patterns",
142
+ "limit": 5
143
+ }
144
+ ```
145
+
146
+ **memory_store**
147
+ ```json
148
+ {
149
+ "key": "pattern-name",
150
+ "value": "what worked",
151
+ "namespace": "patterns",
152
+ "upsert": true
153
+ }
154
+ ```
155
+
156
+ **swarm_init**
157
+ ```json
158
+ {
159
+ "topology": "hierarchical",
160
+ "maxAgents": 5,
161
+ "strategy": "specialized"
162
+ }
163
+ ```
164
+
165
+ </details>
166
+
167
+ ---
168
+
169
+ <details>
170
+ <summary><b>Self-Learning Workflow</b></summary>
171
+
172
+ ### The 4-Step Pattern
173
+
174
+ ```
175
+ 1. LEARN: memory_search(query="task keywords") → Find similar patterns
176
+ 2. COORD: swarm_init(topology="hierarchical") → Set up coordination
177
+ 3. EXECUTE: YOU write code, run commands → Codex does real work
178
+ 4. REMEMBER: memory_store(key, value, upsert=true) → Save for future
179
+ ```
180
+
181
+ ### Complete Example Prompt
182
+
183
+ ```
184
+ Build an email validator using a learning-enabled swarm.
185
+
186
+ STEP 1 - LEARN (use MCP tool):
187
+ Use tool: memory_search
188
+ query: "validation utility function patterns"
189
+ namespace: "patterns"
190
+ If score > 0.7, use that pattern as reference.
191
+
192
+ STEP 2 - COORDINATE (use MCP tools):
193
+ Use tool: swarm_init with topology="hierarchical", maxAgents=3
194
+ Use tool: agent_spawn with type="coder", name="validator"
195
+
196
+ STEP 3 - EXECUTE (YOU do this - DON'T STOP HERE):
197
+ Create /tmp/validator/email.js with validateEmail() function
198
+ Create /tmp/validator/test.js with test cases
199
+ Run the tests
200
+
201
+ STEP 4 - REMEMBER (use MCP tool):
202
+ Use tool: memory_store
203
+ key: "pattern-email-validator"
204
+ value: "Email validation: regex, returns boolean, test cases"
205
+ namespace: "patterns"
206
+ upsert: true
207
+
208
+ YOU execute all code. MCP tools are for learning only.
209
+ ```
210
+
211
+ ### Similarity Score Guide
212
+
213
+ | Score | Meaning | Action |
214
+ |-------|---------|--------|
215
+ | > 0.7 | Strong match | Use the pattern directly |
216
+ | 0.5 - 0.7 | Partial match | Adapt and modify |
217
+ | < 0.5 | Weak match | Create new approach |
218
+
219
+ </details>
220
+
221
+ ---
222
+
223
+ <details>
224
+ <summary><b>Directory Structure</b></summary>
225
+
226
+ ```
227
+ project/
228
+ ├── AGENTS.md # Main project instructions (Codex format)
229
+ ├── .agents/
230
+ │ ├── config.toml # Project configuration
231
+ │ ├── skills/ # 137+ skills
232
+ │ │ ├── swarm-orchestration/
233
+ │ │ │ └── SKILL.md
234
+ │ │ ├── memory-management/
235
+ │ │ │ └── SKILL.md
236
+ │ │ ├── sparc-methodology/
237
+ │ │ │ └── SKILL.md
238
+ │ │ └── ...
239
+ │ └── README.md # Directory documentation
240
+ ├── .codex/ # Local overrides (gitignored)
241
+ │ ├── config.toml # Local development settings
242
+ │ └── AGENTS.override.md # Local instruction overrides
243
+ └── .claude-flow/ # Runtime data
244
+ ├── config.yaml # Runtime configuration
245
+ ├── data/ # Memory and cache
246
+ │ └── memory.db # SQLite with vector embeddings
247
+ └── logs/ # Log files
248
+ ```
249
+
250
+ ### Key Files
251
+
252
+ | File | Purpose |
253
+ |------|---------|
254
+ | `AGENTS.md` | Main instructions for Codex (required) |
255
+ | `.agents/config.toml` | Project-wide configuration |
256
+ | `.codex/config.toml` | Local overrides (gitignored) |
257
+ | `.claude-flow/data/memory.db` | Vector memory database |
258
+
259
+ </details>
260
+
261
+ ---
262
+
263
+ <details>
264
+ <summary><b>Templates</b></summary>
265
+
266
+ ### Available Templates
267
+
268
+ | Template | Skills | Learning | Best For |
269
+ |----------|--------|----------|----------|
270
+ | `minimal` | 2 | Basic | Quick prototypes |
271
+ | `default` | 4 | Yes | Standard projects |
272
+ | `full` | 137+ | Yes | Full-featured development |
273
+ | `enterprise` | 137+ | Advanced | Team environments |
274
+
275
+ ### Usage
276
+
277
+ ```bash
278
+ # Minimal (fastest init)
279
+ npx ruflo@latest init --codex --minimal
280
+
281
+ # Default
282
+ npx ruflo@latest init --codex
283
+
284
+ # Full (all skills)
285
+ npx ruflo@latest init --codex --full
286
+ ```
287
+
288
+ ### Template Contents
289
+
290
+ **Minimal:**
291
+ - Core swarm orchestration
292
+ - Basic memory management
293
+
294
+ **Default:**
295
+ - Swarm orchestration
296
+ - Memory management
297
+ - SPARC methodology
298
+ - Basic coding patterns
299
+
300
+ **Full:**
301
+ - All 137+ skills
302
+ - GitHub integration
303
+ - Security scanning
304
+ - Performance optimization
305
+ - AgentDB vector search
306
+ - Neural pattern training
307
+
308
+ </details>
309
+
310
+ ---
311
+
312
+ <details>
313
+ <summary><b>Platform Comparison (Claude Code vs Codex)</b></summary>
314
+
315
+ | Feature | Claude Code | OpenAI Codex |
316
+ |---------|-------------|--------------|
317
+ | Config File | `CLAUDE.md` | `AGENTS.md` |
318
+ | Skills Dir | `.claude/skills/` | `.agents/skills/` |
319
+ | Skill Syntax | `/skill-name` | `$skill-name` |
320
+ | Settings | `settings.json` | `config.toml` |
321
+ | MCP | Native | Via `codex mcp add` |
322
+ | Overrides | `.claude.local.md` | `.codex/config.toml` |
323
+
324
+ ### Dual Mode
325
+
326
+ Run `init --dual` to set up both platforms:
327
+
328
+ ```bash
329
+ npx ruflo@latest init --dual
330
+ ```
331
+
332
+ This creates:
333
+ - `CLAUDE.md` for Claude Code users
334
+ - `AGENTS.md` for Codex users
335
+ - Shared `.claude-flow/` runtime
336
+ - Cross-compatible skills
337
+
338
+ </details>
339
+
340
+ ---
341
+
342
+ <details>
343
+ <summary><b>Skill Invocation</b></summary>
344
+
345
+ ### Syntax
346
+
347
+ In OpenAI Codex CLI, invoke skills with `$` prefix:
348
+
349
+ ```
350
+ $swarm-orchestration
351
+ $memory-management
352
+ $sparc-methodology
353
+ $security-audit
354
+ $agent-coder
355
+ $agent-tester
356
+ $github-workflow
357
+ $performance-optimization
358
+ ```
359
+
360
+ ### Complete Skills Table (137+ Skills)
361
+
362
+ #### V3 Core Skills
363
+
364
+ | Skill | Syntax | Description |
365
+ |-------|--------|-------------|
366
+ | V3 Security Overhaul | `$v3-security-overhaul` | Complete security architecture with CVE remediation |
367
+ | V3 Memory Unification | `$v3-memory-unification` | Unify 6+ memory systems into AgentDB with HNSW |
368
+ | V3 Integration Deep | `$v3-integration-deep` | Deep agentic-flow integration (ADR-001) |
369
+ | V3 Performance Optimization | `$v3-performance-optimization` | Achieve 2.49x-7.47x speedup targets |
370
+ | V3 Swarm Coordination | `$v3-swarm-coordination` | 15-agent hierarchical mesh coordination |
371
+ | V3 DDD Architecture | `$v3-ddd-architecture` | Domain-Driven Design architecture |
372
+ | V3 Core Implementation | `$v3-core-implementation` | Core module implementation |
373
+ | V3 MCP Optimization | `$v3-mcp-optimization` | MCP server optimization and transport |
374
+ | V3 CLI Modernization | `$v3-cli-modernization` | CLI modernization and hooks enhancement |
375
+
376
+ #### AgentDB & Memory Skills
377
+
378
+ | Skill | Syntax | Description |
379
+ |-------|--------|-------------|
380
+ | AgentDB Advanced | `$agentdb-advanced` | Advanced QUIC sync, distributed coordination |
381
+ | AgentDB Memory Patterns | `$agentdb-memory-patterns` | Persistent memory patterns for AI agents |
382
+ | AgentDB Learning | `$agentdb-learning` | AI learning plugins with AgentDB |
383
+ | AgentDB Optimization | `$agentdb-optimization` | Quantization (4-32bit), performance tuning |
384
+ | AgentDB Vector Search | `$agentdb-vector-search` | Semantic vector search with HNSW |
385
+ | ReasoningBank AgentDB | `$reasoningbank-agentdb` | ReasoningBank with AgentDB integration |
386
+ | ReasoningBank Intelligence | `$reasoningbank-intelligence` | Adaptive learning with ReasoningBank |
387
+
388
+ #### Swarm & Coordination Skills
389
+
390
+ | Skill | Syntax | Description |
391
+ |-------|--------|-------------|
392
+ | Swarm Orchestration | `$swarm-orchestration` | Multi-agent swarms with agentic-flow |
393
+ | Swarm Advanced | `$swarm-advanced` | Advanced swarm patterns for research/analysis |
394
+ | Hive Mind Advanced | `$hive-mind-advanced` | Collective intelligence system |
395
+ | Stream Chain | `$stream-chain` | Stream-JSON chaining for multi-agent pipelines |
396
+ | Worker Integration | `$worker-integration` | Background worker integration |
397
+ | Worker Benchmarks | `$worker-benchmarks` | Worker performance benchmarks |
398
+
399
+ #### GitHub Integration Skills
400
+
401
+ | Skill | Syntax | Description |
402
+ |-------|--------|-------------|
403
+ | GitHub Code Review | `$github-code-review` | AI-powered code review swarms |
404
+ | GitHub Project Management | `$github-project-management` | Swarm-coordinated project management |
405
+ | GitHub Multi-Repo | `$github-multi-repo` | Multi-repository coordination |
406
+ | GitHub Release Management | `$github-release-management` | Release orchestration with AI swarms |
407
+ | GitHub Workflow Automation | `$github-workflow-automation` | GitHub Actions automation |
408
+
409
+ #### SPARC Methodology Skills (30+)
410
+
411
+ | Skill | Syntax | Description |
412
+ |-------|--------|-------------|
413
+ | SPARC Methodology | `$sparc-methodology` | Full SPARC workflow orchestration |
414
+ | SPARC Specification | `$sparc:spec-pseudocode` | Capture full project context |
415
+ | SPARC Architecture | `$sparc:architect` | System architecture design |
416
+ | SPARC Coder | `$sparc:coder` | Clean, efficient code generation |
417
+ | SPARC Tester | `$sparc:tester` | Comprehensive testing |
418
+ | SPARC Reviewer | `$sparc:reviewer` | Code review and quality |
419
+ | SPARC Debugger | `$sparc:debugger` | Runtime bug troubleshooting |
420
+ | SPARC Optimizer | `$sparc:optimizer` | Refactor and modularize |
421
+ | SPARC Documenter | `$sparc:documenter` | Documentation generation |
422
+ | SPARC DevOps | `$sparc:devops` | DevOps automation |
423
+ | SPARC Security Review | `$sparc:security-review` | Static/dynamic security analysis |
424
+ | SPARC Integration | `$sparc:integration` | System integration |
425
+ | SPARC MCP | `$sparc:mcp` | MCP integration management |
426
+
427
+ #### Flow Nexus Skills
428
+
429
+ | Skill | Syntax | Description |
430
+ |-------|--------|-------------|
431
+ | Flow Nexus Neural | `$flow-nexus-neural` | Neural network training in E2B sandboxes |
432
+ | Flow Nexus Platform | `$flow-nexus-platform` | Platform management and authentication |
433
+ | Flow Nexus Swarm | `$flow-nexus-swarm` | Cloud-based AI swarm deployment |
434
+ | Flow Nexus Payments | `$flow-nexus:payments` | Credit management and billing |
435
+ | Flow Nexus Challenges | `$flow-nexus:challenges` | Coding challenges and achievements |
436
+ | Flow Nexus Sandbox | `$flow-nexus:sandbox` | E2B sandbox management |
437
+ | Flow Nexus App Store | `$flow-nexus:app-store` | App publishing and deployment |
438
+ | Flow Nexus Workflow | `$flow-nexus:workflow` | Event-driven workflow automation |
439
+
440
+ #### Development Skills
441
+
442
+ | Skill | Syntax | Description |
443
+ |-------|--------|-------------|
444
+ | Pair Programming | `$pair-programming` | AI-assisted pair programming |
445
+ | Skill Builder | `$skill-builder` | Create new Claude Code Skills |
446
+ | Verification Quality | `$verification-quality` | Truth scoring and quality verification |
447
+ | Performance Analysis | `$performance-analysis` | Bottleneck detection and optimization |
448
+ | Agentic Jujutsu | `$agentic-jujutsu` | Quantum-resistant version control |
449
+ | Hooks Automation | `$hooks-automation` | Automated coordination and learning |
450
+
451
+ #### Memory Management Skills
452
+
453
+ | Skill | Syntax | Description |
454
+ |-------|--------|-------------|
455
+ | Memory Neural | `$memory:neural` | Neural pattern training |
456
+ | Memory Usage | `$memory:memory-usage` | Memory usage analysis |
457
+ | Memory Search | `$memory:memory-search` | Semantic memory search |
458
+ | Memory Persist | `$memory:memory-persist` | Memory persistence |
459
+
460
+ #### Monitoring & Analysis Skills
461
+
462
+ | Skill | Syntax | Description |
463
+ |-------|--------|-------------|
464
+ | Real-Time View | `$monitoring:real-time-view` | Real-time monitoring |
465
+ | Agent Metrics | `$monitoring:agent-metrics` | Agent performance metrics |
466
+ | Swarm Monitor | `$monitoring:swarm-monitor` | Swarm activity monitoring |
467
+ | Token Usage | `$analysis:token-usage` | Token usage optimization |
468
+ | Performance Report | `$analysis:performance-report` | Performance reporting |
469
+ | Bottleneck Detect | `$analysis:bottleneck-detect` | Bottleneck detection |
470
+
471
+ #### Training Skills
472
+
473
+ | Skill | Syntax | Description |
474
+ |-------|--------|-------------|
475
+ | Specialization | `$training:specialization` | Agent specialization training |
476
+ | Neural Patterns | `$training:neural-patterns` | Neural pattern training |
477
+ | Pattern Learn | `$training:pattern-learn` | Pattern learning |
478
+ | Model Update | `$training:model-update` | Model updates |
479
+
480
+ #### Automation & Optimization Skills
481
+
482
+ | Skill | Syntax | Description |
483
+ |-------|--------|-------------|
484
+ | Self-Healing | `$automation:self-healing` | Self-healing workflows |
485
+ | Smart Agents | `$automation:smart-agents` | Smart agent auto-spawning |
486
+ | Session Memory | `$automation:session-memory` | Cross-session memory |
487
+ | Cache Manage | `$optimization:cache-manage` | Cache management |
488
+ | Parallel Execute | `$optimization:parallel-execute` | Parallel task execution |
489
+ | Topology Optimize | `$optimization:topology-optimize` | Automatic topology selection |
490
+
491
+ #### Hooks Skills (17 Hooks + 12 Workers)
492
+
493
+ | Skill | Syntax | Description |
494
+ |-------|--------|-------------|
495
+ | Pre-Edit | `$hooks:pre-edit` | Context before editing |
496
+ | Post-Edit | `$hooks:post-edit` | Record editing outcome |
497
+ | Pre-Task | `$hooks:pre-task` | Record task start |
498
+ | Post-Task | `$hooks:post-task` | Record task completion |
499
+ | Session End | `$hooks:session-end` | End session and persist |
500
+
501
+ #### Dual-Mode Skills (NEW)
502
+
503
+ | Skill | Syntax | Description |
504
+ |-------|--------|-------------|
505
+ | Dual Spawn | `$dual-spawn` | Spawn parallel Codex workers from Claude Code |
506
+ | Dual Coordinate | `$dual-coordinate` | Coordinate Claude Code + Codex execution |
507
+ | Dual Collect | `$dual-collect` | Collect results from parallel Codex instances |
508
+
509
+ ### Custom Skills
510
+
511
+ Create custom skills in `.agents/skills/`:
512
+
513
+ ```
514
+ .agents/skills/my-skill/
515
+ └── SKILL.md
516
+ ```
517
+
518
+ **SKILL.md format:**
519
+ ```markdown
520
+ # My Custom Skill
521
+
522
+ Instructions for what this skill does...
523
+
524
+ ## Usage
525
+ Invoke with `$my-skill`
526
+ ```
527
+
528
+ </details>
529
+
530
+ ---
531
+
532
+ <details>
533
+ <summary><b>Dual-Mode Integration (Claude Code + Codex)</b></summary>
534
+
535
+ ### Hybrid Execution Model
536
+
537
+ Run Claude Code for interactive development and spawn headless Codex workers for parallel background tasks:
538
+
539
+ ```
540
+ ┌─────────────────────────────────────────────────────────────────┐
541
+ │ CLAUDE CODE (interactive) ←→ CODEX WORKERS (headless) │
542
+ │ - Main conversation - Parallel background execution │
543
+ │ - Complex reasoning - Bulk code generation │
544
+ │ - Architecture decisions - Test execution │
545
+ │ - Final integration - File processing │
546
+ └─────────────────────────────────────────────────────────────────┘
547
+ ```
548
+
549
+ ### Setup
550
+
551
+ ```bash
552
+ # Initialize dual-mode
553
+ npx ruflo@latest init --dual
554
+
555
+ # Creates both:
556
+ # - CLAUDE.md (Claude Code configuration)
557
+ # - AGENTS.md (Codex configuration)
558
+ # - Shared .claude-flow/ runtime
559
+ ```
560
+
561
+ ### Spawning Parallel Codex Workers
562
+
563
+ From Claude Code, spawn headless Codex instances:
564
+
565
+ ```bash
566
+ # Spawn workers in parallel (each runs independently)
567
+ claude -p "Analyze src/auth/ for security issues" --session-id "task-1" &
568
+ claude -p "Write unit tests for src/api/" --session-id "task-2" &
569
+ claude -p "Optimize database queries in src/db/" --session-id "task-3" &
570
+ wait # Wait for all to complete
571
+ ```
572
+
573
+ ### Dual-Mode Skills
574
+
575
+ | Skill | Platform | Description |
576
+ |-------|----------|-------------|
577
+ | `$dual-spawn` | Codex | Spawn parallel workers from orchestrator |
578
+ | `$dual-coordinate` | Both | Coordinate cross-platform execution |
579
+ | `$dual-collect` | Claude Code | Collect results from Codex workers |
580
+
581
+ ### Dual-Mode Agents
582
+
583
+ | Agent | Type | Execution |
584
+ |-------|------|-----------|
585
+ | `codex-worker` | Worker | Headless background execution |
586
+ | `codex-coordinator` | Coordinator | Manage parallel worker pool |
587
+ | `dual-orchestrator` | Orchestrator | Route tasks to appropriate platform |
588
+
589
+ ### Task Routing Rules
590
+
591
+ | Task Complexity | Platform | Reason |
592
+ |----------------|----------|--------|
593
+ | Simple (1-2 files) | Codex Headless | Fast, parallel |
594
+ | Medium (3-5 files) | Claude Code | Needs context |
595
+ | Complex (architecture) | Claude Code | Reasoning required |
596
+ | Bulk operations | Codex Workers | Parallelize |
597
+ | Final review | Claude Code | Integration |
598
+
599
+ ### Example Workflow
600
+
601
+ ```
602
+ 1. Claude Code receives complex feature request
603
+ 2. Designs architecture and creates plan
604
+ 3. Spawns 4 Codex workers:
605
+ - Worker 1: Implement data models
606
+ - Worker 2: Create API endpoints
607
+ - Worker 3: Write unit tests
608
+ - Worker 4: Generate documentation
609
+ 4. Workers execute in parallel (headless)
610
+ 5. Claude Code collects and integrates results
611
+ 6. Final review and refinement in Claude Code
612
+ ```
613
+
614
+ ### Memory Sharing
615
+
616
+ Both platforms share the same `.claude-flow/` runtime:
617
+
618
+ ```
619
+ .claude-flow/
620
+ ├── data/
621
+ │ └── memory.db # Shared vector memory
622
+ ├── config.yaml # Shared configuration
623
+ └── sessions/ # Cross-platform sessions
624
+ ```
625
+
626
+ ### Benefits
627
+
628
+ | Feature | Benefit |
629
+ |---------|---------|
630
+ | **Parallel Execution** | 4-8x faster for bulk tasks |
631
+ | **Cost Optimization** | Route simple tasks to cheaper workers |
632
+ | **Context Preservation** | Shared memory across platforms |
633
+ | **Best of Both** | Interactive + batch processing |
634
+ | **Unified Learning** | Patterns learned by both platforms |
635
+
636
+ ### CLI Commands (NEW in v3.0.0-alpha.8)
637
+
638
+ The `@claude-flow/codex` package now includes built-in dual-mode orchestration:
639
+
640
+ ```bash
641
+ # List available collaboration templates
642
+ npx claude-flow-codex dual templates
643
+
644
+ # Run a feature development swarm
645
+ npx claude-flow-codex dual run --template feature --task "Add user authentication"
646
+
647
+ # Run a security audit swarm
648
+ npx claude-flow-codex dual run --template security --task "src/auth/"
649
+
650
+ # Run a refactoring swarm
651
+ npx claude-flow-codex dual run --template refactor --task "src/legacy/"
652
+
653
+ # Check collaboration status
654
+ npx claude-flow-codex dual status
655
+ ```
656
+
657
+ ### Codex Loop Runner
658
+
659
+ Codex does not expose Claude Code's `ScheduleWakeup`, so `@claude-flow/codex` provides a process-based equivalent:
660
+
661
+ ```bash
662
+ # Run Codex repeatedly until it creates .codex/loop/default.complete or reaches 10 iterations
663
+ npx claude-flow-codex loop run "Fix failing tests and create the completion marker when done"
664
+
665
+ # Use command mode for recurring Ruflo workers or custom scripts
666
+ npx claude-flow-codex loop run --name testgaps --interval 270 --max-iterations 0 \
667
+ --command "npx claude-flow hooks worker dispatch --trigger testgaps"
668
+
669
+ # Inspect or stop a loop from another terminal
670
+ npx claude-flow-codex loop status --name testgaps
671
+ npx claude-flow-codex loop stop --name testgaps
672
+ ```
673
+
674
+ Loop state is stored in `.codex/loop/<name>.json`; `loop stop` writes `.codex/loop/<name>.stop`, which the runner observes between iterations.
675
+
676
+ ### Pre-Built Templates
677
+
678
+ | Template | Pipeline | Platforms |
679
+ |----------|----------|-----------|
680
+ | **feature** | architect → coder → tester → reviewer | Claude (architect, reviewer) + Codex (coder, tester) |
681
+ | **security** | scanner → analyzer → fixer | Codex (scanner, fixer) + Claude (analyzer) |
682
+ | **refactor** | analyzer → planner → refactorer → validator | Claude (analyzer, planner) + Codex (refactorer, validator) |
683
+
684
+ ### Programmatic API
685
+
686
+ ```typescript
687
+ import { DualModeOrchestrator, CollaborationTemplates } from '@claude-flow/codex';
688
+
689
+ // Create orchestrator
690
+ const orchestrator = new DualModeOrchestrator({
691
+ projectPath: process.cwd(),
692
+ maxConcurrent: 4,
693
+ sharedNamespace: 'collaboration',
694
+ timeout: 300000,
695
+ });
696
+
697
+ // Listen to events
698
+ orchestrator.on('worker:started', ({ id, role }) => console.log(`Started: ${role}`));
699
+ orchestrator.on('worker:completed', ({ id }) => console.log(`Completed: ${id}`));
700
+
701
+ // Run collaboration with a template
702
+ const workers = CollaborationTemplates.featureDevelopment('Add OAuth2 login');
703
+ const result = await orchestrator.runCollaboration(workers, 'Feature: OAuth2');
704
+
705
+ console.log(`Success: ${result.success}`);
706
+ console.log(`Duration: ${result.totalDuration}ms`);
707
+ console.log(`Workers: ${result.workers.length}`);
708
+ ```
709
+
710
+ </details>
711
+
712
+ ---
713
+
714
+ <details>
715
+ <summary><b>Configuration</b></summary>
716
+
717
+ ### .agents/config.toml
718
+
719
+ ```toml
720
+ # Model configuration
721
+ model = "gpt-5.3"
722
+
723
+ # Approval policy: "always" | "on-request" | "never"
724
+ approval_policy = "on-request"
725
+
726
+ # Sandbox mode: "read-only" | "workspace-write" | "danger-full-access"
727
+ sandbox_mode = "workspace-write"
728
+
729
+ # Web search: "off" | "cached" | "live"
730
+ web_search = "cached"
731
+
732
+ # MCP Servers
733
+ [mcp_servers.claude-flow]
734
+ command = "npx"
735
+ args = ["claude-flow", "mcp", "start"]
736
+ enabled = true
737
+
738
+ # Skills
739
+ [[skills]]
740
+ path = ".agents/skills/swarm-orchestration"
741
+ enabled = true
742
+
743
+ [[skills]]
744
+ path = ".agents/skills/memory-management"
745
+ enabled = true
746
+
747
+ [[skills]]
748
+ path = ".agents/skills/sparc-methodology"
749
+ enabled = true
750
+ ```
751
+
752
+ ### .codex/config.toml (Local Overrides)
753
+
754
+ ```toml
755
+ # Local development overrides (gitignored)
756
+ # These settings override .agents/config.toml
757
+
758
+ approval_policy = "never"
759
+ sandbox_mode = "danger-full-access"
760
+ web_search = "live"
761
+
762
+ # Disable MCP in local if needed
763
+ [mcp_servers.claude-flow]
764
+ enabled = false
765
+ ```
766
+
767
+ ### Environment Variables
768
+
769
+ ```bash
770
+ # Configuration paths
771
+ CLAUDE_FLOW_CONFIG=./claude-flow.config.json
772
+ CLAUDE_FLOW_MEMORY_PATH=./.claude-flow/data
773
+
774
+ # Provider keys
775
+ ANTHROPIC_API_KEY=sk-ant-...
776
+ OPENAI_API_KEY=sk-...
777
+
778
+ # MCP settings
779
+ CLAUDE_FLOW_MCP_PORT=3000
780
+ ```
781
+
782
+ </details>
783
+
784
+ ---
785
+
786
+ <details>
787
+ <summary><b>Vector Search Details</b></summary>
788
+
789
+ ### Specifications
790
+
791
+ | Property | Value |
792
+ |----------|-------|
793
+ | Embedding Dimensions | 384 |
794
+ | Search Algorithm | HNSW |
795
+ | Speed Improvement | 150x-12,500x faster |
796
+ | Similarity Range | 0.0 - 1.0 |
797
+ | Storage | SQLite with vector extension |
798
+ | Model | all-MiniLM-L6-v2 |
799
+
800
+ ### Namespaces
801
+
802
+ | Namespace | Purpose |
803
+ |-----------|---------|
804
+ | `patterns` | Successful code patterns |
805
+ | `solutions` | Bug fixes and solutions |
806
+ | `tasks` | Task completion records |
807
+ | `coordination` | Swarm state |
808
+ | `results` | Worker results |
809
+ | `default` | General storage |
810
+
811
+ ### Example Searches
812
+
813
+ ```javascript
814
+ // Find auth patterns
815
+ memory_search({ query: "authentication JWT patterns", namespace: "patterns" })
816
+
817
+ // Find bug solutions
818
+ memory_search({ query: "null pointer fix", namespace: "solutions" })
819
+
820
+ // Find past tasks
821
+ memory_search({ query: "user profile API", namespace: "tasks" })
822
+ ```
823
+
824
+ </details>
825
+
826
+ ---
827
+
828
+ <details>
829
+ <summary><b>API Reference</b></summary>
830
+
831
+ ### CodexInitializer Class
832
+
833
+ ```typescript
834
+ import { CodexInitializer } from '@claude-flow/codex';
835
+
836
+ class CodexInitializer {
837
+ /**
838
+ * Initialize a Codex project
839
+ */
840
+ async initialize(options: CodexInitOptions): Promise<CodexInitResult>;
841
+
842
+ /**
843
+ * Preview what would be created without writing files
844
+ */
845
+ async dryRun(options: CodexInitOptions): Promise<string[]>;
846
+ }
847
+ ```
848
+
849
+ ### initializeCodexProject Function
850
+
851
+ ```typescript
852
+ import { initializeCodexProject } from '@claude-flow/codex';
853
+
854
+ /**
855
+ * Quick initialization helper
856
+ */
857
+ async function initializeCodexProject(
858
+ projectPath: string,
859
+ options?: Partial<CodexInitOptions>
860
+ ): Promise<CodexInitResult>;
861
+ ```
862
+
863
+ ### Types
864
+
865
+ ```typescript
866
+ interface CodexInitOptions {
867
+ /** Project directory path */
868
+ projectPath: string;
869
+ /** Template to use */
870
+ template?: 'minimal' | 'default' | 'full' | 'enterprise';
871
+ /** Specific skills to include */
872
+ skills?: string[];
873
+ /** Overwrite existing files */
874
+ force?: boolean;
875
+ /** Enable dual mode (Claude Code + Codex) */
876
+ dual?: boolean;
877
+ }
878
+
879
+ interface CodexInitResult {
880
+ /** Whether initialization succeeded */
881
+ success: boolean;
882
+ /** List of files created */
883
+ filesCreated: string[];
884
+ /** List of skills generated */
885
+ skillsGenerated: string[];
886
+ /** Whether MCP was registered */
887
+ mcpRegistered?: boolean;
888
+ /** Non-fatal warnings */
889
+ warnings?: string[];
890
+ /** Fatal errors */
891
+ errors?: string[];
892
+ }
893
+ ```
894
+
895
+ ### Programmatic Usage
896
+
897
+ ```typescript
898
+ import { CodexInitializer, initializeCodexProject } from '@claude-flow/codex';
899
+
900
+ // Quick initialization
901
+ const result = await initializeCodexProject('/path/to/project', {
902
+ template: 'full',
903
+ force: true,
904
+ dual: false,
905
+ });
906
+
907
+ console.log(`Files created: ${result.filesCreated.length}`);
908
+ console.log(`Skills: ${result.skillsGenerated.length}`);
909
+ console.log(`MCP registered: ${result.mcpRegistered}`);
910
+
911
+ // Or use the class directly
912
+ const initializer = new CodexInitializer();
913
+ const result = await initializer.initialize({
914
+ projectPath: '/path/to/project',
915
+ template: 'enterprise',
916
+ skills: ['swarm-orchestration', 'memory-management', 'security-audit'],
917
+ force: false,
918
+ dual: true,
919
+ });
920
+
921
+ if (result.warnings?.length) {
922
+ console.warn('Warnings:', result.warnings);
923
+ }
924
+ ```
925
+
926
+ </details>
927
+
928
+ ---
929
+
930
+ <details>
931
+ <summary><b>Migration from Claude Code</b></summary>
932
+
933
+ ### Convert CLAUDE.md to AGENTS.md
934
+
935
+ ```typescript
936
+ import { migrate } from '@claude-flow/codex';
937
+
938
+ const result = await migrate({
939
+ sourcePath: './CLAUDE.md',
940
+ targetPath: './AGENTS.md',
941
+ preserveComments: true,
942
+ generateSkills: true,
943
+ });
944
+
945
+ console.log(`Migrated: ${result.success}`);
946
+ console.log(`Skills generated: ${result.skillsGenerated.length}`);
947
+ ```
948
+
949
+ ### Manual Migration Checklist
950
+
951
+ 1. **Rename config file**: `CLAUDE.md` → `AGENTS.md`
952
+ 2. **Move skills**: `.claude/skills/` → `.agents/skills/`
953
+ 3. **Update syntax**: `/skill-name` → `$skill-name`
954
+ 4. **Convert settings**: `settings.json` → `config.toml`
955
+ 5. **Register MCP**: `codex mcp add claude-flow -- npx claude-flow mcp start`
956
+
957
+ ### Dual Mode Alternative
958
+
959
+ Instead of migrating, use dual mode to support both:
960
+
961
+ ```bash
962
+ npx ruflo@latest init --dual
963
+ ```
964
+
965
+ This keeps both `CLAUDE.md` and `AGENTS.md` in sync.
966
+
967
+ </details>
968
+
969
+ ---
970
+
971
+ <details>
972
+ <summary><b>Troubleshooting</b></summary>
973
+
974
+ ### MCP Not Working
975
+
976
+ ```bash
977
+ # Check if registered
978
+ codex mcp list
979
+
980
+ # Re-register
981
+ codex mcp remove claude-flow
982
+ codex mcp add claude-flow -- npx claude-flow mcp start
983
+
984
+ # Test connection
985
+ npx claude-flow mcp test
986
+ ```
987
+
988
+ ### Memory Search Returns Empty
989
+
990
+ ```bash
991
+ # Initialize memory database
992
+ npx claude-flow memory init --force
993
+
994
+ # Check if entries exist
995
+ npx claude-flow memory list
996
+
997
+ # Manually add a test pattern
998
+ npx claude-flow memory store --key "test" --value "test pattern" --namespace patterns
999
+ ```
1000
+
1001
+ ### Skills Not Loading
1002
+
1003
+ ```bash
1004
+ # Verify skill directory
1005
+ ls -la .agents/skills/
1006
+
1007
+ # Check config.toml for skill registration
1008
+ cat .agents/config.toml | grep skills
1009
+
1010
+ # Rebuild skills
1011
+ npx ruflo@latest init --codex --force
1012
+ ```
1013
+
1014
+ ### Vector Search Slow
1015
+
1016
+ ```bash
1017
+ # Check HNSW index
1018
+ npx claude-flow memory stats
1019
+
1020
+ # Rebuild index
1021
+ npx claude-flow memory optimize --rebuild-index
1022
+ ```
1023
+
1024
+ </details>
1025
+
1026
+ ---
1027
+
1028
+ ## Related Packages
1029
+
1030
+ | Package | Description |
1031
+ |---------|-------------|
1032
+ | [@claude-flow/cli](https://www.npmjs.com/package/@claude-flow/cli) | Main CLI (26 commands, 140+ subcommands) |
1033
+ | [claude-flow](https://www.npmjs.com/package/claude-flow) | Umbrella package |
1034
+ | [@claude-flow/memory](https://www.npmjs.com/package/@claude-flow/memory) | AgentDB with HNSW vector search |
1035
+ | [@claude-flow/security](https://www.npmjs.com/package/@claude-flow/security) | Security module |
1036
+
1037
+ ## License
1038
+
1039
+ MIT
1040
+
1041
+ ## Support
1042
+
1043
+ - Documentation: https://github.com/ruvnet/ruflo
1044
+ - Issues: https://github.com/ruvnet/ruflo/issues