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,379 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Dependency Node Implementation
|
|
3
|
+
*
|
|
4
|
+
* Represents a single task node in the dependency graph with support for
|
|
5
|
+
* dependency tracking, status management, and priority handling.
|
|
6
|
+
*
|
|
7
|
+
* @module coordination/v2/core/dependency-node
|
|
8
|
+
*/ /**
|
|
9
|
+
* Status of a dependency node in the execution lifecycle.
|
|
10
|
+
*/ export var DependencyNodeStatus = /*#__PURE__*/ function(DependencyNodeStatus) {
|
|
11
|
+
/** Node created but dependencies not yet resolved */ DependencyNodeStatus["PENDING"] = "pending";
|
|
12
|
+
/** All dependencies satisfied, ready for execution */ DependencyNodeStatus["READY"] = "ready";
|
|
13
|
+
/** Currently executing */ DependencyNodeStatus["EXECUTING"] = "executing";
|
|
14
|
+
/** Execution completed successfully */ DependencyNodeStatus["COMPLETED"] = "completed";
|
|
15
|
+
/** Execution failed or blocked */ DependencyNodeStatus["FAILED"] = "failed";
|
|
16
|
+
return DependencyNodeStatus;
|
|
17
|
+
}({});
|
|
18
|
+
/**
|
|
19
|
+
* Validation error thrown when node operations violate constraints.
|
|
20
|
+
*/ export class DependencyNodeValidationError extends Error {
|
|
21
|
+
nodeId;
|
|
22
|
+
constructor(message, nodeId){
|
|
23
|
+
super(message), this.nodeId = nodeId;
|
|
24
|
+
this.name = 'DependencyNodeValidationError';
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Concrete implementation of DependencyNode with validation and state management.
|
|
29
|
+
*
|
|
30
|
+
* This class provides:
|
|
31
|
+
* - Input validation for all operations
|
|
32
|
+
* - Thread-safe status updates with timestamps
|
|
33
|
+
* - Dependency and dependent tracking
|
|
34
|
+
* - Priority management with bounds checking
|
|
35
|
+
* - Immutable data exposure via getters
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```typescript
|
|
39
|
+
* const node = new DependencyNodeImpl({
|
|
40
|
+
* id: 'task-1',
|
|
41
|
+
* agentId: 'agent-a',
|
|
42
|
+
* taskId: 'implement-auth',
|
|
43
|
+
* dependencies: ['task-0'],
|
|
44
|
+
* priority: 8
|
|
45
|
+
* });
|
|
46
|
+
*
|
|
47
|
+
* node.addDependency('task-2');
|
|
48
|
+
* if (node.isReady()) {
|
|
49
|
+
* node.updateStatus(DependencyNodeStatus.EXECUTING);
|
|
50
|
+
* }
|
|
51
|
+
* ```
|
|
52
|
+
*/ export class DependencyNodeImpl {
|
|
53
|
+
_id;
|
|
54
|
+
_agentId;
|
|
55
|
+
_taskId;
|
|
56
|
+
_dependencies;
|
|
57
|
+
_dependents;
|
|
58
|
+
_status;
|
|
59
|
+
_priority;
|
|
60
|
+
_metadata;
|
|
61
|
+
_createdAt;
|
|
62
|
+
_updatedAt;
|
|
63
|
+
/**
|
|
64
|
+
* Creates a new dependency node instance.
|
|
65
|
+
*
|
|
66
|
+
* @param config - Node configuration
|
|
67
|
+
* @throws {DependencyNodeValidationError} If configuration is invalid
|
|
68
|
+
*/ constructor(config){
|
|
69
|
+
this.validateConfig(config);
|
|
70
|
+
this._id = config.id;
|
|
71
|
+
this._agentId = config.agentId;
|
|
72
|
+
this._taskId = config.taskId;
|
|
73
|
+
this._dependencies = new Set(config.dependencies || []);
|
|
74
|
+
this._dependents = new Set();
|
|
75
|
+
this._status = "pending";
|
|
76
|
+
this._priority = this.normalizePriority(config.priority ?? 5);
|
|
77
|
+
this._metadata = {
|
|
78
|
+
...config.metadata
|
|
79
|
+
} || {};
|
|
80
|
+
this._createdAt = Date.now();
|
|
81
|
+
this._updatedAt = this._createdAt;
|
|
82
|
+
}
|
|
83
|
+
// ============================================
|
|
84
|
+
// Public Getters (Immutable Access)
|
|
85
|
+
// ============================================
|
|
86
|
+
get id() {
|
|
87
|
+
return this._id;
|
|
88
|
+
}
|
|
89
|
+
get agentId() {
|
|
90
|
+
return this._agentId;
|
|
91
|
+
}
|
|
92
|
+
get taskId() {
|
|
93
|
+
return this._taskId;
|
|
94
|
+
}
|
|
95
|
+
get dependencies() {
|
|
96
|
+
return Array.from(this._dependencies);
|
|
97
|
+
}
|
|
98
|
+
get dependents() {
|
|
99
|
+
return Array.from(this._dependents);
|
|
100
|
+
}
|
|
101
|
+
get status() {
|
|
102
|
+
return this._status;
|
|
103
|
+
}
|
|
104
|
+
get priority() {
|
|
105
|
+
return this._priority;
|
|
106
|
+
}
|
|
107
|
+
get metadata() {
|
|
108
|
+
return {
|
|
109
|
+
...this._metadata
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
get createdAt() {
|
|
113
|
+
return this._createdAt;
|
|
114
|
+
}
|
|
115
|
+
get updatedAt() {
|
|
116
|
+
return this._updatedAt;
|
|
117
|
+
}
|
|
118
|
+
// ============================================
|
|
119
|
+
// Dependency Management
|
|
120
|
+
// ============================================
|
|
121
|
+
/**
|
|
122
|
+
* Adds a dependency to this node.
|
|
123
|
+
*
|
|
124
|
+
* @param taskId - ID of the task this node depends on
|
|
125
|
+
* @throws {DependencyNodeValidationError} If taskId is invalid or already exists
|
|
126
|
+
*/ addDependency(taskId) {
|
|
127
|
+
this.validateTaskId(taskId);
|
|
128
|
+
if (taskId === this._id) {
|
|
129
|
+
throw new DependencyNodeValidationError('Cannot add self-dependency', this._id);
|
|
130
|
+
}
|
|
131
|
+
if (this._dependencies.has(taskId)) {
|
|
132
|
+
throw new DependencyNodeValidationError(`Dependency '${taskId}' already exists`, this._id);
|
|
133
|
+
}
|
|
134
|
+
this._dependencies.add(taskId);
|
|
135
|
+
this.touchUpdatedAt();
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Removes a dependency from this node.
|
|
139
|
+
*
|
|
140
|
+
* @param taskId - ID of the dependency to remove
|
|
141
|
+
* @returns True if dependency was removed, false if not found
|
|
142
|
+
*/ removeDependency(taskId) {
|
|
143
|
+
const removed = this._dependencies.delete(taskId);
|
|
144
|
+
if (removed) {
|
|
145
|
+
this.touchUpdatedAt();
|
|
146
|
+
}
|
|
147
|
+
return removed;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Checks if this node has a specific dependency.
|
|
151
|
+
*
|
|
152
|
+
* @param taskId - Task ID to check
|
|
153
|
+
* @returns True if dependency exists
|
|
154
|
+
*/ hasDependency(taskId) {
|
|
155
|
+
return this._dependencies.has(taskId);
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* Returns the number of dependencies.
|
|
159
|
+
*/ get dependencyCount() {
|
|
160
|
+
return this._dependencies.size;
|
|
161
|
+
}
|
|
162
|
+
// ============================================
|
|
163
|
+
// Dependent Management
|
|
164
|
+
// ============================================
|
|
165
|
+
/**
|
|
166
|
+
* Adds a dependent to this node (internal use by DependencyGraph).
|
|
167
|
+
*
|
|
168
|
+
* @param taskId - ID of the task that depends on this node
|
|
169
|
+
* @internal
|
|
170
|
+
*/ addDependent(taskId) {
|
|
171
|
+
this.validateTaskId(taskId);
|
|
172
|
+
if (taskId === this._id) {
|
|
173
|
+
throw new DependencyNodeValidationError('Cannot add self as dependent', this._id);
|
|
174
|
+
}
|
|
175
|
+
this._dependents.add(taskId);
|
|
176
|
+
this.touchUpdatedAt();
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Removes a dependent from this node (internal use by DependencyGraph).
|
|
180
|
+
*
|
|
181
|
+
* @param taskId - ID of the dependent to remove
|
|
182
|
+
* @returns True if dependent was removed, false if not found
|
|
183
|
+
* @internal
|
|
184
|
+
*/ removeDependent(taskId) {
|
|
185
|
+
const removed = this._dependents.delete(taskId);
|
|
186
|
+
if (removed) {
|
|
187
|
+
this.touchUpdatedAt();
|
|
188
|
+
}
|
|
189
|
+
return removed;
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* Returns the number of dependents.
|
|
193
|
+
*/ get dependentCount() {
|
|
194
|
+
return this._dependents.size;
|
|
195
|
+
}
|
|
196
|
+
// ============================================
|
|
197
|
+
// Status Management
|
|
198
|
+
// ============================================
|
|
199
|
+
/**
|
|
200
|
+
* Updates the node status.
|
|
201
|
+
*
|
|
202
|
+
* @param newStatus - New status to set
|
|
203
|
+
* @throws {DependencyNodeValidationError} If status transition is invalid
|
|
204
|
+
*/ updateStatus(newStatus) {
|
|
205
|
+
if (!this.isValidStatusTransition(this._status, newStatus)) {
|
|
206
|
+
throw new DependencyNodeValidationError(`Invalid status transition: ${this._status} -> ${newStatus}`, this._id);
|
|
207
|
+
}
|
|
208
|
+
this._status = newStatus;
|
|
209
|
+
this.touchUpdatedAt();
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Checks if this node is ready for execution.
|
|
213
|
+
* A node is ready when all dependencies are satisfied and status is READY.
|
|
214
|
+
*
|
|
215
|
+
* @returns True if node is ready to execute
|
|
216
|
+
*/ isReady() {
|
|
217
|
+
return this._status === "ready";
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* Checks if this node is blocked on dependencies.
|
|
221
|
+
*
|
|
222
|
+
* @returns True if node has pending dependencies
|
|
223
|
+
*/ isBlocked() {
|
|
224
|
+
return this._status === "pending" && this._dependencies.size > 0;
|
|
225
|
+
}
|
|
226
|
+
/**
|
|
227
|
+
* Checks if this node is in a terminal state.
|
|
228
|
+
*
|
|
229
|
+
* @returns True if status is COMPLETED or FAILED
|
|
230
|
+
*/ isTerminal() {
|
|
231
|
+
return this._status === "completed" || this._status === "failed";
|
|
232
|
+
}
|
|
233
|
+
// ============================================
|
|
234
|
+
// Priority Management
|
|
235
|
+
// ============================================
|
|
236
|
+
/**
|
|
237
|
+
* Updates the node priority.
|
|
238
|
+
*
|
|
239
|
+
* @param newPriority - New priority (0-10)
|
|
240
|
+
* @throws {DependencyNodeValidationError} If priority is out of range
|
|
241
|
+
*/ updatePriority(newPriority) {
|
|
242
|
+
this._priority = this.normalizePriority(newPriority);
|
|
243
|
+
this.touchUpdatedAt();
|
|
244
|
+
}
|
|
245
|
+
// ============================================
|
|
246
|
+
// Metadata Management
|
|
247
|
+
// ============================================
|
|
248
|
+
/**
|
|
249
|
+
* Sets a metadata value.
|
|
250
|
+
*
|
|
251
|
+
* @param key - Metadata key
|
|
252
|
+
* @param value - Metadata value
|
|
253
|
+
*/ setMetadata(key, value) {
|
|
254
|
+
if (!key || typeof key !== 'string') {
|
|
255
|
+
throw new DependencyNodeValidationError('Metadata key must be a non-empty string', this._id);
|
|
256
|
+
}
|
|
257
|
+
this._metadata[key] = value;
|
|
258
|
+
this.touchUpdatedAt();
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* Gets a metadata value.
|
|
262
|
+
*
|
|
263
|
+
* @param key - Metadata key
|
|
264
|
+
* @returns Metadata value or undefined
|
|
265
|
+
*/ getMetadata(key) {
|
|
266
|
+
return this._metadata[key];
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* Removes a metadata key.
|
|
270
|
+
*
|
|
271
|
+
* @param key - Metadata key to remove
|
|
272
|
+
* @returns True if key was removed, false if not found
|
|
273
|
+
*/ removeMetadata(key) {
|
|
274
|
+
if (key in this._metadata) {
|
|
275
|
+
delete this._metadata[key];
|
|
276
|
+
this.touchUpdatedAt();
|
|
277
|
+
return true;
|
|
278
|
+
}
|
|
279
|
+
return false;
|
|
280
|
+
}
|
|
281
|
+
// ============================================
|
|
282
|
+
// Serialization
|
|
283
|
+
// ============================================
|
|
284
|
+
/**
|
|
285
|
+
* Serializes the node to a plain object.
|
|
286
|
+
*
|
|
287
|
+
* @returns Plain object representation
|
|
288
|
+
*/ toJSON() {
|
|
289
|
+
return {
|
|
290
|
+
id: this._id,
|
|
291
|
+
agentId: this._agentId,
|
|
292
|
+
taskId: this._taskId,
|
|
293
|
+
dependencies: this.dependencies,
|
|
294
|
+
dependents: this.dependents,
|
|
295
|
+
status: this._status,
|
|
296
|
+
priority: this._priority,
|
|
297
|
+
metadata: this.metadata,
|
|
298
|
+
createdAt: this._createdAt,
|
|
299
|
+
updatedAt: this._updatedAt
|
|
300
|
+
};
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Creates a node from a serialized object.
|
|
304
|
+
*
|
|
305
|
+
* @param data - Serialized node data
|
|
306
|
+
* @returns New DependencyNodeImpl instance
|
|
307
|
+
*/ static fromJSON(data) {
|
|
308
|
+
const node = new DependencyNodeImpl({
|
|
309
|
+
id: data.id,
|
|
310
|
+
agentId: data.agentId,
|
|
311
|
+
taskId: data.taskId,
|
|
312
|
+
dependencies: data.dependencies,
|
|
313
|
+
priority: data.priority,
|
|
314
|
+
metadata: data.metadata
|
|
315
|
+
});
|
|
316
|
+
// Restore internal state
|
|
317
|
+
data.dependents.forEach((dep)=>node.addDependent(dep));
|
|
318
|
+
node._status = data.status;
|
|
319
|
+
node._createdAt = data.createdAt;
|
|
320
|
+
node._updatedAt = data.updatedAt;
|
|
321
|
+
return node;
|
|
322
|
+
}
|
|
323
|
+
// ============================================
|
|
324
|
+
// Private Validation Methods
|
|
325
|
+
// ============================================
|
|
326
|
+
validateConfig(config) {
|
|
327
|
+
if (!config.id || typeof config.id !== 'string') {
|
|
328
|
+
throw new DependencyNodeValidationError('Node ID must be a non-empty string');
|
|
329
|
+
}
|
|
330
|
+
if (!config.agentId || typeof config.agentId !== 'string') {
|
|
331
|
+
throw new DependencyNodeValidationError('Agent ID must be a non-empty string');
|
|
332
|
+
}
|
|
333
|
+
if (!config.taskId || typeof config.taskId !== 'string') {
|
|
334
|
+
throw new DependencyNodeValidationError('Task ID must be a non-empty string');
|
|
335
|
+
}
|
|
336
|
+
if (config.dependencies) {
|
|
337
|
+
config.dependencies.forEach((dep)=>this.validateTaskId(dep));
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
validateTaskId(taskId) {
|
|
341
|
+
if (!taskId || typeof taskId !== 'string') {
|
|
342
|
+
throw new DependencyNodeValidationError('Task ID must be a non-empty string', this._id);
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
normalizePriority(priority) {
|
|
346
|
+
if (typeof priority !== 'number' || isNaN(priority)) {
|
|
347
|
+
throw new DependencyNodeValidationError('Priority must be a valid number', this._id);
|
|
348
|
+
}
|
|
349
|
+
if (priority < 0 || priority > 10) {
|
|
350
|
+
throw new DependencyNodeValidationError('Priority must be between 0 and 10', this._id);
|
|
351
|
+
}
|
|
352
|
+
return Math.round(priority);
|
|
353
|
+
}
|
|
354
|
+
isValidStatusTransition(current, next) {
|
|
355
|
+
// Valid status transitions (state machine)
|
|
356
|
+
const validTransitions = {
|
|
357
|
+
["pending"]: [
|
|
358
|
+
"ready",
|
|
359
|
+
"failed"
|
|
360
|
+
],
|
|
361
|
+
["ready"]: [
|
|
362
|
+
"executing",
|
|
363
|
+
"failed"
|
|
364
|
+
],
|
|
365
|
+
["executing"]: [
|
|
366
|
+
"completed",
|
|
367
|
+
"failed"
|
|
368
|
+
],
|
|
369
|
+
["completed"]: [],
|
|
370
|
+
["failed"]: [] // Terminal state
|
|
371
|
+
};
|
|
372
|
+
return validTransitions[current]?.includes(next) ?? false;
|
|
373
|
+
}
|
|
374
|
+
touchUpdatedAt() {
|
|
375
|
+
this._updatedAt = Date.now();
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
//# sourceMappingURL=dependency-node.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/core/dependency-node.ts"],"names":["DependencyNodeStatus","DependencyNodeValidationError","Error","message","nodeId","name","DependencyNodeImpl","_id","_agentId","_taskId","_dependencies","_dependents","_status","_priority","_metadata","_createdAt","_updatedAt","config","validateConfig","id","agentId","taskId","Set","dependencies","normalizePriority","priority","metadata","Date","now","Array","from","dependents","status","createdAt","updatedAt","addDependency","validateTaskId","has","add","touchUpdatedAt","removeDependency","removed","delete","hasDependency","dependencyCount","size","addDependent","removeDependent","dependentCount","updateStatus","newStatus","isValidStatusTransition","isReady","isBlocked","isTerminal","updatePriority","newPriority","setMetadata","key","value","getMetadata","removeMetadata","toJSON","fromJSON","data","node","forEach","dep","isNaN","Math","round","current","next","validTransitions","includes"],"mappings":"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"}
|