Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'
This commit is contained in:
15
vendor/ruvector/.claude/commands/swarm/README.md
vendored
Normal file
15
vendor/ruvector/.claude/commands/swarm/README.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-analysis.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-analysis.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-background.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-background.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-init.md
vendored
Normal file
19
vendor/ruvector/.claude/commands/swarm/swarm-init.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-modes.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-modes.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-monitor.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-monitor.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-spawn.md
vendored
Normal file
19
vendor/ruvector/.claude/commands/swarm/swarm-spawn.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-status.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-status.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm-strategies.md
vendored
Normal file
8
vendor/ruvector/.claude/commands/swarm/swarm-strategies.md
vendored
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
vendor/ruvector/.claude/commands/swarm/swarm.md
vendored
Normal file
27
vendor/ruvector/.claude/commands/swarm/swarm.md
vendored
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