Cook Parallel
Parallel implementation — split multi-module features across independent subsystems.
$ARGUMENTS
IMPORTANT: Analyze the skills catalog and activate the skills that are needed for the task.
Process
- Analyze — identify independent modules/subsystems in the feature
- Split — create task groups that can be implemented in parallel
- Implement — execute each group with separate agents simultaneously
- Integrate — connect the independently built modules
- Test — run integration tests across modules
Quality Gates
- Type Check: No compilation errors across all modules
- Test Execution: All unit + integration tests pass
- Coverage Gate: 80%+ coverage (
node .github/scripts/check-coverage.cjs) - Security Scan: No secrets detected (
node .github/scripts/scan-secrets.cjs)
Rules
- Always write tests for new code
- Module interfaces must be clearly defined before parallel work
- Integration tests required after combining modules