Loaded Mermaid

Diagram Specialist

real subagent output

Mermaid viewer modes
Same scenario handed to a subagent with the local mermaid-diagram-specialist SKILL.md attached. Viewer syntax is normalized from the raw handoff.
Rendering diagram…
Mermaid Source30 lines
1flowchart TD2  A["Orchestrator creates PlanPack JSON"] --> B["Web viewer renders human-readable plan"]3  B --> H1{{Human reviews plan sections}}4  H1 --> C["Comments and quick actions anchored to sections"]5  C --> D["Copy or export comment bundle"]6  D --> E["Orchestrator ingests comments"]7  E --> F["Update JSON plan"]8 9  F --> P0["Start pipeline"]10  P0 --> R1["Research agent"]11  P0 --> R2["Idea generation agent"]12  P0 --> R3["Planning agent"]13  R1 --> K["Consolidate findings into plan"]14  R2 --> K15  R3 --> K16 17  K --> V0["Write validation contract and test design"]18  V0 --> H2{{Human reviews plan and validation contract}}19  H2 -->|changes requested| E20  H2 -->|approved| I["Implementation agent builds feature"]21 22  V0 --> VA["Validation agent prepares checks"]23  I --> T["Run validation against contract"]24  VA --> T25  T --> CR["Final code review"]26 27  CR -->|approved| SHIP["Ready for merge or release"]28  CR -->|blocks| E29  CR -->|mortem or process feedback| M["Capture feedback for orchestrator"]30  M --> E