agentsclimarketplace

Multi agent coordinator

Skill yigityildiz0/universal-ai-skill-library/skills/common/multi-agent-coordinator

531 searchable AI Agent Skills for Claude Code, OpenAI Codex, and OpenCode — EN/TR catalog, platform and risk notes, direct ZIPs, and curated bundles.

Install
npx -y skills add yigityildiz0/universal-ai-skill-library --skill multi-agent-coordinator

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

3 things to look at

  • 19 days oldThe repository was created 19 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Decompose a complex task into safe parallel and sequential agent work, assign disjoint ownership, track dependencies, reconcile outputs, and verify the.

SKILL.md

4.6 KB, 864 tokens by cl100k_base, as published. Nobody here has run it

Multi-Agent Coordinator

Coordinate agents through the active host's available delegation features. Do not assume a vendor-specific agent name, tool schema, model selector, concurrency limit, or background capability.

Delegation Gate

Delegate only when at least one is true:

  • two or more independent subtasks can run concurrently;
  • a large read-only investigation can return a compact conclusion;
  • an isolated specialist or verifier materially reduces risk;
  • context isolation prevents the coordinator from carrying bulky raw evidence.

Keep work local when it is a single file/read, highly interactive, tightly coupled, or cheaper than the coordination overhead.

1. Build the Task Graph

For each work item record:

IDOutcomeDependenciesRead scopeWrite scopeOutput contractValidation

Mark the critical path. Parallelize only items with satisfied dependencies and no shared mutable state. Treat external services, generated artifacts, databases, package manifests, and repository configuration as shared state even when file paths differ.

2. Define Ownership

Each agent receives one bounded role and one completion contract:

Goal:
Source paths and required context:
Read scope:
Exclusive write scope, or READ ONLY:
Files/state that must not change:
Expected output:
Validation command/evidence:
Failure and escalation conditions:

Rules:

  • never assign overlapping write scopes concurrently;
  • preserve user changes and inspect current state before editing;
  • give reviewers read-only scope unless they are explicitly tasked with a fix;
  • pass raw artifacts, not the coordinator's desired conclusion, to independent verifiers;
  • do not grant broader authority than the parent task provides.

3. Launch by Dependency Layer

Use the host's native agent/delegation mechanism when available. Launch ready independent items together up to the actual concurrency limit. If the host lacks delegation, execute the same task graph sequentially and keep the contracts.

Do not invent tool calls. Discover the available interface and use only supported operations. Avoid forcing a named model; agent capability and tool access matter more than provider labels.

4. Monitor Without Duplicating Work

The coordinator owns integration, not a competing implementation of every delegated task.

  • Continue useful non-overlapping local work while agents run.
  • Record state as pending, running, complete, failed, or superseded.
  • Send corrective context when evidence shows a misunderstanding.
  • Do not repeatedly poll faster than the host supports.
  • On user steering, determine whether it replaces or extends the active graph and notify affected agents.

5. Reconcile Outputs

For every result:

  1. verify the claimed files/artifacts exist and are within scope;
  2. inspect diffs and evidence rather than trusting the summary;
  3. detect overlaps, incompatible assumptions, and stale-base edits;
  4. integrate in dependency order;
  5. rerun focused checks after each risky integration;
  6. run the full relevant validation at the end.

If two agents conflict, stop concurrent edits in that area. Reconcile against requirements and source evidence; never pick a result because its author sounds more confident.

6. Failure Handling

  • Agent unavailable: continue locally or reassign the same bounded contract.
  • Partial result: retain valid artifacts and create a smaller follow-up task for the gap.
  • Wrong scope: reject unrelated edits; do not silently integrate them.
  • Repeated misunderstanding: refine requirements and handle the task locally after one targeted retry.
  • Shared-state conflict: serialize the work and rebase each step on the integrated state.
  • Validation failure: identify which integration introduced it, repair or roll back that part, then rerun checks.

Completion Report

Report the task graph, agent roles, artifacts accepted/rejected, validation commands and results, conflicts resolved, skipped checks, residual risks, and any work that still requires user authority.

Quality Checklist

  • Delegation had a measurable speed, context, or independence benefit.
  • Every agent had a bounded contract and non-overlapping write ownership.
  • Dependencies and shared state were explicit.
  • Integrated artifacts were inspected from source.
  • Relevant tests ran after reconciliation.
  • No provider, model, tool, or concurrency capability was invented.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.