一键导入
mermaid
Use when the user asks to create or render a Mermaid or Merman chart, mentions merman-cli, or wants an ASCII terminal diagram. Render it with `merman-cli`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user asks to create or render a Mermaid or Merman chart, mentions merman-cli, or wants an ASCII terminal diagram. Render it with `merman-cli`.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Thorough, critical code review focused on correctness, business logic, implementation, tests, and documentation. Use when reviewing code changes, pull requests, or implementations. Only invoke when user explicitly asks for code review.
Defensive security review and hardening of application code, configuration, dependencies, and tests using current OWASP guidance. Use only when the user explicitly asks for a security review, security audit, vulnerability review, or security hardening. Do not use for general code review.
Expert guidance for using the GitLab CLI (glab) to manage GitLab issues, merge requests, CI/CD pipelines, repositories, and other GitLab operations from the command line. Use this skill when the user needs to interact with GitLab resources or perform GitLab workflows. Assumes the user is already authenticated.
Use when editing, modifying, or transforming existing image files with AI using the local Gemini image-edit CLI. Trigger this for style changes, object removal, background edits, text/layout fixes, color tweaks, or when the user says to use image-edit from the terminal. This skill runs the global `image-edit` executable from any repo.
Use when generating image files from text prompts with the local Gemini image CLI. Trigger this when the user asks to create, generate, or render an AI image, artwork, ad image, book cover, mockup, visual asset, or says to use image-gen from the terminal. This skill runs the global `image-gen` executable from any repo.
Use when the user asks for a "1-3-1", wants decision options, or needs a concise recommendation to forward. Produces one problem, three options, one recommendation, success criteria, and an action plan.
| name | mermaid |
| description | Use when the user asks to create or render a Mermaid or Merman chart, mentions merman-cli, or wants an ASCII terminal diagram. Render it with `merman-cli`. |
| compatibility | Requires `merman-cli`, installed with Homebrew formula `merman-cli`. |
Render Mermaid diagrams as terminal-safe text with merman-cli.
Rendering a chart as response output is allowed in plan mode because it does not modify project files.
merman-cli; do not draw or approximate the rendered chart manually.text block. Include the Mermaid source only when requested or useful for fixing it later.Prefer rendering inline source through stdin:
merman-cli render --format ascii - <<'EOF'
flowchart LR
A[Request] --> B{Valid?}
B -->|Yes| C[Process]
B -->|No| D[Reject]
EOF
Render an existing Mermaid file:
merman-cli render --format ascii path/to/diagram.mmd
Save the result when the user asks for a file:
merman-cli render --format ascii --output path/to/diagram.txt path/to/diagram.mmd
For Unicode box-drawing characters, replace ascii with unicode.