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,560 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent Coordination V2 - Artifact Storage Implementation
|
|
3
|
+
*
|
|
4
|
+
* Binary-optimized storage with compression for agent-generated artifacts.
|
|
5
|
+
* Target performance: <12ms for binary operations (3.7x faster than JSON).
|
|
6
|
+
*
|
|
7
|
+
* @module coordination/v2/sdk/artifact-storage
|
|
8
|
+
*/ import { promises as fs } from 'fs';
|
|
9
|
+
import { createReadStream } from 'fs';
|
|
10
|
+
import { join, basename } from 'path';
|
|
11
|
+
import { gzip, gunzip } from 'zlib';
|
|
12
|
+
import { promisify } from 'util';
|
|
13
|
+
import { createHash } from 'crypto';
|
|
14
|
+
import { pipeline } from 'stream';
|
|
15
|
+
const gzipAsync = promisify(gzip);
|
|
16
|
+
const gunzipAsync = promisify(gunzip);
|
|
17
|
+
const pipelineAsync = promisify(pipeline);
|
|
18
|
+
/**
|
|
19
|
+
* FilesystemArtifactStorage - High-performance binary artifact storage
|
|
20
|
+
*
|
|
21
|
+
* Features:
|
|
22
|
+
* - Binary format with gzip compression (3.7x faster than JSON)
|
|
23
|
+
* - SHA-256 integrity verification
|
|
24
|
+
* - Versioning support
|
|
25
|
+
* - Streaming for large files
|
|
26
|
+
* - Auto-cleanup based on retention policy
|
|
27
|
+
* - Metadata indexing for fast queries
|
|
28
|
+
*/ export class FilesystemArtifactStorage {
|
|
29
|
+
config;
|
|
30
|
+
index = new Map();
|
|
31
|
+
metrics;
|
|
32
|
+
ready = false;
|
|
33
|
+
startTime;
|
|
34
|
+
constructor(config = {}){
|
|
35
|
+
this.config = {
|
|
36
|
+
backend: 'filesystem',
|
|
37
|
+
path: '.claude-flow/artifacts',
|
|
38
|
+
enableCompression: true,
|
|
39
|
+
compressionThreshold: 1024,
|
|
40
|
+
compressionAlgorithm: 'gzip',
|
|
41
|
+
enableVersioning: true,
|
|
42
|
+
maxVersions: 5,
|
|
43
|
+
cleanupIntervalHours: 24,
|
|
44
|
+
retentionHours: 168,
|
|
45
|
+
maxArtifactSizeBytes: 10 * 1024 * 1024,
|
|
46
|
+
...config
|
|
47
|
+
};
|
|
48
|
+
this.startTime = Date.now();
|
|
49
|
+
this.metrics = this.initializeMetrics();
|
|
50
|
+
}
|
|
51
|
+
// ===========================
|
|
52
|
+
// Lifecycle
|
|
53
|
+
// ===========================
|
|
54
|
+
async initialize() {
|
|
55
|
+
if (this.ready) return;
|
|
56
|
+
// Create storage directories
|
|
57
|
+
await fs.mkdir(this.config.path, {
|
|
58
|
+
recursive: true
|
|
59
|
+
});
|
|
60
|
+
await fs.mkdir(join(this.config.path, 'metadata'), {
|
|
61
|
+
recursive: true
|
|
62
|
+
});
|
|
63
|
+
await fs.mkdir(join(this.config.path, 'content'), {
|
|
64
|
+
recursive: true
|
|
65
|
+
});
|
|
66
|
+
// Load existing metadata index
|
|
67
|
+
await this.loadIndex();
|
|
68
|
+
this.ready = true;
|
|
69
|
+
}
|
|
70
|
+
async close() {
|
|
71
|
+
// Persist index before closing
|
|
72
|
+
await this.persistIndex();
|
|
73
|
+
this.ready = false;
|
|
74
|
+
}
|
|
75
|
+
isReady() {
|
|
76
|
+
return this.ready;
|
|
77
|
+
}
|
|
78
|
+
// ===========================
|
|
79
|
+
// Upload Operations
|
|
80
|
+
// ===========================
|
|
81
|
+
async uploadArtifact(agentId, sessionId, content, options) {
|
|
82
|
+
this.ensureReady();
|
|
83
|
+
// Validate size
|
|
84
|
+
if (content.length > this.config.maxArtifactSizeBytes) {
|
|
85
|
+
throw new Error(`Artifact exceeds max size: ${content.length} > ${this.config.maxArtifactSizeBytes}`);
|
|
86
|
+
}
|
|
87
|
+
const startTime = Date.now();
|
|
88
|
+
// Generate artifact ID
|
|
89
|
+
const artifactId = this.generateArtifactId(agentId, sessionId, options);
|
|
90
|
+
// Determine compression
|
|
91
|
+
const shouldCompress = !options.disableCompression && (options.forceCompression || this.config.enableCompression && content.length >= this.config.compressionThreshold);
|
|
92
|
+
// Compress if needed
|
|
93
|
+
let finalContent = content;
|
|
94
|
+
let compressed = false;
|
|
95
|
+
if (shouldCompress) {
|
|
96
|
+
finalContent = await gzipAsync(content);
|
|
97
|
+
compressed = true;
|
|
98
|
+
}
|
|
99
|
+
// Calculate checksum
|
|
100
|
+
const checksum = this.calculateChecksum(content);
|
|
101
|
+
// Create metadata
|
|
102
|
+
const version = await this.getNextVersion(artifactId);
|
|
103
|
+
const metadata = {
|
|
104
|
+
artifactId,
|
|
105
|
+
createdBy: agentId,
|
|
106
|
+
sessionId,
|
|
107
|
+
type: options.type,
|
|
108
|
+
mimeType: options.mimeType || this.detectMimeType(options.filename || ''),
|
|
109
|
+
filename: options.filename || `artifact-${Date.now()}`,
|
|
110
|
+
sizeBytes: content.length,
|
|
111
|
+
createdAt: new Date(),
|
|
112
|
+
modifiedAt: new Date(),
|
|
113
|
+
version,
|
|
114
|
+
tags: options.tags || [],
|
|
115
|
+
metadata: options.metadata || {},
|
|
116
|
+
checksum,
|
|
117
|
+
compressed,
|
|
118
|
+
compressionAlgorithm: compressed ? this.config.compressionAlgorithm : undefined
|
|
119
|
+
};
|
|
120
|
+
// Write content to disk
|
|
121
|
+
const contentPath = this.getContentPath(artifactId, version);
|
|
122
|
+
await fs.writeFile(contentPath, finalContent);
|
|
123
|
+
// Update index
|
|
124
|
+
this.updateIndex(metadata, contentPath);
|
|
125
|
+
// Update metrics
|
|
126
|
+
const latency = Date.now() - startTime;
|
|
127
|
+
this.updateUploadMetrics(content.length, finalContent.length, latency);
|
|
128
|
+
return metadata;
|
|
129
|
+
}
|
|
130
|
+
async uploadArtifactFromFile(agentId, sessionId, filePath, options) {
|
|
131
|
+
const content = await fs.readFile(filePath);
|
|
132
|
+
const filename = options.filename || basename(filePath);
|
|
133
|
+
return this.uploadArtifact(agentId, sessionId, content, {
|
|
134
|
+
...options,
|
|
135
|
+
filename
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
async uploadArtifactStream(agentId, sessionId, stream, options) {
|
|
139
|
+
// Read stream into buffer
|
|
140
|
+
const chunks = [];
|
|
141
|
+
for await (const chunk of stream){
|
|
142
|
+
chunks.push(Buffer.from(chunk));
|
|
143
|
+
}
|
|
144
|
+
const content = Buffer.concat(chunks);
|
|
145
|
+
return this.uploadArtifact(agentId, sessionId, content, options);
|
|
146
|
+
}
|
|
147
|
+
// ===========================
|
|
148
|
+
// Download Operations
|
|
149
|
+
// ===========================
|
|
150
|
+
async downloadArtifact(artifactId, version) {
|
|
151
|
+
this.ensureReady();
|
|
152
|
+
const startTime = Date.now();
|
|
153
|
+
const metadata = await this.getArtifactMetadata(artifactId, version);
|
|
154
|
+
if (!metadata) {
|
|
155
|
+
throw new Error(`Artifact not found: ${artifactId}`);
|
|
156
|
+
}
|
|
157
|
+
const entry = this.index.get(artifactId);
|
|
158
|
+
const contentPath = entry.versions.get(metadata.version);
|
|
159
|
+
// Read content
|
|
160
|
+
let content = await fs.readFile(contentPath);
|
|
161
|
+
// Decompress if needed
|
|
162
|
+
if (metadata.compressed) {
|
|
163
|
+
content = await gunzipAsync(content);
|
|
164
|
+
}
|
|
165
|
+
// Verify integrity
|
|
166
|
+
const checksum = this.calculateChecksum(content);
|
|
167
|
+
if (checksum !== metadata.checksum) {
|
|
168
|
+
throw new Error(`Artifact integrity check failed: ${artifactId}`);
|
|
169
|
+
}
|
|
170
|
+
const latency = Date.now() - startTime;
|
|
171
|
+
this.updateDownloadMetrics(latency);
|
|
172
|
+
return {
|
|
173
|
+
metadata,
|
|
174
|
+
content,
|
|
175
|
+
latencyMs: latency
|
|
176
|
+
};
|
|
177
|
+
}
|
|
178
|
+
async downloadArtifactToFile(artifactId, destinationPath, version) {
|
|
179
|
+
const result = await this.downloadArtifact(artifactId, version);
|
|
180
|
+
await fs.writeFile(destinationPath, result.content);
|
|
181
|
+
return result.metadata;
|
|
182
|
+
}
|
|
183
|
+
async downloadArtifactStream(artifactId, version) {
|
|
184
|
+
const metadata = await this.getArtifactMetadata(artifactId, version);
|
|
185
|
+
if (!metadata) {
|
|
186
|
+
throw new Error(`Artifact not found: ${artifactId}`);
|
|
187
|
+
}
|
|
188
|
+
const entry = this.index.get(artifactId);
|
|
189
|
+
const contentPath = entry.versions.get(metadata.version);
|
|
190
|
+
const stream = createReadStream(contentPath);
|
|
191
|
+
// Add decompression if needed
|
|
192
|
+
if (metadata.compressed) {
|
|
193
|
+
const gunzipStream = (await import('zlib')).createGunzip();
|
|
194
|
+
return stream.pipe(gunzipStream);
|
|
195
|
+
}
|
|
196
|
+
return stream;
|
|
197
|
+
}
|
|
198
|
+
// ===========================
|
|
199
|
+
// Metadata Operations
|
|
200
|
+
// ===========================
|
|
201
|
+
async getArtifactMetadata(artifactId, version) {
|
|
202
|
+
const entry = this.index.get(artifactId);
|
|
203
|
+
if (!entry) return null;
|
|
204
|
+
// If specific version requested, return metadata for that version
|
|
205
|
+
// The current metadata always reflects the latest version
|
|
206
|
+
if (version !== undefined && version !== entry.metadata.version) {
|
|
207
|
+
// Check if version exists
|
|
208
|
+
if (!entry.versions.has(version)) return null;
|
|
209
|
+
// Create metadata for historical version
|
|
210
|
+
return {
|
|
211
|
+
...entry.metadata,
|
|
212
|
+
version,
|
|
213
|
+
modifiedAt: entry.metadata.createdAt // Historical versions use creation date
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
return entry.metadata;
|
|
217
|
+
}
|
|
218
|
+
async updateArtifactMetadata(artifactId, updates) {
|
|
219
|
+
const entry = this.index.get(artifactId);
|
|
220
|
+
if (!entry) {
|
|
221
|
+
throw new Error(`Artifact not found: ${artifactId}`);
|
|
222
|
+
}
|
|
223
|
+
// Update metadata
|
|
224
|
+
if (updates.tags) entry.metadata.tags = updates.tags;
|
|
225
|
+
if (updates.metadata) entry.metadata.metadata = {
|
|
226
|
+
...entry.metadata.metadata,
|
|
227
|
+
...updates.metadata
|
|
228
|
+
};
|
|
229
|
+
if (updates.filename) entry.metadata.filename = updates.filename;
|
|
230
|
+
entry.metadata.modifiedAt = new Date();
|
|
231
|
+
// Persist changes
|
|
232
|
+
await this.persistIndex();
|
|
233
|
+
}
|
|
234
|
+
async listArtifactVersions(artifactId) {
|
|
235
|
+
const entry = this.index.get(artifactId);
|
|
236
|
+
if (!entry) return [];
|
|
237
|
+
return Array.from(entry.versions.keys()).sort((a, b)=>b - a);
|
|
238
|
+
}
|
|
239
|
+
// ===========================
|
|
240
|
+
// Query Operations
|
|
241
|
+
// ===========================
|
|
242
|
+
async queryArtifacts(filter) {
|
|
243
|
+
let results = Array.from(this.index.values()).map((e)=>e.metadata);
|
|
244
|
+
// Apply filters
|
|
245
|
+
if (filter.artifactId) {
|
|
246
|
+
results = results.filter((m)=>m.artifactId === filter.artifactId);
|
|
247
|
+
}
|
|
248
|
+
if (filter.createdBy) {
|
|
249
|
+
results = results.filter((m)=>m.createdBy === filter.createdBy);
|
|
250
|
+
}
|
|
251
|
+
if (filter.sessionId) {
|
|
252
|
+
results = results.filter((m)=>m.sessionId === filter.sessionId);
|
|
253
|
+
}
|
|
254
|
+
if (filter.type) {
|
|
255
|
+
results = results.filter((m)=>filter.type.includes(m.type));
|
|
256
|
+
}
|
|
257
|
+
if (filter.mimeType) {
|
|
258
|
+
results = results.filter((m)=>filter.mimeType.includes(m.mimeType));
|
|
259
|
+
}
|
|
260
|
+
if (filter.tags && filter.tags.length > 0) {
|
|
261
|
+
results = results.filter((m)=>filter.tags.every((tag)=>m.tags.includes(tag)));
|
|
262
|
+
}
|
|
263
|
+
if (filter.createdAfter) {
|
|
264
|
+
results = results.filter((m)=>m.createdAt >= filter.createdAfter);
|
|
265
|
+
}
|
|
266
|
+
if (filter.createdBefore) {
|
|
267
|
+
results = results.filter((m)=>m.createdAt <= filter.createdBefore);
|
|
268
|
+
}
|
|
269
|
+
if (filter.sizeMin !== undefined) {
|
|
270
|
+
results = results.filter((m)=>m.sizeBytes >= filter.sizeMin);
|
|
271
|
+
}
|
|
272
|
+
if (filter.sizeMax !== undefined) {
|
|
273
|
+
results = results.filter((m)=>m.sizeBytes <= filter.sizeMax);
|
|
274
|
+
}
|
|
275
|
+
// Sort
|
|
276
|
+
if (filter.sortBy) {
|
|
277
|
+
results.sort((a, b)=>{
|
|
278
|
+
const aVal = a[filter.sortBy];
|
|
279
|
+
const bVal = b[filter.sortBy];
|
|
280
|
+
const order = filter.sortOrder === 'desc' ? -1 : 1;
|
|
281
|
+
return aVal < bVal ? -order : aVal > bVal ? order : 0;
|
|
282
|
+
});
|
|
283
|
+
}
|
|
284
|
+
// Pagination
|
|
285
|
+
const offset = filter.offset || 0;
|
|
286
|
+
const limit = filter.limit || results.length;
|
|
287
|
+
return results.slice(offset, offset + limit);
|
|
288
|
+
}
|
|
289
|
+
async listArtifactsByAgent(agentId, limit) {
|
|
290
|
+
return this.queryArtifacts({
|
|
291
|
+
createdBy: agentId,
|
|
292
|
+
limit,
|
|
293
|
+
sortBy: 'createdAt',
|
|
294
|
+
sortOrder: 'desc'
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
async listArtifactsBySession(sessionId, limit) {
|
|
298
|
+
return this.queryArtifacts({
|
|
299
|
+
sessionId,
|
|
300
|
+
limit,
|
|
301
|
+
sortBy: 'createdAt',
|
|
302
|
+
sortOrder: 'desc'
|
|
303
|
+
});
|
|
304
|
+
}
|
|
305
|
+
async searchArtifactsByTags(tags, limit) {
|
|
306
|
+
return this.queryArtifacts({
|
|
307
|
+
tags,
|
|
308
|
+
limit,
|
|
309
|
+
sortBy: 'createdAt',
|
|
310
|
+
sortOrder: 'desc'
|
|
311
|
+
});
|
|
312
|
+
}
|
|
313
|
+
// ===========================
|
|
314
|
+
// Deletion Operations
|
|
315
|
+
// ===========================
|
|
316
|
+
async deleteArtifact(artifactId, version) {
|
|
317
|
+
const entry = this.index.get(artifactId);
|
|
318
|
+
if (!entry) return;
|
|
319
|
+
if (version !== undefined) {
|
|
320
|
+
// Delete specific version
|
|
321
|
+
const contentPath = entry.versions.get(version);
|
|
322
|
+
if (contentPath) {
|
|
323
|
+
await fs.unlink(contentPath).catch(()=>{});
|
|
324
|
+
entry.versions.delete(version);
|
|
325
|
+
}
|
|
326
|
+
// If no versions left, delete entire entry
|
|
327
|
+
if (entry.versions.size === 0) {
|
|
328
|
+
this.index.delete(artifactId);
|
|
329
|
+
}
|
|
330
|
+
} else {
|
|
331
|
+
// Delete all versions
|
|
332
|
+
for (const contentPath of entry.versions.values()){
|
|
333
|
+
await fs.unlink(contentPath).catch(()=>{});
|
|
334
|
+
}
|
|
335
|
+
this.index.delete(artifactId);
|
|
336
|
+
}
|
|
337
|
+
this.metrics.totalDeletions++;
|
|
338
|
+
await this.persistIndex();
|
|
339
|
+
}
|
|
340
|
+
async deleteArtifactsByAgent(agentId) {
|
|
341
|
+
const artifacts = await this.listArtifactsByAgent(agentId);
|
|
342
|
+
await Promise.all(artifacts.map((a)=>this.deleteArtifact(a.artifactId)));
|
|
343
|
+
return artifacts.length;
|
|
344
|
+
}
|
|
345
|
+
async deleteArtifactsBySession(sessionId) {
|
|
346
|
+
const artifacts = await this.listArtifactsBySession(sessionId);
|
|
347
|
+
await Promise.all(artifacts.map((a)=>this.deleteArtifact(a.artifactId)));
|
|
348
|
+
return artifacts.length;
|
|
349
|
+
}
|
|
350
|
+
// ===========================
|
|
351
|
+
// Maintenance & Cleanup
|
|
352
|
+
// ===========================
|
|
353
|
+
async cleanup(retentionHours) {
|
|
354
|
+
const retention = retentionHours || this.config.retentionHours;
|
|
355
|
+
const cutoffDate = new Date(Date.now() - retention * 60 * 60 * 1000);
|
|
356
|
+
const artifacts = await this.queryArtifacts({
|
|
357
|
+
createdBefore: cutoffDate
|
|
358
|
+
});
|
|
359
|
+
await Promise.all(artifacts.map((a)=>this.deleteArtifact(a.artifactId)));
|
|
360
|
+
return artifacts.length;
|
|
361
|
+
}
|
|
362
|
+
async verifyArtifactIntegrity(artifactId, version) {
|
|
363
|
+
try {
|
|
364
|
+
const result = await this.downloadArtifact(artifactId, version);
|
|
365
|
+
return true; // If download succeeds, integrity is valid
|
|
366
|
+
} catch {
|
|
367
|
+
return false;
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
async optimize() {
|
|
371
|
+
// Recompress artifacts that could benefit
|
|
372
|
+
const artifacts = await this.queryArtifacts({});
|
|
373
|
+
for (const metadata of artifacts){
|
|
374
|
+
if (!metadata.compressed && metadata.sizeBytes >= this.config.compressionThreshold) {
|
|
375
|
+
const result = await this.downloadArtifact(metadata.artifactId);
|
|
376
|
+
await this.uploadArtifact(metadata.createdBy, metadata.sessionId, result.content, {
|
|
377
|
+
type: metadata.type,
|
|
378
|
+
filename: metadata.filename,
|
|
379
|
+
tags: metadata.tags,
|
|
380
|
+
metadata: metadata.metadata,
|
|
381
|
+
forceCompression: true,
|
|
382
|
+
overwrite: true
|
|
383
|
+
});
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
// Enforce version limits
|
|
387
|
+
for (const [artifactId, entry] of this.index.entries()){
|
|
388
|
+
const versions = await this.listArtifactVersions(artifactId);
|
|
389
|
+
if (versions.length > this.config.maxVersions) {
|
|
390
|
+
const toDelete = versions.slice(this.config.maxVersions);
|
|
391
|
+
await Promise.all(toDelete.map((v)=>this.deleteArtifact(artifactId, v)));
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
await this.persistIndex();
|
|
395
|
+
}
|
|
396
|
+
// ===========================
|
|
397
|
+
// Metrics & Monitoring
|
|
398
|
+
// ===========================
|
|
399
|
+
getMetrics() {
|
|
400
|
+
return {
|
|
401
|
+
...this.metrics,
|
|
402
|
+
uptimeMs: Date.now() - this.startTime
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
async healthCheck() {
|
|
406
|
+
const startTime = Date.now();
|
|
407
|
+
const errors = [];
|
|
408
|
+
try {
|
|
409
|
+
// Test write
|
|
410
|
+
const testContent = Buffer.from('health-check');
|
|
411
|
+
const metadata = await this.uploadArtifact('health-check', 'health-check', testContent, {
|
|
412
|
+
type: 'test'
|
|
413
|
+
});
|
|
414
|
+
// Test read
|
|
415
|
+
await this.downloadArtifact(metadata.artifactId);
|
|
416
|
+
// Cleanup
|
|
417
|
+
await this.deleteArtifact(metadata.artifactId);
|
|
418
|
+
return {
|
|
419
|
+
healthy: true,
|
|
420
|
+
latencyMs: Date.now() - startTime
|
|
421
|
+
};
|
|
422
|
+
} catch (error) {
|
|
423
|
+
errors.push(error instanceof Error ? error.message : String(error));
|
|
424
|
+
return {
|
|
425
|
+
healthy: false,
|
|
426
|
+
latencyMs: Date.now() - startTime,
|
|
427
|
+
errors
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
// ===========================
|
|
432
|
+
// Private Helpers
|
|
433
|
+
// ===========================
|
|
434
|
+
ensureReady() {
|
|
435
|
+
if (!this.ready) {
|
|
436
|
+
throw new Error('ArtifactStorage not initialized. Call initialize() first.');
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
generateArtifactId(agentId, sessionId, options) {
|
|
440
|
+
// Use stable ID based on agent, session, type, and filename for versioning
|
|
441
|
+
if (options.filename && this.config.enableVersioning) {
|
|
442
|
+
const baseId = `${agentId}-${sessionId}-${options.type}-${options.filename}`;
|
|
443
|
+
return baseId.replace(/[^a-zA-Z0-9-_]/g, '_');
|
|
444
|
+
}
|
|
445
|
+
// Otherwise create unique ID
|
|
446
|
+
const timestamp = Date.now();
|
|
447
|
+
const random = Math.random().toString(36).substring(2, 8);
|
|
448
|
+
return `${agentId}-${sessionId}-${options.type}-${timestamp}-${random}`;
|
|
449
|
+
}
|
|
450
|
+
calculateChecksum(content) {
|
|
451
|
+
return createHash('sha256').update(content).digest('hex');
|
|
452
|
+
}
|
|
453
|
+
detectMimeType(filename) {
|
|
454
|
+
const ext = filename.split('.').pop()?.toLowerCase();
|
|
455
|
+
const mimeTypes = {
|
|
456
|
+
js: 'application/javascript',
|
|
457
|
+
ts: 'application/typescript',
|
|
458
|
+
json: 'application/json',
|
|
459
|
+
txt: 'text/plain',
|
|
460
|
+
html: 'text/html',
|
|
461
|
+
css: 'text/css',
|
|
462
|
+
png: 'image/png',
|
|
463
|
+
jpg: 'image/jpeg',
|
|
464
|
+
jpeg: 'image/jpeg',
|
|
465
|
+
gif: 'image/gif',
|
|
466
|
+
pdf: 'application/pdf',
|
|
467
|
+
zip: 'application/zip'
|
|
468
|
+
};
|
|
469
|
+
return mimeTypes[ext || ''] || 'application/octet-stream';
|
|
470
|
+
}
|
|
471
|
+
async getNextVersion(artifactId) {
|
|
472
|
+
const entry = this.index.get(artifactId);
|
|
473
|
+
if (!entry) return 1;
|
|
474
|
+
if (!this.config.enableVersioning) {
|
|
475
|
+
return entry.metadata.version;
|
|
476
|
+
}
|
|
477
|
+
const versions = await this.listArtifactVersions(artifactId);
|
|
478
|
+
return Math.max(...versions, 0) + 1;
|
|
479
|
+
}
|
|
480
|
+
getContentPath(artifactId, version) {
|
|
481
|
+
return join(this.config.path, 'content', `${artifactId}-v${version}.bin`);
|
|
482
|
+
}
|
|
483
|
+
updateIndex(metadata, contentPath) {
|
|
484
|
+
let entry = this.index.get(metadata.artifactId);
|
|
485
|
+
if (!entry) {
|
|
486
|
+
entry = {
|
|
487
|
+
metadata,
|
|
488
|
+
versions: new Map()
|
|
489
|
+
};
|
|
490
|
+
this.index.set(metadata.artifactId, entry);
|
|
491
|
+
}
|
|
492
|
+
entry.metadata = metadata;
|
|
493
|
+
entry.versions.set(metadata.version, contentPath);
|
|
494
|
+
}
|
|
495
|
+
async loadIndex() {
|
|
496
|
+
const indexPath = join(this.config.path, 'metadata', 'index.json');
|
|
497
|
+
try {
|
|
498
|
+
const data = await fs.readFile(indexPath, 'utf-8');
|
|
499
|
+
const parsed = JSON.parse(data);
|
|
500
|
+
for (const [id, entry] of Object.entries(parsed)){
|
|
501
|
+
const typedEntry = entry;
|
|
502
|
+
this.index.set(id, {
|
|
503
|
+
metadata: {
|
|
504
|
+
...typedEntry.metadata,
|
|
505
|
+
createdAt: new Date(typedEntry.metadata.createdAt),
|
|
506
|
+
modifiedAt: new Date(typedEntry.metadata.modifiedAt)
|
|
507
|
+
},
|
|
508
|
+
versions: new Map(typedEntry.versions)
|
|
509
|
+
});
|
|
510
|
+
}
|
|
511
|
+
} catch {
|
|
512
|
+
// Index doesn't exist yet
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
async persistIndex() {
|
|
516
|
+
const indexPath = join(this.config.path, 'metadata', 'index.json');
|
|
517
|
+
const serializable = Object.fromEntries(Array.from(this.index.entries()).map(([id, entry])=>[
|
|
518
|
+
id,
|
|
519
|
+
{
|
|
520
|
+
metadata: entry.metadata,
|
|
521
|
+
versions: Array.from(entry.versions.entries())
|
|
522
|
+
}
|
|
523
|
+
]));
|
|
524
|
+
await fs.writeFile(indexPath, JSON.stringify(serializable, null, 2));
|
|
525
|
+
}
|
|
526
|
+
initializeMetrics() {
|
|
527
|
+
return {
|
|
528
|
+
totalArtifacts: 0,
|
|
529
|
+
totalStorageMb: 0,
|
|
530
|
+
compressedStorageMb: 0,
|
|
531
|
+
averageCompressionRatio: 0,
|
|
532
|
+
totalUploads: 0,
|
|
533
|
+
totalDownloads: 0,
|
|
534
|
+
totalDeletions: 0,
|
|
535
|
+
averageUploadLatencyMs: 0,
|
|
536
|
+
averageDownloadLatencyMs: 0,
|
|
537
|
+
uptimeMs: 0
|
|
538
|
+
};
|
|
539
|
+
}
|
|
540
|
+
updateUploadMetrics(originalSize, compressedSize, latency) {
|
|
541
|
+
this.metrics.totalUploads++;
|
|
542
|
+
this.metrics.totalArtifacts = this.index.size;
|
|
543
|
+
this.metrics.totalStorageMb += originalSize / (1024 * 1024);
|
|
544
|
+
this.metrics.compressedStorageMb += compressedSize / (1024 * 1024);
|
|
545
|
+
// Update average upload latency
|
|
546
|
+
const totalLatency = this.metrics.averageUploadLatencyMs * (this.metrics.totalUploads - 1) + latency;
|
|
547
|
+
this.metrics.averageUploadLatencyMs = totalLatency / this.metrics.totalUploads;
|
|
548
|
+
// Update compression ratio
|
|
549
|
+
if (this.metrics.totalStorageMb > 0) {
|
|
550
|
+
this.metrics.averageCompressionRatio = 1 - this.metrics.compressedStorageMb / this.metrics.totalStorageMb;
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
updateDownloadMetrics(latency) {
|
|
554
|
+
this.metrics.totalDownloads++;
|
|
555
|
+
const totalLatency = this.metrics.averageDownloadLatencyMs * (this.metrics.totalDownloads - 1) + latency;
|
|
556
|
+
this.metrics.averageDownloadLatencyMs = totalLatency / this.metrics.totalDownloads;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
//# sourceMappingURL=artifact-storage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../src/coordination/archives/v2-sdk-typescript/v2/sdk/artifact-storage.ts"],"names":["promises","fs","createReadStream","join","basename","gzip","gunzip","promisify","createHash","pipeline","gzipAsync","gunzipAsync","pipelineAsync","FilesystemArtifactStorage","config","index","Map","metrics","ready","startTime","backend","path","enableCompression","compressionThreshold","compressionAlgorithm","enableVersioning","maxVersions","cleanupIntervalHours","retentionHours","maxArtifactSizeBytes","Date","now","initializeMetrics","initialize","mkdir","recursive","loadIndex","close","persistIndex","isReady","uploadArtifact","agentId","sessionId","content","options","ensureReady","length","Error","artifactId","generateArtifactId","shouldCompress","disableCompression","forceCompression","finalContent","compressed","checksum","calculateChecksum","version","getNextVersion","metadata","createdBy","type","mimeType","detectMimeType","filename","sizeBytes","createdAt","modifiedAt","tags","undefined","contentPath","getContentPath","writeFile","updateIndex","latency","updateUploadMetrics","uploadArtifactFromFile","filePath","readFile","uploadArtifactStream","stream","chunks","chunk","push","Buffer","from","concat","downloadArtifact","getArtifactMetadata","entry","get","versions","updateDownloadMetrics","latencyMs","downloadArtifactToFile","destinationPath","result","downloadArtifactStream","gunzipStream","createGunzip","pipe","has","updateArtifactMetadata","updates","listArtifactVersions","Array","keys","sort","a","b","queryArtifacts","filter","results","values","map","e","m","includes","every","tag","createdAfter","createdBefore","sizeMin","sizeMax","sortBy","aVal","bVal","order","sortOrder","offset","limit","slice","listArtifactsByAgent","listArtifactsBySession","searchArtifactsByTags","deleteArtifact","unlink","catch","delete","size","totalDeletions","deleteArtifactsByAgent","artifacts","Promise","all","deleteArtifactsBySession","cleanup","retention","cutoffDate","verifyArtifactIntegrity","optimize","overwrite","entries","toDelete","v","getMetrics","uptimeMs","healthCheck","errors","testContent","healthy","error","message","String","baseId","replace","timestamp","random","Math","toString","substring","update","digest","ext","split","pop","toLowerCase","mimeTypes","js","ts","json","txt","html","css","png","jpg","jpeg","gif","pdf","zip","max","set","indexPath","data","parsed","JSON","parse","id","Object","typedEntry","serializable","fromEntries","stringify","totalArtifacts","totalStorageMb","compressedStorageMb","averageCompressionRatio","totalUploads","totalDownloads","averageUploadLatencyMs","averageDownloadLatencyMs","originalSize","compressedSize","totalLatency"],"mappings":"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"}
|