sdcorejs-parallel-dispatch

Evaluate coding workflows for safe parallel subagent dispatch and output SEQUENTIAL or PARALLEL-CANDIDATE.

2|Updated Apr 18, 2026
One-click install
npx skills add https://github.com/sdcorejs/sdcorejs-agent --skill sdcorejs-parallel-dispatch
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: sdcorejs-parallel-dispatch
Source: https://github.com/sdcorejs/sdcorejs-agent/tree/main/plugin/skills/sdcorejs-parallel-dispatch
Command: npx skills add https://github.com/sdcorejs/sdcorejs-agent --skill sdcorejs-parallel-dispatch

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prevents wasted tokens and reviewer fatigue by deciding whether a multi-step AI coding task should run in parallel or stay sequential, based on independence, blast radius, reviewability, and budget.

Core Features & Use Cases

  • Decision gate for parallelization: Outputs SEQUENTIAL or PARALLEL-CANDIDATE before subagent execution begins.
  • Independence + blast-radius validation: Avoids race conditions and conflicting edits by checking shared state and failure isolation.
  • Briefing template for parallel subagents: Ensures each dispatched unit receives a self-contained prompt and a strict deliverable contract.
  • Coordination and budgeting guardrails: Caps concurrency (≤5) and recommends batching when subagent counts get large.
  • Bilingual guidance (VI/EN): Supports both Vietnamese and English users with consistent operational instructions.
  • Cross-track applicability: Applies to angular-portal, nestjs, nextjs, and integrates with sdcorejs-subagent-driven-dev when parallel is chosen.

Quick Start

Invoke sdcorejs-parallel-dispatch when preparing to dispatch 3+ independent units of work (e.g., generating multiple entity screen groups or auditing multiple stacks) so it can choose PARALLEL-CANDIDATE and brief sdcorejs-subagent-driven-dev.

Frequently Asked Questions about sdcorejs-parallel-dispatch

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I decide if coding tasks should run parallel or sequential across subagents?

Determine parallel versus sequential execution by evaluating target count, independence, blast radius, review tractability, and budget to prevent race conditions and conflicting edits in orchestrated SDLC workflows.

When should I use parallel dispatch for multi-file scans and batch screen generation?

Invoke parallel dispatch when preparing 3+ independent units of work like multi-file scans or batch screen generation, ensuring each unit has a self-contained prompt and strict deliverable contract to avoid wasted tokens.

Does parallel dispatch work with angular-portal, nestjs, and nextjs stacks?

Yes, parallel dispatch applies cross-track to angular-portal, nestjs, and nextjs stacks, evaluating shared state and failure isolation to safely split work across parallel subagents without creating conflicts.

What is the maximum concurrency limit for parallel subagents in code generation workflows?

The maximum concurrency limit for parallel subagents is capped at 5, with recommended batching applied when subagent counts get large to maintain coordination and budgeting guardrails.

Why does parallel dispatch delegate briefing mechanics to subagent-driven-dev?

Parallel dispatch delegates briefing and dispatch mechanics to sdcorejs-subagent-driven-dev after producing a PARALLEL-CANDIDATE verdict, ensuring downstream execution handles the actual subagent coordination and prompt delivery.

Can I use parallel dispatch for multi-stack audits without causing merge conflicts?

Yes, you can use parallel dispatch for multi-stack audits by validating independence and blast radius beforehand, which isolates failures and prevents conflicting edits across parallel execution tracks.