moflo 4.8.31 → 4.8.33

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 (415) hide show
  1. package/package.json +13 -10
  2. package/src/@claude-flow/cli/dist/src/commands/doctor.js +1298 -1107
  3. package/src/@claude-flow/cli/dist/src/memory/memory-initializer.js +4 -7
  4. package/src/@claude-flow/cli/package.json +106 -106
  5. package/src/@claude-flow/neural/README.md +260 -0
  6. package/src/@claude-flow/neural/dist/algorithms/a2c.js +361 -0
  7. package/src/@claude-flow/neural/dist/algorithms/curiosity.js +392 -0
  8. package/src/@claude-flow/neural/dist/algorithms/decision-transformer.js +415 -0
  9. package/src/@claude-flow/neural/dist/algorithms/dqn.js +303 -0
  10. package/src/@claude-flow/neural/dist/algorithms/index.js +74 -0
  11. package/src/@claude-flow/neural/dist/algorithms/ppo.js +331 -0
  12. package/src/@claude-flow/neural/dist/algorithms/q-learning.js +259 -0
  13. package/src/@claude-flow/neural/dist/algorithms/sarsa.js +297 -0
  14. package/src/@claude-flow/neural/dist/application/index.js +7 -0
  15. package/src/@claude-flow/neural/dist/application/services/neural-application-service.js +161 -0
  16. package/src/@claude-flow/neural/dist/domain/entities/pattern.js +134 -0
  17. package/src/@claude-flow/neural/dist/domain/index.js +8 -0
  18. package/src/@claude-flow/neural/dist/domain/services/learning-service.js +195 -0
  19. package/src/@claude-flow/neural/dist/index.js +201 -0
  20. package/src/@claude-flow/neural/dist/modes/balanced.js +234 -0
  21. package/src/@claude-flow/neural/dist/modes/base.js +77 -0
  22. package/src/@claude-flow/neural/dist/modes/batch.js +316 -0
  23. package/src/@claude-flow/neural/dist/modes/edge.js +310 -0
  24. package/src/@claude-flow/neural/dist/modes/index.js +13 -0
  25. package/src/@claude-flow/neural/dist/modes/real-time.js +196 -0
  26. package/src/@claude-flow/neural/dist/modes/research.js +389 -0
  27. package/src/@claude-flow/neural/dist/pattern-learner.js +603 -0
  28. package/src/@claude-flow/neural/dist/reasoning-bank.js +993 -0
  29. package/src/@claude-flow/neural/dist/reasoningbank-adapter.js +463 -0
  30. package/src/@claude-flow/neural/dist/sona-integration.js +316 -0
  31. package/src/@claude-flow/neural/dist/sona-manager.js +695 -0
  32. package/src/@claude-flow/neural/dist/types.js +11 -0
  33. package/src/@claude-flow/neural/package.json +26 -0
  34. package/.claude/agents/browser/browser-agent.yaml +0 -182
  35. package/.claude/agents/database-specialist.yaml +0 -21
  36. package/.claude/agents/index.yaml +0 -17
  37. package/.claude/agents/project-coordinator.yaml +0 -15
  38. package/.claude/agents/python-specialist.yaml +0 -21
  39. package/.claude/agents/security-auditor.yaml +0 -20
  40. package/.claude/agents/typescript-specialist.yaml +0 -21
  41. package/.claude/checkpoints/1767754460.json +0 -8
  42. package/.claude/config/v3-dependency-optimization.json +0 -266
  43. package/.claude/config/v3-performance-targets.json +0 -251
  44. package/.claude/guidance/moflo-bootstrap.md +0 -129
  45. package/.claude/mcp.json +0 -13
  46. package/.claude/settings.json +0 -351
  47. package/.claude/settings.local.json +0 -18
  48. package/.claude/skills/agentdb-advanced/SKILL.md +0 -550
  49. package/.claude/skills/agentdb-learning/SKILL.md +0 -545
  50. package/.claude/skills/agentdb-memory-patterns/SKILL.md +0 -339
  51. package/.claude/skills/agentdb-optimization/SKILL.md +0 -509
  52. package/.claude/skills/agentdb-vector-search/SKILL.md +0 -339
  53. package/.claude/skills/browser/SKILL.md +0 -204
  54. package/.claude/skills/fl/SKILL.md +0 -583
  55. package/.claude/skills/flo/SKILL.md +0 -583
  56. package/.claude/skills/github-code-review/SKILL.md +0 -1140
  57. package/.claude/skills/github-multi-repo/SKILL.md +0 -874
  58. package/.claude/skills/github-project-management/SKILL.md +0 -1277
  59. package/.claude/skills/github-release-management/SKILL.md +0 -1081
  60. package/.claude/skills/github-workflow-automation/SKILL.md +0 -1065
  61. package/.claude/skills/hive-mind-advanced/SKILL.md +0 -712
  62. package/.claude/skills/hooks-automation/SKILL.md +0 -1201
  63. package/.claude/skills/pair-programming/SKILL.md +0 -1202
  64. package/.claude/skills/performance-analysis/SKILL.md +0 -563
  65. package/.claude/skills/reasoningbank-agentdb/SKILL.md +0 -446
  66. package/.claude/skills/reasoningbank-intelligence/SKILL.md +0 -201
  67. package/.claude/skills/skill-builder/SKILL.md +0 -910
  68. package/.claude/skills/sparc-methodology/SKILL.md +0 -1115
  69. package/.claude/skills/stream-chain/SKILL.md +0 -563
  70. package/.claude/skills/swarm-advanced/SKILL.md +0 -973
  71. package/.claude/skills/swarm-orchestration/SKILL.md +0 -179
  72. package/.claude/skills/v3-cli-modernization/SKILL.md +0 -872
  73. package/.claude/skills/v3-core-implementation/SKILL.md +0 -797
  74. package/.claude/skills/v3-ddd-architecture/SKILL.md +0 -442
  75. package/.claude/skills/v3-integration-deep/SKILL.md +0 -241
  76. package/.claude/skills/v3-mcp-optimization/SKILL.md +0 -777
  77. package/.claude/skills/v3-memory-unification/SKILL.md +0 -174
  78. package/.claude/skills/v3-performance-optimization/SKILL.md +0 -390
  79. package/.claude/skills/v3-security-overhaul/SKILL.md +0 -82
  80. package/.claude/skills/v3-swarm-coordination/SKILL.md +0 -340
  81. package/.claude/skills/verification-quality/SKILL.md +0 -649
  82. package/.claude/skills/worker-benchmarks/skill.md +0 -135
  83. package/.claude/skills/worker-integration/skill.md +0 -154
  84. package/.claude/workflow-state.json +0 -9
  85. package/src/@claude-flow/cli/dist/src/appliance/gguf-engine.d.ts +0 -91
  86. package/src/@claude-flow/cli/dist/src/appliance/ruvllm-bridge.d.ts +0 -102
  87. package/src/@claude-flow/cli/dist/src/appliance/rvfa-builder.d.ts +0 -44
  88. package/src/@claude-flow/cli/dist/src/appliance/rvfa-distribution.d.ts +0 -97
  89. package/src/@claude-flow/cli/dist/src/appliance/rvfa-format.d.ts +0 -111
  90. package/src/@claude-flow/cli/dist/src/appliance/rvfa-runner.d.ts +0 -69
  91. package/src/@claude-flow/cli/dist/src/appliance/rvfa-signing.d.ts +0 -123
  92. package/src/@claude-flow/cli/dist/src/benchmarks/pretrain/index.d.ts +0 -58
  93. package/src/@claude-flow/cli/dist/src/commands/agent.d.ts +0 -8
  94. package/src/@claude-flow/cli/dist/src/commands/analyze.d.ts +0 -19
  95. package/src/@claude-flow/cli/dist/src/commands/appliance-advanced.d.ts +0 -9
  96. package/src/@claude-flow/cli/dist/src/commands/appliance.d.ts +0 -8
  97. package/src/@claude-flow/cli/dist/src/commands/benchmark.d.ts +0 -10
  98. package/src/@claude-flow/cli/dist/src/commands/claims.d.ts +0 -10
  99. package/src/@claude-flow/cli/dist/src/commands/completions.d.ts +0 -10
  100. package/src/@claude-flow/cli/dist/src/commands/config.d.ts +0 -8
  101. package/src/@claude-flow/cli/dist/src/commands/daemon.d.ts +0 -8
  102. package/src/@claude-flow/cli/dist/src/commands/deployment.d.ts +0 -10
  103. package/src/@claude-flow/cli/dist/src/commands/diagnose.d.ts +0 -16
  104. package/src/@claude-flow/cli/dist/src/commands/doctor.d.ts +0 -10
  105. package/src/@claude-flow/cli/dist/src/commands/embeddings.d.ts +0 -18
  106. package/src/@claude-flow/cli/dist/src/commands/gate.d.ts +0 -23
  107. package/src/@claude-flow/cli/dist/src/commands/github.d.ts +0 -12
  108. package/src/@claude-flow/cli/dist/src/commands/guidance.d.ts +0 -8
  109. package/src/@claude-flow/cli/dist/src/commands/hive-mind.d.ts +0 -11
  110. package/src/@claude-flow/cli/dist/src/commands/hooks.d.ts +0 -8
  111. package/src/@claude-flow/cli/dist/src/commands/index.d.ts +0 -115
  112. package/src/@claude-flow/cli/dist/src/commands/init.d.ts +0 -8
  113. package/src/@claude-flow/cli/dist/src/commands/issues.d.ts +0 -21
  114. package/src/@claude-flow/cli/dist/src/commands/mcp.d.ts +0 -11
  115. package/src/@claude-flow/cli/dist/src/commands/memory.d.ts +0 -8
  116. package/src/@claude-flow/cli/dist/src/commands/migrate.d.ts +0 -8
  117. package/src/@claude-flow/cli/dist/src/commands/neural.d.ts +0 -10
  118. package/src/@claude-flow/cli/dist/src/commands/orc.d.ts +0 -21
  119. package/src/@claude-flow/cli/dist/src/commands/performance.d.ts +0 -10
  120. package/src/@claude-flow/cli/dist/src/commands/plugins.d.ts +0 -11
  121. package/src/@claude-flow/cli/dist/src/commands/process.d.ts +0 -10
  122. package/src/@claude-flow/cli/dist/src/commands/progress.d.ts +0 -11
  123. package/src/@claude-flow/cli/dist/src/commands/providers.d.ts +0 -10
  124. package/src/@claude-flow/cli/dist/src/commands/route.d.ts +0 -16
  125. package/src/@claude-flow/cli/dist/src/commands/ruvector/backup.d.ts +0 -11
  126. package/src/@claude-flow/cli/dist/src/commands/ruvector/benchmark.d.ts +0 -11
  127. package/src/@claude-flow/cli/dist/src/commands/ruvector/import.d.ts +0 -18
  128. package/src/@claude-flow/cli/dist/src/commands/ruvector/index.d.ts +0 -29
  129. package/src/@claude-flow/cli/dist/src/commands/ruvector/init.d.ts +0 -11
  130. package/src/@claude-flow/cli/dist/src/commands/ruvector/migrate.d.ts +0 -11
  131. package/src/@claude-flow/cli/dist/src/commands/ruvector/optimize.d.ts +0 -11
  132. package/src/@claude-flow/cli/dist/src/commands/ruvector/setup.d.ts +0 -18
  133. package/src/@claude-flow/cli/dist/src/commands/ruvector/status.d.ts +0 -11
  134. package/src/@claude-flow/cli/dist/src/commands/security.d.ts +0 -10
  135. package/src/@claude-flow/cli/dist/src/commands/session.d.ts +0 -8
  136. package/src/@claude-flow/cli/dist/src/commands/start.d.ts +0 -8
  137. package/src/@claude-flow/cli/dist/src/commands/status.d.ts +0 -8
  138. package/src/@claude-flow/cli/dist/src/commands/swarm.d.ts +0 -8
  139. package/src/@claude-flow/cli/dist/src/commands/task.d.ts +0 -8
  140. package/src/@claude-flow/cli/dist/src/commands/transfer-store.d.ts +0 -13
  141. package/src/@claude-flow/cli/dist/src/commands/update.d.ts +0 -8
  142. package/src/@claude-flow/cli/dist/src/commands/workflow.d.ts +0 -8
  143. package/src/@claude-flow/cli/dist/src/config/moflo-config.d.ts +0 -93
  144. package/src/@claude-flow/cli/dist/src/config-adapter.d.ts +0 -15
  145. package/src/@claude-flow/cli/dist/src/index.d.ts +0 -81
  146. package/src/@claude-flow/cli/dist/src/infrastructure/in-memory-repositories.d.ts +0 -68
  147. package/src/@claude-flow/cli/dist/src/init/claudemd-generator.d.ts +0 -30
  148. package/src/@claude-flow/cli/dist/src/init/executor.d.ts +0 -41
  149. package/src/@claude-flow/cli/dist/src/init/helpers-generator.d.ts +0 -51
  150. package/src/@claude-flow/cli/dist/src/init/index.d.ts +0 -13
  151. package/src/@claude-flow/cli/dist/src/init/mcp-generator.d.ts +0 -29
  152. package/src/@claude-flow/cli/dist/src/init/moflo-init.d.ts +0 -31
  153. package/src/@claude-flow/cli/dist/src/init/settings-generator.d.ts +0 -14
  154. package/src/@claude-flow/cli/dist/src/init/statusline-generator.d.ts +0 -28
  155. package/src/@claude-flow/cli/dist/src/init/types.d.ts +0 -285
  156. package/src/@claude-flow/cli/dist/src/mcp-client.d.ts +0 -92
  157. package/src/@claude-flow/cli/dist/src/mcp-server.d.ts +0 -161
  158. package/src/@claude-flow/cli/dist/src/mcp-tools/agent-tools.d.ts +0 -9
  159. package/src/@claude-flow/cli/dist/src/mcp-tools/agentdb-tools.d.ts +0 -30
  160. package/src/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.d.ts +0 -38
  161. package/src/@claude-flow/cli/dist/src/mcp-tools/auto-install.d.ts +0 -83
  162. package/src/@claude-flow/cli/dist/src/mcp-tools/browser-tools.d.ts +0 -13
  163. package/src/@claude-flow/cli/dist/src/mcp-tools/claims-tools.d.ts +0 -12
  164. package/src/@claude-flow/cli/dist/src/mcp-tools/config-tools.d.ts +0 -8
  165. package/src/@claude-flow/cli/dist/src/mcp-tools/coordination-tools.d.ts +0 -13
  166. package/src/@claude-flow/cli/dist/src/mcp-tools/daa-tools.d.ts +0 -13
  167. package/src/@claude-flow/cli/dist/src/mcp-tools/embeddings-tools.d.ts +0 -9
  168. package/src/@claude-flow/cli/dist/src/mcp-tools/github-tools.d.ts +0 -13
  169. package/src/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.d.ts +0 -8
  170. package/src/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.d.ts +0 -44
  171. package/src/@claude-flow/cli/dist/src/mcp-tools/index.d.ts +0 -23
  172. package/src/@claude-flow/cli/dist/src/mcp-tools/memory-tools.d.ts +0 -14
  173. package/src/@claude-flow/cli/dist/src/mcp-tools/neural-tools.d.ts +0 -16
  174. package/src/@claude-flow/cli/dist/src/mcp-tools/performance-tools.d.ts +0 -16
  175. package/src/@claude-flow/cli/dist/src/mcp-tools/progress-tools.d.ts +0 -14
  176. package/src/@claude-flow/cli/dist/src/mcp-tools/security-tools.d.ts +0 -18
  177. package/src/@claude-flow/cli/dist/src/mcp-tools/session-tools.d.ts +0 -8
  178. package/src/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.d.ts +0 -8
  179. package/src/@claude-flow/cli/dist/src/mcp-tools/system-tools.d.ts +0 -13
  180. package/src/@claude-flow/cli/dist/src/mcp-tools/task-tools.d.ts +0 -8
  181. package/src/@claude-flow/cli/dist/src/mcp-tools/terminal-tools.d.ts +0 -13
  182. package/src/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.d.ts +0 -14
  183. package/src/@claude-flow/cli/dist/src/mcp-tools/types.d.ts +0 -31
  184. package/src/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.d.ts +0 -8
  185. package/src/@claude-flow/cli/dist/src/memory/ewc-consolidation.d.ts +0 -271
  186. package/src/@claude-flow/cli/dist/src/memory/intelligence.d.ts +0 -285
  187. package/src/@claude-flow/cli/dist/src/memory/memory-bridge.d.ts +0 -413
  188. package/src/@claude-flow/cli/dist/src/memory/memory-initializer.d.ts +0 -405
  189. package/src/@claude-flow/cli/dist/src/memory/sona-optimizer.d.ts +0 -227
  190. package/src/@claude-flow/cli/dist/src/output.d.ts +0 -133
  191. package/src/@claude-flow/cli/dist/src/parser.d.ts +0 -51
  192. package/src/@claude-flow/cli/dist/src/plugins/manager.d.ts +0 -133
  193. package/src/@claude-flow/cli/dist/src/plugins/store/discovery.d.ts +0 -88
  194. package/src/@claude-flow/cli/dist/src/plugins/store/index.d.ts +0 -76
  195. package/src/@claude-flow/cli/dist/src/plugins/store/search.d.ts +0 -46
  196. package/src/@claude-flow/cli/dist/src/plugins/store/types.d.ts +0 -274
  197. package/src/@claude-flow/cli/dist/src/plugins/tests/demo-plugin-store.d.ts +0 -7
  198. package/src/@claude-flow/cli/dist/src/plugins/tests/standalone-test.d.ts +0 -12
  199. package/src/@claude-flow/cli/dist/src/plugins/tests/test-plugin-store.d.ts +0 -7
  200. package/src/@claude-flow/cli/dist/src/production/circuit-breaker.d.ts +0 -101
  201. package/src/@claude-flow/cli/dist/src/production/error-handler.d.ts +0 -92
  202. package/src/@claude-flow/cli/dist/src/production/index.d.ts +0 -23
  203. package/src/@claude-flow/cli/dist/src/production/monitoring.d.ts +0 -161
  204. package/src/@claude-flow/cli/dist/src/production/rate-limiter.d.ts +0 -80
  205. package/src/@claude-flow/cli/dist/src/production/retry.d.ts +0 -48
  206. package/src/@claude-flow/cli/dist/src/prompt.d.ts +0 -44
  207. package/src/@claude-flow/cli/dist/src/runtime/headless.d.ts +0 -60
  208. package/src/@claude-flow/cli/dist/src/ruvector/ast-analyzer.d.ts +0 -67
  209. package/src/@claude-flow/cli/dist/src/ruvector/coverage-router.d.ts +0 -160
  210. package/src/@claude-flow/cli/dist/src/ruvector/coverage-tools.d.ts +0 -33
  211. package/src/@claude-flow/cli/dist/src/ruvector/diff-classifier.d.ts +0 -175
  212. package/src/@claude-flow/cli/dist/src/ruvector/enhanced-model-router.d.ts +0 -146
  213. package/src/@claude-flow/cli/dist/src/ruvector/flash-attention.d.ts +0 -195
  214. package/src/@claude-flow/cli/dist/src/ruvector/graph-analyzer.d.ts +0 -187
  215. package/src/@claude-flow/cli/dist/src/ruvector/index.d.ts +0 -34
  216. package/src/@claude-flow/cli/dist/src/ruvector/lora-adapter.d.ts +0 -218
  217. package/src/@claude-flow/cli/dist/src/ruvector/model-router.d.ts +0 -220
  218. package/src/@claude-flow/cli/dist/src/ruvector/moe-router.d.ts +0 -206
  219. package/src/@claude-flow/cli/dist/src/ruvector/q-learning-router.d.ts +0 -211
  220. package/src/@claude-flow/cli/dist/src/ruvector/semantic-router.d.ts +0 -77
  221. package/src/@claude-flow/cli/dist/src/ruvector/vector-db.d.ts +0 -69
  222. package/src/@claude-flow/cli/dist/src/services/agent-router.d.ts +0 -63
  223. package/src/@claude-flow/cli/dist/src/services/agentic-flow-bridge.d.ts +0 -50
  224. package/src/@claude-flow/cli/dist/src/services/claim-service.d.ts +0 -204
  225. package/src/@claude-flow/cli/dist/src/services/container-worker-pool.d.ts +0 -197
  226. package/src/@claude-flow/cli/dist/src/services/daemon-lock.d.ts +0 -60
  227. package/src/@claude-flow/cli/dist/src/services/headless-worker-executor.d.ts +0 -304
  228. package/src/@claude-flow/cli/dist/src/services/index.d.ts +0 -13
  229. package/src/@claude-flow/cli/dist/src/services/learning-service.d.ts +0 -161
  230. package/src/@claude-flow/cli/dist/src/services/moflo-require.d.ts +0 -34
  231. package/src/@claude-flow/cli/dist/src/services/registry-api.d.ts +0 -58
  232. package/src/@claude-flow/cli/dist/src/services/ruvector-training.d.ts +0 -214
  233. package/src/@claude-flow/cli/dist/src/services/worker-daemon.d.ts +0 -225
  234. package/src/@claude-flow/cli/dist/src/services/worker-queue.d.ts +0 -194
  235. package/src/@claude-flow/cli/dist/src/services/workflow-gate.d.ts +0 -88
  236. package/src/@claude-flow/cli/dist/src/suggest.d.ts +0 -53
  237. package/src/@claude-flow/cli/dist/src/transfer/anonymization/index.d.ts +0 -25
  238. package/src/@claude-flow/cli/dist/src/transfer/deploy-seraphine.d.ts +0 -13
  239. package/src/@claude-flow/cli/dist/src/transfer/export.d.ts +0 -25
  240. package/src/@claude-flow/cli/dist/src/transfer/index.d.ts +0 -12
  241. package/src/@claude-flow/cli/dist/src/transfer/ipfs/client.d.ts +0 -109
  242. package/src/@claude-flow/cli/dist/src/transfer/ipfs/upload.d.ts +0 -95
  243. package/src/@claude-flow/cli/dist/src/transfer/models/seraphine.d.ts +0 -72
  244. package/src/@claude-flow/cli/dist/src/transfer/serialization/cfp.d.ts +0 -49
  245. package/src/@claude-flow/cli/dist/src/transfer/storage/gcs.d.ts +0 -82
  246. package/src/@claude-flow/cli/dist/src/transfer/storage/index.d.ts +0 -6
  247. package/src/@claude-flow/cli/dist/src/transfer/store/discovery.d.ts +0 -84
  248. package/src/@claude-flow/cli/dist/src/transfer/store/download.d.ts +0 -70
  249. package/src/@claude-flow/cli/dist/src/transfer/store/index.d.ts +0 -84
  250. package/src/@claude-flow/cli/dist/src/transfer/store/publish.d.ts +0 -76
  251. package/src/@claude-flow/cli/dist/src/transfer/store/registry.d.ts +0 -58
  252. package/src/@claude-flow/cli/dist/src/transfer/store/search.d.ts +0 -54
  253. package/src/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.d.ts +0 -12
  254. package/src/@claude-flow/cli/dist/src/transfer/store/types.d.ts +0 -193
  255. package/src/@claude-flow/cli/dist/src/transfer/test-seraphine.d.ts +0 -6
  256. package/src/@claude-flow/cli/dist/src/transfer/tests/test-store.d.ts +0 -7
  257. package/src/@claude-flow/cli/dist/src/transfer/types.d.ts +0 -245
  258. package/src/@claude-flow/cli/dist/src/types.d.ts +0 -198
  259. package/src/@claude-flow/cli/dist/src/update/checker.d.ts +0 -34
  260. package/src/@claude-flow/cli/dist/src/update/executor.d.ts +0 -32
  261. package/src/@claude-flow/cli/dist/src/update/index.d.ts +0 -33
  262. package/src/@claude-flow/cli/dist/src/update/rate-limiter.d.ts +0 -20
  263. package/src/@claude-flow/cli/dist/src/update/validator.d.ts +0 -17
  264. package/src/@claude-flow/guidance/dist/adversarial.d.ts +0 -284
  265. package/src/@claude-flow/guidance/dist/analyzer.d.ts +0 -530
  266. package/src/@claude-flow/guidance/dist/artifacts.d.ts +0 -283
  267. package/src/@claude-flow/guidance/dist/authority.d.ts +0 -290
  268. package/src/@claude-flow/guidance/dist/capabilities.d.ts +0 -209
  269. package/src/@claude-flow/guidance/dist/coherence.d.ts +0 -233
  270. package/src/@claude-flow/guidance/dist/compiler.d.ts +0 -87
  271. package/src/@claude-flow/guidance/dist/conformance-kit.d.ts +0 -225
  272. package/src/@claude-flow/guidance/dist/continue-gate.d.ts +0 -214
  273. package/src/@claude-flow/guidance/dist/crypto-utils.d.ts +0 -17
  274. package/src/@claude-flow/guidance/dist/evolution.d.ts +0 -282
  275. package/src/@claude-flow/guidance/dist/gates.d.ts +0 -79
  276. package/src/@claude-flow/guidance/dist/gateway.d.ts +0 -206
  277. package/src/@claude-flow/guidance/dist/generators.d.ts +0 -153
  278. package/src/@claude-flow/guidance/dist/headless.d.ts +0 -177
  279. package/src/@claude-flow/guidance/dist/hooks.d.ts +0 -109
  280. package/src/@claude-flow/guidance/dist/index.d.ts +0 -205
  281. package/src/@claude-flow/guidance/dist/ledger.d.ts +0 -162
  282. package/src/@claude-flow/guidance/dist/manifest-validator.d.ts +0 -289
  283. package/src/@claude-flow/guidance/dist/memory-gate.d.ts +0 -222
  284. package/src/@claude-flow/guidance/dist/meta-governance.d.ts +0 -265
  285. package/src/@claude-flow/guidance/dist/optimizer.d.ts +0 -104
  286. package/src/@claude-flow/guidance/dist/persistence.d.ts +0 -189
  287. package/src/@claude-flow/guidance/dist/proof.d.ts +0 -185
  288. package/src/@claude-flow/guidance/dist/retriever.d.ts +0 -116
  289. package/src/@claude-flow/guidance/dist/ruvbot-integration.d.ts +0 -370
  290. package/src/@claude-flow/guidance/dist/temporal.d.ts +0 -426
  291. package/src/@claude-flow/guidance/dist/trust.d.ts +0 -283
  292. package/src/@claude-flow/guidance/dist/truth-anchors.d.ts +0 -276
  293. package/src/@claude-flow/guidance/dist/types.d.ts +0 -378
  294. package/src/@claude-flow/guidance/dist/uncertainty.d.ts +0 -372
  295. package/src/@claude-flow/guidance/dist/wasm-kernel.d.ts +0 -48
  296. package/src/@claude-flow/memory/dist/agent-memory-scope.d.ts +0 -131
  297. package/src/@claude-flow/memory/dist/agent-memory-scope.test.d.ts +0 -8
  298. package/src/@claude-flow/memory/dist/agentdb-adapter.d.ts +0 -165
  299. package/src/@claude-flow/memory/dist/agentdb-backend.d.ts +0 -212
  300. package/src/@claude-flow/memory/dist/agentdb-backend.test.d.ts +0 -7
  301. package/src/@claude-flow/memory/dist/application/commands/delete-memory.command.d.ts +0 -65
  302. package/src/@claude-flow/memory/dist/application/commands/store-memory.command.d.ts +0 -48
  303. package/src/@claude-flow/memory/dist/application/index.d.ts +0 -12
  304. package/src/@claude-flow/memory/dist/application/queries/search-memory.query.d.ts +0 -72
  305. package/src/@claude-flow/memory/dist/application/services/memory-application-service.d.ts +0 -121
  306. package/src/@claude-flow/memory/dist/auto-memory-bridge.d.ts +0 -226
  307. package/src/@claude-flow/memory/dist/auto-memory-bridge.test.d.ts +0 -8
  308. package/src/@claude-flow/memory/dist/benchmark.test.d.ts +0 -2
  309. package/src/@claude-flow/memory/dist/cache-manager.d.ts +0 -134
  310. package/src/@claude-flow/memory/dist/controller-registry.d.ts +0 -216
  311. package/src/@claude-flow/memory/dist/controller-registry.test.d.ts +0 -14
  312. package/src/@claude-flow/memory/dist/database-provider.d.ts +0 -87
  313. package/src/@claude-flow/memory/dist/database-provider.test.d.ts +0 -7
  314. package/src/@claude-flow/memory/dist/domain/entities/memory-entry.d.ts +0 -143
  315. package/src/@claude-flow/memory/dist/domain/index.d.ts +0 -11
  316. package/src/@claude-flow/memory/dist/domain/repositories/memory-repository.interface.d.ts +0 -102
  317. package/src/@claude-flow/memory/dist/domain/services/memory-domain-service.d.ts +0 -105
  318. package/src/@claude-flow/memory/dist/hnsw-index.d.ts +0 -111
  319. package/src/@claude-flow/memory/dist/hnsw-lite.d.ts +0 -23
  320. package/src/@claude-flow/memory/dist/hybrid-backend.d.ts +0 -245
  321. package/src/@claude-flow/memory/dist/hybrid-backend.test.d.ts +0 -8
  322. package/src/@claude-flow/memory/dist/index.d.ts +0 -204
  323. package/src/@claude-flow/memory/dist/infrastructure/index.d.ts +0 -17
  324. package/src/@claude-flow/memory/dist/infrastructure/repositories/hybrid-memory-repository.d.ts +0 -66
  325. package/src/@claude-flow/memory/dist/learning-bridge.d.ts +0 -137
  326. package/src/@claude-flow/memory/dist/learning-bridge.test.d.ts +0 -8
  327. package/src/@claude-flow/memory/dist/memory-graph.d.ts +0 -100
  328. package/src/@claude-flow/memory/dist/memory-graph.test.d.ts +0 -8
  329. package/src/@claude-flow/memory/dist/migration.d.ts +0 -68
  330. package/src/@claude-flow/memory/dist/persistent-sona.d.ts +0 -144
  331. package/src/@claude-flow/memory/dist/query-builder.d.ts +0 -211
  332. package/src/@claude-flow/memory/dist/rvf-backend.d.ts +0 -51
  333. package/src/@claude-flow/memory/dist/rvf-learning-store.d.ts +0 -139
  334. package/src/@claude-flow/memory/dist/rvf-migration.d.ts +0 -45
  335. package/src/@claude-flow/memory/dist/sqlite-backend.d.ts +0 -121
  336. package/src/@claude-flow/memory/dist/sqljs-backend.d.ts +0 -127
  337. package/src/@claude-flow/memory/dist/types.d.ts +0 -484
  338. package/src/@claude-flow/shared/dist/core/config/defaults.d.ts +0 -41
  339. package/src/@claude-flow/shared/dist/core/config/index.d.ts +0 -8
  340. package/src/@claude-flow/shared/dist/core/config/loader.d.ts +0 -45
  341. package/src/@claude-flow/shared/dist/core/config/schema.d.ts +0 -1134
  342. package/src/@claude-flow/shared/dist/core/config/validator.d.ts +0 -92
  343. package/src/@claude-flow/shared/dist/core/event-bus.d.ts +0 -31
  344. package/src/@claude-flow/shared/dist/core/index.d.ts +0 -15
  345. package/src/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts +0 -200
  346. package/src/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts +0 -310
  347. package/src/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts +0 -224
  348. package/src/@claude-flow/shared/dist/core/interfaces/index.d.ts +0 -10
  349. package/src/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts +0 -298
  350. package/src/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts +0 -185
  351. package/src/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts +0 -35
  352. package/src/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts +0 -60
  353. package/src/@claude-flow/shared/dist/core/orchestrator/index.d.ts +0 -46
  354. package/src/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts +0 -56
  355. package/src/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts +0 -83
  356. package/src/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts +0 -49
  357. package/src/@claude-flow/shared/dist/events/domain-events.d.ts +0 -282
  358. package/src/@claude-flow/shared/dist/events/event-store.d.ts +0 -126
  359. package/src/@claude-flow/shared/dist/events/event-store.test.d.ts +0 -8
  360. package/src/@claude-flow/shared/dist/events/example-usage.d.ts +0 -10
  361. package/src/@claude-flow/shared/dist/events/index.d.ts +0 -21
  362. package/src/@claude-flow/shared/dist/events/projections.d.ts +0 -177
  363. package/src/@claude-flow/shared/dist/events/rvf-event-log.d.ts +0 -82
  364. package/src/@claude-flow/shared/dist/events/state-reconstructor.d.ts +0 -101
  365. package/src/@claude-flow/shared/dist/events.d.ts +0 -80
  366. package/src/@claude-flow/shared/dist/hooks/example-usage.d.ts +0 -42
  367. package/src/@claude-flow/shared/dist/hooks/executor.d.ts +0 -100
  368. package/src/@claude-flow/shared/dist/hooks/hooks.test.d.ts +0 -9
  369. package/src/@claude-flow/shared/dist/hooks/index.d.ts +0 -52
  370. package/src/@claude-flow/shared/dist/hooks/registry.d.ts +0 -133
  371. package/src/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts +0 -105
  372. package/src/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts +0 -144
  373. package/src/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts +0 -158
  374. package/src/@claude-flow/shared/dist/hooks/safety/index.d.ts +0 -17
  375. package/src/@claude-flow/shared/dist/hooks/session-hooks.d.ts +0 -234
  376. package/src/@claude-flow/shared/dist/hooks/task-hooks.d.ts +0 -163
  377. package/src/@claude-flow/shared/dist/hooks/types.d.ts +0 -267
  378. package/src/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts +0 -9
  379. package/src/@claude-flow/shared/dist/index.d.ts +0 -20
  380. package/src/@claude-flow/shared/dist/mcp/connection-pool.d.ts +0 -98
  381. package/src/@claude-flow/shared/dist/mcp/index.d.ts +0 -69
  382. package/src/@claude-flow/shared/dist/mcp/server.d.ts +0 -166
  383. package/src/@claude-flow/shared/dist/mcp/session-manager.d.ts +0 -136
  384. package/src/@claude-flow/shared/dist/mcp/tool-registry.d.ts +0 -178
  385. package/src/@claude-flow/shared/dist/mcp/transport/http.d.ts +0 -104
  386. package/src/@claude-flow/shared/dist/mcp/transport/index.d.ts +0 -102
  387. package/src/@claude-flow/shared/dist/mcp/transport/stdio.d.ts +0 -104
  388. package/src/@claude-flow/shared/dist/mcp/transport/websocket.d.ts +0 -133
  389. package/src/@claude-flow/shared/dist/mcp/types.d.ts +0 -438
  390. package/src/@claude-flow/shared/dist/plugin-interface.d.ts +0 -544
  391. package/src/@claude-flow/shared/dist/plugin-loader.d.ts +0 -139
  392. package/src/@claude-flow/shared/dist/plugin-registry.d.ts +0 -183
  393. package/src/@claude-flow/shared/dist/plugins/index.d.ts +0 -10
  394. package/src/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts +0 -106
  395. package/src/@claude-flow/shared/dist/plugins/official/index.d.ts +0 -10
  396. package/src/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts +0 -121
  397. package/src/@claude-flow/shared/dist/plugins/types.d.ts +0 -93
  398. package/src/@claude-flow/shared/dist/resilience/bulkhead.d.ts +0 -105
  399. package/src/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts +0 -132
  400. package/src/@claude-flow/shared/dist/resilience/index.d.ts +0 -19
  401. package/src/@claude-flow/shared/dist/resilience/rate-limiter.d.ts +0 -168
  402. package/src/@claude-flow/shared/dist/resilience/retry.d.ts +0 -91
  403. package/src/@claude-flow/shared/dist/security/index.d.ts +0 -10
  404. package/src/@claude-flow/shared/dist/security/input-validation.d.ts +0 -73
  405. package/src/@claude-flow/shared/dist/security/secure-random.d.ts +0 -92
  406. package/src/@claude-flow/shared/dist/services/index.d.ts +0 -7
  407. package/src/@claude-flow/shared/dist/services/v3-progress.service.d.ts +0 -124
  408. package/src/@claude-flow/shared/dist/types/agent.types.d.ts +0 -137
  409. package/src/@claude-flow/shared/dist/types/index.d.ts +0 -11
  410. package/src/@claude-flow/shared/dist/types/mcp.types.d.ts +0 -266
  411. package/src/@claude-flow/shared/dist/types/memory.types.d.ts +0 -236
  412. package/src/@claude-flow/shared/dist/types/swarm.types.d.ts +0 -186
  413. package/src/@claude-flow/shared/dist/types/task.types.d.ts +0 -178
  414. package/src/@claude-flow/shared/dist/types.d.ts +0 -197
  415. package/src/@claude-flow/shared/dist/utils/secure-logger.d.ts +0 -69
