Spawn and coordinate parallel agents for faster completion. Use when running parallel tasks, spawning subagents, coordinating concurrent work, or optimizing throughput.
58
68%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Fix and improve this skill with Tessl
tessl review fix ./.claude/skills/parallel-agent-spawner/SKILL.mdThe canonical home for this skill is parallel-agent-spawner in fernandezbaptiste/Skrillz
Spawns and coordinates parallel agents for faster feature completion.
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"
)await spawner.wait_all()
summary = spawner.get_results_summary()┌─────────────────────────────────────────────────────────────┐
│ 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 │ │
│ └─────────────────────────────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────┘| Type | Purpose | Parallelizable |
|---|---|---|
| coding | Implement features | Yes, if independent |
| testing | Run E2E tests | Yes |
| review | Code review | Yes |
| research | Explore codebase | Yes |
@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"references/PARALLELIZATION-STRATEGY.md - Strategy guidereferences/CONFLICT-RESOLUTION.md - Merge conflictsscripts/parallel_spawner.py - Core spawnerscripts/agent_pool.py - Agent pool managementscripts/result_aggregator.py - Aggregate resultsscripts/dependency_analyzer.py - Find parallelizable work93ed392
Canonical home
since Sep 12, 2026
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.