claude-flow-novice 1.6.4 → 1.6.6
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/mcp-server-sdk.js +45 -0
- 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/config/.env.example +178 -0
- package/config/DEPLOYMENT_GUIDE.md +692 -0
- package/config/README-CONFIG.md +331 -0
- package/config/coordination-config.sh +327 -0
- package/config/docker/env.development +53 -0
- package/config/docker/env.production +83 -0
- package/config/docker/env.staging +70 -0
- package/config/k8s/configmap-development.yaml +60 -0
- package/config/k8s/configmap-production.yaml +85 -0
- package/config/k8s/configmap-staging.yaml +76 -0
- package/config/k8s/secret-production.yaml +62 -0
- package/config/k8s/secret-staging.yaml +36 -0
- package/package.json +2 -2
- package/scripts/monitoring/alert-monitor.sh +220 -0
- package/scripts/monitoring/dashboards/rate-limiting-dashboard.json +211 -0
- package/scripts/monitoring/quick-test-alerting.sh +118 -0
- package/scripts/monitoring/quick-test-rate-limiting.sh +206 -0
- package/scripts/monitoring/rate-limiting-monitor.sh +380 -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 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/help-system/help-coordinator.ts"],"names":["HelpRequest","HelpRequestPriority","HelpMatcher","MessagePriority","HelpCoordinator","matcher","activeRequests","requestQueue","routingHistory","config","metrics","recentLatencies","requestCounter","matcherConfig","Map","maxConcurrentRequests","autoRetry","maxRoutingAttempts","enableQueue","maxQueueSize","messageBroker","enableEventPublishing","undefined","totalRequests","successfulRoutes","failedRoutes","averageRoutingLatencyMs","p95RoutingLatencyMs","p99RoutingLatencyMs","queuedRequests","resolvedRequests","expiredRequests","createHelpRequest","requesterId","description","capabilities","priority","NORMAL","metadata","startTime","performance","now","requestId","generateRequestId","request","size","length","push","routingId","generateRoutingId","match","status","latencyMs","timestamp","Date","error","result","routeRequest","latency","recordRoutingMetrics","findMatch","markMatched","agentId","set","publishRoutingEvent","Error","message","startHelp","get","markInProgress","publishHelpStartedEvent","resolveHelp","markResolved","delete","publishHelpResolvedEvent","processQueue","failHelp","reason","markFailed","publishHelpFailedEvent","canRetry","retried","retry","cancelHelp","cancel","getRequestStatus","getRequest","registerAgent","profile","unregisterAgent","updateAgentState","state","updateAgentWorkload","workload","sort","a","b","nextRequest","shift","success","totalRoutes","sorted","Math","floor","getMetrics","matcherMetrics","getActiveRequests","Array","from","values","getQueuedRequests","getRoutingHistory","limit","slice","clear","publish","topic","payload","score","LOW","console","helperId","matchedHelperId","HIGH"],"mappings":"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"}
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Help Matcher
|
|
3
|
+
*
|
|
4
|
+
* Optimized capability matching algorithm for help requests.
|
|
5
|
+
* Target: <100ms p95 latency for capability matching.
|
|
6
|
+
*
|
|
7
|
+
* @module coordination/v2/help-system/help-matcher
|
|
8
|
+
*/ import { AgentState } from '../../shared/core/agent-state.js';
|
|
9
|
+
/**
|
|
10
|
+
* Help matcher implementation with optimized capability matching
|
|
11
|
+
*/ export class HelpMatcher {
|
|
12
|
+
/** Registered agent profiles */ agents;
|
|
13
|
+
/** Capability index for fast matching */ capabilityIndex;
|
|
14
|
+
/** Matcher configuration */ config;
|
|
15
|
+
/** Performance metrics */ metrics;
|
|
16
|
+
/** Recent match latencies for percentile calculation */ recentLatencies;
|
|
17
|
+
constructor(config){
|
|
18
|
+
this.agents = new Map();
|
|
19
|
+
this.capabilityIndex = new Map();
|
|
20
|
+
this.recentLatencies = [];
|
|
21
|
+
this.config = {
|
|
22
|
+
minMatchScore: config?.minMatchScore ?? 0.6,
|
|
23
|
+
proficiencyWeight: config?.proficiencyWeight ?? 0.4,
|
|
24
|
+
availabilityWeight: config?.availabilityWeight ?? 0.3,
|
|
25
|
+
workloadWeight: config?.workloadWeight ?? 0.2,
|
|
26
|
+
priorityWeight: config?.priorityWeight ?? 0.1,
|
|
27
|
+
enableCaching: config?.enableCaching ?? true,
|
|
28
|
+
maxCacheSize: config?.maxCacheSize ?? 1000,
|
|
29
|
+
cacheTTLMs: config?.cacheTTLMs ?? 60000
|
|
30
|
+
};
|
|
31
|
+
this.metrics = {
|
|
32
|
+
totalMatches: 0,
|
|
33
|
+
successfulMatches: 0,
|
|
34
|
+
averageLatencyMs: 0,
|
|
35
|
+
p95LatencyMs: 0,
|
|
36
|
+
p99LatencyMs: 0,
|
|
37
|
+
cacheHits: 0,
|
|
38
|
+
cacheMisses: 0
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Register agent profile for capability matching
|
|
43
|
+
*/ registerAgent(profile) {
|
|
44
|
+
this.agents.set(profile.agentId, profile);
|
|
45
|
+
this.rebuildCapabilityIndex();
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Unregister agent profile
|
|
49
|
+
*/ unregisterAgent(agentId) {
|
|
50
|
+
this.agents.delete(agentId);
|
|
51
|
+
this.rebuildCapabilityIndex();
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Update agent state
|
|
55
|
+
*/ updateAgentState(agentId, state) {
|
|
56
|
+
const agent = this.agents.get(agentId);
|
|
57
|
+
if (agent) {
|
|
58
|
+
agent.state = state;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Update agent workload
|
|
63
|
+
*/ updateAgentWorkload(agentId, workload) {
|
|
64
|
+
const agent = this.agents.get(agentId);
|
|
65
|
+
if (agent) {
|
|
66
|
+
agent.workload = Math.max(0, Math.min(1, workload));
|
|
67
|
+
this.rebuildCapabilityIndex();
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Find best matching agent for help request
|
|
72
|
+
* Target: <100ms p95 latency
|
|
73
|
+
*/ async findMatch(request) {
|
|
74
|
+
const startTime = performance.now();
|
|
75
|
+
try {
|
|
76
|
+
// Get available agents (IDLE or WORKING with low workload)
|
|
77
|
+
const availableAgents = this.getAvailableAgents();
|
|
78
|
+
if (availableAgents.length === 0) {
|
|
79
|
+
return null;
|
|
80
|
+
}
|
|
81
|
+
// Score all available agents
|
|
82
|
+
const matches = availableAgents.map((agent)=>this.scoreAgent(agent, request)).filter((match)=>match.score >= this.config.minMatchScore).sort((a, b)=>b.score - a.score);
|
|
83
|
+
if (matches.length === 0) {
|
|
84
|
+
return null;
|
|
85
|
+
}
|
|
86
|
+
// Return best match
|
|
87
|
+
const bestMatch = matches[0];
|
|
88
|
+
const latency = performance.now() - startTime;
|
|
89
|
+
bestMatch.latencyMs = latency;
|
|
90
|
+
this.recordMatchMetrics(latency, true);
|
|
91
|
+
this.metrics.successfulMatches++;
|
|
92
|
+
return bestMatch;
|
|
93
|
+
} catch (error) {
|
|
94
|
+
const latency = performance.now() - startTime;
|
|
95
|
+
this.recordMatchMetrics(latency, false);
|
|
96
|
+
throw error;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Find multiple matching agents (top N)
|
|
101
|
+
*/ async findMatches(request, limit = 5) {
|
|
102
|
+
const startTime = performance.now();
|
|
103
|
+
const availableAgents = this.getAvailableAgents();
|
|
104
|
+
const matches = availableAgents.map((agent)=>this.scoreAgent(agent, request)).filter((match)=>match.score >= this.config.minMatchScore).sort((a, b)=>b.score - a.score).slice(0, limit);
|
|
105
|
+
const latency = performance.now() - startTime;
|
|
106
|
+
matches.forEach((match)=>{
|
|
107
|
+
match.latencyMs = latency;
|
|
108
|
+
});
|
|
109
|
+
this.recordMatchMetrics(latency, matches.length > 0);
|
|
110
|
+
return matches;
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Get available agents for help requests
|
|
114
|
+
*/ getAvailableAgents() {
|
|
115
|
+
return Array.from(this.agents.values()).filter((agent)=>{
|
|
116
|
+
// IDLE agents are always available
|
|
117
|
+
if (agent.state === AgentState.IDLE) {
|
|
118
|
+
return true;
|
|
119
|
+
}
|
|
120
|
+
// WORKING agents with low workload can help
|
|
121
|
+
if (agent.state === AgentState.WORKING && agent.workload < 0.7) {
|
|
122
|
+
return true;
|
|
123
|
+
}
|
|
124
|
+
// HELPING agents can help multiple requests if workload allows
|
|
125
|
+
if (agent.state === AgentState.HELPING && agent.workload < 0.8) {
|
|
126
|
+
return true;
|
|
127
|
+
}
|
|
128
|
+
return false;
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* Score agent against help request requirements
|
|
133
|
+
*/ scoreAgent(agent, request) {
|
|
134
|
+
const matched = [];
|
|
135
|
+
const missing = [];
|
|
136
|
+
let totalCapabilityScore = 0;
|
|
137
|
+
let requiredCapabilitiesMet = 0;
|
|
138
|
+
let totalRequiredCapabilities = 0;
|
|
139
|
+
// Check each required capability
|
|
140
|
+
for (const requirement of request.capabilities){
|
|
141
|
+
const agentCapability = agent.capabilities.find((c)=>c.name === requirement.capability);
|
|
142
|
+
if (requirement.required) {
|
|
143
|
+
totalRequiredCapabilities++;
|
|
144
|
+
}
|
|
145
|
+
if (agentCapability) {
|
|
146
|
+
const proficiencyScore = agentCapability.proficiency;
|
|
147
|
+
const meetsMinProficiency = !requirement.minProficiency || proficiencyScore >= requirement.minProficiency;
|
|
148
|
+
if (meetsMinProficiency) {
|
|
149
|
+
matched.push({
|
|
150
|
+
capability: requirement.capability,
|
|
151
|
+
proficiency: proficiencyScore,
|
|
152
|
+
required: requirement.required
|
|
153
|
+
});
|
|
154
|
+
totalCapabilityScore += proficiencyScore;
|
|
155
|
+
if (requirement.required) {
|
|
156
|
+
requiredCapabilitiesMet++;
|
|
157
|
+
}
|
|
158
|
+
} else if (requirement.required) {
|
|
159
|
+
missing.push(requirement.capability);
|
|
160
|
+
}
|
|
161
|
+
} else if (requirement.required) {
|
|
162
|
+
missing.push(requirement.capability);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
// If any required capabilities are missing, score is 0
|
|
166
|
+
if (missing.length > 0) {
|
|
167
|
+
return {
|
|
168
|
+
agentId: agent.agentId,
|
|
169
|
+
score: 0,
|
|
170
|
+
matchedCapabilities: matched,
|
|
171
|
+
missingCapabilities: missing,
|
|
172
|
+
confidence: 0,
|
|
173
|
+
latencyMs: 0
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
// Calculate component scores
|
|
177
|
+
const avgCapabilityScore = matched.length > 0 ? totalCapabilityScore / matched.length : 0;
|
|
178
|
+
const availabilityScore = this.calculateAvailabilityScore(agent.state);
|
|
179
|
+
const workloadScore = 1 - agent.workload;
|
|
180
|
+
const priorityScore = agent.priority / 10;
|
|
181
|
+
// Weighted composite score
|
|
182
|
+
const score = avgCapabilityScore * this.config.proficiencyWeight + availabilityScore * this.config.availabilityWeight + workloadScore * this.config.workloadWeight + priorityScore * this.config.priorityWeight;
|
|
183
|
+
// Confidence based on required capabilities coverage
|
|
184
|
+
const confidence = totalRequiredCapabilities > 0 ? requiredCapabilitiesMet / totalRequiredCapabilities : 1.0;
|
|
185
|
+
return {
|
|
186
|
+
agentId: agent.agentId,
|
|
187
|
+
score,
|
|
188
|
+
matchedCapabilities: matched,
|
|
189
|
+
missingCapabilities: missing,
|
|
190
|
+
confidence,
|
|
191
|
+
latencyMs: 0
|
|
192
|
+
};
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* Calculate availability score based on agent state
|
|
196
|
+
*/ calculateAvailabilityScore(state) {
|
|
197
|
+
switch(state){
|
|
198
|
+
case AgentState.IDLE:
|
|
199
|
+
return 1.0;
|
|
200
|
+
case AgentState.HELPING:
|
|
201
|
+
return 0.8;
|
|
202
|
+
case AgentState.WORKING:
|
|
203
|
+
return 0.6;
|
|
204
|
+
case AgentState.WAITING:
|
|
205
|
+
return 0.4;
|
|
206
|
+
default:
|
|
207
|
+
return 0.0;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
/**
|
|
211
|
+
* Rebuild capability index for optimized lookups
|
|
212
|
+
*/ rebuildCapabilityIndex() {
|
|
213
|
+
this.capabilityIndex.clear();
|
|
214
|
+
for (const agent of Array.from(this.agents.values())){
|
|
215
|
+
for (const capability of agent.capabilities){
|
|
216
|
+
let index = this.capabilityIndex.get(capability.name);
|
|
217
|
+
if (!index) {
|
|
218
|
+
index = {
|
|
219
|
+
capability: capability.name,
|
|
220
|
+
agents: [],
|
|
221
|
+
lastUpdated: new Date()
|
|
222
|
+
};
|
|
223
|
+
this.capabilityIndex.set(capability.name, index);
|
|
224
|
+
}
|
|
225
|
+
index.agents.push({
|
|
226
|
+
agentId: agent.agentId,
|
|
227
|
+
proficiency: capability.proficiency,
|
|
228
|
+
workload: agent.workload
|
|
229
|
+
});
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
// Sort agents by proficiency descending
|
|
233
|
+
for (const index of Array.from(this.capabilityIndex.values())){
|
|
234
|
+
index.agents.sort((a, b)=>b.proficiency - a.proficiency);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
/**
|
|
238
|
+
* Record match metrics for performance tracking
|
|
239
|
+
*/ recordMatchMetrics(latencyMs, success) {
|
|
240
|
+
this.metrics.totalMatches++;
|
|
241
|
+
this.recentLatencies.push(latencyMs);
|
|
242
|
+
// Keep only last 1000 latencies for percentile calculation
|
|
243
|
+
if (this.recentLatencies.length > 1000) {
|
|
244
|
+
this.recentLatencies.shift();
|
|
245
|
+
}
|
|
246
|
+
// Update average latency
|
|
247
|
+
this.metrics.averageLatencyMs = (this.metrics.averageLatencyMs * (this.metrics.totalMatches - 1) + latencyMs) / this.metrics.totalMatches;
|
|
248
|
+
// Update percentiles
|
|
249
|
+
const sorted = [
|
|
250
|
+
...this.recentLatencies
|
|
251
|
+
].sort((a, b)=>a - b);
|
|
252
|
+
this.metrics.p95LatencyMs = sorted[Math.floor(sorted.length * 0.95)] || 0;
|
|
253
|
+
this.metrics.p99LatencyMs = sorted[Math.floor(sorted.length * 0.99)] || 0;
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Get matcher performance metrics
|
|
257
|
+
*/ getMetrics() {
|
|
258
|
+
return {
|
|
259
|
+
...this.metrics,
|
|
260
|
+
registeredAgents: this.agents.size,
|
|
261
|
+
indexedCapabilities: this.capabilityIndex.size,
|
|
262
|
+
averageAgentsPerCapability: this.capabilityIndex.size > 0 ? Array.from(this.capabilityIndex.values()).reduce((sum, idx)=>sum + idx.agents.length, 0) / this.capabilityIndex.size : 0
|
|
263
|
+
};
|
|
264
|
+
}
|
|
265
|
+
/**
|
|
266
|
+
* Get registered agents count
|
|
267
|
+
*/ getRegisteredAgentsCount() {
|
|
268
|
+
return this.agents.size;
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Clear all agents and reset index
|
|
272
|
+
*/ clear() {
|
|
273
|
+
this.agents.clear();
|
|
274
|
+
this.capabilityIndex.clear();
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
//# sourceMappingURL=help-matcher.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/help-system/help-matcher.ts"],"names":["AgentState","HelpMatcher","agents","capabilityIndex","config","metrics","recentLatencies","Map","minMatchScore","proficiencyWeight","availabilityWeight","workloadWeight","priorityWeight","enableCaching","maxCacheSize","cacheTTLMs","totalMatches","successfulMatches","averageLatencyMs","p95LatencyMs","p99LatencyMs","cacheHits","cacheMisses","registerAgent","profile","set","agentId","rebuildCapabilityIndex","unregisterAgent","delete","updateAgentState","state","agent","get","updateAgentWorkload","workload","Math","max","min","findMatch","request","startTime","performance","now","availableAgents","getAvailableAgents","length","matches","map","scoreAgent","filter","match","score","sort","a","b","bestMatch","latency","latencyMs","recordMatchMetrics","error","findMatches","limit","slice","forEach","Array","from","values","IDLE","WORKING","HELPING","matched","missing","totalCapabilityScore","requiredCapabilitiesMet","totalRequiredCapabilities","requirement","capabilities","agentCapability","find","c","name","capability","required","proficiencyScore","proficiency","meetsMinProficiency","minProficiency","push","matchedCapabilities","missingCapabilities","confidence","avgCapabilityScore","availabilityScore","calculateAvailabilityScore","workloadScore","priorityScore","priority","WAITING","clear","index","lastUpdated","Date","success","shift","sorted","floor","getMetrics","registeredAgents","size","indexedCapabilities","averageAgentsPerCapability","reduce","sum","idx","getRegisteredAgentsCount"],"mappings":"AAAA;;;;;;;CAOC,GAGD,SAASA,UAAU,QAAQ,mCAAmC;AA0H9D;;CAEC,GACD,OAAO,MAAMC;IACX,8BAA8B,GAC9B,AAAQC,OAAkC;IAE1C,uCAAuC,GACvC,AAAQC,gBAA8C;IAEtD,0BAA0B,GAC1B,AAAQC,OAAgC;IAExC,wBAAwB,GACxB,AAAQC,QAQN;IAEF,sDAAsD,GACtD,AAAQC,gBAA0B;IAElC,YAAYF,MAAsB,CAAE;QAClC,IAAI,CAACF,MAAM,GAAG,IAAIK;QAClB,IAAI,CAACJ,eAAe,GAAG,IAAII;QAC3B,IAAI,CAACD,eAAe,GAAG,EAAE;QAEzB,IAAI,CAACF,MAAM,GAAG;YACZI,eAAeJ,QAAQI,iBAAiB;YACxCC,mBAAmBL,QAAQK,qBAAqB;YAChDC,oBAAoBN,QAAQM,sBAAsB;YAClDC,gBAAgBP,QAAQO,kBAAkB;YAC1CC,gBAAgBR,QAAQQ,kBAAkB;YAC1CC,eAAeT,QAAQS,iBAAiB;YACxCC,cAAcV,QAAQU,gBAAgB;YACtCC,YAAYX,QAAQW,cAAc;QACpC;QAEA,IAAI,CAACV,OAAO,GAAG;YACbW,cAAc;YACdC,mBAAmB;YACnBC,kBAAkB;YAClBC,cAAc;YACdC,cAAc;YACdC,WAAW;YACXC,aAAa;QACf;IACF;IAEA;;GAEC,GACD,AAAOC,cAAcC,OAAqB,EAAQ;QAChD,IAAI,CAACtB,MAAM,CAACuB,GAAG,CAACD,QAAQE,OAAO,EAAEF;QACjC,IAAI,CAACG,sBAAsB;IAC7B;IAEA;;GAEC,GACD,AAAOC,gBAAgBF,OAAe,EAAQ;QAC5C,IAAI,CAACxB,MAAM,CAAC2B,MAAM,CAACH;QACnB,IAAI,CAACC,sBAAsB;IAC7B;IAEA;;GAEC,GACD,AAAOG,iBAAiBJ,OAAe,EAAEK,KAAiB,EAAQ;QAChE,MAAMC,QAAQ,IAAI,CAAC9B,MAAM,CAAC+B,GAAG,CAACP;QAC9B,IAAIM,OAAO;YACTA,MAAMD,KAAK,GAAGA;QAChB;IACF;IAEA;;GAEC,GACD,AAAOG,oBAAoBR,OAAe,EAAES,QAAgB,EAAQ;QAClE,MAAMH,QAAQ,IAAI,CAAC9B,MAAM,CAAC+B,GAAG,CAACP;QAC9B,IAAIM,OAAO;YACTA,MAAMG,QAAQ,GAAGC,KAAKC,GAAG,CAAC,GAAGD,KAAKE,GAAG,CAAC,GAAGH;YACzC,IAAI,CAACR,sBAAsB;QAC7B;IACF;IAEA;;;GAGC,GACD,MAAaY,UAAUC,OAAoB,EAAmC;QAC5E,MAAMC,YAAYC,YAAYC,GAAG;QAEjC,IAAI;YACF,2DAA2D;YAC3D,MAAMC,kBAAkB,IAAI,CAACC,kBAAkB;YAE/C,IAAID,gBAAgBE,MAAM,KAAK,GAAG;gBAChC,OAAO;YACT;YAEA,6BAA6B;YAC7B,MAAMC,UAAUH,gBACbI,GAAG,CAAChB,CAAAA,QAAS,IAAI,CAACiB,UAAU,CAACjB,OAAOQ,UACpCU,MAAM,CAACC,CAAAA,QAASA,MAAMC,KAAK,IAAI,IAAI,CAAChD,MAAM,CAACI,aAAa,EACxD6C,IAAI,CAAC,CAACC,GAAGC,IAAMA,EAAEH,KAAK,GAAGE,EAAEF,KAAK;YAEnC,IAAIL,QAAQD,MAAM,KAAK,GAAG;gBACxB,OAAO;YACT;YAEA,oBAAoB;YACpB,MAAMU,YAAYT,OAAO,CAAC,EAAE;YAC5B,MAAMU,UAAUf,YAAYC,GAAG,KAAKF;YACpCe,UAAUE,SAAS,GAAGD;YAEtB,IAAI,CAACE,kBAAkB,CAACF,SAAS;YACjC,IAAI,CAACpD,OAAO,CAACY,iBAAiB;YAE9B,OAAOuC;QACT,EAAE,OAAOI,OAAO;YACd,MAAMH,UAAUf,YAAYC,GAAG,KAAKF;YACpC,IAAI,CAACkB,kBAAkB,CAACF,SAAS;YACjC,MAAMG;QACR;IACF;IAEA;;GAEC,GACD,MAAaC,YAAYrB,OAAoB,EAAEsB,QAAgB,CAAC,EAA8B;QAC5F,MAAMrB,YAAYC,YAAYC,GAAG;QAEjC,MAAMC,kBAAkB,IAAI,CAACC,kBAAkB;QAE/C,MAAME,UAAUH,gBACbI,GAAG,CAAChB,CAAAA,QAAS,IAAI,CAACiB,UAAU,CAACjB,OAAOQ,UACpCU,MAAM,CAACC,CAAAA,QAASA,MAAMC,KAAK,IAAI,IAAI,CAAChD,MAAM,CAACI,aAAa,EACxD6C,IAAI,CAAC,CAACC,GAAGC,IAAMA,EAAEH,KAAK,GAAGE,EAAEF,KAAK,EAChCW,KAAK,CAAC,GAAGD;QAEZ,MAAML,UAAUf,YAAYC,GAAG,KAAKF;QACpCM,QAAQiB,OAAO,CAACb,CAAAA;YACdA,MAAMO,SAAS,GAAGD;QACpB;QAEA,IAAI,CAACE,kBAAkB,CAACF,SAASV,QAAQD,MAAM,GAAG;QAElD,OAAOC;IACT;IAEA;;GAEC,GACD,AAAQF,qBAAqC;QAC3C,OAAOoB,MAAMC,IAAI,CAAC,IAAI,CAAChE,MAAM,CAACiE,MAAM,IAAIjB,MAAM,CAAClB,CAAAA;YAC7C,mCAAmC;YACnC,IAAIA,MAAMD,KAAK,KAAK/B,WAAWoE,IAAI,EAAE;gBACnC,OAAO;YACT;YAEA,4CAA4C;YAC5C,IAAIpC,MAAMD,KAAK,KAAK/B,WAAWqE,OAAO,IAAIrC,MAAMG,QAAQ,GAAG,KAAK;gBAC9D,OAAO;YACT;YAEA,+DAA+D;YAC/D,IAAIH,MAAMD,KAAK,KAAK/B,WAAWsE,OAAO,IAAItC,MAAMG,QAAQ,GAAG,KAAK;gBAC9D,OAAO;YACT;YAEA,OAAO;QACT;IACF;IAEA;;GAEC,GACD,AAAQc,WAAWjB,KAAmB,EAAEQ,OAAoB,EAAmB;QAC7E,MAAM+B,UAAkD,EAAE;QAC1D,MAAMC,UAAoB,EAAE;QAE5B,IAAIC,uBAAuB;QAC3B,IAAIC,0BAA0B;QAC9B,IAAIC,4BAA4B;QAEhC,iCAAiC;QACjC,KAAK,MAAMC,eAAepC,QAAQqC,YAAY,CAAE;YAC9C,MAAMC,kBAAkB9C,MAAM6C,YAAY,CAACE,IAAI,CAACC,CAAAA,IAAKA,EAAEC,IAAI,KAAKL,YAAYM,UAAU;YAEtF,IAAIN,YAAYO,QAAQ,EAAE;gBACxBR;YACF;YAEA,IAAIG,iBAAiB;gBACnB,MAAMM,mBAAmBN,gBAAgBO,WAAW;gBACpD,MAAMC,sBAAsB,CAACV,YAAYW,cAAc,IAC3BH,oBAAoBR,YAAYW,cAAc;gBAE1E,IAAID,qBAAqB;oBACvBf,QAAQiB,IAAI,CAAC;wBACXN,YAAYN,YAAYM,UAAU;wBAClCG,aAAaD;wBACbD,UAAUP,YAAYO,QAAQ;oBAChC;oBAEAV,wBAAwBW;oBAExB,IAAIR,YAAYO,QAAQ,EAAE;wBACxBT;oBACF;gBACF,OAAO,IAAIE,YAAYO,QAAQ,EAAE;oBAC/BX,QAAQgB,IAAI,CAACZ,YAAYM,UAAU;gBACrC;YACF,OAAO,IAAIN,YAAYO,QAAQ,EAAE;gBAC/BX,QAAQgB,IAAI,CAACZ,YAAYM,UAAU;YACrC;QACF;QAEA,uDAAuD;QACvD,IAAIV,QAAQ1B,MAAM,GAAG,GAAG;YACtB,OAAO;gBACLpB,SAASM,MAAMN,OAAO;gBACtB0B,OAAO;gBACPqC,qBAAqBlB;gBACrBmB,qBAAqBlB;gBACrBmB,YAAY;gBACZjC,WAAW;YACb;QACF;QAEA,6BAA6B;QAC7B,MAAMkC,qBAAqBrB,QAAQzB,MAAM,GAAG,IAAI2B,uBAAuBF,QAAQzB,MAAM,GAAG;QACxF,MAAM+C,oBAAoB,IAAI,CAACC,0BAA0B,CAAC9D,MAAMD,KAAK;QACrE,MAAMgE,gBAAgB,IAAI/D,MAAMG,QAAQ;QACxC,MAAM6D,gBAAgBhE,MAAMiE,QAAQ,GAAG;QAEvC,2BAA2B;QAC3B,MAAM7C,QACJwC,qBAAqB,IAAI,CAACxF,MAAM,CAACK,iBAAiB,GAClDoF,oBAAoB,IAAI,CAACzF,MAAM,CAACM,kBAAkB,GAClDqF,gBAAgB,IAAI,CAAC3F,MAAM,CAACO,cAAc,GAC1CqF,gBAAgB,IAAI,CAAC5F,MAAM,CAACQ,cAAc;QAE5C,qDAAqD;QACrD,MAAM+E,aAAahB,4BAA4B,IAC3CD,0BAA0BC,4BAC1B;QAEJ,OAAO;YACLjD,SAASM,MAAMN,OAAO;YACtB0B;YACAqC,qBAAqBlB;YACrBmB,qBAAqBlB;YACrBmB;YACAjC,WAAW;QACb;IACF;IAEA;;GAEC,GACD,AAAQoC,2BAA2B/D,KAAiB,EAAU;QAC5D,OAAQA;YACN,KAAK/B,WAAWoE,IAAI;gBAClB,OAAO;YACT,KAAKpE,WAAWsE,OAAO;gBACrB,OAAO;YACT,KAAKtE,WAAWqE,OAAO;gBACrB,OAAO;YACT,KAAKrE,WAAWkG,OAAO;gBACrB,OAAO;YACT;gBACE,OAAO;QACX;IACF;IAEA;;GAEC,GACD,AAAQvE,yBAA+B;QACrC,IAAI,CAACxB,eAAe,CAACgG,KAAK;QAE1B,KAAK,MAAMnE,SAASiC,MAAMC,IAAI,CAAC,IAAI,CAAChE,MAAM,CAACiE,MAAM,IAAK;YACpD,KAAK,MAAMe,cAAclD,MAAM6C,YAAY,CAAE;gBAC3C,IAAIuB,QAAQ,IAAI,CAACjG,eAAe,CAAC8B,GAAG,CAACiD,WAAWD,IAAI;gBAEpD,IAAI,CAACmB,OAAO;oBACVA,QAAQ;wBACNlB,YAAYA,WAAWD,IAAI;wBAC3B/E,QAAQ,EAAE;wBACVmG,aAAa,IAAIC;oBACnB;oBACA,IAAI,CAACnG,eAAe,CAACsB,GAAG,CAACyD,WAAWD,IAAI,EAAEmB;gBAC5C;gBAEAA,MAAMlG,MAAM,CAACsF,IAAI,CAAC;oBAChB9D,SAASM,MAAMN,OAAO;oBACtB2D,aAAaH,WAAWG,WAAW;oBACnClD,UAAUH,MAAMG,QAAQ;gBAC1B;YACF;QACF;QAEA,wCAAwC;QACxC,KAAK,MAAMiE,SAASnC,MAAMC,IAAI,CAAC,IAAI,CAAC/D,eAAe,CAACgE,MAAM,IAAK;YAC7DiC,MAAMlG,MAAM,CAACmD,IAAI,CAAC,CAACC,GAAGC,IAAMA,EAAE8B,WAAW,GAAG/B,EAAE+B,WAAW;QAC3D;IACF;IAEA;;GAEC,GACD,AAAQ1B,mBAAmBD,SAAiB,EAAE6C,OAAgB,EAAQ;QACpE,IAAI,CAAClG,OAAO,CAACW,YAAY;QACzB,IAAI,CAACV,eAAe,CAACkF,IAAI,CAAC9B;QAE1B,2DAA2D;QAC3D,IAAI,IAAI,CAACpD,eAAe,CAACwC,MAAM,GAAG,MAAM;YACtC,IAAI,CAACxC,eAAe,CAACkG,KAAK;QAC5B;QAEA,yBAAyB;QACzB,IAAI,CAACnG,OAAO,CAACa,gBAAgB,GAC3B,AAAC,CAAA,IAAI,CAACb,OAAO,CAACa,gBAAgB,GAAI,CAAA,IAAI,CAACb,OAAO,CAACW,YAAY,GAAG,CAAA,IAAK0C,SAAQ,IAC3E,IAAI,CAACrD,OAAO,CAACW,YAAY;QAE3B,qBAAqB;QACrB,MAAMyF,SAAS;eAAI,IAAI,CAACnG,eAAe;SAAC,CAAC+C,IAAI,CAAC,CAACC,GAAGC,IAAMD,IAAIC;QAC5D,IAAI,CAAClD,OAAO,CAACc,YAAY,GAAGsF,MAAM,CAACrE,KAAKsE,KAAK,CAACD,OAAO3D,MAAM,GAAG,MAAM,IAAI;QACxE,IAAI,CAACzC,OAAO,CAACe,YAAY,GAAGqF,MAAM,CAACrE,KAAKsE,KAAK,CAACD,OAAO3D,MAAM,GAAG,MAAM,IAAI;IAC1E;IAEA;;GAEC,GACD,AAAO6D,aAAa;QAClB,OAAO;YACL,GAAG,IAAI,CAACtG,OAAO;YACfuG,kBAAkB,IAAI,CAAC1G,MAAM,CAAC2G,IAAI;YAClCC,qBAAqB,IAAI,CAAC3G,eAAe,CAAC0G,IAAI;YAC9CE,4BACE,IAAI,CAAC5G,eAAe,CAAC0G,IAAI,GAAG,IACxB5C,MAAMC,IAAI,CAAC,IAAI,CAAC/D,eAAe,CAACgE,MAAM,IAAI6C,MAAM,CAAC,CAACC,KAAKC,MAAQD,MAAMC,IAAIhH,MAAM,CAAC4C,MAAM,EAAE,KACxF,IAAI,CAAC3C,eAAe,CAAC0G,IAAI,GACzB;QACR;IACF;IAEA;;GAEC,GACD,AAAOM,2BAAmC;QACxC,OAAO,IAAI,CAACjH,MAAM,CAAC2G,IAAI;IACzB;IAEA;;GAEC,GACD,AAAOV,QAAc;QACnB,IAAI,CAACjG,MAAM,CAACiG,KAAK;QACjB,IAAI,CAAChG,eAAe,CAACgG,KAAK;IAC5B;AACF"}
|
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Help Request Handler
|
|
3
|
+
*
|
|
4
|
+
* MessageBroker-based help request routing implementation.
|
|
5
|
+
* Subscribes to help topics and routes requests to HelpCoordinator.
|
|
6
|
+
*
|
|
7
|
+
* Topics:
|
|
8
|
+
* - help.request.{priority} - New help requests
|
|
9
|
+
* - help.accepted.{requestId} - Help accepted notifications
|
|
10
|
+
* - help.completed.{requestId} - Help completion notifications
|
|
11
|
+
*
|
|
12
|
+
* @module coordination/v2/help-system/help-request-handler
|
|
13
|
+
*/ import { MessagePriority } from '../core/message.js';
|
|
14
|
+
import { HelpRequestPriority } from './help-request.js';
|
|
15
|
+
/**
|
|
16
|
+
* Help request handler implementation with MessageBroker integration.
|
|
17
|
+
*
|
|
18
|
+
* Provides request/reply pattern for help requests with:
|
|
19
|
+
* - Priority-based routing
|
|
20
|
+
* - Timeout handling
|
|
21
|
+
* - Event emission for monitoring
|
|
22
|
+
* - Automatic retry on failure
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```typescript
|
|
26
|
+
* const broker = new MessageBroker();
|
|
27
|
+
* const coordinator = new HelpCoordinator();
|
|
28
|
+
* const handler = new HelpRequestHandler({ broker, coordinator });
|
|
29
|
+
*
|
|
30
|
+
* await handler.start();
|
|
31
|
+
*
|
|
32
|
+
* // Request help via message broker
|
|
33
|
+
* const reply = await broker.request('help.request.HIGH', {
|
|
34
|
+
* requesterId: 'agent-1',
|
|
35
|
+
* description: 'Need help with API design',
|
|
36
|
+
* capabilities: [{ capability: 'api-design', required: true }],
|
|
37
|
+
* priority: HelpRequestPriority.HIGH
|
|
38
|
+
* });
|
|
39
|
+
*
|
|
40
|
+
* console.log('Routing result:', reply.payload);
|
|
41
|
+
* ```
|
|
42
|
+
*/ export class HelpRequestHandler {
|
|
43
|
+
broker;
|
|
44
|
+
coordinator;
|
|
45
|
+
config;
|
|
46
|
+
subscriptions;
|
|
47
|
+
metrics;
|
|
48
|
+
started;
|
|
49
|
+
constructor(config){
|
|
50
|
+
this.broker = config.broker;
|
|
51
|
+
this.coordinator = config.coordinator;
|
|
52
|
+
this.subscriptions = [];
|
|
53
|
+
this.started = false;
|
|
54
|
+
this.config = {
|
|
55
|
+
requestTimeout: config.requestTimeout ?? 30000,
|
|
56
|
+
enableMonitoring: config.enableMonitoring ?? true
|
|
57
|
+
};
|
|
58
|
+
this.metrics = {
|
|
59
|
+
totalRequests: 0,
|
|
60
|
+
successfulRoutes: 0,
|
|
61
|
+
failedRequests: 0,
|
|
62
|
+
acceptedRequests: 0,
|
|
63
|
+
completedRequests: 0,
|
|
64
|
+
avgRoutingLatencyMs: 0,
|
|
65
|
+
timeoutEvents: 0
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Start the help request handler and subscribe to topics
|
|
70
|
+
*/ async start() {
|
|
71
|
+
if (this.started) {
|
|
72
|
+
throw new Error('HelpRequestHandler already started');
|
|
73
|
+
}
|
|
74
|
+
// Subscribe to help request topics for all priority levels
|
|
75
|
+
const priorities = Object.values(HelpRequestPriority).filter((v)=>typeof v === 'number');
|
|
76
|
+
for (const priority of priorities){
|
|
77
|
+
const priorityName = this.getPriorityName(priority);
|
|
78
|
+
const sub = await this.broker.subscribe({
|
|
79
|
+
topic: `help.request.${priorityName}`,
|
|
80
|
+
handler: (msg)=>this.handleHelpRequest(msg),
|
|
81
|
+
priority: priority
|
|
82
|
+
});
|
|
83
|
+
this.subscriptions.push(sub);
|
|
84
|
+
}
|
|
85
|
+
// Subscribe to help acceptance notifications
|
|
86
|
+
const acceptedSub = await this.broker.subscribe({
|
|
87
|
+
topic: 'help.accepted.*',
|
|
88
|
+
handler: (msg)=>this.handleHelpAccepted(msg),
|
|
89
|
+
priority: MessagePriority.HIGH
|
|
90
|
+
});
|
|
91
|
+
this.subscriptions.push(acceptedSub);
|
|
92
|
+
// Subscribe to help completion notifications
|
|
93
|
+
const completedSub = await this.broker.subscribe({
|
|
94
|
+
topic: 'help.completed.*',
|
|
95
|
+
handler: (msg)=>this.handleHelpCompleted(msg),
|
|
96
|
+
priority: MessagePriority.HIGH
|
|
97
|
+
});
|
|
98
|
+
this.subscriptions.push(completedSub);
|
|
99
|
+
this.started = true;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* Stop the help request handler and unsubscribe from topics
|
|
103
|
+
*/ async stop() {
|
|
104
|
+
if (!this.started) {
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
// Unsubscribe from all topics
|
|
108
|
+
for (const sub of this.subscriptions){
|
|
109
|
+
sub.unsubscribe();
|
|
110
|
+
}
|
|
111
|
+
this.subscriptions = [];
|
|
112
|
+
this.started = false;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Register an agent profile for help matching
|
|
116
|
+
*/ registerAgent(profile) {
|
|
117
|
+
this.coordinator.registerAgent(profile);
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Unregister an agent profile
|
|
121
|
+
*/ unregisterAgent(agentId) {
|
|
122
|
+
this.coordinator.unregisterAgent(agentId);
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Handle incoming help request
|
|
126
|
+
*/ async handleHelpRequest(message) {
|
|
127
|
+
const startTime = performance.now();
|
|
128
|
+
this.metrics.totalRequests++;
|
|
129
|
+
console.log('[HelpRequestHandler] Received help request:', {
|
|
130
|
+
topic: message.topic,
|
|
131
|
+
requesterId: message.payload?.requesterId,
|
|
132
|
+
hasReplyTo: !!message.replyTo,
|
|
133
|
+
correlationId: message.correlationId
|
|
134
|
+
});
|
|
135
|
+
try {
|
|
136
|
+
const payload = message.payload;
|
|
137
|
+
// Validate payload
|
|
138
|
+
if (!payload.requesterId || !payload.description || !payload.capabilities) {
|
|
139
|
+
throw new Error('Invalid help request payload: missing required fields');
|
|
140
|
+
}
|
|
141
|
+
// Create and route help request via coordinator
|
|
142
|
+
const routingResult = await this.coordinator.createHelpRequest(payload.requesterId, payload.description, payload.capabilities, payload.priority, payload.metadata);
|
|
143
|
+
// Update metrics
|
|
144
|
+
const latency = performance.now() - startTime;
|
|
145
|
+
this.updateRoutingMetrics(latency, routingResult.status === 'success');
|
|
146
|
+
// Send reply with routing result
|
|
147
|
+
// Always include routing data in payload, success flag indicates match found
|
|
148
|
+
console.log('[HelpRequestHandler] Sending reply:', {
|
|
149
|
+
status: routingResult.status,
|
|
150
|
+
success: routingResult.status === 'success',
|
|
151
|
+
hasMatch: !!routingResult.match
|
|
152
|
+
});
|
|
153
|
+
await this.broker.reply(message, {
|
|
154
|
+
routingId: routingResult.routingId,
|
|
155
|
+
requestId: routingResult.request.requestId,
|
|
156
|
+
status: routingResult.status,
|
|
157
|
+
match: routingResult.match,
|
|
158
|
+
latencyMs: routingResult.latencyMs,
|
|
159
|
+
timestamp: routingResult.timestamp,
|
|
160
|
+
error: routingResult.error
|
|
161
|
+
}, routingResult.status === 'success', routingResult.error);
|
|
162
|
+
console.log('[HelpRequestHandler] Reply sent');
|
|
163
|
+
// Emit monitoring event
|
|
164
|
+
if (this.config.enableMonitoring) {
|
|
165
|
+
await this.emitRoutingEvent(routingResult);
|
|
166
|
+
}
|
|
167
|
+
} catch (error) {
|
|
168
|
+
this.metrics.failedRequests++;
|
|
169
|
+
// Send error reply
|
|
170
|
+
await this.broker.reply(message, null, false, error instanceof Error ? error.message : 'Unknown error during help routing');
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* Handle help acceptance notification
|
|
175
|
+
*/ async handleHelpAccepted(message) {
|
|
176
|
+
try {
|
|
177
|
+
const payload = message.payload;
|
|
178
|
+
if (!payload.requestId || !payload.helperId) {
|
|
179
|
+
throw new Error('Invalid help accepted payload: missing requestId or helperId');
|
|
180
|
+
}
|
|
181
|
+
// Mark request as in progress in coordinator
|
|
182
|
+
await this.coordinator.startHelp(payload.requestId);
|
|
183
|
+
this.metrics.acceptedRequests++;
|
|
184
|
+
// Emit monitoring event
|
|
185
|
+
if (this.config.enableMonitoring) {
|
|
186
|
+
await this.broker.publish({
|
|
187
|
+
topic: 'help.event.accepted',
|
|
188
|
+
payload: {
|
|
189
|
+
requestId: payload.requestId,
|
|
190
|
+
helperId: payload.helperId,
|
|
191
|
+
timestamp: payload.timestamp
|
|
192
|
+
},
|
|
193
|
+
priority: MessagePriority.NORMAL
|
|
194
|
+
});
|
|
195
|
+
}
|
|
196
|
+
} catch (error) {
|
|
197
|
+
console.error('[HelpRequestHandler] Error handling help acceptance:', error);
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* Handle help completion notification
|
|
202
|
+
*/ async handleHelpCompleted(message) {
|
|
203
|
+
try {
|
|
204
|
+
const payload = message.payload;
|
|
205
|
+
if (!payload.requestId || !payload.helperId) {
|
|
206
|
+
throw new Error('Invalid help completed payload: missing requestId or helperId');
|
|
207
|
+
}
|
|
208
|
+
if (payload.success) {
|
|
209
|
+
// Mark request as resolved
|
|
210
|
+
await this.coordinator.resolveHelp(payload.requestId, {
|
|
211
|
+
result: payload.result,
|
|
212
|
+
completedAt: payload.timestamp
|
|
213
|
+
});
|
|
214
|
+
} else {
|
|
215
|
+
// Mark request as failed
|
|
216
|
+
await this.coordinator.failHelp(payload.requestId, payload.error || 'Help request failed', {
|
|
217
|
+
error: payload.error,
|
|
218
|
+
failedAt: payload.timestamp
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
this.metrics.completedRequests++;
|
|
222
|
+
// Emit monitoring event
|
|
223
|
+
if (this.config.enableMonitoring) {
|
|
224
|
+
await this.broker.publish({
|
|
225
|
+
topic: 'help.event.completed',
|
|
226
|
+
payload: {
|
|
227
|
+
requestId: payload.requestId,
|
|
228
|
+
helperId: payload.helperId,
|
|
229
|
+
success: payload.success,
|
|
230
|
+
error: payload.error,
|
|
231
|
+
timestamp: payload.timestamp
|
|
232
|
+
},
|
|
233
|
+
priority: MessagePriority.NORMAL
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
} catch (error) {
|
|
237
|
+
console.error('[HelpRequestHandler] Error handling help completion:', error);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* Emit routing event for monitoring
|
|
242
|
+
*/ async emitRoutingEvent(result) {
|
|
243
|
+
await this.broker.publish({
|
|
244
|
+
topic: 'help.event.routed',
|
|
245
|
+
payload: {
|
|
246
|
+
routingId: result.routingId,
|
|
247
|
+
requestId: result.request.requestId,
|
|
248
|
+
requesterId: result.request.requesterId,
|
|
249
|
+
status: result.status,
|
|
250
|
+
latencyMs: result.latencyMs,
|
|
251
|
+
match: result.match ? {
|
|
252
|
+
agentId: result.match.agentId,
|
|
253
|
+
score: result.match.score
|
|
254
|
+
} : null,
|
|
255
|
+
timestamp: result.timestamp
|
|
256
|
+
},
|
|
257
|
+
priority: MessagePriority.LOW
|
|
258
|
+
});
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* Update routing metrics
|
|
262
|
+
*/ updateRoutingMetrics(latencyMs, success) {
|
|
263
|
+
if (success) {
|
|
264
|
+
this.metrics.successfulRoutes++;
|
|
265
|
+
} else {
|
|
266
|
+
this.metrics.failedRequests++;
|
|
267
|
+
}
|
|
268
|
+
const totalRoutes = this.metrics.successfulRoutes + this.metrics.failedRequests;
|
|
269
|
+
this.metrics.avgRoutingLatencyMs = (this.metrics.avgRoutingLatencyMs * (totalRoutes - 1) + latencyMs) / totalRoutes;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Get priority name from enum value
|
|
273
|
+
*/ getPriorityName(priority) {
|
|
274
|
+
switch(priority){
|
|
275
|
+
case HelpRequestPriority.CRITICAL:
|
|
276
|
+
return 'CRITICAL';
|
|
277
|
+
case HelpRequestPriority.HIGH:
|
|
278
|
+
return 'HIGH';
|
|
279
|
+
case HelpRequestPriority.NORMAL:
|
|
280
|
+
return 'NORMAL';
|
|
281
|
+
case HelpRequestPriority.LOW:
|
|
282
|
+
return 'LOW';
|
|
283
|
+
case HelpRequestPriority.MINIMAL:
|
|
284
|
+
return 'MINIMAL';
|
|
285
|
+
default:
|
|
286
|
+
return 'NORMAL';
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
/**
|
|
290
|
+
* Get handler metrics
|
|
291
|
+
*/ getMetrics() {
|
|
292
|
+
return {
|
|
293
|
+
...this.metrics,
|
|
294
|
+
coordinatorMetrics: this.coordinator.getMetrics()
|
|
295
|
+
};
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Check if handler is started
|
|
299
|
+
*/ isStarted() {
|
|
300
|
+
return this.started;
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Reset metrics
|
|
304
|
+
*/ resetMetrics() {
|
|
305
|
+
this.metrics = {
|
|
306
|
+
totalRequests: 0,
|
|
307
|
+
successfulRoutes: 0,
|
|
308
|
+
failedRequests: 0,
|
|
309
|
+
acceptedRequests: 0,
|
|
310
|
+
completedRequests: 0,
|
|
311
|
+
avgRoutingLatencyMs: 0,
|
|
312
|
+
timeoutEvents: 0
|
|
313
|
+
};
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
//# sourceMappingURL=help-request-handler.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/help-system/help-request-handler.ts"],"names":["MessagePriority","HelpRequestPriority","HelpRequestHandler","broker","coordinator","config","subscriptions","metrics","started","requestTimeout","enableMonitoring","totalRequests","successfulRoutes","failedRequests","acceptedRequests","completedRequests","avgRoutingLatencyMs","timeoutEvents","start","Error","priorities","Object","values","filter","v","priority","priorityName","getPriorityName","sub","subscribe","topic","handler","msg","handleHelpRequest","push","acceptedSub","handleHelpAccepted","HIGH","completedSub","handleHelpCompleted","stop","unsubscribe","registerAgent","profile","unregisterAgent","agentId","message","startTime","performance","now","console","log","requesterId","payload","hasReplyTo","replyTo","correlationId","description","capabilities","routingResult","createHelpRequest","metadata","latency","updateRoutingMetrics","status","success","hasMatch","match","reply","routingId","requestId","request","latencyMs","timestamp","error","emitRoutingEvent","helperId","startHelp","publish","NORMAL","resolveHelp","result","completedAt","failHelp","failedAt","score","LOW","totalRoutes","CRITICAL","MINIMAL","getMetrics","coordinatorMetrics","isStarted","resetMetrics"],"mappings":"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"}
|