Help us improve
Share bugs, ideas, or general feedback.
From quorum
Generates Mermaid stateDiagram-v2 diagrams for state machines, supporting states, transitions, composite states, forks/joins, choices, concurrency, notes, directions, and styling.
npx claudepluginhub berrzebb/quorum --plugin quorumHow this agent operates — its isolation, permissions, and tool access model
Agent reference
quorum:agents/knowledge/references/mermaid/stateThe summary Claude sees when deciding whether to delegate to this agent
``` stateDiagram-v2 ``` ``` s1 %% Simple ID state "Description" as s1 %% With keyword s1: State Description %% Colon notation ``` ```mermaid stateDiagram-v2 [*] --> Idle Idle --> Processing : submit Processing --> Done : success Processing --> Error : failure Error --> Idle : retry Done --> [*] ``` `[*]` = start/end state ```mermaid stateDiagram-v2 [*] --> Ac...
Fills Nyquist validation gaps by generating runnable behavioral tests for phase requirements, running them adversarially, debugging failures (max 3 iterations), verifying coverage, and escalating blockers.
Share bugs, ideas, or general feedback.
stateDiagram-v2
s1 %% Simple ID
state "Description" as s1 %% With keyword
s1: State Description %% Colon notation
stateDiagram-v2
[*] --> Idle
Idle --> Processing : submit
Processing --> Done : success
Processing --> Error : failure
Error --> Idle : retry
Done --> [*]
[*] = start/end state
stateDiagram-v2
[*] --> Active
state Active {
[*] --> Editing
Editing --> Reviewing : submit
Reviewing --> Editing : reject
Reviewing --> Approved : approve
}
Active --> Archived : archive
Multi-layer nesting supported.
stateDiagram-v2
state fork_state <<fork>>
state join_state <<join>>
[*] --> fork_state
fork_state --> Validate
fork_state --> Transform
Validate --> join_state
Transform --> join_state
join_state --> Complete
stateDiagram-v2
state check <<choice>>
[*] --> check
check --> Approved : score >= 80
check --> Rejected : score < 80
stateDiagram-v2
[*] --> Active
state Active {
[*] --> Task1
--
[*] --> Task2
}
-- separates concurrent regions.
note right of Processing
Runs async audit pipeline.
Max 3 correction rounds.
end note
stateDiagram-v2
direction LR %% LR, RL, TB, BT
classDef alert fill:#f00,color:#fff,font-weight:bold
class ErrorState alert
StateA:::alert --> StateB
Transitions between internal states of different composite states are not allowed.