claude-flow-novice 1.6.4 → 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.local.json +2 -1
- 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/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/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/providers/provider-manager.js +36 -3
- package/.claude-flow-novice/dist/src/providers/provider-manager.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-shm +0 -0
- package/.claude-flow-novice/metrics.db-wal +0 -0
- package/package.json +2 -2
- package/scripts/monitoring/alert-monitor.sh +220 -0
- package/scripts/monitoring/view-alerts.sh +307 -0
- package/scripts/test-zai-api.cjs +2 -2
- package/src/slash-commands/parse-epic.js +1 -1
|
@@ -0,0 +1,601 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Swarm Coordinator (Unified API)
|
|
3
|
+
*
|
|
4
|
+
* Unified facade integrating all V2 coordination components:
|
|
5
|
+
* - Phase 1: State machine with auto-checkpointing
|
|
6
|
+
* - Phase 2: Dependency graph resolution
|
|
7
|
+
* - Phase 3: Event-driven message bus
|
|
8
|
+
* - Phase 4: Completion detection (hierarchical + mesh)
|
|
9
|
+
* - Phase 5: Hierarchical coordination (PM-based)
|
|
10
|
+
* - Phase 6: Mesh coordination (peer-to-peer) - future
|
|
11
|
+
* - Phase 7: Help system with capability matching
|
|
12
|
+
* - Phase 8: Deadlock detection and recovery
|
|
13
|
+
*
|
|
14
|
+
* Features:
|
|
15
|
+
* - Topology selection (hierarchical vs mesh)
|
|
16
|
+
* - Auto mode switching based on swarm size
|
|
17
|
+
* - Unified agent lifecycle API
|
|
18
|
+
* - Event-driven coordination
|
|
19
|
+
* - Cross-phase integration
|
|
20
|
+
*
|
|
21
|
+
* Performance Targets:
|
|
22
|
+
* - Agent spawn: <2s for 10 agents
|
|
23
|
+
* - State transition: <100ms (p99)
|
|
24
|
+
* - Checkpoint recovery: <500ms (p99)
|
|
25
|
+
* - Completion detection: <2s for 10 agents
|
|
26
|
+
*
|
|
27
|
+
* @module coordination/v2/coordinators/swarm-coordinator-v2
|
|
28
|
+
*/ import { EventEmitter } from 'node:events';
|
|
29
|
+
import { Logger } from '../../../core/logger.js';
|
|
30
|
+
/**
|
|
31
|
+
* Swarm topology types
|
|
32
|
+
*/ export var SwarmTopology = /*#__PURE__*/ function(SwarmTopology) {
|
|
33
|
+
/** Hierarchical PM-based topology (2-7+ agents) */ SwarmTopology["HIERARCHICAL"] = "hierarchical";
|
|
34
|
+
/** Mesh peer-to-peer topology (2-10 agents) */ SwarmTopology["MESH"] = "mesh";
|
|
35
|
+
/** Auto-select topology based on swarm size */ SwarmTopology["AUTO"] = "auto";
|
|
36
|
+
return SwarmTopology;
|
|
37
|
+
}({});
|
|
38
|
+
/**
|
|
39
|
+
* SwarmCoordinatorV2
|
|
40
|
+
*
|
|
41
|
+
* Unified coordinator facade integrating all V2 components:
|
|
42
|
+
*
|
|
43
|
+
* Architecture:
|
|
44
|
+
* - State Machine: Agent lifecycle with auto-checkpointing (Phase 1)
|
|
45
|
+
* - Dependency Manager: Task dependency resolution (Phase 2)
|
|
46
|
+
* - Message Bus: Event-driven communication (Phase 3)
|
|
47
|
+
* - Completion Detection: Hierarchical/Mesh detection (Phase 4)
|
|
48
|
+
* - Hierarchical Coordinator: PM-based coordination (Phase 5)
|
|
49
|
+
* - Help System: Capability-based help matching (Phase 7)
|
|
50
|
+
* - Deadlock Detection: Resource deadlock prevention (Phase 8)
|
|
51
|
+
*
|
|
52
|
+
* Topology Selection:
|
|
53
|
+
* - AUTO: <10 agents = Mesh, ≥10 agents = Hierarchical
|
|
54
|
+
* - HIERARCHICAL: PM-based, any size
|
|
55
|
+
* - MESH: Peer-to-peer, optimal for 2-10 agents
|
|
56
|
+
*
|
|
57
|
+
* @example
|
|
58
|
+
* ```typescript
|
|
59
|
+
* const coordinator = new SwarmCoordinatorV2(
|
|
60
|
+
* stateMachine,
|
|
61
|
+
* dependencyManager,
|
|
62
|
+
* messageBus,
|
|
63
|
+
* hierarchicalDetector,
|
|
64
|
+
* meshDetector,
|
|
65
|
+
* hierarchicalCoordinator,
|
|
66
|
+
* checkpointManager,
|
|
67
|
+
* helpCoordinator,
|
|
68
|
+
* deadlockDetector,
|
|
69
|
+
* { swarmId: 'swarm-1', topology: SwarmTopology.AUTO }
|
|
70
|
+
* );
|
|
71
|
+
*
|
|
72
|
+
* await coordinator.initialize();
|
|
73
|
+
*
|
|
74
|
+
* // Spawn agents
|
|
75
|
+
* const pm = await coordinator.spawnAgent({
|
|
76
|
+
* agentId: 'pm-1',
|
|
77
|
+
* type: 'pm',
|
|
78
|
+
* isProjectManager: true,
|
|
79
|
+
* priority: 10
|
|
80
|
+
* });
|
|
81
|
+
*
|
|
82
|
+
* const worker = await coordinator.spawnAgent({
|
|
83
|
+
* agentId: 'worker-1',
|
|
84
|
+
* type: 'coder',
|
|
85
|
+
* parentId: 'pm-1',
|
|
86
|
+
* priority: 5
|
|
87
|
+
* });
|
|
88
|
+
*
|
|
89
|
+
* // Wait for completion
|
|
90
|
+
* const result = await coordinator.waitForCompletion();
|
|
91
|
+
* console.log(`Swarm completed: ${result.completed}`);
|
|
92
|
+
* ```
|
|
93
|
+
*/ export class SwarmCoordinatorV2 extends EventEmitter {
|
|
94
|
+
logger;
|
|
95
|
+
config;
|
|
96
|
+
// Core components (Phase 1-8)
|
|
97
|
+
stateMachine;
|
|
98
|
+
dependencyManager;
|
|
99
|
+
messageBus;
|
|
100
|
+
hierarchicalDetector;
|
|
101
|
+
meshDetector;
|
|
102
|
+
hierarchicalCoordinator;
|
|
103
|
+
checkpointManager;
|
|
104
|
+
helpCoordinator;
|
|
105
|
+
deadlockDetector;
|
|
106
|
+
// Swarm state
|
|
107
|
+
activeTopology;
|
|
108
|
+
agents;
|
|
109
|
+
rootPmId;
|
|
110
|
+
initialized;
|
|
111
|
+
// Completion tracking
|
|
112
|
+
completionPromise;
|
|
113
|
+
constructor(stateMachine, dependencyManager, messageBus, hierarchicalDetector, meshDetector, hierarchicalCoordinator, checkpointManager, helpCoordinator, deadlockDetector, config){
|
|
114
|
+
super();
|
|
115
|
+
this.logger = new Logger({
|
|
116
|
+
level: config?.enableLogging ? 'debug' : 'info',
|
|
117
|
+
format: 'text',
|
|
118
|
+
destination: 'console'
|
|
119
|
+
});
|
|
120
|
+
this.config = {
|
|
121
|
+
swarmId: config?.swarmId || `swarm_${Date.now()}`,
|
|
122
|
+
topology: config?.topology ?? "auto",
|
|
123
|
+
maxAgents: config?.maxAgents ?? 20,
|
|
124
|
+
autoCheckpoint: config?.autoCheckpoint ?? true,
|
|
125
|
+
enableCompletionDetection: config?.enableCompletionDetection ?? true,
|
|
126
|
+
enableHelpSystem: config?.enableHelpSystem ?? true,
|
|
127
|
+
enableDeadlockDetection: config?.enableDeadlockDetection ?? true,
|
|
128
|
+
enableLogging: config?.enableLogging ?? false
|
|
129
|
+
};
|
|
130
|
+
this.stateMachine = stateMachine;
|
|
131
|
+
this.dependencyManager = dependencyManager;
|
|
132
|
+
this.messageBus = messageBus;
|
|
133
|
+
this.hierarchicalDetector = hierarchicalDetector;
|
|
134
|
+
this.meshDetector = meshDetector;
|
|
135
|
+
this.hierarchicalCoordinator = hierarchicalCoordinator;
|
|
136
|
+
this.checkpointManager = checkpointManager;
|
|
137
|
+
this.helpCoordinator = helpCoordinator;
|
|
138
|
+
this.deadlockDetector = deadlockDetector;
|
|
139
|
+
this.activeTopology = this.config.topology;
|
|
140
|
+
this.agents = new Map();
|
|
141
|
+
this.initialized = false;
|
|
142
|
+
this.logger.info('SwarmCoordinatorV2 created', {
|
|
143
|
+
swarmId: this.config.swarmId,
|
|
144
|
+
topology: this.config.topology,
|
|
145
|
+
maxAgents: this.config.maxAgents
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Initialize coordinator and all integrated components
|
|
150
|
+
*/ async initialize() {
|
|
151
|
+
if (this.initialized) {
|
|
152
|
+
this.logger.warn('SwarmCoordinatorV2 already initialized');
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
this.logger.info('Initializing SwarmCoordinatorV2', {
|
|
156
|
+
swarmId: this.config.swarmId
|
|
157
|
+
});
|
|
158
|
+
// Wire up event listeners
|
|
159
|
+
this.setupEventListeners();
|
|
160
|
+
// Initialize hierarchical coordinator (always needed for agent spawn)
|
|
161
|
+
await this.hierarchicalCoordinator.initialize();
|
|
162
|
+
this.initialized = true;
|
|
163
|
+
this.logger.info('SwarmCoordinatorV2 initialized successfully');
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Spawn agent in swarm
|
|
167
|
+
*
|
|
168
|
+
* @param request - Agent spawn request
|
|
169
|
+
* @returns Spawned agent node
|
|
170
|
+
*/ async spawnAgent(request) {
|
|
171
|
+
this.validateInitialized();
|
|
172
|
+
const { agentId, type, priority, parentId, isProjectManager, initialState, metadata } = request;
|
|
173
|
+
this.logger.debug('Spawning agent', {
|
|
174
|
+
agentId,
|
|
175
|
+
type,
|
|
176
|
+
isProjectManager
|
|
177
|
+
});
|
|
178
|
+
// Auto-select topology based on swarm size
|
|
179
|
+
if (this.config.topology === "auto") {
|
|
180
|
+
this.activeTopology = this.agents.size < 10 ? "mesh" : "hierarchical";
|
|
181
|
+
}
|
|
182
|
+
let node;
|
|
183
|
+
// Spawn via hierarchical coordinator
|
|
184
|
+
if (isProjectManager) {
|
|
185
|
+
const level = parentId ? this.getAgentLevel(parentId) + 1 : 0;
|
|
186
|
+
node = await this.hierarchicalCoordinator.spawnProjectManager(agentId, level, parentId);
|
|
187
|
+
if (!this.rootPmId && !parentId) {
|
|
188
|
+
this.rootPmId = agentId;
|
|
189
|
+
}
|
|
190
|
+
} else {
|
|
191
|
+
// Spawn as worker
|
|
192
|
+
const parent = parentId ? this.agents.get(parentId) : undefined;
|
|
193
|
+
const level = parent ? parent.level + 1 : 0;
|
|
194
|
+
// Create agent via state machine
|
|
195
|
+
const sessionId = `session_${agentId}_${Date.now()}`;
|
|
196
|
+
await this.stateMachine.registerAgent(agentId, sessionId, initialState);
|
|
197
|
+
node = {
|
|
198
|
+
agentId,
|
|
199
|
+
type,
|
|
200
|
+
state: initialState || 'IDLE',
|
|
201
|
+
level,
|
|
202
|
+
parentId,
|
|
203
|
+
childIds: [],
|
|
204
|
+
isProjectManager: false,
|
|
205
|
+
sessionId,
|
|
206
|
+
priority: priority ?? 5,
|
|
207
|
+
lastUpdated: Date.now(),
|
|
208
|
+
metadata
|
|
209
|
+
};
|
|
210
|
+
// Register with hierarchical coordinator if has parent
|
|
211
|
+
if (parentId && parent) {
|
|
212
|
+
parent.childIds.push(agentId);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
this.agents.set(agentId, node);
|
|
216
|
+
// Register with help system if enabled
|
|
217
|
+
if (this.config.enableHelpSystem && this.helpCoordinator) {
|
|
218
|
+
// Agent profiles registered via help coordinator
|
|
219
|
+
}
|
|
220
|
+
// Emit agent spawned event
|
|
221
|
+
this.emit('agent:spawned', {
|
|
222
|
+
swarmId: this.config.swarmId,
|
|
223
|
+
agentId,
|
|
224
|
+
type,
|
|
225
|
+
isProjectManager,
|
|
226
|
+
topology: this.activeTopology
|
|
227
|
+
});
|
|
228
|
+
this.logger.info('Agent spawned', {
|
|
229
|
+
agentId,
|
|
230
|
+
type,
|
|
231
|
+
level: node.level,
|
|
232
|
+
parentId,
|
|
233
|
+
topology: this.activeTopology
|
|
234
|
+
});
|
|
235
|
+
return node;
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Transition agent state
|
|
239
|
+
*
|
|
240
|
+
* @param agentId - Agent to transition
|
|
241
|
+
* @param newState - Target state
|
|
242
|
+
* @param metadata - Optional transition metadata
|
|
243
|
+
*/ async transitionAgent(agentId, newState, metadata) {
|
|
244
|
+
this.validateInitialized();
|
|
245
|
+
await this.stateMachine.transition(agentId, newState, {
|
|
246
|
+
metadata
|
|
247
|
+
});
|
|
248
|
+
// Update local agent state
|
|
249
|
+
const agent = this.agents.get(agentId);
|
|
250
|
+
if (agent) {
|
|
251
|
+
agent.state = newState;
|
|
252
|
+
agent.lastUpdated = Date.now();
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Delegate task from PM to worker
|
|
257
|
+
*
|
|
258
|
+
* @param pmId - Project Manager agent ID
|
|
259
|
+
* @param workerId - Worker agent ID
|
|
260
|
+
* @param taskId - Task identifier
|
|
261
|
+
* @param description - Task description
|
|
262
|
+
* @param priority - Task priority
|
|
263
|
+
*/ async delegateTask(pmId, workerId, taskId, description, priority = 5) {
|
|
264
|
+
this.validateInitialized();
|
|
265
|
+
await this.hierarchicalCoordinator.delegateTask({
|
|
266
|
+
taskId,
|
|
267
|
+
description,
|
|
268
|
+
workerId,
|
|
269
|
+
pmId,
|
|
270
|
+
priority
|
|
271
|
+
});
|
|
272
|
+
// Register task in dependency manager
|
|
273
|
+
this.dependencyManager.registerTask({
|
|
274
|
+
id: taskId,
|
|
275
|
+
agentId: workerId,
|
|
276
|
+
taskId,
|
|
277
|
+
priority,
|
|
278
|
+
metadata: {
|
|
279
|
+
pmId,
|
|
280
|
+
description
|
|
281
|
+
}
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* Request help from another agent
|
|
286
|
+
*
|
|
287
|
+
* @param requestingAgentId - Agent requesting help
|
|
288
|
+
* @param helperAgentId - Agent to provide help
|
|
289
|
+
* @param reason - Help request reason
|
|
290
|
+
*/ async requestHelp(requestingAgentId, helperAgentId, reason) {
|
|
291
|
+
this.validateInitialized();
|
|
292
|
+
if (!this.config.enableHelpSystem || !this.helpCoordinator) {
|
|
293
|
+
throw new Error('Help system not enabled');
|
|
294
|
+
}
|
|
295
|
+
// Transition requesting agent to WAITING
|
|
296
|
+
await this.transitionAgent(requestingAgentId, 'WAITING', {
|
|
297
|
+
reason
|
|
298
|
+
});
|
|
299
|
+
// Request help via state machine (handles HELPING transition)
|
|
300
|
+
const result = await this.stateMachine.requestHelp(requestingAgentId, helperAgentId, reason);
|
|
301
|
+
this.emit('help:requested', {
|
|
302
|
+
swarmId: this.config.swarmId,
|
|
303
|
+
requestingAgentId,
|
|
304
|
+
helperAgentId,
|
|
305
|
+
requestId: result.requestId
|
|
306
|
+
});
|
|
307
|
+
return result;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* Complete help request
|
|
311
|
+
*
|
|
312
|
+
* @param requestId - Help request ID
|
|
313
|
+
*/ async completeHelp(requestId) {
|
|
314
|
+
this.validateInitialized();
|
|
315
|
+
await this.stateMachine.completeHelp(requestId);
|
|
316
|
+
this.emit('help:completed', {
|
|
317
|
+
swarmId: this.config.swarmId,
|
|
318
|
+
requestId
|
|
319
|
+
});
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Pause child agent (parent control)
|
|
323
|
+
*
|
|
324
|
+
* @param parentId - Parent agent ID
|
|
325
|
+
* @param childId - Child agent ID
|
|
326
|
+
* @param reason - Pause reason
|
|
327
|
+
*/ async pauseChild(parentId, childId, reason) {
|
|
328
|
+
this.validateInitialized();
|
|
329
|
+
await this.hierarchicalCoordinator.pauseChild(parentId, childId, reason);
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
* Resume child agent (parent control)
|
|
333
|
+
*
|
|
334
|
+
* @param parentId - Parent agent ID
|
|
335
|
+
* @param childId - Child agent ID
|
|
336
|
+
* @param checkpointId - Optional checkpoint ID
|
|
337
|
+
* @param reason - Resume reason
|
|
338
|
+
*/ async resumeChild(parentId, childId, checkpointId, reason) {
|
|
339
|
+
this.validateInitialized();
|
|
340
|
+
await this.hierarchicalCoordinator.resumeChild(parentId, childId, checkpointId, reason);
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* Detect swarm completion
|
|
344
|
+
*
|
|
345
|
+
* Uses active topology detector (hierarchical or mesh).
|
|
346
|
+
*
|
|
347
|
+
* @returns Completion result
|
|
348
|
+
*/ async detectCompletion() {
|
|
349
|
+
this.validateInitialized();
|
|
350
|
+
if (!this.config.enableCompletionDetection) {
|
|
351
|
+
throw new Error('Completion detection not enabled');
|
|
352
|
+
}
|
|
353
|
+
const startTime = performance.now();
|
|
354
|
+
// Use appropriate detector based on active topology
|
|
355
|
+
if (this.activeTopology === "hierarchical" && this.rootPmId) {
|
|
356
|
+
// Hierarchical completion detection
|
|
357
|
+
const agentConfigs = Array.from(this.agents.values()).map((node)=>({
|
|
358
|
+
agentId: node.agentId,
|
|
359
|
+
parentId: node.parentId,
|
|
360
|
+
isProjectManager: node.isProjectManager
|
|
361
|
+
}));
|
|
362
|
+
this.hierarchicalDetector.registerSwarm(this.config.swarmId, this.rootPmId, agentConfigs);
|
|
363
|
+
const result = await this.hierarchicalDetector.detectCompletion(this.config.swarmId);
|
|
364
|
+
return {
|
|
365
|
+
completed: result.completed,
|
|
366
|
+
swarmId: result.swarmId,
|
|
367
|
+
timestamp: result.timestamp,
|
|
368
|
+
agentStates: result.agentStates,
|
|
369
|
+
completedCount: result.completedCount,
|
|
370
|
+
totalCount: result.totalCount,
|
|
371
|
+
latencyMs: result.latencyMs,
|
|
372
|
+
checkpointId: result.checkpointId,
|
|
373
|
+
metadata: {
|
|
374
|
+
...result.metadata,
|
|
375
|
+
topology: "hierarchical"
|
|
376
|
+
}
|
|
377
|
+
};
|
|
378
|
+
} else {
|
|
379
|
+
// Mesh completion detection
|
|
380
|
+
const agentIds = Array.from(this.agents.keys());
|
|
381
|
+
await this.meshDetector.initializeSwarm(this.config.swarmId, agentIds);
|
|
382
|
+
await this.meshDetector.startMonitoring(this.config.swarmId);
|
|
383
|
+
const completed = await this.meshDetector.detectCompletion(this.config.swarmId);
|
|
384
|
+
const agentStates = new Map();
|
|
385
|
+
for (const [agentId, node] of this.agents.entries()){
|
|
386
|
+
agentStates.set(agentId, node.state);
|
|
387
|
+
}
|
|
388
|
+
return {
|
|
389
|
+
completed,
|
|
390
|
+
swarmId: this.config.swarmId,
|
|
391
|
+
timestamp: new Date(),
|
|
392
|
+
agentStates,
|
|
393
|
+
completedCount: Array.from(agentStates.values()).filter((s)=>s === 'COMPLETED').length,
|
|
394
|
+
totalCount: this.agents.size,
|
|
395
|
+
latencyMs: performance.now() - startTime,
|
|
396
|
+
metadata: {
|
|
397
|
+
topology: "mesh"
|
|
398
|
+
}
|
|
399
|
+
};
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
/**
|
|
403
|
+
* Wait for swarm completion
|
|
404
|
+
*
|
|
405
|
+
* Blocks until swarm completes or timeout.
|
|
406
|
+
*
|
|
407
|
+
* @param timeoutMs - Optional timeout in milliseconds
|
|
408
|
+
* @returns Completion result
|
|
409
|
+
*/ async waitForCompletion(timeoutMs) {
|
|
410
|
+
this.validateInitialized();
|
|
411
|
+
return new Promise((resolve, reject)=>{
|
|
412
|
+
this.completionPromise = {
|
|
413
|
+
resolve,
|
|
414
|
+
reject
|
|
415
|
+
};
|
|
416
|
+
// Set timeout if specified
|
|
417
|
+
if (timeoutMs) {
|
|
418
|
+
setTimeout(()=>{
|
|
419
|
+
if (this.completionPromise) {
|
|
420
|
+
this.completionPromise.reject(new Error(`Swarm completion timeout after ${timeoutMs}ms`));
|
|
421
|
+
this.completionPromise = undefined;
|
|
422
|
+
}
|
|
423
|
+
}, timeoutMs);
|
|
424
|
+
}
|
|
425
|
+
// Poll for completion
|
|
426
|
+
const pollInterval = setInterval(async ()=>{
|
|
427
|
+
try {
|
|
428
|
+
const result = await this.detectCompletion();
|
|
429
|
+
if (result.completed && this.completionPromise) {
|
|
430
|
+
clearInterval(pollInterval);
|
|
431
|
+
this.completionPromise.resolve(result);
|
|
432
|
+
this.completionPromise = undefined;
|
|
433
|
+
}
|
|
434
|
+
} catch (error) {
|
|
435
|
+
clearInterval(pollInterval);
|
|
436
|
+
if (this.completionPromise) {
|
|
437
|
+
this.completionPromise.reject(error);
|
|
438
|
+
this.completionPromise = undefined;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
}, 1000);
|
|
442
|
+
});
|
|
443
|
+
}
|
|
444
|
+
/**
|
|
445
|
+
* Get swarm statistics
|
|
446
|
+
*/ getStatistics() {
|
|
447
|
+
const stateMachineMetrics = this.stateMachine.getMetrics();
|
|
448
|
+
const dependencyStats = this.dependencyManager.getStatistics();
|
|
449
|
+
const messageBusStats = this.messageBus.getStats();
|
|
450
|
+
const completedCount = Array.from(this.agents.values()).filter((a)=>a.state === 'COMPLETED').length;
|
|
451
|
+
const stats = {
|
|
452
|
+
swarmId: this.config.swarmId,
|
|
453
|
+
topology: this.activeTopology,
|
|
454
|
+
totalAgents: this.agents.size,
|
|
455
|
+
activeAgents: Array.from(this.agents.values()).filter((a)=>a.state !== 'COMPLETED' && a.state !== 'PAUSED').length,
|
|
456
|
+
completedAgents: completedCount,
|
|
457
|
+
completionPercentage: this.agents.size > 0 ? completedCount / this.agents.size * 100 : 0,
|
|
458
|
+
stateMachine: {
|
|
459
|
+
totalTransitions: stateMachineMetrics.totalTransitions,
|
|
460
|
+
averageLatencyMs: stateMachineMetrics.averageTransitionLatencyMs,
|
|
461
|
+
p99LatencyMs: stateMachineMetrics.p99TransitionLatencyMs
|
|
462
|
+
},
|
|
463
|
+
dependencies: {
|
|
464
|
+
totalTasks: dependencyStats.totalTasks,
|
|
465
|
+
completedTasks: dependencyStats.completedTasks,
|
|
466
|
+
readyTasks: dependencyStats.readyTasks,
|
|
467
|
+
blockedTasks: dependencyStats.blockedTasks
|
|
468
|
+
},
|
|
469
|
+
messaging: {
|
|
470
|
+
totalPublished: messageBusStats.totalPublished,
|
|
471
|
+
totalDelivered: messageBusStats.totalDelivered,
|
|
472
|
+
totalSubscriptions: messageBusStats.totalSubscriptions
|
|
473
|
+
}
|
|
474
|
+
};
|
|
475
|
+
// Add help system metrics if enabled
|
|
476
|
+
if (this.config.enableHelpSystem && this.helpCoordinator) {
|
|
477
|
+
const helpMetrics = this.helpCoordinator.getMetrics();
|
|
478
|
+
stats.helpSystem = {
|
|
479
|
+
totalRequests: helpMetrics.totalRequests,
|
|
480
|
+
successfulMatches: helpMetrics.successfulMatches,
|
|
481
|
+
averageMatchTimeMs: helpMetrics.averageMatchTimeMs
|
|
482
|
+
};
|
|
483
|
+
}
|
|
484
|
+
// Add deadlock metrics if enabled
|
|
485
|
+
if (this.config.enableDeadlockDetection && this.deadlockDetector) {
|
|
486
|
+
const deadlockMetrics = this.deadlockDetector.getMetrics();
|
|
487
|
+
stats.deadlockDetection = {
|
|
488
|
+
cyclesDetected: deadlockMetrics.cyclesDetected,
|
|
489
|
+
recoveryActions: deadlockMetrics.recoveryActions
|
|
490
|
+
};
|
|
491
|
+
}
|
|
492
|
+
return stats;
|
|
493
|
+
}
|
|
494
|
+
/**
|
|
495
|
+
* Get agent by ID
|
|
496
|
+
*/ getAgent(agentId) {
|
|
497
|
+
return this.agents.get(agentId);
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* Get all agents
|
|
501
|
+
*/ getAllAgents() {
|
|
502
|
+
return Array.from(this.agents.values());
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* Get active topology
|
|
506
|
+
*/ getTopology() {
|
|
507
|
+
return this.activeTopology;
|
|
508
|
+
}
|
|
509
|
+
/**
|
|
510
|
+
* Setup event listeners for cross-component integration
|
|
511
|
+
*/ setupEventListeners() {
|
|
512
|
+
// State machine events
|
|
513
|
+
this.stateMachine.on('state:transition', (event)=>{
|
|
514
|
+
const agent = this.agents.get(event.agentId);
|
|
515
|
+
if (agent) {
|
|
516
|
+
agent.state = event.toState;
|
|
517
|
+
agent.lastUpdated = Date.now();
|
|
518
|
+
}
|
|
519
|
+
this.emit('agent:state:changed', {
|
|
520
|
+
swarmId: this.config.swarmId,
|
|
521
|
+
...event
|
|
522
|
+
});
|
|
523
|
+
});
|
|
524
|
+
// Hierarchical coordinator events
|
|
525
|
+
this.hierarchicalCoordinator.on('task:delegated', (event)=>{
|
|
526
|
+
this.emit('task:delegated', {
|
|
527
|
+
swarmId: this.config.swarmId,
|
|
528
|
+
...event
|
|
529
|
+
});
|
|
530
|
+
});
|
|
531
|
+
this.hierarchicalCoordinator.on('parent:control', (event)=>{
|
|
532
|
+
this.emit('parent:control', {
|
|
533
|
+
swarmId: this.config.swarmId,
|
|
534
|
+
...event
|
|
535
|
+
});
|
|
536
|
+
});
|
|
537
|
+
// Message bus events
|
|
538
|
+
this.messageBus.on('message-published', (event)=>{
|
|
539
|
+
this.emit('message:published', {
|
|
540
|
+
swarmId: this.config.swarmId,
|
|
541
|
+
...event
|
|
542
|
+
});
|
|
543
|
+
});
|
|
544
|
+
// Help system events (if enabled)
|
|
545
|
+
if (this.config.enableHelpSystem && this.helpCoordinator) {
|
|
546
|
+
this.helpCoordinator.on('help:matched', (event)=>{
|
|
547
|
+
this.emit('help:matched', {
|
|
548
|
+
swarmId: this.config.swarmId,
|
|
549
|
+
...event
|
|
550
|
+
});
|
|
551
|
+
});
|
|
552
|
+
}
|
|
553
|
+
// Deadlock events (if enabled)
|
|
554
|
+
if (this.config.enableDeadlockDetection && this.deadlockDetector) {
|
|
555
|
+
this.deadlockDetector.on('deadlock:detected', (event)=>{
|
|
556
|
+
this.emit('deadlock:detected', {
|
|
557
|
+
swarmId: this.config.swarmId,
|
|
558
|
+
...event
|
|
559
|
+
});
|
|
560
|
+
});
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
/**
|
|
564
|
+
* Get agent hierarchy level
|
|
565
|
+
*/ getAgentLevel(agentId) {
|
|
566
|
+
const agent = this.agents.get(agentId);
|
|
567
|
+
return agent ? agent.level : 0;
|
|
568
|
+
}
|
|
569
|
+
/**
|
|
570
|
+
* Validate coordinator is initialized
|
|
571
|
+
*/ validateInitialized() {
|
|
572
|
+
if (!this.initialized) {
|
|
573
|
+
throw new Error('SwarmCoordinatorV2 not initialized. Call initialize() first.');
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
/**
|
|
577
|
+
* Cleanup coordinator and release resources
|
|
578
|
+
*/ async cleanup() {
|
|
579
|
+
this.logger.info('Cleaning up SwarmCoordinatorV2', {
|
|
580
|
+
swarmId: this.config.swarmId
|
|
581
|
+
});
|
|
582
|
+
// Cleanup hierarchical coordinator
|
|
583
|
+
await this.hierarchicalCoordinator.cleanup();
|
|
584
|
+
// Cleanup state machine
|
|
585
|
+
await this.stateMachine.cleanup();
|
|
586
|
+
// Cleanup mesh detector
|
|
587
|
+
if (this.activeTopology === "mesh") {
|
|
588
|
+
this.meshDetector.cleanup(this.config.swarmId);
|
|
589
|
+
}
|
|
590
|
+
// Shutdown message bus
|
|
591
|
+
this.messageBus.shutdown();
|
|
592
|
+
// Clear state
|
|
593
|
+
this.agents.clear();
|
|
594
|
+
this.initialized = false;
|
|
595
|
+
this.completionPromise = undefined;
|
|
596
|
+
this.removeAllListeners();
|
|
597
|
+
this.logger.info('SwarmCoordinatorV2 cleaned up successfully');
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
//# sourceMappingURL=swarm-coordinator-v2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/coordinators/swarm-coordinator-v2.ts"],"names":["EventEmitter","Logger","SwarmTopology","SwarmCoordinatorV2","logger","config","stateMachine","dependencyManager","messageBus","hierarchicalDetector","meshDetector","hierarchicalCoordinator","checkpointManager","helpCoordinator","deadlockDetector","activeTopology","agents","rootPmId","initialized","completionPromise","level","enableLogging","format","destination","swarmId","Date","now","topology","maxAgents","autoCheckpoint","enableCompletionDetection","enableHelpSystem","enableDeadlockDetection","Map","info","initialize","warn","setupEventListeners","spawnAgent","request","validateInitialized","agentId","type","priority","parentId","isProjectManager","initialState","metadata","debug","size","node","getAgentLevel","spawnProjectManager","parent","get","undefined","sessionId","registerAgent","state","childIds","lastUpdated","push","set","emit","transitionAgent","newState","transition","agent","delegateTask","pmId","workerId","taskId","description","registerTask","id","requestHelp","requestingAgentId","helperAgentId","reason","Error","result","requestId","completeHelp","pauseChild","childId","resumeChild","checkpointId","detectCompletion","startTime","performance","agentConfigs","Array","from","values","map","registerSwarm","completed","timestamp","agentStates","completedCount","totalCount","latencyMs","agentIds","keys","initializeSwarm","startMonitoring","entries","filter","s","length","waitForCompletion","timeoutMs","Promise","resolve","reject","setTimeout","pollInterval","setInterval","clearInterval","error","getStatistics","stateMachineMetrics","getMetrics","dependencyStats","messageBusStats","getStats","a","stats","totalAgents","activeAgents","completedAgents","completionPercentage","totalTransitions","averageLatencyMs","averageTransitionLatencyMs","p99LatencyMs","p99TransitionLatencyMs","dependencies","totalTasks","completedTasks","readyTasks","blockedTasks","messaging","totalPublished","totalDelivered","totalSubscriptions","helpMetrics","helpSystem","totalRequests","successfulMatches","averageMatchTimeMs","deadlockMetrics","deadlockDetection","cyclesDetected","recoveryActions","getAgent","getAllAgents","getTopology","on","event","toState","cleanup","shutdown","clear","removeAllListeners"],"mappings":"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"}
|
package/.claude-flow-novice/dist/src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.js
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Core State Definitions (Re-export)
|
|
3
|
+
*
|
|
4
|
+
* @deprecated Import from coordination/shared/core/agent-state instead
|
|
5
|
+
* @module coordination/v2/core/agent-state
|
|
6
|
+
*/ // Re-export from shared location for backward compatibility
|
|
7
|
+
export * from '../../shared/core/agent-state.js';
|
|
8
|
+
|
|
9
|
+
//# sourceMappingURL=agent-state.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/core/agent-state.ts"],"names":[],"mappings":"AAAA;;;;;CAKC,GAED,4DAA4D;AAC5D,cAAc,mCAAmC"}
|