parallel
Installation
SKILL.md
Code Forge — Parallel
Dispatch independent sub-agents to solve multiple unrelated problems concurrently.
When to Use
- 3+ test files failing with different root causes
- Multiple independent subsystems broken simultaneously
- Several unrelated bugs reported at once
- Any situation with 2+ problems that share no state
When NOT to Use
- Failures are related (fix one, others may resolve)
- Problems share state or dependencies
- Need full system state to diagnose (single-threaded investigation needed)
- Only 1 problem exists
For task execution within a feature: Use /code-forge:impl which has built-in parallel task support.