Loaded Mermaid

PlanPack House Style

repo-local skill + subagent output

Mermaid viewer modes
Generated by a subagent using the repo-local planpack-mermaid-diagram skill. This is the current blended house style: Mermaid Diagrams and Beautiful for structure, Pretty for palette, Specialist for stacked lanes, Visualizer for inspectability.
Rendering diagram…
Mermaid Source47 lines
1flowchart TD2  D["diagram.planpack-mermaid.v1"]:::source3  A[("Canonical PlanPack JSON")]:::source4  V["Web viewer<br/>human plan view"]:::human5  H{"Human comments<br/>approve / block / rescope / clarify / research"}:::human6  B["Structured comment bundle"]:::source7  O["orchestrator.planpack.v1<br/>revise plan, events, feedback"]:::orchestrator8 9  D --> A10  A --> V --> H --> B --> O --> A11 12  subgraph P["Parallel planning inputs"]13    C["planning.info-collector.v1<br/>constraints"]:::agent14    I["idea.divergent.v1<br/>options"]:::agent15    R["research.prior-art.v1<br/>prior art"]:::agent16  end17 18  O --> C19  O --> I20  O --> R21  C --> K["idea.research-informed.v1<br/>consolidate approach"]:::agent22  I --> K23  R --> K24 25  K --> G{"Human plan gate"}:::human26  G -- "clarify / rescope / research" --> O27  G -- approve --> T["testing.contract-first.v1<br/>validation contract + test design"]:::validation28  T --> M["implementation.serial.v1<br/>implementation"]:::agent29  M --> Q["validation.independent.v1<br/>independent validation"]:::validation30 31  Q -- fail --> F["Blocker report"]:::blocker32  F --> O33  Q -- pass --> CR{"code-review.thermonuclear.v1"}:::human34  CR -- block --> CB["Review block"]:::blocker35  CB --> O36  CR -- "mortem / process feedback" --> MF["Process feedback"]:::feedback37  MF --> O38  CR -- approve --> Z["Final handoff<br/>PR, preview, tests, blockers, next action"]:::done39 40  classDef source fill:#e8f3ff,stroke:#2563eb,color:#071b3a;41  classDef orchestrator fill:#f5f2e8,stroke:#6f5d2a,color:#211a07;42  classDef human fill:#fff4cc,stroke:#b88700,color:#2b2100;43  classDef agent fill:#ecfdf3,stroke:#16803c,color:#062b15;44  classDef validation fill:#eef2ff,stroke:#4f46e5,color:#14143d;45  classDef blocker fill:#ffe8e8,stroke:#dc2626,color:#3b0707;46  classDef done fill:#dcfce7,stroke:#15803d,color:#052e16;47  classDef feedback fill:#fff7ed,stroke:#ea580c,color:#431407;