β‘ Workflows
Chain of Thought (sequential enrichment)
Process a task through a flexible sequence of agents where each agent enriches the output of the previous one, building up a progressively more complete result.
Bundle files
πORCHESTRATION.mdβ Orchestration
1# ORCHESTRATION.md
2
3## Diagram
4
5 ββββββββββββββββββββββββββββββββββββββββββββ
6 β Initial Input β
7 ββββββββββββββββββββββ¬ββββββββββββββββββββββ
8 βΌ
9 ββββββββββββββββββββββββββββββββββββββββββββ
10 β Agent A (enrich + transform) β
11 β output: input + A's contribution β
12 ββββββββββββββββββββββ¬ββββββββββββββββββββββ
13 βΌ
14 ββββββββββββββββββββββββββββββββββββββββββββ
15 β Agent B (enrich + transform) β
16 β output: A's output + B's contribution β
17 ββββββββββββββββββββββ¬ββββββββββββββββββββββ
18 βΌ
19 ββββββββββββββββββββββββββββββββββββββββββββ
20 β Agent C (enrich + transform) β
21 β output: B's output + C's contribution β
22 ββββββββββββββββββββββ¬ββββββββββββββββββββββ
23 βΌ
24 βββββββββββ
25 βMore β
26 βagents? β
27 ββββββ¬βββββ
28 no β yes
29 ββββββββββββββ΄βββββββββββββ
30 βΌ βΌ
31 ββββββββββββββββ ββββββββββββββββ
32 β Final β β Agent N β
33 β Output β β (continue) β
34 ββββββββββββββββ ββββββββββββββββ
35
36
37## Workflow
38Chain of Thought (sequential enrichment)
39
40## Objective
41Process a task through a flexible sequence of agents where each agent enriches the output of the previous one, building up a progressively more complete result.
42
43## Roles
44- **Chain agents (A, B, C, β¦ N):** each receives the accumulated output and adds their expertise.
45- **Chain Controller:** defines the agent sequence, passes output between agents, and validates the final result.
46
47## When to use
48- Tasks that require multiple domains of expertise applied sequentially.
49- When the output of one step naturally feeds the next (research β analysis β recommendation β action plan).
50- Lighter than stage-pipeline: no quality gates, no formal phases β just sequential enrichment.
51
52## Protocol
531. Chain Controller defines the agent sequence based on the task.
542. Initial input is passed to Agent A.
553. Agent A processes and returns enriched output.
564. Output is passed to Agent B, who adds their contribution.
575. Continue through all agents in sequence.
586. Chain Controller collects final output from last agent.
597. Optional: Controller validates completeness.
60
61## Handoff format
62Each agent receives a structured handoff:
63- **Original input:** the initial request (always preserved).
64- **Chain so far:** accumulated contributions from previous agents.
65- **Your role:** what this agent should add.
66
67## Rules
68- Each agent must preserve all previous contributions β never discard prior work.
69- Each agent must clearly mark what they added (attribution).
70- Agents must not go out of scope β only contribute their designated expertise.
71- Chain can be reordered without code changes (sequence is configuration, not logic).
72
73## Differences from stage-pipeline
74- No quality gates between steps.
75- No formal phase definitions (Discovery, Design, etc.).
76- Agents enrich rather than transform β accumulation, not replacement.
77- More flexible: agents can be added/removed/reordered easily.
78
79## Deliverables
80- Final enriched output
81- Contribution log (which agent added what)
82- Chain execution summary (sequence, timings)
83
Lines: 83 | Words: 412
Install
Copy bundle to your OpenClaw workspace.
curl -fsSL https://raw.githubusercontent.com/cerealskill/openclaw-agents/main/install.sh | bash -s workflow chain-of-thought ENRate this agent
Loading...
Sign in to rate this agent
Includes
- β ORCHESTRATION.md
Info
- Slug
- chain-of-thought
- Lines
- 83
- Words
- 412
