smithery.ai

parallel-agent-dispatch

>- Dispatches independent subagents in parallel with clear contracts and merge discipline. Use this skill when multiple independent research or implementation strands can proceed without shared mutable state. Do not use when/for sequential dependent steps, or creating git worktrees themselves (use git-worktrees).

First seen Apr 28, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.2.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,893 B
  • docs SUMMARY.md 179 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Parallel Agent Dispatch

Critical rules

  • Domains must be independent. If failures might share a root cause, use one agent.
  • Each agent gets specific scope, clear goal, constraints, and expected output.
  • Never ask agents to "make tests pass" without finding the real cause.
  • After return: read summaries, check conflicts, run full suite; verify via verification-before-completion.
  • Before dispatching, read [references/patterns.md](references/patterns.md).

Workflow

  1. Confirm independence (no shared state/files; fixing one cannot affect another).
  2. Group by domain; write one self-contained brief per domain (see patterns).
  3. Dispatch agents concurrently.
  4. Review each summary; resolve conflicts.
  5. Run the full test suite; integrate only after fresh verification.

Decision: multiple failures → independent? no → single agent; yes → can parallelize? no → sequential; yes → parallel dispatch.

Resources

  • [references/patterns.md](references/patterns.md) — brief template, when to parallelize, mistakes. Read before dispatch.

Validation

Before dispatch:

  • Independence confirmed
  • Each prompt has scope, goal, constraints, errors, return format

After return:

  • Summaries read; conflicts checked
  • Full suite passes after integration

Constraints

  • Related: debugging-methodology, verification-before-completion, tdd-workflow, git-worktrees.
  • Do not parallelize exploratory debugging when you do not yet know what is broken.