claude-flow 3.0.0-alpha.5 → 3.0.0-alpha.7
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 +1097 -0
- package/.claude/helpers/metrics-db.mjs +474 -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 +1058 -39
- package/package.json +54 -52
- package/v3/@claude-flow/cli/README.md +1186 -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/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 +351 -0
- package/v3/@claude-flow/cli/dist/src/commands/daemon.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 +2098 -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 +52 -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 +108 -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/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/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 +55 -0
- package/v3/@claude-flow/cli/dist/src/index.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/index.js +332 -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 +626 -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 +203 -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/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 +16 -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 +15 -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/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 +117 -0
- package/v3/@claude-flow/cli/dist/src/output.d.ts.map +1 -0
- package/v3/@claude-flow/cli/dist/src/output.js +471 -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/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 +126 -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 +464 -0
- package/v3/@claude-flow/cli/dist/src/services/worker-daemon.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 +29 -0
- package/v3/@claude-flow/shared/README.md +323 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.d.ts +41 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.js +186 -0
- package/v3/@claude-flow/shared/dist/core/config/defaults.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/index.d.ts +8 -0
- package/v3/@claude-flow/shared/dist/core/config/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/index.js +12 -0
- package/v3/@claude-flow/shared/dist/core/config/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.d.ts +45 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.js +222 -0
- package/v3/@claude-flow/shared/dist/core/config/loader.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.d.ts +1134 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.js +158 -0
- package/v3/@claude-flow/shared/dist/core/config/schema.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.d.ts +92 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.js +147 -0
- package/v3/@claude-flow/shared/dist/core/config/validator.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.d.ts +31 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.js +197 -0
- package/v3/@claude-flow/shared/dist/core/event-bus.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/index.d.ts +15 -0
- package/v3/@claude-flow/shared/dist/core/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/index.js +19 -0
- package/v3/@claude-flow/shared/dist/core/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts +200 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.js +6 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/agent.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts +310 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.js +7 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/coordinator.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts +224 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.js +46 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/event.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.js +15 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts +298 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.js +7 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/memory.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts +185 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.js +6 -0
- package/v3/@claude-flow/shared/dist/core/interfaces/task.interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts +35 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.js +101 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/event-coordinator.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts +60 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.js +166 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/health-monitor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.d.ts +46 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.js +64 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts +56 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.js +195 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/lifecycle-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts +83 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.js +193 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/session-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts +49 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.js +253 -0
- package/v3/@claude-flow/shared/dist/core/orchestrator/task-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.d.ts +282 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.js +165 -0
- package/v3/@claude-flow/shared/dist/events/domain-events.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.d.ts +126 -0
- package/v3/@claude-flow/shared/dist/events/event-store.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.js +416 -0
- package/v3/@claude-flow/shared/dist/events/event-store.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.d.ts +8 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.js +293 -0
- package/v3/@claude-flow/shared/dist/events/event-store.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.js +193 -0
- package/v3/@claude-flow/shared/dist/events/example-usage.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/events/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/index.js +20 -0
- package/v3/@claude-flow/shared/dist/events/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/projections.d.ts +177 -0
- package/v3/@claude-flow/shared/dist/events/projections.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/projections.js +421 -0
- package/v3/@claude-flow/shared/dist/events/projections.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.d.ts +101 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.js +263 -0
- package/v3/@claude-flow/shared/dist/events/state-reconstructor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/events.d.ts +80 -0
- package/v3/@claude-flow/shared/dist/events.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/events.js +249 -0
- package/v3/@claude-flow/shared/dist/events.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.d.ts +42 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.js +351 -0
- package/v3/@claude-flow/shared/dist/hooks/example-usage.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.d.ts +100 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.js +264 -0
- package/v3/@claude-flow/shared/dist/hooks/executor.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.d.ts +9 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.js +322 -0
- package/v3/@claude-flow/shared/dist/hooks/hooks.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/index.d.ts +52 -0
- package/v3/@claude-flow/shared/dist/hooks/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/index.js +51 -0
- package/v3/@claude-flow/shared/dist/hooks/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.d.ts +133 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.js +277 -0
- package/v3/@claude-flow/shared/dist/hooks/registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts +105 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.js +481 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/bash-safety.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts +144 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.js +328 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/file-organization.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts +158 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.js +450 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/git-commit.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.d.ts +17 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.js +17 -0
- package/v3/@claude-flow/shared/dist/hooks/safety/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.d.ts +234 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.js +334 -0
- package/v3/@claude-flow/shared/dist/hooks/session-hooks.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.d.ts +163 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.js +326 -0
- package/v3/@claude-flow/shared/dist/hooks/task-hooks.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/types.d.ts +267 -0
- package/v3/@claude-flow/shared/dist/hooks/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/types.js +62 -0
- package/v3/@claude-flow/shared/dist/hooks/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts +9 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.js +93 -0
- package/v3/@claude-flow/shared/dist/hooks/verify-exports.test.js.map +1 -0
- package/v3/@claude-flow/shared/dist/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/index.js +46 -0
- package/v3/@claude-flow/shared/dist/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.d.ts +98 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.js +364 -0
- package/v3/@claude-flow/shared/dist/mcp/connection-pool.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/index.d.ts +69 -0
- package/v3/@claude-flow/shared/dist/mcp/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/index.js +84 -0
- package/v3/@claude-flow/shared/dist/mcp/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/server.d.ts +166 -0
- package/v3/@claude-flow/shared/dist/mcp/server.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/server.js +593 -0
- package/v3/@claude-flow/shared/dist/mcp/server.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.d.ts +136 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.js +335 -0
- package/v3/@claude-flow/shared/dist/mcp/session-manager.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.d.ts +178 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.js +439 -0
- package/v3/@claude-flow/shared/dist/mcp/tool-registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.d.ts +104 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.js +476 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/http.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.d.ts +102 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.js +238 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.d.ts +104 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.js +263 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/stdio.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.d.ts +133 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.js +396 -0
- package/v3/@claude-flow/shared/dist/mcp/transport/websocket.js.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/types.d.ts +438 -0
- package/v3/@claude-flow/shared/dist/mcp/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/mcp/types.js +54 -0
- package/v3/@claude-flow/shared/dist/mcp/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.d.ts +544 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.js +23 -0
- package/v3/@claude-flow/shared/dist/plugin-interface.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.d.ts +139 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.js +434 -0
- package/v3/@claude-flow/shared/dist/plugin-loader.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.d.ts +183 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.js +457 -0
- package/v3/@claude-flow/shared/dist/plugin-registry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/plugins/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/index.js +10 -0
- package/v3/@claude-flow/shared/dist/plugins/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts +106 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.js +241 -0
- package/v3/@claude-flow/shared/dist/plugins/official/hive-mind-plugin.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.js +10 -0
- package/v3/@claude-flow/shared/dist/plugins/official/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts +121 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.js +355 -0
- package/v3/@claude-flow/shared/dist/plugins/official/maestro-plugin.js.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/types.d.ts +93 -0
- package/v3/@claude-flow/shared/dist/plugins/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/plugins/types.js +9 -0
- package/v3/@claude-flow/shared/dist/plugins/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.d.ts +105 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.js +206 -0
- package/v3/@claude-flow/shared/dist/resilience/bulkhead.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts +132 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.js +233 -0
- package/v3/@claude-flow/shared/dist/resilience/circuit-breaker.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/index.d.ts +19 -0
- package/v3/@claude-flow/shared/dist/resilience/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/index.js +19 -0
- package/v3/@claude-flow/shared/dist/resilience/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.d.ts +168 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.js +314 -0
- package/v3/@claude-flow/shared/dist/resilience/rate-limiter.js.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.d.ts +91 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.js +159 -0
- package/v3/@claude-flow/shared/dist/resilience/retry.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/index.d.ts +10 -0
- package/v3/@claude-flow/shared/dist/security/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/index.js +12 -0
- package/v3/@claude-flow/shared/dist/security/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.d.ts +73 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.js +201 -0
- package/v3/@claude-flow/shared/dist/security/input-validation.js.map +1 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.d.ts +92 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.js +142 -0
- package/v3/@claude-flow/shared/dist/security/secure-random.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.d.ts +137 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.js +6 -0
- package/v3/@claude-flow/shared/dist/types/agent.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/index.d.ts +11 -0
- package/v3/@claude-flow/shared/dist/types/index.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/index.js +17 -0
- package/v3/@claude-flow/shared/dist/types/index.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.d.ts +266 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.js +7 -0
- package/v3/@claude-flow/shared/dist/types/mcp.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.d.ts +236 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.js +7 -0
- package/v3/@claude-flow/shared/dist/types/memory.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.d.ts +186 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.js +65 -0
- package/v3/@claude-flow/shared/dist/types/swarm.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types/task.types.d.ts +178 -0
- package/v3/@claude-flow/shared/dist/types/task.types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types/task.types.js +32 -0
- package/v3/@claude-flow/shared/dist/types/task.types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/types.d.ts +197 -0
- package/v3/@claude-flow/shared/dist/types.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/types.js +21 -0
- package/v3/@claude-flow/shared/dist/types.js.map +1 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.d.ts +69 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.d.ts.map +1 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.js +208 -0
- package/v3/@claude-flow/shared/dist/utils/secure-logger.js.map +1 -0
- package/v3/@claude-flow/shared/package.json +34 -0
- package/v3/README.md +493 -0
- package/bin/cli.js +0 -36
- package/dist/index.d.ts +0 -30
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -30
- package/dist/index.js.map +0 -1
|
@@ -0,0 +1,671 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* V3 CLI Task Command
|
|
3
|
+
* Task management for Claude Flow
|
|
4
|
+
*/
|
|
5
|
+
import { output } from '../output.js';
|
|
6
|
+
import { select, confirm, input, multiSelect } from '../prompt.js';
|
|
7
|
+
import { callMCPTool, MCPClientError } from '../mcp-client.js';
|
|
8
|
+
// Task types
|
|
9
|
+
const TASK_TYPES = [
|
|
10
|
+
{ value: 'implementation', label: 'Implementation', hint: 'Feature implementation' },
|
|
11
|
+
{ value: 'bug-fix', label: 'Bug Fix', hint: 'Fix a bug or issue' },
|
|
12
|
+
{ value: 'refactoring', label: 'Refactoring', hint: 'Code refactoring' },
|
|
13
|
+
{ value: 'testing', label: 'Testing', hint: 'Write or update tests' },
|
|
14
|
+
{ value: 'documentation', label: 'Documentation', hint: 'Documentation updates' },
|
|
15
|
+
{ value: 'research', label: 'Research', hint: 'Research and analysis' },
|
|
16
|
+
{ value: 'review', label: 'Review', hint: 'Code review' },
|
|
17
|
+
{ value: 'optimization', label: 'Optimization', hint: 'Performance optimization' },
|
|
18
|
+
{ value: 'security', label: 'Security', hint: 'Security audit or fix' },
|
|
19
|
+
{ value: 'custom', label: 'Custom', hint: 'Custom task type' }
|
|
20
|
+
];
|
|
21
|
+
// Task priorities
|
|
22
|
+
const TASK_PRIORITIES = [
|
|
23
|
+
{ value: 'critical', label: 'Critical', hint: 'Highest priority' },
|
|
24
|
+
{ value: 'high', label: 'High', hint: 'Important task' },
|
|
25
|
+
{ value: 'normal', label: 'Normal', hint: 'Standard priority' },
|
|
26
|
+
{ value: 'low', label: 'Low', hint: 'Lower priority' }
|
|
27
|
+
];
|
|
28
|
+
// Format task status with color
|
|
29
|
+
function formatStatus(status) {
|
|
30
|
+
switch (status) {
|
|
31
|
+
case 'completed':
|
|
32
|
+
return output.success(status);
|
|
33
|
+
case 'running':
|
|
34
|
+
case 'in_progress':
|
|
35
|
+
return output.info(status);
|
|
36
|
+
case 'pending':
|
|
37
|
+
case 'queued':
|
|
38
|
+
return output.warning(status);
|
|
39
|
+
case 'failed':
|
|
40
|
+
case 'cancelled':
|
|
41
|
+
return output.error(status);
|
|
42
|
+
default:
|
|
43
|
+
return status;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
// Format priority with color
|
|
47
|
+
function formatPriority(priority) {
|
|
48
|
+
switch (priority) {
|
|
49
|
+
case 'critical':
|
|
50
|
+
return output.error(priority);
|
|
51
|
+
case 'high':
|
|
52
|
+
return output.warning(priority);
|
|
53
|
+
case 'normal':
|
|
54
|
+
return priority;
|
|
55
|
+
case 'low':
|
|
56
|
+
return output.dim(priority);
|
|
57
|
+
default:
|
|
58
|
+
return priority;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
// Create subcommand
|
|
62
|
+
const createCommand = {
|
|
63
|
+
name: 'create',
|
|
64
|
+
aliases: ['new', 'add'],
|
|
65
|
+
description: 'Create a new task',
|
|
66
|
+
options: [
|
|
67
|
+
{
|
|
68
|
+
name: 'type',
|
|
69
|
+
short: 't',
|
|
70
|
+
description: 'Task type',
|
|
71
|
+
type: 'string',
|
|
72
|
+
choices: TASK_TYPES.map(t => t.value)
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: 'description',
|
|
76
|
+
short: 'd',
|
|
77
|
+
description: 'Task description',
|
|
78
|
+
type: 'string'
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
name: 'priority',
|
|
82
|
+
short: 'p',
|
|
83
|
+
description: 'Task priority',
|
|
84
|
+
type: 'string',
|
|
85
|
+
choices: TASK_PRIORITIES.map(p => p.value),
|
|
86
|
+
default: 'normal'
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
name: 'assign',
|
|
90
|
+
short: 'a',
|
|
91
|
+
description: 'Assign to agent(s)',
|
|
92
|
+
type: 'string'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: 'tags',
|
|
96
|
+
description: 'Comma-separated tags',
|
|
97
|
+
type: 'string'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
name: 'parent',
|
|
101
|
+
description: 'Parent task ID',
|
|
102
|
+
type: 'string'
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
name: 'dependencies',
|
|
106
|
+
description: 'Comma-separated task IDs that must complete first',
|
|
107
|
+
type: 'string'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
name: 'timeout',
|
|
111
|
+
description: 'Task timeout in seconds',
|
|
112
|
+
type: 'number',
|
|
113
|
+
default: 300
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
action: async (ctx) => {
|
|
117
|
+
let taskType = ctx.flags.type;
|
|
118
|
+
let description = ctx.flags.description;
|
|
119
|
+
let priority = ctx.flags.priority;
|
|
120
|
+
// Interactive mode
|
|
121
|
+
if (!taskType && ctx.interactive) {
|
|
122
|
+
taskType = await select({
|
|
123
|
+
message: 'Select task type:',
|
|
124
|
+
options: TASK_TYPES
|
|
125
|
+
});
|
|
126
|
+
}
|
|
127
|
+
if (!description && ctx.interactive) {
|
|
128
|
+
description = await input({
|
|
129
|
+
message: 'Task description:',
|
|
130
|
+
validate: (v) => v.length > 0 || 'Description is required'
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
if (!taskType || !description) {
|
|
134
|
+
output.printError('Task type and description are required');
|
|
135
|
+
output.printInfo('Use --type and --description flags, or run in interactive mode');
|
|
136
|
+
return { success: false, exitCode: 1 };
|
|
137
|
+
}
|
|
138
|
+
if (!priority && ctx.interactive) {
|
|
139
|
+
priority = await select({
|
|
140
|
+
message: 'Select priority:',
|
|
141
|
+
options: TASK_PRIORITIES,
|
|
142
|
+
default: 'normal'
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
// Parse tags and dependencies
|
|
146
|
+
const tags = ctx.flags.tags ? ctx.flags.tags.split(',').map(t => t.trim()) : [];
|
|
147
|
+
const dependencies = ctx.flags.dependencies
|
|
148
|
+
? ctx.flags.dependencies.split(',').map(d => d.trim())
|
|
149
|
+
: [];
|
|
150
|
+
output.writeln();
|
|
151
|
+
output.printInfo(`Creating ${taskType} task...`);
|
|
152
|
+
try {
|
|
153
|
+
const result = await callMCPTool('task/create', {
|
|
154
|
+
type: taskType,
|
|
155
|
+
description,
|
|
156
|
+
priority: priority || 'normal',
|
|
157
|
+
assignedTo: ctx.flags.assign ? [ctx.flags.assign] : undefined,
|
|
158
|
+
parentId: ctx.flags.parent,
|
|
159
|
+
dependencies,
|
|
160
|
+
tags,
|
|
161
|
+
timeout: ctx.flags.timeout,
|
|
162
|
+
metadata: {
|
|
163
|
+
source: 'cli',
|
|
164
|
+
createdBy: 'user'
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
output.writeln();
|
|
168
|
+
output.printSuccess(`Task created: ${result.taskId}`);
|
|
169
|
+
output.writeln();
|
|
170
|
+
output.printTable({
|
|
171
|
+
columns: [
|
|
172
|
+
{ key: 'property', header: 'Property', width: 15 },
|
|
173
|
+
{ key: 'value', header: 'Value', width: 40 }
|
|
174
|
+
],
|
|
175
|
+
data: [
|
|
176
|
+
{ property: 'ID', value: result.taskId },
|
|
177
|
+
{ property: 'Type', value: result.type },
|
|
178
|
+
{ property: 'Description', value: result.description },
|
|
179
|
+
{ property: 'Priority', value: formatPriority(result.priority) },
|
|
180
|
+
{ property: 'Status', value: formatStatus(result.status) },
|
|
181
|
+
{ property: 'Assigned To', value: result.assignedTo?.join(', ') || 'Unassigned' },
|
|
182
|
+
{ property: 'Tags', value: result.tags.join(', ') || 'None' },
|
|
183
|
+
{ property: 'Created', value: new Date(result.createdAt).toLocaleString() }
|
|
184
|
+
]
|
|
185
|
+
});
|
|
186
|
+
if (ctx.flags.format === 'json') {
|
|
187
|
+
output.printJson(result);
|
|
188
|
+
}
|
|
189
|
+
return { success: true, data: result };
|
|
190
|
+
}
|
|
191
|
+
catch (error) {
|
|
192
|
+
if (error instanceof MCPClientError) {
|
|
193
|
+
output.printError(`Failed to create task: ${error.message}`);
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
197
|
+
}
|
|
198
|
+
return { success: false, exitCode: 1 };
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
};
|
|
202
|
+
// List subcommand
|
|
203
|
+
const listCommand = {
|
|
204
|
+
name: 'list',
|
|
205
|
+
aliases: ['ls'],
|
|
206
|
+
description: 'List tasks',
|
|
207
|
+
options: [
|
|
208
|
+
{
|
|
209
|
+
name: 'status',
|
|
210
|
+
short: 's',
|
|
211
|
+
description: 'Filter by status',
|
|
212
|
+
type: 'string',
|
|
213
|
+
choices: ['pending', 'running', 'completed', 'failed', 'cancelled', 'all']
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
name: 'type',
|
|
217
|
+
short: 't',
|
|
218
|
+
description: 'Filter by task type',
|
|
219
|
+
type: 'string'
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
name: 'priority',
|
|
223
|
+
short: 'p',
|
|
224
|
+
description: 'Filter by priority',
|
|
225
|
+
type: 'string'
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
name: 'agent',
|
|
229
|
+
short: 'a',
|
|
230
|
+
description: 'Filter by assigned agent',
|
|
231
|
+
type: 'string'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
name: 'limit',
|
|
235
|
+
short: 'l',
|
|
236
|
+
description: 'Maximum number of tasks to show',
|
|
237
|
+
type: 'number',
|
|
238
|
+
default: 20
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
name: 'all',
|
|
242
|
+
description: 'Show all tasks including completed',
|
|
243
|
+
type: 'boolean',
|
|
244
|
+
default: false
|
|
245
|
+
}
|
|
246
|
+
],
|
|
247
|
+
action: async (ctx) => {
|
|
248
|
+
const status = ctx.flags.all ? 'all' : ctx.flags.status || 'pending,running';
|
|
249
|
+
const limit = ctx.flags.limit;
|
|
250
|
+
try {
|
|
251
|
+
const result = await callMCPTool('task/list', {
|
|
252
|
+
status,
|
|
253
|
+
type: ctx.flags.type,
|
|
254
|
+
priority: ctx.flags.priority,
|
|
255
|
+
agentId: ctx.flags.agent,
|
|
256
|
+
limit,
|
|
257
|
+
offset: 0
|
|
258
|
+
});
|
|
259
|
+
if (ctx.flags.format === 'json') {
|
|
260
|
+
output.printJson(result);
|
|
261
|
+
return { success: true, data: result };
|
|
262
|
+
}
|
|
263
|
+
output.writeln();
|
|
264
|
+
output.writeln(output.bold('Tasks'));
|
|
265
|
+
output.writeln();
|
|
266
|
+
if (result.tasks.length === 0) {
|
|
267
|
+
output.printInfo('No tasks found matching criteria');
|
|
268
|
+
return { success: true, data: result };
|
|
269
|
+
}
|
|
270
|
+
output.printTable({
|
|
271
|
+
columns: [
|
|
272
|
+
{ key: 'id', header: 'ID', width: 15 },
|
|
273
|
+
{ key: 'type', header: 'Type', width: 15 },
|
|
274
|
+
{ key: 'description', header: 'Description', width: 30 },
|
|
275
|
+
{ key: 'priority', header: 'Priority', width: 10 },
|
|
276
|
+
{ key: 'status', header: 'Status', width: 12 },
|
|
277
|
+
{ key: 'progress', header: 'Progress', width: 10 }
|
|
278
|
+
],
|
|
279
|
+
data: result.tasks.map(t => ({
|
|
280
|
+
id: t.id,
|
|
281
|
+
type: t.type,
|
|
282
|
+
description: t.description.length > 27
|
|
283
|
+
? t.description.slice(0, 27) + '...'
|
|
284
|
+
: t.description,
|
|
285
|
+
priority: formatPriority(t.priority),
|
|
286
|
+
status: formatStatus(t.status),
|
|
287
|
+
progress: `${t.progress}%`
|
|
288
|
+
}))
|
|
289
|
+
});
|
|
290
|
+
output.writeln();
|
|
291
|
+
output.printInfo(`Showing ${result.tasks.length} of ${result.total} tasks`);
|
|
292
|
+
return { success: true, data: result };
|
|
293
|
+
}
|
|
294
|
+
catch (error) {
|
|
295
|
+
if (error instanceof MCPClientError) {
|
|
296
|
+
output.printError(`Failed to list tasks: ${error.message}`);
|
|
297
|
+
}
|
|
298
|
+
else {
|
|
299
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
300
|
+
}
|
|
301
|
+
return { success: false, exitCode: 1 };
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
};
|
|
305
|
+
// Status subcommand (get task details)
|
|
306
|
+
const statusCommand = {
|
|
307
|
+
name: 'status',
|
|
308
|
+
aliases: ['info', 'get'],
|
|
309
|
+
description: 'Get task status and details',
|
|
310
|
+
options: [
|
|
311
|
+
{
|
|
312
|
+
name: 'id',
|
|
313
|
+
description: 'Task ID',
|
|
314
|
+
type: 'string'
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: 'logs',
|
|
318
|
+
description: 'Include execution logs',
|
|
319
|
+
type: 'boolean',
|
|
320
|
+
default: false
|
|
321
|
+
}
|
|
322
|
+
],
|
|
323
|
+
action: async (ctx) => {
|
|
324
|
+
let taskId = ctx.args[0] || ctx.flags.id;
|
|
325
|
+
if (!taskId && ctx.interactive) {
|
|
326
|
+
taskId = await input({
|
|
327
|
+
message: 'Enter task ID:',
|
|
328
|
+
validate: (v) => v.length > 0 || 'Task ID is required'
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
if (!taskId) {
|
|
332
|
+
output.printError('Task ID is required');
|
|
333
|
+
return { success: false, exitCode: 1 };
|
|
334
|
+
}
|
|
335
|
+
try {
|
|
336
|
+
const result = await callMCPTool('task/status', {
|
|
337
|
+
taskId,
|
|
338
|
+
includeLogs: ctx.flags.logs,
|
|
339
|
+
includeMetrics: true
|
|
340
|
+
});
|
|
341
|
+
if (ctx.flags.format === 'json') {
|
|
342
|
+
output.printJson(result);
|
|
343
|
+
return { success: true, data: result };
|
|
344
|
+
}
|
|
345
|
+
output.writeln();
|
|
346
|
+
output.printBox([
|
|
347
|
+
`Type: ${result.type}`,
|
|
348
|
+
`Status: ${formatStatus(result.status)}`,
|
|
349
|
+
`Priority: ${formatPriority(result.priority)}`,
|
|
350
|
+
`Progress: ${result.progress}%`,
|
|
351
|
+
'',
|
|
352
|
+
`Description: ${result.description}`
|
|
353
|
+
].join('\n'), `Task: ${result.id}`);
|
|
354
|
+
// Assignment info
|
|
355
|
+
output.writeln();
|
|
356
|
+
output.writeln(output.bold('Assignment'));
|
|
357
|
+
output.printTable({
|
|
358
|
+
columns: [
|
|
359
|
+
{ key: 'property', header: 'Property', width: 15 },
|
|
360
|
+
{ key: 'value', header: 'Value', width: 40 }
|
|
361
|
+
],
|
|
362
|
+
data: [
|
|
363
|
+
{ property: 'Assigned To', value: result.assignedTo?.join(', ') || 'Unassigned' },
|
|
364
|
+
{ property: 'Parent Task', value: result.parentId || 'None' },
|
|
365
|
+
{ property: 'Dependencies', value: result.dependencies.join(', ') || 'None' },
|
|
366
|
+
{ property: 'Dependents', value: result.dependents.join(', ') || 'None' },
|
|
367
|
+
{ property: 'Tags', value: result.tags.join(', ') || 'None' }
|
|
368
|
+
]
|
|
369
|
+
});
|
|
370
|
+
// Timeline
|
|
371
|
+
output.writeln();
|
|
372
|
+
output.writeln(output.bold('Timeline'));
|
|
373
|
+
output.printTable({
|
|
374
|
+
columns: [
|
|
375
|
+
{ key: 'event', header: 'Event', width: 15 },
|
|
376
|
+
{ key: 'time', header: 'Time', width: 30 }
|
|
377
|
+
],
|
|
378
|
+
data: [
|
|
379
|
+
{ event: 'Created', time: new Date(result.createdAt).toLocaleString() },
|
|
380
|
+
{ event: 'Started', time: result.startedAt ? new Date(result.startedAt).toLocaleString() : '-' },
|
|
381
|
+
{ event: 'Completed', time: result.completedAt ? new Date(result.completedAt).toLocaleString() : '-' }
|
|
382
|
+
]
|
|
383
|
+
});
|
|
384
|
+
// Metrics
|
|
385
|
+
if (result.metrics) {
|
|
386
|
+
output.writeln();
|
|
387
|
+
output.writeln(output.bold('Metrics'));
|
|
388
|
+
output.printTable({
|
|
389
|
+
columns: [
|
|
390
|
+
{ key: 'metric', header: 'Metric', width: 20 },
|
|
391
|
+
{ key: 'value', header: 'Value', width: 20, align: 'right' }
|
|
392
|
+
],
|
|
393
|
+
data: [
|
|
394
|
+
{ metric: 'Execution Time', value: `${(result.metrics.executionTime / 1000).toFixed(2)}s` },
|
|
395
|
+
{ metric: 'Retries', value: result.metrics.retries },
|
|
396
|
+
{ metric: 'Tokens Used', value: result.metrics.tokensUsed.toLocaleString() }
|
|
397
|
+
]
|
|
398
|
+
});
|
|
399
|
+
}
|
|
400
|
+
// Error if failed
|
|
401
|
+
if (result.status === 'failed' && result.error) {
|
|
402
|
+
output.writeln();
|
|
403
|
+
output.printError(`Error: ${result.error}`);
|
|
404
|
+
}
|
|
405
|
+
// Logs if requested
|
|
406
|
+
if (ctx.flags.logs && result.logs && result.logs.length > 0) {
|
|
407
|
+
output.writeln();
|
|
408
|
+
output.writeln(output.bold('Execution Logs'));
|
|
409
|
+
for (const log of result.logs.slice(-20)) {
|
|
410
|
+
const time = new Date(log.timestamp).toLocaleTimeString();
|
|
411
|
+
const level = log.level === 'error' ? output.error(`[${log.level}]`) :
|
|
412
|
+
log.level === 'warn' ? output.warning(`[${log.level}]`) :
|
|
413
|
+
output.dim(`[${log.level}]`);
|
|
414
|
+
output.writeln(` ${output.dim(time)} ${level} ${log.message}`);
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
return { success: true, data: result };
|
|
418
|
+
}
|
|
419
|
+
catch (error) {
|
|
420
|
+
if (error instanceof MCPClientError) {
|
|
421
|
+
output.printError(`Failed to get task status: ${error.message}`);
|
|
422
|
+
}
|
|
423
|
+
else {
|
|
424
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
425
|
+
}
|
|
426
|
+
return { success: false, exitCode: 1 };
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
};
|
|
430
|
+
// Cancel subcommand
|
|
431
|
+
const cancelCommand = {
|
|
432
|
+
name: 'cancel',
|
|
433
|
+
aliases: ['abort', 'stop'],
|
|
434
|
+
description: 'Cancel a running task',
|
|
435
|
+
options: [
|
|
436
|
+
{
|
|
437
|
+
name: 'force',
|
|
438
|
+
short: 'f',
|
|
439
|
+
description: 'Force cancel without confirmation',
|
|
440
|
+
type: 'boolean',
|
|
441
|
+
default: false
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
name: 'reason',
|
|
445
|
+
short: 'r',
|
|
446
|
+
description: 'Cancellation reason',
|
|
447
|
+
type: 'string'
|
|
448
|
+
}
|
|
449
|
+
],
|
|
450
|
+
action: async (ctx) => {
|
|
451
|
+
const taskId = ctx.args[0];
|
|
452
|
+
const force = ctx.flags.force;
|
|
453
|
+
const reason = ctx.flags.reason;
|
|
454
|
+
if (!taskId) {
|
|
455
|
+
output.printError('Task ID is required');
|
|
456
|
+
return { success: false, exitCode: 1 };
|
|
457
|
+
}
|
|
458
|
+
if (!force && ctx.interactive) {
|
|
459
|
+
const confirmed = await confirm({
|
|
460
|
+
message: `Are you sure you want to cancel task ${taskId}?`,
|
|
461
|
+
default: false
|
|
462
|
+
});
|
|
463
|
+
if (!confirmed) {
|
|
464
|
+
output.printInfo('Operation cancelled');
|
|
465
|
+
return { success: true };
|
|
466
|
+
}
|
|
467
|
+
}
|
|
468
|
+
try {
|
|
469
|
+
const result = await callMCPTool('task/cancel', {
|
|
470
|
+
taskId,
|
|
471
|
+
reason: reason || 'Cancelled by user via CLI'
|
|
472
|
+
});
|
|
473
|
+
output.writeln();
|
|
474
|
+
output.printSuccess(`Task ${taskId} cancelled`);
|
|
475
|
+
output.printInfo(`Previous status: ${result.previousStatus}`);
|
|
476
|
+
if (ctx.flags.format === 'json') {
|
|
477
|
+
output.printJson(result);
|
|
478
|
+
}
|
|
479
|
+
return { success: true, data: result };
|
|
480
|
+
}
|
|
481
|
+
catch (error) {
|
|
482
|
+
if (error instanceof MCPClientError) {
|
|
483
|
+
output.printError(`Failed to cancel task: ${error.message}`);
|
|
484
|
+
}
|
|
485
|
+
else {
|
|
486
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
487
|
+
}
|
|
488
|
+
return { success: false, exitCode: 1 };
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
};
|
|
492
|
+
// Assign subcommand
|
|
493
|
+
const assignCommand = {
|
|
494
|
+
name: 'assign',
|
|
495
|
+
description: 'Assign a task to agent(s)',
|
|
496
|
+
options: [
|
|
497
|
+
{
|
|
498
|
+
name: 'agent',
|
|
499
|
+
short: 'a',
|
|
500
|
+
description: 'Agent ID(s) to assign (comma-separated)',
|
|
501
|
+
type: 'string'
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
name: 'unassign',
|
|
505
|
+
description: 'Remove current assignment',
|
|
506
|
+
type: 'boolean',
|
|
507
|
+
default: false
|
|
508
|
+
}
|
|
509
|
+
],
|
|
510
|
+
action: async (ctx) => {
|
|
511
|
+
const taskId = ctx.args[0];
|
|
512
|
+
const agentIds = ctx.flags.agent;
|
|
513
|
+
const unassign = ctx.flags.unassign;
|
|
514
|
+
if (!taskId) {
|
|
515
|
+
output.printError('Task ID is required');
|
|
516
|
+
return { success: false, exitCode: 1 };
|
|
517
|
+
}
|
|
518
|
+
if (!agentIds && !unassign) {
|
|
519
|
+
// Interactive agent selection
|
|
520
|
+
if (ctx.interactive) {
|
|
521
|
+
try {
|
|
522
|
+
const agents = await callMCPTool('agent/list', { status: 'active,idle' });
|
|
523
|
+
if (agents.agents.length === 0) {
|
|
524
|
+
output.printWarning('No available agents');
|
|
525
|
+
return { success: false, exitCode: 1 };
|
|
526
|
+
}
|
|
527
|
+
const selectedAgents = await multiSelect({
|
|
528
|
+
message: 'Select agent(s) to assign:',
|
|
529
|
+
options: agents.agents.map(a => ({
|
|
530
|
+
value: a.id,
|
|
531
|
+
label: a.id,
|
|
532
|
+
hint: `${a.type} - ${a.status}`
|
|
533
|
+
})),
|
|
534
|
+
required: true
|
|
535
|
+
});
|
|
536
|
+
if (selectedAgents.length === 0) {
|
|
537
|
+
output.printInfo('No agents selected');
|
|
538
|
+
return { success: true };
|
|
539
|
+
}
|
|
540
|
+
// Continue with assignment
|
|
541
|
+
const result = await callMCPTool('task/assign', {
|
|
542
|
+
taskId,
|
|
543
|
+
agentIds: selectedAgents
|
|
544
|
+
});
|
|
545
|
+
output.writeln();
|
|
546
|
+
output.printSuccess(`Task ${taskId} assigned to ${result.assignedTo.join(', ')}`);
|
|
547
|
+
return { success: true, data: result };
|
|
548
|
+
}
|
|
549
|
+
catch (error) {
|
|
550
|
+
if (error instanceof Error && error.message === 'User cancelled') {
|
|
551
|
+
output.printInfo('Operation cancelled');
|
|
552
|
+
return { success: true };
|
|
553
|
+
}
|
|
554
|
+
throw error;
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
output.printError('Agent ID is required. Use --agent flag or run in interactive mode');
|
|
558
|
+
return { success: false, exitCode: 1 };
|
|
559
|
+
}
|
|
560
|
+
try {
|
|
561
|
+
const result = await callMCPTool('task/assign', {
|
|
562
|
+
taskId,
|
|
563
|
+
agentIds: unassign ? [] : agentIds.split(',').map(id => id.trim()),
|
|
564
|
+
unassign
|
|
565
|
+
});
|
|
566
|
+
output.writeln();
|
|
567
|
+
if (unassign) {
|
|
568
|
+
output.printSuccess(`Task ${taskId} unassigned`);
|
|
569
|
+
}
|
|
570
|
+
else {
|
|
571
|
+
output.printSuccess(`Task ${taskId} assigned to ${result.assignedTo.join(', ')}`);
|
|
572
|
+
}
|
|
573
|
+
if (ctx.flags.format === 'json') {
|
|
574
|
+
output.printJson(result);
|
|
575
|
+
}
|
|
576
|
+
return { success: true, data: result };
|
|
577
|
+
}
|
|
578
|
+
catch (error) {
|
|
579
|
+
if (error instanceof MCPClientError) {
|
|
580
|
+
output.printError(`Failed to assign task: ${error.message}`);
|
|
581
|
+
}
|
|
582
|
+
else {
|
|
583
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
584
|
+
}
|
|
585
|
+
return { success: false, exitCode: 1 };
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
};
|
|
589
|
+
// Retry subcommand
|
|
590
|
+
const retryCommand = {
|
|
591
|
+
name: 'retry',
|
|
592
|
+
aliases: ['rerun'],
|
|
593
|
+
description: 'Retry a failed task',
|
|
594
|
+
options: [
|
|
595
|
+
{
|
|
596
|
+
name: 'reset-state',
|
|
597
|
+
description: 'Reset task state completely',
|
|
598
|
+
type: 'boolean',
|
|
599
|
+
default: false
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
action: async (ctx) => {
|
|
603
|
+
const taskId = ctx.args[0];
|
|
604
|
+
const resetState = ctx.flags['reset-state'];
|
|
605
|
+
if (!taskId) {
|
|
606
|
+
output.printError('Task ID is required');
|
|
607
|
+
return { success: false, exitCode: 1 };
|
|
608
|
+
}
|
|
609
|
+
try {
|
|
610
|
+
const result = await callMCPTool('task/retry', {
|
|
611
|
+
taskId,
|
|
612
|
+
resetState
|
|
613
|
+
});
|
|
614
|
+
output.writeln();
|
|
615
|
+
output.printSuccess(`Task ${taskId} retried`);
|
|
616
|
+
output.printInfo(`New task ID: ${result.newTaskId}`);
|
|
617
|
+
output.printInfo(`Status: ${formatStatus(result.status)}`);
|
|
618
|
+
if (ctx.flags.format === 'json') {
|
|
619
|
+
output.printJson(result);
|
|
620
|
+
}
|
|
621
|
+
return { success: true, data: result };
|
|
622
|
+
}
|
|
623
|
+
catch (error) {
|
|
624
|
+
if (error instanceof MCPClientError) {
|
|
625
|
+
output.printError(`Failed to retry task: ${error.message}`);
|
|
626
|
+
}
|
|
627
|
+
else {
|
|
628
|
+
output.printError(`Unexpected error: ${String(error)}`);
|
|
629
|
+
}
|
|
630
|
+
return { success: false, exitCode: 1 };
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
};
|
|
634
|
+
// Main task command
|
|
635
|
+
export const taskCommand = {
|
|
636
|
+
name: 'task',
|
|
637
|
+
description: 'Task management commands',
|
|
638
|
+
subcommands: [createCommand, listCommand, statusCommand, cancelCommand, assignCommand, retryCommand],
|
|
639
|
+
options: [],
|
|
640
|
+
examples: [
|
|
641
|
+
{ command: 'claude-flow task create -t implementation -d "Add user auth"', description: 'Create a task' },
|
|
642
|
+
{ command: 'claude-flow task list', description: 'List pending/running tasks' },
|
|
643
|
+
{ command: 'claude-flow task list --all', description: 'List all tasks' },
|
|
644
|
+
{ command: 'claude-flow task status task-123', description: 'Get task details' },
|
|
645
|
+
{ command: 'claude-flow task cancel task-123', description: 'Cancel a task' },
|
|
646
|
+
{ command: 'claude-flow task assign task-123 --agent coder-1', description: 'Assign task to agent' },
|
|
647
|
+
{ command: 'claude-flow task retry task-123', description: 'Retry a failed task' }
|
|
648
|
+
],
|
|
649
|
+
action: async (ctx) => {
|
|
650
|
+
// Show help if no subcommand
|
|
651
|
+
output.writeln();
|
|
652
|
+
output.writeln(output.bold('Task Management Commands'));
|
|
653
|
+
output.writeln();
|
|
654
|
+
output.writeln('Usage: claude-flow task <subcommand> [options]');
|
|
655
|
+
output.writeln();
|
|
656
|
+
output.writeln('Subcommands:');
|
|
657
|
+
output.printList([
|
|
658
|
+
`${output.highlight('create')} - Create a new task`,
|
|
659
|
+
`${output.highlight('list')} - List tasks`,
|
|
660
|
+
`${output.highlight('status')} - Get task details`,
|
|
661
|
+
`${output.highlight('cancel')} - Cancel a running task`,
|
|
662
|
+
`${output.highlight('assign')} - Assign task to agent(s)`,
|
|
663
|
+
`${output.highlight('retry')} - Retry a failed task`
|
|
664
|
+
]);
|
|
665
|
+
output.writeln();
|
|
666
|
+
output.writeln('Run "claude-flow task <subcommand> --help" for subcommand help');
|
|
667
|
+
return { success: true };
|
|
668
|
+
}
|
|
669
|
+
};
|
|
670
|
+
export default taskCommand;
|
|
671
|
+
//# sourceMappingURL=task.js.map
|