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,797 +0,0 @@
1
- ---
2
- name: "V3 Core Implementation"
3
- description: "Core module implementation for claude-flow v3. Implements DDD domains, clean architecture patterns, dependency injection, and modular TypeScript codebase with comprehensive testing."
4
- ---
5
-
6
- # V3 Core Implementation
7
-
8
- ## What This Skill Does
9
-
10
- Implements the core TypeScript modules for claude-flow v3 following Domain-Driven Design principles, clean architecture patterns, and modern TypeScript best practices with comprehensive test coverage.
11
-
12
- ## Quick Start
13
-
14
- ```bash
15
- # Initialize core implementation
16
- Task("Core foundation", "Set up DDD domain structure and base classes", "core-implementer")
17
-
18
- # Domain implementation (parallel)
19
- Task("Task domain", "Implement task management domain with entities and services", "core-implementer")
20
- Task("Session domain", "Implement session management domain", "core-implementer")
21
- Task("Health domain", "Implement health monitoring domain", "core-implementer")
22
- ```
23
-
24
- ## Core Implementation Architecture
25
-
26
- ### Domain Structure
27
- ```
28
- src/
29
- ├── core/
30
- │ ├── kernel/ # Microkernel pattern
31
- │ │ ├── claude-flow-kernel.ts
32
- │ │ ├── domain-registry.ts
33
- │ │ └── plugin-loader.ts
34
- │ │
35
- │ ├── domains/ # DDD Bounded Contexts
36
- │ │ ├── task-management/
37
- │ │ │ ├── entities/
38
- │ │ │ ├── value-objects/
39
- │ │ │ ├── services/
40
- │ │ │ ├── repositories/
41
- │ │ │ └── events/
42
- │ │ │
43
- │ │ ├── session-management/
44
- │ │ ├── health-monitoring/
45
- │ │ ├── lifecycle-management/
46
- │ │ └── event-coordination/
47
- │ │
48
- │ ├── shared/ # Shared kernel
49
- │ │ ├── domain/
50
- │ │ │ ├── entity.ts
51
- │ │ │ ├── value-object.ts
52
- │ │ │ ├── domain-event.ts
53
- │ │ │ └── aggregate-root.ts
54
- │ │ │
55
- │ │ ├── infrastructure/
56
- │ │ │ ├── event-bus.ts
57
- │ │ │ ├── dependency-container.ts
58
- │ │ │ └── logger.ts
59
- │ │ │
60
- │ │ └── types/
61
- │ │ ├── common.ts
62
- │ │ ├── errors.ts
63
- │ │ └── interfaces.ts
64
- │ │
65
- │ └── application/ # Application services
66
- │ ├── use-cases/
67
- │ ├── commands/
68
- │ ├── queries/
69
- │ └── handlers/
70
- ```
71
-
72
- ## Base Domain Classes
73
-
74
- ### Entity Base Class
75
- ```typescript
76
- // src/core/shared/domain/entity.ts
77
- export abstract class Entity<T> {
78
- protected readonly _id: T;
79
- private _domainEvents: DomainEvent[] = [];
80
-
81
- constructor(id: T) {
82
- this._id = id;
83
- }
84
-
85
- get id(): T {
86
- return this._id;
87
- }
88
-
89
- public equals(object?: Entity<T>): boolean {
90
- if (object == null || object == undefined) {
91
- return false;
92
- }
93
-
94
- if (this === object) {
95
- return true;
96
- }
97
-
98
- if (!(object instanceof Entity)) {
99
- return false;
100
- }
101
-
102
- return this._id === object._id;
103
- }
104
-
105
- protected addDomainEvent(domainEvent: DomainEvent): void {
106
- this._domainEvents.push(domainEvent);
107
- }
108
-
109
- public getUncommittedEvents(): DomainEvent[] {
110
- return this._domainEvents;
111
- }
112
-
113
- public markEventsAsCommitted(): void {
114
- this._domainEvents = [];
115
- }
116
- }
117
- ```
118
-
119
- ### Value Object Base Class
120
- ```typescript
121
- // src/core/shared/domain/value-object.ts
122
- export abstract class ValueObject<T> {
123
- protected readonly props: T;
124
-
125
- constructor(props: T) {
126
- this.props = Object.freeze(props);
127
- }
128
-
129
- public equals(object?: ValueObject<T>): boolean {
130
- if (object == null || object == undefined) {
131
- return false;
132
- }
133
-
134
- if (this === object) {
135
- return true;
136
- }
137
-
138
- return JSON.stringify(this.props) === JSON.stringify(object.props);
139
- }
140
-
141
- get value(): T {
142
- return this.props;
143
- }
144
- }
145
- ```
146
-
147
- ### Aggregate Root
148
- ```typescript
149
- // src/core/shared/domain/aggregate-root.ts
150
- export abstract class AggregateRoot<T> extends Entity<T> {
151
- private _version: number = 0;
152
-
153
- get version(): number {
154
- return this._version;
155
- }
156
-
157
- protected incrementVersion(): void {
158
- this._version++;
159
- }
160
-
161
- public applyEvent(event: DomainEvent): void {
162
- this.addDomainEvent(event);
163
- this.incrementVersion();
164
- }
165
- }
166
- ```
167
-
168
- ## Task Management Domain Implementation
169
-
170
- ### Task Entity
171
- ```typescript
172
- // src/core/domains/task-management/entities/task.entity.ts
173
- import { AggregateRoot } from '../../../shared/domain/aggregate-root';
174
- import { TaskId } from '../value-objects/task-id.vo';
175
- import { TaskStatus } from '../value-objects/task-status.vo';
176
- import { Priority } from '../value-objects/priority.vo';
177
- import { TaskAssignedEvent } from '../events/task-assigned.event';
178
-
179
- interface TaskProps {
180
- id: TaskId;
181
- description: string;
182
- priority: Priority;
183
- status: TaskStatus;
184
- assignedAgentId?: string;
185
- createdAt: Date;
186
- updatedAt: Date;
187
- }
188
-
189
- export class Task extends AggregateRoot<TaskId> {
190
- private props: TaskProps;
191
-
192
- private constructor(props: TaskProps) {
193
- super(props.id);
194
- this.props = props;
195
- }
196
-
197
- static create(description: string, priority: Priority): Task {
198
- const task = new Task({
199
- id: TaskId.create(),
200
- description,
201
- priority,
202
- status: TaskStatus.pending(),
203
- createdAt: new Date(),
204
- updatedAt: new Date()
205
- });
206
-
207
- return task;
208
- }
209
-
210
- static reconstitute(props: TaskProps): Task {
211
- return new Task(props);
212
- }
213
-
214
- public assignTo(agentId: string): void {
215
- if (this.props.status.equals(TaskStatus.completed())) {
216
- throw new Error('Cannot assign completed task');
217
- }
218
-
219
- this.props.assignedAgentId = agentId;
220
- this.props.status = TaskStatus.assigned();
221
- this.props.updatedAt = new Date();
222
-
223
- this.applyEvent(new TaskAssignedEvent(
224
- this.id.value,
225
- agentId,
226
- this.props.priority
227
- ));
228
- }
229
-
230
- public complete(result: TaskResult): void {
231
- if (!this.props.assignedAgentId) {
232
- throw new Error('Cannot complete unassigned task');
233
- }
234
-
235
- this.props.status = TaskStatus.completed();
236
- this.props.updatedAt = new Date();
237
-
238
- this.applyEvent(new TaskCompletedEvent(
239
- this.id.value,
240
- result,
241
- this.calculateDuration()
242
- ));
243
- }
244
-
245
- // Getters
246
- get description(): string { return this.props.description; }
247
- get priority(): Priority { return this.props.priority; }
248
- get status(): TaskStatus { return this.props.status; }
249
- get assignedAgentId(): string | undefined { return this.props.assignedAgentId; }
250
- get createdAt(): Date { return this.props.createdAt; }
251
- get updatedAt(): Date { return this.props.updatedAt; }
252
-
253
- private calculateDuration(): number {
254
- return this.props.updatedAt.getTime() - this.props.createdAt.getTime();
255
- }
256
- }
257
- ```
258
-
259
- ### Task Value Objects
260
- ```typescript
261
- // src/core/domains/task-management/value-objects/task-id.vo.ts
262
- export class TaskId extends ValueObject<string> {
263
- private constructor(value: string) {
264
- super({ value });
265
- }
266
-
267
- static create(): TaskId {
268
- return new TaskId(crypto.randomUUID());
269
- }
270
-
271
- static fromString(id: string): TaskId {
272
- if (!id || id.length === 0) {
273
- throw new Error('TaskId cannot be empty');
274
- }
275
- return new TaskId(id);
276
- }
277
-
278
- get value(): string {
279
- return this.props.value;
280
- }
281
- }
282
-
283
- // src/core/domains/task-management/value-objects/task-status.vo.ts
284
- type TaskStatusType = 'pending' | 'assigned' | 'in_progress' | 'completed' | 'failed';
285
-
286
- export class TaskStatus extends ValueObject<TaskStatusType> {
287
- private constructor(status: TaskStatusType) {
288
- super({ value: status });
289
- }
290
-
291
- static pending(): TaskStatus { return new TaskStatus('pending'); }
292
- static assigned(): TaskStatus { return new TaskStatus('assigned'); }
293
- static inProgress(): TaskStatus { return new TaskStatus('in_progress'); }
294
- static completed(): TaskStatus { return new TaskStatus('completed'); }
295
- static failed(): TaskStatus { return new TaskStatus('failed'); }
296
-
297
- get value(): TaskStatusType {
298
- return this.props.value;
299
- }
300
-
301
- public isPending(): boolean { return this.value === 'pending'; }
302
- public isAssigned(): boolean { return this.value === 'assigned'; }
303
- public isInProgress(): boolean { return this.value === 'in_progress'; }
304
- public isCompleted(): boolean { return this.value === 'completed'; }
305
- public isFailed(): boolean { return this.value === 'failed'; }
306
- }
307
-
308
- // src/core/domains/task-management/value-objects/priority.vo.ts
309
- type PriorityLevel = 'low' | 'medium' | 'high' | 'critical';
310
-
311
- export class Priority extends ValueObject<PriorityLevel> {
312
- private constructor(level: PriorityLevel) {
313
- super({ value: level });
314
- }
315
-
316
- static low(): Priority { return new Priority('low'); }
317
- static medium(): Priority { return new Priority('medium'); }
318
- static high(): Priority { return new Priority('high'); }
319
- static critical(): Priority { return new Priority('critical'); }
320
-
321
- get value(): PriorityLevel {
322
- return this.props.value;
323
- }
324
-
325
- public getNumericValue(): number {
326
- const priorities = { low: 1, medium: 2, high: 3, critical: 4 };
327
- return priorities[this.value];
328
- }
329
- }
330
- ```
331
-
332
- ## Domain Services
333
-
334
- ### Task Scheduling Service
335
- ```typescript
336
- // src/core/domains/task-management/services/task-scheduling.service.ts
337
- import { Injectable } from '../../../shared/infrastructure/dependency-container';
338
- import { Task } from '../entities/task.entity';
339
- import { Priority } from '../value-objects/priority.vo';
340
-
341
- @Injectable()
342
- export class TaskSchedulingService {
343
- public prioritizeTasks(tasks: Task[]): Task[] {
344
- return tasks.sort((a, b) =>
345
- b.priority.getNumericValue() - a.priority.getNumericValue()
346
- );
347
- }
348
-
349
- public canSchedule(task: Task, agentCapacity: number): boolean {
350
- if (agentCapacity <= 0) return false;
351
-
352
- // Critical tasks always schedulable
353
- if (task.priority.equals(Priority.critical())) return true;
354
-
355
- // Other logic based on capacity
356
- return true;
357
- }
358
-
359
- public calculateEstimatedDuration(task: Task): number {
360
- // Simple heuristic - would use ML in real implementation
361
- const baseTime = 300000; // 5 minutes
362
- const priorityMultiplier = {
363
- low: 0.5,
364
- medium: 1.0,
365
- high: 1.5,
366
- critical: 2.0
367
- };
368
-
369
- return baseTime * priorityMultiplier[task.priority.value];
370
- }
371
- }
372
- ```
373
-
374
- ## Repository Interfaces & Implementations
375
-
376
- ### Task Repository Interface
377
- ```typescript
378
- // src/core/domains/task-management/repositories/task.repository.ts
379
- export interface ITaskRepository {
380
- save(task: Task): Promise<void>;
381
- findById(id: TaskId): Promise<Task | null>;
382
- findByAgentId(agentId: string): Promise<Task[]>;
383
- findByStatus(status: TaskStatus): Promise<Task[]>;
384
- findPendingTasks(): Promise<Task[]>;
385
- delete(id: TaskId): Promise<void>;
386
- }
387
- ```
388
-
389
- ### SQLite Implementation
390
- ```typescript
391
- // src/core/domains/task-management/repositories/sqlite-task.repository.ts
392
- @Injectable()
393
- export class SqliteTaskRepository implements ITaskRepository {
394
- constructor(
395
- @Inject('Database') private db: Database,
396
- @Inject('Logger') private logger: ILogger
397
- ) {}
398
-
399
- async save(task: Task): Promise<void> {
400
- const sql = `
401
- INSERT OR REPLACE INTO tasks (
402
- id, description, priority, status, assigned_agent_id, created_at, updated_at
403
- ) VALUES (?, ?, ?, ?, ?, ?, ?)
404
- `;
405
-
406
- await this.db.run(sql, [
407
- task.id.value,
408
- task.description,
409
- task.priority.value,
410
- task.status.value,
411
- task.assignedAgentId,
412
- task.createdAt.toISOString(),
413
- task.updatedAt.toISOString()
414
- ]);
415
-
416
- this.logger.debug(`Task saved: ${task.id.value}`);
417
- }
418
-
419
- async findById(id: TaskId): Promise<Task | null> {
420
- const sql = 'SELECT * FROM tasks WHERE id = ?';
421
- const row = await this.db.get(sql, [id.value]);
422
-
423
- return row ? this.mapRowToTask(row) : null;
424
- }
425
-
426
- async findPendingTasks(): Promise<Task[]> {
427
- const sql = 'SELECT * FROM tasks WHERE status = ? ORDER BY priority DESC, created_at ASC';
428
- const rows = await this.db.all(sql, ['pending']);
429
-
430
- return rows.map(row => this.mapRowToTask(row));
431
- }
432
-
433
- private mapRowToTask(row: any): Task {
434
- return Task.reconstitute({
435
- id: TaskId.fromString(row.id),
436
- description: row.description,
437
- priority: Priority.fromString(row.priority),
438
- status: TaskStatus.fromString(row.status),
439
- assignedAgentId: row.assigned_agent_id,
440
- createdAt: new Date(row.created_at),
441
- updatedAt: new Date(row.updated_at)
442
- });
443
- }
444
- }
445
- ```
446
-
447
- ## Application Layer
448
-
449
- ### Use Case Implementation
450
- ```typescript
451
- // src/core/application/use-cases/assign-task.use-case.ts
452
- @Injectable()
453
- export class AssignTaskUseCase {
454
- constructor(
455
- @Inject('TaskRepository') private taskRepository: ITaskRepository,
456
- @Inject('AgentRepository') private agentRepository: IAgentRepository,
457
- @Inject('DomainEventBus') private eventBus: DomainEventBus,
458
- @Inject('Logger') private logger: ILogger
459
- ) {}
460
-
461
- async execute(command: AssignTaskCommand): Promise<AssignTaskResult> {
462
- try {
463
- // 1. Validate command
464
- await this.validateCommand(command);
465
-
466
- // 2. Load aggregates
467
- const task = await this.taskRepository.findById(command.taskId);
468
- if (!task) {
469
- throw new TaskNotFoundError(command.taskId);
470
- }
471
-
472
- const agent = await this.agentRepository.findById(command.agentId);
473
- if (!agent) {
474
- throw new AgentNotFoundError(command.agentId);
475
- }
476
-
477
- // 3. Business logic
478
- if (!agent.canAcceptTask(task)) {
479
- throw new AgentCannotAcceptTaskError(command.agentId, command.taskId);
480
- }
481
-
482
- task.assignTo(command.agentId);
483
- agent.acceptTask(task.id);
484
-
485
- // 4. Persist changes
486
- await Promise.all([
487
- this.taskRepository.save(task),
488
- this.agentRepository.save(agent)
489
- ]);
490
-
491
- // 5. Publish domain events
492
- const events = [
493
- ...task.getUncommittedEvents(),
494
- ...agent.getUncommittedEvents()
495
- ];
496
-
497
- for (const event of events) {
498
- await this.eventBus.publish(event);
499
- }
500
-
501
- task.markEventsAsCommitted();
502
- agent.markEventsAsCommitted();
503
-
504
- // 6. Return result
505
- this.logger.info(`Task ${command.taskId.value} assigned to agent ${command.agentId}`);
506
-
507
- return AssignTaskResult.success({
508
- taskId: task.id,
509
- agentId: command.agentId,
510
- assignedAt: new Date()
511
- });
512
-
513
- } catch (error) {
514
- this.logger.error(`Failed to assign task ${command.taskId.value}:`, error);
515
- return AssignTaskResult.failure(error);
516
- }
517
- }
518
-
519
- private async validateCommand(command: AssignTaskCommand): Promise<void> {
520
- if (!command.taskId) {
521
- throw new ValidationError('Task ID is required');
522
- }
523
- if (!command.agentId) {
524
- throw new ValidationError('Agent ID is required');
525
- }
526
- }
527
- }
528
- ```
529
-
530
- ## Dependency Injection Setup
531
-
532
- ### Container Configuration
533
- ```typescript
534
- // src/core/shared/infrastructure/dependency-container.ts
535
- import { Container } from 'inversify';
536
- import { TYPES } from './types';
537
-
538
- export class DependencyContainer {
539
- private container: Container;
540
-
541
- constructor() {
542
- this.container = new Container();
543
- this.setupBindings();
544
- }
545
-
546
- private setupBindings(): void {
547
- // Repositories
548
- this.container.bind<ITaskRepository>(TYPES.TaskRepository)
549
- .to(SqliteTaskRepository)
550
- .inSingletonScope();
551
-
552
- this.container.bind<IAgentRepository>(TYPES.AgentRepository)
553
- .to(SqliteAgentRepository)
554
- .inSingletonScope();
555
-
556
- // Services
557
- this.container.bind<TaskSchedulingService>(TYPES.TaskSchedulingService)
558
- .to(TaskSchedulingService)
559
- .inSingletonScope();
560
-
561
- // Use Cases
562
- this.container.bind<AssignTaskUseCase>(TYPES.AssignTaskUseCase)
563
- .to(AssignTaskUseCase)
564
- .inSingletonScope();
565
-
566
- // Infrastructure
567
- this.container.bind<ILogger>(TYPES.Logger)
568
- .to(ConsoleLogger)
569
- .inSingletonScope();
570
-
571
- this.container.bind<DomainEventBus>(TYPES.DomainEventBus)
572
- .to(InMemoryDomainEventBus)
573
- .inSingletonScope();
574
- }
575
-
576
- get<T>(serviceIdentifier: symbol): T {
577
- return this.container.get<T>(serviceIdentifier);
578
- }
579
-
580
- bind<T>(serviceIdentifier: symbol): BindingToSyntax<T> {
581
- return this.container.bind<T>(serviceIdentifier);
582
- }
583
- }
584
- ```
585
-
586
- ## Modern TypeScript Configuration
587
-
588
- ### Strict TypeScript Setup
589
- ```json
590
- // tsconfig.json
591
- {
592
- "compilerOptions": {
593
- "target": "ES2022",
594
- "lib": ["ES2022"],
595
- "module": "NodeNext",
596
- "moduleResolution": "NodeNext",
597
- "declaration": true,
598
- "outDir": "./dist",
599
- "strict": true,
600
- "exactOptionalPropertyTypes": true,
601
- "noImplicitReturns": true,
602
- "noFallthroughCasesInSwitch": true,
603
- "noUncheckedIndexedAccess": true,
604
- "noImplicitOverride": true,
605
- "experimentalDecorators": true,
606
- "emitDecoratorMetadata": true,
607
- "skipLibCheck": true,
608
- "forceConsistentCasingInFileNames": true,
609
- "resolveJsonModule": true,
610
- "esModuleInterop": true,
611
- "allowSyntheticDefaultImports": true,
612
- "baseUrl": ".",
613
- "paths": {
614
- "@/*": ["src/*"],
615
- "@core/*": ["src/core/*"],
616
- "@shared/*": ["src/core/shared/*"],
617
- "@domains/*": ["src/core/domains/*"]
618
- }
619
- },
620
- "include": ["src/**/*"],
621
- "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
622
- }
623
- ```
624
-
625
- ## Testing Implementation
626
-
627
- ### Domain Unit Tests
628
- ```typescript
629
- // src/core/domains/task-management/__tests__/entities/task.entity.test.ts
630
- describe('Task Entity', () => {
631
- let task: Task;
632
-
633
- beforeEach(() => {
634
- task = Task.create('Test task', Priority.medium());
635
- });
636
-
637
- describe('creation', () => {
638
- it('should create task with pending status', () => {
639
- expect(task.status.isPending()).toBe(true);
640
- expect(task.description).toBe('Test task');
641
- expect(task.priority.equals(Priority.medium())).toBe(true);
642
- });
643
-
644
- it('should generate unique ID', () => {
645
- const task1 = Task.create('Task 1', Priority.low());
646
- const task2 = Task.create('Task 2', Priority.low());
647
-
648
- expect(task1.id.equals(task2.id)).toBe(false);
649
- });
650
- });
651
-
652
- describe('assignment', () => {
653
- it('should assign to agent and change status', () => {
654
- const agentId = 'agent-123';
655
-
656
- task.assignTo(agentId);
657
-
658
- expect(task.assignedAgentId).toBe(agentId);
659
- expect(task.status.isAssigned()).toBe(true);
660
- });
661
-
662
- it('should emit TaskAssignedEvent when assigned', () => {
663
- const agentId = 'agent-123';
664
-
665
- task.assignTo(agentId);
666
-
667
- const events = task.getUncommittedEvents();
668
- expect(events).toHaveLength(1);
669
- expect(events[0]).toBeInstanceOf(TaskAssignedEvent);
670
- });
671
-
672
- it('should not allow assignment of completed task', () => {
673
- task.assignTo('agent-123');
674
- task.complete(TaskResult.success('done'));
675
-
676
- expect(() => task.assignTo('agent-456'))
677
- .toThrow('Cannot assign completed task');
678
- });
679
- });
680
- });
681
- ```
682
-
683
- ### Integration Tests
684
- ```typescript
685
- // src/core/domains/task-management/__tests__/integration/task-repository.integration.test.ts
686
- describe('TaskRepository Integration', () => {
687
- let repository: SqliteTaskRepository;
688
- let db: Database;
689
-
690
- beforeEach(async () => {
691
- db = new Database(':memory:');
692
- await setupTasksTable(db);
693
- repository = new SqliteTaskRepository(db, new ConsoleLogger());
694
- });
695
-
696
- afterEach(async () => {
697
- await db.close();
698
- });
699
-
700
- it('should save and retrieve task', async () => {
701
- const task = Task.create('Test task', Priority.high());
702
-
703
- await repository.save(task);
704
- const retrieved = await repository.findById(task.id);
705
-
706
- expect(retrieved).toBeDefined();
707
- expect(retrieved!.id.equals(task.id)).toBe(true);
708
- expect(retrieved!.description).toBe('Test task');
709
- expect(retrieved!.priority.equals(Priority.high())).toBe(true);
710
- });
711
-
712
- it('should find pending tasks ordered by priority', async () => {
713
- const lowTask = Task.create('Low priority', Priority.low());
714
- const highTask = Task.create('High priority', Priority.high());
715
-
716
- await repository.save(lowTask);
717
- await repository.save(highTask);
718
-
719
- const pending = await repository.findPendingTasks();
720
-
721
- expect(pending).toHaveLength(2);
722
- expect(pending[0].id.equals(highTask.id)).toBe(true); // High priority first
723
- expect(pending[1].id.equals(lowTask.id)).toBe(true);
724
- });
725
- });
726
- ```
727
-
728
- ## Performance Optimizations
729
-
730
- ### Entity Caching
731
- ```typescript
732
- // src/core/shared/infrastructure/entity-cache.ts
733
- @Injectable()
734
- export class EntityCache<T extends Entity<any>> {
735
- private cache = new Map<string, { entity: T; timestamp: number }>();
736
- private readonly ttl: number = 300000; // 5 minutes
737
-
738
- set(id: string, entity: T): void {
739
- this.cache.set(id, { entity, timestamp: Date.now() });
740
- }
741
-
742
- get(id: string): T | null {
743
- const cached = this.cache.get(id);
744
- if (!cached) return null;
745
-
746
- // Check TTL
747
- if (Date.now() - cached.timestamp > this.ttl) {
748
- this.cache.delete(id);
749
- return null;
750
- }
751
-
752
- return cached.entity;
753
- }
754
-
755
- invalidate(id: string): void {
756
- this.cache.delete(id);
757
- }
758
-
759
- clear(): void {
760
- this.cache.clear();
761
- }
762
- }
763
- ```
764
-
765
- ## Success Metrics
766
-
767
- - [ ] **Domain Isolation**: 100% clean dependency boundaries
768
- - [ ] **Test Coverage**: >90% unit test coverage for domain logic
769
- - [ ] **Type Safety**: Strict TypeScript compilation with zero any types
770
- - [ ] **Performance**: <50ms average use case execution time
771
- - [ ] **Memory Efficiency**: <100MB heap usage for core domains
772
- - [ ] **Plugin Architecture**: Modular domain loading capability
773
-
774
- ## Related V3 Skills
775
-
776
- - `v3-ddd-architecture` - DDD architectural design
777
- - `v3-mcp-optimization` - MCP server integration
778
- - `v3-memory-unification` - AgentDB repository integration
779
- - `v3-swarm-coordination` - Swarm domain implementation
780
-
781
- ## Usage Examples
782
-
783
- ### Complete Core Implementation
784
- ```bash
785
- # Full core module implementation
786
- Task("Core implementation",
787
- "Implement all core domains with DDD patterns and comprehensive testing",
788
- "core-implementer")
789
- ```
790
-
791
- ### Domain-Specific Implementation
792
- ```bash
793
- # Single domain implementation
794
- Task("Task domain implementation",
795
- "Implement task management domain with entities, services, and repositories",
796
- "core-implementer")
797
- ```