mermaid-renderer

Solid

Render Mermaid diagrams to images with theme customization and Markdown integration

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Mermaid Diagram Renderer Skill ## Overview Renders Mermaid diagram definitions to images supporting flowcharts, sequence diagrams, class diagrams, ER diagrams, and more with theme customization. ## Capabilities - Render Mermaid to PNG, SVG, PDF formats - Support flowcharts, sequence, class, ER, Gantt, pie, journey diagrams - Theme customization (default, dark, forest, neutral) - Integration with Markdown documentation - Background color and styling options - Puppeteer-based rendering for high quality ## Target Processes - c4-model-documentation - microservices-decomposition - data-architecture-design ## Input Schema ```json { "type": "object", "required": ["source"], "properties": { "source": { "type": "string", "description": "Mermaid diagram definition" }, "outputFormat": { "type": "string", "enum": ["png", "svg", "pdf"], "default": "svg" }, "outputPath": { "type": "string", "description": "Output file path" }, "theme": { "type": "string", "enum": ["default", "dark", "forest", "neutral"], "default": "default" }, "config": { "type": "object", "properties": { "backgroundColor": { "type": "string", "default": "white" }, "width": { "type": "number" }, "height": { "type": "number" } } } } } ``` ## Output Schema ```json { "type": "object", "properties": ...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills