claude-flow 2.0.0-alpha.33 โ 2.0.0-alpha.4
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/settings.json +5 -5
- package/README.md +639 -643
- package/bin/claude-flow +1 -1
- package/dist/adapters/cliffy-node.d.ts +45 -0
- package/dist/adapters/cliffy-node.d.ts.map +1 -0
- package/dist/adapters/cliffy-node.js +61 -0
- package/dist/adapters/cliffy-node.js.map +1 -0
- package/dist/agents/agent-manager.d.ts +191 -0
- package/dist/agents/agent-manager.d.ts.map +1 -0
- package/dist/agents/agent-manager.js +969 -0
- package/dist/agents/agent-manager.js.map +1 -0
- package/dist/agents/agent-registry.d.ts +112 -0
- package/dist/agents/agent-registry.d.ts.map +1 -0
- package/dist/agents/agent-registry.js +341 -0
- package/dist/agents/agent-registry.js.map +1 -0
- package/dist/cli/agents/analyst.d.ts +28 -0
- package/dist/cli/agents/analyst.d.ts.map +1 -0
- package/dist/cli/agents/analyst.js +718 -0
- package/dist/cli/agents/analyst.js.map +1 -0
- package/dist/cli/agents/architect.d.ts +27 -0
- package/dist/cli/agents/architect.d.ts.map +1 -0
- package/dist/cli/agents/architect.js +729 -0
- package/dist/cli/agents/architect.js.map +1 -0
- package/dist/cli/agents/base-agent.d.ts +80 -0
- package/dist/cli/agents/base-agent.d.ts.map +1 -0
- package/dist/cli/agents/base-agent.js +385 -0
- package/dist/cli/agents/base-agent.js.map +1 -0
- package/dist/cli/agents/capabilities.d.ts +106 -0
- package/dist/cli/agents/capabilities.d.ts.map +1 -0
- package/dist/cli/agents/capabilities.js +556 -0
- package/dist/cli/agents/capabilities.js.map +1 -0
- package/dist/cli/agents/coder.d.ts +34 -0
- package/dist/cli/agents/coder.d.ts.map +1 -0
- package/dist/cli/agents/coder.js +806 -0
- package/dist/cli/agents/coder.js.map +1 -0
- package/dist/cli/agents/coordinator.d.ts +25 -0
- package/dist/cli/agents/coordinator.d.ts.map +1 -0
- package/dist/cli/agents/coordinator.js +454 -0
- package/dist/cli/agents/coordinator.js.map +1 -0
- package/dist/cli/agents/hive-agents.d.ts +85 -0
- package/dist/cli/agents/hive-agents.d.ts.map +1 -0
- package/dist/cli/agents/hive-agents.js +549 -0
- package/dist/cli/agents/hive-agents.js.map +1 -0
- package/dist/cli/agents/index.d.ts +111 -0
- package/dist/cli/agents/index.d.ts.map +1 -0
- package/dist/cli/agents/index.js +276 -0
- package/dist/cli/agents/index.js.map +1 -0
- package/dist/cli/agents/researcher.d.ts +24 -0
- package/dist/cli/agents/researcher.d.ts.map +1 -0
- package/dist/cli/agents/researcher.js +356 -0
- package/dist/cli/agents/researcher.js.map +1 -0
- package/dist/cli/agents/tester.d.ts +27 -0
- package/dist/cli/agents/tester.d.ts.map +1 -0
- package/dist/cli/agents/tester.js +594 -0
- package/dist/cli/agents/tester.js.map +1 -0
- package/dist/cli/cli-core.d.ts +49 -0
- package/dist/cli/cli-core.d.ts.map +1 -0
- package/dist/cli/cli-core.js +263 -0
- package/dist/cli/cli-core.js.map +1 -0
- package/dist/cli/commands/advanced-memory-commands.d.ts +2 -0
- package/dist/cli/commands/advanced-memory-commands.d.ts.map +1 -0
- package/dist/cli/commands/advanced-memory-commands.js +849 -0
- package/dist/cli/commands/advanced-memory-commands.js.map +1 -0
- package/dist/cli/commands/agent-simple.d.ts +12 -0
- package/dist/cli/commands/agent-simple.d.ts.map +1 -0
- package/dist/cli/commands/agent-simple.js +353 -0
- package/dist/cli/commands/agent-simple.js.map +1 -0
- package/dist/cli/commands/agent.d.ts +7 -0
- package/dist/cli/commands/agent.d.ts.map +1 -0
- package/dist/cli/commands/agent.js +369 -0
- package/dist/cli/commands/agent.js.map +1 -0
- package/dist/cli/commands/claude.d.ts +3 -0
- package/dist/cli/commands/claude.d.ts.map +1 -0
- package/dist/cli/commands/claude.js +154 -0
- package/dist/cli/commands/claude.js.map +1 -0
- package/dist/cli/commands/config-integration.d.ts +10 -0
- package/dist/cli/commands/config-integration.d.ts.map +1 -0
- package/dist/cli/commands/config-integration.js +416 -0
- package/dist/cli/commands/config-integration.js.map +1 -0
- package/dist/cli/commands/config.d.ts +5 -0
- package/dist/cli/commands/config.d.ts.map +1 -0
- package/dist/cli/commands/config.js +89 -0
- package/dist/cli/commands/config.js.map +1 -0
- package/dist/cli/commands/enterprise.d.ts +3 -0
- package/dist/cli/commands/enterprise.d.ts.map +1 -0
- package/dist/cli/commands/enterprise.js +1486 -0
- package/dist/cli/commands/enterprise.js.map +1 -0
- package/dist/cli/commands/help.d.ts +6 -0
- package/dist/cli/commands/help.d.ts.map +1 -0
- package/dist/cli/commands/help.js +786 -0
- package/dist/cli/commands/help.js.map +1 -0
- package/dist/cli/commands/hive-mind/index.d.ts +15 -0
- package/dist/cli/commands/hive-mind/index.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/index.js +22 -0
- package/dist/cli/commands/hive-mind/index.js.map +1 -0
- package/dist/cli/commands/hive-mind/init.d.ts +10 -0
- package/dist/cli/commands/hive-mind/init.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/init.js +68 -0
- package/dist/cli/commands/hive-mind/init.js.map +1 -0
- package/dist/cli/commands/hive-mind/optimize-memory.d.ts +8 -0
- package/dist/cli/commands/hive-mind/optimize-memory.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/optimize-memory.js +391 -0
- package/dist/cli/commands/hive-mind/optimize-memory.js.map +1 -0
- package/dist/cli/commands/hive-mind/spawn.d.ts +10 -0
- package/dist/cli/commands/hive-mind/spawn.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/spawn.js +147 -0
- package/dist/cli/commands/hive-mind/spawn.js.map +1 -0
- package/dist/cli/commands/hive-mind/status.d.ts +10 -0
- package/dist/cli/commands/hive-mind/status.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/status.js +209 -0
- package/dist/cli/commands/hive-mind/status.js.map +1 -0
- package/dist/cli/commands/hive-mind/task.d.ts +10 -0
- package/dist/cli/commands/hive-mind/task.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/task.js +288 -0
- package/dist/cli/commands/hive-mind/task.js.map +1 -0
- package/dist/cli/commands/hive-mind/wizard.d.ts +10 -0
- package/dist/cli/commands/hive-mind/wizard.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/wizard.js +513 -0
- package/dist/cli/commands/hive-mind/wizard.js.map +1 -0
- package/dist/cli/commands/hive.d.ts +6 -0
- package/dist/cli/commands/hive.d.ts.map +1 -0
- package/dist/cli/commands/hive.js +374 -0
- package/dist/cli/commands/hive.js.map +1 -0
- package/dist/cli/commands/index.d.ts +3 -0
- package/dist/cli/commands/index.d.ts.map +1 -0
- package/dist/cli/commands/index.js +2416 -0
- package/dist/cli/commands/index.js.map +1 -0
- package/dist/cli/commands/mcp.d.ts +6 -0
- package/dist/cli/commands/mcp.d.ts.map +1 -0
- package/dist/cli/commands/mcp.js +177 -0
- package/dist/cli/commands/mcp.js.map +1 -0
- package/dist/cli/commands/memory.d.ts +30 -0
- package/dist/cli/commands/memory.d.ts.map +1 -0
- package/dist/cli/commands/memory.js +225 -0
- package/dist/cli/commands/memory.js.map +1 -0
- package/dist/cli/commands/migrate.d.ts +6 -0
- package/dist/cli/commands/migrate.d.ts.map +1 -0
- package/dist/cli/commands/migrate.js +139 -0
- package/dist/cli/commands/migrate.js.map +1 -0
- package/dist/cli/commands/monitor.d.ts +6 -0
- package/dist/cli/commands/monitor.d.ts.map +1 -0
- package/dist/cli/commands/monitor.js +477 -0
- package/dist/cli/commands/monitor.js.map +1 -0
- package/dist/cli/commands/ruv-swarm.d.ts +10 -0
- package/dist/cli/commands/ruv-swarm.d.ts.map +1 -0
- package/dist/cli/commands/ruv-swarm.js +563 -0
- package/dist/cli/commands/ruv-swarm.js.map +1 -0
- package/dist/cli/commands/session.d.ts +6 -0
- package/dist/cli/commands/session.d.ts.map +1 -0
- package/dist/cli/commands/session.js +543 -0
- package/dist/cli/commands/session.js.map +1 -0
- package/dist/cli/commands/sparc.d.ts +3 -0
- package/dist/cli/commands/sparc.d.ts.map +1 -0
- package/dist/cli/commands/sparc.js +452 -0
- package/dist/cli/commands/sparc.js.map +1 -0
- package/dist/cli/commands/start/event-emitter.d.ts +13 -0
- package/dist/cli/commands/start/event-emitter.d.ts.map +1 -0
- package/dist/cli/commands/start/event-emitter.js +35 -0
- package/dist/cli/commands/start/event-emitter.js.map +1 -0
- package/dist/cli/commands/start/index.d.ts +10 -0
- package/dist/cli/commands/start/index.d.ts.map +1 -0
- package/dist/cli/commands/start/index.js +9 -0
- package/dist/cli/commands/start/index.js.map +1 -0
- package/dist/cli/commands/start/process-manager.d.ts +31 -0
- package/dist/cli/commands/start/process-manager.d.ts.map +1 -0
- package/dist/cli/commands/start/process-manager.js +281 -0
- package/dist/cli/commands/start/process-manager.js.map +1 -0
- package/dist/cli/commands/start/process-ui-simple.d.ts +25 -0
- package/dist/cli/commands/start/process-ui-simple.d.ts.map +1 -0
- package/dist/cli/commands/start/process-ui-simple.js +334 -0
- package/dist/cli/commands/start/process-ui-simple.js.map +1 -0
- package/dist/cli/commands/start/process-ui.d.ts +5 -0
- package/dist/cli/commands/start/process-ui.d.ts.map +1 -0
- package/dist/cli/commands/start/process-ui.js +5 -0
- package/dist/cli/commands/start/process-ui.js.map +1 -0
- package/dist/cli/commands/start/start-command.d.ts +6 -0
- package/dist/cli/commands/start/start-command.d.ts.map +1 -0
- package/dist/cli/commands/start/start-command.js +450 -0
- package/dist/cli/commands/start/start-command.js.map +1 -0
- package/dist/cli/commands/start/system-monitor.d.ts +22 -0
- package/dist/cli/commands/start/system-monitor.d.ts.map +1 -0
- package/dist/cli/commands/start/system-monitor.js +267 -0
- package/dist/cli/commands/start/system-monitor.js.map +1 -0
- package/dist/cli/commands/start/types.d.ts +64 -0
- package/dist/cli/commands/start/types.d.ts.map +1 -0
- package/dist/cli/commands/start/types.js +22 -0
- package/dist/cli/commands/start/types.js.map +1 -0
- package/dist/cli/commands/start.d.ts +6 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +6 -0
- package/dist/cli/commands/start.js.map +1 -0
- package/dist/cli/commands/status.d.ts +6 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +312 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/swarm-new.d.ts +3 -0
- package/dist/cli/commands/swarm-new.d.ts.map +1 -0
- package/dist/cli/commands/swarm-new.js +989 -0
- package/dist/cli/commands/swarm-new.js.map +1 -0
- package/dist/cli/commands/swarm-spawn.d.ts +24 -0
- package/dist/cli/commands/swarm-spawn.d.ts.map +1 -0
- package/dist/cli/commands/swarm-spawn.js +52 -0
- package/dist/cli/commands/swarm-spawn.js.map +1 -0
- package/dist/cli/commands/swarm.d.ts +3 -0
- package/dist/cli/commands/swarm.d.ts.map +1 -0
- package/dist/cli/commands/swarm.js +460 -0
- package/dist/cli/commands/swarm.js.map +1 -0
- package/dist/cli/commands/task.d.ts +6 -0
- package/dist/cli/commands/task.d.ts.map +1 -0
- package/dist/cli/commands/task.js +72 -0
- package/dist/cli/commands/task.js.map +1 -0
- package/dist/cli/commands/workflow.d.ts +6 -0
- package/dist/cli/commands/workflow.d.ts.map +1 -0
- package/dist/cli/commands/workflow.js +618 -0
- package/dist/cli/commands/workflow.js.map +1 -0
- package/dist/cli/completion.d.ts +16 -0
- package/dist/cli/completion.d.ts.map +1 -0
- package/dist/cli/completion.js +535 -0
- package/dist/cli/completion.js.map +1 -0
- package/dist/cli/formatter.d.ts +66 -0
- package/dist/cli/formatter.d.ts.map +1 -0
- package/dist/cli/formatter.js +277 -0
- package/dist/cli/formatter.js.map +1 -0
- package/dist/cli/index-remote.d.ts +3 -0
- package/dist/cli/index-remote.d.ts.map +1 -0
- package/dist/cli/index-remote.js +126 -0
- package/dist/cli/index-remote.js.map +1 -0
- package/dist/cli/index.d.ts +7 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +197 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/init/batch-tools.d.ts +2 -0
- package/dist/cli/init/batch-tools.d.ts.map +1 -0
- package/dist/cli/init/batch-tools.js +387 -0
- package/dist/cli/init/batch-tools.js.map +1 -0
- package/dist/cli/init/claude-config.d.ts +3 -0
- package/dist/cli/init/claude-config.d.ts.map +1 -0
- package/dist/cli/init/claude-config.js +289 -0
- package/dist/cli/init/claude-config.js.map +1 -0
- package/dist/cli/init/directory-structure.d.ts +2 -0
- package/dist/cli/init/directory-structure.d.ts.map +1 -0
- package/dist/cli/init/directory-structure.js +144 -0
- package/dist/cli/init/directory-structure.js.map +1 -0
- package/dist/cli/init/index.d.ts +6 -0
- package/dist/cli/init/index.d.ts.map +1 -0
- package/dist/cli/init/index.js +52 -0
- package/dist/cli/init/index.js.map +1 -0
- package/dist/cli/init/sparc-environment.d.ts +2 -0
- package/dist/cli/init/sparc-environment.d.ts.map +1 -0
- package/dist/cli/init/sparc-environment.js +426 -0
- package/dist/cli/init/sparc-environment.js.map +1 -0
- package/dist/cli/init/swarm-commands.d.ts +2 -0
- package/dist/cli/init/swarm-commands.d.ts.map +1 -0
- package/dist/cli/init/swarm-commands.js +795 -0
- package/dist/cli/init/swarm-commands.js.map +1 -0
- package/dist/cli/init/utils.d.ts +5 -0
- package/dist/cli/init/utils.d.ts.map +1 -0
- package/dist/cli/init/utils.js +14 -0
- package/dist/cli/init/utils.js.map +1 -0
- package/dist/cli/main.d.ts +3 -0
- package/dist/cli/main.d.ts.map +1 -0
- package/dist/cli/main.js +26 -0
- package/dist/cli/main.js.map +1 -0
- package/dist/cli/node-repl.d.ts +5 -0
- package/dist/cli/node-repl.d.ts.map +1 -0
- package/dist/cli/node-repl.js +677 -0
- package/dist/cli/node-repl.js.map +1 -0
- package/dist/cli/repl.d.ts +5 -0
- package/dist/cli/repl.d.ts.map +1 -0
- package/dist/cli/repl.js +909 -0
- package/dist/cli/repl.js.map +1 -0
- package/dist/cli/simple-cli.d.ts +3 -0
- package/dist/cli/simple-cli.d.ts.map +1 -0
- package/dist/cli/simple-cli.js +3059 -0
- package/dist/cli/simple-cli.js.map +1 -0
- package/dist/cli/simple-mcp.d.ts +6 -0
- package/dist/cli/simple-mcp.d.ts.map +1 -0
- package/dist/cli/simple-mcp.js +107 -0
- package/dist/cli/simple-mcp.js.map +1 -0
- package/dist/cli/simple-orchestrator.d.ts +16 -0
- package/dist/cli/simple-orchestrator.d.ts.map +1 -0
- package/dist/cli/simple-orchestrator.js +833 -0
- package/dist/cli/simple-orchestrator.js.map +1 -0
- package/dist/cli/ui/compatible-ui.d.ts +45 -0
- package/dist/cli/ui/compatible-ui.d.ts.map +1 -0
- package/dist/cli/ui/compatible-ui.js +318 -0
- package/dist/cli/ui/compatible-ui.js.map +1 -0
- package/dist/cli/ui/fallback-handler.d.ts +26 -0
- package/dist/cli/ui/fallback-handler.d.ts.map +1 -0
- package/dist/cli/ui/fallback-handler.js +163 -0
- package/dist/cli/ui/fallback-handler.js.map +1 -0
- package/dist/cli/ui/index.d.ts +11 -0
- package/dist/cli/ui/index.d.ts.map +1 -0
- package/dist/cli/ui/index.js +33 -0
- package/dist/cli/ui/index.js.map +1 -0
- package/dist/cli/utils/environment-detector.d.ts +52 -0
- package/dist/cli/utils/environment-detector.d.ts.map +1 -0
- package/dist/cli/utils/environment-detector.js +238 -0
- package/dist/cli/utils/environment-detector.js.map +1 -0
- package/dist/cli/utils/prompt-defaults.d.ts +82 -0
- package/dist/cli/utils/prompt-defaults.d.ts.map +1 -0
- package/dist/cli/utils/prompt-defaults.js +253 -0
- package/dist/cli/utils/prompt-defaults.js.map +1 -0
- package/dist/communication/message-bus.d.ts +283 -0
- package/dist/communication/message-bus.d.ts.map +1 -0
- package/dist/communication/message-bus.js +954 -0
- package/dist/communication/message-bus.js.map +1 -0
- package/dist/config/config-manager.d.ts +174 -0
- package/dist/config/config-manager.d.ts.map +1 -0
- package/dist/config/config-manager.js +443 -0
- package/dist/config/config-manager.js.map +1 -0
- package/dist/config/ruv-swarm-config.d.ts +167 -0
- package/dist/config/ruv-swarm-config.d.ts.map +1 -0
- package/dist/config/ruv-swarm-config.js +274 -0
- package/dist/config/ruv-swarm-config.js.map +1 -0
- package/dist/config/ruv-swarm-integration.d.ts +93 -0
- package/dist/config/ruv-swarm-integration.d.ts.map +1 -0
- package/dist/config/ruv-swarm-integration.js +292 -0
- package/dist/config/ruv-swarm-integration.js.map +1 -0
- package/dist/constants/agent-types.d.ts +46 -0
- package/dist/constants/agent-types.d.ts.map +1 -0
- package/dist/constants/agent-types.js +50 -0
- package/dist/constants/agent-types.js.map +1 -0
- package/dist/coordination/advanced-scheduler.d.ts +121 -0
- package/dist/coordination/advanced-scheduler.d.ts.map +1 -0
- package/dist/coordination/advanced-scheduler.js +386 -0
- package/dist/coordination/advanced-scheduler.js.map +1 -0
- package/dist/coordination/advanced-task-executor.d.ts +100 -0
- package/dist/coordination/advanced-task-executor.d.ts.map +1 -0
- package/dist/coordination/advanced-task-executor.js +459 -0
- package/dist/coordination/advanced-task-executor.js.map +1 -0
- package/dist/coordination/background-executor.d.ts +69 -0
- package/dist/coordination/background-executor.d.ts.map +1 -0
- package/dist/coordination/background-executor.js +362 -0
- package/dist/coordination/background-executor.js.map +1 -0
- package/dist/coordination/circuit-breaker.d.ts +124 -0
- package/dist/coordination/circuit-breaker.d.ts.map +1 -0
- package/dist/coordination/circuit-breaker.js +298 -0
- package/dist/coordination/circuit-breaker.js.map +1 -0
- package/dist/coordination/conflict-resolution.d.ts +133 -0
- package/dist/coordination/conflict-resolution.d.ts.map +1 -0
- package/dist/coordination/conflict-resolution.js +358 -0
- package/dist/coordination/conflict-resolution.js.map +1 -0
- package/dist/coordination/dependency-graph.d.ts +78 -0
- package/dist/coordination/dependency-graph.d.ts.map +1 -0
- package/dist/coordination/dependency-graph.js +386 -0
- package/dist/coordination/dependency-graph.js.map +1 -0
- package/dist/coordination/hive-orchestrator.d.ts +118 -0
- package/dist/coordination/hive-orchestrator.d.ts.map +1 -0
- package/dist/coordination/hive-orchestrator.js +321 -0
- package/dist/coordination/hive-orchestrator.js.map +1 -0
- package/dist/coordination/hive-protocol.d.ts +117 -0
- package/dist/coordination/hive-protocol.d.ts.map +1 -0
- package/dist/coordination/hive-protocol.js +373 -0
- package/dist/coordination/hive-protocol.js.map +1 -0
- package/dist/coordination/index.d.ts +14 -0
- package/dist/coordination/index.d.ts.map +1 -0
- package/dist/coordination/index.js +21 -0
- package/dist/coordination/index.js.map +1 -0
- package/dist/coordination/load-balancer.d.ts +139 -0
- package/dist/coordination/load-balancer.d.ts.map +1 -0
- package/dist/coordination/load-balancer.js +691 -0
- package/dist/coordination/load-balancer.js.map +1 -0
- package/dist/coordination/manager.d.ts +66 -0
- package/dist/coordination/manager.d.ts.map +1 -0
- package/dist/coordination/manager.js +360 -0
- package/dist/coordination/manager.js.map +1 -0
- package/dist/coordination/messaging.d.ts +37 -0
- package/dist/coordination/messaging.d.ts.map +1 -0
- package/dist/coordination/messaging.js +219 -0
- package/dist/coordination/messaging.js.map +1 -0
- package/dist/coordination/metrics.d.ts +153 -0
- package/dist/coordination/metrics.d.ts.map +1 -0
- package/dist/coordination/metrics.js +434 -0
- package/dist/coordination/metrics.js.map +1 -0
- package/dist/coordination/resources.d.ts +36 -0
- package/dist/coordination/resources.d.ts.map +1 -0
- package/dist/coordination/resources.js +250 -0
- package/dist/coordination/resources.js.map +1 -0
- package/dist/coordination/scheduler.d.ts +48 -0
- package/dist/coordination/scheduler.d.ts.map +1 -0
- package/dist/coordination/scheduler.js +308 -0
- package/dist/coordination/scheduler.js.map +1 -0
- package/dist/coordination/swarm-coordinator.d.ts +116 -0
- package/dist/coordination/swarm-coordinator.d.ts.map +1 -0
- package/dist/coordination/swarm-coordinator.js +565 -0
- package/dist/coordination/swarm-coordinator.js.map +1 -0
- package/dist/coordination/swarm-monitor.d.ts +101 -0
- package/dist/coordination/swarm-monitor.d.ts.map +1 -0
- package/dist/coordination/swarm-monitor.js +340 -0
- package/dist/coordination/swarm-monitor.js.map +1 -0
- package/dist/coordination/work-stealing.d.ts +44 -0
- package/dist/coordination/work-stealing.d.ts.map +1 -0
- package/dist/coordination/work-stealing.js +155 -0
- package/dist/coordination/work-stealing.js.map +1 -0
- package/dist/core/config.d.ts +239 -0
- package/dist/core/config.d.ts.map +1 -0
- package/dist/core/config.js +1128 -0
- package/dist/core/config.js.map +1 -0
- package/dist/core/event-bus.d.ts +60 -0
- package/dist/core/event-bus.d.ts.map +1 -0
- package/dist/core/event-bus.js +153 -0
- package/dist/core/event-bus.js.map +1 -0
- package/dist/core/json-persistence.d.ts +52 -0
- package/dist/core/json-persistence.d.ts.map +1 -0
- package/dist/core/json-persistence.js +115 -0
- package/dist/core/json-persistence.js.map +1 -0
- package/dist/core/logger.d.ts +57 -0
- package/dist/core/logger.d.ts.map +1 -0
- package/dist/core/logger.js +253 -0
- package/dist/core/logger.js.map +1 -0
- package/dist/core/orchestrator-fixed.d.ts +81 -0
- package/dist/core/orchestrator-fixed.d.ts.map +1 -0
- package/dist/core/orchestrator-fixed.js +210 -0
- package/dist/core/orchestrator-fixed.js.map +1 -0
- package/dist/core/orchestrator.d.ts +103 -0
- package/dist/core/orchestrator.d.ts.map +1 -0
- package/dist/core/orchestrator.js +965 -0
- package/dist/core/orchestrator.js.map +1 -0
- package/dist/core/persistence.d.ts +50 -0
- package/dist/core/persistence.d.ts.map +1 -0
- package/dist/core/persistence.js +186 -0
- package/dist/core/persistence.js.map +1 -0
- package/dist/enterprise/analytics-manager.d.ts +489 -0
- package/dist/enterprise/analytics-manager.d.ts.map +1 -0
- package/dist/enterprise/analytics-manager.js +949 -0
- package/dist/enterprise/analytics-manager.js.map +1 -0
- package/dist/enterprise/audit-manager.d.ts +459 -0
- package/dist/enterprise/audit-manager.d.ts.map +1 -0
- package/dist/enterprise/audit-manager.js +992 -0
- package/dist/enterprise/audit-manager.js.map +1 -0
- package/dist/enterprise/cloud-manager.d.ts +435 -0
- package/dist/enterprise/cloud-manager.d.ts.map +1 -0
- package/dist/enterprise/cloud-manager.js +784 -0
- package/dist/enterprise/cloud-manager.js.map +1 -0
- package/dist/enterprise/deployment-manager.d.ts +328 -0
- package/dist/enterprise/deployment-manager.d.ts.map +1 -0
- package/dist/enterprise/deployment-manager.js +823 -0
- package/dist/enterprise/deployment-manager.js.map +1 -0
- package/dist/enterprise/index.d.ts +13 -0
- package/dist/enterprise/index.d.ts.map +1 -0
- package/dist/enterprise/index.js +7 -0
- package/dist/enterprise/index.js.map +1 -0
- package/dist/enterprise/project-manager.d.ts +228 -0
- package/dist/enterprise/project-manager.d.ts.map +1 -0
- package/dist/enterprise/project-manager.js +529 -0
- package/dist/enterprise/project-manager.js.map +1 -0
- package/dist/enterprise/security-manager.d.ts +422 -0
- package/dist/enterprise/security-manager.d.ts.map +1 -0
- package/dist/enterprise/security-manager.js +902 -0
- package/dist/enterprise/security-manager.js.map +1 -0
- package/dist/hive-mind/core/Agent.d.ts +137 -0
- package/dist/hive-mind/core/Agent.d.ts.map +1 -0
- package/dist/hive-mind/core/Agent.js +567 -0
- package/dist/hive-mind/core/Agent.js.map +1 -0
- package/dist/hive-mind/core/Communication.d.ts +116 -0
- package/dist/hive-mind/core/Communication.d.ts.map +1 -0
- package/dist/hive-mind/core/Communication.js +407 -0
- package/dist/hive-mind/core/Communication.js.map +1 -0
- package/dist/hive-mind/core/DatabaseManager.d.ts +93 -0
- package/dist/hive-mind/core/DatabaseManager.d.ts.map +1 -0
- package/dist/hive-mind/core/DatabaseManager.js +551 -0
- package/dist/hive-mind/core/DatabaseManager.js.map +1 -0
- package/dist/hive-mind/core/HiveMind.d.ts +90 -0
- package/dist/hive-mind/core/HiveMind.d.ts.map +1 -0
- package/dist/hive-mind/core/HiveMind.js +439 -0
- package/dist/hive-mind/core/HiveMind.js.map +1 -0
- package/dist/hive-mind/core/Memory.d.ts +235 -0
- package/dist/hive-mind/core/Memory.d.ts.map +1 -0
- package/dist/hive-mind/core/Memory.js +1185 -0
- package/dist/hive-mind/core/Memory.js.map +1 -0
- package/dist/hive-mind/core/MemoryMonitor.d.ts +183 -0
- package/dist/hive-mind/core/MemoryMonitor.d.ts.map +1 -0
- package/dist/hive-mind/core/MemoryMonitor.js +547 -0
- package/dist/hive-mind/core/MemoryMonitor.js.map +1 -0
- package/dist/hive-mind/core/Queen.d.ts +115 -0
- package/dist/hive-mind/core/Queen.d.ts.map +1 -0
- package/dist/hive-mind/core/Queen.js +586 -0
- package/dist/hive-mind/core/Queen.js.map +1 -0
- package/dist/hive-mind/index.d.ts +17 -0
- package/dist/hive-mind/index.d.ts.map +1 -0
- package/dist/hive-mind/index.js +21 -0
- package/dist/hive-mind/index.js.map +1 -0
- package/dist/hive-mind/integration/ConsensusEngine.d.ts +117 -0
- package/dist/hive-mind/integration/ConsensusEngine.d.ts.map +1 -0
- package/dist/hive-mind/integration/ConsensusEngine.js +476 -0
- package/dist/hive-mind/integration/ConsensusEngine.js.map +1 -0
- package/dist/hive-mind/integration/MCPToolWrapper.d.ts +172 -0
- package/dist/hive-mind/integration/MCPToolWrapper.d.ts.map +1 -0
- package/dist/hive-mind/integration/MCPToolWrapper.js +216 -0
- package/dist/hive-mind/integration/MCPToolWrapper.js.map +1 -0
- package/dist/hive-mind/integration/SwarmOrchestrator.d.ts +172 -0
- package/dist/hive-mind/integration/SwarmOrchestrator.d.ts.map +1 -0
- package/dist/hive-mind/integration/SwarmOrchestrator.js +746 -0
- package/dist/hive-mind/integration/SwarmOrchestrator.js.map +1 -0
- package/dist/hive-mind/types.d.ts +298 -0
- package/dist/hive-mind/types.d.ts.map +1 -0
- package/dist/hive-mind/types.js +7 -0
- package/dist/hive-mind/types.js.map +1 -0
- package/dist/integration/mock-components.d.ts +107 -0
- package/dist/integration/mock-components.d.ts.map +1 -0
- package/dist/integration/mock-components.js +357 -0
- package/dist/integration/mock-components.js.map +1 -0
- package/dist/integration/system-integration.d.ts +84 -0
- package/dist/integration/system-integration.d.ts.map +1 -0
- package/dist/integration/system-integration.js +429 -0
- package/dist/integration/system-integration.js.map +1 -0
- package/dist/integration/types.d.ts +119 -0
- package/dist/integration/types.d.ts.map +1 -0
- package/dist/integration/types.js +5 -0
- package/dist/integration/types.js.map +1 -0
- package/dist/mcp/auth.d.ts +80 -0
- package/dist/mcp/auth.d.ts.map +1 -0
- package/dist/mcp/auth.js +343 -0
- package/dist/mcp/auth.js.map +1 -0
- package/dist/mcp/claude-code-wrapper.d.ts +26 -0
- package/dist/mcp/claude-code-wrapper.d.ts.map +1 -0
- package/dist/mcp/claude-code-wrapper.js +598 -0
- package/dist/mcp/claude-code-wrapper.js.map +1 -0
- package/dist/mcp/claude-flow-tools.d.ts +13 -0
- package/dist/mcp/claude-flow-tools.d.ts.map +1 -0
- package/dist/mcp/claude-flow-tools.js +1142 -0
- package/dist/mcp/claude-flow-tools.js.map +1 -0
- package/dist/mcp/client.d.ts +41 -0
- package/dist/mcp/client.d.ts.map +1 -0
- package/dist/mcp/client.js +194 -0
- package/dist/mcp/client.js.map +1 -0
- package/dist/mcp/index.d.ts +134 -0
- package/dist/mcp/index.d.ts.map +1 -0
- package/dist/mcp/index.js +212 -0
- package/dist/mcp/index.js.map +1 -0
- package/dist/mcp/integrate-wrapper.d.ts +16 -0
- package/dist/mcp/integrate-wrapper.d.ts.map +1 -0
- package/dist/mcp/integrate-wrapper.js +77 -0
- package/dist/mcp/integrate-wrapper.js.map +1 -0
- package/dist/mcp/lifecycle-manager.d.ts +121 -0
- package/dist/mcp/lifecycle-manager.d.ts.map +1 -0
- package/dist/mcp/lifecycle-manager.js +365 -0
- package/dist/mcp/lifecycle-manager.js.map +1 -0
- package/dist/mcp/load-balancer.d.ts +88 -0
- package/dist/mcp/load-balancer.d.ts.map +1 -0
- package/dist/mcp/load-balancer.js +389 -0
- package/dist/mcp/load-balancer.js.map +1 -0
- package/dist/mcp/orchestration-integration.d.ts +135 -0
- package/dist/mcp/orchestration-integration.d.ts.map +1 -0
- package/dist/mcp/orchestration-integration.js +722 -0
- package/dist/mcp/orchestration-integration.js.map +1 -0
- package/dist/mcp/performance-monitor.d.ts +164 -0
- package/dist/mcp/performance-monitor.d.ts.map +1 -0
- package/dist/mcp/performance-monitor.js +478 -0
- package/dist/mcp/performance-monitor.js.map +1 -0
- package/dist/mcp/protocol-manager.d.ts +88 -0
- package/dist/mcp/protocol-manager.d.ts.map +1 -0
- package/dist/mcp/protocol-manager.js +358 -0
- package/dist/mcp/protocol-manager.js.map +1 -0
- package/dist/mcp/recovery/connection-health-monitor.d.ts +69 -0
- package/dist/mcp/recovery/connection-health-monitor.d.ts.map +1 -0
- package/dist/mcp/recovery/connection-health-monitor.js +241 -0
- package/dist/mcp/recovery/connection-health-monitor.js.map +1 -0
- package/dist/mcp/recovery/connection-state-manager.d.ts +102 -0
- package/dist/mcp/recovery/connection-state-manager.d.ts.map +1 -0
- package/dist/mcp/recovery/connection-state-manager.js +318 -0
- package/dist/mcp/recovery/connection-state-manager.js.map +1 -0
- package/dist/mcp/recovery/fallback-coordinator.d.ts +79 -0
- package/dist/mcp/recovery/fallback-coordinator.d.ts.map +1 -0
- package/dist/mcp/recovery/fallback-coordinator.js +278 -0
- package/dist/mcp/recovery/fallback-coordinator.js.map +1 -0
- package/dist/mcp/recovery/index.d.ts +10 -0
- package/dist/mcp/recovery/index.d.ts.map +1 -0
- package/dist/mcp/recovery/index.js +10 -0
- package/dist/mcp/recovery/index.js.map +1 -0
- package/dist/mcp/recovery/reconnection-manager.d.ts +69 -0
- package/dist/mcp/recovery/reconnection-manager.d.ts.map +1 -0
- package/dist/mcp/recovery/reconnection-manager.js +226 -0
- package/dist/mcp/recovery/reconnection-manager.js.map +1 -0
- package/dist/mcp/recovery/recovery-manager.d.ts +93 -0
- package/dist/mcp/recovery/recovery-manager.d.ts.map +1 -0
- package/dist/mcp/recovery/recovery-manager.js +250 -0
- package/dist/mcp/recovery/recovery-manager.js.map +1 -0
- package/dist/mcp/router.d.ts +54 -0
- package/dist/mcp/router.d.ts.map +1 -0
- package/dist/mcp/router.js +201 -0
- package/dist/mcp/router.js.map +1 -0
- package/dist/mcp/ruv-swarm-tools.d.ts +58 -0
- package/dist/mcp/ruv-swarm-tools.d.ts.map +1 -0
- package/dist/mcp/ruv-swarm-tools.js +518 -0
- package/dist/mcp/ruv-swarm-tools.js.map +1 -0
- package/dist/mcp/server-with-wrapper.d.ts +3 -0
- package/dist/mcp/server-with-wrapper.d.ts.map +1 -0
- package/dist/mcp/server-with-wrapper.js +36 -0
- package/dist/mcp/server-with-wrapper.js.map +1 -0
- package/dist/mcp/server-wrapper-mode.d.ts +3 -0
- package/dist/mcp/server-wrapper-mode.d.ts.map +1 -0
- package/dist/mcp/server-wrapper-mode.js +28 -0
- package/dist/mcp/server-wrapper-mode.js.map +1 -0
- package/dist/mcp/server.d.ts +75 -0
- package/dist/mcp/server.d.ts.map +1 -0
- package/dist/mcp/server.js +533 -0
- package/dist/mcp/server.js.map +1 -0
- package/dist/mcp/session-manager.d.ts +60 -0
- package/dist/mcp/session-manager.d.ts.map +1 -0
- package/dist/mcp/session-manager.js +322 -0
- package/dist/mcp/session-manager.js.map +1 -0
- package/dist/mcp/sparc-modes.d.ts +12 -0
- package/dist/mcp/sparc-modes.d.ts.map +1 -0
- package/dist/mcp/sparc-modes.js +370 -0
- package/dist/mcp/sparc-modes.js.map +1 -0
- package/dist/mcp/swarm-tools.d.ts +87 -0
- package/dist/mcp/swarm-tools.d.ts.map +1 -0
- package/dist/mcp/swarm-tools.js +711 -0
- package/dist/mcp/swarm-tools.js.map +1 -0
- package/dist/mcp/tools.d.ts +145 -0
- package/dist/mcp/tools.d.ts.map +1 -0
- package/dist/mcp/tools.js +418 -0
- package/dist/mcp/tools.js.map +1 -0
- package/dist/mcp/transports/base.d.ts +22 -0
- package/dist/mcp/transports/base.d.ts.map +1 -0
- package/dist/mcp/transports/base.js +2 -0
- package/dist/mcp/transports/base.js.map +1 -0
- package/dist/mcp/transports/http.d.ts +45 -0
- package/dist/mcp/transports/http.d.ts.map +1 -0
- package/dist/mcp/transports/http.js +400 -0
- package/dist/mcp/transports/http.js.map +1 -0
- package/dist/mcp/transports/stdio.d.ts +34 -0
- package/dist/mcp/transports/stdio.d.ts.map +1 -0
- package/dist/mcp/transports/stdio.js +203 -0
- package/dist/mcp/transports/stdio.js.map +1 -0
- package/dist/memory/advanced-memory-manager.d.ts +303 -0
- package/dist/memory/advanced-memory-manager.d.ts.map +1 -0
- package/dist/memory/advanced-memory-manager.js +1458 -0
- package/dist/memory/advanced-memory-manager.js.map +1 -0
- package/dist/memory/backends/base.d.ts +21 -0
- package/dist/memory/backends/base.d.ts.map +1 -0
- package/dist/memory/backends/base.js +2 -0
- package/dist/memory/backends/base.js.map +1 -0
- package/dist/memory/backends/markdown.d.ts +32 -0
- package/dist/memory/backends/markdown.d.ts.map +1 -0
- package/dist/memory/backends/markdown.js +223 -0
- package/dist/memory/backends/markdown.js.map +1 -0
- package/dist/memory/backends/sqlite.d.ts +29 -0
- package/dist/memory/backends/sqlite.d.ts.map +1 -0
- package/dist/memory/backends/sqlite.js +272 -0
- package/dist/memory/backends/sqlite.js.map +1 -0
- package/dist/memory/cache.d.ts +65 -0
- package/dist/memory/cache.d.ts.map +1 -0
- package/dist/memory/cache.js +186 -0
- package/dist/memory/cache.js.map +1 -0
- package/dist/memory/distributed-memory.d.ts +188 -0
- package/dist/memory/distributed-memory.d.ts.map +1 -0
- package/dist/memory/distributed-memory.js +711 -0
- package/dist/memory/distributed-memory.js.map +1 -0
- package/dist/memory/indexer.d.ts +52 -0
- package/dist/memory/indexer.d.ts.map +1 -0
- package/dist/memory/indexer.js +188 -0
- package/dist/memory/indexer.js.map +1 -0
- package/dist/memory/manager.d.ts +58 -0
- package/dist/memory/manager.d.ts.map +1 -0
- package/dist/memory/manager.js +426 -0
- package/dist/memory/manager.js.map +1 -0
- package/dist/memory/swarm-memory.d.ts +91 -0
- package/dist/memory/swarm-memory.d.ts.map +1 -0
- package/dist/memory/swarm-memory.js +461 -0
- package/dist/memory/swarm-memory.js.map +1 -0
- package/dist/migration/index.d.ts +3 -0
- package/dist/migration/index.d.ts.map +1 -0
- package/dist/migration/index.js +166 -0
- package/dist/migration/index.js.map +1 -0
- package/dist/migration/logger.d.ts +26 -0
- package/dist/migration/logger.d.ts.map +1 -0
- package/dist/migration/logger.js +145 -0
- package/dist/migration/logger.js.map +1 -0
- package/dist/migration/migration-analyzer.d.ts +15 -0
- package/dist/migration/migration-analyzer.d.ts.map +1 -0
- package/dist/migration/migration-analyzer.js +279 -0
- package/dist/migration/migration-analyzer.js.map +1 -0
- package/dist/migration/migration-runner.d.ts +26 -0
- package/dist/migration/migration-runner.d.ts.map +1 -0
- package/dist/migration/migration-runner.js +499 -0
- package/dist/migration/migration-runner.js.map +1 -0
- package/dist/migration/migration-validator.d.ts +14 -0
- package/dist/migration/migration-validator.d.ts.map +1 -0
- package/dist/migration/migration-validator.js +313 -0
- package/dist/migration/migration-validator.js.map +1 -0
- package/dist/migration/progress-reporter.d.ts +25 -0
- package/dist/migration/progress-reporter.d.ts.map +1 -0
- package/dist/migration/progress-reporter.js +163 -0
- package/dist/migration/progress-reporter.js.map +1 -0
- package/dist/migration/rollback-manager.d.ts +21 -0
- package/dist/migration/rollback-manager.d.ts.map +1 -0
- package/dist/migration/rollback-manager.js +348 -0
- package/dist/migration/rollback-manager.js.map +1 -0
- package/dist/migration/types.d.ts +103 -0
- package/dist/migration/types.d.ts.map +1 -0
- package/dist/migration/types.js +6 -0
- package/dist/migration/types.js.map +1 -0
- package/dist/monitoring/diagnostics.d.ts +109 -0
- package/dist/monitoring/diagnostics.d.ts.map +1 -0
- package/dist/monitoring/diagnostics.js +545 -0
- package/dist/monitoring/diagnostics.js.map +1 -0
- package/dist/monitoring/health-check.d.ts +91 -0
- package/dist/monitoring/health-check.d.ts.map +1 -0
- package/dist/monitoring/health-check.js +371 -0
- package/dist/monitoring/health-check.js.map +1 -0
- package/dist/monitoring/real-time-monitor.d.ts +230 -0
- package/dist/monitoring/real-time-monitor.d.ts.map +1 -0
- package/dist/monitoring/real-time-monitor.js +839 -0
- package/dist/monitoring/real-time-monitor.js.map +1 -0
- package/dist/resources/resource-manager.d.ts +390 -0
- package/dist/resources/resource-manager.d.ts.map +1 -0
- package/dist/resources/resource-manager.js +1220 -0
- package/dist/resources/resource-manager.js.map +1 -0
- package/dist/swarm/claude-flow-executor.d.ts +28 -0
- package/dist/swarm/claude-flow-executor.d.ts.map +1 -0
- package/dist/swarm/claude-flow-executor.js +210 -0
- package/dist/swarm/claude-flow-executor.js.map +1 -0
- package/dist/swarm/coordinator.d.ts +134 -0
- package/dist/swarm/coordinator.d.ts.map +1 -0
- package/dist/swarm/coordinator.js +2607 -0
- package/dist/swarm/coordinator.js.map +1 -0
- package/dist/swarm/direct-executor.d.ts +48 -0
- package/dist/swarm/direct-executor.d.ts.map +1 -0
- package/dist/swarm/direct-executor.js +1113 -0
- package/dist/swarm/direct-executor.js.map +1 -0
- package/dist/swarm/executor-v2.d.ts +23 -0
- package/dist/swarm/executor-v2.d.ts.map +1 -0
- package/dist/swarm/executor-v2.js +320 -0
- package/dist/swarm/executor-v2.js.map +1 -0
- package/dist/swarm/executor.d.ts +117 -0
- package/dist/swarm/executor.d.ts.map +1 -0
- package/dist/swarm/executor.js +791 -0
- package/dist/swarm/executor.js.map +1 -0
- package/dist/swarm/index.d.ts +31 -0
- package/dist/swarm/index.d.ts.map +1 -0
- package/dist/swarm/index.js +42 -0
- package/dist/swarm/index.js.map +1 -0
- package/dist/swarm/memory.d.ts +176 -0
- package/dist/swarm/memory.d.ts.map +1 -0
- package/dist/swarm/memory.js +1068 -0
- package/dist/swarm/memory.js.map +1 -0
- package/dist/swarm/optimizations/async-file-manager.d.ts +49 -0
- package/dist/swarm/optimizations/async-file-manager.d.ts.map +1 -0
- package/dist/swarm/optimizations/async-file-manager.js +248 -0
- package/dist/swarm/optimizations/async-file-manager.js.map +1 -0
- package/dist/swarm/optimizations/circular-buffer.d.ts +46 -0
- package/dist/swarm/optimizations/circular-buffer.d.ts.map +1 -0
- package/dist/swarm/optimizations/circular-buffer.js +159 -0
- package/dist/swarm/optimizations/circular-buffer.js.map +1 -0
- package/dist/swarm/optimizations/connection-pool.d.ts +54 -0
- package/dist/swarm/optimizations/connection-pool.d.ts.map +1 -0
- package/dist/swarm/optimizations/connection-pool.js +227 -0
- package/dist/swarm/optimizations/connection-pool.js.map +1 -0
- package/dist/swarm/optimizations/index.d.ts +24 -0
- package/dist/swarm/optimizations/index.d.ts.map +1 -0
- package/dist/swarm/optimizations/index.js +30 -0
- package/dist/swarm/optimizations/index.js.map +1 -0
- package/dist/swarm/optimizations/optimized-executor.d.ts +109 -0
- package/dist/swarm/optimizations/optimized-executor.d.ts.map +1 -0
- package/dist/swarm/optimizations/optimized-executor.js +321 -0
- package/dist/swarm/optimizations/optimized-executor.js.map +1 -0
- package/dist/swarm/optimizations/ttl-map.d.ts +78 -0
- package/dist/swarm/optimizations/ttl-map.d.ts.map +1 -0
- package/dist/swarm/optimizations/ttl-map.js +229 -0
- package/dist/swarm/optimizations/ttl-map.js.map +1 -0
- package/dist/swarm/prompt-cli.d.ts +5 -0
- package/dist/swarm/prompt-cli.d.ts.map +1 -0
- package/dist/swarm/prompt-cli.js +256 -0
- package/dist/swarm/prompt-cli.js.map +1 -0
- package/dist/swarm/prompt-copier-enhanced.d.ts +17 -0
- package/dist/swarm/prompt-copier-enhanced.d.ts.map +1 -0
- package/dist/swarm/prompt-copier-enhanced.js +190 -0
- package/dist/swarm/prompt-copier-enhanced.js.map +1 -0
- package/dist/swarm/prompt-copier.d.ts +76 -0
- package/dist/swarm/prompt-copier.d.ts.map +1 -0
- package/dist/swarm/prompt-copier.js +379 -0
- package/dist/swarm/prompt-copier.js.map +1 -0
- package/dist/swarm/prompt-manager.d.ts +72 -0
- package/dist/swarm/prompt-manager.d.ts.map +1 -0
- package/dist/swarm/prompt-manager.js +270 -0
- package/dist/swarm/prompt-manager.js.map +1 -0
- package/dist/swarm/prompt-utils.d.ts +52 -0
- package/dist/swarm/prompt-utils.d.ts.map +1 -0
- package/dist/swarm/prompt-utils.js +265 -0
- package/dist/swarm/prompt-utils.js.map +1 -0
- package/dist/swarm/sparc-executor.d.ts +105 -0
- package/dist/swarm/sparc-executor.d.ts.map +1 -0
- package/dist/swarm/sparc-executor.js +1364 -0
- package/dist/swarm/sparc-executor.js.map +1 -0
- package/dist/swarm/strategies/auto.d.ts +57 -0
- package/dist/swarm/strategies/auto.d.ts.map +1 -0
- package/dist/swarm/strategies/auto.js +623 -0
- package/dist/swarm/strategies/auto.js.map +1 -0
- package/dist/swarm/strategies/base.d.ts +78 -0
- package/dist/swarm/strategies/base.d.ts.map +1 -0
- package/dist/swarm/strategies/base.js +108 -0
- package/dist/swarm/strategies/base.js.map +1 -0
- package/dist/swarm/strategies/research.d.ts +75 -0
- package/dist/swarm/strategies/research.d.ts.map +1 -0
- package/dist/swarm/strategies/research.js +841 -0
- package/dist/swarm/strategies/research.js.map +1 -0
- package/dist/swarm/strategies/strategy-metrics-patch.d.ts +11 -0
- package/dist/swarm/strategies/strategy-metrics-patch.d.ts.map +1 -0
- package/dist/swarm/strategies/strategy-metrics-patch.js +2 -0
- package/dist/swarm/strategies/strategy-metrics-patch.js.map +1 -0
- package/dist/swarm/types.d.ts +578 -0
- package/dist/swarm/types.d.ts.map +1 -0
- package/dist/swarm/types.js +51 -0
- package/dist/swarm/types.js.map +1 -0
- package/dist/swarm/workers/copy-worker.d.ts +2 -0
- package/dist/swarm/workers/copy-worker.d.ts.map +1 -0
- package/dist/swarm/workers/copy-worker.js +56 -0
- package/dist/swarm/workers/copy-worker.js.map +1 -0
- package/dist/task/commands.d.ts +60 -0
- package/dist/task/commands.d.ts.map +1 -0
- package/dist/task/commands.js +107 -0
- package/dist/task/commands.js.map +1 -0
- package/dist/task/coordination.d.ts +109 -0
- package/dist/task/coordination.d.ts.map +1 -0
- package/dist/task/coordination.js +629 -0
- package/dist/task/coordination.js.map +1 -0
- package/dist/task/engine.d.ts +198 -0
- package/dist/task/engine.d.ts.map +1 -0
- package/dist/task/engine.js +498 -0
- package/dist/task/engine.js.map +1 -0
- package/dist/task/index.d.ts +103 -0
- package/dist/task/index.d.ts.map +1 -0
- package/dist/task/index.js +276 -0
- package/dist/task/index.js.map +1 -0
- package/dist/task/types.d.ts +56 -0
- package/dist/task/types.d.ts.map +1 -0
- package/dist/task/types.js +2 -0
- package/dist/task/types.js.map +1 -0
- package/dist/terminal/adapters/base.d.ts +40 -0
- package/dist/terminal/adapters/base.d.ts.map +1 -0
- package/dist/terminal/adapters/base.js +5 -0
- package/dist/terminal/adapters/base.js.map +1 -0
- package/dist/terminal/adapters/native.d.ts +19 -0
- package/dist/terminal/adapters/native.d.ts.map +1 -0
- package/dist/terminal/adapters/native.js +414 -0
- package/dist/terminal/adapters/native.js.map +1 -0
- package/dist/terminal/adapters/vscode.d.ts +20 -0
- package/dist/terminal/adapters/vscode.d.ts.map +1 -0
- package/dist/terminal/adapters/vscode.js +265 -0
- package/dist/terminal/adapters/vscode.js.map +1 -0
- package/dist/terminal/manager.d.ts +59 -0
- package/dist/terminal/manager.d.ts.map +1 -0
- package/dist/terminal/manager.js +237 -0
- package/dist/terminal/manager.js.map +1 -0
- package/dist/terminal/pool.d.ts +32 -0
- package/dist/terminal/pool.d.ts.map +1 -0
- package/dist/terminal/pool.js +205 -0
- package/dist/terminal/pool.js.map +1 -0
- package/dist/terminal/session.d.ts +41 -0
- package/dist/terminal/session.d.ts.map +1 -0
- package/dist/terminal/session.js +206 -0
- package/dist/terminal/session.js.map +1 -0
- package/dist/types/index.d.ts +28 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +15 -0
- package/dist/types/index.js.map +1 -0
- package/dist/ui/hive-dashboard.d.ts +140 -0
- package/dist/ui/hive-dashboard.d.ts.map +1 -0
- package/dist/ui/hive-dashboard.js +281 -0
- package/dist/ui/hive-dashboard.js.map +1 -0
- package/dist/utils/error-handler.d.ts +13 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +45 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/errors.d.ts +121 -0
- package/dist/utils/errors.d.ts.map +1 -0
- package/dist/utils/errors.js +194 -0
- package/dist/utils/errors.js.map +1 -0
- package/dist/utils/formatters.d.ts +15 -0
- package/dist/utils/formatters.d.ts.map +1 -0
- package/dist/utils/formatters.js +75 -0
- package/dist/utils/formatters.js.map +1 -0
- package/dist/utils/helpers.d.ts +131 -0
- package/dist/utils/helpers.d.ts.map +1 -0
- package/dist/utils/helpers.js +447 -0
- package/dist/utils/helpers.js.map +1 -0
- package/dist/utils/paths.d.ts +4 -0
- package/dist/utils/paths.d.ts.map +1 -0
- package/dist/utils/paths.js +39 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/types.d.ts +512 -0
- package/dist/utils/types.d.ts.map +1 -0
- package/dist/utils/types.js +37 -0
- package/dist/utils/types.js.map +1 -0
- package/package.json +1 -2
- package/src/cli/command-registry.js +0 -68
- package/src/cli/commands/index.ts +0 -37
- package/src/cli/commands/swarm-new.ts +352 -762
- package/src/cli/commands/swarm-spawn.ts +4 -8
- package/src/cli/commands/task.ts +33 -30
- package/src/cli/commands/workflow.ts +37 -33
- package/src/cli/repl.ts +5 -5
- package/src/cli/simple-commands/hive-mind/core.js +1 -3
- package/src/cli/simple-commands/hive-mind/mcp-wrapper.js +1 -4
- package/src/cli/simple-commands/hive-mind/memory.js +5 -19
- package/src/cli/simple-commands/hive-mind.js +61 -240
- package/src/cli/simple-commands/init/executable-wrapper.js +13 -17
- package/src/cli/simple-commands/init/help.js +0 -2
- package/src/cli/simple-commands/init/index.js +48 -81
- package/src/cli/simple-commands/init/sparc-structure.js +1 -3
- package/src/cli/simple-commands/init/templates/CLAUDE.md +14 -14
- package/src/cli/simple-commands/init/templates/enhanced-templates.js +23 -82
- package/src/cli/simple-commands/init/templates/settings.json +5 -5
- package/src/cli/simple-commands/swarm.js +7 -9
- package/src/cli/ui/fallback-handler.ts +2 -2
- package/src/communication/message-bus.ts +3 -7
- package/src/coordination/advanced-task-executor.ts +8 -11
- package/src/coordination/load-balancer.ts +5 -13
- package/src/hive-mind/integration/MCPToolWrapper.ts +1 -2
- package/src/utils/error-handler.ts +23 -6
- package/scripts/claude-flow-wrapper.sh +0 -35
- package/src/cli/commands/hook-types.ts +0 -126
- package/src/cli/commands/hook-validator.ts +0 -191
- package/src/cli/commands/hook.ts +0 -346
- package/src/cli/simple-commands/hive-mind/db-optimizer.js +0 -762
- package/src/cli/simple-commands/hive-mind-optimize.js +0 -357
- package/src/cli/simple-commands/hook-safety.js +0 -668
- package/src/cli/simple-commands/init/templates/claude-flow-universal +0 -71
- package/src/cli/simple-commands/init/templates/commands/hooks/notification.md +0 -102
- package/src/cli/simple-commands/init/templates/commands/hooks/post-command.md +0 -105
- package/src/cli/simple-commands/init/templates/commands/hooks/post-edit.md +0 -106
- package/src/cli/simple-commands/init/templates/commands/hooks/post-task.md +0 -101
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-command.md +0 -102
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-edit.md +0 -102
- package/src/cli/simple-commands/init/templates/commands/hooks/pre-search.md +0 -105
- package/src/cli/simple-commands/init/templates/commands/hooks/session-end.md +0 -107
- package/src/cli/simple-commands/init/templates/commands/hooks/session-restore.md +0 -110
- package/src/cli/simple-commands/init/templates/commands/hooks/session-start.md +0 -106
- package/src/cli/simple-commands/init/templates/safe-hook-patterns.js +0 -381
- package/src/utils/type-guards.ts +0 -188
package/README.md
CHANGED
|
@@ -1,830 +1,826 @@
|
|
|
1
|
-
# ๐ Claude
|
|
1
|
+
# ๐ Claude Flow v2.0.0 - Intelligent AI Agent Coordination That Actually Works
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
5
|
[](https://github.com/ruvnet/claude-code-flow)
|
|
6
|
-
[](https://www.npmjs.com/package/claude-flow)
|
|
7
|
+
[](https://github.com/ruvnet/claude-code-flow)
|
|
8
|
+
[](https://github.com/ruvnet/ruv-FANN)
|
|
9
|
+
[](https://github.com/ruvnet/claude-code-flow)
|
|
10
|
+
[](https://github.com/ruvnet/claude-code-flow)
|
|
11
|
+
[](https://www.typescriptlang.org/)
|
|
11
12
|
[](https://opensource.org/licenses/MIT)
|
|
12
13
|
|
|
13
14
|
</div>
|
|
14
15
|
|
|
15
|
-
|
|
16
|
+
## ๐ฏ **Why Claude Flow Changes Everything**
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
**Claude Flow v2.0.0** is a complete reimagining of how AI agents work together. Built by **[rUv](https://github.com/ruvnet)**, this platform brings together advanced neural processing, intelligent coordination, and persistent memory in ways that actually work in production.
|
|
18
19
|
|
|
19
|
-
|
|
20
|
+
### **The Challenge We Address**
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
Most AI development tools today share common limitations:
|
|
23
|
+
- Agents that forget everything between sessions
|
|
24
|
+
- "Parallel" processing that's actually sequential
|
|
25
|
+
- Token usage that spirals out of control
|
|
26
|
+
- Coordination that's more suggestion than execution
|
|
27
|
+
- Neural networks that are simulated rather than real
|
|
22
28
|
|
|
23
|
-
|
|
24
|
-
- **๐ง Neural Networks**: 27+ cognitive models with WASM SIMD acceleration
|
|
25
|
-
- **๐ง 87 MCP Tools**: Comprehensive toolkit for swarm orchestration, memory, and automation
|
|
26
|
-
- **๐ Dynamic Agent Architecture (DAA)**: Self-organizing agents with fault tolerance
|
|
27
|
-
- **๐พ Distributed Memory**: Cross-session persistence with namespace management
|
|
28
|
-
- **๐ช Advanced Hooks System**: Automated workflows with pre/post operation hooks
|
|
29
|
-
- **๐ GitHub Integration**: 6 specialized modes for repository management
|
|
30
|
-
- **โก Performance**: 84.8% SWE-Bench solve rate, 2.8-4.4x speed improvement
|
|
29
|
+
### **A Practical New Approach**
|
|
31
30
|
|
|
32
|
-
|
|
31
|
+
Claude Flow v2.0.0 reimagines AI development from the ground up:
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
- **๐ง Working Neural Networks**: Using **Rust-based QUDAG** architecture and **ruv-FANN**, we've implemented actual WASM neural processing that runs in your environment - not in the cloud, not simulated, but real neural computation
|
|
34
|
+
- **๐ Genuine Parallel Processing**: **ruv-swarm WASM** enables agents to truly work simultaneously, sharing memory and coordinating through 87 purpose-built MCP tools
|
|
35
|
+
- **๐ Hive Mind Intelligence**: **Queen-led swarms** with collective memory and consensus decision-making deliver enterprise-grade coordination that scales from simple tasks to complex system development
|
|
36
|
+
- **๐พ Memory That Persists**: **DAA (Dynamic Agent Architecture)** maintains context across sessions, learning from patterns and improving over time
|
|
37
|
+
- **โก Measurable Performance**: Real-world testing shows 2.8-4.4x speed improvements and 32.3% token reduction - not theoretical, but measured
|
|
38
|
+
- **๐ Native Claude Code Integration**: Works directly with Claude Code through MCP, no adapters or workarounds needed
|
|
35
39
|
|
|
36
|
-
|
|
37
|
-
- [๐ช Advanced Hooks System](#-advanced-hooks-system)
|
|
38
|
-
- [๐ง Neural Features](#neural-features)
|
|
39
|
-
- [๐ง DAA MCP Endpoints](#-daa-mcp-endpoints)
|
|
40
|
-
- [๐ Hive-Mind Intelligence](#-revolutionary-hive-mind-intelligence)
|
|
41
|
-
- [๐ง Hive-Mind Optimization](#-hive-mind-database-optimization)
|
|
42
|
-
- [โก 87 Advanced MCP Tools](#-87-advanced-mcp-tools)
|
|
43
|
-
- [๐ฎ Advanced Usage Examples](#-advanced-usage-examples)
|
|
44
|
-
- [๐๏ธ Architecture Overview](#๏ธ-alpha-architecture-overview)
|
|
45
|
-
- [๐ ๏ธ Installation & Setup](#๏ธ-alpha-installation--setup)
|
|
46
|
-
- [๐ Documentation](#-comprehensive-documentation)
|
|
47
|
-
- [๐ค Contributing](#-contributing-to-alpha)
|
|
48
|
-
- [๐ License](#-license)
|
|
40
|
+
### **What's Actually Different**
|
|
49
41
|
|
|
50
|
-
|
|
42
|
+
Instead of promising "AI magic," Claude Flow delivers practical improvements:
|
|
51
43
|
|
|
52
|
-
|
|
44
|
+
1. **Neural Processing That Works**: WASM-compiled neural networks that train, learn, and adapt in real-time
|
|
45
|
+
2. **Coordination You Can See**: Watch agents actually work together, share findings, and build on each other's work
|
|
46
|
+
3. **Learning That Sticks**: Your system remembers successful patterns and applies them to new challenges
|
|
47
|
+
4. **Production-Ready Today**: Built with enterprise needs in mind - security, monitoring, and reliability included
|
|
53
48
|
|
|
54
|
-
|
|
55
|
-
# 1. Initialize with enhanced MCP setup (auto-configures permissions!)
|
|
56
|
-
npx --y claude-flow@alpha init --force
|
|
49
|
+
> ๐ **See it in action**: `npx claude-flow@alpha init` - Experience intelligent coordination with automatic MCP setup!
|
|
57
50
|
|
|
58
|
-
|
|
59
|
-
npx --y claude-flow@alpha --help
|
|
51
|
+
---
|
|
60
52
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
53
|
+
## ๐ **What's New in v2.0.0-alpha.3**
|
|
54
|
+
|
|
55
|
+
### ๐ **Automatic MCP Setup (NEW!)**
|
|
56
|
+
- **Smart Detection** - Automatically detects Claude Code CLI installation
|
|
57
|
+
- **Auto-Configuration** - Sets up both claude-flow and ruv-swarm MCP servers
|
|
58
|
+
- **Zero Manual Setup** - No more complex MCP configuration steps
|
|
59
|
+
- **Helpful Guidance** - Shows installation instructions if Claude Code not found
|
|
60
|
+
- **Optional Override** - Use `--skip-mcp` flag to bypass automatic setup
|
|
61
|
+
|
|
62
|
+
### โก **One-Command Setup**
|
|
63
|
+
```bash
|
|
64
|
+
# Everything you need in one command
|
|
65
|
+
npx claude-flow@alpha init
|
|
66
|
+
|
|
67
|
+
# Automatically configures:
|
|
68
|
+
# โ
claude-flow MCP server (swarm orchestration)
|
|
69
|
+
# โ
ruv-swarm MCP server (enhanced coordination)
|
|
70
|
+
# โ
Complete project structure with hooks
|
|
71
|
+
# โ
Claude Code integration ready
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### ๐ง **Neural Networks That Actually Work**
|
|
75
|
+
- **512KB WASM Module** - Compiled neural networks that run locally with SIMD optimization
|
|
76
|
+
- **Live Training Feedback** - See loss decrease and accuracy improve in real-time as models train
|
|
77
|
+
- **Pattern Learning** - Networks that identify and remember successful coordination strategies
|
|
78
|
+
- **Measured Accuracy** - Achieving 89% accuracy on coordination tasks through iterative training
|
|
79
|
+
- **ruv-FANN Integration** - Built on proven fast artificial neural network technology
|
|
80
|
+
|
|
81
|
+
### ๐ **True Multi-Agent Coordination**
|
|
82
|
+
- **87 MCP Tools** - Purpose-built tools for everything from memory management to workflow automation
|
|
83
|
+
- **4 Coordination Patterns** - Choose hierarchical, mesh, ring, or star topologies based on your task
|
|
84
|
+
- **Shared Memory** - Agents actually share discoveries and build on each other's work
|
|
85
|
+
- **Load Balancing** - Watch work distribute automatically across available agents
|
|
86
|
+
- **Parallel by Default** - Batch operations execute simultaneously, not sequentially
|
|
87
|
+
|
|
88
|
+
### ๐ **Practical Web Interface**
|
|
89
|
+
- **Browser-Based Terminal** - Full command-line experience with WebSocket for real-time updates
|
|
90
|
+
- **10 SPARC Commands** - Direct access to specialized modes like architect, coder, and analyzer
|
|
91
|
+
- **Live Monitoring** - See what agents are doing, memory usage, and coordination status
|
|
92
|
+
- **Works Everywhere** - No special setup needed - if you have a browser, you're ready
|
|
93
|
+
- **Visual Feedback** - Understand what's happening without parsing logs
|
|
94
|
+
|
|
95
|
+
### ๐พ **Memory That Makes Sense**
|
|
96
|
+
- **27.3 MB Storage** - Enough to maintain context without bloating your system
|
|
97
|
+
- **Smart Compression** - 65% reduction in storage needs through intelligent encoding
|
|
98
|
+
- **Session Continuity** - Pick up where you left off, even after restarts
|
|
99
|
+
- **Easy Backup/Restore** - Simple commands to snapshot and recover state
|
|
100
|
+
- **Organized Structure** - Namespaces keep different projects and contexts separate
|
|
101
|
+
|
|
102
|
+
### โก **Performance You Can Measure**
|
|
103
|
+
- **2.8-4.4x Faster** - Compared to sequential processing, measured on real tasks
|
|
104
|
+
- **32.3% Fewer Tokens** - Smart caching and coordination reduce API calls
|
|
105
|
+
- **Sub-Second Response** - Most operations complete before you notice
|
|
106
|
+
- **Built-in Monitoring** - Track performance metrics without external tools
|
|
107
|
+
- **Production Security** - Encrypted storage, access controls, and audit logs included
|
|
67
108
|
|
|
68
109
|
---
|
|
69
110
|
|
|
70
|
-
##
|
|
71
|
-
|
|
72
|
-
### **Automated Workflow Enhancement**
|
|
73
|
-
Claude-Flow v2.0.0 introduces a powerful hooks system that automates coordination and enhances every operation:
|
|
111
|
+
## ๐ ๏ธ **Claude Code & ruv-swarm Requirements**
|
|
74
112
|
|
|
113
|
+
### ๐ **Prerequisites**
|
|
75
114
|
```bash
|
|
76
|
-
#
|
|
77
|
-
|
|
78
|
-
|
|
115
|
+
# System Requirements
|
|
116
|
+
Node.js 20+ (LTS recommended)
|
|
117
|
+
npm 9+ or equivalent package manager
|
|
118
|
+
Git for version control
|
|
119
|
+
Docker (optional, for containerized deployment)
|
|
79
120
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
- **`pre-search`**: Caches searches for improved performance
|
|
85
|
-
- **`pre-edit`**: Validates files and prepares resources
|
|
86
|
-
- **`pre-command`**: Security validation before execution
|
|
87
|
-
|
|
88
|
-
#### **Post-Operation Hooks**
|
|
89
|
-
- **`post-edit`**: Auto-formats code using language-specific tools
|
|
90
|
-
- **`post-task`**: Trains neural patterns from successful operations
|
|
91
|
-
- **`post-command`**: Updates memory with operation context
|
|
92
|
-
- **`notification`**: Real-time progress updates
|
|
93
|
-
|
|
94
|
-
#### **Session Hooks**
|
|
95
|
-
- **`session-start`**: Restores previous context automatically
|
|
96
|
-
- **`session-end`**: Generates summaries and persists state
|
|
97
|
-
- **`session-restore`**: Loads memory from previous sessions
|
|
98
|
-
|
|
99
|
-
### **Hook Configuration**
|
|
100
|
-
```json
|
|
101
|
-
// .claude/settings.json (auto-configured)
|
|
102
|
-
{
|
|
103
|
-
"hooks": {
|
|
104
|
-
"preEditHook": {
|
|
105
|
-
"command": "npx",
|
|
106
|
-
"args": ["claude-flow", "hooks", "pre-edit", "--file", "${file}", "--auto-assign-agents", "true"],
|
|
107
|
-
"alwaysRun": false
|
|
108
|
-
},
|
|
109
|
-
"postEditHook": {
|
|
110
|
-
"command": "npx",
|
|
111
|
-
"args": ["claude-flow", "hooks", "post-edit", "--file", "${file}", "--format", "true"],
|
|
112
|
-
"alwaysRun": true
|
|
113
|
-
},
|
|
114
|
-
"sessionEndHook": {
|
|
115
|
-
"command": "npx",
|
|
116
|
-
"args": ["claude-flow", "hooks", "session-end", "--generate-summary", "true"],
|
|
117
|
-
"alwaysRun": true
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
+
# Claude Code Requirements
|
|
122
|
+
Claude Code CLI (latest version)
|
|
123
|
+
MCP server support enabled
|
|
124
|
+
Write permissions for .claude/ directory
|
|
121
125
|
```
|
|
122
126
|
|
|
123
|
-
### **
|
|
124
|
-
|
|
125
|
-
Hooks integrate seamlessly with Claude Code's workflow:
|
|
126
|
-
|
|
127
|
-
1. **Automatic Triggering**: Hooks fire automatically during Claude Code operations
|
|
128
|
-
2. **Context Awareness**: Each hook receives relevant context (file paths, commands, etc.)
|
|
129
|
-
3. **Non-Blocking**: Hooks run asynchronously to maintain performance
|
|
130
|
-
4. **Configurable**: Enable/disable specific hooks as needed
|
|
131
|
-
|
|
132
|
-
### **Hook Examples**
|
|
133
|
-
|
|
127
|
+
### ๐ง **Claude Code Integration Setup**
|
|
134
128
|
```bash
|
|
135
|
-
#
|
|
136
|
-
npx claude-flow
|
|
129
|
+
# NEW: Automatic Setup (Recommended)
|
|
130
|
+
npx claude-flow@alpha init
|
|
137
131
|
|
|
138
|
-
#
|
|
139
|
-
|
|
132
|
+
# The above automatically:
|
|
133
|
+
# โ
Detects Claude Code CLI
|
|
134
|
+
# โ
Configures claude-flow MCP server
|
|
135
|
+
# โ
Configures ruv-swarm MCP server
|
|
136
|
+
# โ
Sets up complete project structure
|
|
140
137
|
|
|
141
|
-
#
|
|
142
|
-
|
|
138
|
+
# Verify MCP integration
|
|
139
|
+
claude mcp list
|
|
140
|
+
# Should show:
|
|
141
|
+
# claude-flow: claude-flow mcp start
|
|
142
|
+
# ruv-swarm: npx ruv-swarm mcp start
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
145
|
+
### ๐ **ruv-swarm Integration Setup**
|
|
146
|
+
```bash
|
|
147
|
+
# With alpha.3, ruv-swarm is configured automatically!
|
|
148
|
+
npx claude-flow@alpha init
|
|
148
149
|
|
|
149
|
-
|
|
150
|
-
|
|
150
|
+
# Advanced swarm operations (development mode)
|
|
151
|
+
npx claude-flow@alpha swarm init --topology mesh --max-agents 8
|
|
151
152
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
npx claude-flow@alpha
|
|
153
|
+
# Basic swarm commands available in alpha
|
|
154
|
+
npx claude-flow@alpha swarm --help
|
|
155
|
+
npx claude-flow@alpha agent --help
|
|
156
|
+
npx claude-flow@alpha status
|
|
155
157
|
|
|
156
|
-
#
|
|
157
|
-
|
|
158
|
+
# For full WebUI and neural training, use development mode:
|
|
159
|
+
git clone https://github.com/ruvnet/claude-code-flow.git
|
|
160
|
+
cd claude-code-flow && git checkout claude-flow-v2.0.0
|
|
161
|
+
npx claude-flow start --ui # Full interface at http://localhost:3000
|
|
158
162
|
```
|
|
159
163
|
|
|
160
|
-
### **๐ค Intelligent Agent Types**
|
|
161
|
-
- **๐ Queen Agent**: Master coordinator and decision maker
|
|
162
|
-
- **๐๏ธ Architect Agents**: System design and technical architecture
|
|
163
|
-
- **๐ป Coder Agents**: Implementation and development
|
|
164
|
-
- **๐งช Tester Agents**: Quality assurance and validation
|
|
165
|
-
- **๐ Analyst Agents**: Data analysis and insights
|
|
166
|
-
- **๐ Researcher Agents**: Information gathering and analysis
|
|
167
|
-
- **๐ก๏ธ Security Agents**: Security auditing and compliance
|
|
168
|
-
- **๐ DevOps Agents**: Deployment and infrastructure
|
|
169
|
-
|
|
170
164
|
---
|
|
171
165
|
|
|
172
|
-
##
|
|
166
|
+
## ๐ฅ๏ธ **Environment-Specific Usage Guide**
|
|
173
167
|
|
|
174
|
-
###
|
|
175
|
-
```bash
|
|
176
|
-
# Neural pattern recognition and training
|
|
177
|
-
npx claude-flow@alpha neural train --pattern coordination --epochs 50
|
|
178
|
-
npx claude-flow@alpha neural predict --model cognitive-analysis
|
|
179
|
-
npx claude-flow@alpha cognitive analyze --behavior "development workflow"
|
|
180
|
-
```
|
|
168
|
+
### ๐จ **Important: Non-Interactive Environments**
|
|
181
169
|
|
|
182
|
-
|
|
183
|
-
```bash
|
|
184
|
-
# Cross-session memory management
|
|
185
|
-
npx claude-flow@alpha memory store "project-context" "Full-stack app requirements"
|
|
186
|
-
npx claude-flow@alpha memory query "authentication" --namespace sparc
|
|
187
|
-
npx claude-flow@alpha memory stats
|
|
188
|
-
npx claude-flow@alpha memory export backup.json --namespace default
|
|
189
|
-
npx claude-flow@alpha memory import project-memory.json
|
|
190
|
-
```
|
|
170
|
+
Claude Flow v2.0.0 includes intelligent environment detection to ensure smooth operation across different execution contexts. Here's what you need to know:
|
|
191
171
|
|
|
192
|
-
###
|
|
172
|
+
### **VS Code Integrated Terminal**
|
|
193
173
|
```bash
|
|
194
|
-
#
|
|
195
|
-
npx claude-flow@
|
|
196
|
-
npx claude-flow@alpha batch process --items "test,build,deploy" --concurrent
|
|
197
|
-
npx claude-flow@alpha pipeline create --config advanced-deployment.json
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
## ๐ง **Neural Network Capabilities**
|
|
174
|
+
# VS Code output panel requires non-interactive mode
|
|
175
|
+
npx claude-flow@2.0.0 init --non-interactive --dangerously-skip-permissions
|
|
201
176
|
|
|
202
|
-
|
|
203
|
-
|
|
177
|
+
# For interactive features, use the integrated terminal (Ctrl+`)
|
|
178
|
+
# NOT the output panel from extension commands
|
|
179
|
+
```
|
|
204
180
|
|
|
181
|
+
### **CI/CD Environments**
|
|
205
182
|
```bash
|
|
206
|
-
#
|
|
207
|
-
npx claude-flow@
|
|
208
|
-
|
|
209
|
-
# Real-time predictions
|
|
210
|
-
npx claude-flow@alpha neural predict --model task-optimizer --input "current-state.json"
|
|
183
|
+
# Automatic detection for GitHub Actions, GitLab CI, Jenkins, etc.
|
|
184
|
+
npx claude-flow@2.0.0 init --ci --non-interactive
|
|
211
185
|
|
|
212
|
-
#
|
|
213
|
-
npx claude-flow@
|
|
186
|
+
# All prompts will use defaults, no manual intervention needed
|
|
187
|
+
CI=true npx claude-flow@2.0.0 swarm "build and test" --auto-approve
|
|
214
188
|
```
|
|
215
189
|
|
|
216
|
-
### **
|
|
217
|
-
- **Pattern Recognition**: Learns from successful operations
|
|
218
|
-
- **Adaptive Learning**: Improves performance over time
|
|
219
|
-
- **Transfer Learning**: Apply knowledge across domains
|
|
220
|
-
- **Model Compression**: Efficient storage and execution
|
|
221
|
-
- **Ensemble Models**: Combine multiple neural networks
|
|
222
|
-
- **Explainable AI**: Understand decision-making process
|
|
223
|
-
|
|
224
|
-
## ๐ง **DAA MCP Endpoints**
|
|
225
|
-
|
|
226
|
-
### **Dynamic Agent Architecture**
|
|
227
|
-
Complete programmatic control over agent lifecycle and coordination:
|
|
228
|
-
|
|
190
|
+
### **Docker Containers**
|
|
229
191
|
```bash
|
|
230
|
-
#
|
|
231
|
-
|
|
232
|
-
--capabilities "[\"deep-analysis\", \"pattern-recognition\"]" \
|
|
233
|
-
--resources "{\"memory\": 2048, \"compute\": \"high\"}"
|
|
192
|
+
# Run with proper TTY allocation
|
|
193
|
+
docker run -it claude-flow:2.0.0 init
|
|
234
194
|
|
|
235
|
-
#
|
|
236
|
-
|
|
237
|
-
--task-requirements "[\"security-analysis\", \"performance-optimization\"]"
|
|
238
|
-
|
|
239
|
-
# Manage agent lifecycle
|
|
240
|
-
npx claude-flow@alpha daa lifecycle-manage --agentId "agent-123" --action "scale-up"
|
|
195
|
+
# Without TTY (automated deployments)
|
|
196
|
+
docker run claude-flow:2.0.0 init --non-interactive --no-emoji
|
|
241
197
|
```
|
|
242
198
|
|
|
243
|
-
### **
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
-
|
|
247
|
-
- **Fault Tolerance**: Self-healing with automatic recovery
|
|
248
|
-
- **Performance Optimization**: Real-time bottleneck resolution
|
|
249
|
-
|
|
250
|
-
### **MCP Tool Categories**
|
|
251
|
-
|
|
252
|
-
#### **๐ Swarm Orchestration** (15 tools)
|
|
253
|
-
- `swarm_init`, `agent_spawn`, `task_orchestrate`
|
|
254
|
-
- `swarm_monitor`, `topology_optimize`, `load_balance`
|
|
255
|
-
- `coordination_sync`, `swarm_scale`, `swarm_destroy`
|
|
256
|
-
|
|
257
|
-
#### **๐ง Neural & Cognitive** (12 tools)
|
|
258
|
-
- `neural_train`, `neural_predict`, `pattern_recognize`
|
|
259
|
-
- `cognitive_analyze`, `learning_adapt`, `neural_compress`
|
|
260
|
-
- `ensemble_create`, `transfer_learn`, `neural_explain`
|
|
199
|
+
### **SSH Sessions**
|
|
200
|
+
```bash
|
|
201
|
+
# Use SSH with TTY allocation
|
|
202
|
+
ssh -t user@host "npx claude-flow@2.0.0 init"
|
|
261
203
|
|
|
262
|
-
|
|
263
|
-
-
|
|
264
|
-
|
|
265
|
-
- `memory_compress`, `memory_sync`, `memory_analytics`
|
|
204
|
+
# Without TTY (automated scripts)
|
|
205
|
+
ssh user@host "npx claude-flow@2.0.0 init --batch --non-interactive"
|
|
206
|
+
```
|
|
266
207
|
|
|
267
|
-
|
|
268
|
-
- `performance_report`, `bottleneck_analyze`, `token_usage`
|
|
269
|
-
- `benchmark_run`, `metrics_collect`, `trend_analysis`
|
|
270
|
-
- `health_check`, `diagnostic_run`, `usage_stats`
|
|
208
|
+
### **๐ง Environment Detection Features**
|
|
271
209
|
|
|
272
|
-
|
|
273
|
-
- `workflow_create`, `workflow_execute`, `workflow_export`
|
|
274
|
-
- `automation_setup`, `pipeline_create`, `scheduler_manage`
|
|
275
|
-
- `trigger_setup`, `batch_process`, `parallel_execute`
|
|
210
|
+
Claude Flow v2.0.0 automatically detects your environment and applies smart defaults:
|
|
276
211
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
- `
|
|
212
|
+
| Environment | Auto-Applied Flags | Why |
|
|
213
|
+
|-------------|-------------------|-----|
|
|
214
|
+
| VS Code Output | `--non-interactive --dangerously-skip-permissions` | No TTY support |
|
|
215
|
+
| CI/CD | `--non-interactive --ci --quiet` | Automated execution |
|
|
216
|
+
| Docker (no TTY) | `--non-interactive --no-emoji` | Container compatibility |
|
|
217
|
+
| SSH (no TTY) | `--batch --non-interactive` | Remote execution |
|
|
218
|
+
| Git Bash | `--windows-compat` | Windows terminal quirks |
|
|
280
219
|
|
|
281
|
-
|
|
282
|
-
- `daa_agent_create`, `daa_capability_match`, `daa_resource_alloc`
|
|
283
|
-
- `daa_lifecycle_manage`, `daa_communication`, `daa_consensus`
|
|
220
|
+
### **๐ก Troubleshooting Tips**
|
|
284
221
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
222
|
+
**"Manual UI agreement needed" Error:**
|
|
223
|
+
```bash
|
|
224
|
+
# Solution 1: Use non-interactive mode
|
|
225
|
+
npx claude-flow@2.0.0 init --non-interactive
|
|
288
226
|
|
|
289
|
-
|
|
227
|
+
# Solution 2: Pre-configure defaults
|
|
228
|
+
export CLAUDE_AUTO_APPROVE=1
|
|
229
|
+
export CLAUDE_NON_INTERACTIVE=1
|
|
230
|
+
npx claude-flow@2.0.0 init
|
|
290
231
|
|
|
291
|
-
|
|
292
|
-
|
|
232
|
+
# Solution 3: Use the Web UI for full control (both methods work)
|
|
233
|
+
npx claude-flow@2.0.0 start --ui # Primary method
|
|
234
|
+
npx claude-flow@2.0.0 start-ui # Convenient alias
|
|
235
|
+
```
|
|
293
236
|
|
|
237
|
+
**Environment Detection Output:**
|
|
294
238
|
```bash
|
|
295
|
-
#
|
|
296
|
-
npx claude-flow@
|
|
239
|
+
# Check your detected environment
|
|
240
|
+
npx claude-flow@2.0.0 env-check
|
|
297
241
|
|
|
298
|
-
#
|
|
299
|
-
|
|
242
|
+
# Example output:
|
|
243
|
+
# Detected Environment: VS Code on darwin
|
|
244
|
+
# Recommended flags: --non-interactive --dangerously-skip-permissions
|
|
245
|
+
# Applied automatically: โ
|
|
300
246
|
```
|
|
301
247
|
|
|
302
|
-
### **๐ค Intelligent Agent Types**
|
|
303
|
-
- **๐ Queen Agent**: Master coordinator and decision maker
|
|
304
|
-
- **๐๏ธ Architect Agents**: System design and technical architecture
|
|
305
|
-
- **๐ป Coder Agents**: Implementation and development
|
|
306
|
-
- **๐งช Tester Agents**: Quality assurance and validation
|
|
307
|
-
- **๐ Analyst Agents**: Data analysis and insights
|
|
308
|
-
- **๐ Researcher Agents**: Information gathering and analysis
|
|
309
|
-
- **๐ก๏ธ Security Agents**: Security auditing and compliance
|
|
310
|
-
- **๐ DevOps Agents**: Deployment and infrastructure
|
|
311
|
-
|
|
312
248
|
---
|
|
313
249
|
|
|
314
|
-
## โก **
|
|
250
|
+
## โก **Quick Start - Revolutionary Setup**
|
|
315
251
|
|
|
316
|
-
###
|
|
252
|
+
### ๐ **Method 1: Automatic Setup (NEW - Recommended)**
|
|
317
253
|
```bash
|
|
318
|
-
#
|
|
319
|
-
npx claude-flow@alpha
|
|
320
|
-
npx claude-flow@alpha neural predict --model cognitive-analysis
|
|
321
|
-
npx claude-flow@alpha cognitive analyze --behavior "development workflow"
|
|
322
|
-
```
|
|
254
|
+
# One command - everything auto-configured!
|
|
255
|
+
npx claude-flow@alpha init
|
|
323
256
|
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
#
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
257
|
+
# This automatically:
|
|
258
|
+
# โ Detects Claude Code CLI (if installed)
|
|
259
|
+
# โ Configures claude-flow MCP server
|
|
260
|
+
# โ Configures ruv-swarm MCP server
|
|
261
|
+
# โ Creates complete .claude/ directory structure
|
|
262
|
+
# โ Sets up CLAUDE.md with comprehensive instructions
|
|
263
|
+
# โ Enables hooks for automation
|
|
264
|
+
# โ Creates local ./claude-flow wrapper
|
|
265
|
+
|
|
266
|
+
# Verify MCP integration worked
|
|
267
|
+
claude mcp list
|
|
332
268
|
```
|
|
333
269
|
|
|
334
|
-
###
|
|
270
|
+
### ๐ ๏ธ **Method 2: Development Mode (Full Features)**
|
|
335
271
|
```bash
|
|
336
|
-
#
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
npx claude-flow@alpha pipeline create --config advanced-deployment.json
|
|
272
|
+
# For advanced features and WebUI
|
|
273
|
+
git clone https://github.com/ruvnet/claude-code-flow.git
|
|
274
|
+
cd claude-code-flow && git checkout claude-flow-v2.0.0
|
|
340
275
|
|
|
276
|
+
# Initialize and start full system
|
|
277
|
+
npx claude-flow init
|
|
278
|
+
npx claude-flow start --ui
|
|
279
|
+
# Access WebUI at: http://localhost:3000
|
|
341
280
|
```
|
|
342
281
|
|
|
343
|
-
###
|
|
282
|
+
### ๐ง **Method 3: Testing Alpha Commands**
|
|
344
283
|
```bash
|
|
345
|
-
#
|
|
346
|
-
npx claude-flow@alpha github gh-coordinator analyze --analysis-type security
|
|
347
|
-
npx claude-flow@alpha github pr-manager review --multi-reviewer --ai-powered
|
|
348
|
-
npx claude-flow@alpha github release-manager coord --version 2.0.0 --auto-changelog
|
|
349
|
-
npx claude-flow@alpha github repo-architect optimize --structure-analysis
|
|
350
|
-
npx claude-flow@alpha github issue-tracker manage --project-coordination
|
|
351
|
-
npx claude-flow@alpha github sync-coordinator align --multi-package
|
|
352
|
-
```
|
|
284
|
+
# After running npx claude-flow@alpha init
|
|
353
285
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
286
|
+
# Test basic commands
|
|
287
|
+
npx claude-flow@alpha --version
|
|
288
|
+
npx claude-flow@alpha --help
|
|
357
289
|
|
|
358
|
-
|
|
359
|
-
|
|
290
|
+
# Test swarm functionality (basic in alpha)
|
|
291
|
+
npx claude-flow@alpha swarm --help
|
|
292
|
+
npx claude-flow@alpha agent --help
|
|
293
|
+
npx claude-flow@alpha status
|
|
360
294
|
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
โ
claude-flow MCP server configured
|
|
364
|
-
โ
ruv-swarm MCP server configured
|
|
365
|
-
โ
87 tools available in Claude Code
|
|
366
|
-
โ
--dangerously-skip-permissions set as default
|
|
295
|
+
# Use local wrapper (created by init)
|
|
296
|
+
./claude-flow --version
|
|
367
297
|
```
|
|
368
298
|
|
|
369
|
-
### **
|
|
299
|
+
### ๐งช **Alpha Testing Guide**
|
|
300
|
+
After running the init command, check these key features:
|
|
370
301
|
```bash
|
|
371
|
-
#
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
```
|
|
302
|
+
# โ
Files created correctly
|
|
303
|
+
ls -la # Should see CLAUDE.md, claude-flow, .claude/
|
|
304
|
+
ls -la .claude/commands/ # Should see multiple command categories
|
|
375
305
|
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
306
|
+
# โ
MCP servers configured (if Claude Code installed)
|
|
307
|
+
claude mcp list
|
|
308
|
+
# Should show: claude-flow and ruv-swarm servers
|
|
379
309
|
|
|
380
|
-
|
|
381
|
-
-
|
|
382
|
-
|
|
383
|
-
- **Decision Tracking**: Complete audit trail of AI decisions
|
|
384
|
-
- **Performance Learning**: Continuous improvement from past executions
|
|
310
|
+
# โ
Help system works
|
|
311
|
+
npx claude-flow@alpha --help
|
|
312
|
+
npx claude-flow@alpha init --help
|
|
385
313
|
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
# Automatic error recovery and optimization
|
|
389
|
-
npx claude-flow@alpha health check --components all --auto-heal
|
|
390
|
-
npx claude-flow@alpha fault tolerance --strategy retry-with-learning
|
|
391
|
-
npx claude-flow@alpha bottleneck analyze --auto-optimize
|
|
314
|
+
# โ
Local wrapper works
|
|
315
|
+
./claude-flow --version
|
|
392
316
|
```
|
|
393
317
|
|
|
394
|
-
### **๐พ Advanced Memory Architecture**
|
|
395
|
-
- **Cross-Session Persistence**: Remember context across Claude Code sessions
|
|
396
|
-
- **Namespace Management**: Organized memory with hierarchical access
|
|
397
|
-
- **Memory Compression**: Efficient storage of large coordination contexts
|
|
398
|
-
- **Distributed Sync**: Share memory across multiple AI instances
|
|
399
|
-
|
|
400
318
|
---
|
|
401
319
|
|
|
402
|
-
##
|
|
403
|
-
|
|
404
|
-
###
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
320
|
+
## ๐ฏ **Key Features & Capabilities**
|
|
321
|
+
|
|
322
|
+
### ๐ง **Neural Network Processing**
|
|
323
|
+
| Feature | What It Does | Real-World Impact |
|
|
324
|
+
|---------|------------|-------------------|
|
|
325
|
+
| **WASM Core** | 512KB compiled neural networks with SIMD | Runs locally, no cloud dependency |
|
|
326
|
+
| **Live Training** | Watch models learn in real-time | See progress, adjust parameters |
|
|
327
|
+
| **Pattern Learning** | Remembers successful strategies | Gets better at your specific tasks |
|
|
328
|
+
| **Smart Compression** | Reduces model size by 65% | Faster loading, less memory usage |
|
|
329
|
+
| **ruv-FANN Based** | Proven neural network technology | Reliable, well-tested foundation |
|
|
330
|
+
|
|
331
|
+
### ๐ **Swarm Coordination (87 MCP Tools)**
|
|
332
|
+
| Category | Tools | Core Capabilities |
|
|
333
|
+
|----------|-------|-------------------|
|
|
334
|
+
| **Swarm Coordination** | 12 tools | Multi-agent orchestration, topology optimization |
|
|
335
|
+
| **Neural Networks** | 15 tools | WASM training, pattern recognition, model management |
|
|
336
|
+
| **Memory & Persistence** | 12 tools | Cross-session storage, backup/restore, compression |
|
|
337
|
+
| **Analysis & Monitoring** | 13 tools | Performance tracking, bottleneck detection, metrics |
|
|
338
|
+
| **Workflow & Automation** | 11 tools | CI/CD pipelines, task scheduling, batch processing |
|
|
339
|
+
|
|
340
|
+
### ๐ **NEW: Hive Mind System (v2.0.0)**
|
|
341
|
+
Advanced swarm intelligence with collective decision-making and queen-led coordination:
|
|
342
|
+
|
|
343
|
+
```bash
|
|
344
|
+
# Interactive wizard for easy setup
|
|
345
|
+
npx claude-flow@2.0.0 hive-mind wizard
|
|
346
|
+
|
|
347
|
+
# Spawn intelligent swarm with objective
|
|
348
|
+
npx claude-flow@2.0.0 hive-mind spawn "Build enterprise microservices"
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
**Key Features:**
|
|
352
|
+
- **Queen Coordinators**: Strategic, Tactical, or Adaptive leadership
|
|
353
|
+
- **Collective Memory**: SQLite-backed shared knowledge base
|
|
354
|
+
- **Consensus Mechanisms**: Majority, Weighted, or Byzantine fault-tolerant voting
|
|
355
|
+
- **Auto-scaling**: Dynamic worker allocation based on workload
|
|
356
|
+
- **Real-time Metrics**: Performance analytics and swarm monitoring
|
|
357
|
+
|
|
358
|
+
| **GitHub Integration** | 8 tools | PR management, issue tracking, release coordination |
|
|
359
|
+
| **DAA (Dynamic Agent Architecture)** | 8 tools | Resource allocation, lifecycle management, consensus |
|
|
360
|
+
| **System & Utilities** | 8 tools | Security scanning, diagnostics, backup management |
|
|
361
|
+
|
|
362
|
+
### ๐ **Modern WebUI Features**
|
|
363
|
+
| Component | Functionality | Technology |
|
|
364
|
+
|-----------|---------------|------------|
|
|
365
|
+
| **Terminal Emulator** | Real-time command execution | WebSocket integration |
|
|
366
|
+
| **SPARC Commands** | 10 direct development modes | Native browser support |
|
|
367
|
+
| **Status Monitoring** | Live agent and system metrics | Real-time updates |
|
|
368
|
+
| **Memory Interface** | Visual memory management | Interactive controls |
|
|
369
|
+
| **Settings Panel** | Complete configuration control | Persistent preferences |
|
|
370
|
+
|
|
371
|
+
### ๐พ **Enterprise Memory System**
|
|
372
|
+
| Feature | Specification | Performance |
|
|
373
|
+
|---------|---------------|-------------|
|
|
374
|
+
| **Active Memory** | 27.3 MB with smart compression | 65% efficiency |
|
|
375
|
+
| **Cross-Session** | Persistent context preservation | Zero data loss |
|
|
376
|
+
| **Neural Storage** | Pattern and learning persistence | Continuous adaptation |
|
|
377
|
+
| **Backup System** | Automated backup/restore | Version control |
|
|
378
|
+
| **Namespace Management** | Organized memory structures | Efficient retrieval |
|
|
424
379
|
|
|
425
380
|
---
|
|
426
381
|
|
|
427
|
-
## ๐ฎ **
|
|
382
|
+
## ๐ฎ **Comprehensive Usage Examples**
|
|
428
383
|
|
|
429
|
-
###
|
|
384
|
+
### ๐ **Basic Coordination Operations**
|
|
430
385
|
```bash
|
|
431
|
-
#
|
|
432
|
-
npx claude-flow@
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
--memory-namespace ecommerce \
|
|
436
|
-
--claude
|
|
437
|
-
|
|
438
|
-
# Monitor progress in real-time
|
|
439
|
-
npx claude-flow@alpha swarm monitor --dashboard --real-time
|
|
440
|
-
```
|
|
386
|
+
# System status and health monitoring
|
|
387
|
+
npx claude-flow@2.0.0 swarm status
|
|
388
|
+
npx claude-flow@2.0.0 neural status
|
|
389
|
+
npx claude-flow@2.0.0 health check
|
|
441
390
|
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
npx claude-flow@
|
|
446
|
-
--strategy research \
|
|
447
|
-
--neural-patterns enabled \
|
|
448
|
-
--memory-compression high \
|
|
449
|
-
--claude
|
|
450
|
-
|
|
451
|
-
# Analyze results with cognitive computing
|
|
452
|
-
npx claude-flow@alpha cognitive analyze --target research-results
|
|
453
|
-
```
|
|
391
|
+
# Memory management operations
|
|
392
|
+
npx claude-flow@2.0.0 memory usage --action store --key "project_context" --value "API development"
|
|
393
|
+
npx claude-flow@2.0.0 memory search --pattern "auth" --limit 10
|
|
394
|
+
npx claude-flow@2.0.0 memory backup --auto-restore true
|
|
454
395
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
npx claude-flow@
|
|
459
|
-
npx claude-flow@alpha github repo-architect optimize --security-focused --compliance SOC2
|
|
460
|
-
npx claude-flow@alpha hive-mind spawn "security audit and compliance review" --claude
|
|
396
|
+
# Agent coordination
|
|
397
|
+
npx claude-flow@2.0.0 agent list
|
|
398
|
+
npx claude-flow@2.0.0 agent metrics --agent-id coordinator-001
|
|
399
|
+
npx claude-flow@2.0.0 swarm monitor --real-time
|
|
461
400
|
```
|
|
462
401
|
|
|
463
|
-
|
|
402
|
+
### ๐ฅ **Advanced Neural Development**
|
|
403
|
+
```bash
|
|
404
|
+
# Neural pattern training with real WASM
|
|
405
|
+
npx claude-flow@2.0.0 neural train \
|
|
406
|
+
--pattern-type coordination \
|
|
407
|
+
--training-data "development-patterns.json" \
|
|
408
|
+
--epochs 100
|
|
464
409
|
|
|
465
|
-
|
|
410
|
+
# Cognitive analysis and pattern recognition
|
|
411
|
+
npx claude-flow@2.0.0 cognitive analyze --behavior "code-review-patterns"
|
|
412
|
+
npx claude-flow@2.0.0 pattern recognize --data coordination-logs.json
|
|
466
413
|
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
โ (Master Coordinator) โ
|
|
472
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
473
|
-
โ ๐๏ธ Architect โ ๐ป Coder โ ๐งช Tester โ ๐ Research โ ๐ก๏ธ Security โ
|
|
474
|
-
โ Agent โ Agent โ Agent โ Agent โ Agent โ
|
|
475
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
476
|
-
โ ๐ง Neural Pattern Recognition Layer โ
|
|
477
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
478
|
-
โ ๐พ Distributed Memory System โ
|
|
479
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
480
|
-
โ โก 87 MCP Tools Integration Layer โ
|
|
481
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
482
|
-
โ ๐ก๏ธ Claude Code Integration โ
|
|
483
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
414
|
+
# Model management and optimization
|
|
415
|
+
npx claude-flow@2.0.0 model save --model-id neural-coord-001 --path ./models/
|
|
416
|
+
npx claude-flow@2.0.0 neural compress --model-id neural-coord-001 --ratio 0.7
|
|
417
|
+
npx claude-flow@2.0.0 ensemble create --models "model1,model2,model3" --strategy voting
|
|
484
418
|
```
|
|
485
419
|
|
|
486
|
-
###
|
|
487
|
-
- **Hierarchical**: Queen-led with specialized worker agents
|
|
488
|
-
- **Mesh**: Peer-to-peer coordination for complex tasks
|
|
489
|
-
- **Hybrid**: Dynamic strategy selection based on task complexity
|
|
490
|
-
- **Neural-Enhanced**: AI-optimized coordination patterns
|
|
491
|
-
|
|
492
|
-
---
|
|
493
|
-
|
|
494
|
-
## ๐ ๏ธ **Alpha Installation & Setup**
|
|
495
|
-
|
|
496
|
-
### **๐ Quick Alpha Installation**
|
|
420
|
+
### ๐๏ธ **Enterprise Workflow Automation**
|
|
497
421
|
```bash
|
|
498
|
-
#
|
|
499
|
-
|
|
422
|
+
# Complete development pipeline
|
|
423
|
+
npx claude-flow@2.0.0 workflow create --name "full-stack-dev" --steps '[
|
|
424
|
+
{"type": "coordination", "action": "swarm-init", "topology": "hierarchical"},
|
|
425
|
+
{"type": "development", "action": "sparc-architect", "task": "design-api"},
|
|
426
|
+
{"type": "implementation", "action": "sparc-coder", "task": "build-endpoints"},
|
|
427
|
+
{"type": "testing", "action": "sparc-tester", "task": "comprehensive-tests"},
|
|
428
|
+
{"type": "deployment", "action": "automation-setup", "target": "production"}
|
|
429
|
+
]'
|
|
500
430
|
|
|
501
|
-
#
|
|
502
|
-
npx claude-flow@
|
|
431
|
+
# Execute automated workflow with monitoring
|
|
432
|
+
npx claude-flow@2.0.0 workflow execute --workflow-id full-stack-dev --monitor --export-metrics
|
|
503
433
|
|
|
504
|
-
#
|
|
505
|
-
claude-flow
|
|
434
|
+
# GitHub integration automation
|
|
435
|
+
npx claude-flow@2.0.0 github repo analyze --repo "my-project" --analysis-type performance
|
|
436
|
+
npx claude-flow@2.0.0 github pr manage --repo "my-project" --action review --pr-number 42
|
|
437
|
+
npx claude-flow@2.0.0 github workflow auto --repo "my-project" --workflow deployment.yml
|
|
506
438
|
```
|
|
507
439
|
|
|
508
|
-
###
|
|
440
|
+
### ๐ **Performance Monitoring & Analytics**
|
|
509
441
|
```bash
|
|
510
|
-
#
|
|
511
|
-
npx claude-flow@
|
|
442
|
+
# Comprehensive performance reporting
|
|
443
|
+
npx claude-flow@2.0.0 performance report --timeframe 24h --format detailed
|
|
444
|
+
npx claude-flow@2.0.0 bottleneck analyze --component swarm-coordination
|
|
445
|
+
npx claude-flow@2.0.0 trend analysis --metric "response-time" --period "7d"
|
|
512
446
|
|
|
513
|
-
#
|
|
514
|
-
npx claude-flow@
|
|
447
|
+
# Cost and resource analysis
|
|
448
|
+
npx claude-flow@2.0.0 cost analysis --timeframe 30d
|
|
449
|
+
npx claude-flow@2.0.0 usage stats --component neural-processing
|
|
450
|
+
npx claude-flow@2.0.0 quality assess --target coordination-patterns
|
|
515
451
|
|
|
516
|
-
#
|
|
517
|
-
npx claude-flow@
|
|
452
|
+
# System diagnostics and optimization
|
|
453
|
+
npx claude-flow@2.0.0 diagnostic run --components "swarm,neural,memory"
|
|
454
|
+
npx claude-flow@2.0.0 topology optimize --swarm-id hierarchical-dev-001
|
|
455
|
+
npx claude-flow@2.0.0 load balance --swarm-id mesh-prod-001 --tasks high-priority.json
|
|
518
456
|
```
|
|
519
457
|
|
|
520
458
|
---
|
|
521
459
|
|
|
522
|
-
## ๐ **
|
|
523
|
-
|
|
524
|
-
###
|
|
525
|
-
| Command |
|
|
526
|
-
|
|
527
|
-
| `
|
|
528
|
-
| `
|
|
529
|
-
| `
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
|
535
|
-
|
|
536
|
-
| `
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
|
544
|
-
|
|
545
|
-
| `memory
|
|
546
|
-
| `memory
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
|
553
|
-
|
|
460
|
+
## ๐ **Complete Command Reference**
|
|
461
|
+
|
|
462
|
+
### **๐๏ธ Core Coordination Commands**
|
|
463
|
+
| Command | Purpose | Example |
|
|
464
|
+
|---------|---------|---------|
|
|
465
|
+
| `swarm-init` | Initialize swarm topology | `--topology mesh --max-agents 8` |
|
|
466
|
+
| `agent-spawn` | Create specialized agents | `--type researcher --name "DataBot"` |
|
|
467
|
+
| `task-orchestrate` | Coordinate complex workflows | `--strategy parallel --share-results` |
|
|
468
|
+
| `swarm-status` | Monitor swarm health | `--detailed --export-metrics` |
|
|
469
|
+
| `coordination-sync` | Synchronize agent coordination | `--swarm-id mesh-dev-001` |
|
|
470
|
+
|
|
471
|
+
### **๐ง Neural Processing Commands**
|
|
472
|
+
| Command | Purpose | Example |
|
|
473
|
+
|---------|---------|---------|
|
|
474
|
+
| `neural-train` | Train patterns with WASM | `--epochs 50 --pattern-type coordination` |
|
|
475
|
+
| `neural-predict` | Make AI predictions | `--model-id coord-001 --input task-data` |
|
|
476
|
+
| `pattern-recognize` | Analyze cognitive patterns | `--data coordination-logs.json` |
|
|
477
|
+
| `model-save` | Save trained models | `--model-id neural-001 --path ./models/` |
|
|
478
|
+
| `neural-explain` | AI explainability | `--model-id coord-001 --prediction results` |
|
|
479
|
+
|
|
480
|
+
### **๐พ Memory & State Management**
|
|
481
|
+
| Command | Purpose | Example |
|
|
482
|
+
|---------|---------|---------|
|
|
483
|
+
| `memory-usage` | Store/retrieve data | `--action store --key context --value data` |
|
|
484
|
+
| `memory-search` | Search memory patterns | `--pattern "auth" --limit 10` |
|
|
485
|
+
| `memory-backup` | Backup memory stores | `--auto-restore true` |
|
|
486
|
+
| `state-snapshot` | Create state snapshots | `--name "milestone-v1"` |
|
|
487
|
+
| `memory-analytics` | Analyze memory usage | `--timeframe 7d` |
|
|
488
|
+
|
|
489
|
+
### **๐ Analysis & Monitoring**
|
|
490
|
+
| Command | Purpose | Example |
|
|
491
|
+
|---------|---------|---------|
|
|
492
|
+
| `performance-report` | Generate performance metrics | `--timeframe 24h --format json` |
|
|
493
|
+
| `bottleneck-analyze` | Identify performance issues | `--component coordination` |
|
|
494
|
+
| `trend-analysis` | Analyze performance trends | `--metric response-time --period 7d` |
|
|
495
|
+
| `health-check` | System health monitoring | `--components "swarm,neural"` |
|
|
496
|
+
| `metrics-collect` | Collect system metrics | `--export-format prometheus` |
|
|
497
|
+
|
|
498
|
+
### **๐ Workflow & Automation**
|
|
499
|
+
| Command | Purpose | Example |
|
|
500
|
+
|---------|---------|---------|
|
|
501
|
+
| `workflow-create` | Create custom workflows | `--name dev-pipeline --steps config.json` |
|
|
502
|
+
| `automation-setup` | Setup automation rules | `--rules deployment-rules.json` |
|
|
503
|
+
| `pipeline-create` | Create CI/CD pipelines | `--config pipeline-config.yml` |
|
|
504
|
+
| `batch-process` | Batch processing | `--items tasks.json --operation execute` |
|
|
505
|
+
| `parallel-execute` | Execute tasks in parallel | `--tasks "task1,task2,task3"` |
|
|
506
|
+
|
|
507
|
+
### **๐ GitHub Integration Commands**
|
|
508
|
+
| Command | Purpose | Example |
|
|
509
|
+
|---------|---------|---------|
|
|
510
|
+
| `github-repo-analyze` | Repository analysis | `--repo my-project --analysis-type security` |
|
|
511
|
+
| `github-pr-manage` | Pull request management | `--action review --pr-number 42` |
|
|
512
|
+
| `github-issue-track` | Issue tracking & triage | `--action auto-assign --labels bug` |
|
|
513
|
+
| `github-release-coord` | Release coordination | `--version v2.1.0 --strategy automated` |
|
|
514
|
+
| `github-metrics` | Repository metrics | `--timeframe 30d --export csv` |
|
|
515
|
+
|
|
516
|
+
### **๐ WebUI & SPARC Commands**
|
|
517
|
+
| Command | Purpose | Example |
|
|
518
|
+
|---------|---------|---------|
|
|
519
|
+
| `start-ui` | Launch UI (alias for start --ui) | `--port 3000 --theme dark` |
|
|
520
|
+
| `sparc-mode` | Execute SPARC modes | `--mode coder --task "build API"` |
|
|
521
|
+
| `terminal-execute` | Execute terminal commands | `--command "npm test" --capture-output` |
|
|
522
|
+
| `config-manage` | Configuration management | `--action update --config ui-settings.json` |
|
|
523
|
+
| `features-detect` | Feature detection | `--component ui --capabilities` |
|
|
554
524
|
|
|
555
525
|
---
|
|
556
526
|
|
|
557
|
-
##
|
|
527
|
+
## ๐๏ธ **How It Works**
|
|
528
|
+
|
|
529
|
+
### **๐๏ธ Simple Yet Powerful Architecture**
|
|
530
|
+
```
|
|
531
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
532
|
+
โ Claude Code Integration โ
|
|
533
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
534
|
+
โ MCP Tools (87) โ Web Interface โ Neural Processing โ
|
|
535
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
536
|
+
โ Swarm Coordinator + Monitoring โ
|
|
537
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
538
|
+
โ Agent Pool: Coordinator, Coder, Researcher, Analyst, Tester โ
|
|
539
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
540
|
+
โ WASM Neural Networks + Pattern Learning โ
|
|
541
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
542
|
+
โ Persistent Memory + Session State โ
|
|
543
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
544
|
+
โ Rust-based QUDAG Foundation โ
|
|
545
|
+
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
546
|
+
```
|
|
547
|
+
|
|
548
|
+
### **๐ Core Components**
|
|
549
|
+
- **Claude Code MCP** - Direct integration through 87 purpose-built tools
|
|
550
|
+
- **Neural Processing** - Local WASM networks that learn and adapt
|
|
551
|
+
- **Swarm Coordination** - Agents that actually work together in parallel
|
|
552
|
+
- **Web Interface** - Browser-based control center with real-time updates
|
|
553
|
+
- **Memory System** - 27.3MB of compressed, persistent storage
|
|
554
|
+
- **Performance Monitoring** - Built-in metrics and bottleneck detection
|
|
555
|
+
- **Workflow Engine** - Automate complex tasks with simple commands
|
|
556
|
+
- **QUDAG Foundation** - Efficient Rust-based processing architecture
|
|
558
557
|
|
|
559
|
-
|
|
560
|
-
Found issues with the alpha? We want to hear from you!
|
|
561
|
-
|
|
562
|
-
- **๐ Report Bugs**: [GitHub Issues](https://github.com/ruvnet/claude-code-flow/issues)
|
|
563
|
-
- **๐ก Feature Requests**: Use the "Alpha Feedback" label
|
|
564
|
-
- **๐ ๏ธ Development**: Check the [`claude-flow-v2.0.0`](https://github.com/ruvnet/claude-code-flow/tree/claude-flow-v2.0.0) branch
|
|
565
|
-
- **๐ Alpha Testing**: Join our alpha testing program
|
|
558
|
+
---
|
|
566
559
|
|
|
567
|
-
|
|
568
|
-
```bash
|
|
569
|
-
# Test available GitHub modes
|
|
570
|
-
npx claude-flow@alpha github gh-coordinator --help
|
|
571
|
-
npx claude-flow@alpha github pr-manager --help
|
|
572
|
-
npx claude-flow@alpha github issue-tracker --help
|
|
573
|
-
npx claude-flow@alpha github release-manager --help
|
|
574
|
-
npx claude-flow@alpha github repo-architect --help
|
|
575
|
-
npx claude-flow@alpha github sync-coordinator --help
|
|
576
|
-
|
|
577
|
-
# Test memory functionality
|
|
578
|
-
npx claude-flow@alpha memory stats
|
|
579
|
-
npx claude-flow@alpha memory store "test" "alpha testing data"
|
|
580
|
-
npx claude-flow@alpha memory query "test"
|
|
581
|
-
|
|
582
|
-
# Test workflow execution
|
|
583
|
-
npx claude-flow@alpha workflow create --name "Test Pipeline" --parallel
|
|
584
|
-
```
|
|
560
|
+
## ๐งช **Testing & Quality Assurance**
|
|
585
561
|
|
|
586
|
-
### **๐
|
|
562
|
+
### **๐ Enterprise Quality Metrics (v2.0.0)**
|
|
587
563
|
```bash
|
|
588
|
-
#
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
564
|
+
# Comprehensive test execution
|
|
565
|
+
npm run test # Complete test suite
|
|
566
|
+
npm run test:mcp # MCP tools testing (87 tools)
|
|
567
|
+
npm run test:neural # Neural network validation
|
|
568
|
+
npm run test:swarm # Swarm coordination testing
|
|
569
|
+
npm run test:ui # WebUI functionality testing
|
|
570
|
+
npm run test:integration # End-to-end integration testing
|
|
593
571
|
|
|
594
|
-
#
|
|
595
|
-
|
|
572
|
+
# Performance benchmarking
|
|
573
|
+
npm run benchmark:swarm # Swarm performance testing
|
|
574
|
+
npm run benchmark:neural # Neural processing benchmarks
|
|
575
|
+
npm run benchmark:memory # Memory system performance
|
|
596
576
|
```
|
|
597
577
|
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
-
|
|
604
|
-
-
|
|
605
|
-
- โ
Neural pattern recognition
|
|
606
|
-
- โ
Distributed memory architecture
|
|
607
|
-
- โ
Auto-MCP setup for Claude Code
|
|
608
|
-
|
|
609
|
-
### **๐ Beta Phase (Coming Soon)**
|
|
610
|
-
- ๐ Enhanced swarm intelligence algorithms
|
|
611
|
-
- ๐ Advanced cognitive computing features
|
|
612
|
-
- ๐ Enterprise security and compliance
|
|
613
|
-
- ๐ Multi-cloud deployment automation
|
|
614
|
-
- ๐ Real-time collaboration features
|
|
615
|
-
|
|
616
|
-
### **๐ Stable v2.0.0 (Q2 2025)**
|
|
617
|
-
- ๐ฏ Production-ready hive-mind orchestration
|
|
618
|
-
- ๐ฏ Complete neural computing suite
|
|
619
|
-
- ๐ฏ Enterprise-grade security and monitoring
|
|
620
|
-
- ๐ฏ Comprehensive documentation and tutorials
|
|
621
|
-
- ๐ฏ Professional support and training
|
|
578
|
+
### **โ
Quality Achievements**
|
|
579
|
+
- **๐ฏ 100% Test Success Rate**: All 87 MCP tools validated with comprehensive testing
|
|
580
|
+
- **โก 2.8-4.4x Performance**: Verified speed improvements with parallel processing
|
|
581
|
+
- **๐ง 89% Neural Accuracy**: Real WASM neural networks with authentic training
|
|
582
|
+
- **๐พ 65% Memory Efficiency**: Advanced compression with zero data loss
|
|
583
|
+
- **๐ Enterprise Security**: Non-root containers, vulnerability scanning, audit trails
|
|
584
|
+
- **๐ Cross-Platform Support**: Windows, macOS, Linux with Node.js 20+ optimization
|
|
622
585
|
|
|
623
586
|
---
|
|
624
587
|
|
|
625
|
-
##
|
|
588
|
+
## ๐งช **Alpha v2.0.0-alpha.3 Status**
|
|
626
589
|
|
|
627
|
-
###
|
|
590
|
+
### โ
**What Works in Alpha**
|
|
591
|
+
- **Basic CLI functionality** - Core commands and help system
|
|
592
|
+
- **Automatic MCP setup** - Detects and configures Claude Code integration
|
|
593
|
+
- **Complete project initialization** - All files, directories, and configurations
|
|
594
|
+
- **Cross-platform support** - Unix, Windows, PowerShell wrappers
|
|
595
|
+
- **Help documentation** - Comprehensive command documentation
|
|
596
|
+
- **Local wrapper** - `./claude-flow` executable for project-specific usage
|
|
597
|
+
|
|
598
|
+
### ๐ง **Development Mode Features**
|
|
599
|
+
For full functionality, use development mode:
|
|
628
600
|
```bash
|
|
629
|
-
# Clone the alpha development branch
|
|
630
601
|
git clone https://github.com/ruvnet/claude-code-flow.git
|
|
631
|
-
cd claude-code-flow
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
# Install alpha dependencies
|
|
635
|
-
npm install
|
|
636
|
-
|
|
637
|
-
# Build alpha version
|
|
638
|
-
npm run build:alpha
|
|
639
|
-
|
|
640
|
-
# Test alpha features
|
|
641
|
-
npm run test:alpha
|
|
602
|
+
cd claude-code-flow && git checkout claude-flow-v2.0.0
|
|
603
|
+
npm install && npx claude-flow start --ui
|
|
642
604
|
```
|
|
643
605
|
|
|
644
|
-
|
|
645
|
-
-
|
|
646
|
-
-
|
|
647
|
-
-
|
|
648
|
-
-
|
|
649
|
-
-
|
|
606
|
+
Development mode includes:
|
|
607
|
+
- **Full WebUI** - Browser-based interface at http://localhost:3000
|
|
608
|
+
- **Neural processing** - WASM-based neural networks
|
|
609
|
+
- **Advanced swarm operations** - Complete agent coordination
|
|
610
|
+
- **Real-time monitoring** - Live performance metrics
|
|
611
|
+
- **All 87 MCP tools** - Complete ruv-swarm integration
|
|
612
|
+
|
|
613
|
+
### ๐ **Feedback & Issues**
|
|
614
|
+
- **GitHub Issues**: https://github.com/ruvnet/claude-code-flow/issues/147
|
|
615
|
+
- **NPM Package**: https://www.npmjs.com/package/claude-flow
|
|
616
|
+
- **Testing**: Report any issues with `npx claude-flow@alpha init`
|
|
650
617
|
|
|
651
618
|
---
|
|
652
619
|
|
|
653
|
-
##
|
|
620
|
+
## ๐ **Comprehensive Documentation**
|
|
654
621
|
|
|
655
|
-
###
|
|
622
|
+
### **๐ Getting Started Resources**
|
|
623
|
+
- [โก Quick Start Guide](./docs/quick-start.md) - Revolutionary setup in minutes
|
|
624
|
+
- [๐ง Claude Code Integration](./docs/claude-code-setup.md) - Complete MCP configuration
|
|
625
|
+
- [๐ ruv-swarm Setup](./docs/ruv-swarm-integration.md) - Neural coordination guide
|
|
626
|
+
- [๐ WebUI Documentation](./docs/webui-guide.md) - Modern interface features
|
|
656
627
|
|
|
657
|
-
|
|
628
|
+
### **๐ง Advanced Coordination Topics**
|
|
629
|
+
- [๐๏ธ Swarm Orchestration](./docs/swarm-coordination.md) - Multi-agent management
|
|
630
|
+
- [๐ง Neural Processing](./docs/neural-networks.md) - WASM neural integration
|
|
631
|
+
- [๐พ Memory Systems](./docs/memory-management.md) - Persistent storage guide
|
|
632
|
+
- [๐ Performance Monitoring](./docs/monitoring-analytics.md) - Real-time metrics
|
|
658
633
|
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
"permissions": {
|
|
665
|
-
"allow": [
|
|
666
|
-
"mcp__ruv-swarm",
|
|
667
|
-
"mcp__claude-flow"
|
|
668
|
-
],
|
|
669
|
-
"deny": []
|
|
670
|
-
}
|
|
671
|
-
}
|
|
672
|
-
```
|
|
634
|
+
### **๐ ๏ธ Enterprise Features**
|
|
635
|
+
- [๐ Workflow Automation](./docs/workflow-automation.md) - CI/CD pipeline setup
|
|
636
|
+
- [๐ GitHub Integration](./docs/github-automation.md) - Repository management
|
|
637
|
+
- [๐ Security Features](./docs/security-guide.md) - Enterprise security setup
|
|
638
|
+
- [๐ฏ API Reference](./docs/api-reference.md) - Complete command documentation
|
|
673
639
|
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
- **Zero-Trust Agent Communication**: Every inter-agent message is validated
|
|
678
|
-
- **Encrypted Memory Storage**: Cross-session persistence with AES-256 encryption
|
|
640
|
+
---
|
|
641
|
+
|
|
642
|
+
## ๐ **Hive Mind System - Intelligent Task Orchestration**
|
|
679
643
|
|
|
680
|
-
|
|
644
|
+
The Hive Mind system is a revolutionary approach to complex task management, combining multiple specialized agents into a unified intelligence that breaks down and conquers any development challenge.
|
|
681
645
|
|
|
682
|
-
|
|
646
|
+
### **๐ Quick Start with Hive Mind**
|
|
683
647
|
```bash
|
|
684
|
-
#
|
|
685
|
-
npx claude-flow
|
|
686
|
-
|
|
648
|
+
# Launch the Hive Mind interactive wizard
|
|
649
|
+
npx claude-flow@2.0.0 hive-mind
|
|
650
|
+
|
|
651
|
+
# Or use the direct command
|
|
652
|
+
npx claude-flow@2.0.0 hive
|
|
687
653
|
```
|
|
688
654
|
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
-
|
|
692
|
-
-
|
|
693
|
-
-
|
|
655
|
+
### **๐ฏ What is Hive Mind?**
|
|
656
|
+
Hive Mind orchestrates multiple Claude Code agents to work in perfect coordination:
|
|
657
|
+
- **๐ง Intelligent Task Analysis**: Automatically breaks down complex projects
|
|
658
|
+
- **๐ฅ Specialized Agent Teams**: Each agent focuses on their expertise
|
|
659
|
+
- **๐ Real-Time Coordination**: Agents share discoveries and build on each other's work
|
|
660
|
+
- **๐ Progress Visualization**: Watch your project come together in real-time
|
|
661
|
+
- **๐พ Persistent Learning**: The hive remembers and improves with each task
|
|
694
662
|
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
663
|
+
### **๐ Hive Mind Features**
|
|
664
|
+
| Feature | Description | Benefit |
|
|
665
|
+
|---------|-------------|---------|
|
|
666
|
+
| **Interactive Wizard** | Step-by-step project setup | Zero learning curve |
|
|
667
|
+
| **Auto-Agent Selection** | Picks the right agents for your task | Optimal team composition |
|
|
668
|
+
| **Parallel Execution** | All agents work simultaneously | 2.8-4.4x faster completion |
|
|
669
|
+
| **Shared Memory** | Agents build on each other's work | No duplicate effort |
|
|
670
|
+
| **Progress Tracking** | Real-time status updates | Always know what's happening |
|
|
671
|
+
|
|
672
|
+
### **๐ง Example: Building a Full-Stack App**
|
|
673
|
+
```bash
|
|
674
|
+
# Start Hive Mind wizard
|
|
675
|
+
npx claude-flow@2.0.0 hive-mind
|
|
676
|
+
|
|
677
|
+
# Wizard prompts:
|
|
678
|
+
# 1. Task: "Build a REST API with authentication and React frontend"
|
|
679
|
+
# 2. Complexity: High
|
|
680
|
+
# 3. Timeline: Standard
|
|
681
|
+
# 4. Features: Auth, Database, API, Frontend, Tests
|
|
682
|
+
|
|
683
|
+
# Hive Mind automatically:
|
|
684
|
+
# - Spawns 6 specialized agents
|
|
685
|
+
# - Creates 15+ coordinated tasks
|
|
686
|
+
# - Manages dependencies
|
|
687
|
+
# - Tracks progress
|
|
688
|
+
# - Delivers complete, tested code
|
|
689
|
+
```
|
|
690
|
+
|
|
691
|
+
### **๐จ Hive Mind Use Cases**
|
|
692
|
+
- **Complex System Design**: Architect entire applications with coordinated agents
|
|
693
|
+
- **Rapid Prototyping**: Go from idea to working code in minutes
|
|
694
|
+
- **Code Migration**: Modernize legacy systems with intelligent analysis
|
|
695
|
+
- **Performance Optimization**: Multiple agents analyze and improve code
|
|
696
|
+
- **Documentation Generation**: Comprehensive docs created alongside code
|
|
697
|
+
|
|
698
|
+
### **๐ Learn More**
|
|
699
|
+
- [Hive Mind Overview](./docs/hive-mind/overview.md) - Complete system architecture
|
|
700
|
+
- [CLI Commands Guide](./docs/hive-mind/cli-commands.md) - All Hive Mind commands
|
|
701
|
+
- [Interactive Wizard](./docs/hive-mind/wizard-guide.md) - Step-by-step walkthrough
|
|
702
|
+
- [API Reference](./docs/hive-mind/api-reference.md) - Programmatic usage
|
|
703
|
+
- [Examples](./docs/hive-mind/examples.md) - Real-world usage patterns
|
|
704
|
+
- [Troubleshooting](./docs/hive-mind/troubleshooting.md) - Common issues & solutions
|
|
705
|
+
|
|
706
|
+
### **๐ค Development & Contributing**
|
|
707
|
+
- [๐จโ๐ป Development Setup](./docs/development-setup.md) - Local development guide
|
|
708
|
+
- [๐ MCP Tool Development](./docs/mcp-development.md) - Creating custom tools
|
|
709
|
+
- [๐งช Testing Guidelines](./docs/testing-guide.md) - Quality assurance standards
|
|
710
|
+
- [๐ Contributing Guide](./CONTRIBUTING.md) - How to contribute effectively
|
|
701
711
|
|
|
702
|
-
|
|
703
|
-
- Pattern recognition for anomalous behavior
|
|
704
|
-
- Automatic agent suspension on security violations
|
|
705
|
-
- Neural network-based threat prediction
|
|
706
|
-
- Self-healing security responses
|
|
712
|
+
---
|
|
707
713
|
|
|
708
|
-
|
|
714
|
+
## ๐ค **Contributing to the Revolution**
|
|
709
715
|
|
|
710
|
-
|
|
711
|
-
- End-to-end encryption for all agent communications
|
|
712
|
-
- <1ms latency with full encryption
|
|
713
|
-
- Secure WebSocket connections with TLS 1.3
|
|
714
|
-
- Certificate pinning for MCP servers
|
|
716
|
+
### **๐ฏ Priority Contribution Areas**
|
|
715
717
|
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
--resource-limits "cpu:50%,memory:2GB" \
|
|
722
|
-
--sandbox enabled
|
|
723
|
-
```
|
|
718
|
+
#### **1. Neural Network Enhancements**
|
|
719
|
+
- **Custom Training Datasets** for specialized domains and use cases
|
|
720
|
+
- **New Neural Architectures** for specific coordination patterns
|
|
721
|
+
- **Training Optimization** algorithms for faster convergence
|
|
722
|
+
- **Pattern Recognition** improvements for better decision making
|
|
724
723
|
|
|
725
|
-
####
|
|
724
|
+
#### **2. MCP Tool Extensions**
|
|
725
|
+
- **Cloud Integration Tools** (AWS, Azure, GCP) for multi-cloud deployment
|
|
726
|
+
- **Database Management Tools** for automated schema management
|
|
727
|
+
- **API Testing Tools** for comprehensive validation frameworks
|
|
728
|
+
- **Monitoring Tools** for advanced observability and alerting
|
|
726
729
|
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
730
|
+
#### **3. WebUI Enhancements**
|
|
731
|
+
- **Mobile Responsiveness** for on-the-go coordination
|
|
732
|
+
- **Accessibility Features** (WCAG compliance) for inclusive design
|
|
733
|
+
- **Real-Time Visualizations** for swarm activity monitoring
|
|
734
|
+
- **Custom Dashboards** for different enterprise use cases
|
|
732
735
|
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
```
|
|
736
|
+
#### **4. Enterprise Features**
|
|
737
|
+
- **Advanced RBAC** for enterprise security and compliance
|
|
738
|
+
- **Multi-Language Support** for international development teams
|
|
739
|
+
- **Plugin Architecture** for third-party integrations
|
|
740
|
+
- **Advanced Analytics** for comprehensive performance insights
|
|
739
741
|
|
|
740
|
-
|
|
742
|
+
### **๐ง Development Setup**
|
|
741
743
|
```bash
|
|
742
|
-
#
|
|
743
|
-
|
|
744
|
-
|
|
744
|
+
# Clone and setup development environment
|
|
745
|
+
git clone https://github.com/ruvnet/claude-code-flow.git
|
|
746
|
+
cd claude-code-flow
|
|
747
|
+
git checkout claude-flow-v2.0.0
|
|
745
748
|
|
|
746
|
-
#
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
```
|
|
749
|
+
# Install dependencies and setup
|
|
750
|
+
npm install
|
|
751
|
+
npm run build
|
|
750
752
|
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
"policies": {
|
|
756
|
-
"agent_isolation": true,
|
|
757
|
-
"memory_encryption": true,
|
|
758
|
-
"audit_logging": "verbose",
|
|
759
|
-
"threat_detection": "neural",
|
|
760
|
-
"max_agent_resources": {
|
|
761
|
-
"cpu": "50%",
|
|
762
|
-
"memory": "2GB",
|
|
763
|
-
"disk": "10GB"
|
|
764
|
-
}
|
|
765
|
-
}
|
|
766
|
-
}
|
|
767
|
-
```
|
|
753
|
+
# Setup development integration
|
|
754
|
+
npx claude-flow@2.0.0 init --claude --dev
|
|
755
|
+
npx claude-flow@2.0.0 start --ui --dev --port 3000 # Primary method
|
|
756
|
+
# Or use alias: npx claude-flow@2.0.0 start-ui --dev --port 3000
|
|
768
757
|
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
774
|
-
โ ๐ก๏ธ Hook Validation โ ๐ Permission Layer โ
|
|
775
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
776
|
-
โ ๐จ Threat Detection & Response โ
|
|
777
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
778
|
-
โ ๐ Encrypted Communication โ ๐ Audit Logging โ
|
|
779
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโค
|
|
780
|
-
โ ๐ Isolated Agent Sandboxes โ
|
|
781
|
-
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
|
|
758
|
+
# Run comprehensive tests
|
|
759
|
+
npm run test:all
|
|
760
|
+
npm run test:mcp --category neural
|
|
761
|
+
npm run benchmark:performance
|
|
782
762
|
```
|
|
783
763
|
|
|
784
|
-
###
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
764
|
+
### **๐ Contribution Process**
|
|
765
|
+
1. **๐ด Fork** the repository and create feature branch from `claude-flow-v2.0.0`
|
|
766
|
+
2. **๐ง Implement** changes with comprehensive tests and documentation
|
|
767
|
+
3. **๐งช Test** thoroughly using our quality assurance standards
|
|
768
|
+
4. **๐ Document** all new features and API changes
|
|
769
|
+
5. **๐ Submit** pull request with detailed description and examples
|
|
790
770
|
|
|
791
771
|
---
|
|
792
772
|
|
|
793
|
-
## ๐ **License**
|
|
773
|
+
## ๐ **License & Legal**
|
|
794
774
|
|
|
795
|
-
MIT License - see [LICENSE](./LICENSE) for details.
|
|
775
|
+
**MIT License** - see [LICENSE](./LICENSE) for complete details.
|
|
796
776
|
|
|
797
|
-
|
|
777
|
+
This project is open source and welcomes contributions from the global developer community.
|
|
798
778
|
|
|
799
779
|
---
|
|
800
780
|
|
|
801
|
-
## ๐ **
|
|
781
|
+
## ๐ **Acknowledgments & Recognition**
|
|
782
|
+
|
|
783
|
+
### **๐ Core Technology Partners**
|
|
784
|
+
- **๐ค Anthropic**: For the revolutionary Claude AI that powers intelligent coordination
|
|
785
|
+
- **๐ ruv-swarm**: For the neural network foundation and WASM integration
|
|
786
|
+
- **๐ฆ Rust Community**: For QUDAG architecture and high-performance computing
|
|
787
|
+
- **โก Node.js Community**: For the excellent JavaScript runtime and ecosystem
|
|
788
|
+
- **๐ WebAssembly Team**: For enabling real neural network processing in browsers
|
|
789
|
+
|
|
790
|
+
### **๐ Community Contributors**
|
|
791
|
+
- **๐ Bug Reporters**: Who identified critical issues and helped improve stability
|
|
792
|
+
- **๐ก Feature Requesters**: Who inspired new capabilities and use cases
|
|
793
|
+
- **๐ Security Researchers**: Who helped strengthen platform security
|
|
794
|
+
- **๐งช Early Adopters**: Who provided valuable feedback during development
|
|
802
795
|
|
|
803
|
-
|
|
804
|
-
- **โก
|
|
805
|
-
-
|
|
806
|
-
-
|
|
796
|
+
### **๐ Success Metrics (v2.0.0)**
|
|
797
|
+
- **โก 2.8-4.4x Performance Improvement** verified across all coordination scenarios
|
|
798
|
+
- **๐ง 89% Neural Accuracy** achieved with real WASM neural network processing
|
|
799
|
+
- **๐พ 32.3% Token Reduction** through intelligent optimization and caching
|
|
800
|
+
- **๐ฏ 100% Test Success Rate** across all 87 MCP tools and integration points
|
|
801
|
+
- **๐ 500+ Active Developers** in the growing Claude Flow community
|
|
807
802
|
|
|
808
803
|
---
|
|
809
804
|
|
|
810
805
|
<div align="center">
|
|
811
806
|
|
|
812
|
-
### **๐ Ready to
|
|
807
|
+
### **๐ Ready to see what intelligent coordination can do for your projects?**
|
|
813
808
|
|
|
814
809
|
```bash
|
|
815
|
-
npx
|
|
810
|
+
npx claude-flow@2.0.0 init --claude --webui
|
|
816
811
|
```
|
|
817
812
|
|
|
818
|
-
**
|
|
813
|
+
**Start building with AI agents that actually work together.**
|
|
819
814
|
|
|
820
|
-
[](https://github.com/ruvnet/claude-code-flow)
|
|
816
|
+
[](https://www.npmjs.com/package/claude-flow)
|
|
817
|
+
[](https://github.com/ruvnet/claude-code-flow/discussions)
|
|
818
|
+
[](https://docs.anthropic.com/en/docs/claude-code)
|
|
823
819
|
|
|
824
820
|
---
|
|
825
821
|
|
|
826
|
-
**Built with โค๏ธ by [rUv](https://github.com/ruvnet) | Powered by
|
|
822
|
+
**Built with โค๏ธ by [rUv](https://github.com/ruvnet) | Powered by Claude AI + ruv-swarm Neural Intelligence**
|
|
827
823
|
|
|
828
|
-
|
|
824
|
+
*๐ Claude Flow v2.0.0 - Where AI agents work together to build the impossible.*
|
|
829
825
|
|
|
830
826
|
</div>
|