Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

mermaid-renderMermaid render 命令行

Agent Skill

mermaid-render 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

799

周安装

32

GitHub Stars

公开资料未说明

下载量

259
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mermaid-render(Mermaid render 命令行)
来源仓库:https://github.com/chouheiwa/skill-mermaid-render
仓库路径:skills/mermaid-render
安装命令:
npx skills add https://github.com/chouheiwa/skill-mermaid-render --skill mermaid-render
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/chouheiwa/skill-mermaid-render --skill mermaid-render

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理与分析。
  • 通过 npx 命令从 GitHub 仓库安装,需确认权限范围和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • mermaid-render 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Mermaid Render

Render Mermaid diagrams to SVG/PNG/PDF. Supports standard Mermaid output as well as hand-drawn (sketch) style via svg2roughjs — identical to Mermaid Live Editor's hand-drawn mode.

By default, hand-drawn style is enabled. Use --no-handdrawn for standard Mermaid output.

When to Use This Skill

  1. User asks to "render", "visualize", or "generate" a Mermaid diagram
  2. User provides.mmd files or Mermaid code blocks and needs output images
  3. User wants to "create a flowchart/sequence/state/class/ER diagram"
  4. User needs to extract and render diagrams from a Markdown document
  5. User wants to "batch process" a directory of.mmd files
  6. User mentions "hand-drawn", "sketch", or "rough" style — keep default or add --pencil-filter
  7. User wants clean/standard Mermaid output (no hand-drawn) — use --no-handdrawn

⚠️ Path Resolution (Important)

All scripts are located in the same directory as this SKILL.md. Before running any script, you must determine the actual path of this file and derive the script directory from it.

Rule: Replace every $SKILL_DIR placeholder in this document with the absolute path of the directory containing this SKILL.md file.

Example: if this file is at /path/to/mermaid-render/SKILL.md, then $SKILL_DIR = /path/to/mermaid-render.

SKILL_DIR="<absolute path to the directory containing this SKILL.md>"

Quick Start

Standard Mermaid output (no hand-drawn)

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --no-handdrawn

Hand-drawn style (default)

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg

Output as PNG (high resolution)

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.png \
  --scale 2

Output as PDF

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.pdf \
  --pdf-fit

Extract and render from Markdown

node "$SKILL_DIR/scripts/render.mjs" \
  --input document.md \
  --output ./output-dir

Batch render

node "$SKILL_DIR/scripts/batch.mjs" \
  --input-dir ./diagrams \
  --output-dir ./output

Workflow

Step 1: What does the user want?

  • Render existing Mermaid code → Save as.mmd file, use render.mjs
  • Extract diagrams from Markdown → Pass.md file directly
  • Create a new diagram → Refer to templates in $SKILL_DIR/assets/example_diagrams/
  • Batch process → Use batch.mjs

Step 2: Choose output style

  • Default (hand-drawn) — sketch/rough style via svg2roughjs, same as Mermaid Live Editor
  • --no-handdrawn — clean standard Mermaid output, no sketch effect

Step 3: Choose output format

  • svg — Vector, ideal for web and docs (default)
  • png — Bitmap, ideal for embedding and sharing (use --scale for resolution)
  • pdf — Ideal for printing (use --pdf-fit for auto-sizing)

Step 4: Choose theme

  • default — Mermaid default theme
  • neutral — Neutral tones, good for documentation
  • dark — Dark theme
  • forest — Green theme

Step 5: Render

node "$SKILL_DIR/scripts/render.mjs" -i input.mmd -o output.svg --theme neutral

Options

render.mjs

OptionDescriptionDefault
-i, --inputInput file (.mmd or.md)required
-o, --outputOutput file (.svg/.png/.pdf)required
-e, --formatOutput format: svg, png, pdfinferred from extension
-t, --themeMermaid themedefault
--bgBackground colortransparent
-w, --widthPage width800
-H, --heightPage height600
-s, --scaleScale factor (affects PNG resolution)1
-c, --configMermaid JSON config filenone
-C, --cssCustom CSS filenone
--pdf-fitFit PDF to diagram sizeoff
--icon-packsIcon packs, comma-separatednone
--fontFont family for hand-drawn modeExcalifont, Xiaolai, cursive
--pencil-filterEnable pencil filter effect (hand-drawn only)off
--randomizeEnable per-element randomization (causes variable hachure density)off
--seedRandom seednone
--roughnessRoughness level (hand-drawn only)rough.js default
--bowingBowing level (hand-drawn only)rough.js default
--hachure-gapGap between hachure lines in px (smaller = denser)2
--fill-weightWidth of hachure lines in px1.5
--no-handdrawnSkip hand-drawn conversion, output raw Mermaid SVGoff

batch.mjs

