Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'

This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
7854 changed files with 3522914 additions and 0 deletions

View 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)

View File

@@ -0,0 +1,8 @@
# swarm-analysis
Command documentation for swarm-analysis in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-analysis [options]
```

View File

@@ -0,0 +1,8 @@
# swarm-background
Command documentation for swarm-background in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-background [options]
```

View 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
```

View File

@@ -0,0 +1,8 @@
# swarm-modes
Command documentation for swarm-modes in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-modes [options]
```

View File

@@ -0,0 +1,8 @@
# swarm-monitor
Command documentation for swarm-monitor in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-monitor [options]
```

View 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"
```

View File

@@ -0,0 +1,8 @@
# swarm-status
Command documentation for swarm-status in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-status [options]
```

View File

@@ -0,0 +1,8 @@
# swarm-strategies
Command documentation for swarm-strategies in category swarm.
Usage:
```bash
npx claude-flow swarm swarm-strategies [options]
```

View 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
```