β‘ Workflows
Parallel Swarm
Accelerate execution by dividing work into independent pieces that run in parallel.
Bundle files
πORCHESTRATION.mdβ Orchestration
1# ORCHESTRATION.md
2
3## Diagram
4
5 βββββββββββββββββββββββββββββββββββββ
6 β Swarm Coordinator β
7 β (partition + assign) β
8 ββββββββ¬βββββββββββ¬βββββββββββ¬βββββββ
9 β β β
10 βΌ βΌ βΌ
11 ββββββββββ ββββββββββ ββββββββββ
12 βAgent 1 β βAgent 2 β βAgent N β
13 β(chunk) β β(chunk) β β(chunk) β
14 βββββ¬βββββ βββββ¬βββββ βββββ¬βββββ
15 β β β
16 βΌ βΌ βΌ
17 βββββββββββββββββββββββββββββββββββββ
18 β Final Validator β
19 β (merge + reconcile + validate) β
20 βββββββββββββββββββββββββββββββββββββ
21
22
23## Workflow
24Parallel Swarm
25
26## Objective
27Accelerate execution by dividing work into independent pieces that run in parallel.
28
29## Roles
30- **Swarm coordinator:** partitions and consolidates.
31- **N executor agents:** each on an isolated subproblem.
32- **Final validator:** detects cross inconsistencies.
33
34## When to use
35- Highly parallelizable tasks.
36- Short time window.
37
38## Rules
391. Design partition without overlap.
402. Define output contract per agent.
413. Synchronize at fixed checkpoints.
424. Final merge with compatibility validation.
43
44## Common risks
45- Duplicate work
46- Incompatibility between outputs
47- Criteria drift
48
49## Mitigation
50- Unique output template
51- Shared conventions
52- Mandatory technical reconciliation at closure
53
Lines: 53 | Words: 166
Install
Copy bundle to your OpenClaw workspace.
curl -fsSL https://raw.githubusercontent.com/cerealskill/openclaw-agents/main/install.sh | bash -s workflow parallel-swarm ENRate this agent
Loading...
Sign in to rate this agent
Includes
- β ORCHESTRATION.md
Info
- Slug
- parallel-swarm
- Lines
- 53
- Words
- 166
