parallel-dispatch
Launch multiple agents concurrently, collect their results, and handle timeouts for fan-out orchestration patterns
What this skill does
# parallel-dispatch
Generic parallel agent orchestration utility for launching multiple agents concurrently.
## Triggers
Alternate expressions and non-obvious activations (primary phrases are matched automatically from the skill description):
- "fan out" → parallel agent dispatch shorthand
- "run all [N] in parallel" → explicit parallel execution
## Purpose
This skill provides the foundational infrastructure for launching multiple agents in parallel, collecting their results, and handling timeouts. It is used by higher-level skills like `artifact-orchestration`, `review-synthesis`, and `gate-evaluation`.
## Behavior
When triggered, this skill:
1. **Parses agent configuration**:
- Agent names (from built-in or custom)
- Prompt templates for each agent
- Shared context/artifact reference
- Timeout settings
2. **Prepares agent-specific prompts**:
- Loads prompt template per agent
- Injects shared context (artifact path, requirements)
- Adds output format requirements
3. **Launches agents in parallel**:
- Uses single message with multiple Task tool calls
- Each agent runs independently
- No inter-agent communication during execution
4. **Collects results**:
- Waits for all agents or timeout
- Captures success/failure per agent
- Structures results for downstream processing
5. **Returns consolidated results**:
- Per-agent output
- Execution metadata (duration, status)
- Aggregated insights (if configured)
## Configuration Format
```yaml
dispatch:
name: "artifact-review"
timeout: 300 # seconds
agents:
- name: security-architect
prompt: |
Review the artifact at {artifact_path} for security concerns.
Focus on: authentication, authorization, data protection, input validation.
Output format: structured findings with severity ratings.
- name: test-architect
prompt: |
Review the artifact at {artifact_path} for testability.
Focus on: test coverage gaps, edge cases, integration points.
Output format: test recommendations with priority.
- name: requirements-analyst
prompt: |
Review the artifact at {artifact_path} for requirements traceability.
Focus on: requirement coverage, gaps, conflicts.
Output format: traceability assessment.
context:
artifact_path: ".aiwg/architecture/sad.md"
requirements_path: ".aiwg/requirements/"
result_format: structured # or 'raw'
aggregate: true # combine findings
```
## Usage Examples
### Basic Parallel Review
```
User: "Launch parallel review of the SAD by security-architect, test-architect, and requirements-analyst"
Skill executes:
1. Loads SAD from .aiwg/architecture/
2. Prepares review prompts for each agent
3. Dispatches all three agents in single message
4. Collects reviews (timeout: 5 min)
5. Returns structured results
```
### Custom Agent Configuration
```
User: "Dispatch agents with config from .aiwg/config/review-config.yaml"
Skill executes:
1. Loads configuration file
2. Validates agent names exist
3. Prepares prompts from templates
4. Dispatches with configured timeout
5. Returns results in configured format
```
## Result Format
### Structured Results
```json
{
"dispatch_id": "review-20251208-143022",
"status": "completed",
"duration_seconds": 127,
"agents": {
"security-architect": {
"status": "success",
"duration": 45,
"output": {
"findings": [...],
"severity_summary": {...},
"recommendations": [...]
}
},
"test-architect": {
"status": "success",
"duration": 52,
"output": {
"coverage_gaps": [...],
"test_recommendations": [...],
"priority_order": [...]
}
},
"requirements-analyst": {
"status": "success",
"duration": 38,
"output": {
"traced_requirements": [...],
"gaps": [...],
"conflicts": [...]
}
}
},
"aggregate": {
"total_findings": 12,
"critical_issues": 2,
"recommendations": 8
}
}
```
### Raw Results
```json
{
"dispatch_id": "review-20251208-143022",
"agents": {
"security-architect": "Full text output from agent...",
"test-architect": "Full text output from agent...",
"requirements-analyst": "Full text output from agent..."
}
}
```
## Error Handling
### Timeout Handling
```yaml
timeout_behavior:
action: "partial" # or "fail"
# partial: return results from completed agents
# fail: return error if any agent times out
```
### Agent Failure
```yaml
failure_behavior:
action: "continue" # or "abort"
# continue: proceed with other agents
# abort: stop all if one fails
retry: 1 # retry failed agents once
```
## Built-in Agent Groups
For convenience, common agent combinations are pre-defined:
### Architecture Review Group
```yaml
group: architecture-review
agents:
- security-architect
- test-architect
- requirements-analyst
- technical-writer
```
### Security Review Group
```yaml
group: security-review
agents:
- security-architect
- security-auditor
- privacy-officer
```
### Documentation Review Group
```yaml
group: documentation-review
agents:
- technical-writer
- requirements-analyst
- domain-expert
```
### Marketing Review Group
```yaml
group: marketing-review
agents:
- brand-guardian
- legal-reviewer
- quality-controller
- accessibility-checker
```
## Integration
This skill is the foundation for:
- `artifact-orchestration` (SDLC)
- `gate-evaluation` (SDLC)
- `review-synthesis` (MMK)
- `brand-compliance` (MMK)
## CLI Usage
```bash
# Using Python script
python parallel_dispatcher.py --config review-config.yaml
# With inline agents
python parallel_dispatcher.py \
--agents "security-architect,test-architect" \
--artifact ".aiwg/architecture/sad.md" \
--timeout 300
# List available groups
python parallel_dispatcher.py --list-groups
# Validate configuration
python parallel_dispatcher.py --config review-config.yaml --validate
```
## Performance Considerations
- **Optimal parallelism**: 3-5 agents per dispatch
- **Timeout guidance**: 2-5 minutes for document review
- **Memory**: Each agent has isolated context
- **Cost**: Parallel execution uses more tokens but reduces wall-clock time
## References
- Agent definitions: Framework `agents/` directories
- Configuration schema: `schemas/dispatch-config.schema.json`
- Result schema: `schemas/dispatch-result.schema.json`
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.