Loaded Mermaid

Mermaid Diagrams

real subagent output

Mermaid viewer modes
Same scenario handed to a subagent with the local mermaid-diagrams SKILL.md attached. Viewer syntax is normalized from the raw handoff.
Rendering diagram…
Mermaid Source43 lines
1flowchart TD2  J["Canonical PlanPack JSON"] --> P["Hash-pack viewer payload"]3  P --> V["Web viewer: human-readable plan"]4  V --> H1{Human reviews sections}5  H1 --> C["Section comments and quick actions"]6  C --> X["Copy or export feedback bundle"]7  X --> O["orchestrator.planpack.v1 updates JSON plan"]8  O --> J9 10  J --> IC["information_collection"]11  IC --> IG1["idea_generation: divergent"]12 13  IG1 --> R1["research: repo patterns, docs, tests"]14  IG1 --> IGP["parallel idea exploration"]15  R1 --> IG2["idea_generation: research-informed"]16  IGP --> IG217 18  IG2 --> CON["consolidation: features, validation contract, milestones"]19  CON --> G1{Human planning gate}20  G1 -->|request changes| O21  G1 -->|approve scope and validation| TD["test_design by testing.contract-first.v1"]22 23  TD --> G2{Pre-implementation human gate}24  G2 -->|blocked decisions| O25  G2 -->|approved checks| IMP["implementation.serial.v1"]26 27  IMP --> VH["implementation handoff"]28  VH --> VAL["validation.independent.v1"]29  VAL --> CR["code-review.thermonuclear.v1"]30 31  CR --> G3{Final review gate}32  G3 -->|blockers| O33  G3 -->|mortem or process feedback| O34  G3 -->|approved| HAND["handoff: PR, preview, tests, blockers, next action"]35 36  classDef human fill:#fff3bf,stroke:#b08900,color:#111;37  classDef agent fill:#e7f5ff,stroke:#1c7ed6,color:#111;38  classDef artifact fill:#f8f9fa,stroke:#868e96,color:#111;39  classDef gate fill:#f3f0ff,stroke:#7048e8,color:#111;40 41  class H1,G1,G2,G3 human;42  class IC,IG1,R1,IGP,IG2,CON,O,TD,IMP,VAL,CR agent;43  class J,P,V,C,X,VH,HAND artifact;