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.
- package/.claude/commands/parse-epic.js +180 -0
- package/.claude/settings.json +12 -2
- package/.claude/settings.local.json +4 -2
- package/.claude-flow-novice/dist/mcp/mcp-server-novice.js +37 -2
- package/.claude-flow-novice/dist/mcp/transports/base.js +5 -0
- package/.claude-flow-novice/dist/mcp/transports/base.js.map +1 -0
- package/.claude-flow-novice/dist/mcp/transports/http.js +414 -0
- package/.claude-flow-novice/dist/mcp/transports/http.js.map +1 -0
- package/.claude-flow-novice/dist/mcp/transports/stdio.js +217 -0
- package/.claude-flow-novice/dist/mcp/transports/stdio.js.map +1 -0
- package/.claude-flow-novice/dist/src/cli/commands/parse-epic.js +129 -0
- package/.claude-flow-novice/dist/src/cli/commands/parse-epic.js.map +1 -0
- package/.claude-flow-novice/dist/src/cli/index.js +3 -0
- package/.claude-flow-novice/dist/src/cli/index.js.map +1 -1
- package/.claude-flow-novice/dist/src/cli/utils/epic-parser.js +266 -0
- package/.claude-flow-novice/dist/src/cli/utils/epic-parser.js.map +1 -0
- package/.claude-flow-novice/dist/src/communication/message-bus.js +105 -2
- package/.claude-flow-novice/dist/src/communication/message-bus.js.map +1 -1
- package/.claude-flow-novice/dist/src/coordination/adapters/v1-coordinator-adapter.js +1 -1
- package/.claude-flow-novice/dist/src/coordination/adapters/v1-coordinator-adapter.js.map +1 -1
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/artifact-cache-optimizer.js +632 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/artifact-cache-optimizer.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/index.js +11 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/cache/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/checkpoints/checkpoint-compressor.js +318 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/checkpoints/checkpoint-compressor.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/completion-detector.js +234 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/completion-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/hierarchical-detector.js +347 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/hierarchical-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/index.js +13 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/lamport-clock.js +173 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/lamport-clock.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/mesh-detector.js +526 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/mesh-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/sdk-completion-detector.js +443 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/sdk-completion-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/swarm-shutdown.js +366 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/completion/swarm-shutdown.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinator-factory.js +287 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinator-factory.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.example.js +364 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.example.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.js +492 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/cascading-shutdown.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/hierarchical-coordinator.js +786 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/hierarchical-coordinator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/index.js +16 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/parent-child-manager.js +342 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/parent-child-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/swarm-coordinator-v2.js +601 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/coordinators/swarm-coordinator-v2.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.js +9 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dead-letter-queue.js +413 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dead-letter-queue.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-graph.js +471 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-graph.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-node.js +379 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-node.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-resolver.js +335 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/dependency-resolver.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/help-request-metrics.js +211 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/help-request-metrics.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/index.js +33 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-broker.js +920 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-broker.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-router.js +385 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message-router.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message.js +138 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/message.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/resource-manager-safe.js +478 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/resource-manager-safe.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine-config.js +358 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine-config.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine.js +588 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-machine.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-transition.js +153 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/state-transition.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/task-scheduler.js +360 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/task-scheduler.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/topic-manager.js +337 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/topic-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.js +424 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/deadlock-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.js +9 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/resource-manager.js +669 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/deadlock/resource-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/artifact-storage.js +451 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/artifact-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/cycle-detector.js +271 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/cycle-detector.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-graph.js +335 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-graph.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-manager.js +439 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-request.js +92 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/dependency-request.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/index.js +21 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/topological-sort.js +223 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/dependency/topological-sort.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-coordinator.js +436 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-coordinator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-matcher.js +278 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-matcher.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request-handler.js +317 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request-handler.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request.js +273 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/index.js +15 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/waiting-agent-pool.js +512 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/help-system/waiting-agent-pool.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/index.js +67 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/help-deadlock-integration.js +557 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/help-deadlock-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/index.js +14 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.example.js +212 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.example.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.js +552 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/message-bus-completion-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/state-machine-integration.js +635 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/integration/state-machine-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/IArtifactStorage.js +28 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/IArtifactStorage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ICoordinator.js +9 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ICoordinator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ISessionStore.js +25 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/ISessionStore.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/index.js +14 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/interfaces/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/artifact-adapter.js +308 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/artifact-adapter.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/completion-storage.js +439 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/completion-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-graph-storage.js +540 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-graph-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-storage.js +367 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/dependency-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/index.js +14 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/message-storage.js +518 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/message-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/state-storage.js +377 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/memory/state-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channel.js +371 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channel.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/dependency-channel.js +355 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/dependency-channel.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/help-channel.js +424 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/help-channel.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/index.js +16 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/state-channel.js +295 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/state-channel.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/task-channel.js +411 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/channels/task-channel.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/index.js +14 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-bus.js +387 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-bus.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-persistence.js +589 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-persistence.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-router.js +444 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/messaging/message-router.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/artifact-storage.js +560 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/artifact-storage.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/background-orchestrator.js +335 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/background-orchestrator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/bash-output-monitor.js +104 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/bash-output-monitor.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/checkpoint-manager.js +847 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/checkpoint-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/help-coordinator.js +470 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/help-coordinator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/hierarchical-background-integration.js +450 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/hierarchical-background-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/index.js +13 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/message-bus-integration.js +625 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/message-bus-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/multi-level-control.js +545 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/multi-level-control.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-controller.js +740 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-controller.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-message-integration.js +415 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/query-message-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/session-pool-optimizer.js +615 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/session-pool-optimizer.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-machine-integration.js +547 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-machine-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-sdk-integration.js +342 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/sdk/state-sdk-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/security/payload-validator.js +259 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/security/payload-validator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/framework-registry.js +273 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/framework-registry.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/index.js +8 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-config-manager.js +310 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-config-manager.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-validator.js +218 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/truth/truth-validator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/types/sdk.js +9 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/types/sdk.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/index.js +6 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/priority-queue.js +145 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/priority-queue.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/sdk-helpers.js +122 -0
- package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/utils/sdk-helpers.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/config-translator.js +17 -43
- package/.claude-flow-novice/dist/src/coordination/config-translator.js.map +1 -1
- package/.claude-flow-novice/dist/src/coordination/coordination-toggle.js +34 -76
- package/.claude-flow-novice/dist/src/coordination/coordination-toggle.js.map +1 -1
- package/.claude-flow-novice/dist/src/coordination/index.js +3 -0
- package/.claude-flow-novice/dist/src/coordination/index.js.map +1 -1
- package/.claude-flow-novice/dist/src/coordination/shared/core/agent-state.js +172 -0
- package/.claude-flow-novice/dist/src/coordination/shared/core/agent-state.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/core/index.js +7 -0
- package/.claude-flow-novice/dist/src/coordination/shared/core/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/index.js +19 -0
- package/.claude-flow-novice/dist/src/coordination/shared/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/interfaces/ICoordinator.js +24 -0
- package/.claude-flow-novice/dist/src/coordination/shared/interfaces/ICoordinator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/interfaces/index.js +7 -0
- package/.claude-flow-novice/dist/src/coordination/shared/interfaces/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/message-broker.js +920 -0
- package/.claude-flow-novice/dist/src/coordination/shared/message-broker.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/message.js +138 -0
- package/.claude-flow-novice/dist/src/coordination/shared/message.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/security/payload-validator.js +259 -0
- package/.claude-flow-novice/dist/src/coordination/shared/security/payload-validator.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/index.js +17 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/interfaces/transparency-system.js +19 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/interfaces/transparency-system.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-integration.js +357 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-integration.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-system.js +679 -0
- package/.claude-flow-novice/dist/src/coordination/shared/transparency/transparency-system.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/types/index.js +7 -0
- package/.claude-flow-novice/dist/src/coordination/shared/types/index.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/shared/types/sdk.js +10 -0
- package/.claude-flow-novice/dist/src/coordination/shared/types/sdk.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/interfaces/v1-transparency-system.js +12 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/interfaces/v1-transparency-system.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-to-v2-bridge.js +433 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-to-v2-bridge.js.map +1 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-transparency-adapter.js +1468 -0
- package/.claude-flow-novice/dist/src/coordination/v1-transparency/v1-transparency-adapter.js.map +1 -0
- package/.claude-flow-novice/dist/src/feature-flags/core/FeatureFlagManager.js +52 -2
- package/.claude-flow-novice/dist/src/feature-flags/core/FeatureFlagManager.js.map +1 -1
- package/.claude-flow-novice/dist/src/mcp/mcp-server-novice.js +37 -2
- package/.claude-flow-novice/dist/src/mcp/session-manager.js +3 -1
- package/.claude-flow-novice/dist/src/mcp/session-manager.js.map +1 -1
- package/.claude-flow-novice/dist/src/monitoring/apm/apm-integration.js +5 -0
- package/.claude-flow-novice/dist/src/monitoring/apm/apm-integration.js.map +1 -1
- package/.claude-flow-novice/dist/src/providers/provider-manager.js +41 -6
- package/.claude-flow-novice/dist/src/providers/provider-manager.js.map +1 -1
- package/.claude-flow-novice/dist/src/providers/tiered-router.js +9 -17
- package/.claude-flow-novice/dist/src/providers/tiered-router.js.map +1 -1
- package/.claude-flow-novice/dist/src/utils/markdown-sanitizer.js +65 -41
- package/.claude-flow-novice/dist/src/utils/markdown-sanitizer.js.map +1 -1
- package/.claude-flow-novice/dist/src/web/api/server.js +1 -1
- package/.claude-flow-novice/dist/src/web/api/server.js.map +1 -1
- package/.claude-flow-novice/dist/src/workflows/progressive-rollout-manager.js +30 -0
- package/.claude-flow-novice/dist/src/workflows/progressive-rollout-manager.js.map +1 -1
- package/.claude-flow-novice/metrics.db +0 -0
- package/.claude-flow-novice/metrics.db-shm +0 -0
- package/.claude-flow-novice/metrics.db-wal +0 -0
- package/CLAUDE.md +72 -0
- package/config/hooks/post-edit-pipeline.js +68 -118
- package/config/hooks/pre-tool-memory-safety.js +209 -0
- package/package.json +7 -4
- package/scripts/cleanup-idle-sessions.sh +59 -0
- package/scripts/monitoring/alert-monitor.sh +220 -0
- package/scripts/monitoring/view-alerts.sh +307 -0
- package/scripts/test-provider-routing.cjs +7 -9
- package/scripts/test-zai-api.cjs +2 -2
- package/src/slash-commands/parse-epic.js +1 -1
- package/wiki/Provider-Routing.md +57 -69
- 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 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/deadlock/index.ts"],"names":["DeadlockDetector"],"mappings":"AAAA;;;;;;CAMC,GAED,SACEA,gBAAgB,QAMX,yBAAyB"}
|