claude-flow-novice 1.6.3 → 1.6.5

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 (290) hide show
  1. package/.claude/commands/parse-epic.js +180 -0
  2. package/.claude/settings.json +12 -2
  3. package/.claude/settings.local.json +4 -2
  4. package/.claude-flow-novice/dist/mcp/mcp-server-novice.js +37 -2
  5. package/.claude-flow-novice/dist/mcp/transports/base.js +5 -0
  6. package/.claude-flow-novice/dist/mcp/transports/base.js.map +1 -0
  7. package/.claude-flow-novice/dist/mcp/transports/http.js +414 -0
  8. package/.claude-flow-novice/dist/mcp/transports/http.js.map +1 -0
  9. package/.claude-flow-novice/dist/mcp/transports/stdio.js +217 -0
  10. package/.claude-flow-novice/dist/mcp/transports/stdio.js.map +1 -0
  11. package/.claude-flow-novice/dist/src/cli/commands/parse-epic.js +129 -0
  12. package/.claude-flow-novice/dist/src/cli/commands/parse-epic.js.map +1 -0
  13. package/.claude-flow-novice/dist/src/cli/index.js +3 -0
  14. package/.claude-flow-novice/dist/src/cli/index.js.map +1 -1
  15. package/.claude-flow-novice/dist/src/cli/utils/epic-parser.js +266 -0
  16. package/.claude-flow-novice/dist/src/cli/utils/epic-parser.js.map +1 -0
  17. package/.claude-flow-novice/dist/src/communication/message-bus.js +105 -2
  18. package/.claude-flow-novice/dist/src/communication/message-bus.js.map +1 -1
  19. package/.claude-flow-novice/dist/src/coordination/adapters/v1-coordinator-adapter.js +1 -1
  20. package/.claude-flow-novice/dist/src/coordination/adapters/v1-coordinator-adapter.js.map +1 -1
  21. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/artifact-cache-optimizer.js +632 -0
  22. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/artifact-cache-optimizer.js.map +1 -0
  23. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/index.js +11 -0
  24. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/index.js.map +1 -0
  25. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/checkpoints/checkpoint-compressor.js +318 -0
  26. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/checkpoints/checkpoint-compressor.js.map +1 -0
  27. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/completion-detector.js +234 -0
  28. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/completion-detector.js.map +1 -0
  29. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/hierarchical-detector.js +347 -0
  30. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/hierarchical-detector.js.map +1 -0
  31. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/index.js +13 -0
  32. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/index.js.map +1 -0
  33. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/lamport-clock.js +173 -0
  34. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/lamport-clock.js.map +1 -0
  35. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/mesh-detector.js +526 -0
  36. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/mesh-detector.js.map +1 -0
  37. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/sdk-completion-detector.js +443 -0
  38. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/sdk-completion-detector.js.map +1 -0
  39. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/swarm-shutdown.js +366 -0
  40. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/swarm-shutdown.js.map +1 -0
  41. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinator-factory.js +287 -0
  42. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinator-factory.js.map +1 -0
  43. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.example.js +364 -0
  44. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.example.js.map +1 -0
  45. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.js +492 -0
  46. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.js.map +1 -0
  47. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/hierarchical-coordinator.js +786 -0
  48. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/hierarchical-coordinator.js.map +1 -0
  49. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/index.js +16 -0
  50. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/index.js.map +1 -0
  51. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/parent-child-manager.js +342 -0
  52. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/parent-child-manager.js.map +1 -0
  53. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/swarm-coordinator-v2.js +601 -0
  54. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/swarm-coordinator-v2.js.map +1 -0
  55. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.js +9 -0
  56. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.js.map +1 -0
  57. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dead-letter-queue.js +413 -0
  58. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dead-letter-queue.js.map +1 -0
  59. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-graph.js +471 -0
  60. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-graph.js.map +1 -0
  61. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-node.js +379 -0
  62. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-node.js.map +1 -0
  63. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-resolver.js +335 -0
  64. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-resolver.js.map +1 -0
  65. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/help-request-metrics.js +211 -0
  66. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/help-request-metrics.js.map +1 -0
  67. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/index.js +33 -0
  68. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/index.js.map +1 -0
  69. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-broker.js +920 -0
  70. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-broker.js.map +1 -0
  71. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-router.js +385 -0
  72. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-router.js.map +1 -0
  73. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message.js +138 -0
  74. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message.js.map +1 -0
  75. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/resource-manager-safe.js +478 -0
  76. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/resource-manager-safe.js.map +1 -0
  77. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine-config.js +358 -0
  78. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine-config.js.map +1 -0
  79. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine.js +588 -0
  80. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine.js.map +1 -0
  81. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-transition.js +153 -0
  82. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-transition.js.map +1 -0
  83. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/task-scheduler.js +360 -0
  84. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/task-scheduler.js.map +1 -0
  85. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/topic-manager.js +337 -0
  86. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/topic-manager.js.map +1 -0
  87. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.js +424 -0
  88. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.js.map +1 -0
  89. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.js +9 -0
  90. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.js.map +1 -0
  91. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/resource-manager.js +669 -0
  92. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/resource-manager.js.map +1 -0
  93. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/artifact-storage.js +451 -0
  94. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/artifact-storage.js.map +1 -0
  95. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/cycle-detector.js +271 -0
  96. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/cycle-detector.js.map +1 -0
  97. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-graph.js +335 -0
  98. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-graph.js.map +1 -0
  99. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-manager.js +439 -0
  100. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-manager.js.map +1 -0
  101. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-request.js +92 -0
  102. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-request.js.map +1 -0
  103. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/index.js +21 -0
  104. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/index.js.map +1 -0
  105. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/topological-sort.js +223 -0
  106. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/topological-sort.js.map +1 -0
  107. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-coordinator.js +436 -0
  108. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-coordinator.js.map +1 -0
  109. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-matcher.js +278 -0
  110. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-matcher.js.map +1 -0
  111. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request-handler.js +317 -0
  112. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request-handler.js.map +1 -0
  113. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request.js +273 -0
  114. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request.js.map +1 -0
  115. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/index.js +15 -0
  116. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/index.js.map +1 -0
  117. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/waiting-agent-pool.js +512 -0
  118. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/waiting-agent-pool.js.map +1 -0
  119. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/index.js +67 -0
  120. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/index.js.map +1 -0
  121. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/help-deadlock-integration.js +557 -0
  122. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/help-deadlock-integration.js.map +1 -0
  123. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/index.js +14 -0
  124. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/index.js.map +1 -0
  125. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.example.js +212 -0
  126. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.example.js.map +1 -0
  127. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.js +552 -0
  128. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.js.map +1 -0
  129. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/state-machine-integration.js +635 -0
  130. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/state-machine-integration.js.map +1 -0
  131. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/IArtifactStorage.js +28 -0
  132. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/IArtifactStorage.js.map +1 -0
  133. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ICoordinator.js +9 -0
  134. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ICoordinator.js.map +1 -0
  135. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ISessionStore.js +25 -0
  136. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ISessionStore.js.map +1 -0
  137. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/index.js +14 -0
  138. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/index.js.map +1 -0
  139. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/artifact-adapter.js +308 -0
  140. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/artifact-adapter.js.map +1 -0
  141. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/completion-storage.js +439 -0
  142. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/completion-storage.js.map +1 -0
  143. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-graph-storage.js +540 -0
  144. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-graph-storage.js.map +1 -0
  145. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-storage.js +367 -0
  146. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-storage.js.map +1 -0
  147. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/index.js +14 -0
  148. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/index.js.map +1 -0
  149. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/message-storage.js +518 -0
  150. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/message-storage.js.map +1 -0
  151. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/state-storage.js +377 -0
  152. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/state-storage.js.map +1 -0
  153. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channel.js +371 -0
  154. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channel.js.map +1 -0
  155. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/dependency-channel.js +355 -0
  156. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/dependency-channel.js.map +1 -0
  157. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/help-channel.js +424 -0
  158. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/help-channel.js.map +1 -0
  159. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/index.js +16 -0
  160. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/index.js.map +1 -0
  161. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/state-channel.js +295 -0
  162. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/state-channel.js.map +1 -0
  163. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/task-channel.js +411 -0
  164. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/task-channel.js.map +1 -0
  165. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/index.js +14 -0
  166. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/index.js.map +1 -0
  167. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-bus.js +387 -0
  168. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-bus.js.map +1 -0
  169. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-persistence.js +589 -0
  170. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-persistence.js.map +1 -0
  171. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-router.js +444 -0
  172. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-router.js.map +1 -0
  173. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/artifact-storage.js +560 -0
  174. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/artifact-storage.js.map +1 -0
  175. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/background-orchestrator.js +335 -0
  176. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/background-orchestrator.js.map +1 -0
  177. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/bash-output-monitor.js +104 -0
  178. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/bash-output-monitor.js.map +1 -0
  179. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/checkpoint-manager.js +847 -0
  180. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/checkpoint-manager.js.map +1 -0
  181. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/help-coordinator.js +470 -0
  182. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/help-coordinator.js.map +1 -0
  183. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/hierarchical-background-integration.js +450 -0
  184. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/hierarchical-background-integration.js.map +1 -0
  185. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/index.js +13 -0
  186. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/index.js.map +1 -0
  187. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/message-bus-integration.js +625 -0
  188. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/message-bus-integration.js.map +1 -0
  189. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/multi-level-control.js +545 -0
  190. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/multi-level-control.js.map +1 -0
  191. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-controller.js +740 -0
  192. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-controller.js.map +1 -0
  193. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-message-integration.js +415 -0
  194. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-message-integration.js.map +1 -0
  195. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/session-pool-optimizer.js +615 -0
  196. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/session-pool-optimizer.js.map +1 -0
  197. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-machine-integration.js +547 -0
  198. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-machine-integration.js.map +1 -0
  199. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-sdk-integration.js +342 -0
  200. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-sdk-integration.js.map +1 -0
  201. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/security/payload-validator.js +259 -0
  202. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/security/payload-validator.js.map +1 -0
  203. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/framework-registry.js +273 -0
  204. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/framework-registry.js.map +1 -0
  205. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/index.js +8 -0
  206. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/index.js.map +1 -0
  207. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-config-manager.js +310 -0
  208. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-config-manager.js.map +1 -0
  209. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-validator.js +218 -0
  210. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-validator.js.map +1 -0
  211. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/types/sdk.js +9 -0
  212. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/types/sdk.js.map +1 -0
  213. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/index.js +6 -0
  214. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/index.js.map +1 -0
  215. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/priority-queue.js +145 -0
  216. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/priority-queue.js.map +1 -0
  217. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/sdk-helpers.js +122 -0
  218. package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/sdk-helpers.js.map +1 -0
  219. package/.claude-flow-novice/dist/src/coordination/config-translator.js +17 -43
  220. package/.claude-flow-novice/dist/src/coordination/config-translator.js.map +1 -1
  221. package/.claude-flow-novice/dist/src/coordination/coordination-toggle.js +34 -76
  222. package/.claude-flow-novice/dist/src/coordination/coordination-toggle.js.map +1 -1
  223. package/.claude-flow-novice/dist/src/coordination/index.js +3 -0
  224. package/.claude-flow-novice/dist/src/coordination/index.js.map +1 -1
  225. package/.claude-flow-novice/dist/src/coordination/shared/core/agent-state.js +172 -0
  226. package/.claude-flow-novice/dist/src/coordination/shared/core/agent-state.js.map +1 -0
  227. package/.claude-flow-novice/dist/src/coordination/shared/core/index.js +7 -0
  228. package/.claude-flow-novice/dist/src/coordination/shared/core/index.js.map +1 -0
  229. package/.claude-flow-novice/dist/src/coordination/shared/index.js +19 -0
  230. package/.claude-flow-novice/dist/src/coordination/shared/index.js.map +1 -0
  231. package/.claude-flow-novice/dist/src/coordination/shared/interfaces/ICoordinator.js +24 -0
  232. package/.claude-flow-novice/dist/src/coordination/shared/interfaces/ICoordinator.js.map +1 -0
  233. package/.claude-flow-novice/dist/src/coordination/shared/interfaces/index.js +7 -0
  234. package/.claude-flow-novice/dist/src/coordination/shared/interfaces/index.js.map +1 -0
  235. package/.claude-flow-novice/dist/src/coordination/shared/message-broker.js +920 -0
  236. package/.claude-flow-novice/dist/src/coordination/shared/message-broker.js.map +1 -0
  237. package/.claude-flow-novice/dist/src/coordination/shared/message.js +138 -0
  238. package/.claude-flow-novice/dist/src/coordination/shared/message.js.map +1 -0
  239. package/.claude-flow-novice/dist/src/coordination/shared/security/payload-validator.js +259 -0
  240. package/.claude-flow-novice/dist/src/coordination/shared/security/payload-validator.js.map +1 -0
  241. package/.claude-flow-novice/dist/src/coordination/shared/transparency/index.js +17 -0
  242. package/.claude-flow-novice/dist/src/coordination/shared/transparency/index.js.map +1 -0
  243. package/.claude-flow-novice/dist/src/coordination/shared/transparency/interfaces/transparency-system.js +19 -0
  244. package/.claude-flow-novice/dist/src/coordination/shared/transparency/interfaces/transparency-system.js.map +1 -0
  245. package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-integration.js +357 -0
  246. package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-integration.js.map +1 -0
  247. package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-system.js +679 -0
  248. package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-system.js.map +1 -0
  249. package/.claude-flow-novice/dist/src/coordination/shared/types/index.js +7 -0
  250. package/.claude-flow-novice/dist/src/coordination/shared/types/index.js.map +1 -0
  251. package/.claude-flow-novice/dist/src/coordination/shared/types/sdk.js +10 -0
  252. package/.claude-flow-novice/dist/src/coordination/shared/types/sdk.js.map +1 -0
  253. package/.claude-flow-novice/dist/src/coordination/v1-transparency/interfaces/v1-transparency-system.js +12 -0
  254. package/.claude-flow-novice/dist/src/coordination/v1-transparency/interfaces/v1-transparency-system.js.map +1 -0
  255. package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-to-v2-bridge.js +433 -0
  256. package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-to-v2-bridge.js.map +1 -0
  257. package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-transparency-adapter.js +1468 -0
  258. package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-transparency-adapter.js.map +1 -0
  259. package/.claude-flow-novice/dist/src/feature-flags/core/FeatureFlagManager.js +52 -2
  260. package/.claude-flow-novice/dist/src/feature-flags/core/FeatureFlagManager.js.map +1 -1
  261. package/.claude-flow-novice/dist/src/mcp/mcp-server-novice.js +37 -2
  262. package/.claude-flow-novice/dist/src/mcp/session-manager.js +3 -1
  263. package/.claude-flow-novice/dist/src/mcp/session-manager.js.map +1 -1
  264. package/.claude-flow-novice/dist/src/monitoring/apm/apm-integration.js +5 -0
  265. package/.claude-flow-novice/dist/src/monitoring/apm/apm-integration.js.map +1 -1
  266. package/.claude-flow-novice/dist/src/providers/provider-manager.js +41 -6
  267. package/.claude-flow-novice/dist/src/providers/provider-manager.js.map +1 -1
  268. package/.claude-flow-novice/dist/src/providers/tiered-router.js +9 -17
  269. package/.claude-flow-novice/dist/src/providers/tiered-router.js.map +1 -1
  270. package/.claude-flow-novice/dist/src/utils/markdown-sanitizer.js +65 -41
  271. package/.claude-flow-novice/dist/src/utils/markdown-sanitizer.js.map +1 -1
  272. package/.claude-flow-novice/dist/src/web/api/server.js +1 -1
  273. package/.claude-flow-novice/dist/src/web/api/server.js.map +1 -1
  274. package/.claude-flow-novice/dist/src/workflows/progressive-rollout-manager.js +30 -0
  275. package/.claude-flow-novice/dist/src/workflows/progressive-rollout-manager.js.map +1 -1
  276. package/.claude-flow-novice/metrics.db +0 -0
  277. package/.claude-flow-novice/metrics.db-shm +0 -0
  278. package/.claude-flow-novice/metrics.db-wal +0 -0
  279. package/CLAUDE.md +72 -0
  280. package/config/hooks/post-edit-pipeline.js +68 -118
  281. package/config/hooks/pre-tool-memory-safety.js +209 -0
  282. package/package.json +7 -4
  283. package/scripts/cleanup-idle-sessions.sh +59 -0
  284. package/scripts/monitoring/alert-monitor.sh +220 -0
  285. package/scripts/monitoring/view-alerts.sh +307 -0
  286. package/scripts/test-provider-routing.cjs +7 -9
  287. package/scripts/test-zai-api.cjs +2 -2
  288. package/src/slash-commands/parse-epic.js +1 -1
  289. package/wiki/Provider-Routing.md +57 -69
  290. package/MEMORY_LEAK_ROOT_CAUSE.md +0 -149
