Source profileQuality 94/100

laurigates/claude-plugins/workflow-orchestration-plugin/skills/workflow-wave-dispatch/SKILL.md

workflow-wave-dispatch

Sequential-wave dispatch for multi-agent work with cross-task dependencies. Use when planning multi-step work, fixing parallel-dispatch order, or gating waves on verification.

Source repository stars
54
Declared platforms
0
Static risk flags
0
Last source update
2026-08-28
Source checked
2026-08-28

Decision brief

What it does: where it fits

Sequential waves, not parallel fan-out, when the work has real dependencies. This skill is the workflow-side scheduling view: which waves exist, what order they run in, and what to do when a gate fails.

Best for

  • parallel-agent-dispatch is the right call inside a wave. Waves are the layer above it — they answer "which agents run together, in what order" before parallel-agent-dispatch answers "how each agent is briefed."

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/laurigates/claude-plugins --skill "workflow-orchestration-plugin/skills/workflow-wave-dispatch"
Safe inspection promptEditorial

Inspect the Agent Skill "workflow-wave-dispatch" from https://github.com/laurigates/claude-plugins/blob/c056e44b978db58648ad20440dc1515cb09af09d/workflow-orchestration-plugin/skills/workflow-wave-dispatch/SKILL.md at commit c056e44b978db58648ad20440dc1515cb09af09d. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    When to Use This Skill

    parallel-agent-dispatch is the right call inside a wave. Waves are the layer above it — they answer "which agents run together, in what order" before parallel-agent-dispatch answers "how each agent is briefed."

    parallel-agent-dispatch is the right call inside a wave. Waves are the layer above it — they answer "which agents run together, in what order" before parallel-agent-dispatch answers "how each agent is briefed."
  2. 02

    Wave Structure

    Each wave is itself a parallel-agent-dispatch call. This skill covers wave scheduling: which waves exist, what gates between them, what to do when a gate fails. The gate set itself is the six-gate table in agent-patterns-plugin:wave-based-dispatch § Six-Gate Verification Table.

    Each wave is itself a parallel-agent-dispatch call. This skill covers wave scheduling: which waves exist, what gates between them, what to do when a gate fails. The gate set itself is the six-gate table in agent-pattern…
  3. 03

    Scheduling Heuristics

    Put the lock-holder (Ghidra, migration, bulk taskwarrior) alone in

    Put the lock-holder (Ghidra, migration, bulk taskwarrior) alone inPut the research wave before any implementation wave that dependsPut foundation (new types, new APIs, new files that others will
  4. 04

    Schema-Constrained Agents Under Rate-Limit Storms

    Schema-constrained agent() calls — agents bound to a StructuredOutput schema — are fragile under rate-limit storms (issue 1463). A rate-limit hit that occurs before the agent emits its StructuredOutput is reported as a hard parse failure: the caller receives no partial output an…

    Schema-constrained agent() calls — agents bound to a StructuredOutput schema — are fragile under rate-limit storms (issue 1463). A rate-limit hit that occurs before the agent emits its StructuredOutput is reported as a…Why this matters at the wave layer. A wide wave of schema-bound agents (e.g. 8–10 concurrent structured-output extractors) creates a rate-limit storm risk. If the storm wipes half the wave, the gate fails and the orches…Blast-radius containment — apply at wave-scheduling time:
  5. 05

    Gate Failure: Roll Back, Don't Paper Over

    Every wave ends with a gate (the six-gate set lives in agent-patterns-plugin:wave-based-dispatch). No brief for wave N+1 is written before wave N's gate passes.

    Every wave ends with a gate (the six-gate set lives in agent-patterns-plugin:wave-based-dispatch). No brief for wave N+1 is written before wave N's gate passes.A gate failure rolls back to "fix in place, retry the gate" — never to "dispatch wave N+1 and paper over the failure." If the wave as a whole is un-recoverable, revert it and re-brief.Whether a returned issue is fixed inline or filed as a follow-up WO for the next wave is the 10-line inline-fix threshold — see agent-patterns-plugin:wave-based-dispatch § The 10-Line Inline-Fix Threshold.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score94/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars54SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
laurigates/claude-plugins
Skill path
workflow-orchestration-plugin/skills/workflow-wave-dispatch/SKILL.md
Commit
c056e44b978db58648ad20440dc1515cb09af09d
License
MIT
Collected
2026-08-28
Default branch
main
View the original SKILL.md

Workflow Wave Dispatch

Sequential waves, not parallel fan-out, when the work has real dependencies. This skill is the workflow-side scheduling view: which waves exist, what order they run in, and what to do when a gate fails.

The dispatch discipline — the per-wave gate set, the research-before-WO gate, the ~10-line inline-fix threshold, the stable shared-file exclusion list, and Return Contract reuse — lives in agent-patterns-plugin:wave-based-dispatch. This skill does not restate it; it schedules around it.

When to Use This Skill

Use this skill when…Use the alternative when…
Enumerating the waves and their ordering for a dependent landingYou need the per-wave gate set / dispatch discipline — use agent-patterns-plugin:wave-based-dispatch
Deciding what to do when a wave's gate failsBriefing the agents inside a wave — use agent-patterns-plugin:parallel-agent-dispatch
Scheduling a research probe ahead of the implementation waves it unblocksA tool holds an exclusive lock and the wave must pre-dump it — use agent-patterns-plugin:exclusive-lock-dispatch

parallel-agent-dispatch is the right call inside a wave. Waves are the layer above it — they answer "which agents run together, in what order" before parallel-agent-dispatch answers "how each agent is briefed."

Wave Structure

Wave 1 (research)
  └── Single agent or small fan-out → artefacts in tmp/
      └── Gate: artefacts exist, agent returned a clean contract

Wave 2 (foundation)
  └── Parallel fan-out against wave-1 artefacts
      └── Gate: build green, tests green, tracker advanced

Wave 3 (extension)
  └── Parallel fan-out referencing wave-2 types/APIs
      └── Gate: smoke recipes pass, clean tree

Wave N …

Each wave is itself a parallel-agent-dispatch call. This skill covers wave scheduling: which waves exist, what gates between them, what to do when a gate fails. The gate set itself is the six-gate table in agent-patterns-plugin:wave-based-dispatch § Six-Gate Verification Table.

Scheduling Heuristics

  • Put the lock-holder (Ghidra, migration, bulk taskwarrior) alone in its wave. See agent-patterns-plugin:exclusive-lock-dispatch.
  • Put the research wave before any implementation wave that depends on its artefacts (the research-before-WO gate in agent-patterns-plugin:wave-based-dispatch explains why the downstream WO's size collapses once the probe lands).
  • Put foundation (new types, new APIs, new files that others will import) in the earliest implementation wave.
  • Put extensions (new call sites, new tests, new docs) in later waves.
  • Inside a single wave, fan out to the widest safe parallelism that parallel-agent-dispatch allows.

Schema-Constrained Agents Under Rate-Limit Storms

Schema-constrained agent() calls — agents bound to a StructuredOutput schema — are fragile under rate-limit storms (issue #1463). A rate-limit hit that occurs before the agent emits its StructuredOutput is reported as a hard parse failure: the caller receives no partial output and the agent's work is unrecoverable from the schema path, even when substantial work was done inside the agent's context window.

Why this matters at the wave layer. A wide wave of schema-bound agents (e.g. 8–10 concurrent structured-output extractors) creates a rate-limit storm risk. If the storm wipes half the wave, the gate fails and the orchestrator has no partial results to salvage — unlike a plain agent() call where the worktree holds the work.

Blast-radius containment — apply at wave-scheduling time:

HeuristicGuidance
Wave sizeCap schema-bound waves at ≤ 5 concurrent agents (same cap as parallel-agent-dispatch for Opus 4.7 parents)
StaggerAdd ~30 s between launches in the same wave to spread the token-request window
Wave splitsIf the fan-out genuinely needs >5 schema-bound calls, dispatch in sequential sub-waves of ≤ 5 — gate each sub-wave before launching the next
Retry shapeOn a rate-limit partial failure, recovery-dispatch only the failed agents (not the whole wave) — the successful siblings' outputs are valid

For concurrency caps, wave-splitting mechanics, and the recovery-dispatch routine for rate-limited agents, see agent-patterns-plugin:parallel-agent-dispatch § Concurrent rate-limit risk and its references/failure-recovery.md § Concurrent rate-limit risk — recovery-dispatch routine. (Named, not path-linked: a relative path into another plugin is dead for anyone who installed only one of the two — .claude/rules/skill-consolidation.md § 2.) Do not duplicate that guidance here.

Gate Failure: Roll Back, Don't Paper Over

Every wave ends with a gate (the six-gate set lives in agent-patterns-plugin:wave-based-dispatch). No brief for wave N+1 is written before wave N's gate passes.

A gate failure rolls back to "fix in place, retry the gate" — never to "dispatch wave N+1 and paper over the failure." If the wave as a whole is un-recoverable, revert it and re-brief.

Whether a returned issue is fixed inline or filed as a follow-up WO for the next wave is the ~10-line inline-fix threshold — see agent-patterns-plugin:wave-based-dispatch § The ~10-Line Inline-Fix Threshold.

Shared Mechanics (owned by wave-based-dispatch)

These are defined once in agent-patterns-plugin:wave-based-dispatch and referenced — never restated — when scheduling waves:

MechanicWhere
Per-wave gate set§ Six-Gate Verification Table
Research-before-WO gate§ The Research-Before-WO Gate
Inline-fix vs follow-up WO§ The ~10-Line Inline-Fix Threshold
Stable shared-file exclusion list across waves§ Stable Shared-File Exclusion List
Return Contract reuseparallel-agent-dispatch § Return Contract

Quick Reference

Orchestrator Checklist (scheduling)

  • Waves enumerated with explicit dependencies identified
  • Research wave scheduled first if any scope depends on tool output
  • Lock-holder isolated in its own wave
  • Foundation scheduled before extensions
  • A gate defined for every wave boundary (set per wave-based-dispatch)
  • No brief for wave N+1 written until wave N's gate passes
  • Gate failure → fix in place and retry, never dispatch-over

Common Scheduling Mistakes

MistakeCorrect Approach
Bundling "decompile X, then implement Y" in one waveSplit into a research wave + an implementation wave
Dispatching wave N+1 after a gate failure to "patch over it"Fix in place, retry the gate; revert and re-brief if unrecoverable
Scheduling extensions before the foundation they importFoundation in the earliest implementation wave, extensions later
Running the lock-holder concurrently with its consumersLock-holder alone in its wave; downstream reads pre-dumped artefacts
Enforcing the wave boundary by discipline aloneExpress it as a parallel() barrier

Related

  • agent-patterns-plugin:wave-based-dispatch — the dispatch discipline and the shared between-wave gate set this skill schedules around
  • agent-patterns-plugin:parallel-agent-dispatch — intra-wave dispatch contract
  • agent-patterns-plugin:exclusive-lock-dispatch — pre-dump pattern for lock-contending waves
  • agent-patterns-plugin:agent-teams — implicit-team / SendMessage mechanics that waves sit on top of
  • tools-plugin:cli-smoke-recipes — smoke-gate mechanics between waves
  • .claude/rules/parallel-safe-queries.md — empty-result exit codes inside gates

Evidence: a six-wave landing shipped six dependent work-orders in one day with zero merge conflicts and exactly one inline fix. Earlier attempts without wave discipline produced two-day cycles dominated by re-work when later WOs broke earlier interfaces.

Frequently asked questions

What to verify before installation and use

What does the workflow-wave-dispatch source document cover?

Sequential waves, not parallel fan-out, when the work has real dependencies. This skill is the workflow-side scheduling view: which waves exist, what order they run in, and what to do when a gate fails.

How do I install workflow-wave-dispatch?

The source record exposes this install command: npx skills add https://github.com/laurigates/claude-plugins --skill "workflow-orchestration-plugin/skills/workflow-wave-dispatch". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10029,236

garrytan/gbrain

bulk-ingestion

End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

Computed 10025,136

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 10015,385

wanshuiyin/Auto-claude-code-research-in-sleep

citation-audit

Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

Computed 10014,706

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance