Loaded Mermaid
Pretty Mermaid
Same scenario handed to a subagent with the local pretty-mermaid SKILL.md attached. Viewer syntax is normalized from the raw handoff.
Rendering diagram…
Mermaid Source47 lines
1flowchart TD2A["Feature request: collaborative-plan-comments"] --> O["Orchestrator opens draft PlanPack JSON"]34O --> P0{{Parallel discovery lanes}}5P0 --> R["Research lane"]6P0 --> I["Idea generation lane"]7P0 --> C["Constraint and risk scan"]8R --> K["Consolidate findings"]9I --> K10C --> K1112K --> H["Generate human-readable plan view"]13H --> V["Web viewer human reviews plan sections"]14V --> M["Section comments and quick actions"]15M --> E["Copy or export comment bundle"]16E --> O2["Orchestrator imports feedback"]17O2 --> J["Update canonical JSON plan and revision events"]1819J --> T["Write validation contract and test design"]20T --> HR{{Human review: scope and contract}}21HR -->|revise| O222HR -->|approve| IM["Implementation agent builds from JSON plan"]23T --> VA0["Validation agent prepares checks from contract only"]2425IM --> IH["Implementation handoff"]26IH --> VA["Validation agent runs independent validation"]27VA --> VR{{Human review: validation result}}28VR -->|fail or rescope| O229VR -->|pass| CR["Final code review"]3031CR --> D{Review outcome}32D -->|block| O233D -->|mortem or process feedback| PF["Orchestrator updates plan process notes"]34PF --> O235D -->|approve| Done["Ready for release lane"]3637classDef human fill:#fff4cc,stroke:#b88700,color:#2b2100;38classDef json fill:#e8f3ff,stroke:#2563eb,color:#071b3a;39classDef agent fill:#ecfdf3,stroke:#16803c,color:#062b15;40classDef gate fill:#f3e8ff,stroke:#7c3aed,color:#251041;41classDef block fill:#ffe8e8,stroke:#dc2626,color:#3b0707;4243class V,HR,VR human;44class O,J,O2,H,E json;45class R,I,C,IM,VA0,VA agent;46class P0,D gate;47class CR block;