OptionDescriptionDefault
-i, --input-dirInput directoryrequired
-o, --output-dirOutput directoryrequired
-e, --formatOutput format: svg, png, pdfsvg
-t, --themeMermaid themedefault
--bgBackground colortransparent
-s, --scaleScale factor (affects PNG resolution)1
--fontFont family (hand-drawn mode)Excalifont, Xiaolai, cursive
--pencil-filterEnable pencil filter effectoff
--randomizeEnable per-element randomizationoff
--seedRandom seednone
--roughnessRoughness levelrough.js default
--bowingBowing levelrough.js default
--hachure-gapGap between hachure lines in px2
--fill-weightWidth of hachure lines in px1.5
--no-handdrawnSkip hand-drawn conversionoff
--concurrencyMax parallel renders3

Examples

Flowchart — standard style

node "$SKILL_DIR/scripts/render.mjs" \
  --input "$SKILL_DIR/assets/example_diagrams/flowchart.mmd" \
  --output flowchart.svg \
  --no-handdrawn

Flowchart — hand-drawn style

node "$SKILL_DIR/scripts/render.mjs" \
  --input "$SKILL_DIR/assets/example_diagrams/flowchart.mmd" \
  --output flowchart.svg

Sequence diagram (high-res PNG, neutral theme)

node "$SKILL_DIR/scripts/render.mjs" \
  --input "$SKILL_DIR/assets/example_diagrams/sequence.mmd" \
  --output sequence.png \
  --scale 2 --theme neutral

State diagram (auto-fit PDF)

node "$SKILL_DIR/scripts/render.mjs" \
  --input "$SKILL_DIR/assets/example_diagrams/state.mmd" \
  --output state.pdf \
  --pdf-fit --theme dark

Extract all diagrams from Markdown

# Single code block → single output file
node "$SKILL_DIR/scripts/render.mjs" -i doc.md -o diagram.svg

# Multiple code blocks → output to directory (auto-named doc-1.svg, doc-2.svg, ...)
node "$SKILL_DIR/scripts/render.mjs" -i doc.md -o ./output-dir

Custom Mermaid config

# config.json: { "theme": "neutral", "flowchart": { "curve": "basis" } }
node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --config config.json

Custom CSS

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --css custom.css

Icon packs

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --icon-packs @iconify-json/logos

Reproducible hand-drawn output (fixed seed)

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --seed 42 --no-randomize

Pencil filter effect

node "$SKILL_DIR/scripts/render.mjs" \
  --input diagram.mmd \
  --output diagram.svg \
  --pencil-filter

Creating diagrams from user requirements

Step 1: Identify diagram type

  • Process / workflow → graph TD or flowchart LR
  • API / interaction → sequenceDiagram
  • State / lifecycle → stateDiagram-v2
  • Object model → classDiagram
  • Database → erDiagram
  • Timeline → timeline
  • Gantt / project → gantt
  • Mind map → mindmap

Step 2: Create.mmd file Refer to templates in $SKILL_DIR/assets/example_diagrams/.

Step 3: Render and iterate

node "$SKILL_DIR/scripts/render.mjs" -i diagram.mmd -o preview.svg
# Edit diagram.mmd based on feedback, re-render

Features

Mermaid rendering

  • All Mermaid diagram types supported (flowchart, sequence, state, class, ER, timeline, gantt, mindmap, etc.)
  • Output SVG / PNG / PDF
  • Markdown input support (auto-extracts mermaid code blocks)
  • CJK (Chinese/Japanese/Korean) text auto-optimization
  • Custom Mermaid config and CSS
  • Icon pack support (Iconify)
  • Custom themes: default, neutral, dark, forest

Hand-drawn style (default, disable with --no-handdrawn)

  • Identical to Mermaid Live Editor hand-drawn mode (powered by svg2roughjs)
  • Custom node colors (style directives) preserved
  • Pencil filter effect
  • Roughness and bowing controls
  • Reproducible output via seed parameter

Dependencies

  • Node.js 18+
  • puppeteer, svg2roughjs, and @mermaid-js/mermaid-cli (all installed via npm install)

Troubleshooting

mmdc not found

❌ @mermaid-js/mermaid-cli not found

Fix: npm install

puppeteer install fails

Puppeteer needs to download Chromium. Ensure network access. Manual install:

cd "$SKILL_DIR" && npm install

Mermaid syntax errors

Validate syntax at https://mermaid.live/ before rendering.


File structure

scripts/

  • render.mjs — Single-file renderer (SVG/PNG/PDF, Markdown input)
  • batch.mjs — Batch renderer

assets/

  • example_diagrams/flowchart.mmd — Flowchart template
  • example_diagrams/sequence.mmd — Sequence diagram template
  • example_diagrams/state.mmd — State diagram template

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.53%
按下载量换算92

Claude

30.13%
按下载量换算78

Cursor

20.29%
按下载量换算53

Gemini CLI

9.29%
按下载量换算24

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills