Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
This commit is contained in:
15
.claude/commands/swarm/README.md
Normal file
15
.claude/commands/swarm/README.md
Normal file
@@ -0,0 +1,15 @@
|
||||
# Swarm Commands
|
||||
|
||||
Commands for swarm operations in Claude Flow.
|
||||
|
||||
## Available Commands
|
||||
|
||||
- [swarm](./swarm.md)
|
||||
- [swarm-init](./swarm-init.md)
|
||||
- [swarm-spawn](./swarm-spawn.md)
|
||||
- [swarm-status](./swarm-status.md)
|
||||
- [swarm-monitor](./swarm-monitor.md)
|
||||
- [swarm-strategies](./swarm-strategies.md)
|
||||
- [swarm-modes](./swarm-modes.md)
|
||||
- [swarm-background](./swarm-background.md)
|
||||
- [swarm-analysis](./swarm-analysis.md)
|
||||
8
.claude/commands/swarm/swarm-analysis.md
Normal file
8
.claude/commands/swarm/swarm-analysis.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-analysis
|
||||
|
||||
Command documentation for swarm-analysis in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-analysis [options]
|
||||
```
|
||||
8
.claude/commands/swarm/swarm-background.md
Normal file
8
.claude/commands/swarm/swarm-background.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-background
|
||||
|
||||
Command documentation for swarm-background in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-background [options]
|
||||
```
|
||||
19
.claude/commands/swarm/swarm-init.md
Normal file
19
.claude/commands/swarm/swarm-init.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# swarm-init
|
||||
|
||||
Initialize a new swarm with specified topology.
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
npx claude-flow swarm init [options]
|
||||
```
|
||||
|
||||
## Options
|
||||
- `--topology <type>` - Swarm topology (mesh, hierarchical, ring, star)
|
||||
- `--max-agents <n>` - Maximum agents
|
||||
- `--strategy <type>` - Distribution strategy
|
||||
|
||||
## Examples
|
||||
```bash
|
||||
npx claude-flow swarm init --topology mesh
|
||||
npx claude-flow swarm init --topology hierarchical --max-agents 8
|
||||
```
|
||||
8
.claude/commands/swarm/swarm-modes.md
Normal file
8
.claude/commands/swarm/swarm-modes.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-modes
|
||||
|
||||
Command documentation for swarm-modes in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-modes [options]
|
||||
```
|
||||
8
.claude/commands/swarm/swarm-monitor.md
Normal file
8
.claude/commands/swarm/swarm-monitor.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-monitor
|
||||
|
||||
Command documentation for swarm-monitor in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-monitor [options]
|
||||
```
|
||||
19
.claude/commands/swarm/swarm-spawn.md
Normal file
19
.claude/commands/swarm/swarm-spawn.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# swarm-spawn
|
||||
|
||||
Spawn agents in the swarm.
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
npx claude-flow swarm spawn [options]
|
||||
```
|
||||
|
||||
## Options
|
||||
- `--type <type>` - Agent type
|
||||
- `--count <n>` - Number to spawn
|
||||
- `--capabilities <list>` - Agent capabilities
|
||||
|
||||
## Examples
|
||||
```bash
|
||||
npx claude-flow swarm spawn --type coder --count 3
|
||||
npx claude-flow swarm spawn --type researcher --capabilities "web-search,analysis"
|
||||
```
|
||||
8
.claude/commands/swarm/swarm-status.md
Normal file
8
.claude/commands/swarm/swarm-status.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-status
|
||||
|
||||
Command documentation for swarm-status in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-status [options]
|
||||
```
|
||||
8
.claude/commands/swarm/swarm-strategies.md
Normal file
8
.claude/commands/swarm/swarm-strategies.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# swarm-strategies
|
||||
|
||||
Command documentation for swarm-strategies in category swarm.
|
||||
|
||||
Usage:
|
||||
```bash
|
||||
npx claude-flow swarm swarm-strategies [options]
|
||||
```
|
||||
27
.claude/commands/swarm/swarm.md
Normal file
27
.claude/commands/swarm/swarm.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# swarm
|
||||
|
||||
Main swarm orchestration command for Claude Flow.
|
||||
|
||||
## Usage
|
||||
```bash
|
||||
npx claude-flow swarm <objective> [options]
|
||||
```
|
||||
|
||||
## Options
|
||||
- `--strategy <type>` - Execution strategy (research, development, analysis, testing)
|
||||
- `--mode <type>` - Coordination mode (centralized, distributed, hierarchical, mesh)
|
||||
- `--max-agents <n>` - Maximum number of agents (default: 5)
|
||||
- `--claude` - Open Claude Code CLI with swarm prompt
|
||||
- `--parallel` - Enable parallel execution
|
||||
|
||||
## Examples
|
||||
```bash
|
||||
# Basic swarm
|
||||
npx claude-flow swarm "Build REST API"
|
||||
|
||||
# With strategy
|
||||
npx claude-flow swarm "Research AI patterns" --strategy research
|
||||
|
||||
# Open in Claude Code
|
||||
npx claude-flow swarm "Build API" --claude
|
||||
```
|
||||
Reference in New Issue
Block a user