claude-flow 3.0.0-alpha.15 → 3.0.0-alpha.16
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.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 +1352 -0
- package/v3/@claude-flow/cli/bin/cli.js +14 -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 +545 -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 +2542 -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 +65 -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 +162 -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 +532 -0
- package/v3/@claude-flow/cli/dist/src/commands/init.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 +977 -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 +10 -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 +280 -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 +603 -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 +398 -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 +573 -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/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 +370 -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 +482 -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 +652 -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 +18 -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 +71 -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 +267 -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 +14 -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 +206 -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 +240 -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 +210 -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 +153 -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 +453 -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 +1711 -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 +19 -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 +18 -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/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/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 +491 -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 +662 -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/index.d.ts +7 -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 +6 -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 +153 -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 +567 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.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/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 +51 -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 -40
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -43
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,750 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* V3 CLI Session Command
|
|
3
|
+
* Session management for Claude Flow
|
|
4
|
+
*/
|
|
5
|
+
import { output } from '../output.js';
|
|
6
|
+
import { confirm, input, select } from '../prompt.js';
|
|
7
|
+
import { callMCPTool, MCPClientError } from '../mcp-client.js';
|
|
8
|
+
import * as fs from 'fs';
|
|
9
|
+
import * as path from 'path';
|
|
10
|
+
// Format date for display
|
|
11
|
+
function formatDate(dateStr) {
|
|
12
|
+
const date = new Date(dateStr);
|
|
13
|
+
const now = new Date();
|
|
14
|
+
const diff = now.getTime() - date.getTime();
|
|
15
|
+
// Less than 24 hours - show relative time
|
|
16
|
+
if (diff < 24 * 60 * 60 * 1000) {
|
|
17
|
+
const hours = Math.floor(diff / (60 * 60 * 1000));
|
|
18
|
+
const minutes = Math.floor((diff % (60 * 60 * 1000)) / (60 * 1000));
|
|
19
|
+
if (hours > 0) {
|
|
20
|
+
return `${hours}h ${minutes}m ago`;
|
|
21
|
+
}
|
|
22
|
+
return `${minutes}m ago`;
|
|
23
|
+
}
|
|
24
|
+
// Otherwise show date
|
|
25
|
+
return date.toLocaleDateString() + ' ' + date.toLocaleTimeString();
|
|
26
|
+
}
|
|
27
|
+
// Format session status
|
|
28
|
+
function formatStatus(status) {
|
|
29
|
+
switch (status) {
|
|
30
|
+
case 'active':
|
|
31
|
+
return output.success(status);
|
|
32
|
+
case 'saved':
|
|
33
|
+
return output.info(status);
|
|
34
|
+
case 'archived':
|
|
35
|
+
return output.dim(status);
|
|
36
|
+
default:
|
|
37
|
+
return status;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
// List subcommand
|
|
41
|
+
const listCommand = {
|
|
42
|
+
name: 'list',
|
|
43
|
+
aliases: ['ls'],
|
|
44
|
+
description: 'List all sessions',
|
|
45
|
+
options: [
|
|
46
|
+
{
|
|
47
|
+
name: 'active',
|
|
48
|
+
short: 'a',
|
|
49
|
+
description: 'Show only active sessions',
|
|
50
|
+
type: 'boolean',
|
|
51
|
+
default: false
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'all',
|
|
55
|
+
description: 'Include archived sessions',
|
|
56
|
+
type: 'boolean',
|
|
57
|
+
default: false
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: 'limit',
|
|
61
|
+
short: 'l',
|
|
62
|
+
description: 'Maximum sessions to show',
|
|
63
|
+
type: 'number',
|
|
64
|
+
default: 20
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
action: async (ctx) => {
|
|
68
|
+
const activeOnly = ctx.flags.active;
|
|
69
|
+
const includeArchived = ctx.flags.all;
|
|
70
|
+
const limit = ctx.flags.limit;
|
|
71
|
+
try {
|
|
72
|
+
const result = await callMCPTool('session/list', {
|
|
73
|
+
status: activeOnly ? 'active' : includeArchived ? 'all' : 'active,saved',
|
|
74
|
+
limit
|
|
75
|
+
});
|
|
76
|
+
if (ctx.flags.format === 'json') {
|
|
77
|
+
output.printJson(result);
|
|
78
|
+
return { success: true, data: result };
|
|
79
|
+
}
|
|
80
|
+
output.writeln();
|
|
81
|
+
output.writeln(output.bold('Sessions'));
|
|
82
|
+
output.writeln();
|
|
83
|
+
if (result.sessions.length === 0) {
|
|
84
|
+
output.printInfo('No sessions found');
|
|
85
|
+
output.printInfo('Run "claude-flow session save" to create a session');
|
|
86
|
+
return { success: true, data: result };
|
|
87
|
+
}
|
|
88
|
+
output.printTable({
|
|
89
|
+
columns: [
|
|
90
|
+
{ key: 'id', header: 'ID', width: 20 },
|
|
91
|
+
{ key: 'name', header: 'Name', width: 20 },
|
|
92
|
+
{ key: 'status', header: 'Status', width: 10 },
|
|
93
|
+
{ key: 'agents', header: 'Agents', width: 8, align: 'right' },
|
|
94
|
+
{ key: 'tasks', header: 'Tasks', width: 8, align: 'right' },
|
|
95
|
+
{ key: 'updated', header: 'Last Updated', width: 18 }
|
|
96
|
+
],
|
|
97
|
+
data: result.sessions.map(s => ({
|
|
98
|
+
id: s.id,
|
|
99
|
+
name: s.name || '-',
|
|
100
|
+
status: formatStatus(s.status),
|
|
101
|
+
agents: s.agentCount,
|
|
102
|
+
tasks: s.taskCount,
|
|
103
|
+
updated: formatDate(s.updatedAt)
|
|
104
|
+
}))
|
|
105
|
+
});
|
|
106
|
+
output.writeln();
|
|
107
|
+
output.printInfo(`Showing ${result.sessions.length} of ${result.total} sessions`);
|
|
108
|
+
return { success: true, data: result };
|
|
109
|
+
}
|
|
110
|
+
catch (error) {
|
|
111
|
+
if (error instanceof MCPClientError) {
|
|
112
|
+
output.printError(`Failed to list sessions: ${error.message}`);
|
|
113
|
+
}
|
|
114
|
+
else {
|
|
115
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
116
|
+
}
|
|
117
|
+
return { success: false, exitCode: 1 };
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
// Save subcommand
|
|
122
|
+
const saveCommand = {
|
|
123
|
+
name: 'save',
|
|
124
|
+
aliases: ['create', 'checkpoint'],
|
|
125
|
+
description: 'Save current session state',
|
|
126
|
+
options: [
|
|
127
|
+
{
|
|
128
|
+
name: 'name',
|
|
129
|
+
short: 'n',
|
|
130
|
+
description: 'Session name',
|
|
131
|
+
type: 'string'
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
name: 'description',
|
|
135
|
+
short: 'd',
|
|
136
|
+
description: 'Session description',
|
|
137
|
+
type: 'string'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
name: 'include-memory',
|
|
141
|
+
description: 'Include memory state in session',
|
|
142
|
+
type: 'boolean',
|
|
143
|
+
default: true
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
name: 'include-agents',
|
|
147
|
+
description: 'Include agent state in session',
|
|
148
|
+
type: 'boolean',
|
|
149
|
+
default: true
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
name: 'include-tasks',
|
|
153
|
+
description: 'Include task state in session',
|
|
154
|
+
type: 'boolean',
|
|
155
|
+
default: true
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
action: async (ctx) => {
|
|
159
|
+
let sessionName = ctx.flags.name;
|
|
160
|
+
let description = ctx.flags.description;
|
|
161
|
+
// Interactive mode
|
|
162
|
+
if (!sessionName && ctx.interactive) {
|
|
163
|
+
sessionName = await input({
|
|
164
|
+
message: 'Session name:',
|
|
165
|
+
default: `session-${Date.now().toString(36)}`,
|
|
166
|
+
validate: (v) => v.length > 0 || 'Name is required'
|
|
167
|
+
});
|
|
168
|
+
}
|
|
169
|
+
if (!description && ctx.interactive) {
|
|
170
|
+
description = await input({
|
|
171
|
+
message: 'Session description (optional):',
|
|
172
|
+
default: ''
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
const spinner = output.createSpinner({ text: 'Saving session...' });
|
|
176
|
+
spinner.start();
|
|
177
|
+
try {
|
|
178
|
+
const result = await callMCPTool('session/save', {
|
|
179
|
+
name: sessionName,
|
|
180
|
+
description,
|
|
181
|
+
includeMemory: ctx.flags['include-memory'] !== false,
|
|
182
|
+
includeAgents: ctx.flags['include-agents'] !== false,
|
|
183
|
+
includeTasks: ctx.flags['include-tasks'] !== false
|
|
184
|
+
});
|
|
185
|
+
spinner.succeed('Session saved');
|
|
186
|
+
output.writeln();
|
|
187
|
+
output.printTable({
|
|
188
|
+
columns: [
|
|
189
|
+
{ key: 'property', header: 'Property', width: 18 },
|
|
190
|
+
{ key: 'value', header: 'Value', width: 35 }
|
|
191
|
+
],
|
|
192
|
+
data: [
|
|
193
|
+
{ property: 'Session ID', value: result.sessionId },
|
|
194
|
+
{ property: 'Name', value: result.name },
|
|
195
|
+
{ property: 'Description', value: result.description || '-' },
|
|
196
|
+
{ property: 'Saved At', value: new Date(result.savedAt).toLocaleString() },
|
|
197
|
+
{ property: 'Agents', value: result.stats.agentCount },
|
|
198
|
+
{ property: 'Tasks', value: result.stats.taskCount },
|
|
199
|
+
{ property: 'Memory Entries', value: result.stats.memoryEntries },
|
|
200
|
+
{ property: 'Total Size', value: formatSize(result.stats.totalSize) }
|
|
201
|
+
]
|
|
202
|
+
});
|
|
203
|
+
output.writeln();
|
|
204
|
+
output.printSuccess(`Session saved: ${result.sessionId}`);
|
|
205
|
+
output.printInfo(`Restore with: claude-flow session restore ${result.sessionId}`);
|
|
206
|
+
if (ctx.flags.format === 'json') {
|
|
207
|
+
output.printJson(result);
|
|
208
|
+
}
|
|
209
|
+
return { success: true, data: result };
|
|
210
|
+
}
|
|
211
|
+
catch (error) {
|
|
212
|
+
spinner.fail('Failed to save session');
|
|
213
|
+
if (error instanceof MCPClientError) {
|
|
214
|
+
output.printError(`Error: ${error.message}`);
|
|
215
|
+
}
|
|
216
|
+
else {
|
|
217
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
218
|
+
}
|
|
219
|
+
return { success: false, exitCode: 1 };
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
};
|
|
223
|
+
// Restore subcommand
|
|
224
|
+
const restoreCommand = {
|
|
225
|
+
name: 'restore',
|
|
226
|
+
aliases: ['load'],
|
|
227
|
+
description: 'Restore a saved session',
|
|
228
|
+
options: [
|
|
229
|
+
{
|
|
230
|
+
name: 'force',
|
|
231
|
+
short: 'f',
|
|
232
|
+
description: 'Overwrite current state without confirmation',
|
|
233
|
+
type: 'boolean',
|
|
234
|
+
default: false
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
name: 'memory-only',
|
|
238
|
+
description: 'Only restore memory state',
|
|
239
|
+
type: 'boolean',
|
|
240
|
+
default: false
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
name: 'agents-only',
|
|
244
|
+
description: 'Only restore agent state',
|
|
245
|
+
type: 'boolean',
|
|
246
|
+
default: false
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
name: 'tasks-only',
|
|
250
|
+
description: 'Only restore task state',
|
|
251
|
+
type: 'boolean',
|
|
252
|
+
default: false
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
action: async (ctx) => {
|
|
256
|
+
let sessionId = ctx.args[0];
|
|
257
|
+
const force = ctx.flags.force;
|
|
258
|
+
if (!sessionId && ctx.interactive) {
|
|
259
|
+
// Show list to select from
|
|
260
|
+
try {
|
|
261
|
+
const sessions = await callMCPTool('session/list', { status: 'saved', limit: 20 });
|
|
262
|
+
if (sessions.sessions.length === 0) {
|
|
263
|
+
output.printWarning('No saved sessions found');
|
|
264
|
+
return { success: false, exitCode: 1 };
|
|
265
|
+
}
|
|
266
|
+
sessionId = await select({
|
|
267
|
+
message: 'Select session to restore:',
|
|
268
|
+
options: sessions.sessions.map(s => ({
|
|
269
|
+
value: s.id,
|
|
270
|
+
label: s.name || s.id,
|
|
271
|
+
hint: formatDate(s.updatedAt)
|
|
272
|
+
}))
|
|
273
|
+
});
|
|
274
|
+
}
|
|
275
|
+
catch (error) {
|
|
276
|
+
if (error instanceof Error && error.message === 'User cancelled') {
|
|
277
|
+
output.printInfo('Operation cancelled');
|
|
278
|
+
return { success: true };
|
|
279
|
+
}
|
|
280
|
+
throw error;
|
|
281
|
+
}
|
|
282
|
+
}
|
|
283
|
+
if (!sessionId) {
|
|
284
|
+
output.printError('Session ID is required');
|
|
285
|
+
return { success: false, exitCode: 1 };
|
|
286
|
+
}
|
|
287
|
+
// Confirm unless forced
|
|
288
|
+
if (!force && ctx.interactive) {
|
|
289
|
+
const confirmed = await confirm({
|
|
290
|
+
message: 'This will overwrite current state. Continue?',
|
|
291
|
+
default: false
|
|
292
|
+
});
|
|
293
|
+
if (!confirmed) {
|
|
294
|
+
output.printInfo('Operation cancelled');
|
|
295
|
+
return { success: true };
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
const spinner = output.createSpinner({ text: 'Restoring session...' });
|
|
299
|
+
spinner.start();
|
|
300
|
+
try {
|
|
301
|
+
// Determine what to restore
|
|
302
|
+
const restoreMemory = !ctx.flags['agents-only'] && !ctx.flags['tasks-only'];
|
|
303
|
+
const restoreAgents = !ctx.flags['memory-only'] && !ctx.flags['tasks-only'];
|
|
304
|
+
const restoreTasks = !ctx.flags['memory-only'] && !ctx.flags['agents-only'];
|
|
305
|
+
const result = await callMCPTool('session/restore', {
|
|
306
|
+
sessionId,
|
|
307
|
+
restoreMemory,
|
|
308
|
+
restoreAgents,
|
|
309
|
+
restoreTasks
|
|
310
|
+
});
|
|
311
|
+
spinner.succeed('Session restored');
|
|
312
|
+
output.writeln();
|
|
313
|
+
output.printTable({
|
|
314
|
+
columns: [
|
|
315
|
+
{ key: 'component', header: 'Component', width: 20 },
|
|
316
|
+
{ key: 'status', header: 'Status', width: 15 },
|
|
317
|
+
{ key: 'count', header: 'Items', width: 10, align: 'right' }
|
|
318
|
+
],
|
|
319
|
+
data: [
|
|
320
|
+
{
|
|
321
|
+
component: 'Memory',
|
|
322
|
+
status: result.restored.memory ? output.success('Restored') : output.dim('Skipped'),
|
|
323
|
+
count: result.stats.memoryEntriesRestored
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
component: 'Agents',
|
|
327
|
+
status: result.restored.agents ? output.success('Restored') : output.dim('Skipped'),
|
|
328
|
+
count: result.stats.agentsRestored
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
component: 'Tasks',
|
|
332
|
+
status: result.restored.tasks ? output.success('Restored') : output.dim('Skipped'),
|
|
333
|
+
count: result.stats.tasksRestored
|
|
334
|
+
}
|
|
335
|
+
]
|
|
336
|
+
});
|
|
337
|
+
output.writeln();
|
|
338
|
+
output.printSuccess(`Session ${sessionId} restored successfully`);
|
|
339
|
+
if (ctx.flags.format === 'json') {
|
|
340
|
+
output.printJson(result);
|
|
341
|
+
}
|
|
342
|
+
return { success: true, data: result };
|
|
343
|
+
}
|
|
344
|
+
catch (error) {
|
|
345
|
+
spinner.fail('Failed to restore session');
|
|
346
|
+
if (error instanceof MCPClientError) {
|
|
347
|
+
output.printError(`Error: ${error.message}`);
|
|
348
|
+
}
|
|
349
|
+
else {
|
|
350
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
351
|
+
}
|
|
352
|
+
return { success: false, exitCode: 1 };
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
};
|
|
356
|
+
// Delete subcommand
|
|
357
|
+
const deleteCommand = {
|
|
358
|
+
name: 'delete',
|
|
359
|
+
aliases: ['rm', 'remove'],
|
|
360
|
+
description: 'Delete a saved session',
|
|
361
|
+
options: [
|
|
362
|
+
{
|
|
363
|
+
name: 'force',
|
|
364
|
+
short: 'f',
|
|
365
|
+
description: 'Delete without confirmation',
|
|
366
|
+
type: 'boolean',
|
|
367
|
+
default: false
|
|
368
|
+
}
|
|
369
|
+
],
|
|
370
|
+
action: async (ctx) => {
|
|
371
|
+
const sessionId = ctx.args[0];
|
|
372
|
+
const force = ctx.flags.force;
|
|
373
|
+
if (!sessionId) {
|
|
374
|
+
output.printError('Session ID is required');
|
|
375
|
+
return { success: false, exitCode: 1 };
|
|
376
|
+
}
|
|
377
|
+
if (!force && ctx.interactive) {
|
|
378
|
+
const confirmed = await confirm({
|
|
379
|
+
message: `Delete session ${sessionId}? This cannot be undone.`,
|
|
380
|
+
default: false
|
|
381
|
+
});
|
|
382
|
+
if (!confirmed) {
|
|
383
|
+
output.printInfo('Operation cancelled');
|
|
384
|
+
return { success: true };
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
try {
|
|
388
|
+
const result = await callMCPTool('session/delete', { sessionId });
|
|
389
|
+
output.writeln();
|
|
390
|
+
output.printSuccess(`Session ${sessionId} deleted`);
|
|
391
|
+
if (ctx.flags.format === 'json') {
|
|
392
|
+
output.printJson(result);
|
|
393
|
+
}
|
|
394
|
+
return { success: true, data: result };
|
|
395
|
+
}
|
|
396
|
+
catch (error) {
|
|
397
|
+
if (error instanceof MCPClientError) {
|
|
398
|
+
output.printError(`Failed to delete session: ${error.message}`);
|
|
399
|
+
}
|
|
400
|
+
else {
|
|
401
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
402
|
+
}
|
|
403
|
+
return { success: false, exitCode: 1 };
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
};
|
|
407
|
+
// Export subcommand
|
|
408
|
+
const exportCommand = {
|
|
409
|
+
name: 'export',
|
|
410
|
+
description: 'Export session to file',
|
|
411
|
+
options: [
|
|
412
|
+
{
|
|
413
|
+
name: 'output',
|
|
414
|
+
short: 'o',
|
|
415
|
+
description: 'Output file path',
|
|
416
|
+
type: 'string'
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
name: 'format',
|
|
420
|
+
short: 'f',
|
|
421
|
+
description: 'Export format (json, yaml)',
|
|
422
|
+
type: 'string',
|
|
423
|
+
choices: ['json', 'yaml'],
|
|
424
|
+
default: 'json'
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
name: 'include-memory',
|
|
428
|
+
description: 'Include memory data',
|
|
429
|
+
type: 'boolean',
|
|
430
|
+
default: true
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
name: 'compress',
|
|
434
|
+
description: 'Compress output',
|
|
435
|
+
type: 'boolean',
|
|
436
|
+
default: false
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
action: async (ctx) => {
|
|
440
|
+
let sessionId = ctx.args[0];
|
|
441
|
+
let outputPath = ctx.flags.output;
|
|
442
|
+
const exportFormat = ctx.flags.format;
|
|
443
|
+
const compress = ctx.flags.compress;
|
|
444
|
+
// Get current session if no ID provided
|
|
445
|
+
if (!sessionId) {
|
|
446
|
+
try {
|
|
447
|
+
const current = await callMCPTool('session/current', {});
|
|
448
|
+
sessionId = current.sessionId;
|
|
449
|
+
}
|
|
450
|
+
catch {
|
|
451
|
+
output.printError('No active session. Provide a session ID to export.');
|
|
452
|
+
return { success: false, exitCode: 1 };
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
// Generate output path if not provided
|
|
456
|
+
if (!outputPath) {
|
|
457
|
+
const ext = compress ? '.gz' : '';
|
|
458
|
+
outputPath = `session-${sessionId}.${exportFormat}${ext}`;
|
|
459
|
+
}
|
|
460
|
+
const spinner = output.createSpinner({ text: 'Exporting session...' });
|
|
461
|
+
spinner.start();
|
|
462
|
+
try {
|
|
463
|
+
const result = await callMCPTool('session/export', {
|
|
464
|
+
sessionId,
|
|
465
|
+
includeMemory: ctx.flags['include-memory'] !== false
|
|
466
|
+
});
|
|
467
|
+
// Format output
|
|
468
|
+
let content;
|
|
469
|
+
if (exportFormat === 'yaml') {
|
|
470
|
+
content = toSimpleYaml(result.data);
|
|
471
|
+
}
|
|
472
|
+
else {
|
|
473
|
+
content = JSON.stringify(result.data, null, 2);
|
|
474
|
+
}
|
|
475
|
+
// Write to file
|
|
476
|
+
const absolutePath = path.isAbsolute(outputPath)
|
|
477
|
+
? outputPath
|
|
478
|
+
: path.join(ctx.cwd, outputPath);
|
|
479
|
+
fs.writeFileSync(absolutePath, content, 'utf-8');
|
|
480
|
+
spinner.succeed('Session exported');
|
|
481
|
+
output.writeln();
|
|
482
|
+
output.printTable({
|
|
483
|
+
columns: [
|
|
484
|
+
{ key: 'property', header: 'Property', width: 18 },
|
|
485
|
+
{ key: 'value', header: 'Value', width: 40 }
|
|
486
|
+
],
|
|
487
|
+
data: [
|
|
488
|
+
{ property: 'Session ID', value: sessionId },
|
|
489
|
+
{ property: 'Output File', value: absolutePath },
|
|
490
|
+
{ property: 'Format', value: exportFormat.toUpperCase() },
|
|
491
|
+
{ property: 'Agents', value: result.stats.agentCount },
|
|
492
|
+
{ property: 'Tasks', value: result.stats.taskCount },
|
|
493
|
+
{ property: 'Memory Entries', value: result.stats.memoryEntries },
|
|
494
|
+
{ property: 'File Size', value: formatSize(content.length) }
|
|
495
|
+
]
|
|
496
|
+
});
|
|
497
|
+
output.writeln();
|
|
498
|
+
output.printSuccess(`Session exported to ${outputPath}`);
|
|
499
|
+
return {
|
|
500
|
+
success: true,
|
|
501
|
+
data: { sessionId, outputPath, format: exportFormat, size: content.length }
|
|
502
|
+
};
|
|
503
|
+
}
|
|
504
|
+
catch (error) {
|
|
505
|
+
spinner.fail('Failed to export session');
|
|
506
|
+
if (error instanceof MCPClientError) {
|
|
507
|
+
output.printError(`Error: ${error.message}`);
|
|
508
|
+
}
|
|
509
|
+
else {
|
|
510
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
511
|
+
}
|
|
512
|
+
return { success: false, exitCode: 1 };
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
};
|
|
516
|
+
// Import subcommand
|
|
517
|
+
const importCommand = {
|
|
518
|
+
name: 'import',
|
|
519
|
+
description: 'Import session from file',
|
|
520
|
+
options: [
|
|
521
|
+
{
|
|
522
|
+
name: 'name',
|
|
523
|
+
short: 'n',
|
|
524
|
+
description: 'Session name for imported session',
|
|
525
|
+
type: 'string'
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
name: 'activate',
|
|
529
|
+
description: 'Activate session after import',
|
|
530
|
+
type: 'boolean',
|
|
531
|
+
default: false
|
|
532
|
+
}
|
|
533
|
+
],
|
|
534
|
+
action: async (ctx) => {
|
|
535
|
+
const filePath = ctx.args[0];
|
|
536
|
+
const sessionName = ctx.flags.name;
|
|
537
|
+
const activate = ctx.flags.activate;
|
|
538
|
+
if (!filePath) {
|
|
539
|
+
output.printError('File path is required');
|
|
540
|
+
return { success: false, exitCode: 1 };
|
|
541
|
+
}
|
|
542
|
+
const absolutePath = path.isAbsolute(filePath)
|
|
543
|
+
? filePath
|
|
544
|
+
: path.join(ctx.cwd, filePath);
|
|
545
|
+
if (!fs.existsSync(absolutePath)) {
|
|
546
|
+
output.printError(`File not found: ${absolutePath}`);
|
|
547
|
+
return { success: false, exitCode: 1 };
|
|
548
|
+
}
|
|
549
|
+
const spinner = output.createSpinner({ text: 'Importing session...' });
|
|
550
|
+
spinner.start();
|
|
551
|
+
try {
|
|
552
|
+
const content = fs.readFileSync(absolutePath, 'utf-8');
|
|
553
|
+
let data;
|
|
554
|
+
// Parse based on extension
|
|
555
|
+
if (absolutePath.endsWith('.yaml') || absolutePath.endsWith('.yml')) {
|
|
556
|
+
// Simple YAML parsing (basic implementation)
|
|
557
|
+
data = JSON.parse(content); // Would need proper YAML parser
|
|
558
|
+
}
|
|
559
|
+
else {
|
|
560
|
+
data = JSON.parse(content);
|
|
561
|
+
}
|
|
562
|
+
const result = await callMCPTool('session/import', {
|
|
563
|
+
data,
|
|
564
|
+
name: sessionName,
|
|
565
|
+
activate
|
|
566
|
+
});
|
|
567
|
+
spinner.succeed('Session imported');
|
|
568
|
+
output.writeln();
|
|
569
|
+
output.printTable({
|
|
570
|
+
columns: [
|
|
571
|
+
{ key: 'property', header: 'Property', width: 20 },
|
|
572
|
+
{ key: 'value', header: 'Value', width: 35 }
|
|
573
|
+
],
|
|
574
|
+
data: [
|
|
575
|
+
{ property: 'Session ID', value: result.sessionId },
|
|
576
|
+
{ property: 'Name', value: result.name },
|
|
577
|
+
{ property: 'Source File', value: path.basename(absolutePath) },
|
|
578
|
+
{ property: 'Agents Imported', value: result.stats.agentsImported },
|
|
579
|
+
{ property: 'Tasks Imported', value: result.stats.tasksImported },
|
|
580
|
+
{ property: 'Memory Entries', value: result.stats.memoryEntriesImported },
|
|
581
|
+
{ property: 'Activated', value: result.activated ? 'Yes' : 'No' }
|
|
582
|
+
]
|
|
583
|
+
});
|
|
584
|
+
output.writeln();
|
|
585
|
+
output.printSuccess(`Session imported: ${result.sessionId}`);
|
|
586
|
+
if (!result.activated) {
|
|
587
|
+
output.printInfo(`Restore with: claude-flow session restore ${result.sessionId}`);
|
|
588
|
+
}
|
|
589
|
+
if (ctx.flags.format === 'json') {
|
|
590
|
+
output.printJson(result);
|
|
591
|
+
}
|
|
592
|
+
return { success: true, data: result };
|
|
593
|
+
}
|
|
594
|
+
catch (error) {
|
|
595
|
+
spinner.fail('Failed to import session');
|
|
596
|
+
if (error instanceof MCPClientError) {
|
|
597
|
+
output.printError(`Error: ${error.message}`);
|
|
598
|
+
}
|
|
599
|
+
else if (error instanceof SyntaxError) {
|
|
600
|
+
output.printError('Invalid file format. Expected JSON or YAML.');
|
|
601
|
+
}
|
|
602
|
+
else {
|
|
603
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
604
|
+
}
|
|
605
|
+
return { success: false, exitCode: 1 };
|
|
606
|
+
}
|
|
607
|
+
}
|
|
608
|
+
};
|
|
609
|
+
// Current subcommand
|
|
610
|
+
const currentCommand = {
|
|
611
|
+
name: 'current',
|
|
612
|
+
description: 'Show current active session',
|
|
613
|
+
action: async (ctx) => {
|
|
614
|
+
try {
|
|
615
|
+
const result = await callMCPTool('session/current', { includeStats: true });
|
|
616
|
+
if (ctx.flags.format === 'json') {
|
|
617
|
+
output.printJson(result);
|
|
618
|
+
return { success: true, data: result };
|
|
619
|
+
}
|
|
620
|
+
output.writeln();
|
|
621
|
+
output.writeln(output.bold('Current Session'));
|
|
622
|
+
output.writeln();
|
|
623
|
+
output.printTable({
|
|
624
|
+
columns: [
|
|
625
|
+
{ key: 'property', header: 'Property', width: 18 },
|
|
626
|
+
{ key: 'value', header: 'Value', width: 35 }
|
|
627
|
+
],
|
|
628
|
+
data: [
|
|
629
|
+
{ property: 'Session ID', value: result.sessionId },
|
|
630
|
+
{ property: 'Name', value: result.name || '-' },
|
|
631
|
+
{ property: 'Status', value: formatStatus(result.status) },
|
|
632
|
+
{ property: 'Started', value: new Date(result.startedAt).toLocaleString() },
|
|
633
|
+
{ property: 'Duration', value: formatDuration(result.stats.duration) },
|
|
634
|
+
{ property: 'Agents', value: result.stats.agentCount },
|
|
635
|
+
{ property: 'Tasks', value: result.stats.taskCount },
|
|
636
|
+
{ property: 'Memory Entries', value: result.stats.memoryEntries }
|
|
637
|
+
]
|
|
638
|
+
});
|
|
639
|
+
return { success: true, data: result };
|
|
640
|
+
}
|
|
641
|
+
catch (error) {
|
|
642
|
+
if (error instanceof MCPClientError) {
|
|
643
|
+
output.printWarning('No active session');
|
|
644
|
+
output.printInfo('Start a session with "claude-flow start"');
|
|
645
|
+
return { success: true, data: { active: false } };
|
|
646
|
+
}
|
|
647
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
648
|
+
return { success: false, exitCode: 1 };
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
};
|
|
652
|
+
// Helper functions
|
|
653
|
+
function formatSize(bytes) {
|
|
654
|
+
if (bytes === 0)
|
|
655
|
+
return '0 B';
|
|
656
|
+
const k = 1024;
|
|
657
|
+
const sizes = ['B', 'KB', 'MB', 'GB'];
|
|
658
|
+
const i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
659
|
+
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(1))} ${sizes[i]}`;
|
|
660
|
+
}
|
|
661
|
+
function formatDuration(ms) {
|
|
662
|
+
const seconds = Math.floor(ms / 1000);
|
|
663
|
+
const minutes = Math.floor(seconds / 60);
|
|
664
|
+
const hours = Math.floor(minutes / 60);
|
|
665
|
+
if (hours > 0) {
|
|
666
|
+
return `${hours}h ${minutes % 60}m`;
|
|
667
|
+
}
|
|
668
|
+
else if (minutes > 0) {
|
|
669
|
+
return `${minutes}m ${seconds % 60}s`;
|
|
670
|
+
}
|
|
671
|
+
return `${seconds}s`;
|
|
672
|
+
}
|
|
673
|
+
function toSimpleYaml(obj, indent = 0) {
|
|
674
|
+
// Simple YAML serializer (for basic types)
|
|
675
|
+
if (obj === null)
|
|
676
|
+
return 'null';
|
|
677
|
+
if (typeof obj === 'boolean')
|
|
678
|
+
return String(obj);
|
|
679
|
+
if (typeof obj === 'number')
|
|
680
|
+
return String(obj);
|
|
681
|
+
if (typeof obj === 'string')
|
|
682
|
+
return obj.includes(':') ? `"${obj}"` : obj;
|
|
683
|
+
const spaces = ' '.repeat(indent);
|
|
684
|
+
let result = '';
|
|
685
|
+
if (Array.isArray(obj)) {
|
|
686
|
+
for (const item of obj) {
|
|
687
|
+
result += `${spaces}- ${toSimpleYaml(item, indent + 1).trim()}\n`;
|
|
688
|
+
}
|
|
689
|
+
return result;
|
|
690
|
+
}
|
|
691
|
+
if (typeof obj === 'object') {
|
|
692
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
693
|
+
if (typeof value === 'object' && value !== null) {
|
|
694
|
+
result += `${spaces}${key}:\n${toSimpleYaml(value, indent + 1)}`;
|
|
695
|
+
}
|
|
696
|
+
else {
|
|
697
|
+
result += `${spaces}${key}: ${toSimpleYaml(value, indent)}\n`;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
return result;
|
|
701
|
+
}
|
|
702
|
+
return String(obj);
|
|
703
|
+
}
|
|
704
|
+
// Main session command
|
|
705
|
+
export const sessionCommand = {
|
|
706
|
+
name: 'session',
|
|
707
|
+
description: 'Session management commands',
|
|
708
|
+
subcommands: [
|
|
709
|
+
listCommand,
|
|
710
|
+
saveCommand,
|
|
711
|
+
restoreCommand,
|
|
712
|
+
deleteCommand,
|
|
713
|
+
exportCommand,
|
|
714
|
+
importCommand,
|
|
715
|
+
currentCommand
|
|
716
|
+
],
|
|
717
|
+
options: [],
|
|
718
|
+
examples: [
|
|
719
|
+
{ command: 'claude-flow session list', description: 'List all sessions' },
|
|
720
|
+
{ command: 'claude-flow session save -n "checkpoint-1"', description: 'Save current session' },
|
|
721
|
+
{ command: 'claude-flow session restore session-123', description: 'Restore a session' },
|
|
722
|
+
{ command: 'claude-flow session delete session-123', description: 'Delete a session' },
|
|
723
|
+
{ command: 'claude-flow session export -o backup.json', description: 'Export session to file' },
|
|
724
|
+
{ command: 'claude-flow session import backup.json', description: 'Import session from file' },
|
|
725
|
+
{ command: 'claude-flow session current', description: 'Show current session' }
|
|
726
|
+
],
|
|
727
|
+
action: async (ctx) => {
|
|
728
|
+
// Show help if no subcommand
|
|
729
|
+
output.writeln();
|
|
730
|
+
output.writeln(output.bold('Session Management Commands'));
|
|
731
|
+
output.writeln();
|
|
732
|
+
output.writeln('Usage: claude-flow session <subcommand> [options]');
|
|
733
|
+
output.writeln();
|
|
734
|
+
output.writeln('Subcommands:');
|
|
735
|
+
output.printList([
|
|
736
|
+
`${output.highlight('list')} - List all sessions`,
|
|
737
|
+
`${output.highlight('save')} - Save current session state`,
|
|
738
|
+
`${output.highlight('restore')} - Restore a saved session`,
|
|
739
|
+
`${output.highlight('delete')} - Delete a saved session`,
|
|
740
|
+
`${output.highlight('export')} - Export session to file`,
|
|
741
|
+
`${output.highlight('import')} - Import session from file`,
|
|
742
|
+
`${output.highlight('current')} - Show current active session`
|
|
743
|
+
]);
|
|
744
|
+
output.writeln();
|
|
745
|
+
output.writeln('Run "claude-flow session <subcommand> --help" for subcommand help');
|
|
746
|
+
return { success: true };
|
|
747
|
+
}
|
|
748
|
+
};
|
|
749
|
+
export default sessionCommand;
|
|
750
|
+
//# sourceMappingURL=session.js.map
|