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,10 @@
# Agents Commands
Commands for agents operations in Claude Flow.
## Available Commands
- [agent-types](./agent-types.md)
- [agent-capabilities](./agent-capabilities.md)
- [agent-coordination](./agent-coordination.md)
- [agent-spawning](./agent-spawning.md)

View File

@@ -0,0 +1,21 @@
# agent-capabilities
Matrix of agent capabilities and their specializations.
## Capability Matrix
| Agent Type | Primary Skills | Best For |
|------------|---------------|----------|
| coder | Implementation, debugging | Feature development |
| researcher | Analysis, synthesis | Requirements gathering |
| tester | Testing, validation | Quality assurance |
| architect | Design, planning | System architecture |
## Querying Capabilities
```bash
# List all capabilities
npx claude-flow agents capabilities
# For specific agent
npx claude-flow agents capabilities --type coder
```

View File

@@ -0,0 +1,28 @@
# agent-coordination
Coordination patterns for multi-agent collaboration.
## Coordination Patterns
### Hierarchical
Queen-led with worker specialization
```bash
npx claude-flow swarm init --topology hierarchical
```
### Mesh
Peer-to-peer collaboration
```bash
npx claude-flow swarm init --topology mesh
```
### Adaptive
Dynamic topology based on workload
```bash
npx claude-flow swarm init --topology adaptive
```
## Best Practices
- Use hierarchical for complex projects
- Use mesh for research tasks
- Use adaptive for unknown workloads

View File

@@ -0,0 +1,28 @@
# agent-spawning
Guide to spawning agents with Claude Code's Task tool.
## Using Claude Code's Task Tool
**CRITICAL**: Always use Claude Code's Task tool for actual agent execution:
```javascript
// Spawn ALL agents in ONE message
Task("Researcher", "Analyze requirements...", "researcher")
Task("Coder", "Implement features...", "coder")
Task("Tester", "Create tests...", "tester")
```
## MCP Coordination Setup (Optional)
MCP tools are ONLY for coordination:
```javascript
mcp__claude-flow__swarm_init { topology: "mesh" }
mcp__claude-flow__agent_spawn { type: "researcher" }
```
## Best Practices
1. Always spawn agents concurrently
2. Use Task tool for execution
3. MCP only for coordination
4. Batch all operations

View File

@@ -0,0 +1,26 @@
# agent-types
Complete guide to all 54 available agent types in Claude Flow.
## Core Development Agents
- `coder` - Implementation specialist
- `reviewer` - Code quality assurance
- `tester` - Test creation and validation
- `planner` - Strategic planning
- `researcher` - Information gathering
## Swarm Coordination Agents
- `hierarchical-coordinator` - Queen-led coordination
- `mesh-coordinator` - Peer-to-peer networks
- `adaptive-coordinator` - Dynamic topology
## Specialized Agents
- `backend-dev` - API development
- `mobile-dev` - React Native development
- `ml-developer` - Machine learning
- `system-architect` - High-level design
For full list and details:
```bash
npx claude-flow agents list
```