Loaded Mermaid
Mermaid Diagrams
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 TD2J["Canonical PlanPack JSON"] --> P["Hash-pack viewer payload"]3P --> V["Web viewer: human-readable plan"]4V --> H1{Human reviews sections}5H1 --> C["Section comments and quick actions"]6C --> X["Copy or export feedback bundle"]7X --> O["orchestrator.planpack.v1 updates JSON plan"]8O --> J910J --> IC["information_collection"]11IC --> IG1["idea_generation: divergent"]1213IG1 --> R1["research: repo patterns, docs, tests"]14IG1 --> IGP["parallel idea exploration"]15R1 --> IG2["idea_generation: research-informed"]16IGP --> IG21718IG2 --> CON["consolidation: features, validation contract, milestones"]19CON --> G1{Human planning gate}20G1 -->|request changes| O21G1 -->|approve scope and validation| TD["test_design by testing.contract-first.v1"]2223TD --> G2{Pre-implementation human gate}24G2 -->|blocked decisions| O25G2 -->|approved checks| IMP["implementation.serial.v1"]2627IMP --> VH["implementation handoff"]28VH --> VAL["validation.independent.v1"]29VAL --> CR["code-review.thermonuclear.v1"]3031CR --> G3{Final review gate}32G3 -->|blockers| O33G3 -->|mortem or process feedback| O34G3 -->|approved| HAND["handoff: PR, preview, tests, blockers, next action"]3536classDef human fill:#fff3bf,stroke:#b08900,color:#111;37classDef agent fill:#e7f5ff,stroke:#1c7ed6,color:#111;38classDef artifact fill:#f8f9fa,stroke:#868e96,color:#111;39classDef gate fill:#f3f0ff,stroke:#7048e8,color:#111;4041class H1,G1,G2,G3 human;42class IC,IG1,R1,IGP,IG2,CON,O,TD,IMP,VAL,CR agent;43class J,P,V,C,X,VH,HAND artifact;