/spawn
Spawn a new agent with V3 capabilities
> /plugin marketplace add proffesor-for-testing/agentic-qe > /plugin install agentic-qe-fleet@agentic-qe
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/spawn
Context preview
What this command does when you run it.
Spawn a new agent with V3 capabilities
Command definition
spawn.mdname: spawn
description: Spawn a new agent with V3 capabilities
type: command
Agent Spawn Command
Spawn a new agent with full V3 capabilities including neural patterns, memory integration, and swarm coordination.
Usage
npx claude-flow agent spawn [options]
Options
| Option | Short | Description | Default | |--------|-------|-------------|---------| | `--type` | `-t` | Agent type to spawn | Required | | `--name` | `-n` | Agent name/identifier | Auto-generated | | `--provider` | `-p` | AI provider (anthropic, openrouter, ollama) | anthropic | | `--model` | `-m` | Model to use | Provider default | | `--task` | | Initial task for the agent | None | | `--timeout` | | Agent timeout in seconds | 300 | | `--auto-tools` | | Enable automatic tool usage | true |
Agent Types (87 Available)
Core Development
npx claude-flow agent spawn -t coder # Code implementation
npx claude-flow agent spawn -t reviewer # Code review
npx claude-flow agent spawn -t tester # Testing
npx claude-flow agent spawn -t planner # Planning
npx claude-flow agent spawn -t researcher # Research
V3 Specialized
npx claude-flow agent spawn -t security-architect # Security design
npx claude-flow agent spawn -t security-auditor # CVE remediation
npx claude-flow agent spawn -t memory-specialist # AgentDB (150x-12,500x faster)
npx claude-flow agent spawn -t performance-engineer # 2.49x-7.47x optimization
npx claude-flow agent spawn -t core-architect # DDD design
Swarm Coordination
npx claude-flow agent spawn -t hierarchical-coordinator # Queen-led
npx claude-flow agent spawn -t mesh-coordinator # P2P network
npx claude-flow agent spawn -t adaptive-coordinator # Dynamic topology
npx claude-flow agent spawn -t collective-intelligence-coordinator
Consensus Agents
npx claude-flow agent spawn -t byzantine-coordinator # BFT consensus
npx claude-flow agent spawn -t raft-manager # Leader-based
npx claude-flow agent spawn -t gossip-coordinator # Eventual consistency
npx claude-flow agent spawn -t crdt-synchronizer # CRDT replication
npx claude-flow agent spawn -t quorum-manager # Quorum-based
GitHub Integration
npx claude-flow agent spawn -t pr-manager # PR lifecycle
npx claude-flow agent spawn -t code-review-swarm # Multi-agent review
npx claude-flow agent spawn -t issue-tracker # Issue management
npx claude-flow agent spawn -t release-manager # Release coordination
npx claude-flow agent spawn -t workflow-automation # CI/CD automation
SPARC Methodology
npx claude-flow agent spawn -t sparc-coordinator # SPARC orchestration
npx claude-flow agent spawn -t specification # Requirements
npx claude-flow agent spawn -t pseudocode # Algorithm design
npx claude-flow agent spawn -t architecture # System design
npx claude-flow agent spawn -t refinement # Iterative improvement
Examples
# Spawn with custom name
npx claude-flow agent spawn -t coder --name feature-bot
# Spawn with initial task
npx claude-flow agent spawn -t researcher --task "Research React 19 features"
# Spawn with specific model
npx claude-flow agent spawn -t architect -m claude-3-opus-20240229
# Spawn with custom timeout
npx claude-flow agent spawn -t tester --timeout 600
# Spawn using OpenRouter
npx claude-flow agent spawn -t coder -p openrouter -m anthropic/claude-3.5-sonnet
Using Claude Code's Task Tool
For actual execution, always use Claude Code's Task tool:
// Spawn ALL agents in ONE message for parallel execution
Task("Coder", "Implement authentication feature", "coder")
Task("Tester", "Write unit tests for auth", "tester")
Task("Reviewer", "Review auth implementation", "reviewer")MCP Coordination (Optional)
Use MCP tools only for swarm coordination setup:
mcp__claude-flow__swarm_init({ topology: "hierarchical", maxAgents: 15 })
mcp__claude-flow__agent_spawn({ type: "coordinator", name: "queen" })Output
Spawning coder agent: feature-bot
+-----------+----------------------------------+
| Property | Value |
+-----------+----------------------------------+
| ID | coder-lx7m9k2 |
| Type | coder |
| Name | feature-bot |
| Status | active |
| Created | 2026-01-08T03:30:00.000Z |
| Capabilities | code, debug, refactor, test |
+-----------+----------------------------------+
Agent feature-bot spawned successfully
Read more
name: spawn description: Spawn a new agent with V3 capabilities type: command
Agent Spawn Command
Spawn a new agent with full V3 capabilities including neural patterns, memory integration, and swarm coordination.
Usage
npx claude-flow agent spawn [options]
Options
| Option | Short | Description | Default | |--------|-------|-------------|---------| | `--type` | `-t` | Agent type to spawn | Required | | `--name` | `-n` | Agent name/identifier | Auto-generated | | `--provider` | `-p` | AI provider (anthropic, openrouter, ollama) | anthropic | | `--model` | `-m` | Model to use | Provider default | | `--task` | | Initial task for the agent | None | | `--timeout` | | Agent timeout in seconds | 300 | | `--auto-tools` | | Enable automatic tool usage | true |
Agent Types (87 Available)
Core Development
npx claude-flow agent spawn -t coder # Code implementation npx claude-flow agent spawn -t reviewer # Code review npx claude-flow agent spawn -t tester # Testing npx claude-flow agent spawn -t planner # Planning npx claude-flow agent spawn -t researcher # Research
V3 Specialized
npx claude-flow agent spawn -t security-architect # Security design npx claude-flow agent spawn -t security-auditor # CVE remediation npx claude-flow agent spawn -t memory-specialist # AgentDB (150x-12,500x faster) npx claude-flow agent spawn -t performance-engineer # 2.49x-7.47x optimization npx claude-flow agent spawn -t core-architect # DDD design
Swarm Coordination
npx claude-flow agent spawn -t hierarchical-coordinator # Queen-led npx claude-flow agent spawn -t mesh-coordinator # P2P network npx claude-flow agent spawn -t adaptive-coordinator # Dynamic topology npx claude-flow agent spawn -t collective-intelligence-coordinator
Consensus Agents
npx claude-flow agent spawn -t byzantine-coordinator # BFT consensus npx claude-flow agent spawn -t raft-manager # Leader-based npx claude-flow agent spawn -t gossip-coordinator # Eventual consistency npx claude-flow agent spawn -t crdt-synchronizer # CRDT replication npx claude-flow agent spawn -t quorum-manager # Quorum-based
GitHub Integration
npx claude-flow agent spawn -t pr-manager # PR lifecycle npx claude-flow agent spawn -t code-review-swarm # Multi-agent review npx claude-flow agent spawn -t issue-tracker # Issue management npx claude-flow agent spawn -t release-manager # Release coordination npx claude-flow agent spawn -t workflow-automation # CI/CD automation
SPARC Methodology
npx claude-flow agent spawn -t sparc-coordinator # SPARC orchestration npx claude-flow agent spawn -t specification # Requirements npx claude-flow agent spawn -t pseudocode # Algorithm design npx claude-flow agent spawn -t architecture # System design npx claude-flow agent spawn -t refinement # Iterative improvement
Examples
# Spawn with custom name npx claude-flow agent spawn -t coder --name feature-bot # Spawn with initial task npx claude-flow agent spawn -t researcher --task "Research React 19 features" # Spawn with specific model npx claude-flow agent spawn -t architect -m claude-3-opus-20240229 # Spawn with custom timeout npx claude-flow agent spawn -t tester --timeout 600 # Spawn using OpenRouter npx claude-flow agent spawn -t coder -p openrouter -m anthropic/claude-3.5-sonnet
Using Claude Code's Task Tool
For actual execution, always use Claude Code's Task tool:
// Spawn ALL agents in ONE message for parallel execution
Task("Coder", "Implement authentication feature", "coder")
Task("Tester", "Write unit tests for auth", "tester")
Task("Reviewer", "Review auth implementation", "reviewer")MCP Coordination (Optional)
Use MCP tools only for swarm coordination setup:
mcp__claude-flow__swarm_init({ topology: "hierarchical", maxAgents: 15 })
mcp__claude-flow__agent_spawn({ type: "coordinator", name: "queen" })Output
Spawning coder agent: feature-bot +-----------+----------------------------------+ | Property | Value | +-----------+----------------------------------+ | ID | coder-lx7m9k2 | | Type | coder | | Name | feature-bot | | Status | active | | Created | 2026-01-08T03:30:00.000Z | | Capabilities | code, debug, refactor, test | +-----------+----------------------------------+ Agent feature-bot spawned successfully
AI-powered quality engineering agents that generate tests, find coverage gaps, detect flaky tests, and learn your codebase patterns — across 11 coding agent platforms.
Repo: proffesor-for-testing/agentic-qe
Other commands on agentic-qe.
- /agent-capabilities
Capability matrix for all agent types
Open command - /agent-coordination
Coordination patterns for multi-agent collaboration.
Open command - /agent-spawning
Guide to spawning agents with Claude Code's Task tool.
Open command - /agent-types
Complete guide to all 87 available agent types in Claude Flow V3
Open command - /health
Show agent health and metrics
Open command - /list
List all active agents
Open command

