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,413 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Dead Letter Queue Implementation
|
|
3
|
+
*
|
|
4
|
+
* Handles failed message deliveries with retry logic and persistence.
|
|
5
|
+
* Features:
|
|
6
|
+
* - Exponential backoff retry strategy
|
|
7
|
+
* - Max retry limit configuration
|
|
8
|
+
* - Integration with MessageStorage
|
|
9
|
+
* - Failure analysis and reporting
|
|
10
|
+
* - Dead letter message inspection
|
|
11
|
+
*
|
|
12
|
+
* @module coordination/v2/core/dead-letter-queue
|
|
13
|
+
*/ import { EventEmitter } from 'events';
|
|
14
|
+
/**
|
|
15
|
+
* DeadLetterQueue - Failure handling with retry logic
|
|
16
|
+
*
|
|
17
|
+
* Provides robust handling of failed message deliveries:
|
|
18
|
+
* - Exponential backoff retry strategy (prevents thundering herd)
|
|
19
|
+
* - Configurable max retry limits (circuit breaker)
|
|
20
|
+
* - Persistent storage integration (survives restarts)
|
|
21
|
+
* - Failure analysis and inspection tools
|
|
22
|
+
* - Automatic cleanup of expired messages
|
|
23
|
+
*
|
|
24
|
+
* @example
|
|
25
|
+
* ```typescript
|
|
26
|
+
* const dlq = new DeadLetterQueue(storage, {
|
|
27
|
+
* maxRetries: 3,
|
|
28
|
+
* initialDelayMs: 1000,
|
|
29
|
+
* maxDelayMs: 30000,
|
|
30
|
+
* backoffMultiplier: 2,
|
|
31
|
+
* enableJitter: true,
|
|
32
|
+
* retentionMs: 86400000, // 24 hours
|
|
33
|
+
* enablePersistence: true,
|
|
34
|
+
* storageId: 'bus-1'
|
|
35
|
+
* });
|
|
36
|
+
*
|
|
37
|
+
* await dlq.initialize();
|
|
38
|
+
*
|
|
39
|
+
* // Add failed message
|
|
40
|
+
* await dlq.addMessage(message, 'delivery_timeout', 'agent-123');
|
|
41
|
+
*
|
|
42
|
+
* // Process retries
|
|
43
|
+
* await dlq.processRetries(async (entry) => {
|
|
44
|
+
* // Retry delivery logic
|
|
45
|
+
* return { success: true };
|
|
46
|
+
* });
|
|
47
|
+
*
|
|
48
|
+
* // Inspect failures
|
|
49
|
+
* const stats = dlq.getStatistics();
|
|
50
|
+
* const permanentFailures = dlq.getPermanentFailures();
|
|
51
|
+
* ```
|
|
52
|
+
*/ export class DeadLetterQueue extends EventEmitter {
|
|
53
|
+
config;
|
|
54
|
+
storage;
|
|
55
|
+
entries = new Map();
|
|
56
|
+
retryTimer = null;
|
|
57
|
+
stats;
|
|
58
|
+
constructor(storage, config = {}){
|
|
59
|
+
super();
|
|
60
|
+
this.storage = storage;
|
|
61
|
+
this.config = {
|
|
62
|
+
maxRetries: 3,
|
|
63
|
+
initialDelayMs: 1000,
|
|
64
|
+
maxDelayMs: 30000,
|
|
65
|
+
backoffMultiplier: 2,
|
|
66
|
+
enableJitter: true,
|
|
67
|
+
retentionMs: 86400000,
|
|
68
|
+
enablePersistence: true,
|
|
69
|
+
storageId: 'default-bus',
|
|
70
|
+
...config
|
|
71
|
+
};
|
|
72
|
+
this.stats = this.initializeStats();
|
|
73
|
+
}
|
|
74
|
+
// ===========================
|
|
75
|
+
// Lifecycle
|
|
76
|
+
// ===========================
|
|
77
|
+
/**
|
|
78
|
+
* Initialize dead letter queue
|
|
79
|
+
*/ async initialize() {
|
|
80
|
+
// Load persisted entries if enabled
|
|
81
|
+
if (this.config.enablePersistence && this.storage) {
|
|
82
|
+
await this.loadFromStorage();
|
|
83
|
+
}
|
|
84
|
+
// Start retry processor
|
|
85
|
+
this.startRetryProcessor();
|
|
86
|
+
this.emit('dlq:initialized');
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Shutdown dead letter queue
|
|
90
|
+
*/ async shutdown() {
|
|
91
|
+
// Stop retry processor
|
|
92
|
+
this.stopRetryProcessor();
|
|
93
|
+
// Persist entries if enabled
|
|
94
|
+
if (this.config.enablePersistence && this.storage) {
|
|
95
|
+
await this.saveToStorage();
|
|
96
|
+
}
|
|
97
|
+
this.emit('dlq:shutdown');
|
|
98
|
+
}
|
|
99
|
+
// ===========================
|
|
100
|
+
// Core Operations
|
|
101
|
+
// ===========================
|
|
102
|
+
/**
|
|
103
|
+
* Add failed message to dead letter queue
|
|
104
|
+
*
|
|
105
|
+
* @param message - Failed message
|
|
106
|
+
* @param reason - Failure reason
|
|
107
|
+
* @param target - Delivery target
|
|
108
|
+
* @param error - Error details
|
|
109
|
+
*/ async addMessage(message, reason, target, error) {
|
|
110
|
+
const entry = {
|
|
111
|
+
message,
|
|
112
|
+
reason,
|
|
113
|
+
failedAt: new Date(),
|
|
114
|
+
retryAttempts: 0,
|
|
115
|
+
target,
|
|
116
|
+
lastError: error,
|
|
117
|
+
permanentFailure: false
|
|
118
|
+
};
|
|
119
|
+
// Calculate next retry time
|
|
120
|
+
if (entry.retryAttempts < this.config.maxRetries) {
|
|
121
|
+
entry.nextRetryAt = this.calculateNextRetry(entry.retryAttempts);
|
|
122
|
+
} else {
|
|
123
|
+
entry.permanentFailure = true;
|
|
124
|
+
}
|
|
125
|
+
this.entries.set(message.id, entry);
|
|
126
|
+
this.updateStats();
|
|
127
|
+
// Persist if enabled
|
|
128
|
+
if (this.config.enablePersistence && this.storage) {
|
|
129
|
+
await this.storage.addToDeadLetterQueue(this.config.storageId, message);
|
|
130
|
+
}
|
|
131
|
+
this.emit('dlq:message-added', {
|
|
132
|
+
entry
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
/**
|
|
136
|
+
* Process retry attempts for pending messages
|
|
137
|
+
*
|
|
138
|
+
* @param retryHandler - Function to attempt message redelivery
|
|
139
|
+
* @returns Number of messages processed
|
|
140
|
+
*/ async processRetries(retryHandler) {
|
|
141
|
+
const now = Date.now();
|
|
142
|
+
const entriesToRetry = [];
|
|
143
|
+
// Find entries ready for retry
|
|
144
|
+
for (const entry of this.entries.values()){
|
|
145
|
+
if (!entry.permanentFailure && entry.nextRetryAt && entry.nextRetryAt.getTime() <= now) {
|
|
146
|
+
entriesToRetry.push(entry);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
// Process each retry
|
|
150
|
+
let processedCount = 0;
|
|
151
|
+
for (const entry of entriesToRetry){
|
|
152
|
+
try {
|
|
153
|
+
this.stats.totalRetries++;
|
|
154
|
+
entry.retryAttempts++;
|
|
155
|
+
const result = await retryHandler(entry);
|
|
156
|
+
if (result.success) {
|
|
157
|
+
// Remove from dead letter queue on successful retry
|
|
158
|
+
this.entries.delete(entry.message.id);
|
|
159
|
+
this.stats.successfulRetries++;
|
|
160
|
+
processedCount++;
|
|
161
|
+
this.emit('dlq:retry-success', {
|
|
162
|
+
entry
|
|
163
|
+
});
|
|
164
|
+
} else {
|
|
165
|
+
// Update entry with failure info
|
|
166
|
+
this.stats.failedRetries++;
|
|
167
|
+
entry.lastError = result.error;
|
|
168
|
+
// Check if max retries reached
|
|
169
|
+
if (entry.retryAttempts >= this.config.maxRetries) {
|
|
170
|
+
entry.permanentFailure = true;
|
|
171
|
+
entry.nextRetryAt = undefined;
|
|
172
|
+
this.emit('dlq:permanent-failure', {
|
|
173
|
+
entry
|
|
174
|
+
});
|
|
175
|
+
} else {
|
|
176
|
+
// Schedule next retry
|
|
177
|
+
entry.nextRetryAt = result.nextRetryAt || this.calculateNextRetry(entry.retryAttempts);
|
|
178
|
+
this.emit('dlq:retry-failed', {
|
|
179
|
+
entry
|
|
180
|
+
});
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
} catch (error) {
|
|
184
|
+
// Handle unexpected errors during retry
|
|
185
|
+
this.stats.failedRetries++;
|
|
186
|
+
entry.lastError = error instanceof Error ? error.message : String(error);
|
|
187
|
+
if (entry.retryAttempts >= this.config.maxRetries) {
|
|
188
|
+
entry.permanentFailure = true;
|
|
189
|
+
entry.nextRetryAt = undefined;
|
|
190
|
+
} else {
|
|
191
|
+
entry.nextRetryAt = this.calculateNextRetry(entry.retryAttempts);
|
|
192
|
+
}
|
|
193
|
+
this.emit('dlq:retry-error', {
|
|
194
|
+
entry,
|
|
195
|
+
error
|
|
196
|
+
});
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
this.updateStats();
|
|
200
|
+
// Persist changes if enabled
|
|
201
|
+
if (this.config.enablePersistence && this.storage && processedCount > 0) {
|
|
202
|
+
await this.saveToStorage();
|
|
203
|
+
}
|
|
204
|
+
return processedCount;
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* Remove message from dead letter queue
|
|
208
|
+
*
|
|
209
|
+
* @param messageId - Message ID to remove
|
|
210
|
+
* @returns True if message was found and removed
|
|
211
|
+
*/ async removeMessage(messageId) {
|
|
212
|
+
const removed = this.entries.delete(messageId);
|
|
213
|
+
if (removed) {
|
|
214
|
+
this.updateStats();
|
|
215
|
+
// Persist if enabled
|
|
216
|
+
if (this.config.enablePersistence && this.storage) {
|
|
217
|
+
await this.saveToStorage();
|
|
218
|
+
}
|
|
219
|
+
this.emit('dlq:message-removed', {
|
|
220
|
+
messageId
|
|
221
|
+
});
|
|
222
|
+
}
|
|
223
|
+
return removed;
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Cleanup expired messages based on retention policy
|
|
227
|
+
*
|
|
228
|
+
* @returns Number of messages removed
|
|
229
|
+
*/ async cleanup() {
|
|
230
|
+
const cutoffTime = Date.now() - this.config.retentionMs;
|
|
231
|
+
const toRemove = [];
|
|
232
|
+
for (const [id, entry] of this.entries.entries()){
|
|
233
|
+
if (entry.failedAt.getTime() < cutoffTime) {
|
|
234
|
+
toRemove.push(id);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
// Remove expired entries
|
|
238
|
+
for (const id of toRemove){
|
|
239
|
+
this.entries.delete(id);
|
|
240
|
+
}
|
|
241
|
+
if (toRemove.length > 0) {
|
|
242
|
+
this.updateStats();
|
|
243
|
+
// Persist if enabled
|
|
244
|
+
if (this.config.enablePersistence && this.storage) {
|
|
245
|
+
await this.saveToStorage();
|
|
246
|
+
}
|
|
247
|
+
this.emit('dlq:cleanup-complete', {
|
|
248
|
+
removedCount: toRemove.length
|
|
249
|
+
});
|
|
250
|
+
}
|
|
251
|
+
return toRemove.length;
|
|
252
|
+
}
|
|
253
|
+
// ===========================
|
|
254
|
+
// Query Operations
|
|
255
|
+
// ===========================
|
|
256
|
+
/**
|
|
257
|
+
* Get all dead letter entries
|
|
258
|
+
*/ getAllEntries() {
|
|
259
|
+
return Array.from(this.entries.values());
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* Get entry by message ID
|
|
263
|
+
*/ getEntry(messageId) {
|
|
264
|
+
return this.entries.get(messageId);
|
|
265
|
+
}
|
|
266
|
+
/**
|
|
267
|
+
* Get permanent failure entries
|
|
268
|
+
*/ getPermanentFailures() {
|
|
269
|
+
return Array.from(this.entries.values()).filter((e)=>e.permanentFailure);
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Get entries pending retry
|
|
273
|
+
*/ getPendingRetries() {
|
|
274
|
+
return Array.from(this.entries.values()).filter((e)=>!e.permanentFailure && e.nextRetryAt);
|
|
275
|
+
}
|
|
276
|
+
/**
|
|
277
|
+
* Get entries by failure reason
|
|
278
|
+
*/ getEntriesByReason(reason) {
|
|
279
|
+
return Array.from(this.entries.values()).filter((e)=>e.reason === reason);
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Get statistics
|
|
283
|
+
*/ getStatistics() {
|
|
284
|
+
return {
|
|
285
|
+
...this.stats
|
|
286
|
+
};
|
|
287
|
+
}
|
|
288
|
+
// ===========================
|
|
289
|
+
// Private Helpers
|
|
290
|
+
// ===========================
|
|
291
|
+
/**
|
|
292
|
+
* Calculate next retry timestamp with exponential backoff
|
|
293
|
+
*/ calculateNextRetry(attemptNumber) {
|
|
294
|
+
// Base delay with exponential backoff
|
|
295
|
+
let delayMs = this.config.initialDelayMs * Math.pow(this.config.backoffMultiplier, attemptNumber);
|
|
296
|
+
// Cap at max delay
|
|
297
|
+
delayMs = Math.min(delayMs, this.config.maxDelayMs);
|
|
298
|
+
// Add jitter if enabled
|
|
299
|
+
if (this.config.enableJitter) {
|
|
300
|
+
const jitter = Math.random() * 0.3 * delayMs; // ±30% jitter
|
|
301
|
+
delayMs = delayMs + jitter - 0.15 * delayMs;
|
|
302
|
+
}
|
|
303
|
+
return new Date(Date.now() + delayMs);
|
|
304
|
+
}
|
|
305
|
+
/**
|
|
306
|
+
* Start retry processor timer
|
|
307
|
+
*/ startRetryProcessor() {
|
|
308
|
+
// Check for retries every second
|
|
309
|
+
this.retryTimer = setInterval(()=>{
|
|
310
|
+
this.emit('dlq:retry-check');
|
|
311
|
+
}, 1000);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* Stop retry processor timer
|
|
315
|
+
*/ stopRetryProcessor() {
|
|
316
|
+
if (this.retryTimer) {
|
|
317
|
+
clearInterval(this.retryTimer);
|
|
318
|
+
this.retryTimer = null;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* Load entries from storage
|
|
323
|
+
*/ async loadFromStorage() {
|
|
324
|
+
if (!this.storage) return;
|
|
325
|
+
try {
|
|
326
|
+
const state = await this.storage.loadMessages(this.config.storageId);
|
|
327
|
+
// Reconstruct entries from dead letter messages
|
|
328
|
+
for (const message of state.deadLetterMessages){
|
|
329
|
+
const entry = {
|
|
330
|
+
message,
|
|
331
|
+
reason: message.metadata.deadLetterReason || 'unknown',
|
|
332
|
+
failedAt: message.metadata.deadLetterTimestamp || new Date(),
|
|
333
|
+
retryAttempts: 0,
|
|
334
|
+
permanentFailure: false
|
|
335
|
+
};
|
|
336
|
+
// Calculate next retry
|
|
337
|
+
if (entry.retryAttempts < this.config.maxRetries) {
|
|
338
|
+
entry.nextRetryAt = this.calculateNextRetry(entry.retryAttempts);
|
|
339
|
+
} else {
|
|
340
|
+
entry.permanentFailure = true;
|
|
341
|
+
}
|
|
342
|
+
this.entries.set(message.id, entry);
|
|
343
|
+
}
|
|
344
|
+
this.updateStats();
|
|
345
|
+
} catch (error) {
|
|
346
|
+
this.emit('dlq:load-error', {
|
|
347
|
+
error
|
|
348
|
+
});
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
/**
|
|
352
|
+
* Save entries to storage
|
|
353
|
+
*/ async saveToStorage() {
|
|
354
|
+
if (!this.storage) return;
|
|
355
|
+
try {
|
|
356
|
+
// Load current state
|
|
357
|
+
const state = await this.storage.loadMessages(this.config.storageId);
|
|
358
|
+
// Convert entries to messages
|
|
359
|
+
const deadLetterMessages = Array.from(this.entries.values()).map((entry)=>({
|
|
360
|
+
...entry.message,
|
|
361
|
+
metadata: {
|
|
362
|
+
...entry.message.metadata,
|
|
363
|
+
deadLetterReason: entry.reason,
|
|
364
|
+
deadLetterTimestamp: entry.failedAt
|
|
365
|
+
}
|
|
366
|
+
}));
|
|
367
|
+
// Save updated state
|
|
368
|
+
await this.storage.saveMessages(this.config.storageId, state.messages, state.queues, deadLetterMessages);
|
|
369
|
+
} catch (error) {
|
|
370
|
+
this.emit('dlq:save-error', {
|
|
371
|
+
error
|
|
372
|
+
});
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* Initialize statistics
|
|
377
|
+
*/ initializeStats() {
|
|
378
|
+
return {
|
|
379
|
+
totalMessages: 0,
|
|
380
|
+
pendingRetries: 0,
|
|
381
|
+
permanentFailures: 0,
|
|
382
|
+
totalRetries: 0,
|
|
383
|
+
successfulRetries: 0,
|
|
384
|
+
failedRetries: 0,
|
|
385
|
+
averageRetryCount: 0,
|
|
386
|
+
oldestMessageAgeMs: 0
|
|
387
|
+
};
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* Update statistics from current entries
|
|
391
|
+
*/ updateStats() {
|
|
392
|
+
this.stats.totalMessages = this.entries.size;
|
|
393
|
+
this.stats.pendingRetries = 0;
|
|
394
|
+
this.stats.permanentFailures = 0;
|
|
395
|
+
let totalRetryCount = 0;
|
|
396
|
+
let oldestTimestamp = Date.now();
|
|
397
|
+
for (const entry of this.entries.values()){
|
|
398
|
+
if (entry.permanentFailure) {
|
|
399
|
+
this.stats.permanentFailures++;
|
|
400
|
+
} else if (entry.nextRetryAt) {
|
|
401
|
+
this.stats.pendingRetries++;
|
|
402
|
+
}
|
|
403
|
+
totalRetryCount += entry.retryAttempts;
|
|
404
|
+
if (entry.failedAt.getTime() < oldestTimestamp) {
|
|
405
|
+
oldestTimestamp = entry.failedAt.getTime();
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
this.stats.averageRetryCount = this.entries.size > 0 ? totalRetryCount / this.entries.size : 0;
|
|
409
|
+
this.stats.oldestMessageAgeMs = this.entries.size > 0 ? Date.now() - oldestTimestamp : 0;
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
//# sourceMappingURL=dead-letter-queue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/core/dead-letter-queue.ts"],"names":["EventEmitter","DeadLetterQueue","config","storage","entries","Map","retryTimer","stats","maxRetries","initialDelayMs","maxDelayMs","backoffMultiplier","enableJitter","retentionMs","enablePersistence","storageId","initializeStats","initialize","loadFromStorage","startRetryProcessor","emit","shutdown","stopRetryProcessor","saveToStorage","addMessage","message","reason","target","error","entry","failedAt","Date","retryAttempts","lastError","permanentFailure","nextRetryAt","calculateNextRetry","set","id","updateStats","addToDeadLetterQueue","processRetries","retryHandler","now","entriesToRetry","values","getTime","push","processedCount","totalRetries","result","success","delete","successfulRetries","failedRetries","undefined","Error","String","removeMessage","messageId","removed","cleanup","cutoffTime","toRemove","length","removedCount","getAllEntries","Array","from","getEntry","get","getPermanentFailures","filter","e","getPendingRetries","getEntriesByReason","getStatistics","attemptNumber","delayMs","Math","pow","min","jitter","random","setInterval","clearInterval","state","loadMessages","deadLetterMessages","metadata","deadLetterReason","deadLetterTimestamp","map","saveMessages","messages","queues","totalMessages","pendingRetries","permanentFailures","averageRetryCount","oldestMessageAgeMs","size","totalRetryCount","oldestTimestamp"],"mappings":"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"}
|