graph-visualize
Purpose
Section titled “Purpose”Generate Mermaid diagrams of instruction chain graphs, skill graphs, or domain-focused views. Returns Mermaid syntax that renders in GitHub, VS Code, and most MCP clients without requiring any external rendering service.
| View | Description |
|---|---|
chain-graph | Color-coded instruction chainTo routing graph — shows all 20 tools and their chain-to relationships |
skill-graph | All 102 skills grouped by domain |
instruction-chain | Linear sequence of workflow instruction tools |
domain-focus | Skills filtered to a single domain (requires domain parameter) |
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
view | string | required | One of chain-graph, skill-graph, instruction-chain, domain-focus |
domain | string | Only for domain-focus | Domain prefix to focus on (e.g. "qm", "gov", "adapt") |
Examples
Section titled “Examples”Full chain graph
Section titled “Full chain graph”{ "view": "chain-graph"}Output: Mermaid graph TD diagram with color-coded nodes (workflow = blue, specialist = orange, gated = red, terminal = grey) and directed chain-to edges.
Domain-focused skill graph
Section titled “Domain-focused skill graph”{ "view": "domain-focus", "domain": "qm"}Output: Mermaid diagram showing all 15 quantum-mechanics skills and their relationships.
Skill graph overview
Section titled “Skill graph overview”{ "view": "skill-graph"}Output: All 102 skills clustered into 18 domain subgraphs.
Available Domains
Section titled “Available Domains”| Prefix | Domain |
|---|---|
adapt | Adaptive (bio-inspired) |
arch | Architecture |
bench | Benchmarking |
debug | Debugging |
doc | Documentation |
eval | Evaluation |
flow | Workflows |
gov | Governance |
gr | General Relativity |
lead | Leadership |
orch | Orchestration |
prompt | Prompting |
qm | Quantum Mechanics |
qual | Quality |
req | Requirements |
resil | Resilience |
strat | Strategy |
synth | Research/Synthesis |
Rendering the Output
Section titled “Rendering the Output”The returned Mermaid syntax renders in:
- GitHub — fenced code blocks with
```mermaid - VS Code — with Mermaid Preview extension
- Most MCP clients — Mermaid blocks are auto-rendered
- Starlight docs — via the
astro-mermaidintegration
Tool Annotations
Section titled “Tool Annotations”| Property | Value |
|---|---|
readOnlyHint | true |
destructiveHint | false |
idempotentHint | true |
openWorldHint | false |