npx claudepluginhub hanibalsk/claude-marketplace --plugin claude-auto-agents# /spawn - Launch Agent Spawn a specific type of agent to handle a task. ## Usage ## Available Agents | Agent | Tools | Model | Use Case | |-------|-------|-------|----------| | `developer` | Bash,Read,Write,Edit,Glob,Grep,Task | sonnet | Feature implementation | | `reviewer` | Bash,Read,Glob,Grep | sonnet | Code review (read-only) | | `fixer` | Bash,Read,Write,Edit,Glob,Grep | sonnet | Fix issues/failures | | `orchestrator` | All + Task | opus | Autonomous control | | `explorer` | Read,Glob,Grep | haiku | Codebase exploration | | `pr-shepherd` | All + Task | sonnet | PR management | ...
/spawnOrchestrates complex multi-domain tasks: decomposes into hierarchical subtasks, coordinates execution with sequential/parallel/adaptive strategies, monitors dependencies, and delivers integrated results summary.
/spawnDecomposes complex tasks into subtasks with dependency mapping, executes sequentially or in parallel, monitors progress, and validates results using TodoWrite and file tools.
/spawnStarts an AI agent in a specified existing Git worktree to execute a task. Agent runs isolated, commits changes on completion, supports background mode.
Spawn a specific type of agent to handle a task.
/spawn developer "implement user authentication"
/spawn reviewer # Review current changes
/spawn fixer "fix failing test in auth.test.ts"
/spawn explorer "find where database connections are created"
| Agent | Tools | Model | Use Case |
|---|---|---|---|
developer | Bash,Read,Write,Edit,Glob,Grep,Task | sonnet | Feature implementation |
reviewer | Bash,Read,Glob,Grep | sonnet | Code review (read-only) |
fixer | Bash,Read,Write,Edit,Glob,Grep | sonnet | Fix issues/failures |
orchestrator | All + Task | opus | Autonomous control |
explorer | Read,Glob,Grep | haiku | Codebase exploration |
pr-shepherd | All + Task | sonnet | PR management |
conflict-resolver | Bash,Read,Write,Edit | sonnet | Merge conflicts |
/spawn developer "add password reset functionality with email verification"
/spawn reviewer "review the authentication changes"
/spawn fixer "fix the race condition in user session handling"
/spawn explorer "map the database schema and relationships"
/spawn pr-shepherd "create PR for current branch and monitor CI"
developer for new featuresfixer for bugs and failuresexplorer for read-only analysis