Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From quorum
Configures Mermaid diagrams via YAML frontmatter or init directives. Sets themes, fonts, log/security levels, and diagram-specific options for flowcharts (curves, renderers), sequences (actors, wrap), and Gantt charts.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/mermaid/directivesThe summary Claude sees when deciding whether to delegate to this agent
```yaml --- title: "Diagram Title" config: theme: dark fontFamily: monospace flowchart: curve: linear --- flowchart LR A --> B ``` ``` %%{init: { "theme": "forest" } }%% %%{init: { "sequence": { "mirrorActors": false } } }%% %%{init: { "flowchart": { "curve": "linear" } } }%% ``` Both `init` and `initialize` accepted. | Option | Values | Default | |--------|--------|---------| | `theme` | defau...Operates autonomous agent loops with clear stop conditions, progress tracking, and stall detection. Intervenes safely when loops stall or fail repeatedly.
Share bugs, ideas, or general feedback.
---
title: "Diagram Title"
config:
theme: dark
fontFamily: monospace
flowchart:
curve: linear
---
flowchart LR
A --> B
%%{init: { "theme": "forest" } }%%
%%{init: { "sequence": { "mirrorActors": false } } }%%
%%{init: { "flowchart": { "curve": "linear" } } }%%
Both init and initialize accepted.
| Option | Values | Default |
|---|---|---|
theme | default, neutral, dark, forest, base | default |
fontFamily | CSS font string | "trebuchet ms" |
logLevel | 1-5 (debug→fatal) | 3 |
securityLevel | strict, loose, antiscript, sandbox | strict |
---
config:
flowchart:
curve: stepBefore # basis, linear, step, etc.
defaultRenderer: elk # dagre (default) or elk
diagramPadding: 8
useMaxWidth: true
sequence:
mirrorActors: false
wrap: true
showSequenceNumbers: true
messageAlign: center
gantt:
displayMode: compact
topAxis: true
---
Later values override earlier ones. All merged and sent to mermaid.initialize().