🎯

parallel-agent-spawner

🎯Skill

from adaptationio/skrillz

VibeIndex|
What it does

Spawns multiple autonomous agents concurrently to accelerate feature development and task completion across parallel work streams.

parallel-agent-spawner

Installation

Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add adaptationio/Skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@adaptationio-Skrillz
Claude CodeAdd plugin in Claude Code
/plugin enable skrillz@adaptationio-Skrillz
Add MarketplaceAdd marketplace to Claude Code
/plugin marketplace add /path/to/skrillz
Install PluginInstall plugin from marketplace
/plugin install skrillz@local

+ 4 more commands

πŸ“– Extracted from docs: adaptationio/skrillz
3
-
Last UpdatedJan 16, 2026

Skill Details

SKILL.md

Spawn and coordinate parallel agents for faster completion. Use when running parallel tasks, spawning subagents, coordinating concurrent work, or optimizing throughput.

Overview

# Parallel Agent Spawner

Spawns and coordinates parallel agents for faster feature completion.

Quick Start

Spawn Parallel Agents

```python

from scripts.parallel_spawner import ParallelSpawner

spawner = ParallelSpawner(project_dir)

results = await spawner.spawn_parallel(

tasks=["feature-1", "feature-2", "feature-3"],

agent_type="coding"

)

```

Coordinate Results

```python

await spawner.wait_all()

summary = spawner.get_results_summary()

```

Parallel Execution Model

```

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”

β”‚ PARALLEL EXECUTION β”‚

β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€

β”‚ β”‚

β”‚ MAIN ORCHESTRATOR β”‚

β”‚ β”œβ”€ Analyzes feature dependencies β”‚

β”‚ β”œβ”€ Identifies parallelizable work β”‚

β”‚ β”œβ”€ Spawns worker agents β”‚

β”‚ └─ Coordinates results β”‚

β”‚ β”‚

β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚

β”‚ β”‚ Agent 1 β”‚ β”‚ Agent 2 β”‚ β”‚ Agent 3 β”‚ β”‚

β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚ β”‚

β”‚ β”‚ feature-1β”‚ β”‚ feature-2β”‚ β”‚ feature-3β”‚ β”‚

β”‚ β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜ β””β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”˜ β”‚

β”‚ β”‚ β”‚ β”‚ β”‚

β”‚ β–Ό β–Ό β–Ό β”‚

β”‚ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β” β”‚

β”‚ β”‚ RESULT AGGREGATOR β”‚ β”‚

β”‚ β”‚ β”œβ”€ Collects all results β”‚ β”‚

β”‚ β”‚ β”œβ”€ Resolves conflicts β”‚ β”‚

β”‚ β”‚ β”œβ”€ Merges code changes β”‚ β”‚

β”‚ β”‚ └─ Updates feature list β”‚ β”‚

β”‚ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ β”‚

β”‚ β”‚

β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

```

Agent Types

| Type | Purpose | Parallelizable |

|------|---------|----------------|

| coding | Implement features | Yes, if independent |

| testing | Run E2E tests | Yes |

| review | Code review | Yes |

| research | Explore codebase | Yes |

Spawn Configuration

```python

@dataclass

class SpawnConfig:

max_parallel: int = 3

timeout_per_agent: int = 1800 # 30 min

retry_failed: bool = True

merge_strategy: str = "sequential" # or "git-merge"

```

Integration Points

  • autonomous-loop: Provides work to parallelize
  • coding-agent: Worker agents for features
  • checkpoint-manager: Create checkpoints before spawn
  • error-recoverer: Handle agent failures

References

  • references/PARALLELIZATION-STRATEGY.md - Strategy guide
  • references/CONFLICT-RESOLUTION.md - Merge conflicts

Scripts

  • scripts/parallel_spawner.py - Core spawner
  • scripts/agent_pool.py - Agent pool management
  • scripts/result_aggregator.py - Aggregate results
  • scripts/dependency_analyzer.py - Find parallelizable work