agentsclimarketplace

Dispatching parallel agents

Skill NjoyimPeguy/augments/plugins/augments/skills/dispatching-parallel-agents

A collection of rigorous, phase-isolated SDLC skills to tether autonomous agents to real-world engineering standards.

Install
npx -y skills add NjoyimPeguy/augments --skill dispatching-parallel-agents

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

One thing to look at

  • 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

Use when more than one piece of work sits in front of you and they don't touch the same files — separate failing tests, unrelated bugs, parallel research threads. Skip when one task needs another's output (sequence them with executing-plans), or when there's just one thing to do.

SKILL.md

3.2 KB, 639 tokens by cl100k_base, as published. Nobody here has run it

Dispatching Parallel Agents

Run independent work concurrently instead of in series. The win is wall-clock; the risk is collision — so this applies only when the pieces genuinely don't touch each other.

When to use

  • Two or more pieces of work that are provably independent: disjoint files, disjoint state, and no "B needs A's result."
  • Skip when tasks share a file or dependency (sequence them — executing-plans), when one needs another's output, or when the whole thing is quick inline.

The independence test — confirm before fanning out

Check every pair; if any fails, group them into one agent or sequence them instead:

  • Files — they edit disjoint paths. Two agents on the same file race.
  • State — disjoint ports, databases, fixtures. If they run a server or migrations, isolate each (using-task-branches).
  • Order — none consumes another's output. A dependency is a sequence, not a fan-out.

The dispatch packet (per agent)

Each agent starts cold — hand it everything, never your session history:

  • Scope — the exact problem and files this agent owns, and what it must NOT touch.
  • Objective + deliverable — what "done" means, and the precise shape to report back, so results reconcile.
  • Constraints — name the tier to run at (omit it and the agent silently inherits the session's costliest one), the quality rules, and "stay in scope; report out-of-scope rather than reaching."
  • Isolation — if it builds or runs anything, its own workspace/port/DB.

Two ways to hand over context, and the choice matters: paste the small, authoritative thing the agent must start from verbatim — its task contract, the exact spec — so it works from a known snapshot; pass bulky reference — a diff, a log, a large file — as a path the agent reads, since a paste sits in the most expensive context for the whole run while a path costs nothing until opened. Paste what defines the task; point at what merely informs it.

Reconcile (the coordinator's job, not the agents')

When agents return: read each deliverable, integrate them yourself, then run the combined check — the tests across all the changes together. N green agents do not prove the whole is green. Surface any agent that reported blocked or out-of-scope rather than papering over it.

Common mistakes

  • Fanning out work that shares a file or an ordering — the race corrupts both.
  • Passing session history instead of a self-contained packet — the agent inherits your blind spots.
  • No combined check — independently-green changes can still break together.
  • Parallel agents sharing one dev server or database — isolate each (using-task-branches).

When writing the actual briefs, references/brief-examples.md has a fill-in template and weak-vs-strong pairs for the three typical cases (failing tests, unrelated bugs, parallel research).

Gives 0 of the 12 instructions most agent orchestration skills give in 639 tokens

Counted across 742 of the 995 authors here whose files we hold, read 2026-08-07

  • reference existing artifacts by path or URLin 53 of 742, across 25 files
  • run the full test suite after integrating changesin 51 of 742, across 19 files
  • dispatch one agent per independent problem domainin 50 of 742, across 17 files
  • verify fixes do not conflictin 45 of 742, across 13 files
  • include a suggested skills section in the documentin 45 of 742, across 17 files
  • redact sensitive informationin 41 of 742, across 11 files
  • save to the temporary directory of the operating systemin 39 of 742, across 10 files
  • tailor the document to user-provided focus argumentsin 39 of 742, across 9 files
  • spot check agent changes for systematic errorsin 34 of 742, across 7 files
  • write a handoff document summarising the current conversationin 31 of 742, across 6 files
  • Assign each agent a specific scopein 23 of 742, across 8 files
  • provide specific scope and clear goalin 23 of 742, across 5 files

Said here and by no other author read

  • confirm tasks are provably independent before fanning out
  • sequence tasks that share files or dependencies
  • give each agent a self-contained dispatch packet
  • exclude session history from the dispatch packet
  • specify scope objective constraints and isolation per agent
  • paste task definitions verbatim

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

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.