@@ -0,0 +1,424 @@
1
+ /**
2
+ * Deadlock Detection Engine
3
+ *
4
+ * Implements Tarjan's strongly connected components (SCC) algorithm for efficient
5
+ * cycle detection in agent dependency graphs. Detects circular wait conditions
6
+ * in <50ms for graphs with 50+ nodes.
7
+ *
8
+ * @module coordination/v2/deadlock/deadlock-detector
9
+ */ import { EventEmitter } from 'events';
10
+ /**
11
+ * Deadlock Detection Engine using Tarjan's SCC algorithm
12
+ *
13
+ * Efficiently detects circular wait conditions in agent dependency graphs.
14
+ * Emits events when deadlocks are detected for resolution handling.
15
+ *
16
+ * @example
17
+ * ```typescript
18
+ * const detector = new DeadlockDetector({
19
+ * detectionInterval: 500,
20
+ * maxDetectionTime: 50
21
+ * });
22
+ *
23
+ * detector.on('deadlock', (cycle: DeadlockCycle) => {
24
+ * console.log(`Deadlock detected: ${cycle.agents.join(' -> ')}`);
25
+ * });
26
+ *
27
+ * // Register agents and dependencies
28
+ * detector.registerAgent('agent-1', { state: 'waiting', priority: 5 });
29
+ * detector.addDependency('agent-1', 'agent-2', 'agent');
30
+ *
31
+ * // Start automatic detection
32
+ * detector.startDetection();
33
+ * ```
34
+ */ export class DeadlockDetector extends EventEmitter {
35
+ config;
36
+ agents = new Map();
37
+ detectionTimer;
38
+ metrics;
39
+ index = 0;
40
+ stack = [];
41
+ tarjanData = new Map();
42
+ operationLock = Promise.resolve();
43
+ constructor(config = {}){
44
+ super(), this.config = config;
45
+ this.metrics = {
46
+ totalDetections: 0,
47
+ deadlocksDetected: 0,
48
+ avgDetectionTime: 0,
49
+ maxDetectionTime: 0,
50
+ lastDetectionTime: 0,
51
+ graphSize: 0
52
+ };
53
+ }
54
+ /**
55
+ * Register an agent in the dependency graph
56
+ *
57
+ * @param agentId - Unique agent identifier
58
+ * @param options - Agent configuration
59
+ */ registerAgent(agentId, options = {}) {
60
+ const maxAgents = this.config.maxAgents || 1000;
61
+ if (this.agents.size >= maxAgents && !this.agents.has(agentId)) {
62
+ throw new Error(`Agent limit reached (${maxAgents} max)`);
63
+ }
64
+ const node = {
65
+ agentId,
66
+ holdingResources: new Set(options.holdingResources || []),
67
+ waitingForResources: new Set(options.waitingForResources || []),
68
+ state: options.state || 'idle',
69
+ stateChangedAt: Date.now(),
70
+ priority: options.priority
71
+ };
72
+ this.agents.set(agentId, node);
73
+ }
74
+ /**
75
+ * Unregister an agent from the dependency graph
76
+ *
77
+ * @param agentId - Agent identifier to remove
78
+ */ unregisterAgent(agentId) {
79
+ this.agents.delete(agentId);
80
+ }
81
+ /**
82
+ * Add a dependency relationship between agents/resources
83
+ *
84
+ * @param fromAgentId - Agent waiting for resource
85
+ * @param toResourceId - Resource or agent being waited on
86
+ * @param resourceType - Type of the resource
87
+ */ async addDependency(fromAgentId, toResourceId, resourceType = 'other') {
88
+ return this.withLock(async ()=>{
89
+ const agent = this.agents.get(fromAgentId);
90
+ if (!agent) {
91
+ throw new Error(`Agent not registered: ${fromAgentId}`);
92
+ }
93
+ // SEC-DOS-001: Enforce edge limit per agent
94
+ const maxEdgesPerAgent = this.config.maxEdgesPerAgent || 100;
95
+ if (agent.waitingForResources.size >= maxEdgesPerAgent) {
96
+ throw new Error(`Edge limit reached for agent ${fromAgentId} (${maxEdgesPerAgent} max)`);
97
+ }
98
+ agent.waitingForResources.add(toResourceId);
99
+ // If resource is another agent, update their holding resources
100
+ if (resourceType === 'agent') {
101
+ const targetAgent = this.agents.get(toResourceId);
102
+ if (targetAgent) {
103
+ targetAgent.holdingResources.add(fromAgentId);
104
+ }
105
+ }
106
+ });
107
+ }
108
+ /**
109
+ * Remove a dependency relationship
110
+ *
111
+ * @param fromAgentId - Agent that was waiting
112
+ * @param toResourceId - Resource that was being waited on
113
+ */ async removeDependency(fromAgentId, toResourceId) {
114
+ return this.withLock(async ()=>{
115
+ const agent = this.agents.get(fromAgentId);
116
+ if (agent) {
117
+ agent.waitingForResources.delete(toResourceId);
118
+ }
119
+ const targetAgent = this.agents.get(toResourceId);
120
+ if (targetAgent) {
121
+ targetAgent.holdingResources.delete(fromAgentId);
122
+ }
123
+ });
124
+ }
125
+ /**
126
+ * Update agent state
127
+ *
128
+ * @param agentId - Agent to update
129
+ * @param state - New state
130
+ */ updateAgentState(agentId, state) {
131
+ const agent = this.agents.get(agentId);
132
+ if (agent) {
133
+ agent.state = state;
134
+ agent.stateChangedAt = Date.now();
135
+ }
136
+ }
137
+ /**
138
+ * Detect deadlocks using Tarjan's SCC algorithm
139
+ *
140
+ * Finds all strongly connected components in the wait-for graph.
141
+ * Components with size ≥ minCycleLength are considered deadlocks.
142
+ *
143
+ * @returns Array of detected deadlock cycles
144
+ */ async detectDeadlocks() {
145
+ const maxDetectionTime = this.config.maxDetectionTime || 50;
146
+ const controller = new AbortController();
147
+ const timeout = setTimeout(()=>controller.abort(), maxDetectionTime);
148
+ try {
149
+ return await this.detectWithTimeout(controller.signal);
150
+ } catch (error) {
151
+ if (controller.signal.aborted) {
152
+ this.emit('warning', {
153
+ type: 'detection-timeout',
154
+ maxTime: maxDetectionTime,
155
+ graphSize: this.agents.size
156
+ });
157
+ return []; // Return empty on timeout to prevent hanging
158
+ }
159
+ throw error;
160
+ } finally{
161
+ clearTimeout(timeout);
162
+ }
163
+ }
164
+ /**
165
+ * Internal detection with timeout enforcement (SEC-DOS-002)
166
+ *
167
+ * @param signal - AbortSignal for timeout control
168
+ * @returns Array of detected deadlock cycles
169
+ */ async detectWithTimeout(signal) {
170
+ const startTime = performance.now();
171
+ const cycles = [];
172
+ // Reset Tarjan algorithm state
173
+ this.index = 0;
174
+ this.stack = [];
175
+ this.tarjanData.clear();
176
+ // Run Tarjan's algorithm for each unvisited node
177
+ for (const agentId of Array.from(this.agents.keys())){
178
+ if (signal.aborted) {
179
+ throw new Error('Detection aborted due to timeout');
180
+ }
181
+ if (!this.tarjanData.has(agentId)) {
182
+ this.strongConnect(agentId, cycles);
183
+ }
184
+ }
185
+ // Update metrics
186
+ const detectionTime = performance.now() - startTime;
187
+ this.updateMetrics(detectionTime, cycles.length);
188
+ // Emit deadlock events
189
+ cycles.forEach((cycle)=>{
190
+ this.emit('deadlock', cycle);
191
+ });
192
+ // Check if detection exceeded time limit
193
+ if (this.config.maxDetectionTime && detectionTime > this.config.maxDetectionTime) {
194
+ this.emit('warning', {
195
+ type: 'slow-detection',
196
+ detectionTime,
197
+ maxTime: this.config.maxDetectionTime,
198
+ graphSize: this.agents.size
199
+ });
200
+ }
201
+ return cycles;
202
+ }
203
+ /**
204
+ * Tarjan's strongly connected components algorithm (recursive DFS)
205
+ *
206
+ * @param agentId - Current agent being visited
207
+ * @param cycles - Array to collect detected cycles
208
+ */ strongConnect(agentId, cycles) {
209
+ const agent = this.agents.get(agentId);
210
+ if (!agent) return;
211
+ // Initialize node data
212
+ const nodeData = {
213
+ index: this.index,
214
+ lowLink: this.index,
215
+ onStack: true
216
+ };
217
+ this.tarjanData.set(agentId, nodeData);
218
+ this.index++;
219
+ this.stack.push(agentId);
220
+ // Visit all waiting dependencies
221
+ for (const waitingFor of Array.from(agent.waitingForResources)){
222
+ // Only follow agent dependencies for cycle detection
223
+ const waitingAgent = this.agents.get(waitingFor);
224
+ if (!waitingAgent) continue;
225
+ const waitingData = this.tarjanData.get(waitingFor);
226
+ if (!waitingData) {
227
+ // Not visited yet, recurse
228
+ this.strongConnect(waitingFor, cycles);
229
+ const updatedWaitingData = this.tarjanData.get(waitingFor);
230
+ nodeData.lowLink = Math.min(nodeData.lowLink, updatedWaitingData.lowLink);
231
+ } else if (waitingData.onStack) {
232
+ // Already on stack, found back edge
233
+ nodeData.lowLink = Math.min(nodeData.lowLink, waitingData.index);
234
+ }
235
+ }
236
+ // If this is a root node, extract SCC
237
+ if (nodeData.lowLink === nodeData.index) {
238
+ const scc = [];
239
+ let currentAgentId;
240
+ do {
241
+ currentAgentId = this.stack.pop();
242
+ const currentData = this.tarjanData.get(currentAgentId);
243
+ currentData.onStack = false;
244
+ scc.push(currentAgentId);
245
+ }while (currentAgentId !== agentId)
246
+ // Check if SCC is a deadlock (cycle with ≥ minCycleLength nodes)
247
+ const minCycleLength = this.config.minCycleLength || 2;
248
+ if (scc.length >= minCycleLength) {
249
+ const cycle = this.createDeadlockCycle(scc);
250
+ cycles.push(cycle);
251
+ }
252
+ }
253
+ }
254
+ /**
255
+ * Create a DeadlockCycle object from detected SCC
256
+ *
257
+ * @param agentIds - Agents involved in the cycle
258
+ * @returns Deadlock cycle metadata
259
+ */ createDeadlockCycle(agentIds) {
260
+ const resources = new Set();
261
+ let totalPriority = 0;
262
+ // Collect all resources and calculate severity
263
+ agentIds.forEach((agentId)=>{
264
+ const agent = this.agents.get(agentId);
265
+ if (agent) {
266
+ agent.waitingForResources.forEach((res)=>resources.add(res));
267
+ totalPriority += agent.priority || 0;
268
+ }
269
+ });
270
+ // Calculate severity (higher for longer cycles and higher priority agents)
271
+ const severity = agentIds.length * 10 + (totalPriority / agentIds.length || 0);
272
+ // Determine resolution strategy (prioritize cycle complexity)
273
+ let resolution = 'abort';
274
+ if (agentIds.length === 2) {
275
+ resolution = 'priority-based'; // Simple cycle, use priority
276
+ } else if (agentIds.length > 5) {
277
+ resolution = 'timeout'; // Complex cycle, use timeout
278
+ } else if (severity > 50) {
279
+ resolution = 'rollback'; // High priority agents, try rollback
280
+ }
281
+ return {
282
+ cycleId: `cycle-${Date.now()}-${Math.random().toString(36).slice(2, 9)}`,
283
+ agents: agentIds,
284
+ resources: Array.from(resources),
285
+ detectedAt: Date.now(),
286
+ severity,
287
+ resolution
288
+ };
289
+ }
290
+ /**
291
+ * Update detection metrics
292
+ *
293
+ * @param detectionTime - Time taken for detection in ms
294
+ * @param cyclesFound - Number of cycles detected
295
+ */ updateMetrics(detectionTime, cyclesFound) {
296
+ if (!this.config.enableMetrics) return;
297
+ this.metrics.totalDetections++;
298
+ this.metrics.deadlocksDetected += cyclesFound;
299
+ this.metrics.lastDetectionTime = detectionTime;
300
+ this.metrics.maxDetectionTime = Math.max(this.metrics.maxDetectionTime, detectionTime);
301
+ this.metrics.graphSize = this.agents.size;
302
+ // Calculate running average
303
+ const totalTime = this.metrics.avgDetectionTime * (this.metrics.totalDetections - 1) + detectionTime;
304
+ this.metrics.avgDetectionTime = totalTime / this.metrics.totalDetections;
305
+ }
306
+ /**
307
+ * Start automatic deadlock detection
308
+ *
309
+ * Runs detection at configured intervals
310
+ */ startDetection() {
311
+ if (this.detectionTimer) {
312
+ return; // Already running
313
+ }
314
+ const interval = this.config.detectionInterval || 1000;
315
+ this.detectionTimer = setInterval(()=>{
316
+ if (this.agents.size > 0) {
317
+ this.detectDeadlocks().catch((error)=>{
318
+ this.emit('error', {
319
+ type: 'detection-error',
320
+ error: error instanceof Error ? error.message : String(error)
321
+ });
322
+ });
323
+ }
324
+ }, interval);
325
+ this.emit('detection-started', {
326
+ interval
327
+ });
328
+ }
329
+ /**
330
+ * Stop automatic deadlock detection
331
+ */ stopDetection() {
332
+ if (this.detectionTimer) {
333
+ clearInterval(this.detectionTimer);
334
+ this.detectionTimer = undefined;
335
+ this.emit('detection-stopped');
336
+ }
337
+ }
338
+ /**
339
+ * Get current detection metrics
340
+ *
341
+ * @returns Performance metrics
342
+ */ getMetrics() {
343
+ return {
344
+ ...this.metrics
345
+ };
346
+ }
347
+ /**
348
+ * Get current dependency graph state
349
+ *
350
+ * @returns Map of agent nodes
351
+ */ getGraph() {
352
+ return new Map(this.agents);
353
+ }
354
+ /**
355
+ * Clear all agents and dependencies
356
+ */ clear() {
357
+ this.agents.clear();
358
+ this.tarjanData.clear();
359
+ this.stack = [];
360
+ this.index = 0;
361
+ }
362
+ /**
363
+ * Export graph to DOT format for visualization
364
+ *
365
+ * @returns DOT format string
366
+ */ toDot() {
367
+ let dot = 'digraph WaitForGraph {\n';
368
+ dot += ' rankdir=LR;\n';
369
+ dot += ' node [shape=box];\n\n';
370
+ // Add nodes
371
+ for (const [agentId, agent] of Array.from(this.agents)){
372
+ let color = 'white';
373
+ if (agent.state === 'waiting') color = 'yellow';
374
+ if (agent.state === 'blocked') color = 'red';
375
+ if (agent.state === 'working') color = 'lightgreen';
376
+ dot += ` "${agentId}" [style=filled, fillcolor=${color}, label="${agentId}\\n${agent.state}"];\n`;
377
+ }
378
+ dot += '\n';
379
+ // Add edges (wait-for relationships)
380
+ for (const [agentId, agent] of Array.from(this.agents)){
381
+ for (const waitingFor of Array.from(agent.waitingForResources)){
382
+ dot += ` "${agentId}" -> "${waitingFor}" [label="waits for"];\n`;
383
+ }
384
+ }
385
+ dot += '}\n';
386
+ return dot;
387
+ }
388
+ /**
389
+ * Cleanup resources
390
+ */ destroy() {
391
+ this.stopDetection();
392
+ this.clear();
393
+ this.removeAllListeners();
394
+ }
395
+ /**
396
+ * Lock helper for atomic operations (SEC-RACE-001 fix)
397
+ *
398
+ * Prevents TOCTOU race conditions by ensuring exclusive access
399
+ * to shared state during critical sections.
400
+ *
401
+ * Rust equivalent pattern:
402
+ * ```rust
403
+ * async fn with_lock<T, F>(&self, f: F) -> T
404
+ * where F: FnOnce() -> T {
405
+ * let _guard = self.lock.lock().await;
406
+ * f()
407
+ * }
408
+ * ```
409
+ */ async withLock(fn) {
410
+ const currentLock = this.operationLock;
411
+ let resolveLock;
412
+ this.operationLock = new Promise((resolve)=>{
413
+ resolveLock = resolve;
414
+ });
415
+ try {
416
+ await currentLock;
417
+ return await fn();
418
+ } finally{
419
+ resolveLock();
420
+ }
421
+ }
422
+ }
423
+
424
+ //# sourceMappingURL=deadlock-detector.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.ts"],"names":["EventEmitter","DeadlockDetector","agents","Map","detectionTimer","metrics","index","stack","tarjanData","operationLock","Promise","resolve","config","totalDetections","deadlocksDetected","avgDetectionTime","maxDetectionTime","lastDetectionTime","graphSize","registerAgent","agentId","options","maxAgents","size","has","Error","node","holdingResources","Set","waitingForResources","state","stateChangedAt","Date","now","priority","set","unregisterAgent","delete","addDependency","fromAgentId","toResourceId","resourceType","withLock","agent","get","maxEdgesPerAgent","add","targetAgent","removeDependency","updateAgentState","detectDeadlocks","controller","AbortController","timeout","setTimeout","abort","detectWithTimeout","signal","error","aborted","emit","type","maxTime","clearTimeout","startTime","performance","cycles","clear","Array","from","keys","strongConnect","detectionTime","updateMetrics","length","forEach","cycle","nodeData","lowLink","onStack","push","waitingFor","waitingAgent","waitingData","updatedWaitingData","Math","min","scc","currentAgentId","pop","currentData","minCycleLength","createDeadlockCycle","agentIds","resources","totalPriority","res","severity","resolution","cycleId","random","toString","slice","detectedAt","cyclesFound","enableMetrics","max","totalTime","startDetection","interval","detectionInterval","setInterval","catch","message","String","stopDetection","clearInterval","undefined","getMetrics","getGraph","toDot","dot","color","destroy","removeAllListeners","fn","currentLock","resolveLock"],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Deadlock Detection & Recovery Module
3
+ *
4
+ * Export deadlock detection components for agent coordination
5
+ *
6
+ * @module coordination/v2/deadlock
7
+ */ export { DeadlockDetector } from './deadlock-detector.js';
8
+
9
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.ts"],"names":["DeadlockDetector"],"mappings":"AAAA;;;;;;CAMC,GAED,SACEA,gBAAgB,QAMX,yBAAyB"}