From quorum
Generates Mermaid gitGraph diagrams from textual commands for visualizing Git histories. Supports commits, branches, merges, cherry-picks, tags, orientations, and styling options.
npx claudepluginhub berrzebb/quorum --plugin quorum```mermaid gitGraph commit id: "init" commit id: "feat: base" branch develop checkout develop commit id: "feat: api" commit id: "feat: db" checkout main merge develop id: "merge develop" commit id: "v1.0" tag: "v1.0" ``` | Command | Description | |---------|-------------| | `commit` | Register commit on current branch | | `branch <name>` | Create and switch to new branch | | `checkout <name>` |...
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.
gitGraph
commit id: "init"
commit id: "feat: base"
branch develop
checkout develop
commit id: "feat: api"
commit id: "feat: db"
checkout main
merge develop id: "merge develop"
commit id: "v1.0" tag: "v1.0"
| Command | Description |
|---|---|
commit | Register commit on current branch |
branch <name> | Create and switch to new branch |
checkout <name> | Switch to existing branch (alias: switch) |
merge <name> | Merge branch into current |
cherry-pick id: "<id>" | Apply commit from another branch |
commit id: "abc123" %% Custom ID
commit type: HIGHLIGHT %% Visual type
commit tag: "v1.0" %% Release tag
commit id: "rel" type: HIGHLIGHT tag: "v2.0" %% All combined
| Type | Visual |
|---|---|
NORMAL | Solid circle (default) |
HIGHLIGHT | Filled rectangle |
REVERSE | Crossed circle |
---
config:
gitGraph:
mainBranchName: "main"
---
LR: %% Left-to-Right (default)
TB: %% Top-to-Bottom
BT: %% Bottom-to-Top
Prefix diagram: gitGraph LR:
---
config:
gitGraph:
mainBranchOrder: 2
---
branch develop order: 1
branch feature order: 3
Lower order = closer to main axis.
| Config | Default | Description |
|---|---|---|
showBranches | true | Show branch labels |
showCommitLabel | true | Show commit IDs |
rotateCommitLabel | true | 45-degree rotation |
parallelCommits | false | Align commits at same level |