claude-flow 3.0.0-alpha.3 → 3.0.0-alpha.39
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/.claude-flow/metrics/system-metrics.json +2606 -0
- package/.claude/agents/MIGRATION_SUMMARY.md +222 -0
- package/.claude/agents/README.md +89 -0
- package/.claude/agents/analysis/analyze-code-quality.md +180 -0
- package/.claude/agents/analysis/code-analyzer.md +209 -0
- package/.claude/agents/analysis/code-review/analyze-code-quality.md +180 -0
- package/.claude/agents/architecture/system-design/arch-system-design.md +156 -0
- package/.claude/agents/base-template-generator.md +42 -0
- package/.claude/agents/consensus/README.md +253 -0
- package/.claude/agents/consensus/byzantine-coordinator.md +63 -0
- package/.claude/agents/consensus/crdt-synchronizer.md +997 -0
- package/.claude/agents/consensus/gossip-coordinator.md +63 -0
- package/.claude/agents/consensus/performance-benchmarker.md +851 -0
- package/.claude/agents/consensus/quorum-manager.md +823 -0
- package/.claude/agents/consensus/raft-manager.md +63 -0
- package/.claude/agents/consensus/security-manager.md +622 -0
- package/.claude/agents/core/coder.md +266 -0
- package/.claude/agents/core/planner.md +168 -0
- package/.claude/agents/core/researcher.md +190 -0
- package/.claude/agents/core/reviewer.md +326 -0
- package/.claude/agents/core/tester.md +319 -0
- package/.claude/agents/custom/test-long-runner.md +44 -0
- package/.claude/agents/data/ml/data-ml-model.md +193 -0
- package/.claude/agents/database-specialist.yaml +21 -0
- package/.claude/agents/development/backend/dev-backend-api.md +142 -0
- package/.claude/agents/development/dev-backend-api.md +345 -0
- package/.claude/agents/devops/ci-cd/ops-cicd-github.md +164 -0
- package/.claude/agents/documentation/api-docs/docs-api-openapi.md +174 -0
- package/.claude/agents/flow-nexus/app-store.md +88 -0
- package/.claude/agents/flow-nexus/authentication.md +69 -0
- package/.claude/agents/flow-nexus/challenges.md +81 -0
- package/.claude/agents/flow-nexus/neural-network.md +88 -0
- package/.claude/agents/flow-nexus/payments.md +83 -0
- package/.claude/agents/flow-nexus/sandbox.md +76 -0
- package/.claude/agents/flow-nexus/swarm.md +76 -0
- package/.claude/agents/flow-nexus/user-tools.md +96 -0
- package/.claude/agents/flow-nexus/workflow.md +84 -0
- package/.claude/agents/github/code-review-swarm.md +538 -0
- package/.claude/agents/github/github-modes.md +173 -0
- package/.claude/agents/github/issue-tracker.md +319 -0
- package/.claude/agents/github/multi-repo-swarm.md +553 -0
- package/.claude/agents/github/pr-manager.md +191 -0
- package/.claude/agents/github/project-board-sync.md +509 -0
- package/.claude/agents/github/release-manager.md +367 -0
- package/.claude/agents/github/release-swarm.md +583 -0
- package/.claude/agents/github/repo-architect.md +398 -0
- package/.claude/agents/github/swarm-issue.md +573 -0
- package/.claude/agents/github/swarm-pr.md +428 -0
- package/.claude/agents/github/sync-coordinator.md +452 -0
- package/.claude/agents/github/workflow-automation.md +635 -0
- package/.claude/agents/goal/agent.md +816 -0
- package/.claude/agents/goal/code-goal-planner.md +446 -0
- package/.claude/agents/goal/goal-planner.md +168 -0
- package/.claude/agents/hive-mind/collective-intelligence-coordinator.md +130 -0
- package/.claude/agents/hive-mind/queen-coordinator.md +203 -0
- package/.claude/agents/hive-mind/scout-explorer.md +242 -0
- package/.claude/agents/hive-mind/swarm-memory-manager.md +193 -0
- package/.claude/agents/hive-mind/worker-specialist.md +217 -0
- package/.claude/agents/index.yaml +17 -0
- package/.claude/agents/neural/safla-neural.md +74 -0
- package/.claude/agents/optimization/README.md +250 -0
- package/.claude/agents/optimization/benchmark-suite.md +665 -0
- package/.claude/agents/optimization/load-balancer.md +431 -0
- package/.claude/agents/optimization/performance-monitor.md +672 -0
- package/.claude/agents/optimization/resource-allocator.md +674 -0
- package/.claude/agents/optimization/topology-optimizer.md +808 -0
- package/.claude/agents/payments/agentic-payments.md +126 -0
- package/.claude/agents/project-coordinator.yaml +15 -0
- package/.claude/agents/python-specialist.yaml +21 -0
- package/.claude/agents/reasoning/agent.md +816 -0
- package/.claude/agents/reasoning/goal-planner.md +73 -0
- package/.claude/agents/security-auditor.yaml +20 -0
- package/.claude/agents/sona/sona-learning-optimizer.md +496 -0
- package/.claude/agents/sparc/architecture.md +472 -0
- package/.claude/agents/sparc/pseudocode.md +318 -0
- package/.claude/agents/sparc/refinement.md +525 -0
- package/.claude/agents/sparc/specification.md +276 -0
- package/.claude/agents/specialized/mobile/spec-mobile-react-native.md +226 -0
- package/.claude/agents/sublinear/consensus-coordinator.md +338 -0
- package/.claude/agents/sublinear/matrix-optimizer.md +185 -0
- package/.claude/agents/sublinear/pagerank-analyzer.md +299 -0
- package/.claude/agents/sublinear/performance-optimizer.md +368 -0
- package/.claude/agents/sublinear/trading-predictor.md +246 -0
- package/.claude/agents/swarm/README.md +190 -0
- package/.claude/agents/swarm/adaptive-coordinator.md +396 -0
- package/.claude/agents/swarm/hierarchical-coordinator.md +327 -0
- package/.claude/agents/swarm/mesh-coordinator.md +392 -0
- package/.claude/agents/templates/automation-smart-agent.md +205 -0
- package/.claude/agents/templates/coordinator-swarm-init.md +105 -0
- package/.claude/agents/templates/github-pr-manager.md +177 -0
- package/.claude/agents/templates/implementer-sparc-coder.md +259 -0
- package/.claude/agents/templates/memory-coordinator.md +187 -0
- package/.claude/agents/templates/migration-plan.md +746 -0
- package/.claude/agents/templates/orchestrator-task.md +139 -0
- package/.claude/agents/templates/performance-analyzer.md +199 -0
- package/.claude/agents/templates/sparc-coordinator.md +183 -0
- package/.claude/agents/testing/production-validator.md +395 -0
- package/.claude/agents/testing/tdd-london-swarm.md +244 -0
- package/.claude/agents/testing/unit/tdd-london-swarm.md +244 -0
- package/.claude/agents/testing/validation/production-validator.md +395 -0
- package/.claude/agents/typescript-specialist.yaml +21 -0
- package/.claude/agents/v3/database-specialist.yaml +21 -0
- package/.claude/agents/v3/index.yaml +17 -0
- package/.claude/agents/v3/project-coordinator.yaml +15 -0
- package/.claude/agents/v3/python-specialist.yaml +21 -0
- package/.claude/agents/v3/test-architect.yaml +20 -0
- package/.claude/agents/v3/typescript-specialist.yaml +21 -0
- package/.claude/agents/v3/v3-integration-architect.md +346 -0
- package/.claude/agents/v3/v3-memory-specialist.md +318 -0
- package/.claude/agents/v3/v3-performance-engineer.md +397 -0
- package/.claude/agents/v3/v3-queen-coordinator.md +98 -0
- package/.claude/agents/v3/v3-security-architect.md +174 -0
- package/.claude/checkpoints/1767754460.json +8 -0
- package/.claude/commands/agents/README.md +10 -0
- package/.claude/commands/agents/agent-capabilities.md +21 -0
- package/.claude/commands/agents/agent-coordination.md +28 -0
- package/.claude/commands/agents/agent-spawning.md +28 -0
- package/.claude/commands/agents/agent-types.md +26 -0
- package/.claude/commands/analysis/COMMAND_COMPLIANCE_REPORT.md +54 -0
- package/.claude/commands/analysis/README.md +9 -0
- package/.claude/commands/analysis/bottleneck-detect.md +162 -0
- package/.claude/commands/analysis/performance-bottlenecks.md +59 -0
- package/.claude/commands/analysis/performance-report.md +25 -0
- package/.claude/commands/analysis/token-efficiency.md +45 -0
- package/.claude/commands/analysis/token-usage.md +25 -0
- package/.claude/commands/automation/README.md +9 -0
- package/.claude/commands/automation/auto-agent.md +122 -0
- package/.claude/commands/automation/self-healing.md +106 -0
- package/.claude/commands/automation/session-memory.md +90 -0
- package/.claude/commands/automation/smart-agents.md +73 -0
- package/.claude/commands/automation/smart-spawn.md +25 -0
- package/.claude/commands/automation/workflow-select.md +25 -0
- package/.claude/commands/claude-flow-help.md +103 -0
- package/.claude/commands/claude-flow-memory.md +107 -0
- package/.claude/commands/claude-flow-swarm.md +205 -0
- package/.claude/commands/coordination/README.md +9 -0
- package/.claude/commands/coordination/agent-spawn.md +25 -0
- package/.claude/commands/coordination/init.md +44 -0
- package/.claude/commands/coordination/orchestrate.md +43 -0
- package/.claude/commands/coordination/spawn.md +45 -0
- package/.claude/commands/coordination/swarm-init.md +85 -0
- package/.claude/commands/coordination/task-orchestrate.md +25 -0
- package/.claude/commands/flow-nexus/app-store.md +124 -0
- package/.claude/commands/flow-nexus/challenges.md +120 -0
- package/.claude/commands/flow-nexus/login-registration.md +65 -0
- package/.claude/commands/flow-nexus/neural-network.md +134 -0
- package/.claude/commands/flow-nexus/payments.md +116 -0
- package/.claude/commands/flow-nexus/sandbox.md +83 -0
- package/.claude/commands/flow-nexus/swarm.md +87 -0
- package/.claude/commands/flow-nexus/user-tools.md +152 -0
- package/.claude/commands/flow-nexus/workflow.md +115 -0
- package/.claude/commands/github/README.md +11 -0
- package/.claude/commands/github/code-review-swarm.md +514 -0
- package/.claude/commands/github/code-review.md +25 -0
- package/.claude/commands/github/github-modes.md +147 -0
- package/.claude/commands/github/github-swarm.md +121 -0
- package/.claude/commands/github/issue-tracker.md +292 -0
- package/.claude/commands/github/issue-triage.md +25 -0
- package/.claude/commands/github/multi-repo-swarm.md +519 -0
- package/.claude/commands/github/pr-enhance.md +26 -0
- package/.claude/commands/github/pr-manager.md +170 -0
- package/.claude/commands/github/project-board-sync.md +471 -0
- package/.claude/commands/github/release-manager.md +338 -0
- package/.claude/commands/github/release-swarm.md +544 -0
- package/.claude/commands/github/repo-analyze.md +25 -0
- package/.claude/commands/github/repo-architect.md +367 -0
- package/.claude/commands/github/swarm-issue.md +482 -0
- package/.claude/commands/github/swarm-pr.md +285 -0
- package/.claude/commands/github/sync-coordinator.md +301 -0
- package/.claude/commands/github/workflow-automation.md +442 -0
- package/.claude/commands/hive-mind/README.md +17 -0
- package/.claude/commands/hive-mind/hive-mind-consensus.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-init.md +18 -0
- package/.claude/commands/hive-mind/hive-mind-memory.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-metrics.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-resume.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-sessions.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-spawn.md +21 -0
- package/.claude/commands/hive-mind/hive-mind-status.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-stop.md +8 -0
- package/.claude/commands/hive-mind/hive-mind-wizard.md +8 -0
- package/.claude/commands/hive-mind/hive-mind.md +27 -0
- package/.claude/commands/hooks/README.md +11 -0
- package/.claude/commands/hooks/overview.md +58 -0
- package/.claude/commands/hooks/post-edit.md +117 -0
- package/.claude/commands/hooks/post-task.md +112 -0
- package/.claude/commands/hooks/pre-edit.md +113 -0
- package/.claude/commands/hooks/pre-task.md +111 -0
- package/.claude/commands/hooks/session-end.md +118 -0
- package/.claude/commands/hooks/setup.md +103 -0
- package/.claude/commands/memory/README.md +9 -0
- package/.claude/commands/memory/memory-persist.md +25 -0
- package/.claude/commands/memory/memory-search.md +25 -0
- package/.claude/commands/memory/memory-usage.md +25 -0
- package/.claude/commands/memory/neural.md +47 -0
- package/.claude/commands/monitoring/README.md +9 -0
- package/.claude/commands/monitoring/agent-metrics.md +25 -0
- package/.claude/commands/monitoring/agents.md +44 -0
- package/.claude/commands/monitoring/real-time-view.md +25 -0
- package/.claude/commands/monitoring/status.md +46 -0
- package/.claude/commands/monitoring/swarm-monitor.md +25 -0
- package/.claude/commands/optimization/README.md +9 -0
- package/.claude/commands/optimization/auto-topology.md +62 -0
- package/.claude/commands/optimization/cache-manage.md +25 -0
- package/.claude/commands/optimization/parallel-execute.md +25 -0
- package/.claude/commands/optimization/parallel-execution.md +50 -0
- package/.claude/commands/optimization/topology-optimize.md +25 -0
- package/.claude/commands/pair/README.md +261 -0
- package/.claude/commands/pair/commands.md +546 -0
- package/.claude/commands/pair/config.md +510 -0
- package/.claude/commands/pair/examples.md +512 -0
- package/.claude/commands/pair/modes.md +348 -0
- package/.claude/commands/pair/session.md +407 -0
- package/.claude/commands/pair/start.md +209 -0
- package/.claude/commands/sparc/analyzer.md +52 -0
- package/.claude/commands/sparc/architect.md +53 -0
- package/.claude/commands/sparc/ask.md +97 -0
- package/.claude/commands/sparc/batch-executor.md +54 -0
- package/.claude/commands/sparc/code.md +89 -0
- package/.claude/commands/sparc/coder.md +54 -0
- package/.claude/commands/sparc/debug.md +83 -0
- package/.claude/commands/sparc/debugger.md +54 -0
- package/.claude/commands/sparc/designer.md +53 -0
- package/.claude/commands/sparc/devops.md +109 -0
- package/.claude/commands/sparc/docs-writer.md +80 -0
- package/.claude/commands/sparc/documenter.md +54 -0
- package/.claude/commands/sparc/innovator.md +54 -0
- package/.claude/commands/sparc/integration.md +83 -0
- package/.claude/commands/sparc/mcp.md +117 -0
- package/.claude/commands/sparc/memory-manager.md +54 -0
- package/.claude/commands/sparc/optimizer.md +54 -0
- package/.claude/commands/sparc/orchestrator.md +132 -0
- package/.claude/commands/sparc/post-deployment-monitoring-mode.md +83 -0
- package/.claude/commands/sparc/refinement-optimization-mode.md +83 -0
- package/.claude/commands/sparc/researcher.md +54 -0
- package/.claude/commands/sparc/reviewer.md +54 -0
- package/.claude/commands/sparc/security-review.md +80 -0
- package/.claude/commands/sparc/sparc-modes.md +174 -0
- package/.claude/commands/sparc/sparc.md +111 -0
- package/.claude/commands/sparc/spec-pseudocode.md +80 -0
- package/.claude/commands/sparc/supabase-admin.md +348 -0
- package/.claude/commands/sparc/swarm-coordinator.md +54 -0
- package/.claude/commands/sparc/tdd.md +54 -0
- package/.claude/commands/sparc/tester.md +54 -0
- package/.claude/commands/sparc/tutorial.md +79 -0
- package/.claude/commands/sparc/workflow-manager.md +54 -0
- package/.claude/commands/sparc.md +166 -0
- package/.claude/commands/stream-chain/pipeline.md +121 -0
- package/.claude/commands/stream-chain/run.md +70 -0
- package/.claude/commands/swarm/README.md +15 -0
- package/.claude/commands/swarm/analysis.md +95 -0
- package/.claude/commands/swarm/development.md +96 -0
- package/.claude/commands/swarm/examples.md +168 -0
- package/.claude/commands/swarm/maintenance.md +102 -0
- package/.claude/commands/swarm/optimization.md +117 -0
- package/.claude/commands/swarm/research.md +136 -0
- package/.claude/commands/swarm/swarm-analysis.md +8 -0
- package/.claude/commands/swarm/swarm-background.md +8 -0
- package/.claude/commands/swarm/swarm-init.md +19 -0
- package/.claude/commands/swarm/swarm-modes.md +8 -0
- package/.claude/commands/swarm/swarm-monitor.md +8 -0
- package/.claude/commands/swarm/swarm-spawn.md +19 -0
- package/.claude/commands/swarm/swarm-status.md +8 -0
- package/.claude/commands/swarm/swarm-strategies.md +8 -0
- package/.claude/commands/swarm/swarm.md +27 -0
- package/.claude/commands/swarm/testing.md +131 -0
- package/.claude/commands/training/README.md +9 -0
- package/.claude/commands/training/model-update.md +25 -0
- package/.claude/commands/training/neural-patterns.md +74 -0
- package/.claude/commands/training/neural-train.md +25 -0
- package/.claude/commands/training/pattern-learn.md +25 -0
- package/.claude/commands/training/specialization.md +63 -0
- package/.claude/commands/truth/start.md +143 -0
- package/.claude/commands/verify/check.md +50 -0
- package/.claude/commands/verify/start.md +128 -0
- package/.claude/commands/workflows/README.md +9 -0
- package/.claude/commands/workflows/development.md +78 -0
- package/.claude/commands/workflows/research.md +63 -0
- package/.claude/commands/workflows/workflow-create.md +25 -0
- package/.claude/commands/workflows/workflow-execute.md +25 -0
- package/.claude/commands/workflows/workflow-export.md +25 -0
- package/.claude/config/v3-dependency-optimization.json +266 -0
- package/.claude/config/v3-performance-targets.json +251 -0
- package/.claude/helpers/README.md +97 -0
- package/.claude/helpers/adr-compliance.sh +186 -0
- package/.claude/helpers/auto-commit.sh +178 -0
- package/.claude/helpers/checkpoint-manager.sh +251 -0
- package/.claude/helpers/daemon-manager.sh +252 -0
- package/.claude/helpers/ddd-tracker.sh +144 -0
- package/.claude/helpers/github-safe.js +106 -0
- package/.claude/helpers/github-setup.sh +28 -0
- package/.claude/helpers/guidance-hook.sh +13 -0
- package/.claude/helpers/guidance-hooks.sh +102 -0
- package/.claude/helpers/health-monitor.sh +108 -0
- package/.claude/helpers/learning-hooks.sh +329 -0
- package/.claude/helpers/learning-optimizer.sh +127 -0
- package/.claude/helpers/learning-service.mjs +1144 -0
- package/.claude/helpers/metrics-db.mjs +488 -0
- package/.claude/helpers/pattern-consolidator.sh +86 -0
- package/.claude/helpers/perf-worker.sh +160 -0
- package/.claude/helpers/quick-start.sh +19 -0
- package/.claude/helpers/security-scanner.sh +127 -0
- package/.claude/helpers/setup-mcp.sh +18 -0
- package/.claude/helpers/standard-checkpoint-hooks.sh +189 -0
- package/.claude/helpers/swarm-comms.sh +353 -0
- package/.claude/helpers/swarm-hooks.sh +761 -0
- package/.claude/helpers/swarm-monitor.sh +211 -0
- package/.claude/helpers/sync-v3-metrics.sh +245 -0
- package/.claude/helpers/update-v3-progress.sh +166 -0
- package/.claude/helpers/v3-quick-status.sh +58 -0
- package/.claude/helpers/v3.sh +111 -0
- package/.claude/helpers/validate-v3-config.sh +216 -0
- package/.claude/helpers/worker-manager.sh +170 -0
- package/.claude/mcp.json +13 -0
- package/.claude/settings copy.json +526 -0
- package/.claude/settings.json +526 -0
- package/.claude/settings.local.json +10 -0
- package/.claude/skills/.claude-flow/metrics/agent-metrics.json +1 -0
- package/.claude/skills/.claude-flow/metrics/performance.json +87 -0
- package/.claude/skills/.claude-flow/metrics/task-metrics.json +10 -0
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/agentic-jujutsu/SKILL.md +645 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +738 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1157 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +610 -0
- package/.claude/skills/github-code-review/SKILL.md +1140 -0
- package/.claude/skills/github-multi-repo/SKILL.md +874 -0
- package/.claude/skills/github-project-management/SKILL.md +1277 -0
- package/.claude/skills/github-release-management/SKILL.md +1081 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1065 -0
- package/.claude/skills/hive-mind-advanced/SKILL.md +712 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/performance-analysis/SKILL.md +563 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/skill-builder/.claude-flow/metrics/agent-metrics.json +1 -0
- package/.claude/skills/skill-builder/.claude-flow/metrics/performance.json +87 -0
- package/.claude/skills/skill-builder/.claude-flow/metrics/task-metrics.json +10 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1115 -0
- package/.claude/skills/stream-chain/SKILL.md +563 -0
- package/.claude/skills/swarm-advanced/SKILL.md +973 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/v3-cli-modernization/SKILL.md +872 -0
- package/.claude/skills/v3-core-implementation/SKILL.md +797 -0
- package/.claude/skills/v3-ddd-architecture/SKILL.md +442 -0
- package/.claude/skills/v3-integration-deep/SKILL.md +241 -0
- package/.claude/skills/v3-mcp-optimization/SKILL.md +777 -0
- package/.claude/skills/v3-memory-unification/SKILL.md +174 -0
- package/.claude/skills/v3-performance-optimization/SKILL.md +390 -0
- package/.claude/skills/v3-security-overhaul/SKILL.md +82 -0
- package/.claude/skills/v3-swarm-coordination/SKILL.md +340 -0
- package/.claude/skills/verification-quality/SKILL.md +649 -0
- package/.claude/skills/worker-benchmarks/skill.md +135 -0
- package/.claude/skills/worker-integration/skill.md +154 -0
- package/.claude/statusline-command.sh +176 -0
- package/.claude/statusline.mjs +109 -0
- package/.claude/statusline.sh +375 -0
- package/.claude-plugin/README.md +720 -0
- package/.claude-plugin/docs/INSTALLATION.md +261 -0
- package/.claude-plugin/docs/PLUGIN_SUMMARY.md +361 -0
- package/.claude-plugin/docs/QUICKSTART.md +361 -0
- package/.claude-plugin/docs/STRUCTURE.md +128 -0
- package/.claude-plugin/hooks/hooks.json +74 -0
- package/.claude-plugin/marketplace.json +96 -0
- package/.claude-plugin/plugin.json +71 -0
- package/.claude-plugin/scripts/install.sh +234 -0
- package/.claude-plugin/scripts/uninstall.sh +36 -0
- package/.claude-plugin/scripts/verify.sh +108 -0
- package/README.md +1093 -39
- package/package.json +54 -52
- package/v3/@claude-flow/cli/README.md +1608 -0
- package/v3/@claude-flow/cli/bin/cli.js +150 -0
- package/v3/@claude-flow/cli/bin/mcp-server.js +188 -0
- package/v3/@claude-flow/cli/dist/src/commands/agent.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/agent.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/agent.js +819 -0
- package/v3/@claude-flow/cli/dist/src/commands/agent.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/analyze.d.ts +19 -0
- package/v3/@claude-flow/cli/dist/src/commands/analyze.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/analyze.js +1823 -0
- package/v3/@claude-flow/cli/dist/src/commands/analyze.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/claims.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/claims.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/claims.js +288 -0
- package/v3/@claude-flow/cli/dist/src/commands/claims.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/completions.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/completions.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/completions.js +539 -0
- package/v3/@claude-flow/cli/dist/src/commands/completions.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/config.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/config.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/config.js +406 -0
- package/v3/@claude-flow/cli/dist/src/commands/config.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/daemon.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/daemon.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/daemon.js +593 -0
- package/v3/@claude-flow/cli/dist/src/commands/daemon.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/deployment.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/deployment.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/deployment.js +289 -0
- package/v3/@claude-flow/cli/dist/src/commands/deployment.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/doctor.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/doctor.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/doctor.js +448 -0
- package/v3/@claude-flow/cli/dist/src/commands/doctor.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/embeddings.d.ts +18 -0
- package/v3/@claude-flow/cli/dist/src/commands/embeddings.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/embeddings.js +616 -0
- package/v3/@claude-flow/cli/dist/src/commands/embeddings.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/hive-mind.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/hive-mind.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/hive-mind.js +844 -0
- package/v3/@claude-flow/cli/dist/src/commands/hive-mind.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/hooks.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/hooks.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/hooks.js +2821 -0
- package/v3/@claude-flow/cli/dist/src/commands/hooks.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/index.d.ts +89 -0
- package/v3/@claude-flow/cli/dist/src/commands/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/index.js +258 -0
- package/v3/@claude-flow/cli/dist/src/commands/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/init.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/init.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/init.js +603 -0
- package/v3/@claude-flow/cli/dist/src/commands/init.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/issues.d.ts +21 -0
- package/v3/@claude-flow/cli/dist/src/commands/issues.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/issues.js +567 -0
- package/v3/@claude-flow/cli/dist/src/commands/issues.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/mcp.d.ts +11 -0
- package/v3/@claude-flow/cli/dist/src/commands/mcp.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/mcp.js +662 -0
- package/v3/@claude-flow/cli/dist/src/commands/mcp.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/memory.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/memory.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/memory.js +1196 -0
- package/v3/@claude-flow/cli/dist/src/commands/memory.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/migrate.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/migrate.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/migrate.js +398 -0
- package/v3/@claude-flow/cli/dist/src/commands/migrate.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/neural.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/neural.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/neural.js +224 -0
- package/v3/@claude-flow/cli/dist/src/commands/neural.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/performance.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/performance.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/performance.js +262 -0
- package/v3/@claude-flow/cli/dist/src/commands/performance.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/plugins.d.ts +11 -0
- package/v3/@claude-flow/cli/dist/src/commands/plugins.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/plugins.js +630 -0
- package/v3/@claude-flow/cli/dist/src/commands/plugins.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/process.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/process.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/process.js +641 -0
- package/v3/@claude-flow/cli/dist/src/commands/process.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/progress.d.ts +11 -0
- package/v3/@claude-flow/cli/dist/src/commands/progress.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/progress.js +259 -0
- package/v3/@claude-flow/cli/dist/src/commands/progress.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/providers.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/providers.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/providers.js +232 -0
- package/v3/@claude-flow/cli/dist/src/commands/providers.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/route.d.ts +16 -0
- package/v3/@claude-flow/cli/dist/src/commands/route.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/route.js +813 -0
- package/v3/@claude-flow/cli/dist/src/commands/route.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/security.d.ts +10 -0
- package/v3/@claude-flow/cli/dist/src/commands/security.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/security.js +261 -0
- package/v3/@claude-flow/cli/dist/src/commands/security.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/session.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/session.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/session.js +750 -0
- package/v3/@claude-flow/cli/dist/src/commands/session.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/start.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/start.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/start.js +418 -0
- package/v3/@claude-flow/cli/dist/src/commands/start.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/status.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/status.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/status.js +584 -0
- package/v3/@claude-flow/cli/dist/src/commands/status.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/swarm.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/swarm.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/swarm.js +726 -0
- package/v3/@claude-flow/cli/dist/src/commands/swarm.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/task.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/task.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/task.js +671 -0
- package/v3/@claude-flow/cli/dist/src/commands/task.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/transfer-store.d.ts +13 -0
- package/v3/@claude-flow/cli/dist/src/commands/transfer-store.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/transfer-store.js +428 -0
- package/v3/@claude-flow/cli/dist/src/commands/transfer-store.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/workflow.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/commands/workflow.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/commands/workflow.js +617 -0
- package/v3/@claude-flow/cli/dist/src/commands/workflow.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/config-adapter.d.ts +15 -0
- package/v3/@claude-flow/cli/dist/src/config-adapter.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/config-adapter.js +185 -0
- package/v3/@claude-flow/cli/dist/src/config-adapter.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/index.d.ts +57 -0
- package/v3/@claude-flow/cli/dist/src/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/index.js +388 -0
- package/v3/@claude-flow/cli/dist/src/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/infrastructure/in-memory-repositories.d.ts +68 -0
- package/v3/@claude-flow/cli/dist/src/infrastructure/in-memory-repositories.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/infrastructure/in-memory-repositories.js +264 -0
- package/v3/@claude-flow/cli/dist/src/infrastructure/in-memory-repositories.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.d.ts +15 -0
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.js +628 -0
- package/v3/@claude-flow/cli/dist/src/init/claudemd-generator.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/executor.d.ts +11 -0
- package/v3/@claude-flow/cli/dist/src/init/executor.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/executor.js +763 -0
- package/v3/@claude-flow/cli/dist/src/init/executor.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/helpers-generator.d.ts +42 -0
- package/v3/@claude-flow/cli/dist/src/init/helpers-generator.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/helpers-generator.js +613 -0
- package/v3/@claude-flow/cli/dist/src/init/helpers-generator.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/index.d.ts +12 -0
- package/v3/@claude-flow/cli/dist/src/init/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/index.js +15 -0
- package/v3/@claude-flow/cli/dist/src/init/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/mcp-generator.d.ts +27 -0
- package/v3/@claude-flow/cli/dist/src/init/mcp-generator.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/mcp-generator.js +100 -0
- package/v3/@claude-flow/cli/dist/src/init/mcp-generator.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/settings-generator.d.ts +14 -0
- package/v3/@claude-flow/cli/dist/src/init/settings-generator.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/settings-generator.js +311 -0
- package/v3/@claude-flow/cli/dist/src/init/settings-generator.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/statusline-generator.d.ts +20 -0
- package/v3/@claude-flow/cli/dist/src/init/statusline-generator.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/statusline-generator.js +369 -0
- package/v3/@claude-flow/cli/dist/src/init/statusline-generator.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/types.d.ts +246 -0
- package/v3/@claude-flow/cli/dist/src/init/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/init/types.js +216 -0
- package/v3/@claude-flow/cli/dist/src/init/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-client.d.ts +92 -0
- package/v3/@claude-flow/cli/dist/src/mcp-client.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-client.js +207 -0
- package/v3/@claude-flow/cli/dist/src/mcp-client.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-server.d.ts +158 -0
- package/v3/@claude-flow/cli/dist/src/mcp-server.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-server.js +584 -0
- package/v3/@claude-flow/cli/dist/src/mcp-server.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.js +426 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/agent-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.d.ts +38 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.js +317 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/analyze-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/config-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/config-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/config-tools.js +333 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/config-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.js +447 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hive-mind-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.d.ts +41 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js +1836 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/hooks-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/index.d.ts +20 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/index.js +19 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.js +235 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/memory-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/progress-tools.d.ts +14 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/progress-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/progress-tools.js +343 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/progress-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/session-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/session-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/session-tools.js +315 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/session-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.js +102 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/swarm-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.js +302 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/task-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.d.ts +14 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.js +396 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/transfer-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/types.d.ts +31 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/types.js +7 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.d.ts +8 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.js +481 -0
- package/v3/@claude-flow/cli/dist/src/mcp-tools/workflow-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/output.d.ts +133 -0
- package/v3/@claude-flow/cli/dist/src/output.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/output.js +513 -0
- package/v3/@claude-flow/cli/dist/src/output.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/parser.d.ts +41 -0
- package/v3/@claude-flow/cli/dist/src/parser.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/parser.js +353 -0
- package/v3/@claude-flow/cli/dist/src/parser.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.d.ts +73 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.js +568 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/discovery.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/index.d.ts +76 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/index.js +141 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/search.d.ts +46 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/search.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/search.js +230 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/search.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/types.d.ts +274 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/types.js +7 -0
- package/v3/@claude-flow/cli/dist/src/plugins/store/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/demo-plugin-store.d.ts +7 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/demo-plugin-store.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/demo-plugin-store.js +126 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/demo-plugin-store.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/standalone-test.d.ts +12 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/standalone-test.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/standalone-test.js +188 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/standalone-test.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/test-plugin-store.d.ts +7 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/test-plugin-store.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/test-plugin-store.js +206 -0
- package/v3/@claude-flow/cli/dist/src/plugins/tests/test-plugin-store.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/prompt.d.ts +44 -0
- package/v3/@claude-flow/cli/dist/src/prompt.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/prompt.js +501 -0
- package/v3/@claude-flow/cli/dist/src/prompt.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/ast-analyzer.d.ts +67 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/ast-analyzer.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/ast-analyzer.js +277 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/ast-analyzer.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-router.d.ts +160 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-router.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-router.js +529 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-router.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-tools.d.ts +33 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-tools.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-tools.js +157 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/coverage-tools.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/diff-classifier.d.ts +175 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/diff-classifier.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/diff-classifier.js +698 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/diff-classifier.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/graph-analyzer.d.ts +187 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/graph-analyzer.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/graph-analyzer.js +929 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/graph-analyzer.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/index.d.ts +27 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/index.js +53 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/q-learning-router.d.ts +211 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/q-learning-router.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/q-learning-router.js +681 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/q-learning-router.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/vector-db.d.ts +69 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/vector-db.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/vector-db.js +243 -0
- package/v3/@claude-flow/cli/dist/src/ruvector/vector-db.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/claim-service.d.ts +204 -0
- package/v3/@claude-flow/cli/dist/src/services/claim-service.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/claim-service.js +818 -0
- package/v3/@claude-flow/cli/dist/src/services/claim-service.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/container-worker-pool.d.ts +197 -0
- package/v3/@claude-flow/cli/dist/src/services/container-worker-pool.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/container-worker-pool.js +581 -0
- package/v3/@claude-flow/cli/dist/src/services/container-worker-pool.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/headless-worker-executor.d.ts +304 -0
- package/v3/@claude-flow/cli/dist/src/services/headless-worker-executor.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/headless-worker-executor.js +997 -0
- package/v3/@claude-flow/cli/dist/src/services/headless-worker-executor.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/index.d.ts +13 -0
- package/v3/@claude-flow/cli/dist/src/services/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/index.js +11 -0
- package/v3/@claude-flow/cli/dist/src/services/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.d.ts +203 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.js +745 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-queue.d.ts +194 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-queue.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-queue.js +511 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-queue.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/suggest.d.ts +53 -0
- package/v3/@claude-flow/cli/dist/src/suggest.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/suggest.js +200 -0
- package/v3/@claude-flow/cli/dist/src/suggest.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/anonymization/index.d.ts +25 -0
- package/v3/@claude-flow/cli/dist/src/transfer/anonymization/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/anonymization/index.js +175 -0
- package/v3/@claude-flow/cli/dist/src/transfer/anonymization/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/deploy-seraphine.d.ts +13 -0
- package/v3/@claude-flow/cli/dist/src/transfer/deploy-seraphine.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/deploy-seraphine.js +205 -0
- package/v3/@claude-flow/cli/dist/src/transfer/deploy-seraphine.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/export.d.ts +25 -0
- package/v3/@claude-flow/cli/dist/src/transfer/export.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/export.js +113 -0
- package/v3/@claude-flow/cli/dist/src/transfer/export.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/index.d.ts +12 -0
- package/v3/@claude-flow/cli/dist/src/transfer/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/index.js +31 -0
- package/v3/@claude-flow/cli/dist/src/transfer/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/client.d.ts +31 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/client.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/client.js +74 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/client.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/upload.d.ts +95 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/upload.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/upload.js +410 -0
- package/v3/@claude-flow/cli/dist/src/transfer/ipfs/upload.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/models/seraphine.d.ts +72 -0
- package/v3/@claude-flow/cli/dist/src/transfer/models/seraphine.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/models/seraphine.js +373 -0
- package/v3/@claude-flow/cli/dist/src/transfer/models/seraphine.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/serialization/cfp.d.ts +49 -0
- package/v3/@claude-flow/cli/dist/src/transfer/serialization/cfp.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/serialization/cfp.js +180 -0
- package/v3/@claude-flow/cli/dist/src/transfer/serialization/cfp.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/discovery.d.ts +84 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/discovery.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/discovery.js +275 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/discovery.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/download.d.ts +70 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/download.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/download.js +295 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/download.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/index.d.ts +84 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/index.js +153 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/index.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/publish.d.ts +76 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/publish.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/publish.js +262 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/publish.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/registry.d.ts +58 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/registry.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/registry.js +285 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/registry.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/search.d.ts +54 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/search.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/search.js +232 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/search.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.d.ts +12 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.js +190 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/tests/standalone-test.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/types.d.ts +193 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/types.js +6 -0
- package/v3/@claude-flow/cli/dist/src/transfer/store/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/test-seraphine.d.ts +6 -0
- package/v3/@claude-flow/cli/dist/src/transfer/test-seraphine.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/test-seraphine.js +105 -0
- package/v3/@claude-flow/cli/dist/src/transfer/test-seraphine.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/tests/test-store.d.ts +7 -0
- package/v3/@claude-flow/cli/dist/src/transfer/tests/test-store.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/tests/test-store.js +214 -0
- package/v3/@claude-flow/cli/dist/src/transfer/tests/test-store.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/types.d.ts +245 -0
- package/v3/@claude-flow/cli/dist/src/transfer/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/transfer/types.js +6 -0
- package/v3/@claude-flow/cli/dist/src/transfer/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/src/types.d.ts +198 -0
- package/v3/@claude-flow/cli/dist/src/types.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/types.js +38 -0
- package/v3/@claude-flow/cli/dist/src/types.js.map +1 -0
- package/v3/@claude-flow/cli/dist/tsconfig.tsbuildinfo +1 -0
- package/v3/@claude-flow/cli/package.json +57 -0
- package/v3/@claude-flow/shared/README.md +323 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.d.ts +41 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.js +186 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/index.d.ts +8 -0
- package/v3/@claude-flow/shared/dist/core/config/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/index.js +12 -0
- package/v3/@claude-flow/shared/dist/core/config/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.d.ts +45 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.js +222 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.d.ts +1134 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.js +158 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.d.ts +92 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.js +147 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.d.ts +31 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.js +197 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/index.d.ts +15 -0
- package/v3/@claude-flow/shared/dist/core/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/index.js +19 -0
- package/v3/@claude-flow/shared/dist/core/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts +200 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.js +6 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts +310 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.js +7 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts +224 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.js +46 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.js +15 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts +298 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.js +7 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts +185 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.js +6 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts +35 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.js +101 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts +60 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.js +166 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.d.ts +46 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.js +64 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts +56 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.js +195 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts +83 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.js +193 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts +49 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.js +253 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.d.ts +282 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.js +165 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.d.ts +126 -0
- package/v3/@claude-flow/shared/dist/events/event-store.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.js +416 -0
- package/v3/@claude-flow/shared/dist/events/event-store.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.d.ts +8 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.js +293 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.js +193 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/events/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/index.js +20 -0
- package/v3/@claude-flow/shared/dist/events/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/projections.d.ts +177 -0
- package/v3/@claude-flow/shared/dist/events/projections.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/projections.js +421 -0
- package/v3/@claude-flow/shared/dist/events/projections.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.d.ts +101 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.js +263 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events.d.ts +80 -0
- package/v3/@claude-flow/shared/dist/events.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events.js +249 -0
- package/v3/@claude-flow/shared/dist/events.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.d.ts +42 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.js +351 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.d.ts +100 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.js +264 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.d.ts +9 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.js +322 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/index.d.ts +52 -0
- package/v3/@claude-flow/shared/dist/hooks/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/index.js +51 -0
- package/v3/@claude-flow/shared/dist/hooks/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.d.ts +133 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.js +277 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts +105 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.js +481 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts +144 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.js +328 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts +158 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.js +450 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.d.ts +17 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.js +17 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.d.ts +234 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.js +334 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.d.ts +163 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.js +326 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/types.d.ts +267 -0
- package/v3/@claude-flow/shared/dist/hooks/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/types.js +62 -0
- package/v3/@claude-flow/shared/dist/hooks/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts +9 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.js +93 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/index.js +46 -0
- package/v3/@claude-flow/shared/dist/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.d.ts +98 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.js +364 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/index.d.ts +69 -0
- package/v3/@claude-flow/shared/dist/mcp/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/index.js +84 -0
- package/v3/@claude-flow/shared/dist/mcp/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/server.d.ts +166 -0
- package/v3/@claude-flow/shared/dist/mcp/server.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/server.js +593 -0
- package/v3/@claude-flow/shared/dist/mcp/server.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.d.ts +136 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.js +335 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.d.ts +178 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.js +439 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.d.ts +104 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.js +476 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.d.ts +102 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.js +238 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.d.ts +104 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.js +263 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.d.ts +133 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.js +396 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/types.d.ts +438 -0
- package/v3/@claude-flow/shared/dist/mcp/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/types.js +54 -0
- package/v3/@claude-flow/shared/dist/mcp/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.d.ts +544 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.js +23 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.d.ts +139 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.js +434 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.d.ts +183 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.js +457 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/plugins/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/index.js +10 -0
- package/v3/@claude-flow/shared/dist/plugins/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts +106 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.js +241 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.js +10 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts +121 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.js +355 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/types.d.ts +93 -0
- package/v3/@claude-flow/shared/dist/plugins/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/types.js +9 -0
- package/v3/@claude-flow/shared/dist/plugins/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.d.ts +105 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.js +206 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts +132 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.js +233 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/resilience/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/index.js +19 -0
- package/v3/@claude-flow/shared/dist/resilience/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.d.ts +168 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.js +314 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.d.ts +91 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.js +159 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/security/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/index.js +12 -0
- package/v3/@claude-flow/shared/dist/security/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.d.ts +73 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.js +201 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.d.ts +92 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.js +142 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.d.ts +137 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.js +6 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/index.d.ts +11 -0
- package/v3/@claude-flow/shared/dist/types/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/index.js +17 -0
- package/v3/@claude-flow/shared/dist/types/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.d.ts +266 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.js +7 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.d.ts +236 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.js +7 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.d.ts +186 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.js +65 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/task.types.d.ts +178 -0
- package/v3/@claude-flow/shared/dist/types/task.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/task.types.js +32 -0
- package/v3/@claude-flow/shared/dist/types/task.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types.d.ts +197 -0
- package/v3/@claude-flow/shared/dist/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types.js +21 -0
- package/v3/@claude-flow/shared/dist/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.d.ts +69 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.js +208 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.js.map +1 -0
- package/v3/@claude-flow/shared/package.json +34 -0
- package/v3/README.md +493 -0
- package/bin/cli.js +0 -36
- package/dist/index.d.ts +0 -30
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -30
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,1196 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* V3 CLI Memory Command
|
|
3
|
+
* Memory operations for AgentDB integration
|
|
4
|
+
*/
|
|
5
|
+
import { output } from '../output.js';
|
|
6
|
+
import { select, confirm, input } from '../prompt.js';
|
|
7
|
+
import { callMCPTool, MCPClientError } from '../mcp-client.js';
|
|
8
|
+
// Memory backends
|
|
9
|
+
const BACKENDS = [
|
|
10
|
+
{ value: 'agentdb', label: 'AgentDB', hint: 'Vector database with HNSW indexing (150x-12,500x faster)' },
|
|
11
|
+
{ value: 'sqlite', label: 'SQLite', hint: 'Lightweight local storage' },
|
|
12
|
+
{ value: 'hybrid', label: 'Hybrid', hint: 'SQLite + AgentDB (recommended)' },
|
|
13
|
+
{ value: 'memory', label: 'In-Memory', hint: 'Fast but non-persistent' }
|
|
14
|
+
];
|
|
15
|
+
// Store command
|
|
16
|
+
const storeCommand = {
|
|
17
|
+
name: 'store',
|
|
18
|
+
description: 'Store data in memory',
|
|
19
|
+
options: [
|
|
20
|
+
{
|
|
21
|
+
name: 'key',
|
|
22
|
+
short: 'k',
|
|
23
|
+
description: 'Storage key/namespace',
|
|
24
|
+
type: 'string',
|
|
25
|
+
required: true
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
name: 'value',
|
|
29
|
+
// Note: No short flag - global -v is reserved for verbose
|
|
30
|
+
description: 'Value to store (use --value)',
|
|
31
|
+
type: 'string'
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
name: 'namespace',
|
|
35
|
+
short: 'n',
|
|
36
|
+
description: 'Memory namespace',
|
|
37
|
+
type: 'string',
|
|
38
|
+
default: 'default'
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: 'ttl',
|
|
42
|
+
description: 'Time to live in seconds',
|
|
43
|
+
type: 'number'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: 'tags',
|
|
47
|
+
description: 'Comma-separated tags',
|
|
48
|
+
type: 'string'
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
name: 'vector',
|
|
52
|
+
description: 'Store as vector embedding',
|
|
53
|
+
type: 'boolean',
|
|
54
|
+
default: false
|
|
55
|
+
}
|
|
56
|
+
],
|
|
57
|
+
examples: [
|
|
58
|
+
{ command: 'claude-flow memory store -k "api/auth" -v "JWT implementation"', description: 'Store text' },
|
|
59
|
+
{ command: 'claude-flow memory store -k "pattern/singleton" --vector', description: 'Store vector' }
|
|
60
|
+
],
|
|
61
|
+
action: async (ctx) => {
|
|
62
|
+
const key = ctx.flags.key;
|
|
63
|
+
let value = ctx.flags.value || ctx.args[0];
|
|
64
|
+
const namespace = ctx.flags.namespace;
|
|
65
|
+
const ttl = ctx.flags.ttl;
|
|
66
|
+
const tags = ctx.flags.tags ? ctx.flags.tags.split(',') : [];
|
|
67
|
+
const asVector = ctx.flags.vector;
|
|
68
|
+
if (!key) {
|
|
69
|
+
output.printError('Key is required. Use --key or -k');
|
|
70
|
+
return { success: false, exitCode: 1 };
|
|
71
|
+
}
|
|
72
|
+
if (!value && ctx.interactive) {
|
|
73
|
+
value = await input({
|
|
74
|
+
message: 'Enter value to store:',
|
|
75
|
+
validate: (v) => v.length > 0 || 'Value is required'
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
if (!value) {
|
|
79
|
+
output.printError('Value is required. Use --value or -v');
|
|
80
|
+
return { success: false, exitCode: 1 };
|
|
81
|
+
}
|
|
82
|
+
const storeData = {
|
|
83
|
+
key,
|
|
84
|
+
namespace,
|
|
85
|
+
value,
|
|
86
|
+
ttl,
|
|
87
|
+
tags,
|
|
88
|
+
asVector,
|
|
89
|
+
storedAt: new Date().toISOString(),
|
|
90
|
+
size: Buffer.byteLength(value, 'utf8')
|
|
91
|
+
};
|
|
92
|
+
output.printInfo(`Storing in ${namespace}/${key}...`);
|
|
93
|
+
if (asVector) {
|
|
94
|
+
output.writeln(output.dim(' Generating embedding vector...'));
|
|
95
|
+
output.writeln(output.dim(' Indexing with HNSW (M=16, ef=200)...'));
|
|
96
|
+
}
|
|
97
|
+
// Call MCP memory/store tool for real persistence
|
|
98
|
+
try {
|
|
99
|
+
const result = await callMCPTool('memory/store', {
|
|
100
|
+
key,
|
|
101
|
+
value,
|
|
102
|
+
metadata: { namespace, tags, ttl, asVector, size: storeData.size }
|
|
103
|
+
});
|
|
104
|
+
output.writeln();
|
|
105
|
+
output.printTable({
|
|
106
|
+
columns: [
|
|
107
|
+
{ key: 'property', header: 'Property', width: 15 },
|
|
108
|
+
{ key: 'val', header: 'Value', width: 40 }
|
|
109
|
+
],
|
|
110
|
+
data: [
|
|
111
|
+
{ property: 'Key', val: key },
|
|
112
|
+
{ property: 'Namespace', val: namespace },
|
|
113
|
+
{ property: 'Size', val: `${storeData.size} bytes` },
|
|
114
|
+
{ property: 'TTL', val: ttl ? `${ttl}s` : 'None' },
|
|
115
|
+
{ property: 'Tags', val: tags.length > 0 ? tags.join(', ') : 'None' },
|
|
116
|
+
{ property: 'Vector', val: asVector ? 'Yes' : 'No' },
|
|
117
|
+
{ property: 'Total Entries', val: String(result.totalEntries || 1) }
|
|
118
|
+
]
|
|
119
|
+
});
|
|
120
|
+
output.writeln();
|
|
121
|
+
output.printSuccess('Data stored successfully');
|
|
122
|
+
return { success: true, data: { ...storeData, ...result } };
|
|
123
|
+
}
|
|
124
|
+
catch (error) {
|
|
125
|
+
output.printError(`Failed to store: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
126
|
+
return { success: false, exitCode: 1 };
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
};
|
|
130
|
+
// Retrieve command
|
|
131
|
+
const retrieveCommand = {
|
|
132
|
+
name: 'retrieve',
|
|
133
|
+
aliases: ['get'],
|
|
134
|
+
description: 'Retrieve data from memory',
|
|
135
|
+
options: [
|
|
136
|
+
{
|
|
137
|
+
name: 'key',
|
|
138
|
+
short: 'k',
|
|
139
|
+
description: 'Storage key',
|
|
140
|
+
type: 'string'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: 'namespace',
|
|
144
|
+
short: 'n',
|
|
145
|
+
description: 'Memory namespace',
|
|
146
|
+
type: 'string',
|
|
147
|
+
default: 'default'
|
|
148
|
+
}
|
|
149
|
+
],
|
|
150
|
+
action: async (ctx) => {
|
|
151
|
+
const key = ctx.flags.key || ctx.args[0];
|
|
152
|
+
const namespace = ctx.flags.namespace;
|
|
153
|
+
if (!key) {
|
|
154
|
+
output.printError('Key is required');
|
|
155
|
+
return { success: false, exitCode: 1 };
|
|
156
|
+
}
|
|
157
|
+
// Call MCP memory/retrieve tool for real data
|
|
158
|
+
try {
|
|
159
|
+
const result = await callMCPTool('memory/retrieve', { key });
|
|
160
|
+
if (!result.found) {
|
|
161
|
+
output.printWarning(`Key not found: ${key}`);
|
|
162
|
+
return { success: false, exitCode: 1, data: { key, found: false } };
|
|
163
|
+
}
|
|
164
|
+
const data = {
|
|
165
|
+
key: result.key,
|
|
166
|
+
namespace,
|
|
167
|
+
value: result.value,
|
|
168
|
+
metadata: {
|
|
169
|
+
storedAt: result.storedAt || 'Unknown',
|
|
170
|
+
accessCount: result.accessCount || 0,
|
|
171
|
+
lastAccessed: new Date().toISOString(),
|
|
172
|
+
...(result.metadata || {})
|
|
173
|
+
}
|
|
174
|
+
};
|
|
175
|
+
if (ctx.flags.format === 'json') {
|
|
176
|
+
output.printJson(data);
|
|
177
|
+
return { success: true, data };
|
|
178
|
+
}
|
|
179
|
+
const metaTags = result.metadata?.tags || [];
|
|
180
|
+
const metaSize = result.metadata?.size || String(data.value).length;
|
|
181
|
+
output.writeln();
|
|
182
|
+
output.printBox([
|
|
183
|
+
`Namespace: ${namespace}`,
|
|
184
|
+
`Key: ${data.key}`,
|
|
185
|
+
`Size: ${metaSize} bytes`,
|
|
186
|
+
`Access Count: ${data.metadata.accessCount}`,
|
|
187
|
+
`Tags: ${metaTags.length > 0 ? metaTags.join(', ') : 'None'}`,
|
|
188
|
+
'',
|
|
189
|
+
output.bold('Value:'),
|
|
190
|
+
typeof data.value === 'string' ? data.value : JSON.stringify(data.value, null, 2)
|
|
191
|
+
].join('\n'), 'Memory Entry');
|
|
192
|
+
return { success: true, data };
|
|
193
|
+
}
|
|
194
|
+
catch (error) {
|
|
195
|
+
output.printError(`Failed to retrieve: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
196
|
+
return { success: false, exitCode: 1 };
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
};
|
|
200
|
+
// Search command
|
|
201
|
+
const searchCommand = {
|
|
202
|
+
name: 'search',
|
|
203
|
+
description: 'Search memory with semantic/vector search',
|
|
204
|
+
options: [
|
|
205
|
+
{
|
|
206
|
+
name: 'query',
|
|
207
|
+
short: 'q',
|
|
208
|
+
description: 'Search query',
|
|
209
|
+
type: 'string',
|
|
210
|
+
required: true
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
name: 'namespace',
|
|
214
|
+
short: 'n',
|
|
215
|
+
description: 'Memory namespace',
|
|
216
|
+
type: 'string'
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
name: 'limit',
|
|
220
|
+
short: 'l',
|
|
221
|
+
description: 'Maximum results',
|
|
222
|
+
type: 'number',
|
|
223
|
+
default: 10
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
name: 'threshold',
|
|
227
|
+
description: 'Similarity threshold (0-1)',
|
|
228
|
+
type: 'number',
|
|
229
|
+
default: 0.7
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
name: 'type',
|
|
233
|
+
short: 't',
|
|
234
|
+
description: 'Search type (semantic, keyword, hybrid)',
|
|
235
|
+
type: 'string',
|
|
236
|
+
default: 'semantic',
|
|
237
|
+
choices: ['semantic', 'keyword', 'hybrid']
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
examples: [
|
|
241
|
+
{ command: 'claude-flow memory search -q "authentication patterns"', description: 'Semantic search' },
|
|
242
|
+
{ command: 'claude-flow memory search -q "JWT" -t keyword', description: 'Keyword search' }
|
|
243
|
+
],
|
|
244
|
+
action: async (ctx) => {
|
|
245
|
+
const query = ctx.flags.query || ctx.args[0];
|
|
246
|
+
const namespace = ctx.flags.namespace;
|
|
247
|
+
const limit = ctx.flags.limit;
|
|
248
|
+
const threshold = ctx.flags.threshold;
|
|
249
|
+
const searchType = ctx.flags.type;
|
|
250
|
+
if (!query) {
|
|
251
|
+
output.printError('Query is required. Use --query or -q');
|
|
252
|
+
return { success: false, exitCode: 1 };
|
|
253
|
+
}
|
|
254
|
+
output.printInfo(`Searching: "${query}" (${searchType})`);
|
|
255
|
+
output.writeln();
|
|
256
|
+
// Call MCP memory/search tool for real results
|
|
257
|
+
try {
|
|
258
|
+
const searchResult = await callMCPTool('memory/search', { query, limit });
|
|
259
|
+
const results = searchResult.results.map(r => ({
|
|
260
|
+
key: r.key,
|
|
261
|
+
score: r.score,
|
|
262
|
+
namespace: namespace || 'default',
|
|
263
|
+
preview: typeof r.value === 'string'
|
|
264
|
+
? r.value.substring(0, 40) + (r.value.length > 40 ? '...' : '')
|
|
265
|
+
: JSON.stringify(r.value).substring(0, 40)
|
|
266
|
+
}));
|
|
267
|
+
if (ctx.flags.format === 'json') {
|
|
268
|
+
output.printJson({ query, searchType, results, searchTime: searchResult.searchTime });
|
|
269
|
+
return { success: true, data: results };
|
|
270
|
+
}
|
|
271
|
+
// Performance stats
|
|
272
|
+
output.writeln(output.dim(` Search time: ${searchResult.searchTime}`));
|
|
273
|
+
output.writeln();
|
|
274
|
+
if (results.length === 0) {
|
|
275
|
+
output.printWarning('No results found');
|
|
276
|
+
return { success: true, data: [] };
|
|
277
|
+
}
|
|
278
|
+
output.printTable({
|
|
279
|
+
columns: [
|
|
280
|
+
{ key: 'key', header: 'Key', width: 20 },
|
|
281
|
+
{ key: 'score', header: 'Score', width: 8, align: 'right', format: (v) => Number(v).toFixed(2) },
|
|
282
|
+
{ key: 'namespace', header: 'Namespace', width: 12 },
|
|
283
|
+
{ key: 'preview', header: 'Preview', width: 35 }
|
|
284
|
+
],
|
|
285
|
+
data: results
|
|
286
|
+
});
|
|
287
|
+
output.writeln();
|
|
288
|
+
output.printInfo(`Found ${results.length} results`);
|
|
289
|
+
return { success: true, data: results };
|
|
290
|
+
}
|
|
291
|
+
catch (error) {
|
|
292
|
+
output.printError(`Search failed: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
293
|
+
return { success: false, exitCode: 1 };
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
};
|
|
297
|
+
// List command
|
|
298
|
+
const listCommand = {
|
|
299
|
+
name: 'list',
|
|
300
|
+
aliases: ['ls'],
|
|
301
|
+
description: 'List memory entries',
|
|
302
|
+
options: [
|
|
303
|
+
{
|
|
304
|
+
name: 'namespace',
|
|
305
|
+
short: 'n',
|
|
306
|
+
description: 'Filter by namespace',
|
|
307
|
+
type: 'string'
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
name: 'tags',
|
|
311
|
+
short: 't',
|
|
312
|
+
description: 'Filter by tags (comma-separated)',
|
|
313
|
+
type: 'string'
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
name: 'limit',
|
|
317
|
+
short: 'l',
|
|
318
|
+
description: 'Maximum entries',
|
|
319
|
+
type: 'number',
|
|
320
|
+
default: 20
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
action: async (ctx) => {
|
|
324
|
+
const namespace = ctx.flags.namespace;
|
|
325
|
+
const limit = ctx.flags.limit;
|
|
326
|
+
// Call MCP memory/list tool for real entries
|
|
327
|
+
try {
|
|
328
|
+
const listResult = await callMCPTool('memory/list', { limit, offset: 0 });
|
|
329
|
+
// Format entries for display
|
|
330
|
+
const entries = listResult.entries.map(e => ({
|
|
331
|
+
key: e.key,
|
|
332
|
+
namespace: namespace || 'default',
|
|
333
|
+
size: e.preview.length + ' B',
|
|
334
|
+
accessCount: e.accessCount,
|
|
335
|
+
updated: formatRelativeTime(e.storedAt)
|
|
336
|
+
}));
|
|
337
|
+
if (ctx.flags.format === 'json') {
|
|
338
|
+
output.printJson(entries);
|
|
339
|
+
return { success: true, data: entries };
|
|
340
|
+
}
|
|
341
|
+
output.writeln();
|
|
342
|
+
output.writeln(output.bold('Memory Entries'));
|
|
343
|
+
output.writeln();
|
|
344
|
+
if (entries.length === 0) {
|
|
345
|
+
output.printWarning('No entries found');
|
|
346
|
+
return { success: true, data: [] };
|
|
347
|
+
}
|
|
348
|
+
output.printTable({
|
|
349
|
+
columns: [
|
|
350
|
+
{ key: 'key', header: 'Key', width: 25 },
|
|
351
|
+
{ key: 'namespace', header: 'Namespace', width: 12 },
|
|
352
|
+
{ key: 'size', header: 'Size', width: 10, align: 'right' },
|
|
353
|
+
{ key: 'accessCount', header: 'Accessed', width: 10, align: 'right' },
|
|
354
|
+
{ key: 'updated', header: 'Updated', width: 12 }
|
|
355
|
+
],
|
|
356
|
+
data: entries
|
|
357
|
+
});
|
|
358
|
+
output.writeln();
|
|
359
|
+
output.printInfo(`Showing ${entries.length} of ${listResult.total} entries`);
|
|
360
|
+
return { success: true, data: entries };
|
|
361
|
+
}
|
|
362
|
+
catch (error) {
|
|
363
|
+
output.printError(`Failed to list: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
364
|
+
return { success: false, exitCode: 1 };
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
};
|
|
368
|
+
// Helper function to format relative time
|
|
369
|
+
function formatRelativeTime(isoDate) {
|
|
370
|
+
const now = Date.now();
|
|
371
|
+
const date = new Date(isoDate).getTime();
|
|
372
|
+
const diff = now - date;
|
|
373
|
+
const seconds = Math.floor(diff / 1000);
|
|
374
|
+
const minutes = Math.floor(seconds / 60);
|
|
375
|
+
const hours = Math.floor(minutes / 60);
|
|
376
|
+
const days = Math.floor(hours / 24);
|
|
377
|
+
if (days > 0)
|
|
378
|
+
return `${days}d ago`;
|
|
379
|
+
if (hours > 0)
|
|
380
|
+
return `${hours}h ago`;
|
|
381
|
+
if (minutes > 0)
|
|
382
|
+
return `${minutes}m ago`;
|
|
383
|
+
return 'just now';
|
|
384
|
+
}
|
|
385
|
+
// Delete command
|
|
386
|
+
const deleteCommand = {
|
|
387
|
+
name: 'delete',
|
|
388
|
+
aliases: ['rm'],
|
|
389
|
+
description: 'Delete memory entry',
|
|
390
|
+
options: [
|
|
391
|
+
{
|
|
392
|
+
name: 'force',
|
|
393
|
+
short: 'f',
|
|
394
|
+
description: 'Skip confirmation',
|
|
395
|
+
type: 'boolean',
|
|
396
|
+
default: false
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
action: async (ctx) => {
|
|
400
|
+
const key = ctx.args[0];
|
|
401
|
+
const force = ctx.flags.force;
|
|
402
|
+
if (!key) {
|
|
403
|
+
output.printError('Key is required');
|
|
404
|
+
return { success: false, exitCode: 1 };
|
|
405
|
+
}
|
|
406
|
+
if (!force && ctx.interactive) {
|
|
407
|
+
const confirmed = await confirm({
|
|
408
|
+
message: `Delete memory entry "${key}"?`,
|
|
409
|
+
default: false
|
|
410
|
+
});
|
|
411
|
+
if (!confirmed) {
|
|
412
|
+
output.printInfo('Operation cancelled');
|
|
413
|
+
return { success: true };
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
// Call MCP memory/delete tool
|
|
417
|
+
try {
|
|
418
|
+
const result = await callMCPTool('memory/delete', { key });
|
|
419
|
+
if (result.deleted) {
|
|
420
|
+
output.printSuccess(`Deleted ${key}`);
|
|
421
|
+
output.printInfo(`Remaining entries: ${result.remainingEntries}`);
|
|
422
|
+
}
|
|
423
|
+
else {
|
|
424
|
+
output.printWarning(`Key not found: ${key}`);
|
|
425
|
+
}
|
|
426
|
+
return { success: result.deleted, data: result };
|
|
427
|
+
}
|
|
428
|
+
catch (error) {
|
|
429
|
+
output.printError(`Failed to delete: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
430
|
+
return { success: false, exitCode: 1 };
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
};
|
|
434
|
+
// Stats command
|
|
435
|
+
const statsCommand = {
|
|
436
|
+
name: 'stats',
|
|
437
|
+
description: 'Show memory statistics',
|
|
438
|
+
action: async (ctx) => {
|
|
439
|
+
// Call MCP memory/stats tool for real statistics
|
|
440
|
+
try {
|
|
441
|
+
const statsResult = await callMCPTool('memory/stats', {});
|
|
442
|
+
const stats = {
|
|
443
|
+
backend: statsResult.backend,
|
|
444
|
+
entries: {
|
|
445
|
+
total: statsResult.totalEntries,
|
|
446
|
+
vectors: 0, // Would need vector backend support
|
|
447
|
+
text: statsResult.totalEntries
|
|
448
|
+
},
|
|
449
|
+
storage: {
|
|
450
|
+
total: statsResult.totalSize,
|
|
451
|
+
location: statsResult.location
|
|
452
|
+
},
|
|
453
|
+
version: statsResult.version,
|
|
454
|
+
oldestEntry: statsResult.oldestEntry,
|
|
455
|
+
newestEntry: statsResult.newestEntry
|
|
456
|
+
};
|
|
457
|
+
if (ctx.flags.format === 'json') {
|
|
458
|
+
output.printJson(stats);
|
|
459
|
+
return { success: true, data: stats };
|
|
460
|
+
}
|
|
461
|
+
output.writeln();
|
|
462
|
+
output.writeln(output.bold('Memory Statistics'));
|
|
463
|
+
output.writeln();
|
|
464
|
+
output.writeln(output.bold('Overview'));
|
|
465
|
+
output.printTable({
|
|
466
|
+
columns: [
|
|
467
|
+
{ key: 'metric', header: 'Metric', width: 20 },
|
|
468
|
+
{ key: 'value', header: 'Value', width: 30, align: 'right' }
|
|
469
|
+
],
|
|
470
|
+
data: [
|
|
471
|
+
{ metric: 'Backend', value: stats.backend },
|
|
472
|
+
{ metric: 'Version', value: stats.version },
|
|
473
|
+
{ metric: 'Total Entries', value: stats.entries.total.toLocaleString() },
|
|
474
|
+
{ metric: 'Total Storage', value: stats.storage.total },
|
|
475
|
+
{ metric: 'Location', value: stats.storage.location }
|
|
476
|
+
]
|
|
477
|
+
});
|
|
478
|
+
output.writeln();
|
|
479
|
+
output.writeln(output.bold('Timeline'));
|
|
480
|
+
output.printTable({
|
|
481
|
+
columns: [
|
|
482
|
+
{ key: 'metric', header: 'Metric', width: 20 },
|
|
483
|
+
{ key: 'value', header: 'Value', width: 30, align: 'right' }
|
|
484
|
+
],
|
|
485
|
+
data: [
|
|
486
|
+
{ metric: 'Oldest Entry', value: stats.oldestEntry || 'N/A' },
|
|
487
|
+
{ metric: 'Newest Entry', value: stats.newestEntry || 'N/A' }
|
|
488
|
+
]
|
|
489
|
+
});
|
|
490
|
+
output.writeln();
|
|
491
|
+
output.printInfo('V3 Performance: 150x-12,500x faster search with HNSW indexing');
|
|
492
|
+
return { success: true, data: stats };
|
|
493
|
+
}
|
|
494
|
+
catch (error) {
|
|
495
|
+
output.printError(`Failed to get stats: ${error instanceof Error ? error.message : 'Unknown error'}`);
|
|
496
|
+
return { success: false, exitCode: 1 };
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
};
|
|
500
|
+
// Configure command
|
|
501
|
+
const configureCommand = {
|
|
502
|
+
name: 'configure',
|
|
503
|
+
aliases: ['config'],
|
|
504
|
+
description: 'Configure memory backend',
|
|
505
|
+
options: [
|
|
506
|
+
{
|
|
507
|
+
name: 'backend',
|
|
508
|
+
short: 'b',
|
|
509
|
+
description: 'Memory backend',
|
|
510
|
+
type: 'string',
|
|
511
|
+
choices: BACKENDS.map(b => b.value)
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
name: 'path',
|
|
515
|
+
description: 'Storage path',
|
|
516
|
+
type: 'string'
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
name: 'cache-size',
|
|
520
|
+
description: 'Cache size in MB',
|
|
521
|
+
type: 'number'
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
name: 'hnsw-m',
|
|
525
|
+
description: 'HNSW M parameter',
|
|
526
|
+
type: 'number',
|
|
527
|
+
default: 16
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
name: 'hnsw-ef',
|
|
531
|
+
description: 'HNSW ef parameter',
|
|
532
|
+
type: 'number',
|
|
533
|
+
default: 200
|
|
534
|
+
}
|
|
535
|
+
],
|
|
536
|
+
action: async (ctx) => {
|
|
537
|
+
let backend = ctx.flags.backend;
|
|
538
|
+
if (!backend && ctx.interactive) {
|
|
539
|
+
backend = await select({
|
|
540
|
+
message: 'Select memory backend:',
|
|
541
|
+
options: BACKENDS,
|
|
542
|
+
default: 'hybrid'
|
|
543
|
+
});
|
|
544
|
+
}
|
|
545
|
+
const config = {
|
|
546
|
+
backend: backend || 'hybrid',
|
|
547
|
+
path: ctx.flags.path || './data/memory',
|
|
548
|
+
cacheSize: ctx.flags.cacheSize || 256,
|
|
549
|
+
hnsw: {
|
|
550
|
+
m: ctx.flags.hnswM || 16,
|
|
551
|
+
ef: ctx.flags.hnswEf || 200
|
|
552
|
+
}
|
|
553
|
+
};
|
|
554
|
+
output.writeln();
|
|
555
|
+
output.printInfo('Memory Configuration');
|
|
556
|
+
output.writeln();
|
|
557
|
+
output.printTable({
|
|
558
|
+
columns: [
|
|
559
|
+
{ key: 'setting', header: 'Setting', width: 20 },
|
|
560
|
+
{ key: 'value', header: 'Value', width: 25 }
|
|
561
|
+
],
|
|
562
|
+
data: [
|
|
563
|
+
{ setting: 'Backend', value: config.backend },
|
|
564
|
+
{ setting: 'Storage Path', value: config.path },
|
|
565
|
+
{ setting: 'Cache Size', value: `${config.cacheSize} MB` },
|
|
566
|
+
{ setting: 'HNSW M', value: config.hnsw.m },
|
|
567
|
+
{ setting: 'HNSW ef', value: config.hnsw.ef }
|
|
568
|
+
]
|
|
569
|
+
});
|
|
570
|
+
output.writeln();
|
|
571
|
+
output.printSuccess('Memory configuration updated');
|
|
572
|
+
return { success: true, data: config };
|
|
573
|
+
}
|
|
574
|
+
};
|
|
575
|
+
// Cleanup command
|
|
576
|
+
const cleanupCommand = {
|
|
577
|
+
name: 'cleanup',
|
|
578
|
+
description: 'Clean up stale and expired memory entries',
|
|
579
|
+
options: [
|
|
580
|
+
{
|
|
581
|
+
name: 'dry-run',
|
|
582
|
+
short: 'd',
|
|
583
|
+
description: 'Show what would be deleted',
|
|
584
|
+
type: 'boolean',
|
|
585
|
+
default: false
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
name: 'older-than',
|
|
589
|
+
short: 'o',
|
|
590
|
+
description: 'Delete entries older than (e.g., "7d", "30d")',
|
|
591
|
+
type: 'string'
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
name: 'expired-only',
|
|
595
|
+
short: 'e',
|
|
596
|
+
description: 'Only delete expired TTL entries',
|
|
597
|
+
type: 'boolean',
|
|
598
|
+
default: false
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
name: 'low-quality',
|
|
602
|
+
short: 'l',
|
|
603
|
+
description: 'Delete low quality patterns (threshold)',
|
|
604
|
+
type: 'number'
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
name: 'namespace',
|
|
608
|
+
short: 'n',
|
|
609
|
+
description: 'Clean specific namespace only',
|
|
610
|
+
type: 'string'
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
name: 'force',
|
|
614
|
+
short: 'f',
|
|
615
|
+
description: 'Skip confirmation',
|
|
616
|
+
type: 'boolean',
|
|
617
|
+
default: false
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
examples: [
|
|
621
|
+
{ command: 'claude-flow memory cleanup --dry-run', description: 'Preview cleanup' },
|
|
622
|
+
{ command: 'claude-flow memory cleanup --older-than 30d', description: 'Delete entries older than 30 days' },
|
|
623
|
+
{ command: 'claude-flow memory cleanup --expired-only', description: 'Clean expired entries' }
|
|
624
|
+
],
|
|
625
|
+
action: async (ctx) => {
|
|
626
|
+
const dryRun = ctx.flags.dryRun;
|
|
627
|
+
const force = ctx.flags.force;
|
|
628
|
+
if (dryRun) {
|
|
629
|
+
output.writeln(output.warning('DRY RUN - No changes will be made'));
|
|
630
|
+
}
|
|
631
|
+
output.printInfo('Analyzing memory for cleanup...');
|
|
632
|
+
try {
|
|
633
|
+
const result = await callMCPTool('memory/cleanup', {
|
|
634
|
+
dryRun,
|
|
635
|
+
olderThan: ctx.flags.olderThan,
|
|
636
|
+
expiredOnly: ctx.flags.expiredOnly,
|
|
637
|
+
lowQualityThreshold: ctx.flags.lowQuality,
|
|
638
|
+
namespace: ctx.flags.namespace,
|
|
639
|
+
});
|
|
640
|
+
if (ctx.flags.format === 'json') {
|
|
641
|
+
output.printJson(result);
|
|
642
|
+
return { success: true, data: result };
|
|
643
|
+
}
|
|
644
|
+
output.writeln();
|
|
645
|
+
output.writeln(output.bold('Cleanup Analysis'));
|
|
646
|
+
output.printTable({
|
|
647
|
+
columns: [
|
|
648
|
+
{ key: 'category', header: 'Category', width: 20 },
|
|
649
|
+
{ key: 'count', header: 'Count', width: 15, align: 'right' }
|
|
650
|
+
],
|
|
651
|
+
data: [
|
|
652
|
+
{ category: 'Expired (TTL)', count: result.candidates.expired },
|
|
653
|
+
{ category: 'Stale (unused)', count: result.candidates.stale },
|
|
654
|
+
{ category: 'Low Quality', count: result.candidates.lowQuality },
|
|
655
|
+
{ category: output.bold('Total'), count: output.bold(String(result.candidates.total)) }
|
|
656
|
+
]
|
|
657
|
+
});
|
|
658
|
+
if (!dryRun && result.candidates.total > 0 && !force) {
|
|
659
|
+
const confirmed = await confirm({
|
|
660
|
+
message: `Delete ${result.candidates.total} entries (${result.freed.formatted})?`,
|
|
661
|
+
default: false
|
|
662
|
+
});
|
|
663
|
+
if (!confirmed) {
|
|
664
|
+
output.printInfo('Cleanup cancelled');
|
|
665
|
+
return { success: true, data: result };
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
if (!dryRun) {
|
|
669
|
+
output.writeln();
|
|
670
|
+
output.printSuccess(`Cleaned ${result.deleted.entries} entries`);
|
|
671
|
+
output.printList([
|
|
672
|
+
`Vectors removed: ${result.deleted.vectors}`,
|
|
673
|
+
`Patterns removed: ${result.deleted.patterns}`,
|
|
674
|
+
`Space freed: ${result.freed.formatted}`,
|
|
675
|
+
`Duration: ${result.duration}ms`
|
|
676
|
+
]);
|
|
677
|
+
}
|
|
678
|
+
return { success: true, data: result };
|
|
679
|
+
}
|
|
680
|
+
catch (error) {
|
|
681
|
+
if (error instanceof MCPClientError) {
|
|
682
|
+
output.printError(`Cleanup error: ${error.message}`);
|
|
683
|
+
}
|
|
684
|
+
else {
|
|
685
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
686
|
+
}
|
|
687
|
+
return { success: false, exitCode: 1 };
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
};
|
|
691
|
+
// Compress command
|
|
692
|
+
const compressCommand = {
|
|
693
|
+
name: 'compress',
|
|
694
|
+
description: 'Compress and optimize memory storage',
|
|
695
|
+
options: [
|
|
696
|
+
{
|
|
697
|
+
name: 'level',
|
|
698
|
+
short: 'l',
|
|
699
|
+
description: 'Compression level (fast, balanced, max)',
|
|
700
|
+
type: 'string',
|
|
701
|
+
choices: ['fast', 'balanced', 'max'],
|
|
702
|
+
default: 'balanced'
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
name: 'target',
|
|
706
|
+
short: 't',
|
|
707
|
+
description: 'Target (vectors, text, patterns, all)',
|
|
708
|
+
type: 'string',
|
|
709
|
+
choices: ['vectors', 'text', 'patterns', 'all'],
|
|
710
|
+
default: 'all'
|
|
711
|
+
},
|
|
712
|
+
{
|
|
713
|
+
name: 'quantize',
|
|
714
|
+
short: 'q',
|
|
715
|
+
description: 'Enable vector quantization (reduces memory 4-32x)',
|
|
716
|
+
type: 'boolean',
|
|
717
|
+
default: false
|
|
718
|
+
},
|
|
719
|
+
{
|
|
720
|
+
name: 'bits',
|
|
721
|
+
description: 'Quantization bits (4, 8, 16)',
|
|
722
|
+
type: 'number',
|
|
723
|
+
default: 8
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
name: 'rebuild-index',
|
|
727
|
+
short: 'r',
|
|
728
|
+
description: 'Rebuild HNSW index after compression',
|
|
729
|
+
type: 'boolean',
|
|
730
|
+
default: true
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
examples: [
|
|
734
|
+
{ command: 'claude-flow memory compress', description: 'Balanced compression' },
|
|
735
|
+
{ command: 'claude-flow memory compress --quantize --bits 4', description: '4-bit quantization (32x reduction)' },
|
|
736
|
+
{ command: 'claude-flow memory compress -l max -t vectors', description: 'Max compression on vectors' }
|
|
737
|
+
],
|
|
738
|
+
action: async (ctx) => {
|
|
739
|
+
const level = ctx.flags.level || 'balanced';
|
|
740
|
+
const target = ctx.flags.target || 'all';
|
|
741
|
+
const quantize = ctx.flags.quantize;
|
|
742
|
+
const bits = ctx.flags.bits || 8;
|
|
743
|
+
const rebuildIndex = ctx.flags.rebuildIndex ?? true;
|
|
744
|
+
output.writeln();
|
|
745
|
+
output.writeln(output.bold('Memory Compression'));
|
|
746
|
+
output.writeln(output.dim(`Level: ${level}, Target: ${target}, Quantize: ${quantize ? `${bits}-bit` : 'no'}`));
|
|
747
|
+
output.writeln();
|
|
748
|
+
const spinner = output.createSpinner({ text: 'Analyzing current storage...', spinner: 'dots' });
|
|
749
|
+
spinner.start();
|
|
750
|
+
try {
|
|
751
|
+
const result = await callMCPTool('memory/compress', {
|
|
752
|
+
level,
|
|
753
|
+
target,
|
|
754
|
+
quantize,
|
|
755
|
+
bits,
|
|
756
|
+
rebuildIndex,
|
|
757
|
+
});
|
|
758
|
+
spinner.succeed('Compression complete');
|
|
759
|
+
if (ctx.flags.format === 'json') {
|
|
760
|
+
output.printJson(result);
|
|
761
|
+
return { success: true, data: result };
|
|
762
|
+
}
|
|
763
|
+
output.writeln();
|
|
764
|
+
output.writeln(output.bold('Storage Comparison'));
|
|
765
|
+
output.printTable({
|
|
766
|
+
columns: [
|
|
767
|
+
{ key: 'category', header: 'Category', width: 15 },
|
|
768
|
+
{ key: 'before', header: 'Before', width: 12, align: 'right' },
|
|
769
|
+
{ key: 'after', header: 'After', width: 12, align: 'right' },
|
|
770
|
+
{ key: 'saved', header: 'Saved', width: 12, align: 'right' }
|
|
771
|
+
],
|
|
772
|
+
data: [
|
|
773
|
+
{ category: 'Vectors', before: result.before.vectorsSize, after: result.after.vectorsSize, saved: '-' },
|
|
774
|
+
{ category: 'Text', before: result.before.textSize, after: result.after.textSize, saved: '-' },
|
|
775
|
+
{ category: 'Patterns', before: result.before.patternsSize, after: result.after.patternsSize, saved: '-' },
|
|
776
|
+
{ category: 'Index', before: result.before.indexSize, after: result.after.indexSize, saved: '-' },
|
|
777
|
+
{ category: output.bold('Total'), before: result.before.totalSize, after: result.after.totalSize, saved: output.success(result.compression.formattedSaved) }
|
|
778
|
+
]
|
|
779
|
+
});
|
|
780
|
+
output.writeln();
|
|
781
|
+
output.printBox([
|
|
782
|
+
`Compression Ratio: ${result.compression.ratio.toFixed(2)}x`,
|
|
783
|
+
`Space Saved: ${result.compression.formattedSaved}`,
|
|
784
|
+
`Quantization: ${result.compression.quantizationApplied ? `Yes (${bits}-bit)` : 'No'}`,
|
|
785
|
+
`Index Rebuilt: ${result.compression.indexRebuilt ? 'Yes' : 'No'}`,
|
|
786
|
+
`Duration: ${(result.duration / 1000).toFixed(1)}s`
|
|
787
|
+
].join('\n'), 'Results');
|
|
788
|
+
if (result.performance) {
|
|
789
|
+
output.writeln();
|
|
790
|
+
output.writeln(output.bold('Performance Impact'));
|
|
791
|
+
output.printList([
|
|
792
|
+
`Search latency: ${result.performance.searchLatencyBefore.toFixed(2)}ms → ${result.performance.searchLatencyAfter.toFixed(2)}ms`,
|
|
793
|
+
`Speedup: ${output.success(result.performance.searchSpeedup)}`
|
|
794
|
+
]);
|
|
795
|
+
}
|
|
796
|
+
return { success: true, data: result };
|
|
797
|
+
}
|
|
798
|
+
catch (error) {
|
|
799
|
+
spinner.fail('Compression failed');
|
|
800
|
+
if (error instanceof MCPClientError) {
|
|
801
|
+
output.printError(`Compression error: ${error.message}`);
|
|
802
|
+
}
|
|
803
|
+
else {
|
|
804
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
805
|
+
}
|
|
806
|
+
return { success: false, exitCode: 1 };
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
};
|
|
810
|
+
// Export command
|
|
811
|
+
const exportCommand = {
|
|
812
|
+
name: 'export',
|
|
813
|
+
description: 'Export memory to file',
|
|
814
|
+
options: [
|
|
815
|
+
{
|
|
816
|
+
name: 'output',
|
|
817
|
+
short: 'o',
|
|
818
|
+
description: 'Output file path',
|
|
819
|
+
type: 'string',
|
|
820
|
+
required: true
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
name: 'format',
|
|
824
|
+
short: 'f',
|
|
825
|
+
description: 'Export format (json, csv, binary)',
|
|
826
|
+
type: 'string',
|
|
827
|
+
choices: ['json', 'csv', 'binary'],
|
|
828
|
+
default: 'json'
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
name: 'namespace',
|
|
832
|
+
short: 'n',
|
|
833
|
+
description: 'Export specific namespace',
|
|
834
|
+
type: 'string'
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
name: 'include-vectors',
|
|
838
|
+
description: 'Include vector embeddings',
|
|
839
|
+
type: 'boolean',
|
|
840
|
+
default: true
|
|
841
|
+
}
|
|
842
|
+
],
|
|
843
|
+
examples: [
|
|
844
|
+
{ command: 'claude-flow memory export -o ./backup.json', description: 'Export all to JSON' },
|
|
845
|
+
{ command: 'claude-flow memory export -o ./data.csv -f csv', description: 'Export to CSV' }
|
|
846
|
+
],
|
|
847
|
+
action: async (ctx) => {
|
|
848
|
+
const outputPath = ctx.flags.output;
|
|
849
|
+
const format = ctx.flags.format || 'json';
|
|
850
|
+
if (!outputPath) {
|
|
851
|
+
output.printError('Output path is required. Use --output or -o');
|
|
852
|
+
return { success: false, exitCode: 1 };
|
|
853
|
+
}
|
|
854
|
+
output.printInfo(`Exporting memory to ${outputPath}...`);
|
|
855
|
+
try {
|
|
856
|
+
const result = await callMCPTool('memory/export', {
|
|
857
|
+
outputPath,
|
|
858
|
+
format,
|
|
859
|
+
namespace: ctx.flags.namespace,
|
|
860
|
+
includeVectors: ctx.flags.includeVectors ?? true,
|
|
861
|
+
});
|
|
862
|
+
output.printSuccess(`Exported to ${result.outputPath}`);
|
|
863
|
+
output.printList([
|
|
864
|
+
`Entries: ${result.exported.entries}`,
|
|
865
|
+
`Vectors: ${result.exported.vectors}`,
|
|
866
|
+
`Patterns: ${result.exported.patterns}`,
|
|
867
|
+
`File size: ${result.fileSize}`
|
|
868
|
+
]);
|
|
869
|
+
return { success: true, data: result };
|
|
870
|
+
}
|
|
871
|
+
catch (error) {
|
|
872
|
+
if (error instanceof MCPClientError) {
|
|
873
|
+
output.printError(`Export error: ${error.message}`);
|
|
874
|
+
}
|
|
875
|
+
else {
|
|
876
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
877
|
+
}
|
|
878
|
+
return { success: false, exitCode: 1 };
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
};
|
|
882
|
+
// Import command
|
|
883
|
+
const importCommand = {
|
|
884
|
+
name: 'import',
|
|
885
|
+
description: 'Import memory from file',
|
|
886
|
+
options: [
|
|
887
|
+
{
|
|
888
|
+
name: 'input',
|
|
889
|
+
short: 'i',
|
|
890
|
+
description: 'Input file path',
|
|
891
|
+
type: 'string',
|
|
892
|
+
required: true
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
name: 'merge',
|
|
896
|
+
short: 'm',
|
|
897
|
+
description: 'Merge with existing (skip duplicates)',
|
|
898
|
+
type: 'boolean',
|
|
899
|
+
default: true
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
name: 'namespace',
|
|
903
|
+
short: 'n',
|
|
904
|
+
description: 'Import into specific namespace',
|
|
905
|
+
type: 'string'
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
examples: [
|
|
909
|
+
{ command: 'claude-flow memory import -i ./backup.json', description: 'Import from file' },
|
|
910
|
+
{ command: 'claude-flow memory import -i ./data.json -n archive', description: 'Import to namespace' }
|
|
911
|
+
],
|
|
912
|
+
action: async (ctx) => {
|
|
913
|
+
const inputPath = ctx.flags.input || ctx.args[0];
|
|
914
|
+
if (!inputPath) {
|
|
915
|
+
output.printError('Input path is required. Use --input or -i');
|
|
916
|
+
return { success: false, exitCode: 1 };
|
|
917
|
+
}
|
|
918
|
+
output.printInfo(`Importing memory from ${inputPath}...`);
|
|
919
|
+
try {
|
|
920
|
+
const result = await callMCPTool('memory/import', {
|
|
921
|
+
inputPath,
|
|
922
|
+
merge: ctx.flags.merge ?? true,
|
|
923
|
+
namespace: ctx.flags.namespace,
|
|
924
|
+
});
|
|
925
|
+
output.printSuccess(`Imported from ${result.inputPath}`);
|
|
926
|
+
output.printList([
|
|
927
|
+
`Entries: ${result.imported.entries}`,
|
|
928
|
+
`Vectors: ${result.imported.vectors}`,
|
|
929
|
+
`Patterns: ${result.imported.patterns}`,
|
|
930
|
+
`Skipped (duplicates): ${result.skipped}`,
|
|
931
|
+
`Duration: ${result.duration}ms`
|
|
932
|
+
]);
|
|
933
|
+
return { success: true, data: result };
|
|
934
|
+
}
|
|
935
|
+
catch (error) {
|
|
936
|
+
if (error instanceof MCPClientError) {
|
|
937
|
+
output.printError(`Import error: ${error.message}`);
|
|
938
|
+
}
|
|
939
|
+
else {
|
|
940
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
941
|
+
}
|
|
942
|
+
return { success: false, exitCode: 1 };
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
};
|
|
946
|
+
// Init subcommand - initialize memory database using sql.js
|
|
947
|
+
const initMemoryCommand = {
|
|
948
|
+
name: 'init',
|
|
949
|
+
description: 'Initialize memory database with sql.js (WASM SQLite)',
|
|
950
|
+
options: [
|
|
951
|
+
{
|
|
952
|
+
name: 'backend',
|
|
953
|
+
short: 'b',
|
|
954
|
+
description: 'Backend type: sqlite (default), hybrid, or agentdb',
|
|
955
|
+
type: 'string',
|
|
956
|
+
default: 'sqlite'
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
name: 'path',
|
|
960
|
+
short: 'p',
|
|
961
|
+
description: 'Database path',
|
|
962
|
+
type: 'string'
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
name: 'force',
|
|
966
|
+
short: 'f',
|
|
967
|
+
description: 'Overwrite existing database',
|
|
968
|
+
type: 'boolean',
|
|
969
|
+
default: false
|
|
970
|
+
}
|
|
971
|
+
],
|
|
972
|
+
examples: [
|
|
973
|
+
{ command: 'claude-flow memory init', description: 'Initialize default SQLite database' },
|
|
974
|
+
{ command: 'claude-flow memory init -b hybrid', description: 'Initialize hybrid backend' },
|
|
975
|
+
{ command: 'claude-flow memory init -p ./data/memory.db', description: 'Custom path' }
|
|
976
|
+
],
|
|
977
|
+
action: async (ctx) => {
|
|
978
|
+
const backend = ctx.flags.backend || 'sqlite';
|
|
979
|
+
const customPath = ctx.flags.path;
|
|
980
|
+
const force = ctx.flags.force;
|
|
981
|
+
const fs = await import('fs');
|
|
982
|
+
const path = await import('path');
|
|
983
|
+
// Determine database paths
|
|
984
|
+
const swarmDir = path.join(process.cwd(), '.swarm');
|
|
985
|
+
const claudeDir = path.join(process.cwd(), '.claude');
|
|
986
|
+
const dbPath = customPath || path.join(swarmDir, 'memory.db');
|
|
987
|
+
const dbDir = path.dirname(dbPath);
|
|
988
|
+
// Check if already exists
|
|
989
|
+
if (fs.existsSync(dbPath) && !force) {
|
|
990
|
+
output.printWarning(`Memory database already exists at ${dbPath}`);
|
|
991
|
+
output.printInfo('Use --force to reinitialize');
|
|
992
|
+
return { success: false, exitCode: 1 };
|
|
993
|
+
}
|
|
994
|
+
output.printInfo(`Initializing ${backend} memory backend...`);
|
|
995
|
+
try {
|
|
996
|
+
// Create directories
|
|
997
|
+
if (!fs.existsSync(dbDir)) {
|
|
998
|
+
fs.mkdirSync(dbDir, { recursive: true });
|
|
999
|
+
output.writeln(output.dim(` Created directory: ${dbDir}`));
|
|
1000
|
+
}
|
|
1001
|
+
// Initialize database using sql.js (WASM SQLite)
|
|
1002
|
+
output.writeln(output.dim(' Using sql.js (WASM SQLite - cross-platform, no native compilation)'));
|
|
1003
|
+
// Create basic schema
|
|
1004
|
+
const schema = `
|
|
1005
|
+
-- Claude Flow V3 Memory Database
|
|
1006
|
+
-- Backend: ${backend}
|
|
1007
|
+
-- Created: ${new Date().toISOString()}
|
|
1008
|
+
|
|
1009
|
+
-- Core memory entries
|
|
1010
|
+
CREATE TABLE IF NOT EXISTS memory_entries (
|
|
1011
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
1012
|
+
key TEXT NOT NULL UNIQUE,
|
|
1013
|
+
value TEXT NOT NULL,
|
|
1014
|
+
namespace TEXT DEFAULT 'default',
|
|
1015
|
+
type TEXT DEFAULT 'text',
|
|
1016
|
+
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
1017
|
+
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
1018
|
+
expires_at DATETIME,
|
|
1019
|
+
metadata TEXT
|
|
1020
|
+
);
|
|
1021
|
+
|
|
1022
|
+
-- Vector embeddings for semantic search
|
|
1023
|
+
CREATE TABLE IF NOT EXISTS vectors (
|
|
1024
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
1025
|
+
entry_id INTEGER REFERENCES memory_entries(id),
|
|
1026
|
+
embedding BLOB NOT NULL,
|
|
1027
|
+
dimension INTEGER NOT NULL,
|
|
1028
|
+
model TEXT DEFAULT 'local',
|
|
1029
|
+
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
1030
|
+
);
|
|
1031
|
+
|
|
1032
|
+
-- Patterns for learning
|
|
1033
|
+
CREATE TABLE IF NOT EXISTS patterns (
|
|
1034
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
1035
|
+
pattern_type TEXT NOT NULL,
|
|
1036
|
+
pattern_data TEXT NOT NULL,
|
|
1037
|
+
confidence REAL DEFAULT 0.5,
|
|
1038
|
+
usage_count INTEGER DEFAULT 0,
|
|
1039
|
+
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
1040
|
+
last_used_at DATETIME
|
|
1041
|
+
);
|
|
1042
|
+
|
|
1043
|
+
-- Sessions for context persistence
|
|
1044
|
+
CREATE TABLE IF NOT EXISTS sessions (
|
|
1045
|
+
id TEXT PRIMARY KEY,
|
|
1046
|
+
state TEXT NOT NULL,
|
|
1047
|
+
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
|
|
1048
|
+
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
1049
|
+
);
|
|
1050
|
+
|
|
1051
|
+
-- Learning trajectories
|
|
1052
|
+
CREATE TABLE IF NOT EXISTS trajectories (
|
|
1053
|
+
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
1054
|
+
session_id TEXT,
|
|
1055
|
+
action TEXT NOT NULL,
|
|
1056
|
+
outcome TEXT,
|
|
1057
|
+
reward REAL DEFAULT 0,
|
|
1058
|
+
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
1059
|
+
);
|
|
1060
|
+
|
|
1061
|
+
-- Indexes for performance
|
|
1062
|
+
CREATE INDEX IF NOT EXISTS idx_memory_namespace ON memory_entries(namespace);
|
|
1063
|
+
CREATE INDEX IF NOT EXISTS idx_memory_key ON memory_entries(key);
|
|
1064
|
+
CREATE INDEX IF NOT EXISTS idx_patterns_type ON patterns(pattern_type);
|
|
1065
|
+
CREATE INDEX IF NOT EXISTS idx_trajectories_session ON trajectories(session_id);
|
|
1066
|
+
|
|
1067
|
+
-- Metadata table
|
|
1068
|
+
CREATE TABLE IF NOT EXISTS metadata (
|
|
1069
|
+
key TEXT PRIMARY KEY,
|
|
1070
|
+
value TEXT NOT NULL
|
|
1071
|
+
);
|
|
1072
|
+
|
|
1073
|
+
INSERT OR REPLACE INTO metadata (key, value) VALUES
|
|
1074
|
+
('version', '3.0.0'),
|
|
1075
|
+
('backend', '${backend}'),
|
|
1076
|
+
('created_at', '${new Date().toISOString()}'),
|
|
1077
|
+
('sql_js', 'true');
|
|
1078
|
+
`;
|
|
1079
|
+
// Write schema to temp file for initialization
|
|
1080
|
+
const schemaPath = path.join(dbDir, 'schema.sql');
|
|
1081
|
+
fs.writeFileSync(schemaPath, schema);
|
|
1082
|
+
// Create empty database file (sql.js will initialize it on first use)
|
|
1083
|
+
if (force && fs.existsSync(dbPath)) {
|
|
1084
|
+
fs.unlinkSync(dbPath);
|
|
1085
|
+
}
|
|
1086
|
+
// Write minimal SQLite header to create valid empty database
|
|
1087
|
+
// sql.js will properly initialize the schema on first connection
|
|
1088
|
+
const sqliteHeader = Buffer.from([
|
|
1089
|
+
0x53, 0x51, 0x4C, 0x69, 0x74, 0x65, 0x20, 0x66, 0x6F, 0x72, 0x6D, 0x61, 0x74, 0x20, 0x33, 0x00, // "SQLite format 3\0"
|
|
1090
|
+
0x10, 0x00, // page size: 4096 bytes
|
|
1091
|
+
0x01, // file format write version
|
|
1092
|
+
0x01, // file format read version
|
|
1093
|
+
0x00, // reserved space
|
|
1094
|
+
0x40, // max embedded payload fraction
|
|
1095
|
+
0x20, // min embedded payload fraction
|
|
1096
|
+
0x20, // leaf payload fraction
|
|
1097
|
+
0x00, 0x00, 0x00, 0x01, // file change counter
|
|
1098
|
+
0x00, 0x00, 0x00, 0x01, // database size in pages
|
|
1099
|
+
0x00, 0x00, 0x00, 0x00, // first freelist trunk page
|
|
1100
|
+
0x00, 0x00, 0x00, 0x00, // total freelist pages
|
|
1101
|
+
0x00, 0x00, 0x00, 0x01, // schema cookie
|
|
1102
|
+
0x00, 0x00, 0x00, 0x04, // schema format number
|
|
1103
|
+
0x00, 0x00, 0x00, 0x00, // default page cache size
|
|
1104
|
+
0x00, 0x00, 0x00, 0x00, // largest root btree page
|
|
1105
|
+
0x00, 0x00, 0x00, 0x01, // text encoding (1=UTF-8)
|
|
1106
|
+
0x00, 0x00, 0x00, 0x00, // user version
|
|
1107
|
+
0x00, 0x00, 0x00, 0x00, // incremental vacuum mode
|
|
1108
|
+
0x00, 0x00, 0x00, 0x00, // application id
|
|
1109
|
+
...Array(20).fill(0x00), // reserved for expansion
|
|
1110
|
+
0x00, 0x00, 0x00, 0x01, // version-valid-for number
|
|
1111
|
+
0x00, 0x2E, 0x32, 0x8F, // SQLite version number (3.46.1)
|
|
1112
|
+
]);
|
|
1113
|
+
// Pad to 4096 bytes (one page)
|
|
1114
|
+
const page = Buffer.alloc(4096, 0);
|
|
1115
|
+
sqliteHeader.copy(page);
|
|
1116
|
+
fs.writeFileSync(dbPath, page);
|
|
1117
|
+
// Also create in .claude directory for compatibility
|
|
1118
|
+
const claudeDbPath = path.join(claudeDir, 'memory.db');
|
|
1119
|
+
if (!fs.existsSync(claudeDir)) {
|
|
1120
|
+
fs.mkdirSync(claudeDir, { recursive: true });
|
|
1121
|
+
}
|
|
1122
|
+
if (!fs.existsSync(claudeDbPath)) {
|
|
1123
|
+
fs.copyFileSync(dbPath, claudeDbPath);
|
|
1124
|
+
output.writeln(output.dim(` Synced to: ${claudeDbPath}`));
|
|
1125
|
+
}
|
|
1126
|
+
output.writeln();
|
|
1127
|
+
output.printSuccess('Memory database initialized');
|
|
1128
|
+
output.writeln();
|
|
1129
|
+
output.printTable({
|
|
1130
|
+
columns: [
|
|
1131
|
+
{ key: 'property', header: 'Property', width: 15 },
|
|
1132
|
+
{ key: 'value', header: 'Value', width: 40 }
|
|
1133
|
+
],
|
|
1134
|
+
data: [
|
|
1135
|
+
{ property: 'Backend', value: backend },
|
|
1136
|
+
{ property: 'Path', value: dbPath },
|
|
1137
|
+
{ property: 'Engine', value: 'sql.js (WASM SQLite)' },
|
|
1138
|
+
{ property: 'Schema', value: schemaPath },
|
|
1139
|
+
{ property: 'Tables', value: '6 (memory_entries, vectors, patterns, sessions, trajectories, metadata)' }
|
|
1140
|
+
]
|
|
1141
|
+
});
|
|
1142
|
+
output.writeln();
|
|
1143
|
+
output.printInfo('Ready for use. Store data with: claude-flow memory store -k "key" --value "data"');
|
|
1144
|
+
return {
|
|
1145
|
+
success: true,
|
|
1146
|
+
data: {
|
|
1147
|
+
backend,
|
|
1148
|
+
path: dbPath,
|
|
1149
|
+
schemaPath,
|
|
1150
|
+
engine: 'sql.js'
|
|
1151
|
+
}
|
|
1152
|
+
};
|
|
1153
|
+
}
|
|
1154
|
+
catch (error) {
|
|
1155
|
+
output.printError(`Failed to initialize memory: ${error instanceof Error ? error.message : String(error)}`);
|
|
1156
|
+
return { success: false, exitCode: 1 };
|
|
1157
|
+
}
|
|
1158
|
+
}
|
|
1159
|
+
};
|
|
1160
|
+
// Main memory command
|
|
1161
|
+
export const memoryCommand = {
|
|
1162
|
+
name: 'memory',
|
|
1163
|
+
description: 'Memory management commands',
|
|
1164
|
+
subcommands: [initMemoryCommand, storeCommand, retrieveCommand, searchCommand, listCommand, deleteCommand, statsCommand, configureCommand, cleanupCommand, compressCommand, exportCommand, importCommand],
|
|
1165
|
+
options: [],
|
|
1166
|
+
examples: [
|
|
1167
|
+
{ command: 'claude-flow memory store -k "key" -v "value"', description: 'Store data' },
|
|
1168
|
+
{ command: 'claude-flow memory search -q "auth patterns"', description: 'Search memory' },
|
|
1169
|
+
{ command: 'claude-flow memory stats', description: 'Show statistics' }
|
|
1170
|
+
],
|
|
1171
|
+
action: async (ctx) => {
|
|
1172
|
+
output.writeln();
|
|
1173
|
+
output.writeln(output.bold('Memory Management Commands'));
|
|
1174
|
+
output.writeln();
|
|
1175
|
+
output.writeln('Usage: claude-flow memory <subcommand> [options]');
|
|
1176
|
+
output.writeln();
|
|
1177
|
+
output.writeln('Subcommands:');
|
|
1178
|
+
output.printList([
|
|
1179
|
+
`${output.highlight('init')} - Initialize memory database (sql.js)`,
|
|
1180
|
+
`${output.highlight('store')} - Store data in memory`,
|
|
1181
|
+
`${output.highlight('retrieve')} - Retrieve data from memory`,
|
|
1182
|
+
`${output.highlight('search')} - Semantic/vector search`,
|
|
1183
|
+
`${output.highlight('list')} - List memory entries`,
|
|
1184
|
+
`${output.highlight('delete')} - Delete memory entry`,
|
|
1185
|
+
`${output.highlight('stats')} - Show statistics`,
|
|
1186
|
+
`${output.highlight('configure')} - Configure backend`,
|
|
1187
|
+
`${output.highlight('cleanup')} - Clean expired entries`,
|
|
1188
|
+
`${output.highlight('compress')} - Compress database`,
|
|
1189
|
+
`${output.highlight('export')} - Export memory to file`,
|
|
1190
|
+
`${output.highlight('import')} - Import from file`
|
|
1191
|
+
]);
|
|
1192
|
+
return { success: true };
|
|
1193
|
+
}
|
|
1194
|
+
};
|
|
1195
|
+
export default memoryCommand;
|
|
1196
|
+
//# sourceMappingURL=memory.js.map
|