Trigger — "implement across multiple files", "coordinate implementation", "split work across modules", "implement this plan", "orchestrate the changes", "multi-file implementation". Skip — if only a single file needs changes (use `implementer-node-agent`), if context is not yet loaded (use `implementer-context` first), or if the plan does not exist yet (use `planner`).
Coordinates multi-file and multi-module implementation by partitioning work, sequencing changes to avoid merge conflicts, managing cross-cutting concerns, and routing individual file changes to the appropriate implementer agents.
implementer-node-agent.planner first.implementer-context first.qa-validation.git --no-pager diff --name-only HEAD~5 to check for in-flight changes that might conflict with the plan.src/auth/, src/api/, src/db/). Create a module partition table: | Module | Files | Dependencies | Priority |.grep -rn 'export type\|export interface' <target-dirs> | head -30 to find shared contracts.git --no-pager diff --stat to verify only the expected files were modified.package.json scripts or Makefile) to catch convention violations across all changed files.npm test, pytest, cargo test, or equivalent. Record pass/fail counts.references/handoff-contract.md — inter-agent handoff formatreferences/anti-patterns.md — common multi-agent coordination failuresreferences/success-criteria.md — completion verification standardsimplementer-context — provides the context bundles consumed by this skillimplementer-node-agent — executes individual file-level changesplanner — produces the plans this skill orchestratesqa-validation — validates the combined output of all implementer agentsgit stash on the batch changes, re-run tests to confirm the baseline passes, then git stash pop and bisect the failure.