@@ -1,194 +0,0 @@
1
- /**
2
- * Worker Queue Service
3
- * Redis-based task queue for distributed headless worker execution.
4
- *
5
- * ADR-020: Headless Worker Integration Architecture - Phase 4
6
- * - Priority-based task scheduling
7
- * - Result persistence and retrieval
8
- * - Distributed locking for task assignment
9
- * - Dead letter queue for failed tasks
10
- * - Metrics and monitoring
11
- *
12
- * Key Features:
13
- * - FIFO with priority levels (critical, high, normal, low)
14
- * - Automatic retry with exponential backoff
15
- * - Task timeout detection
16
- * - Result caching with TTL
17
- * - Worker heartbeat monitoring
18
- */
19
- import { EventEmitter } from 'events';
20
- import type { HeadlessWorkerType, HeadlessExecutionResult, WorkerPriority } from './headless-worker-executor.js';
21
- /**
22
- * Task status
23
- */
24
- export type TaskStatus = 'pending' | 'processing' | 'completed' | 'failed' | 'timeout' | 'cancelled';
25
- /**
26
- * Queue task
27
- */
28
- export interface QueueTask {
29
- id: string;
30
- workerType: HeadlessWorkerType;
31
- priority: WorkerPriority;
32
- payload: {
33
- prompt?: string;
34
- contextPatterns?: string[];
35
- sandbox?: string;
36
- model?: string;
37
- timeoutMs?: number;
38
- };
39
- status: TaskStatus;
40
- createdAt: Date;
41
- startedAt?: Date;
42
- completedAt?: Date;
43
- workerId?: string;
44
- retryCount: number;
45
- maxRetries: number;
46
- result?: HeadlessExecutionResult;
47
- error?: string;
48
- }
49
- /**
50
- * Queue configuration
51
- */
52
- export interface WorkerQueueConfig {
53
- /** Redis connection URL */
54
- redisUrl: string;
55
- /** Queue name prefix */
56
- queuePrefix: string;
57
- /** Default task timeout in ms */
58
- defaultTimeoutMs: number;
59
- /** Maximum retries for failed tasks */
60
- maxRetries: number;
61
- /** Task result TTL in seconds */
62
- resultTtlSeconds: number;
63
- /** Worker heartbeat interval in ms */
64
- heartbeatIntervalMs: number;
65
- /** Dead letter queue enabled */
66
- deadLetterEnabled: boolean;
67
- /** Visibility timeout in ms (task processing lock) */
68
- visibilityTimeoutMs: number;
69
- }
70
- /**
71
- * Queue statistics
72
- */
73
- export interface QueueStats {
74
- pending: number;
75
- processing: number;
76
- completed: number;
77
- failed: number;
78
- deadLetter: number;
79
- byPriority: Record<WorkerPriority, number>;
80
- byWorkerType: Partial<Record<HeadlessWorkerType, number>>;
81
- averageWaitTimeMs: number;
82
- averageProcessingTimeMs: number;
83
- }
84
- /**
85
- * Worker registration info
86
- */
87
- export interface WorkerRegistration {
88
- workerId: string;
89
- workerTypes: HeadlessWorkerType[];
90
- maxConcurrent: number;
91
- currentTasks: number;
92
- lastHeartbeat: Date;
93
- registeredAt: Date;
94
- hostname?: string;
95
- containerId?: string;
96
- }
97
- /**
98
- * WorkerQueue - Redis-based task queue for distributed worker execution
99
- */
100
- export declare class WorkerQueue extends EventEmitter {
101
- private config;
102
- private store;
103
- private workerId;
104
- private heartbeatTimer?;
105
- private processingTasks;
106
- private isShuttingDown;
107
- private maxConcurrent;
108
- private initialized;
109
- constructor(config?: Partial<WorkerQueueConfig>);
110
- /**
111
- * Initialize the queue (starts cleanup timers)
112
- */
113
- initialize(): Promise<void>;
114
- /**
115
- * Enqueue a new task
116
- */
117
- enqueue(workerType: HeadlessWorkerType, payload?: QueueTask['payload'], options?: {
118
- priority?: WorkerPriority;
119
- maxRetries?: number;
120
- timeoutMs?: number;
121
- }): Promise<string>;
122
- /**
123
- * Dequeue a task for processing
124
- */
125
- dequeue(workerTypes: HeadlessWorkerType[]): Promise<QueueTask | null>;
126
- /**
127
- * Complete a task with result
128
- */
129
- complete(taskId: string, result: HeadlessExecutionResult): Promise<void>;
130
- /**
131
- * Fail a task with error
132
- */
133
- fail(taskId: string, error: string, retryable?: boolean): Promise<void>;
134
- /**
135
- * Get task status
136
- */
137
- getTask(taskId: string): Promise<QueueTask | null>;
138
- /**
139
- * Get task result
140
- */
141
- getResult(taskId: string): Promise<HeadlessExecutionResult | null>;
142
- /**
143
- * Cancel a pending task
144
- */
145
- cancel(taskId: string): Promise<boolean>;
146
- /**
147
- * Register this instance as a worker
148
- */
149
- registerWorker(workerTypes: HeadlessWorkerType[], options?: {
150
- maxConcurrent?: number;
151
- hostname?: string;
152
- containerId?: string;
153
- }): Promise<string>;
154
- /**
155
- * Unregister this worker
156
- */
157
- unregisterWorker(): Promise<void>;
158
- /**
159
- * Get all registered workers
160
- */
161
- getWorkers(): Promise<WorkerRegistration[]>;
162
- /**
163
- * Get queue statistics
164
- */
165
- getStats(): Promise<QueueStats>;
166
- /**
167
- * Start processing tasks
168
- */
169
- start(workerTypes: HeadlessWorkerType[], handler: (task: QueueTask) => Promise<HeadlessExecutionResult>, options?: {
170
- maxConcurrent?: number;
171
- }): Promise<void>;
172
- /**
173
- * Process a single task
174
- */
175
- private processTask;
176
- /**
177
- * Shutdown the queue gracefully
178
- */
179
- shutdown(): Promise<void>;
180
- /**
181
- * Get queue name for worker type
182
- */
183
- private getQueueName;
184
- /**
185
- * Start heartbeat timer
186
- */
187
- private startHeartbeat;
188
- /**
189
- * Stop heartbeat timer
190
- */
191
- private stopHeartbeat;
192
- }
193
- export default WorkerQueue;
194
- //# sourceMappingURL=worker-queue.d.ts.map
@@ -1,88 +0,0 @@
1
- /**
2
- * Workflow Gate Service
3
- * Enforces TaskCreate + memory-first patterns before agent spawning
4
- * and file exploration. Tracks context bracket by interaction count.
5
- *
6
- * Ported from Motailz .claude/scripts/workflow-gate.mjs into MoFlo core.
7
- *
8
- * Gate types:
9
- * check-before-agent — blocks Agent tool if no TaskCreate or no memory search
10
- * check-before-scan — blocks Glob/Grep if no memory search (deduplicated)
11
- * check-before-read — blocks Read on .claude/guidance/ if no memory search
12
- * record-task-created — records TaskCreate usage
13
- * check-bash-memory — detects memory search in Bash commands
14
- * record-memory-searched — records MCP memory search
15
- * prompt-reminder — resets memory gate, increments interaction count
16
- * session-reset — resets all state
17
- */
18
- export interface WorkflowState {
19
- tasksCreated: boolean;
20
- taskCount: number;
21
- memorySearched: boolean;
22
- memoryRequired: boolean;
23
- interactionCount: number;
24
- sessionStart: string | null;
25
- lastBlockedAt: string | null;
26
- }
27
- export type ContextBracket = 'FRESH' | 'MODERATE' | 'DEPLETED' | 'CRITICAL';
28
- export interface GateResult {
29
- allowed: boolean;
30
- message?: string;
31
- }
32
- export declare class WorkflowGateService {
33
- private stateFilePath;
34
- private config;
35
- constructor(projectRoot?: string);
36
- readState(): WorkflowState;
37
- writeState(state: WorkflowState): void;
38
- getContextBracket(interactionCount: number): ContextBracket;
39
- /**
40
- * Check if Agent tool spawn is allowed.
41
- * Requires both TaskCreate and memory search.
42
- */
43
- checkBeforeAgent(): GateResult;
44
- /**
45
- * Check if Glob/Grep is allowed.
46
- * Blocks if memory is required AND not yet searched.
47
- * Warns (but allows) if memory is not required.
48
- */
49
- checkBeforeScan(pattern?: string, searchPath?: string): GateResult;
50
- /**
51
- * Check if Read on guidance files is allowed.
52
- * Only gates reads targeting .claude/guidance/ files.
53
- */
54
- checkBeforeRead(filePath?: string): GateResult;
55
- recordTaskCreated(): void;
56
- recordMemorySearched(): void;
57
- /**
58
- * Check if a bash command contains a memory search.
59
- * If so, auto-record memory as searched.
60
- */
61
- checkBashMemory(command: string): void;
62
- /**
63
- * Classify whether a user prompt requires memory search.
64
- * Directives (commit, rename, yes/no) don't need memory.
65
- * Tasks (fix, implement, debug, /flo) do.
66
- * Ambiguous prompts default to requiring memory.
67
- */
68
- classifyPrompt(prompt: string): boolean;
69
- /**
70
- * Called on each new user prompt.
71
- * Classifies prompt, resets memory gate, increments interaction count,
72
- * returns context bracket.
73
- */
74
- promptReminder(userPrompt?: string): {
75
- reminder?: string;
76
- bracket?: string;
77
- };
78
- /**
79
- * Reset all workflow state (new session).
80
- */
81
- sessionReset(): void;
82
- }
83
- /**
84
- * Process a workflow gate command from CLI args.
85
- * Used by hooks.mjs dispatcher.
86
- */
87
- export declare function processGateCommand(command: string, env?: Record<string, string | undefined>): void;
88
- //# sourceMappingURL=workflow-gate.d.ts.map
@@ -1,53 +0,0 @@
1
- /**
2
- * V3 CLI Smart Error Suggestions
3
- * Levenshtein distance and command suggestions
4
- *
5
- * Created with motailz.com
6
- */
7
- /**
8
- * Calculate Levenshtein distance between two strings
9
- */
10
- export declare function levenshteinDistance(a: string, b: string): number;
11
- /**
12
- * Calculate similarity score (0-1) between two strings
13
- */
14
- export declare function similarityScore(a: string, b: string): number;
15
- /**
16
- * Find similar strings from a list
17
- */
18
- export declare function findSimilar(input: string, candidates: string[], options?: {
19
- maxSuggestions?: number;
20
- minSimilarity?: number;
21
- maxDistance?: number;
22
- }): string[];
23
- /**
24
- * Format suggestion message for CLI errors
25
- */
26
- export declare function formatSuggestion(invalidInput: string, suggestions: string[], context?: 'command' | 'subcommand' | 'option' | 'value'): string;
27
- /**
28
- * Common typos and their corrections
29
- */
30
- export declare const COMMON_TYPOS: Record<string, string>;
31
- /**
32
- * Get corrected command if it's a common typo
33
- */
34
- export declare function getTypoCorrection(input: string): string | undefined;
35
- /**
36
- * Smart command suggestion for unknown commands
37
- */
38
- export declare function suggestCommand(unknownCommand: string, availableCommands: string[]): {
39
- correction?: string;
40
- suggestions: string[];
41
- message: string;
42
- };
43
- declare const _default: {
44
- levenshteinDistance: typeof levenshteinDistance;
45
- similarityScore: typeof similarityScore;
46
- findSimilar: typeof findSimilar;
47
- formatSuggestion: typeof formatSuggestion;
48
- suggestCommand: typeof suggestCommand;
49
- getTypoCorrection: typeof getTypoCorrection;
50
- COMMON_TYPOS: Record<string, string>;
51
- };
52
- export default _default;
53
- //# sourceMappingURL=suggest.d.ts.map
@@ -1,25 +0,0 @@
1
- /**
2
- * Anonymization Pipeline
3
- * PII detection and redaction for pattern export
4
- */
5
- import type { CFPFormat, AnonymizationLevel, PIIDetectionResult } from '../types.js';
6
- /**
7
- * Detect PII in a string
8
- */
9
- export declare function detectPII(content: string): PIIDetectionResult;
10
- /**
11
- * Redact PII from a string
12
- */
13
- export declare function redactPII(content: string): string;
14
- /**
15
- * Apply anonymization to CFP document
16
- */
17
- export declare function anonymizeCFP(cfp: CFPFormat, level: AnonymizationLevel): {
18
- cfp: CFPFormat;
19
- transforms: string[];
20
- };
21
- /**
22
- * Scan CFP for PII without modification
23
- */
24
- export declare function scanCFPForPII(cfp: CFPFormat): PIIDetectionResult;
25
- //# sourceMappingURL=index.d.ts.map
@@ -1,13 +0,0 @@
1
- #!/usr/bin/env npx tsx
2
- /**
3
- * Deploy Seraphine Genesis Model
4
- * Exports and uploads the first Claude Flow pattern model to IPFS
5
- *
6
- * Usage:
7
- * npx tsx deploy-seraphine.ts
8
- * npx tsx deploy-seraphine.ts --output ./patterns/
9
- * npx tsx deploy-seraphine.ts --to-ipfs
10
- * npx tsx deploy-seraphine.ts --to-ipfs --anonymize strict
11
- */
12
- export {};
13
- //# sourceMappingURL=deploy-seraphine.d.ts.map
@@ -1,25 +0,0 @@
1
- /**
2
- * Pattern Export Pipeline
3
- * Export patterns with anonymization and optional IPFS upload
4
- */
5
- import type { CFPFormat, ExportOptions, ExportResult } from './types.js';
6
- /**
7
- * Export patterns to file or IPFS
8
- */
9
- export declare function exportPatterns(cfp: CFPFormat, options?: ExportOptions): Promise<ExportResult>;
10
- /**
11
- * Export Seraphine genesis model
12
- */
13
- export declare function exportSeraphine(options?: ExportOptions): Promise<ExportResult>;
14
- /**
15
- * Quick export to file
16
- */
17
- export declare function quickExport(cfp: CFPFormat, outputPath: string): Promise<ExportResult>;
18
- /**
19
- * Quick export to IPFS
20
- */
21
- export declare function quickExportToIPFS(cfp: CFPFormat, options?: {
22
- gateway?: string;
23
- pin?: boolean;
24
- }): Promise<ExportResult>;
25
- //# sourceMappingURL=export.d.ts.map
@@ -1,12 +0,0 @@
1
- /**
2
- * Transfer Module
3
- * Pattern export, import, anonymization, and IPFS sharing
4
- */
5
- export * from './types.js';
6
- export { createCFP, serializeToJson, serializeToBuffer, deserializeCFP, validateCFP, getFileExtension, detectFormat, } from './serialization/cfp.js';
7
- export { detectPII, redactPII, anonymizeCFP, scanCFPForPII, } from './anonymization/index.js';
8
- export { exportPatterns, exportSeraphine, quickExport, quickExportToIPFS, } from './export.js';
9
- export { uploadToIPFS, pinContent, unpinContent, checkContent, getGatewayURL, getIPNSURL, } from './ipfs/upload.js';
10
- export { SERAPHINE_VERSION, SERAPHINE_METADATA, SERAPHINE_ROUTING_PATTERNS, SERAPHINE_COMPLEXITY_PATTERNS, SERAPHINE_COVERAGE_PATTERNS, SERAPHINE_TRAJECTORY_PATTERNS, SERAPHINE_CUSTOM_PATTERNS, createSeraphinePatterns, createSeraphineGenesis, getSeraphineInfo, } from './models/seraphine.js';
11
- export { type PatternEntry, type PatternAuthor, type PatternCategory, type PatternRegistry, type SearchOptions, type SearchResult, type PublishOptions, type PublishResult, type DownloadOptions, type DownloadResult, type KnownRegistry, type StoreConfig, type DiscoveryResult, type IPNSResolution, type DownloadProgressCallback, type ContributionRequest, REGISTRY_VERSION, BOOTSTRAP_REGISTRIES, DEFAULT_STORE_CONFIG, createRegistry, getDefaultCategories, addPatternToRegistry, removePatternFromRegistry, serializeRegistry, deserializeRegistry, signRegistry, verifyRegistrySignature, mergeRegistries, generatePatternId, PatternDiscovery, createDiscoveryService, searchPatterns, getFeaturedPatterns, getTrendingPatterns, getNewestPatterns, getPatternById, getPatternByName, getPatternsByAuthor, getPatternsByCategory, getSimilarPatterns, getCategoryStats, getTagCloud, getSearchSuggestions, PatternDownloader, batchDownload, createDownloader, PatternPublisher, submitContribution, checkContributionStatus, createPublisher, quickPublish, PatternStore, createPatternStore, } from './store/index.js';
12
- //# sourceMappingURL=index.d.ts.map
@@ -1,109 +0,0 @@
1
- /**
2
- * IPFS Client Module
3
- * Low-level IPFS operations for discovery and fetching
4
- *
5
- * Supports multiple gateways with automatic fallback:
6
- * - Pinata (recommended for pinned content)
7
- * - Cloudflare IPFS
8
- * - Protocol Labs ipfs.io
9
- * - dweb.link (LibP2P)
10
- */
11
- /**
12
- * Available IPFS gateways in priority order
13
- */
14
- export declare const IPFS_GATEWAYS: string[];
15
- /**
16
- * IPNS resolvers
17
- */
18
- export declare const IPNS_RESOLVERS: string[];
19
- /**
20
- * Gateway configuration
21
- */
22
- export interface GatewayConfig {
23
- url: string;
24
- timeout?: number;
25
- headers?: Record<string, string>;
26
- priority?: number;
27
- }
28
- /**
29
- * Fetch result with metadata
30
- */
31
- export interface FetchResult<T> {
32
- data: T;
33
- gateway: string;
34
- cid: string;
35
- cached: boolean;
36
- latencyMs: number;
37
- }
38
- /**
39
- * Resolve IPNS name to CID with fallback across multiple gateways
40
- *
41
- * @param ipnsName - IPNS key or DNSLink domain
42
- * @param preferredGateway - Optional preferred gateway to try first
43
- * @returns CID string or null if resolution fails
44
- */
45
- export declare function resolveIPNS(ipnsName: string, preferredGateway?: string): Promise<string | null>;
46
- /**
47
- * Fetch content from IPFS by CID with fallback across multiple gateways
48
- *
49
- * @param cid - Content Identifier
50
- * @param preferredGateway - Optional preferred gateway to try first
51
- * @returns Parsed JSON content or null if fetch fails
52
- */
53
- export declare function fetchFromIPFS<T>(cid: string, preferredGateway?: string): Promise<T | null>;
54
- /**
55
- * Fetch with full result metadata
56
- */
57
- export declare function fetchFromIPFSWithMetadata<T>(cid: string, preferredGateway?: string): Promise<FetchResult<T> | null>;
58
- /**
59
- * Check if CID is pinned/available on a gateway
60
- */
61
- export declare function isPinned(cid: string, gateway?: string): Promise<boolean>;
62
- /**
63
- * Check availability across multiple gateways
64
- */
65
- export declare function checkAvailability(cid: string): Promise<{
66
- available: boolean;
67
- gateways: Array<{
68
- url: string;
69
- available: boolean;
70
- latencyMs: number;
71
- }>;
72
- }>;
73
- /**
74
- * Get IPFS gateway URL for a CID
75
- */
76
- export declare function getGatewayUrl(cid: string, gateway?: string): string;
77
- /**
78
- * Get multiple gateway URLs for redundancy
79
- */
80
- export declare function getGatewayUrls(cid: string): string[];
81
- /**
82
- * Validate CID format (CIDv0 and CIDv1)
83
- */
84
- export declare function isValidCID(cid: string): boolean;
85
- /**
86
- * Validate IPNS name format
87
- */
88
- export declare function isValidIPNS(ipnsName: string): boolean;
89
- /**
90
- * Generate content hash for verification
91
- */
92
- export declare function hashContent(content: Buffer | string): string;
93
- /**
94
- * Verify Ed25519 signature (async import to avoid bundling issues)
95
- */
96
- export declare function verifyEd25519Signature(message: string, signature: string, publicKey: string): Promise<boolean>;
97
- /**
98
- * Parse CID to extract metadata
99
- */
100
- export declare function parseCID(cid: string): {
101
- version: 0 | 1;
102
- codec: string;
103
- hash: string;
104
- } | null;
105
- /**
106
- * Format bytes to human readable
107
- */
108
- export declare function formatBytes(bytes: number): string;
109
- //# sourceMappingURL=client.d.ts.map
@@ -1,95 +0,0 @@
1
- /**
2
- * IPFS Upload Module
3
- * Real upload support via web3.storage, Pinata, or local IPFS
4
- *
5
- * @module @claude-flow/cli/transfer/ipfs/upload
6
- * @version 3.0.0
7
- */
8
- import type { PinningService } from '../types.js';
9
- /**
10
- * IPFS upload options
11
- */
12
- export interface IPFSUploadOptions {
13
- pin?: boolean;
14
- pinningService?: PinningService;
15
- gateway?: string;
16
- name?: string;
17
- wrapWithDirectory?: boolean;
18
- apiKey?: string;
19
- apiSecret?: string;
20
- }
21
- /**
22
- * IPFS upload result
23
- */
24
- export interface IPFSUploadResult {
25
- cid: string;
26
- size: number;
27
- gateway: string;
28
- pinnedAt?: string;
29
- url: string;
30
- }
31
- /**
32
- * Upload content to IPFS
33
- *
34
- * Supports (in order of preference):
35
- * - Local/Custom IPFS node (IPFS_API_URL) - FREE, your own node
36
- * - web3.storage (WEB3_STORAGE_TOKEN) - Free 5GB tier
37
- * - Pinata (PINATA_API_KEY + PINATA_API_SECRET) - Free 1GB tier
38
- * - Demo mode (generates deterministic CIDs when no credentials)
39
- */
40
- export declare function uploadToIPFS(content: Buffer, options?: IPFSUploadOptions): Promise<IPFSUploadResult>;
41
- /**
42
- * Pin content by CID
43
- */
44
- export declare function pinContent(cid: string, options?: {
45
- service?: PinningService;
46
- name?: string;
47
- }): Promise<{
48
- success: boolean;
49
- pinnedAt: string;
50
- }>;
51
- /**
52
- * Unpin content by CID
53
- */
54
- export declare function unpinContent(cid: string, options?: {
55
- service?: PinningService;
56
- }): Promise<{
57
- success: boolean;
58
- }>;
59
- /**
60
- * Check if content exists on IPFS
61
- */
62
- export declare function checkContent(cid: string, gateway?: string): Promise<{
63
- exists: boolean;
64
- size?: number;
65
- }>;
66
- /**
67
- * Get gateway URL for CID
68
- */
69
- export declare function getGatewayURL(cid: string, gateway?: string): string;
70
- /**
71
- * Get IPNS URL for name
72
- */
73
- export declare function getIPNSURL(name: string, gateway?: string): string;
74
- /**
75
- * Check if local IPFS node is available
76
- */
77
- declare function checkLocalIPFSNode(): Promise<boolean>;
78
- /**
79
- * Check if real IPFS credentials are available
80
- */
81
- export declare function hasIPFSCredentials(): boolean;
82
- /**
83
- * Get IPFS service status
84
- */
85
- export declare function getIPFSServiceStatus(): {
86
- service: 'local' | 'web3storage' | 'pinata' | 'demo';
87
- configured: boolean;
88
- message: string;
89
- apiUrl?: string;
90
- };
91
- /**
92
- * Export the local IPFS check for external use
93
- */
94
- export { checkLocalIPFSNode };
95
- //# sourceMappingURL=upload.d.ts.map
@@ -1,72 +0,0 @@
1
- /**
2
- * Seraphine Genesis Model
3
- * The first Claude Flow pattern model - "Hello World" for pattern sharing
4
- *
5
- * Seraphine represents the foundational patterns for intelligent agent coordination.
6
- * Named after the Greek "Seraphim" (burning ones), symbolizing the spark of knowledge
7
- * that ignites collaborative AI intelligence.
8
- */
9
- import type { CFPFormat, PatternCollection, RoutingPattern, ComplexityPattern, CoveragePattern, TrajectoryPattern, CustomPattern } from '../types.js';
10
- /**
11
- * Seraphine model version
12
- */
13
- export declare const SERAPHINE_VERSION = "1.0.0";
14
- /**
15
- * Seraphine model metadata
16
- */
17
- export declare const SERAPHINE_METADATA: {
18
- name: string;
19
- displayName: string;
20
- description: string;
21
- author: {
22
- id: string;
23
- displayName: string;
24
- };
25
- license: string;
26
- tags: string[];
27
- language: string;
28
- framework: string;
29
- };
30
- /**
31
- * Core routing patterns for Seraphine
32
- * These define how tasks are routed to appropriate agents
33
- */
34
- export declare const SERAPHINE_ROUTING_PATTERNS: RoutingPattern[];
35
- /**
36
- * Complexity heuristics for Seraphine
37
- * These help estimate task complexity for resource allocation
38
- */
39
- export declare const SERAPHINE_COMPLEXITY_PATTERNS: ComplexityPattern[];
40
- /**
41
- * Coverage patterns for Seraphine
42
- * These track knowledge domain coverage
43
- */
44
- export declare const SERAPHINE_COVERAGE_PATTERNS: CoveragePattern[];
45
- /**
46
- * Trajectory patterns for Seraphine
47
- * These capture successful task execution paths
48
- */
49
- export declare const SERAPHINE_TRAJECTORY_PATTERNS: TrajectoryPattern[];
50
- /**
51
- * Custom patterns for Seraphine
52
- * These are specialized patterns unique to Seraphine
53
- */
54
- export declare const SERAPHINE_CUSTOM_PATTERNS: CustomPattern[];
55
- /**
56
- * Create the complete Seraphine pattern collection
57
- */
58
- export declare function createSeraphinePatterns(): PatternCollection;
59
- /**
60
- * Create the Seraphine Genesis CFP document
61
- */
62
- export declare function createSeraphineGenesis(): CFPFormat;
63
- /**
64
- * Get Seraphine model info
65
- */
66
- export declare function getSeraphineInfo(): {
67
- name: string;
68
- version: string;
69
- description: string;
70
- patternCounts: Record<string, number>;
71
- };
72
- //# sourceMappingURL=seraphine.d.ts.map