Cook Parallel

(ePost) Parallel implementation for multi-module features

majiayu000 e5377b2 2 files · 2.0 KB Updated 567 repo stars

File contents

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

  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

majiayu000/claude-skill-registry-data/tree/main/development/cook-parallel-klara-copilot-epost-agent-kit commit e5377b21b8

Frequently asked questions

npx skillmds add majiayu000/cook-parallel-2