parallel-validation
Installation
SKILL.md
Parallel Validation
Scope
Speeds up multi-journey validation by dispatching independent journeys in parallel. Only applies when journeys share NO state, NO file mutations, and NO ordering dependencies.
Independence Check (REQUIRED before parallelizing)
All four must be YES:
| Check | Question |
|---|---|
| File independence | Do journeys share files or dirs? |
| State independence | Do they modify shared state (DB rows, env, auth session)? |
| Order independence | Does any journey depend on another's output? |
| Resource independence | Do they contend for a single shared resource (booted simulator, single test user)? |
If ANY is NO → serial execution. Do NOT parallelize.