claude-flow 2.7.0-alpha.13 → 2.7.0-alpha.14
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/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +216 -43
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +241 -28
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/CHANGELOG.md +88 -0
- package/bin/claude-flow +1 -1
- package/dist/agents/agent-loader.d.ts +103 -0
- package/dist/agents/agent-loader.d.ts.map +1 -0
- package/dist/agents/agent-loader.js +220 -0
- package/dist/agents/agent-loader.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 +1405 -0
- package/dist/agents/agent-manager.js.map +1 -0
- package/dist/api/claude-api-errors.d.ts +115 -0
- package/dist/api/claude-api-errors.d.ts.map +1 -0
- package/dist/api/claude-api-errors.js +198 -0
- package/dist/api/claude-api-errors.js.map +1 -0
- package/dist/api/claude-client.d.ts +197 -0
- package/dist/api/claude-client.d.ts.map +1 -0
- package/dist/api/claude-client.js +525 -0
- package/dist/api/claude-client.js.map +1 -0
- package/dist/cli/cli-core.d.ts +52 -0
- package/dist/cli/cli-core.d.ts.map +1 -0
- package/dist/cli/cli-core.js +264 -0
- package/dist/cli/cli-core.js.map +1 -0
- package/dist/cli/command-registry.d.ts +10 -0
- package/dist/cli/command-registry.d.ts.map +1 -0
- package/dist/cli/command-registry.js +1126 -0
- package/dist/cli/command-registry.js.map +1 -0
- package/dist/cli/commander-fix.d.ts +4 -0
- package/dist/cli/commander-fix.d.ts.map +1 -0
- package/dist/cli/commander-fix.js +6 -0
- package/dist/cli/commander-fix.js.map +1 -0
- package/dist/cli/commands/agent.d.ts +6 -0
- package/dist/cli/commands/agent.d.ts.map +1 -0
- package/dist/cli/commands/agent.js +382 -0
- package/dist/cli/commands/agent.js.map +1 -0
- package/dist/cli/commands/config.d.ts +4 -0
- package/dist/cli/commands/config.d.ts.map +1 -0
- package/dist/cli/commands/config.js +88 -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 +1506 -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 +936 -0
- package/dist/cli/commands/help.js.map +1 -0
- package/dist/cli/commands/hive-mind/index.d.ts +18 -0
- package/dist/cli/commands/hive-mind/index.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/index.js +30 -0
- package/dist/cli/commands/hive-mind/index.js.map +1 -0
- package/dist/cli/commands/hive-mind/init.d.ts +9 -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/pause.d.ts +8 -0
- package/dist/cli/commands/hive-mind/pause.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/pause.js +81 -0
- package/dist/cli/commands/hive-mind/pause.js.map +1 -0
- package/dist/cli/commands/hive-mind/ps.d.ts +8 -0
- package/dist/cli/commands/hive-mind/ps.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/ps.js +120 -0
- package/dist/cli/commands/hive-mind/ps.js.map +1 -0
- package/dist/cli/commands/hive-mind/resume.d.ts +8 -0
- package/dist/cli/commands/hive-mind/resume.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/resume.js +62 -0
- package/dist/cli/commands/hive-mind/resume.js.map +1 -0
- package/dist/cli/commands/hive-mind/spawn.d.ts +9 -0
- package/dist/cli/commands/hive-mind/spawn.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/spawn.js +174 -0
- package/dist/cli/commands/hive-mind/spawn.js.map +1 -0
- package/dist/cli/commands/hive-mind/status.d.ts +9 -0
- package/dist/cli/commands/hive-mind/status.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/status.js +204 -0
- package/dist/cli/commands/hive-mind/status.js.map +1 -0
- package/dist/cli/commands/hive-mind/stop.d.ts +8 -0
- package/dist/cli/commands/hive-mind/stop.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/stop.js +125 -0
- package/dist/cli/commands/hive-mind/stop.js.map +1 -0
- package/dist/cli/commands/hive-mind/task.d.ts +9 -0
- package/dist/cli/commands/hive-mind/task.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/task.js +294 -0
- package/dist/cli/commands/hive-mind/task.js.map +1 -0
- package/dist/cli/commands/hive-mind/wizard.d.ts +9 -0
- package/dist/cli/commands/hive-mind/wizard.d.ts.map +1 -0
- package/dist/cli/commands/hive-mind/wizard.js +531 -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 +409 -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 +2624 -0
- package/dist/cli/commands/index.js.map +1 -0
- package/dist/cli/commands/mcp.d.ts +5 -0
- package/dist/cli/commands/mcp.d.ts.map +1 -0
- package/dist/cli/commands/mcp.js +169 -0
- package/dist/cli/commands/mcp.js.map +1 -0
- package/dist/cli/commands/memory.d.ts +26 -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 +5 -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 +5 -0
- package/dist/cli/commands/monitor.d.ts.map +1 -0
- package/dist/cli/commands/monitor.js +493 -0
- package/dist/cli/commands/monitor.js.map +1 -0
- package/dist/cli/commands/session.d.ts +5 -0
- package/dist/cli/commands/session.d.ts.map +1 -0
- package/dist/cli/commands/session.js +548 -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 +472 -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 +283 -0
- package/dist/cli/commands/start/process-manager.js.map +1 -0
- package/dist/cli/commands/start/process-ui-simple.d.ts +29 -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 +2 -0
- package/dist/cli/commands/start/start-command.d.ts.map +1 -0
- package/dist/cli/commands/start/start-command.js +462 -0
- package/dist/cli/commands/start/start-command.js.map +1 -0
- package/dist/cli/commands/start/system-monitor.d.ts +25 -0
- package/dist/cli/commands/start/system-monitor.d.ts.map +1 -0
- package/dist/cli/commands/start/system-monitor.js +265 -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 +2 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +304 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/commands/swarm.d.ts +6 -0
- package/dist/cli/commands/swarm.d.ts.map +1 -0
- package/dist/cli/commands/swarm.js +465 -0
- package/dist/cli/commands/swarm.js.map +1 -0
- package/dist/cli/commands/task.d.ts +2 -0
- package/dist/cli/commands/task.d.ts.map +1 -0
- package/dist/cli/commands/task.js +75 -0
- package/dist/cli/commands/task.js.map +1 -0
- package/dist/cli/commands/workflow.d.ts +2 -0
- package/dist/cli/commands/workflow.d.ts.map +1 -0
- package/dist/cli/commands/workflow.js +624 -0
- package/dist/cli/commands/workflow.js.map +1 -0
- package/dist/cli/completion.d.ts +19 -0
- package/dist/cli/completion.d.ts.map +1 -0
- package/dist/cli/completion.js +545 -0
- package/dist/cli/completion.js.map +1 -0
- package/dist/cli/formatter.d.ts +69 -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/help-formatter.d.ts +49 -0
- package/dist/cli/help-formatter.d.ts.map +1 -0
- package/dist/cli/help-formatter.js +108 -0
- package/dist/cli/help-formatter.js.map +1 -0
- package/dist/cli/help-text.d.ts +25 -0
- package/dist/cli/help-text.d.ts.map +1 -0
- package/dist/cli/help-text.js +1051 -0
- package/dist/cli/help-text.js.map +1 -0
- package/dist/cli/index-remote.d.ts +7 -0
- package/dist/cli/index-remote.d.ts.map +1 -0
- package/dist/cli/index-remote.js +125 -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 +189 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/node-compat.d.ts +81 -0
- package/dist/cli/node-compat.d.ts.map +1 -0
- package/dist/cli/node-compat.js +229 -0
- package/dist/cli/node-compat.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 +949 -0
- package/dist/cli/repl.js.map +1 -0
- package/dist/cli/runtime-detector.d.ts +128 -0
- package/dist/cli/runtime-detector.d.ts.map +1 -0
- package/dist/cli/runtime-detector.js +267 -0
- package/dist/cli/runtime-detector.js.map +1 -0
- package/dist/cli/simple-cli.d.ts +7 -0
- package/dist/cli/simple-cli.d.ts.map +1 -0
- package/dist/cli/simple-cli.js +3085 -0
- package/dist/cli/simple-cli.js.map +1 -0
- package/dist/cli/simple-commands/agent.d.ts +6 -0
- package/dist/cli/simple-commands/agent.d.ts.map +1 -0
- package/dist/cli/simple-commands/agent.js +128 -0
- package/dist/cli/simple-commands/agent.js.map +1 -0
- package/dist/cli/simple-commands/analysis.d.ts +2 -0
- package/dist/cli/simple-commands/analysis.d.ts.map +1 -0
- package/dist/cli/simple-commands/analysis.js +473 -0
- package/dist/cli/simple-commands/analysis.js.map +1 -0
- package/dist/cli/simple-commands/automation-executor.d.ts +188 -0
- package/dist/cli/simple-commands/automation-executor.d.ts.map +1 -0
- package/dist/cli/simple-commands/automation-executor.js +1383 -0
- package/dist/cli/simple-commands/automation-executor.js.map +1 -0
- package/dist/cli/simple-commands/automation.d.ts +2 -0
- package/dist/cli/simple-commands/automation.d.ts.map +1 -0
- package/dist/cli/simple-commands/automation.js +531 -0
- package/dist/cli/simple-commands/automation.js.map +1 -0
- package/dist/cli/simple-commands/batch-manager.d.ts +2 -0
- package/dist/cli/simple-commands/batch-manager.d.ts.map +1 -0
- package/dist/cli/simple-commands/batch-manager.js +290 -0
- package/dist/cli/simple-commands/batch-manager.js.map +1 -0
- package/dist/cli/simple-commands/claude-telemetry.d.ts +14 -0
- package/dist/cli/simple-commands/claude-telemetry.d.ts.map +1 -0
- package/dist/cli/simple-commands/claude-telemetry.js +263 -0
- package/dist/cli/simple-commands/claude-telemetry.js.map +1 -0
- package/dist/cli/simple-commands/config.d.ts +6 -0
- package/dist/cli/simple-commands/config.d.ts.map +1 -0
- package/dist/cli/simple-commands/config.js +116 -0
- package/dist/cli/simple-commands/config.js.map +1 -0
- package/dist/cli/simple-commands/coordination.d.ts +2 -0
- package/dist/cli/simple-commands/coordination.d.ts.map +1 -0
- package/dist/cli/simple-commands/coordination.js +249 -0
- package/dist/cli/simple-commands/coordination.js.map +1 -0
- package/dist/cli/simple-commands/env-template.d.ts +42 -0
- package/dist/cli/simple-commands/env-template.d.ts.map +1 -0
- package/dist/cli/simple-commands/env-template.js +183 -0
- package/dist/cli/simple-commands/env-template.js.map +1 -0
- package/dist/cli/simple-commands/fix-hook-variables.d.ts +16 -0
- package/dist/cli/simple-commands/fix-hook-variables.d.ts.map +1 -0
- package/dist/cli/simple-commands/fix-hook-variables.js +320 -0
- package/dist/cli/simple-commands/fix-hook-variables.js.map +1 -0
- package/dist/cli/simple-commands/github/init.d.ts +6 -0
- package/dist/cli/simple-commands/github/init.d.ts.map +1 -0
- package/dist/cli/simple-commands/github/init.js +506 -0
- package/dist/cli/simple-commands/github/init.js.map +1 -0
- package/dist/cli/simple-commands/github.d.ts +3 -0
- package/dist/cli/simple-commands/github.d.ts.map +1 -0
- package/dist/cli/simple-commands/github.js +356 -0
- package/dist/cli/simple-commands/github.js.map +1 -0
- package/dist/cli/simple-commands/goal.d.ts +3 -0
- package/dist/cli/simple-commands/goal.d.ts.map +1 -0
- package/dist/cli/simple-commands/goal.js +136 -0
- package/dist/cli/simple-commands/goal.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/auto-save-middleware.d.ts +68 -0
- package/dist/cli/simple-commands/hive-mind/auto-save-middleware.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/auto-save-middleware.js +264 -0
- package/dist/cli/simple-commands/hive-mind/auto-save-middleware.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/communication.d.ts +176 -0
- package/dist/cli/simple-commands/hive-mind/communication.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/communication.js +611 -0
- package/dist/cli/simple-commands/hive-mind/communication.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/core.d.ts +306 -0
- package/dist/cli/simple-commands/hive-mind/core.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/core.js +839 -0
- package/dist/cli/simple-commands/hive-mind/core.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts +32 -0
- package/dist/cli/simple-commands/hive-mind/db-optimizer.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/db-optimizer.js +702 -0
- package/dist/cli/simple-commands/hive-mind/db-optimizer.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts +270 -0
- package/dist/cli/simple-commands/hive-mind/mcp-wrapper.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js +1211 -0
- package/dist/cli/simple-commands/hive-mind/mcp-wrapper.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/memory.d.ts +334 -0
- package/dist/cli/simple-commands/hive-mind/memory.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/memory.js +1068 -0
- package/dist/cli/simple-commands/hive-mind/memory.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/metrics-reader.js +274 -0
- package/dist/cli/simple-commands/hive-mind/metrics-reader.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts +256 -0
- package/dist/cli/simple-commands/hive-mind/performance-optimizer.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/performance-optimizer.js +520 -0
- package/dist/cli/simple-commands/hive-mind/performance-optimizer.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/queen.d.ts +235 -0
- package/dist/cli/simple-commands/hive-mind/queen.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/queen.js +697 -0
- package/dist/cli/simple-commands/hive-mind/queen.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind/session-manager.d.ts +140 -0
- package/dist/cli/simple-commands/hive-mind/session-manager.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind/session-manager.js +1000 -0
- package/dist/cli/simple-commands/hive-mind/session-manager.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind-optimize.d.ts +6 -0
- package/dist/cli/simple-commands/hive-mind-optimize.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind-optimize.js +317 -0
- package/dist/cli/simple-commands/hive-mind-optimize.js.map +1 -0
- package/dist/cli/simple-commands/hive-mind.d.ts +22 -0
- package/dist/cli/simple-commands/hive-mind.d.ts.map +1 -0
- package/dist/cli/simple-commands/hive-mind.js +2722 -0
- package/dist/cli/simple-commands/hive-mind.js.map +1 -0
- package/dist/cli/simple-commands/hook-safety.d.ts +177 -0
- package/dist/cli/simple-commands/hook-safety.d.ts.map +1 -0
- package/dist/cli/simple-commands/hook-safety.js +590 -0
- package/dist/cli/simple-commands/hook-safety.js.map +1 -0
- package/dist/cli/simple-commands/hooks.d.ts +3 -0
- package/dist/cli/simple-commands/hooks.d.ts.map +1 -0
- package/dist/cli/simple-commands/hooks.js +1298 -0
- package/dist/cli/simple-commands/hooks.js.map +1 -0
- package/dist/cli/simple-commands/init/agent-copier.d.ts +65 -0
- package/dist/cli/simple-commands/init/agent-copier.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/agent-copier.js +320 -0
- package/dist/cli/simple-commands/init/agent-copier.js.map +1 -0
- package/dist/cli/simple-commands/init/batch-init.d.ts +137 -0
- package/dist/cli/simple-commands/init/batch-init.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/batch-init.js +558 -0
- package/dist/cli/simple-commands/init/batch-init.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts +2 -0
- package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js +433 -0
- package/dist/cli/simple-commands/init/claude-commands/claude-flow-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts +2 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js +871 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-claude-flow-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts +2 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js +332 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-slash-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts +3 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js +488 -0
- package/dist/cli/simple-commands/init/claude-commands/optimized-sparc-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts +2 -0
- package/dist/cli/simple-commands/init/claude-commands/slash-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/slash-commands.js +51 -0
- package/dist/cli/simple-commands/init/claude-commands/slash-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts +3 -0
- package/dist/cli/simple-commands/init/claude-commands/sparc-commands.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js +288 -0
- package/dist/cli/simple-commands/init/claude-commands/sparc-commands.js.map +1 -0
- package/dist/cli/simple-commands/init/copy-revised-templates.d.ts +29 -0
- package/dist/cli/simple-commands/init/copy-revised-templates.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/copy-revised-templates.js +166 -0
- package/dist/cli/simple-commands/init/copy-revised-templates.js.map +1 -0
- package/dist/cli/simple-commands/init/executable-wrapper.d.ts +2 -0
- package/dist/cli/simple-commands/init/executable-wrapper.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/executable-wrapper.js +116 -0
- package/dist/cli/simple-commands/init/executable-wrapper.js.map +1 -0
- package/dist/cli/simple-commands/init/gitignore-updater.d.ts +23 -0
- package/dist/cli/simple-commands/init/gitignore-updater.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/gitignore-updater.js +128 -0
- package/dist/cli/simple-commands/init/gitignore-updater.js.map +1 -0
- package/dist/cli/simple-commands/init/help.d.ts +2 -0
- package/dist/cli/simple-commands/init/help.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/help.js +131 -0
- package/dist/cli/simple-commands/init/help.js.map +1 -0
- package/dist/cli/simple-commands/init/hive-mind-init.d.ts +152 -0
- package/dist/cli/simple-commands/init/hive-mind-init.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/hive-mind-init.js +699 -0
- package/dist/cli/simple-commands/init/hive-mind-init.js.map +1 -0
- package/dist/cli/simple-commands/init/index.d.ts +2 -0
- package/dist/cli/simple-commands/init/index.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/index.js +1784 -0
- package/dist/cli/simple-commands/init/index.js.map +1 -0
- package/dist/cli/simple-commands/init/performance-monitor.d.ts +73 -0
- package/dist/cli/simple-commands/init/performance-monitor.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/performance-monitor.js +277 -0
- package/dist/cli/simple-commands/init/performance-monitor.js.map +1 -0
- package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts +95 -0
- package/dist/cli/simple-commands/init/rollback/backup-manager.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/rollback/backup-manager.js +486 -0
- package/dist/cli/simple-commands/init/rollback/backup-manager.js.map +1 -0
- package/dist/cli/simple-commands/init/rollback/index.d.ts +114 -0
- package/dist/cli/simple-commands/init/rollback/index.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/rollback/index.js +353 -0
- package/dist/cli/simple-commands/init/rollback/index.js.map +1 -0
- package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts +161 -0
- package/dist/cli/simple-commands/init/rollback/recovery-manager.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/rollback/recovery-manager.js +686 -0
- package/dist/cli/simple-commands/init/rollback/recovery-manager.js.map +1 -0
- package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts +112 -0
- package/dist/cli/simple-commands/init/rollback/rollback-executor.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/rollback/rollback-executor.js +480 -0
- package/dist/cli/simple-commands/init/rollback/rollback-executor.js.map +1 -0
- package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts +121 -0
- package/dist/cli/simple-commands/init/rollback/state-tracker.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/rollback/state-tracker.js +432 -0
- package/dist/cli/simple-commands/init/rollback/state-tracker.js.map +1 -0
- package/dist/cli/simple-commands/init/skills-copier.d.ts +41 -0
- package/dist/cli/simple-commands/init/skills-copier.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/skills-copier.js +192 -0
- package/dist/cli/simple-commands/init/skills-copier.js.map +1 -0
- package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts +2 -0
- package/dist/cli/simple-commands/init/sparc/roo-readme.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/sparc/roo-readme.js +61 -0
- package/dist/cli/simple-commands/init/sparc/roo-readme.js.map +1 -0
- package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts +2 -0
- package/dist/cli/simple-commands/init/sparc/roomodes-config.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/sparc/roomodes-config.js +80 -0
- package/dist/cli/simple-commands/init/sparc/roomodes-config.js.map +1 -0
- package/dist/cli/simple-commands/init/sparc/workflows.d.ts +2 -0
- package/dist/cli/simple-commands/init/sparc/workflows.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/sparc/workflows.js +36 -0
- package/dist/cli/simple-commands/init/sparc/workflows.js.map +1 -0
- package/dist/cli/simple-commands/init/sparc-structure.d.ts +2 -0
- package/dist/cli/simple-commands/init/sparc-structure.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/sparc-structure.js +63 -0
- package/dist/cli/simple-commands/init/sparc-structure.js.map +1 -0
- package/dist/cli/simple-commands/init/template-copier.d.ts +27 -0
- package/dist/cli/simple-commands/init/template-copier.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/template-copier.js +538 -0
- package/dist/cli/simple-commands/init/template-copier.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/claude-md.d.ts +6 -0
- package/dist/cli/simple-commands/init/templates/claude-md.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/claude-md.js +1097 -0
- package/dist/cli/simple-commands/init/templates/claude-md.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/coordination-md.d.ts +4 -0
- package/dist/cli/simple-commands/init/templates/coordination-md.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/coordination-md.js +338 -0
- package/dist/cli/simple-commands/init/templates/coordination-md.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts +21 -0
- package/dist/cli/simple-commands/init/templates/enhanced-templates.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/enhanced-templates.js +2304 -0
- package/dist/cli/simple-commands/init/templates/enhanced-templates.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts +4 -0
- package/dist/cli/simple-commands/init/templates/memory-bank-md.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/memory-bank-md.js +257 -0
- package/dist/cli/simple-commands/init/templates/memory-bank-md.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/readme-files.d.ts +3 -0
- package/dist/cli/simple-commands/init/templates/readme-files.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/readme-files.js +71 -0
- package/dist/cli/simple-commands/init/templates/readme-files.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts +30 -0
- package/dist/cli/simple-commands/init/templates/sparc-modes.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/sparc-modes.js +1375 -0
- package/dist/cli/simple-commands/init/templates/sparc-modes.js.map +1 -0
- package/dist/cli/simple-commands/init/templates/verification-claude-md.d.ts +3 -0
- package/dist/cli/simple-commands/init/templates/verification-claude-md.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/templates/verification-claude-md.js +432 -0
- package/dist/cli/simple-commands/init/templates/verification-claude-md.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/config-validator.d.ts +63 -0
- package/dist/cli/simple-commands/init/validation/config-validator.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/config-validator.js +308 -0
- package/dist/cli/simple-commands/init/validation/config-validator.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/health-checker.d.ts +117 -0
- package/dist/cli/simple-commands/init/validation/health-checker.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/health-checker.js +539 -0
- package/dist/cli/simple-commands/init/validation/health-checker.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/index.d.ts +55 -0
- package/dist/cli/simple-commands/init/validation/index.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/index.js +347 -0
- package/dist/cli/simple-commands/init/validation/index.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/mode-validator.d.ts +76 -0
- package/dist/cli/simple-commands/init/validation/mode-validator.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/mode-validator.js +343 -0
- package/dist/cli/simple-commands/init/validation/mode-validator.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts +62 -0
- package/dist/cli/simple-commands/init/validation/post-init-validator.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/post-init-validator.js +349 -0
- package/dist/cli/simple-commands/init/validation/post-init-validator.js.map +1 -0
- package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts +86 -0
- package/dist/cli/simple-commands/init/validation/pre-init-validator.d.ts.map +1 -0
- package/dist/cli/simple-commands/init/validation/pre-init-validator.js +260 -0
- package/dist/cli/simple-commands/init/validation/pre-init-validator.js.map +1 -0
- package/dist/cli/simple-commands/inject-memory-protocol.d.ts +34 -0
- package/dist/cli/simple-commands/inject-memory-protocol.d.ts.map +1 -0
- package/dist/cli/simple-commands/inject-memory-protocol.js +229 -0
- package/dist/cli/simple-commands/inject-memory-protocol.js.map +1 -0
- package/dist/cli/simple-commands/mcp.d.ts +2 -0
- package/dist/cli/simple-commands/mcp.d.ts.map +1 -0
- package/dist/cli/simple-commands/mcp.js +369 -0
- package/dist/cli/simple-commands/mcp.js.map +1 -0
- package/dist/cli/simple-commands/memory-consolidation.d.ts +73 -0
- package/dist/cli/simple-commands/memory-consolidation.d.ts.map +1 -0
- package/dist/cli/simple-commands/memory-consolidation.js +537 -0
- package/dist/cli/simple-commands/memory-consolidation.js.map +1 -0
- package/dist/cli/simple-commands/memory.d.ts +2 -0
- package/dist/cli/simple-commands/memory.d.ts.map +1 -0
- package/dist/cli/simple-commands/memory.js +778 -0
- package/dist/cli/simple-commands/memory.js.map +1 -0
- package/dist/cli/simple-commands/migrate-hooks.d.ts +10 -0
- package/dist/cli/simple-commands/migrate-hooks.d.ts.map +1 -0
- package/dist/cli/simple-commands/migrate-hooks.js +57 -0
- package/dist/cli/simple-commands/migrate-hooks.js.map +1 -0
- package/dist/cli/simple-commands/monitor.d.ts +3 -0
- package/dist/cli/simple-commands/monitor.d.ts.map +1 -0
- package/dist/cli/simple-commands/monitor.js +366 -0
- package/dist/cli/simple-commands/monitor.js.map +1 -0
- package/dist/cli/simple-commands/neural.d.ts +3 -0
- package/dist/cli/simple-commands/neural.d.ts.map +1 -0
- package/dist/cli/simple-commands/neural.js +137 -0
- package/dist/cli/simple-commands/neural.js.map +1 -0
- package/dist/cli/simple-commands/pair.d.ts +3 -0
- package/dist/cli/simple-commands/pair.d.ts.map +1 -0
- package/dist/cli/simple-commands/pair.js +735 -0
- package/dist/cli/simple-commands/pair.js.map +1 -0
- package/dist/cli/simple-commands/performance-hooks.d.ts +20 -0
- package/dist/cli/simple-commands/performance-hooks.d.ts.map +1 -0
- package/dist/cli/simple-commands/performance-hooks.js +127 -0
- package/dist/cli/simple-commands/performance-hooks.js.map +1 -0
- package/dist/cli/simple-commands/performance-metrics.d.ts +153 -0
- package/dist/cli/simple-commands/performance-metrics.d.ts.map +1 -0
- package/dist/cli/simple-commands/performance-metrics.js +759 -0
- package/dist/cli/simple-commands/performance-metrics.js.map +1 -0
- package/dist/cli/simple-commands/process-ui-enhanced.d.ts +55 -0
- package/dist/cli/simple-commands/process-ui-enhanced.d.ts.map +1 -0
- package/dist/cli/simple-commands/process-ui-enhanced.js +680 -0
- package/dist/cli/simple-commands/process-ui-enhanced.js.map +1 -0
- package/dist/cli/simple-commands/proxy.d.ts +5 -0
- package/dist/cli/simple-commands/proxy.d.ts.map +1 -0
- package/dist/cli/simple-commands/proxy.js +346 -0
- package/dist/cli/simple-commands/proxy.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/architect.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/architect.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/architect.js +126 -0
- package/dist/cli/simple-commands/sparc-modes/architect.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/ask.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/ask.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/ask.js +127 -0
- package/dist/cli/simple-commands/sparc-modes/ask.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/code.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/code.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/code.js +149 -0
- package/dist/cli/simple-commands/sparc-modes/code.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/debug.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/debug.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/debug.js +113 -0
- package/dist/cli/simple-commands/sparc-modes/debug.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/devops.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/devops.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/devops.js +138 -0
- package/dist/cli/simple-commands/sparc-modes/devops.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/docs-writer.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/docs-writer.js +39 -0
- package/dist/cli/simple-commands/sparc-modes/docs-writer.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/generic.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/generic.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/generic.js +35 -0
- package/dist/cli/simple-commands/sparc-modes/generic.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/index.d.ts +17 -0
- package/dist/cli/simple-commands/sparc-modes/index.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/index.js +196 -0
- package/dist/cli/simple-commands/sparc-modes/index.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/integration.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/integration.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/integration.js +56 -0
- package/dist/cli/simple-commands/sparc-modes/integration.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/mcp.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/mcp.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/mcp.js +39 -0
- package/dist/cli/simple-commands/sparc-modes/mcp.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/monitoring.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/monitoring.js +39 -0
- package/dist/cli/simple-commands/sparc-modes/monitoring.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/optimization.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/optimization.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/optimization.js +39 -0
- package/dist/cli/simple-commands/sparc-modes/optimization.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/security-review.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/security-review.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/security-review.js +131 -0
- package/dist/cli/simple-commands/sparc-modes/security-review.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js +168 -0
- package/dist/cli/simple-commands/sparc-modes/sparc-orchestrator.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js +39 -0
- package/dist/cli/simple-commands/sparc-modes/spec-pseudocode.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/supabase-admin.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/supabase-admin.js +150 -0
- package/dist/cli/simple-commands/sparc-modes/supabase-admin.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/swarm.d.ts +81 -0
- package/dist/cli/simple-commands/sparc-modes/swarm.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/swarm.js +428 -0
- package/dist/cli/simple-commands/sparc-modes/swarm.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/tdd.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/tdd.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/tdd.js +113 -0
- package/dist/cli/simple-commands/sparc-modes/tdd.js.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts +2 -0
- package/dist/cli/simple-commands/sparc-modes/tutorial.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc-modes/tutorial.js +278 -0
- package/dist/cli/simple-commands/sparc-modes/tutorial.js.map +1 -0
- package/dist/cli/simple-commands/sparc.d.ts +2 -0
- package/dist/cli/simple-commands/sparc.d.ts.map +1 -0
- package/dist/cli/simple-commands/sparc.js +477 -0
- package/dist/cli/simple-commands/sparc.js.map +1 -0
- package/dist/cli/simple-commands/start-ui.d.ts +2 -0
- package/dist/cli/simple-commands/start-ui.d.ts.map +1 -0
- package/dist/cli/simple-commands/start-ui.js +135 -0
- package/dist/cli/simple-commands/start-ui.js.map +1 -0
- package/dist/cli/simple-commands/start-wrapper.d.ts +2 -0
- package/dist/cli/simple-commands/start-wrapper.d.ts.map +1 -0
- package/dist/cli/simple-commands/start-wrapper.js +264 -0
- package/dist/cli/simple-commands/start-wrapper.js.map +1 -0
- package/dist/cli/simple-commands/start.d.ts +2 -0
- package/dist/cli/simple-commands/start.d.ts.map +1 -0
- package/dist/cli/simple-commands/start.js +3 -0
- package/dist/cli/simple-commands/start.js.map +1 -0
- package/dist/cli/simple-commands/status.d.ts +2 -0
- package/dist/cli/simple-commands/status.d.ts.map +1 -0
- package/dist/cli/simple-commands/status.js +292 -0
- package/dist/cli/simple-commands/status.js.map +1 -0
- package/dist/cli/simple-commands/stream-chain.d.ts +7 -0
- package/dist/cli/simple-commands/stream-chain.d.ts.map +1 -0
- package/dist/cli/simple-commands/stream-chain.js +433 -0
- package/dist/cli/simple-commands/stream-chain.js.map +1 -0
- package/dist/cli/simple-commands/stream-processor.d.ts +32 -0
- package/dist/cli/simple-commands/stream-processor.d.ts.map +1 -0
- package/dist/cli/simple-commands/stream-processor.js +318 -0
- package/dist/cli/simple-commands/stream-processor.js.map +1 -0
- package/dist/cli/simple-commands/swarm-executor.d.ts +68 -0
- package/dist/cli/simple-commands/swarm-executor.d.ts.map +1 -0
- package/dist/cli/simple-commands/swarm-executor.js +218 -0
- package/dist/cli/simple-commands/swarm-executor.js.map +1 -0
- package/dist/cli/simple-commands/swarm-metrics-integration.d.ts +69 -0
- package/dist/cli/simple-commands/swarm-metrics-integration.d.ts.map +1 -0
- package/dist/cli/simple-commands/swarm-metrics-integration.js +294 -0
- package/dist/cli/simple-commands/swarm-metrics-integration.js.map +1 -0
- package/dist/cli/simple-commands/swarm-webui-integration.d.ts +68 -0
- package/dist/cli/simple-commands/swarm-webui-integration.d.ts.map +1 -0
- package/dist/cli/simple-commands/swarm-webui-integration.js +265 -0
- package/dist/cli/simple-commands/swarm-webui-integration.js.map +1 -0
- package/dist/cli/simple-commands/swarm.d.ts +2 -0
- package/dist/cli/simple-commands/swarm.d.ts.map +1 -0
- package/dist/cli/simple-commands/swarm.js +2104 -0
- package/dist/cli/simple-commands/swarm.js.map +1 -0
- package/dist/cli/simple-commands/task.d.ts +2 -0
- package/dist/cli/simple-commands/task.d.ts.map +1 -0
- package/dist/cli/simple-commands/task.js +250 -0
- package/dist/cli/simple-commands/task.js.map +1 -0
- package/dist/cli/simple-commands/token-tracker.d.ts +73 -0
- package/dist/cli/simple-commands/token-tracker.d.ts.map +1 -0
- package/dist/cli/simple-commands/token-tracker.js +319 -0
- package/dist/cli/simple-commands/token-tracker.js.map +1 -0
- package/dist/cli/simple-commands/training-pipeline.d.ts +166 -0
- package/dist/cli/simple-commands/training-pipeline.d.ts.map +1 -0
- package/dist/cli/simple-commands/training-pipeline.js +760 -0
- package/dist/cli/simple-commands/training-pipeline.js.map +1 -0
- package/dist/cli/simple-commands/training.d.ts +2 -0
- package/dist/cli/simple-commands/training.d.ts.map +1 -0
- package/dist/cli/simple-commands/training.js +240 -0
- package/dist/cli/simple-commands/training.js.map +1 -0
- package/dist/cli/simple-commands/verification-training-integration.d.ts +181 -0
- package/dist/cli/simple-commands/verification-training-integration.d.ts.map +1 -0
- package/dist/cli/simple-commands/verification-training-integration.js +561 -0
- package/dist/cli/simple-commands/verification-training-integration.js.map +1 -0
- package/dist/cli/simple-commands/verification.d.ts +10 -0
- package/dist/cli/simple-commands/verification.d.ts.map +1 -0
- package/dist/cli/simple-commands/verification.js +476 -0
- package/dist/cli/simple-commands/verification.js.map +1 -0
- package/dist/cli/simple-commands/web-server.d.ts +152 -0
- package/dist/cli/simple-commands/web-server.d.ts.map +1 -0
- package/dist/cli/simple-commands/web-server.js +816 -0
- package/dist/cli/simple-commands/web-server.js.map +1 -0
- package/dist/cli/utils/interactive-detector.d.ts +25 -0
- package/dist/cli/utils/interactive-detector.d.ts.map +1 -0
- package/dist/cli/utils/interactive-detector.js +129 -0
- package/dist/cli/utils/interactive-detector.js.map +1 -0
- package/dist/cli/utils/safe-interactive.d.ts +30 -0
- package/dist/cli/utils/safe-interactive.d.ts.map +1 -0
- package/dist/cli/utils/safe-interactive.js +134 -0
- package/dist/cli/utils/safe-interactive.js.map +1 -0
- package/dist/cli/utils.d.ts +75 -0
- package/dist/cli/utils.d.ts.map +1 -0
- package/dist/cli/utils.js +567 -0
- package/dist/cli/utils.js.map +1 -0
- package/dist/config/config-manager.d.ts +212 -0
- package/dist/config/config-manager.d.ts.map +1 -0
- package/dist/config/config-manager.js +550 -0
- package/dist/config/config-manager.js.map +1 -0
- package/dist/constants/agent-types.d.ts +57 -0
- package/dist/constants/agent-types.d.ts.map +1 -0
- package/dist/constants/agent-types.js +57 -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 +382 -0
- package/dist/coordination/advanced-scheduler.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 +363 -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 +301 -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 +360 -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 +387 -0
- package/dist/coordination/dependency-graph.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 +354 -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 +436 -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 +254 -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 +563 -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 +158 -0
- package/dist/coordination/work-stealing.js.map +1 -0
- package/dist/core/config.d.ts +243 -0
- package/dist/core/config.d.ts.map +1 -0
- package/dist/core/config.js +1125 -0
- package/dist/core/config.js.map +1 -0
- package/dist/core/event-bus.d.ts +63 -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 +55 -0
- package/dist/core/json-persistence.d.ts.map +1 -0
- package/dist/core/json-persistence.js +111 -0
- package/dist/core/json-persistence.js.map +1 -0
- package/dist/core/logger.d.ts +62 -0
- package/dist/core/logger.d.ts.map +1 -0
- package/dist/core/logger.js +252 -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 +213 -0
- package/dist/core/orchestrator-fixed.js.map +1 -0
- package/dist/core/orchestrator.d.ts +141 -0
- package/dist/core/orchestrator.d.ts.map +1 -0
- package/dist/core/orchestrator.js +1166 -0
- package/dist/core/orchestrator.js.map +1 -0
- package/dist/core/version.d.ts +10 -0
- package/dist/core/version.d.ts.map +1 -0
- package/dist/core/version.js +36 -0
- package/dist/core/version.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 +956 -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 +1014 -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 +789 -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 +830 -0
- package/dist/enterprise/deployment-manager.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 +537 -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 +910 -0
- package/dist/enterprise/security-manager.js.map +1 -0
- package/dist/execution/agent-executor.d.ts +80 -0
- package/dist/execution/agent-executor.d.ts.map +1 -0
- package/dist/execution/agent-executor.js +220 -0
- package/dist/execution/agent-executor.js.map +1 -0
- package/dist/execution/provider-manager.d.ts +65 -0
- package/dist/execution/provider-manager.d.ts.map +1 -0
- package/dist/execution/provider-manager.js +144 -0
- package/dist/execution/provider-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 +99 -0
- package/dist/hive-mind/core/DatabaseManager.d.ts.map +1 -0
- package/dist/hive-mind/core/DatabaseManager.js +648 -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 +455 -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 +1192 -0
- package/dist/hive-mind/core/Memory.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 +649 -0
- package/dist/hive-mind/core/Queen.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 +478 -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 +217 -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 +748 -0
- package/dist/hive-mind/integration/SwarmOrchestrator.js.map +1 -0
- package/dist/hive-mind/types.d.ts +314 -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/mcp/auth.d.ts +80 -0
- package/dist/mcp/auth.d.ts.map +1 -0
- package/dist/mcp/auth.js +350 -0
- package/dist/mcp/auth.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 +1398 -0
- package/dist/mcp/claude-flow-tools.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 +393 -0
- package/dist/mcp/load-balancer.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 +204 -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 +568 -0
- package/dist/mcp/ruv-swarm-tools.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 +538 -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 +323 -0
- package/dist/mcp/session-manager.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 +731 -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 +434 -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 +5 -0
- package/dist/mcp/transports/base.js.map +1 -0
- package/dist/mcp/transports/http.d.ts +48 -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 +37 -0
- package/dist/mcp/transports/stdio.d.ts.map +1 -0
- package/dist/mcp/transports/stdio.js +206 -0
- package/dist/mcp/transports/stdio.js.map +1 -0
- package/dist/memory/advanced-serializer.d.ts +159 -0
- package/dist/memory/advanced-serializer.d.ts.map +1 -0
- package/dist/memory/advanced-serializer.js +564 -0
- package/dist/memory/advanced-serializer.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 +5 -0
- package/dist/memory/backends/base.js.map +1 -0
- package/dist/memory/backends/markdown.d.ts +35 -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 +33 -0
- package/dist/memory/backends/sqlite.d.ts.map +1 -0
- package/dist/memory/backends/sqlite.js +291 -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 +188 -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 +710 -0
- package/dist/memory/distributed-memory.js.map +1 -0
- package/dist/memory/enhanced-session-serializer.d.ts +115 -0
- package/dist/memory/enhanced-session-serializer.d.ts.map +1 -0
- package/dist/memory/enhanced-session-serializer.js +478 -0
- package/dist/memory/enhanced-session-serializer.js.map +1 -0
- package/dist/memory/fallback-store.d.ts +28 -0
- package/dist/memory/fallback-store.d.ts.map +1 -0
- package/dist/memory/fallback-store.js +101 -0
- package/dist/memory/fallback-store.js.map +1 -0
- package/dist/memory/in-memory-store.d.ts +37 -0
- package/dist/memory/in-memory-store.d.ts.map +1 -0
- package/dist/memory/in-memory-store.js +174 -0
- package/dist/memory/in-memory-store.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 +191 -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 +423 -0
- package/dist/memory/manager.js.map +1 -0
- package/dist/memory/sqlite-store.d.ts +34 -0
- package/dist/memory/sqlite-store.d.ts.map +1 -0
- package/dist/memory/sqlite-store.js +268 -0
- package/dist/memory/sqlite-store.js.map +1 -0
- package/dist/memory/sqlite-wrapper.d.ts +38 -0
- package/dist/memory/sqlite-wrapper.d.ts.map +1 -0
- package/dist/memory/sqlite-wrapper.js +152 -0
- package/dist/memory/sqlite-wrapper.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 +454 -0
- package/dist/memory/swarm-memory.js.map +1 -0
- package/dist/memory/unified-memory-manager.d.ts +116 -0
- package/dist/memory/unified-memory-manager.d.ts.map +1 -0
- package/dist/memory/unified-memory-manager.js +397 -0
- package/dist/memory/unified-memory-manager.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 +18 -0
- package/dist/migration/migration-analyzer.d.ts.map +1 -0
- package/dist/migration/migration-analyzer.js +284 -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 +505 -0
- package/dist/migration/migration-runner.js.map +1 -0
- package/dist/migration/migration-validator.d.ts +17 -0
- package/dist/migration/migration-validator.d.ts.map +1 -0
- package/dist/migration/migration-validator.js +309 -0
- package/dist/migration/migration-validator.js.map +1 -0
- package/dist/migration/progress-reporter.d.ts +28 -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 +24 -0
- package/dist/migration/rollback-manager.d.ts.map +1 -0
- package/dist/migration/rollback-manager.js +351 -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/reasoningbank/reasoningbank-adapter.d.ts +93 -0
- package/dist/reasoningbank/reasoningbank-adapter.d.ts.map +1 -0
- package/dist/reasoningbank/reasoningbank-adapter.js +365 -0
- package/dist/reasoningbank/reasoningbank-adapter.js.map +1 -0
- package/dist/sdk/query-control.d.ts +131 -0
- package/dist/sdk/query-control.d.ts.map +1 -0
- package/dist/sdk/query-control.js +363 -0
- package/dist/sdk/query-control.js.map +1 -0
- package/dist/sdk/session-forking.d.ts +109 -0
- package/dist/sdk/session-forking.d.ts.map +1 -0
- package/dist/sdk/session-forking.js +275 -0
- package/dist/sdk/session-forking.js.map +1 -0
- package/dist/src/cli/help-formatter.js.map +1 -1
- package/dist/src/cli/simple-commands/init/index.js +36 -22
- package/dist/src/cli/simple-commands/init/index.js.map +1 -1
- package/dist/src/cli/simple-commands/init/skills-copier.js +186 -0
- package/dist/src/cli/simple-commands/init/skills-copier.js.map +1 -0
- package/dist/src/cli/simple-commands/process-ui-enhanced.js +1 -1
- package/dist/src/cli/simple-commands/process-ui-enhanced.js.map +1 -1
- package/dist/src/cli/simple-commands/status.js +1 -1
- package/dist/src/cli/simple-commands/status.js.map +1 -1
- package/dist/src/cli/validation-helper.js.map +1 -1
- package/dist/src/core/version.js +1 -1
- package/dist/src/memory/swarm-memory.js +421 -340
- package/dist/src/memory/swarm-memory.js.map +1 -1
- package/dist/src/utils/key-redactor.js.map +1 -1
- package/dist/src/utils/metrics-reader.js +10 -0
- package/dist/swarm/types.d.ts +578 -0
- package/dist/swarm/types.d.ts.map +1 -0
- package/dist/swarm/types.js +54 -0
- package/dist/swarm/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 +23 -0
- package/dist/terminal/adapters/vscode.d.ts.map +1 -0
- package/dist/terminal/adapters/vscode.js +267 -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 +235 -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 +208 -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 +210 -0
- package/dist/terminal/session.js.map +1 -0
- package/dist/utils/error-handler.d.ts +14 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +29 -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 +134 -0
- package/dist/utils/helpers.d.ts.map +1 -0
- package/dist/utils/helpers.js +444 -0
- package/dist/utils/helpers.js.map +1 -0
- package/dist/utils/key-redactor.d.ts +46 -0
- package/dist/utils/key-redactor.d.ts.map +1 -0
- package/dist/utils/key-redactor.js +153 -0
- package/dist/utils/key-redactor.js.map +1 -0
- package/dist/utils/metrics-reader.d.ts +67 -0
- package/dist/utils/metrics-reader.d.ts.map +1 -0
- package/dist/utils/metrics-reader.js +201 -0
- package/dist/utils/metrics-reader.js.map +1 -0
- package/dist/utils/npx-isolated-cache.d.ts +17 -0
- package/dist/utils/npx-isolated-cache.d.ts.map +1 -0
- package/dist/utils/npx-isolated-cache.js +140 -0
- package/dist/utils/npx-isolated-cache.js.map +1 -0
- package/dist/utils/project-root.d.ts +35 -0
- package/dist/utils/project-root.d.ts.map +1 -0
- package/dist/utils/project-root.js +115 -0
- package/dist/utils/project-root.js.map +1 -0
- package/dist/utils/type-guards.d.ts +117 -0
- package/dist/utils/type-guards.d.ts.map +1 -0
- package/dist/utils/type-guards.js +166 -0
- package/dist/utils/type-guards.js.map +1 -0
- package/dist/utils/types.d.ts +568 -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/docs/skills-tutorial.md +1218 -0
- package/package.json +1 -1
- package/src/cli/simple-commands/process-ui-enhanced.js +1 -1
- package/src/cli/simple-commands/status.js +1 -1
|
@@ -0,0 +1,1218 @@
|
|
|
1
|
+
# 🎓 Claude Flow Skills: Complete Introduction Tutorial
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This tutorial introduces **Claude Flow Skills** - instruction modules that enhance Claude Code's capabilities with specialized knowledge for development, automation, testing, and team coordination.
|
|
6
|
+
|
|
7
|
+
## 🔄 What Changed: From Slash Commands to Skills
|
|
8
|
+
|
|
9
|
+
I'm transitioning claude-flow from slash commands to Claude Code's native skills system. Here's why this matters and what I've learned.
|
|
10
|
+
|
|
11
|
+
### The Old Way: Slash Commands
|
|
12
|
+
|
|
13
|
+
Previously, claude-flow used slash commands stored in `.claude/commands/`:
|
|
14
|
+
```bash
|
|
15
|
+
# Old approach
|
|
16
|
+
/.claude/commands/sparc-tdd.md
|
|
17
|
+
/.claude/commands/github-review.md
|
|
18
|
+
/.claude/commands/swarm-init.md
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
When you typed `/sparc-tdd`, Claude would load that markdown file as a prompt and execute it. This worked, but had limitations:
|
|
22
|
+
|
|
23
|
+
**Issues I Found:**
|
|
24
|
+
- Commands loaded every time, even when not needed (context pollution)
|
|
25
|
+
- No metadata for discovery - Claude couldn't tell when a command was relevant
|
|
26
|
+
- Flat structure - all commands mixed together
|
|
27
|
+
- Manual invocation required - no automatic activation
|
|
28
|
+
- Limited composability - commands didn't work well together
|
|
29
|
+
|
|
30
|
+
### The New Way: Skills System
|
|
31
|
+
|
|
32
|
+
Anthropic released the skills API in October 2025, and I immediately saw the potential. Skills solve the command problems elegantly:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
# New approach
|
|
36
|
+
/.claude/skills/sparc-methodology/SKILL.md
|
|
37
|
+
/.claude/skills/github-code-review/SKILL.md
|
|
38
|
+
/.claude/skills/swarm-orchestration/SKILL.md
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Each skill has YAML frontmatter with metadata:
|
|
42
|
+
```yaml
|
|
43
|
+
---
|
|
44
|
+
name: sparc-methodology
|
|
45
|
+
description: SPARC development methodology for systematic feature building
|
|
46
|
+
tags: [development, tdd, methodology]
|
|
47
|
+
category: development
|
|
48
|
+
---
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
**Why This Is Better (In My Opinion):**
|
|
52
|
+
|
|
53
|
+
1. **Automatic Discovery**: Claude scans skills at startup, reads the metadata, and only loads full content when relevant. A task about "building a feature with tests" automatically triggers SPARC methodology - no slash command needed.
|
|
54
|
+
|
|
55
|
+
2. **Progressive Disclosure**: Skills use a tiered structure (overview → details → advanced). Claude gets just enough information to decide if it's useful, then loads more if needed. This keeps context clean.
|
|
56
|
+
|
|
57
|
+
3. **Composability**: Skills can reference other skills. The GitHub review skill can use swarm orchestration internally without you knowing or caring. Commands couldn't do this well.
|
|
58
|
+
|
|
59
|
+
4. **Organization**: Skills live in categorized directories (development/, github/, memory/). Much easier to maintain than a flat commands folder.
|
|
60
|
+
|
|
61
|
+
5. **Standards-Based**: Anthropic designed this. It works across Claude.ai, Claude Code CLI, and any other Claude implementation. Commands were claude-flow specific.
|
|
62
|
+
|
|
63
|
+
### Migration Strategy
|
|
64
|
+
|
|
65
|
+
I'm not removing commands immediately - that would break existing workflows. Instead:
|
|
66
|
+
|
|
67
|
+
- **Phase 1** (Current): Both systems work. Skills are preferred, commands still function.
|
|
68
|
+
- **Phase 2** (Next release): Deprecation warnings when using old commands.
|
|
69
|
+
- **Phase 3** (Future): Commands removed, full skills migration.
|
|
70
|
+
|
|
71
|
+
If you're using commands like `/sparc tdd`, they still work. But I recommend switching to skills:
|
|
72
|
+
```bash
|
|
73
|
+
# Instead of this:
|
|
74
|
+
/sparc tdd "feature name"
|
|
75
|
+
|
|
76
|
+
# Do this:
|
|
77
|
+
npx claude-flow@alpha init --force # Install skills
|
|
78
|
+
# Then just ask: "Build a user authentication feature with TDD"
|
|
79
|
+
# The SPARC skill activates automatically
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
### Honest Assessment
|
|
83
|
+
|
|
84
|
+
**What Skills Do Better:**
|
|
85
|
+
- Context efficiency (40% less token usage in my testing)
|
|
86
|
+
- Automatic activation based on task matching
|
|
87
|
+
- Better organization and maintainability
|
|
88
|
+
- Cross-platform compatibility
|
|
89
|
+
|
|
90
|
+
**What Commands Did Better:**
|
|
91
|
+
- Explicit invocation - you knew exactly what ran
|
|
92
|
+
- Simpler mental model - type `/command`, it runs
|
|
93
|
+
- No "magic" - predictable behavior
|
|
94
|
+
|
|
95
|
+
**The Trade-off:**
|
|
96
|
+
Skills are more sophisticated but less explicit. Sometimes I miss the directness of `/command` - you knew what you were getting. With skills, Claude decides when to activate them. Usually it gets it right, but occasionally it misses or over-activates.
|
|
97
|
+
|
|
98
|
+
That said, the context savings and automatic discovery outweigh the loss of explicitness. And you can still manually invoke skills with `/skill-name` if you want that control.
|
|
99
|
+
|
|
100
|
+
### Bottom Line
|
|
101
|
+
|
|
102
|
+
Skills are the future of claude-flow. They align with Anthropic's vision, work better with Claude Code, and solve real problems I had with commands. The migration takes effort, but it's worth it.
|
|
103
|
+
|
|
104
|
+
If you're starting fresh, use skills. If you're on commands, plan to migrate. I'll support both for now, but my development focus is on skills.
|
|
105
|
+
|
|
106
|
+
## 🚀 What's New: AgentDB Integration
|
|
107
|
+
|
|
108
|
+
This release adds 4 new AgentDB skills that bring production-grade vector database capabilities to claude-flow:
|
|
109
|
+
|
|
110
|
+
**Performance Improvements:**
|
|
111
|
+
- **150x faster** pattern retrieval (<100µs vs 15ms)
|
|
112
|
+
- **500x faster** batch operations (2ms vs 1s for 100 vectors)
|
|
113
|
+
- **12,500x faster** large-scale queries (8ms vs 100s at 1M vectors)
|
|
114
|
+
- **4-32x memory reduction** with quantization (3GB → 96MB with binary quantization)
|
|
115
|
+
|
|
116
|
+
**New Skills:**
|
|
117
|
+
|
|
118
|
+
1. **`reasoningbank-agentdb`** - ReasoningBank with AgentDB backend
|
|
119
|
+
- 150x-12,500x performance improvement over legacy ReasoningBank
|
|
120
|
+
- Trajectory tracking and verdict judgment
|
|
121
|
+
- 100% backward compatible migration path
|
|
122
|
+
|
|
123
|
+
2. **`agentdb-learning`** - 9 Reinforcement Learning Algorithms
|
|
124
|
+
- Decision Transformer, Q-Learning, SARSA, Actor-Critic, Curiosity-Driven
|
|
125
|
+
- 10-100x faster training with WASM acceleration
|
|
126
|
+
- Create self-learning agents from historical data
|
|
127
|
+
|
|
128
|
+
3. **`agentdb-optimization`** - Performance Tuning
|
|
129
|
+
- Binary quantization (32x compression, ~2-5% accuracy loss)
|
|
130
|
+
- Scalar quantization (4x compression, ~1-2% accuracy loss)
|
|
131
|
+
- HNSW indexing for sub-100µs searches
|
|
132
|
+
- Production deployment optimization
|
|
133
|
+
|
|
134
|
+
4. **`agentdb-advanced`** - Enterprise Features
|
|
135
|
+
- QUIC synchronization (<1ms cross-node latency)
|
|
136
|
+
- Multi-database management with isolated namespaces
|
|
137
|
+
- Custom distance metrics (cosine, Euclidean, Hamming)
|
|
138
|
+
- Hybrid search (vector + metadata filtering)
|
|
139
|
+
|
|
140
|
+
**Why AgentDB?**
|
|
141
|
+
|
|
142
|
+
The original vector search and memory systems used ChromaDB and legacy ReasoningBank. While functional, they had performance limitations at scale. AgentDB provides:
|
|
143
|
+
|
|
144
|
+
- **Native TypeScript**: No Python dependency, simpler deployment
|
|
145
|
+
- **WASM Acceleration**: 10-100x faster neural operations
|
|
146
|
+
- **Better Compression**: 4-32x memory reduction
|
|
147
|
+
- **Sub-millisecond Latency**: <1ms pattern access
|
|
148
|
+
- **Distributed Sync**: QUIC protocol for multi-node coordination
|
|
149
|
+
|
|
150
|
+
These skills work alongside the existing `agentdb-memory-patterns` and `agentdb-vector-search` skills, giving you a complete vector database toolkit.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## 📦 Getting Started: Installation & Setup
|
|
155
|
+
|
|
156
|
+
### What Does `npx claude-flow@alpha init --force` Do?
|
|
157
|
+
|
|
158
|
+
This command initializes your project with Claude Flow's complete skills system:
|
|
159
|
+
|
|
160
|
+
**What It Does:**
|
|
161
|
+
1. **Creates `.claude/skills/` directory** - Where all 25 skills are installed
|
|
162
|
+
2. **Copies skill modules** - Installs pre-built skills for development, GitHub, memory, and more
|
|
163
|
+
3. **Sets up configuration** - Creates `claude-flow.json` with default settings
|
|
164
|
+
4. **Initializes hooks** - Installs automation hooks for pre/post task coordination
|
|
165
|
+
5. **Creates statusline** - Adds terminal statusline showing active swarms and tasks
|
|
166
|
+
6. **Force overwrites** - The `--force` flag replaces existing files (useful for updates)
|
|
167
|
+
|
|
168
|
+
**When to Use It:**
|
|
169
|
+
- Starting a new project with Claude Flow
|
|
170
|
+
- Adding skills to an existing project
|
|
171
|
+
- Updating to the latest skills (with `--force`)
|
|
172
|
+
- Resetting corrupted skill configurations
|
|
173
|
+
|
|
174
|
+
**Usage:**
|
|
175
|
+
```bash
|
|
176
|
+
# Initialize in current project
|
|
177
|
+
npx claude-flow@alpha init --force
|
|
178
|
+
|
|
179
|
+
# What you'll see:
|
|
180
|
+
# ✓ Created .claude/skills/ directory
|
|
181
|
+
# ✓ Installed 25 skills
|
|
182
|
+
# ✓ Configured hooks automation
|
|
183
|
+
# ✓ Setup statusline integration
|
|
184
|
+
# ✓ Ready to use skills!
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
**After Installation:**
|
|
188
|
+
- Skills are automatically discovered by Claude Code
|
|
189
|
+
- Use `/skill-name` to invoke a skill manually
|
|
190
|
+
- Skills activate automatically when tasks match their descriptions
|
|
191
|
+
- No configuration needed - it just works!
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## 🎨 Development Skills
|
|
196
|
+
|
|
197
|
+
### 1. `skill-builder` - Create Your Own Skills
|
|
198
|
+
|
|
199
|
+
**What It Does:**
|
|
200
|
+
Helps you create custom Claude Code skills with proper structure, YAML frontmatter, and progressive disclosure.
|
|
201
|
+
|
|
202
|
+
**When to Use:**
|
|
203
|
+
- Building domain-specific knowledge modules
|
|
204
|
+
- Creating team-specific workflows
|
|
205
|
+
- Documenting project patterns for AI to follow
|
|
206
|
+
- Standardizing development approaches
|
|
207
|
+
|
|
208
|
+
**Plain Language:**
|
|
209
|
+
Think of it as a "skill factory" - it teaches Claude how to build new skills that other Claude instances can discover and use.
|
|
210
|
+
|
|
211
|
+
**Usage:**
|
|
212
|
+
```bash
|
|
213
|
+
# Invoke the skill
|
|
214
|
+
/skill-builder
|
|
215
|
+
|
|
216
|
+
# Then ask Claude:
|
|
217
|
+
"Create a skill for React component development following our team's patterns"
|
|
218
|
+
"Build a skill for API endpoint testing with our authentication flow"
|
|
219
|
+
"Make a skill that knows our database schema conventions"
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
**What You Get:**
|
|
223
|
+
- Properly formatted `SKILL.md` file
|
|
224
|
+
- YAML frontmatter with metadata
|
|
225
|
+
- Progressive disclosure sections
|
|
226
|
+
- Auto-organized in `.claude/skills/`
|
|
227
|
+
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
### 2. `sparc-methodology` - Systematic Development
|
|
231
|
+
|
|
232
|
+
**What It Does:**
|
|
233
|
+
Implements SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) - a five-phase development methodology for building features systematically.
|
|
234
|
+
|
|
235
|
+
**When to Use:**
|
|
236
|
+
- Building complex new features
|
|
237
|
+
- Refactoring large systems
|
|
238
|
+
- Planning before coding
|
|
239
|
+
- Working with distributed teams
|
|
240
|
+
|
|
241
|
+
**Plain Language:**
|
|
242
|
+
SPARC breaks development into five steps: (1) Define what you need, (2) Write algorithm logic, (3) Design the system, (4) Build with tests, (5) Integrate everything. It prevents "code first, think later" problems.
|
|
243
|
+
|
|
244
|
+
**Usage:**
|
|
245
|
+
```bash
|
|
246
|
+
# Full SPARC workflow
|
|
247
|
+
npx claude-flow sparc tdd "user authentication system"
|
|
248
|
+
|
|
249
|
+
# Individual phases
|
|
250
|
+
npx claude-flow sparc run spec-pseudocode "shopping cart feature"
|
|
251
|
+
npx claude-flow sparc run architect "payment processing"
|
|
252
|
+
|
|
253
|
+
# Check available modes
|
|
254
|
+
npx claude-flow sparc modes
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
**What You Get:**
|
|
258
|
+
- Specification documents
|
|
259
|
+
- Pseudocode algorithms
|
|
260
|
+
- Architecture diagrams (as text)
|
|
261
|
+
- Test-driven implementation
|
|
262
|
+
- Integration plan
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
### 3. `pair-programming` - AI Pair Programming
|
|
267
|
+
|
|
268
|
+
**What It Does:**
|
|
269
|
+
Provides driver/navigator pair programming modes with real-time verification, quality monitoring, and automatic role switching.
|
|
270
|
+
|
|
271
|
+
**When to Use:**
|
|
272
|
+
- Learning new technologies
|
|
273
|
+
- Debugging complex issues
|
|
274
|
+
- Code reviews while coding
|
|
275
|
+
- Test-driven development sessions
|
|
276
|
+
|
|
277
|
+
**Plain Language:**
|
|
278
|
+
Like having an experienced developer sitting next to you. Claude can "drive" (write code while you watch) or "navigate" (guide you while you code). Roles can switch automatically, and there's continuous quality checking.
|
|
279
|
+
|
|
280
|
+
**Usage:**
|
|
281
|
+
```bash
|
|
282
|
+
# Invoke pair programming
|
|
283
|
+
/pair-programming
|
|
284
|
+
|
|
285
|
+
# Then work together:
|
|
286
|
+
"Let's pair on this React component - you drive first"
|
|
287
|
+
"Switch to navigator mode and review my authentication code"
|
|
288
|
+
"Debug mode - this function isn't working as expected"
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
**Modes Available:**
|
|
292
|
+
- **Driver Mode**: Claude writes code, you review
|
|
293
|
+
- **Navigator Mode**: You code, Claude guides
|
|
294
|
+
- **Switch Mode**: Automatic role swapping
|
|
295
|
+
- **TDD Mode**: Test-first development
|
|
296
|
+
- **Debug Mode**: Problem-solving focus
|
|
297
|
+
|
|
298
|
+
---
|
|
299
|
+
|
|
300
|
+
## 🧠 Intelligence & Memory Skills
|
|
301
|
+
|
|
302
|
+
### 4. `agentdb-memory-patterns` - Persistent Agent Memory
|
|
303
|
+
|
|
304
|
+
**What It Does:**
|
|
305
|
+
Implements persistent memory patterns for AI agents - session memory, long-term storage, pattern learning, and context management.
|
|
306
|
+
|
|
307
|
+
**When to Use:**
|
|
308
|
+
- Building chatbots that remember conversations
|
|
309
|
+
- Creating agents that learn from experience
|
|
310
|
+
- Storing project context across sessions
|
|
311
|
+
- Sharing knowledge between agents
|
|
312
|
+
|
|
313
|
+
**Plain Language:**
|
|
314
|
+
Gives Claude a "long-term memory" that survives beyond single conversations. Like taking notes that Claude can reference later, even in different sessions.
|
|
315
|
+
|
|
316
|
+
**Usage:**
|
|
317
|
+
```bash
|
|
318
|
+
# Invoke memory patterns
|
|
319
|
+
/agentdb-memory-patterns
|
|
320
|
+
|
|
321
|
+
# Common tasks:
|
|
322
|
+
"Store our API design decisions in long-term memory"
|
|
323
|
+
"Remember this user's preferences for future sessions"
|
|
324
|
+
"Create a memory pattern for tracking bug fixes"
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
**Memory Types:**
|
|
328
|
+
- **Session Memory**: Temporary, conversation-scoped
|
|
329
|
+
- **Long-term Storage**: Permanent, cross-session
|
|
330
|
+
- **Pattern Learning**: Learns from past interactions
|
|
331
|
+
- **Context Management**: Maintains relevant context
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
### 5. `agentdb-vector-search` - Semantic Search
|
|
336
|
+
|
|
337
|
+
**What It Does:**
|
|
338
|
+
Implements semantic vector search for intelligent document retrieval, similarity matching, and context-aware querying.
|
|
339
|
+
|
|
340
|
+
**When to Use:**
|
|
341
|
+
- Building RAG (Retrieval Augmented Generation) systems
|
|
342
|
+
- Searching code by meaning, not just keywords
|
|
343
|
+
- Finding similar issues/bugs
|
|
344
|
+
- Intelligent documentation search
|
|
345
|
+
|
|
346
|
+
**Plain Language:**
|
|
347
|
+
Instead of searching for exact word matches, this searches by *meaning*. Ask "how do we handle errors?" and it finds relevant code even if it doesn't contain those exact words.
|
|
348
|
+
|
|
349
|
+
**Usage:**
|
|
350
|
+
```bash
|
|
351
|
+
# Invoke vector search
|
|
352
|
+
/agentdb-vector-search
|
|
353
|
+
|
|
354
|
+
# Example queries:
|
|
355
|
+
"Find all code that handles user authentication"
|
|
356
|
+
"Search for functions similar to calculateDiscount()"
|
|
357
|
+
"Retrieve documentation about error handling patterns"
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
**What You Get:**
|
|
361
|
+
- Semantic similarity matching
|
|
362
|
+
- Context-aware results
|
|
363
|
+
- Ranked by relevance
|
|
364
|
+
- Works with code, docs, and data
|
|
365
|
+
|
|
366
|
+
---
|
|
367
|
+
|
|
368
|
+
### 6. `reasoningbank-agentdb` - ReasoningBank Integration
|
|
369
|
+
|
|
370
|
+
**What It Does:**
|
|
371
|
+
Implements ReasoningBank adaptive learning with AgentDB's high-performance backend (150x-12,500x faster). Enables agents to learn from experiences, judge outcomes, distill memories, and improve decision-making over time.
|
|
372
|
+
|
|
373
|
+
**When to Use:**
|
|
374
|
+
- Building self-learning agents that improve from experience
|
|
375
|
+
- Implementing experience replay and trajectory tracking
|
|
376
|
+
- Optimizing decision-making through pattern recognition
|
|
377
|
+
- Migrating from legacy ReasoningBank systems
|
|
378
|
+
|
|
379
|
+
**Plain Language:**
|
|
380
|
+
ReasoningBank teaches agents to learn from their experiences. Every time an agent completes a task, it stores what worked, what didn't, and why. Next time it faces a similar problem, it recalls successful patterns and avoids failures. AgentDB makes this 150x faster than before.
|
|
381
|
+
|
|
382
|
+
**Usage:**
|
|
383
|
+
```bash
|
|
384
|
+
# Invoke ReasoningBank with AgentDB
|
|
385
|
+
/reasoningbank-agentdb
|
|
386
|
+
|
|
387
|
+
# Initialize database
|
|
388
|
+
"Setup ReasoningBank with AgentDB for this project"
|
|
389
|
+
|
|
390
|
+
# Store successful patterns
|
|
391
|
+
"Remember this bug fix approach for future similar issues"
|
|
392
|
+
|
|
393
|
+
# Migrate from old system
|
|
394
|
+
"Migrate existing ReasoningBank data to AgentDB"
|
|
395
|
+
```
|
|
396
|
+
|
|
397
|
+
**Performance Benefits:**
|
|
398
|
+
- **150x faster pattern retrieval** (100µs vs 15ms)
|
|
399
|
+
- **500x faster batch operations** (2ms vs 1s for 100 patterns)
|
|
400
|
+
- **12,500x faster large-scale queries** (8ms vs 100s at 1M patterns)
|
|
401
|
+
- **<1ms memory access** for real-time decision making
|
|
402
|
+
|
|
403
|
+
**Key Features:**
|
|
404
|
+
- **Trajectory Tracking**: Records agent action sequences and outcomes
|
|
405
|
+
- **Verdict Judgment**: Evaluates success/failure of approaches
|
|
406
|
+
- **Memory Distillation**: Compresses experiences into learned patterns
|
|
407
|
+
- **100% Backward Compatible**: Drop-in replacement for legacy ReasoningBank
|
|
408
|
+
|
|
409
|
+
---
|
|
410
|
+
|
|
411
|
+
### 7. `agentdb-learning` - Learning Plugins & Algorithms
|
|
412
|
+
|
|
413
|
+
**What It Does:**
|
|
414
|
+
Provides 9 reinforcement learning algorithms via AgentDB's plugin system. Create, train, and deploy learning plugins for autonomous agents that improve through experience - includes Decision Transformer, Q-Learning, SARSA, Actor-Critic, and more.
|
|
415
|
+
|
|
416
|
+
**When to Use:**
|
|
417
|
+
- Building self-learning autonomous agents
|
|
418
|
+
- Implementing reinforcement learning systems
|
|
419
|
+
- Training agents on custom tasks
|
|
420
|
+
- Optimizing agent behavior through experience
|
|
421
|
+
|
|
422
|
+
**Plain Language:**
|
|
423
|
+
Instead of programming every behavior, you train agents to learn optimal strategies through trial and error. Like teaching a dog tricks - reward good behavior, correct mistakes, and the agent learns what works best.
|
|
424
|
+
|
|
425
|
+
**Usage:**
|
|
426
|
+
```bash
|
|
427
|
+
# Invoke learning plugins
|
|
428
|
+
/agentdb-learning
|
|
429
|
+
|
|
430
|
+
# Create a learning agent
|
|
431
|
+
"Create a Decision Transformer plugin for code optimization tasks"
|
|
432
|
+
|
|
433
|
+
# Train on historical data
|
|
434
|
+
"Train a Q-Learning agent on our deployment success/failure data"
|
|
435
|
+
|
|
436
|
+
# List available algorithms
|
|
437
|
+
"Show me all available learning plugin templates"
|
|
438
|
+
```
|
|
439
|
+
|
|
440
|
+
**Available Algorithms:**
|
|
441
|
+
|
|
442
|
+
1. **Decision Transformer** (Recommended)
|
|
443
|
+
- Sequence modeling approach to RL
|
|
444
|
+
- Learns from offline data (no environment needed)
|
|
445
|
+
- Best for: Code generation, task planning, decision sequences
|
|
446
|
+
|
|
447
|
+
2. **Q-Learning**
|
|
448
|
+
- Value-based learning
|
|
449
|
+
- Learns optimal action values
|
|
450
|
+
- Best for: Discrete actions, simple environments
|
|
451
|
+
|
|
452
|
+
3. **SARSA**
|
|
453
|
+
- On-policy temporal difference learning
|
|
454
|
+
- More conservative than Q-Learning
|
|
455
|
+
- Best for: Safety-critical applications
|
|
456
|
+
|
|
457
|
+
4. **Actor-Critic**
|
|
458
|
+
- Policy gradient with value baseline
|
|
459
|
+
- Continuous action spaces
|
|
460
|
+
- Best for: Complex control tasks, optimization
|
|
461
|
+
|
|
462
|
+
5. **Curiosity-Driven**
|
|
463
|
+
- Exploration-based learning
|
|
464
|
+
- Intrinsic motivation
|
|
465
|
+
- Best for: Sparse reward environments, discovery
|
|
466
|
+
|
|
467
|
+
**Training Performance:**
|
|
468
|
+
- 10-100x faster training with WASM acceleration
|
|
469
|
+
- Supports batch learning from historical data
|
|
470
|
+
- Real-time online learning capability
|
|
471
|
+
|
|
472
|
+
---
|
|
473
|
+
|
|
474
|
+
### 8. `agentdb-optimization` - Performance Optimization
|
|
475
|
+
|
|
476
|
+
**What It Does:**
|
|
477
|
+
Comprehensive performance optimization for AgentDB vector databases - quantization (4-32x memory reduction), HNSW indexing (150x faster search), caching strategies, and batch operations.
|
|
478
|
+
|
|
479
|
+
**When to Use:**
|
|
480
|
+
- Optimizing memory usage in vector databases
|
|
481
|
+
- Improving search speed for large datasets
|
|
482
|
+
- Scaling to millions of vectors
|
|
483
|
+
- Deploying to memory-constrained environments (mobile, edge)
|
|
484
|
+
|
|
485
|
+
**Plain Language:**
|
|
486
|
+
Makes vector databases smaller and faster. Binary quantization compresses vectors by 32x (3GB becomes 96MB) with minimal accuracy loss. HNSW indexing makes searches 150x faster. Like compressing a movie file - it takes less space and loads faster, but you barely notice the quality difference.
|
|
487
|
+
|
|
488
|
+
**Usage:**
|
|
489
|
+
```bash
|
|
490
|
+
# Invoke optimization
|
|
491
|
+
/agentdb-optimization
|
|
492
|
+
|
|
493
|
+
# Run benchmarks
|
|
494
|
+
"Benchmark my AgentDB performance"
|
|
495
|
+
|
|
496
|
+
# Apply optimizations
|
|
497
|
+
"Optimize this database with binary quantization for production"
|
|
498
|
+
|
|
499
|
+
# Memory analysis
|
|
500
|
+
"Analyze memory usage and suggest optimizations"
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
**Optimization Techniques:**
|
|
504
|
+
|
|
505
|
+
**1. Binary Quantization (32x Compression)**
|
|
506
|
+
- Converts float32 vectors to binary
|
|
507
|
+
- 768-dim vector: 3072 bytes → 96 bytes
|
|
508
|
+
- 1M vectors: 3GB → 96MB
|
|
509
|
+
- Trade-off: ~2-5% accuracy loss
|
|
510
|
+
- Use for: Mobile apps, large-scale deployments
|
|
511
|
+
|
|
512
|
+
**2. Scalar Quantization (4x Compression)**
|
|
513
|
+
- Converts float32 to int8
|
|
514
|
+
- Balanced compression vs accuracy
|
|
515
|
+
- 768-dim vector: 3072 bytes → 768 bytes
|
|
516
|
+
- Trade-off: ~1-2% accuracy loss
|
|
517
|
+
- Use for: Most production applications
|
|
518
|
+
|
|
519
|
+
**3. HNSW Indexing**
|
|
520
|
+
- Hierarchical navigable small world graphs
|
|
521
|
+
- 150x faster search
|
|
522
|
+
- Sub-100µs vector queries
|
|
523
|
+
- Use for: Real-time search, high-throughput systems
|
|
524
|
+
|
|
525
|
+
**4. Caching Strategies**
|
|
526
|
+
- In-memory pattern cache
|
|
527
|
+
- LRU eviction policy
|
|
528
|
+
- <1ms access for frequent queries
|
|
529
|
+
- Use for: Repeated pattern matching
|
|
530
|
+
|
|
531
|
+
**Performance Numbers:**
|
|
532
|
+
- Pattern Search: **<100µs** (150x faster)
|
|
533
|
+
- Batch Insert: **2ms for 100 vectors** (500x faster)
|
|
534
|
+
- Large-scale Query: **8ms at 1M vectors** (12,500x faster)
|
|
535
|
+
|
|
536
|
+
---
|
|
537
|
+
|
|
538
|
+
### 9. `agentdb-advanced` - Advanced Features
|
|
539
|
+
|
|
540
|
+
**What It Does:**
|
|
541
|
+
Master advanced AgentDB capabilities - QUIC synchronization (<1ms cross-node), multi-database management, custom distance metrics, hybrid search (vector + metadata), and distributed systems integration.
|
|
542
|
+
|
|
543
|
+
**When to Use:**
|
|
544
|
+
- Building distributed AI systems with multi-node coordination
|
|
545
|
+
- Implementing custom similarity metrics for specialized domains
|
|
546
|
+
- Creating hybrid search with metadata filtering
|
|
547
|
+
- Deploying cross-datacenter vector databases
|
|
548
|
+
|
|
549
|
+
**Plain Language:**
|
|
550
|
+
Advanced features for production systems. QUIC sync lets multiple databases stay synchronized with sub-millisecond latency - like having a shared brain across multiple servers. Hybrid search combines semantic similarity with filters (find similar code, but only Python files modified this month).
|
|
551
|
+
|
|
552
|
+
**Usage:**
|
|
553
|
+
```bash
|
|
554
|
+
# Invoke advanced features
|
|
555
|
+
/agentdb-advanced
|
|
556
|
+
|
|
557
|
+
# Enable QUIC synchronization
|
|
558
|
+
"Setup QUIC sync between 3 database nodes"
|
|
559
|
+
|
|
560
|
+
# Hybrid search
|
|
561
|
+
"Search for similar authentication code, but only in TypeScript files"
|
|
562
|
+
|
|
563
|
+
# Custom distance metrics
|
|
564
|
+
"Use cosine similarity for text, Euclidean for embeddings"
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
**Advanced Capabilities:**
|
|
568
|
+
|
|
569
|
+
**1. QUIC Synchronization**
|
|
570
|
+
- Sub-millisecond cross-node latency (<1ms)
|
|
571
|
+
- Automatic retry and recovery
|
|
572
|
+
- Built-in encryption (TLS 1.3)
|
|
573
|
+
- Multiplexed streams
|
|
574
|
+
- Use for: Distributed agents, multi-datacenter deployment
|
|
575
|
+
|
|
576
|
+
**2. Multi-Database Management**
|
|
577
|
+
- Manage multiple specialized databases
|
|
578
|
+
- Per-domain vector spaces
|
|
579
|
+
- Isolated namespaces
|
|
580
|
+
- Use for: Multi-tenant systems, domain separation
|
|
581
|
+
|
|
582
|
+
**3. Custom Distance Metrics**
|
|
583
|
+
- Cosine similarity (text/embeddings)
|
|
584
|
+
- Euclidean distance (spatial data)
|
|
585
|
+
- Hamming distance (binary vectors)
|
|
586
|
+
- Custom metrics via callbacks
|
|
587
|
+
- Use for: Specialized similarity requirements
|
|
588
|
+
|
|
589
|
+
**4. Hybrid Search**
|
|
590
|
+
- Combine vector similarity + metadata filters
|
|
591
|
+
- SQL-like filtering on vector results
|
|
592
|
+
- Multi-field queries
|
|
593
|
+
- Use for: Complex search requirements
|
|
594
|
+
|
|
595
|
+
**Example QUIC Deployment:**
|
|
596
|
+
```typescript
|
|
597
|
+
// Node 1 syncs with Nodes 2 & 3
|
|
598
|
+
const db1 = await createAdapter({
|
|
599
|
+
enableQUICSync: true,
|
|
600
|
+
syncPeers: ['node2:4433', 'node3:4433'],
|
|
601
|
+
});
|
|
602
|
+
|
|
603
|
+
// Pattern inserted on Node 1
|
|
604
|
+
await db1.insertPattern({ /* ... */ });
|
|
605
|
+
|
|
606
|
+
// Available on Nodes 2 & 3 within ~1ms
|
|
607
|
+
```
|
|
608
|
+
|
|
609
|
+
**Performance:**
|
|
610
|
+
- QUIC Sync: <1ms cross-node latency
|
|
611
|
+
- Hybrid Search: Maintains <100µs base vector search
|
|
612
|
+
- Custom Metrics: Negligible overhead with WASM
|
|
613
|
+
|
|
614
|
+
---
|
|
615
|
+
|
|
616
|
+
### 10. `reasoningbank-intelligence` - Adaptive Learning
|
|
617
|
+
|
|
618
|
+
**What It Does:**
|
|
619
|
+
Implements adaptive learning with ReasoningBank for pattern recognition, strategy optimization, and continuous improvement.
|
|
620
|
+
|
|
621
|
+
**When to Use:**
|
|
622
|
+
- Building self-improving agents
|
|
623
|
+
- Optimizing workflows over time
|
|
624
|
+
- Learning from past mistakes
|
|
625
|
+
- Meta-cognitive systems
|
|
626
|
+
|
|
627
|
+
**Plain Language:**
|
|
628
|
+
Claude learns from experience. If a certain approach works well, it remembers and uses it again. If something fails, it learns to avoid that pattern.
|
|
629
|
+
|
|
630
|
+
**Usage:**
|
|
631
|
+
```bash
|
|
632
|
+
# Invoke adaptive learning
|
|
633
|
+
/reasoningbank-intelligence
|
|
634
|
+
|
|
635
|
+
# Example use:
|
|
636
|
+
"Learn from this successful deployment and optimize future ones"
|
|
637
|
+
"Analyze our testing patterns and suggest improvements"
|
|
638
|
+
"Remember this bug fix strategy for similar issues"
|
|
639
|
+
```
|
|
640
|
+
|
|
641
|
+
**Capabilities:**
|
|
642
|
+
- Pattern recognition
|
|
643
|
+
- Strategy optimization
|
|
644
|
+
- Continuous improvement
|
|
645
|
+
- Learning from feedback
|
|
646
|
+
|
|
647
|
+
---
|
|
648
|
+
|
|
649
|
+
## 🐝 Coordination Skills
|
|
650
|
+
|
|
651
|
+
### 7. `swarm-orchestration` - Multi-Agent Coordination
|
|
652
|
+
|
|
653
|
+
**What It Does:**
|
|
654
|
+
Orchestrates multi-agent swarms with agentic-flow for parallel task execution, dynamic topology, and intelligent coordination.
|
|
655
|
+
|
|
656
|
+
**When to Use:**
|
|
657
|
+
- Complex projects needing multiple specialists
|
|
658
|
+
- Parallel development tasks
|
|
659
|
+
- Distributed problem-solving
|
|
660
|
+
- Scaling beyond single agent limits
|
|
661
|
+
|
|
662
|
+
**Plain Language:**
|
|
663
|
+
Instead of one Claude doing everything, this spawns multiple specialized Claudes working together. One might research while another codes, another tests - all in parallel.
|
|
664
|
+
|
|
665
|
+
**Usage:**
|
|
666
|
+
```bash
|
|
667
|
+
# Invoke swarm orchestration
|
|
668
|
+
/swarm-orchestration
|
|
669
|
+
|
|
670
|
+
# Examples:
|
|
671
|
+
"Create a swarm to build a REST API - researcher, coder, tester, reviewer"
|
|
672
|
+
"Orchestrate parallel agents for frontend, backend, and database work"
|
|
673
|
+
"Spawn a swarm to analyze this codebase from multiple angles"
|
|
674
|
+
```
|
|
675
|
+
|
|
676
|
+
**Topologies:**
|
|
677
|
+
- **Mesh**: Peer-to-peer, all agents collaborate
|
|
678
|
+
- **Hierarchical**: Tree structure, delegated tasks
|
|
679
|
+
- **Ring**: Sequential processing
|
|
680
|
+
- **Star**: Central coordinator
|
|
681
|
+
|
|
682
|
+
---
|
|
683
|
+
|
|
684
|
+
### 8. `swarm-advanced` - Advanced Swarm Patterns
|
|
685
|
+
|
|
686
|
+
**What It Does:**
|
|
687
|
+
Advanced swarm patterns for research, development, testing, and complex distributed workflows.
|
|
688
|
+
|
|
689
|
+
**When to Use:**
|
|
690
|
+
- Enterprise-scale projects
|
|
691
|
+
- Research projects needing deep analysis
|
|
692
|
+
- Complex testing scenarios
|
|
693
|
+
- Multi-repo coordination
|
|
694
|
+
|
|
695
|
+
**Plain Language:**
|
|
696
|
+
Takes swarm orchestration to the next level with specialized patterns for specific workflows - research swarms dig deep into topics, development swarms handle full SDLC, testing swarms verify from multiple angles.
|
|
697
|
+
|
|
698
|
+
**Usage:**
|
|
699
|
+
```bash
|
|
700
|
+
# Invoke advanced swarms
|
|
701
|
+
/swarm-advanced
|
|
702
|
+
|
|
703
|
+
# Example patterns:
|
|
704
|
+
"Launch a research swarm to analyze market trends in our domain"
|
|
705
|
+
"Deploy a development swarm for microservices architecture"
|
|
706
|
+
"Create a testing swarm with unit, integration, and E2E specialists"
|
|
707
|
+
```
|
|
708
|
+
|
|
709
|
+
**Patterns:**
|
|
710
|
+
- **Research Swarm**: Multi-angle analysis
|
|
711
|
+
- **Development Swarm**: Full-stack coordination
|
|
712
|
+
- **Testing Swarm**: Comprehensive verification
|
|
713
|
+
- **Optimization Swarm**: Performance tuning
|
|
714
|
+
|
|
715
|
+
---
|
|
716
|
+
|
|
717
|
+
### 9. `hive-mind-advanced` - Collective Intelligence
|
|
718
|
+
|
|
719
|
+
**What It Does:**
|
|
720
|
+
Queen-led hierarchical multi-agent coordination with consensus mechanisms and persistent memory.
|
|
721
|
+
|
|
722
|
+
**When to Use:**
|
|
723
|
+
- Large-scale projects needing central coordination
|
|
724
|
+
- Decision-making with multiple perspectives
|
|
725
|
+
- Complex systems requiring consensus
|
|
726
|
+
- Strategic planning with tactical execution
|
|
727
|
+
|
|
728
|
+
**Plain Language:**
|
|
729
|
+
A "queen bee" agent coordinates specialized "worker" agents. The queen makes strategic decisions, workers execute tasks, and they reach consensus through voting mechanisms.
|
|
730
|
+
|
|
731
|
+
**Usage:**
|
|
732
|
+
```bash
|
|
733
|
+
# Invoke hive mind
|
|
734
|
+
/hive-mind-advanced
|
|
735
|
+
|
|
736
|
+
# Example coordination:
|
|
737
|
+
"Deploy a hive mind for our microservices migration project"
|
|
738
|
+
"Create a queen coordinator with worker agents for each service"
|
|
739
|
+
"Use consensus for architectural decisions"
|
|
740
|
+
```
|
|
741
|
+
|
|
742
|
+
**Structure:**
|
|
743
|
+
- **Queen**: Strategic coordinator
|
|
744
|
+
- **Workers**: Specialized executors
|
|
745
|
+
- **Scouts**: Information gatherers
|
|
746
|
+
- **Consensus**: Democratic decision-making
|
|
747
|
+
|
|
748
|
+
---
|
|
749
|
+
|
|
750
|
+
## 🐙 GitHub Integration Skills
|
|
751
|
+
|
|
752
|
+
### 10. `github-code-review` - AI Code Reviews
|
|
753
|
+
|
|
754
|
+
**What It Does:**
|
|
755
|
+
Deploy specialized AI agents for comprehensive, intelligent code reviews beyond traditional static analysis.
|
|
756
|
+
|
|
757
|
+
**When to Use:**
|
|
758
|
+
- Pull request reviews
|
|
759
|
+
- Security audits
|
|
760
|
+
- Code quality checks
|
|
761
|
+
- Best practice enforcement
|
|
762
|
+
|
|
763
|
+
**Plain Language:**
|
|
764
|
+
Multiple AI reviewers examine your code from different angles: one checks security, another performance, another readability. Like having a senior dev team review every PR.
|
|
765
|
+
|
|
766
|
+
**Usage:**
|
|
767
|
+
```bash
|
|
768
|
+
# Invoke code review
|
|
769
|
+
/github-code-review
|
|
770
|
+
|
|
771
|
+
# Review a PR:
|
|
772
|
+
"Review PR #42 in this repository"
|
|
773
|
+
"Analyze security vulnerabilities in the authentication module"
|
|
774
|
+
"Check code quality and suggest improvements"
|
|
775
|
+
```
|
|
776
|
+
|
|
777
|
+
**Review Types:**
|
|
778
|
+
- **Security**: Vulnerability scanning
|
|
779
|
+
- **Performance**: Bottleneck detection
|
|
780
|
+
- **Quality**: Code smells and patterns
|
|
781
|
+
- **Best Practices**: Convention compliance
|
|
782
|
+
|
|
783
|
+
---
|
|
784
|
+
|
|
785
|
+
### 11. `github-workflow-automation` - CI/CD Intelligence
|
|
786
|
+
|
|
787
|
+
**What It Does:**
|
|
788
|
+
Creates intelligent, self-organizing CI/CD pipelines with adaptive multi-agent coordination and automated optimization.
|
|
789
|
+
|
|
790
|
+
**When to Use:**
|
|
791
|
+
- Setting up GitHub Actions
|
|
792
|
+
- Optimizing build pipelines
|
|
793
|
+
- Automating deployments
|
|
794
|
+
- Creating test workflows
|
|
795
|
+
|
|
796
|
+
**Plain Language:**
|
|
797
|
+
Builds smart CI/CD pipelines that adapt to your project. They learn which tests fail often, optimize build times, and automatically handle common deployment patterns.
|
|
798
|
+
|
|
799
|
+
**Usage:**
|
|
800
|
+
```bash
|
|
801
|
+
# Invoke workflow automation
|
|
802
|
+
/github-workflow-automation
|
|
803
|
+
|
|
804
|
+
# Create workflows:
|
|
805
|
+
"Create a GitHub Actions workflow for Node.js testing and deployment"
|
|
806
|
+
"Optimize our existing CI pipeline for faster builds"
|
|
807
|
+
"Setup automated releases with semantic versioning"
|
|
808
|
+
```
|
|
809
|
+
|
|
810
|
+
**Features:**
|
|
811
|
+
- Auto-generated workflows
|
|
812
|
+
- Performance optimization
|
|
813
|
+
- Intelligent caching
|
|
814
|
+
- Self-healing pipelines
|
|
815
|
+
|
|
816
|
+
---
|
|
817
|
+
|
|
818
|
+
### 12. `github-project-management` - Project Coordination
|
|
819
|
+
|
|
820
|
+
**What It Does:**
|
|
821
|
+
Swarm-coordinated issue tracking, project board automation, and sprint planning.
|
|
822
|
+
|
|
823
|
+
**When to Use:**
|
|
824
|
+
- Managing GitHub Projects
|
|
825
|
+
- Sprint planning and tracking
|
|
826
|
+
- Issue triage and prioritization
|
|
827
|
+
- Team coordination
|
|
828
|
+
|
|
829
|
+
**Plain Language:**
|
|
830
|
+
Automates project management tasks - triages issues, updates project boards, tracks sprint progress, and coordinates team work using AI swarms.
|
|
831
|
+
|
|
832
|
+
**Usage:**
|
|
833
|
+
```bash
|
|
834
|
+
# Invoke project management
|
|
835
|
+
/github-project-management
|
|
836
|
+
|
|
837
|
+
# Manage projects:
|
|
838
|
+
"Triage all open issues and categorize by priority"
|
|
839
|
+
"Update project board based on PR statuses"
|
|
840
|
+
"Plan next sprint based on velocity and priorities"
|
|
841
|
+
```
|
|
842
|
+
|
|
843
|
+
**Capabilities:**
|
|
844
|
+
- Issue triage
|
|
845
|
+
- Board automation
|
|
846
|
+
- Sprint planning
|
|
847
|
+
- Progress tracking
|
|
848
|
+
|
|
849
|
+
---
|
|
850
|
+
|
|
851
|
+
### 13. `github-release-management` - Release Orchestration
|
|
852
|
+
|
|
853
|
+
**What It Does:**
|
|
854
|
+
Orchestrates complex releases using AI swarms for automated versioning, testing, deployment, and rollback management.
|
|
855
|
+
|
|
856
|
+
**When to Use:**
|
|
857
|
+
- Creating releases
|
|
858
|
+
- Managing changelogs
|
|
859
|
+
- Coordinating deployments
|
|
860
|
+
- Handling rollbacks
|
|
861
|
+
|
|
862
|
+
**Plain Language:**
|
|
863
|
+
Manages the entire release process - bumps versions, generates changelogs, runs tests, deploys to environments, and can rollback if issues occur.
|
|
864
|
+
|
|
865
|
+
**Usage:**
|
|
866
|
+
```bash
|
|
867
|
+
# Invoke release management
|
|
868
|
+
/github-release-management
|
|
869
|
+
|
|
870
|
+
# Release tasks:
|
|
871
|
+
"Create a new release v2.1.0 with changelog"
|
|
872
|
+
"Deploy to staging and run smoke tests"
|
|
873
|
+
"Rollback production to previous version"
|
|
874
|
+
```
|
|
875
|
+
|
|
876
|
+
**Release Steps:**
|
|
877
|
+
- Version bumping
|
|
878
|
+
- Changelog generation
|
|
879
|
+
- Testing coordination
|
|
880
|
+
- Deployment orchestration
|
|
881
|
+
- Rollback capability
|
|
882
|
+
|
|
883
|
+
---
|
|
884
|
+
|
|
885
|
+
### 14. `github-multi-repo` - Cross-Repository Sync
|
|
886
|
+
|
|
887
|
+
**What It Does:**
|
|
888
|
+
Cross-repository synchronization, version alignment, and multi-package integration with intelligent swarm orchestration.
|
|
889
|
+
|
|
890
|
+
**When to Use:**
|
|
891
|
+
- Monorepo management
|
|
892
|
+
- Multi-package projects
|
|
893
|
+
- Dependency synchronization
|
|
894
|
+
- Cross-repo refactoring
|
|
895
|
+
|
|
896
|
+
**Plain Language:**
|
|
897
|
+
Coordinates changes across multiple repositories - updates versions together, syncs dependencies, propagates changes, and ensures everything stays compatible.
|
|
898
|
+
|
|
899
|
+
**Usage:**
|
|
900
|
+
```bash
|
|
901
|
+
# Invoke multi-repo
|
|
902
|
+
/github-multi-repo
|
|
903
|
+
|
|
904
|
+
# Sync repositories:
|
|
905
|
+
"Sync dependency versions across all our microservice repos"
|
|
906
|
+
"Propagate this API change to all consuming packages"
|
|
907
|
+
"Update shared configuration across the organization"
|
|
908
|
+
```
|
|
909
|
+
|
|
910
|
+
**Sync Types:**
|
|
911
|
+
- Version alignment
|
|
912
|
+
- Dependency updates
|
|
913
|
+
- Configuration sync
|
|
914
|
+
- Cross-repo refactoring
|
|
915
|
+
|
|
916
|
+
---
|
|
917
|
+
|
|
918
|
+
## 🔧 Automation Skills
|
|
919
|
+
|
|
920
|
+
### 15. `hooks-automation` - Development Automation
|
|
921
|
+
|
|
922
|
+
**What It Does:**
|
|
923
|
+
Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration.
|
|
924
|
+
|
|
925
|
+
**When to Use:**
|
|
926
|
+
- Automating repetitive tasks
|
|
927
|
+
- Enforcing code standards
|
|
928
|
+
- Learning from operations
|
|
929
|
+
- Session management
|
|
930
|
+
|
|
931
|
+
**Plain Language:**
|
|
932
|
+
Hooks automatically run before/after operations. Save a file → auto-format. Complete a task → update memory. End session → export metrics. Like Git hooks, but for AI development.
|
|
933
|
+
|
|
934
|
+
**Usage:**
|
|
935
|
+
```bash
|
|
936
|
+
# Invoke hooks
|
|
937
|
+
/hooks-automation
|
|
938
|
+
|
|
939
|
+
# Common automations:
|
|
940
|
+
"Setup pre-commit hooks for code formatting"
|
|
941
|
+
"Configure post-task hooks to update documentation"
|
|
942
|
+
"Enable session hooks for metric collection"
|
|
943
|
+
```
|
|
944
|
+
|
|
945
|
+
**Hook Types:**
|
|
946
|
+
- **Pre-Task**: Before operations start
|
|
947
|
+
- **Post-Edit**: After file changes
|
|
948
|
+
- **Post-Task**: After completion
|
|
949
|
+
- **Session**: Start/end of sessions
|
|
950
|
+
|
|
951
|
+
---
|
|
952
|
+
|
|
953
|
+
### 16. `verification-quality` - Quality Assurance
|
|
954
|
+
|
|
955
|
+
**What It Does:**
|
|
956
|
+
Comprehensive truth scoring, code quality verification, and automatic rollback with 0.95 accuracy threshold.
|
|
957
|
+
|
|
958
|
+
**When to Use:**
|
|
959
|
+
- Ensuring code quality
|
|
960
|
+
- Preventing bugs from merging
|
|
961
|
+
- Automatic verification
|
|
962
|
+
- Rollback protection
|
|
963
|
+
|
|
964
|
+
**Plain Language:**
|
|
965
|
+
Every change gets a "truth score" (0-1 accuracy rating). If it scores below 0.95, changes are automatically rolled back. Prevents low-quality code from entering your codebase.
|
|
966
|
+
|
|
967
|
+
**Usage:**
|
|
968
|
+
```bash
|
|
969
|
+
# Invoke verification
|
|
970
|
+
/verification-quality
|
|
971
|
+
|
|
972
|
+
# Verify code:
|
|
973
|
+
"Run quality verification on recent changes"
|
|
974
|
+
"Check truth scores for this PR"
|
|
975
|
+
"Setup automatic rollback for low-quality commits"
|
|
976
|
+
```
|
|
977
|
+
|
|
978
|
+
**Verification Types:**
|
|
979
|
+
- Truth scoring (accuracy)
|
|
980
|
+
- Code quality metrics
|
|
981
|
+
- Automatic rollback
|
|
982
|
+
- Reliability tracking
|
|
983
|
+
|
|
984
|
+
---
|
|
985
|
+
|
|
986
|
+
### 17. `performance-analysis` - Bottleneck Detection
|
|
987
|
+
|
|
988
|
+
**What It Does:**
|
|
989
|
+
Comprehensive performance analysis, bottleneck detection, and optimization recommendations for Claude Flow swarms.
|
|
990
|
+
|
|
991
|
+
**When to Use:**
|
|
992
|
+
- Slow swarm execution
|
|
993
|
+
- Performance optimization
|
|
994
|
+
- Resource monitoring
|
|
995
|
+
- Workflow efficiency
|
|
996
|
+
|
|
997
|
+
**Plain Language:**
|
|
998
|
+
Analyzes why operations are slow, identifies bottlenecks (network, CPU, memory, coordination), and suggests optimizations.
|
|
999
|
+
|
|
1000
|
+
**Usage:**
|
|
1001
|
+
```bash
|
|
1002
|
+
# Invoke performance analysis
|
|
1003
|
+
/performance-analysis
|
|
1004
|
+
|
|
1005
|
+
# Analyze performance:
|
|
1006
|
+
"Why is my swarm running slowly?"
|
|
1007
|
+
"Identify bottlenecks in this workflow"
|
|
1008
|
+
"Suggest optimizations for faster execution"
|
|
1009
|
+
```
|
|
1010
|
+
|
|
1011
|
+
**Analysis Areas:**
|
|
1012
|
+
- Coordination overhead
|
|
1013
|
+
- Network latency
|
|
1014
|
+
- Resource utilization
|
|
1015
|
+
- Agent efficiency
|
|
1016
|
+
|
|
1017
|
+
---
|
|
1018
|
+
|
|
1019
|
+
### 18. `stream-chain` - Pipeline Processing
|
|
1020
|
+
|
|
1021
|
+
**What It Does:**
|
|
1022
|
+
Stream-JSON chaining for multi-agent pipelines, data transformation, and sequential workflows.
|
|
1023
|
+
|
|
1024
|
+
**When to Use:**
|
|
1025
|
+
- Data processing pipelines
|
|
1026
|
+
- Multi-stage transformations
|
|
1027
|
+
- Sequential agent workflows
|
|
1028
|
+
- Stream processing
|
|
1029
|
+
|
|
1030
|
+
**Plain Language:**
|
|
1031
|
+
Chains agents together like Unix pipes - output from one agent flows as input to the next. Great for ETL, data processing, and sequential transformations.
|
|
1032
|
+
|
|
1033
|
+
**Usage:**
|
|
1034
|
+
```bash
|
|
1035
|
+
# Invoke stream-chain
|
|
1036
|
+
/stream-chain
|
|
1037
|
+
|
|
1038
|
+
# Create pipelines:
|
|
1039
|
+
"Chain: fetch data → transform → validate → store"
|
|
1040
|
+
"Pipeline: parse logs → analyze errors → generate report"
|
|
1041
|
+
"Stream: read files → extract data → aggregate → visualize"
|
|
1042
|
+
```
|
|
1043
|
+
|
|
1044
|
+
**Pipeline Stages:**
|
|
1045
|
+
- Input agents (fetch/read)
|
|
1046
|
+
- Transform agents (process)
|
|
1047
|
+
- Validate agents (check)
|
|
1048
|
+
- Output agents (store/report)
|
|
1049
|
+
|
|
1050
|
+
---
|
|
1051
|
+
|
|
1052
|
+
## ☁️ Flow Nexus Platform Skills
|
|
1053
|
+
|
|
1054
|
+
### 19. `flow-nexus-platform` - Cloud Platform
|
|
1055
|
+
|
|
1056
|
+
**What It Does:**
|
|
1057
|
+
Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges.
|
|
1058
|
+
|
|
1059
|
+
**When to Use:**
|
|
1060
|
+
- Cloud-based development
|
|
1061
|
+
- Sandbox environments
|
|
1062
|
+
- Deploying applications
|
|
1063
|
+
- Managing platform resources
|
|
1064
|
+
|
|
1065
|
+
**Plain Language:**
|
|
1066
|
+
Access to Flow Nexus cloud platform - create isolated sandboxes for testing, deploy apps, manage authentication, and access 70+ cloud tools.
|
|
1067
|
+
|
|
1068
|
+
**Usage:**
|
|
1069
|
+
```bash
|
|
1070
|
+
# Invoke platform
|
|
1071
|
+
/flow-nexus-platform
|
|
1072
|
+
|
|
1073
|
+
# Platform tasks:
|
|
1074
|
+
"Create a sandbox for testing this Node.js app"
|
|
1075
|
+
"Deploy my application to Flow Nexus"
|
|
1076
|
+
"Setup authentication for cloud access"
|
|
1077
|
+
```
|
|
1078
|
+
|
|
1079
|
+
**Features:**
|
|
1080
|
+
- Sandbox creation
|
|
1081
|
+
- App deployment
|
|
1082
|
+
- Authentication
|
|
1083
|
+
- Payment management
|
|
1084
|
+
|
|
1085
|
+
---
|
|
1086
|
+
|
|
1087
|
+
### 20. `flow-nexus-swarm` - Cloud Swarms
|
|
1088
|
+
|
|
1089
|
+
**What It Does:**
|
|
1090
|
+
Cloud-based AI swarm deployment and event-driven workflow automation with Flow Nexus platform.
|
|
1091
|
+
|
|
1092
|
+
**When to Use:**
|
|
1093
|
+
- Scalable swarm execution
|
|
1094
|
+
- Cloud-based coordination
|
|
1095
|
+
- Event-driven workflows
|
|
1096
|
+
- Distributed processing
|
|
1097
|
+
|
|
1098
|
+
**Plain Language:**
|
|
1099
|
+
Runs swarms in the cloud instead of locally. Scale to hundreds of agents, handle events, and process distributed workloads without local resource limits.
|
|
1100
|
+
|
|
1101
|
+
**Usage:**
|
|
1102
|
+
```bash
|
|
1103
|
+
# Invoke cloud swarms
|
|
1104
|
+
/flow-nexus-swarm
|
|
1105
|
+
|
|
1106
|
+
# Deploy swarms:
|
|
1107
|
+
"Deploy a 50-agent swarm in the cloud for this analysis"
|
|
1108
|
+
"Create event-driven workflow for CI/CD"
|
|
1109
|
+
"Scale swarm to handle high-volume processing"
|
|
1110
|
+
```
|
|
1111
|
+
|
|
1112
|
+
**Cloud Features:**
|
|
1113
|
+
- Massive scalability
|
|
1114
|
+
- Event-driven automation
|
|
1115
|
+
- Distributed execution
|
|
1116
|
+
- No local limits
|
|
1117
|
+
|
|
1118
|
+
---
|
|
1119
|
+
|
|
1120
|
+
### 21. `flow-nexus-neural` - Cloud Neural Training
|
|
1121
|
+
|
|
1122
|
+
**What It Does:**
|
|
1123
|
+
Train and deploy neural networks in distributed E2B sandboxes with Flow Nexus.
|
|
1124
|
+
|
|
1125
|
+
**When to Use:**
|
|
1126
|
+
- Neural network training
|
|
1127
|
+
- Distributed ML workloads
|
|
1128
|
+
- Model deployment
|
|
1129
|
+
- Large-scale inference
|
|
1130
|
+
|
|
1131
|
+
**Plain Language:**
|
|
1132
|
+
Train machine learning models in the cloud using distributed sandboxes. No need for local GPUs - Flow Nexus handles the compute.
|
|
1133
|
+
|
|
1134
|
+
**Usage:**
|
|
1135
|
+
```bash
|
|
1136
|
+
# Invoke neural training
|
|
1137
|
+
/flow-nexus-neural
|
|
1138
|
+
|
|
1139
|
+
# Train models:
|
|
1140
|
+
"Train a neural network for code classification"
|
|
1141
|
+
"Deploy distributed training across 10 sandboxes"
|
|
1142
|
+
"Run inference on this trained model"
|
|
1143
|
+
```
|
|
1144
|
+
|
|
1145
|
+
**Capabilities:**
|
|
1146
|
+
- Distributed training
|
|
1147
|
+
- Cloud compute
|
|
1148
|
+
- Model deployment
|
|
1149
|
+
- Scalable inference
|
|
1150
|
+
|
|
1151
|
+
---
|
|
1152
|
+
|
|
1153
|
+
## 🚀 Quick Reference
|
|
1154
|
+
|
|
1155
|
+
### Invoking Skills
|
|
1156
|
+
|
|
1157
|
+
```bash
|
|
1158
|
+
# Manual invocation
|
|
1159
|
+
/skill-name
|
|
1160
|
+
|
|
1161
|
+
# Examples:
|
|
1162
|
+
/pair-programming
|
|
1163
|
+
/github-code-review
|
|
1164
|
+
/swarm-orchestration
|
|
1165
|
+
```
|
|
1166
|
+
|
|
1167
|
+
### Auto-Discovery
|
|
1168
|
+
|
|
1169
|
+
Skills activate automatically when:
|
|
1170
|
+
- Task description matches skill purpose
|
|
1171
|
+
- Context indicates skill relevance
|
|
1172
|
+
- Claude determines skill would help
|
|
1173
|
+
|
|
1174
|
+
### Common Workflows
|
|
1175
|
+
|
|
1176
|
+
**New Feature Development:**
|
|
1177
|
+
```bash
|
|
1178
|
+
/sparc-methodology
|
|
1179
|
+
# → Full SPARC workflow with TDD
|
|
1180
|
+
```
|
|
1181
|
+
|
|
1182
|
+
**Code Review:**
|
|
1183
|
+
```bash
|
|
1184
|
+
/github-code-review
|
|
1185
|
+
# → Multi-agent PR review
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
**Performance Issues:**
|
|
1189
|
+
```bash
|
|
1190
|
+
/performance-analysis
|
|
1191
|
+
# → Identify bottlenecks
|
|
1192
|
+
```
|
|
1193
|
+
|
|
1194
|
+
**Team Coordination:**
|
|
1195
|
+
```bash
|
|
1196
|
+
/swarm-orchestration
|
|
1197
|
+
# → Parallel multi-agent work
|
|
1198
|
+
```
|
|
1199
|
+
|
|
1200
|
+
---
|
|
1201
|
+
|
|
1202
|
+
## 📚 Next Steps
|
|
1203
|
+
|
|
1204
|
+
1. **Install**: Run `npx claude-flow@alpha init --force`
|
|
1205
|
+
2. **Explore**: Try `/skill-builder` to create your first custom skill
|
|
1206
|
+
3. **Practice**: Use `/pair-programming` for your next coding session
|
|
1207
|
+
4. **Scale**: Deploy `/swarm-orchestration` for complex projects
|
|
1208
|
+
5. **Automate**: Setup `/hooks-automation` for continuous improvement
|
|
1209
|
+
|
|
1210
|
+
## 🔗 Resources
|
|
1211
|
+
|
|
1212
|
+
- **Documentation**: https://github.com/ruvnet/claude-flow
|
|
1213
|
+
- **Issues**: https://github.com/ruvnet/claude-flow/issues
|
|
1214
|
+
- **Flow Nexus**: https://flow-nexus.ruv.io
|
|
1215
|
+
|
|
1216
|
+
---
|
|
1217
|
+
|
|
1218
|
+
**Remember**: Skills are discovered automatically - just start working, and Claude will use the right skills at the right time!
|