handdrawn-diagram

Solid

Generate a hand-drawn (sketch-style) architecture or flow diagram as a committable image (SVG + PNG). Use when the user wants a sketch-aesthetic diagram for a README, docs, or hackathon/Devpost submission that still has correct, legible text and per-group color. Authors a Mermaid look:handDrawn source and renders it with mermaid-cli — works on any viewer and on Devpost. Triggers on: 'hand-drawn diagram', 'sketch diagram', '손그림 다이어그램', '손그림 아키텍처', '스케치 도식', 'handDrawn', 'Devpost diagram', '손그림으로 그려줘', '아키텍처 손그림', 'sketch-style architecture'.

Code & Development 45 stars 2 forks Updated today Apache-2.0

Install

View on GitHub

Quality Score: 86/100

Stars 20%
55
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Hand-drawn diagram (Mermaid look:handDrawn → SVG/PNG) Renders identically everywhere (README, GitHub/GitLab, Devpost, slides), unlike inline Mermaid (depends on the viewer's Mermaid version) or AI image generators (garbled text). ## When to use - User asks for a "hand-drawn / sketch / 손그림" architecture or flow diagram. - A diagram is needed as an image file (Devpost, slides, print), not just inline. ## Method ### 1. Write the Mermaid source (`.mmd`) ``` --- config: look: handDrawn theme: default themeVariables: fontFamily: "Apple SD Gothic Neo, Malgun Gothic, Noto Sans KR, sans-serif" --- flowchart TD A(["Trigger"]):::trig --> B{{"Lane title"}}:::lane B --> C["step line 1<br/>line 2"]:::grp C --> D[("datastore")]:::grp classDef trig fill:#fff,stroke:#fb8c00,stroke-width:2px,color:#e65100; classDef lane fill:#ffe0b2,stroke:#fb8c00,stroke-width:3px,color:#bf360c; classDef grp fill:#e8f5e9,stroke:#43a047,color:#222; ``` Rules that avoid broken output: - **Quote every label** `["..."]` — `·—≥→/()` break unquoted. - **No emojis in nodes** — headless Chromium renders them as tofu; use words. - Shapes: `([..])` trigger · `{{..}}` lane/title · `[(..)]` store · `[..]` step. - Color groups via `classDef name fill:..,stroke:..,color:..;` + `:::name`. - `<br/>` for line breaks; Korean renders fine with the fontFamily above. ### 2. Render to SVG + PNG (no Chrome install needed) ```bash printf '%s\n' '{"args":["--no-sandbox","--disable-setuid-...

Details

Author
wigtn
Repository
wigtn/wigtn-plugins-with-claude-code
Created
4 months ago
Last Updated
today
Language
HTML
License
Apache-2.0

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

mermaid-diagram

Generate beautiful Mermaid diagrams — flowcharts, sequence, ER, class, state, pie, gantt, mindmap, timeline, gitgraph, C4, kanban, block, quadrant, sankey, XY charts. Renders to PNG locally and Markdown for GitHub. Use when the user asks for diagrams, visualizations, schemas, flowcharts, architecture overviews, database schemas, API flows, project timelines, git branching strategies, org charts, or any visual representation of systems, workflows, or data.

24 Updated 2 days ago
georgekhananaev
AI & Automation Solid

mermaid

Render Mermaid diagrams as SVG or ASCII art using beautiful-mermaid. Use when users need to create flowcharts, sequence diagrams, state diagrams, class diagrams, or ER diagrams. Supports both graphical SVG output and terminal-friendly ASCII/Unicode output.

27,352 Updated today
iOfficeAI
AI & Automation Listed

beautiful-mermaid

Render Mermaid diagrams as ASCII/Unicode art for terminal display or as SVG files. Use when visualizing flowcharts, state machines, sequence diagrams, class diagrams, or ER diagrams. Supports 15 themes including tokyo-night, catppuccin, nord, dracula, and github.

33 Updated 2 days ago
tdimino
AI & Automation Listed

creating-mermaid-diagrams

Generate Mermaid diagrams (.mmd) and export to PNG/SVG/PDF using mmdc CLI or Kroki API. USE THIS SKILL when user mentions diagram, flowchart, sequence diagram, class diagram, ER diagram, state machine, architecture, visualize, git graph, 画图, 架构图, 流程图, 时序图. PROACTIVELY USE when explaining ANY system with 3+ components, API flows, authentication sequences, class hierarchies, database schemas, or state machines. Supports 11+ diagram types with fully automatic layout.

0 Updated today
KazuyaMurayama
DevOps & Infrastructure Listed

mermaid-studio

Expert Mermaid diagram creation, validation, and rendering with dual-engine output (SVG/PNG/ASCII). Supports all 20+ diagram types including C4 architecture, AWS architecture-beta with service icons, flowcharts, sequence, ERD, state, class, mindmap, timeline, git graph, sankey, and more. Features code-to-diagram analysis, batch rendering, 15+ themes, and syntax validation. Use when users ask to create diagrams, visualize architecture, render mermaid files, generate ASCII diagrams, document system flows, model databases, draw AWS infrastructure, analyze code structure, or anything involving "mermaid", "diagram", "flowchart", "architecture diagram", "sequence diagram", "ERD", "C4", "ASCII diagram". Do NOT use for non-Mermaid image generation, data plotting with chart libraries, or general documentation writing.

43 Updated 3 months ago
diegosouzapw