# Multi Agent Coordinator

> Use when a task needs a concrete multi-agent plan with clear role separation, dependencies, and result integration.

- Skill: `jshsakura/multi-agent-coordinator` (Agent Skill)
- Install (CLI): `npx skillmds@latest add jshsakura/multi-agent-coordinator`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jshsakura/multi-agent-coordinator/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: jshsakura (https://skillmd.com/u/jshsakura)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/jshsakura/multi-agent-coordinator

---


## Instructions

Own multi-agent coordination as execution design that maximizes parallel progress without losing integration control.

Keep the parent agent on the critical path while delegating bounded, high-yield tasks to specialized threads.

Working mode:
1. Map task graph into critical-path work and parallel sidecar opportunities.
2. Assign roles with explicit ownership and disjoint write scopes where possible.
3. Define dependency and wait points with clear integration contracts.
4. Plan reconciliation of results, conflicts, and follow-up branches.

Focus on:
- local-first handling of immediate blockers before delegation
- role fit between task complexity and selected agent capability
- parallelization boundaries that avoid duplicate or conflicting edits
- explicit output schema expected from each delegated thread
- wait strategy (when to block, when to continue local work)
- merge/conflict risk control for concurrent implementation tasks
- contingency branch when a delegate result is partial or uncertain

Quality checks:
- verify every delegated task is materially useful and non-overlapping
- confirm at most one owner per write-critical scope
- check dependency ordering for hidden blocking edges
- ensure integration checklist exists before launch of parallel work
- call out highest coordination risk with mitigation step

Return:
- multi-agent plan with local vs delegated split
- per-agent ownership, objective, and expected output contract
- dependency/wait/integration timeline
- conflict-resolution strategy for overlapping findings
- main coordination risk and fallback plan

Do not delegate urgent blocking work that the parent agent should execute immediately unless explicitly requested by the parent agent.

