Skylv Mermaid Diagram

v1.0.0

Generates Mermaid diagrams from descriptions. Creates flowcharts, sequence diagrams, and architecture diagrams. Triggers: mermaid diagram, architecture diagr...

0· 114·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sky-lv/skylv-mermaid-diagram.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Skylv Mermaid Diagram" (sky-lv/skylv-mermaid-diagram) from ClawHub.
Skill page: https://clawhub.ai/sky-lv/skylv-mermaid-diagram
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install skylv-mermaid-diagram

ClawHub CLI

Package manager switcher

npx clawhub@latest install skylv-mermaid-diagram
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (generate Mermaid diagrams) match the content of SKILL.md, which provides templates and tips for flowcharts, sequence diagrams, and architecture diagrams. No unrelated capabilities or resources are requested.
Instruction Scope
SKILL.md contains only diagram templates, usage hints, and triggers. It does not instruct the agent to read local files, access environment variables, call external endpoints, or transmit data outside the expected task.
Install Mechanism
No install spec and no code files are present (instruction-only). Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requests no environment variables, credentials, or config paths — appropriate for a text-based diagram generator.
Persistence & Privilege
always is false and the skill does not request persistent system presence or modify system/other-skill settings. Autonomous invocation is allowed by default but is normal for skills and not combined with other risky factors here.
Assessment
This skill is low-risk and coherent: it produces Mermaid syntax (text) for diagrams but does not render images itself. If you plan to share sensitive architecture details, avoid pasting secrets or private credentials into prompts because the skill will include whatever you provide in generated diagram text. No special credentials or installs are required. If you need auto-rendering or exporting to specific services, look for a skill that explicitly integrates with that service and requests only the minimal credentials required.

Like a lobster shell, security has layers — review code before you run it.

latestvk9793ftpqvvkcvd5n77ff1v1w1858s81
114downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Mermaid Diagram Generator

Overview

Generates Mermaid diagrams for documentation.

When to Use

  • User asks to "draw a diagram" or "create architecture diagram"

Flowchart Template

graph TD A[Start] --> B{Decision} B -->|Yes| C[Action 1] B -->|No| D[Action 2] C --> E[End] D --> E

Sequence Diagram Template

sequenceDiagram Client->>API: POST /orders API->>DB: INSERT order DB-->>API: order_id API-->>Client: Confirmation

Architecture Diagram Template

graph TB subgraph Frontend A[React App] end subgraph Backend B[API Gateway] C[Auth Service] end A --> B B --> C

Tips

  • Use LR (left-right) or TD (top-down)
  • Use subgraphs to group components
  • Add notes for complex decisions

Comments

Loading comments...