# Cook Parallel

> (ePost) Parallel implementation for multi-module features

- Skill: `majiayu000/cook-parallel-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/cook-parallel-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/cook-parallel-2/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/cook-parallel-2

---


# Cook Parallel

Parallel implementation — split multi-module features across independent subsystems.

<feature>$ARGUMENTS</feature>

**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task.

## Process

1. **Analyze** — identify independent modules/subsystems in the feature
2. **Split** — create task groups that can be implemented in parallel
3. **Implement** — execute each group with separate agents simultaneously
4. **Integrate** — connect the independently built modules
5. **Test** — run integration tests across modules

## Quality Gates

1. **Type Check**: No compilation errors across all modules
2. **Test Execution**: All unit + integration tests pass
3. **Coverage Gate**: 80%+ coverage (`node .github/scripts/check-coverage.cjs`)
4. **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

