用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/richfrem/Project_Sanctuary --skill convert-mermaid命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | convert-mermaid |
| description | Convert mermaid diagrams mmd/mermaid to .png and have an option to pick/increase resolution level |
| disable-model-invocation | false |
This skill converts Mermaid Diagram text files (.mmd or .mermaid) into high-resolution PNG images.
When a user asks you to convert a mermaid file to an image, you must use the deterministic Python script provided in this skill's scripts/ directory.
Do not attempt to write your own javascript or bash script to do this.
Usage:
python3 plugins/skills/convert-mermaid/scripts/convert.py -i <input-file.mmd> -o <output-file.png> -s <scale-number>
Parameters:
-i The input file path.-o The destination file path.-s The resolution scale (default is 1). If the user asks for "high resolution", "retina", or "HQ", set -s to 3 or 4.-t The theme (default, dark, forest, neutral).Example:
If the user says: "Convert architecture.mmd to a high res PNG"
You run:
python3 plugins/skills/convert-mermaid/scripts/convert.py -i architecture.mmd -o architecture.png -s 3
Place any supplemental context or heavy documentation inside reference.md and link it here using relative paths.