Install
$ agentstack add skill-yassimba-loom-mermaid-skill ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Mermaid Diagrams
Author .mmd text files and compile them to images with mmdc. Mermaid lays everything out automatically — no coordinates — and the text source lives in git and embeds in Markdown.
Route elsewhere when the request needs: pixel-precise placement, branded icons, or heavy styling → drawio; a hand-drawn aesthetic → excalidraw/tldraw; a freeform whiteboard → tldraw; strict conventional UML notation → plantuml.
Setup
mmdc renders through Puppeteer and needs a headless Chrome:
npm install -g @mermaid-js/mermaid-cli
npx puppeteer browsers install chrome-headless-shell # mmdc has no bundled browser
Could not find Chrome is a toolchain failure, never a diagram error. mmdc --version passes without Chrome, and a perfectly valid .mmd still fails to compile. Install the browser above or set PUPPETEER_EXECUTABLE_PATH to a system Chrome; leave the .mmd alone.
Workflow
- Author — pick the type from the shape of the content:
| The content is… | Type | | ---------------------------------------------------- | ---------------------------------------- | | steps, branches, dependencies | flowchart | | who calls whom, in what order | sequenceDiagram | | tables and relations / types and inheritance | erDiagram / classDiagram | | statuses one thing moves through | stateDiagram-v2 | | deployed services and their wiring | architecture-beta | | schedule / branch history / proportions / idea tree | gantt / gitGraph / pie / mindmap | | events over time / effort-impact grid / plotted data | timeline / quadrantChart / xychart-beta |
One diagram answers one question — past ~20 nodes, split by concern into separate .mmds instead of cramming. Syntax references, consult when unsure: [FLOWCHART](reference/FLOWCHART.md) · [SEQUENCE](reference/SEQUENCE.md) · [CLASS-ER](reference/CLASS-ER.md) · [ARCHITECTURE](reference/ARCHITECTURE.md) (architecture-beta — newer syntax, read before first use) · [OTHER-TYPES](reference/OTHER-TYPES.md) (state, gantt, gitGraph, pie, mindmap, journey, timeline, quadrant, xychart, C4). Done when every node, participant, and label names a real thing from the content being diagrammed — no placeholders.
- Compile — the compile is the syntax check; a parse error is a bug in the
.mmd, fix and re-compile until it renders:
``bash mmdc -i diagram.mmd -o diagram.png -w 2048 ``
Themes: -t default|dark|neutral|forest (base works only inside a %%{init: {'theme':'base'}}%% directive). SVG/PDF: same command with .svg/.pdf output.
- Self-check (vision) — a clean compile only proves the syntax; read the exported PNG and judge it as its audience will. Mermaid positions everything itself, so look for content defects, not overlaps:
| Check | What to look for | Fix | | ------------------ | ------------------------------------- | --------------------------------------------------------------------------- | | Label truncation | Node / edge text clipped | Shorten the label, or wrap with ` | | Cramped density | Nodes crammed together; tangled lines | Flip direction (TD↔LR), split into subgraphs, or reduce nodes | | Wrong aspect | Far too wide or too tall to read | Change flowchart TD↔LR (or set direction in class/state) | | Edge spaghetti | Many crossings, hard to follow | Reorder declarations so connected nodes sit adjacent; group with subgraph | | Wrong diagram type | Type doesn't suit the content | Re-pick from the step-1 table | | Low contrast | Text blends into the node fill | classDef ([FLOWCHART § Styling](reference/FLOWCHART.md)) or -t` theme |
Re-compile after every fix. Max 2 self-check rounds, then show the user regardless. No vision available → skip straight to the review loop.
- Review loop — show the image, apply the minimal
.mmdedit per request, re-compile. Overwrite the same.mmd/.pngeach round — nov1,v2, … After 5 rounds, suggest the user fine-tune at mermaid.live.
- Report — give the user the
.mmdand image paths.
Gotchas
| Symptom | Fix | | ---------------------------------------------------- | ----------------------------------------------------------------------- | | Parse error on a label with special chars | Quote it: A["Label: value"] | | Parse error on a subgraph name with spaces | Quote it: subgraph "My Layer" | | Maximum text size in diagram exceeded | Split the diagram; last resort -c config.json {"maxTextSize": 200000} | | Chrome crashes in CI / as root | -p puppeteer.json with {"args": ["--no-sandbox"]} | | Architecture icons missing / logos: name not found | Register the pack at compile time — [ARCHITECTURE § Icons](reference/ARCHITECTURE.md) | | Blank or tiny PNG | Add -w 2048 |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Yassimba
- Source: Yassimba/loom
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.