graphviz-renderer

Solid

Render Graphviz DOT graphs to images with multiple layout algorithms

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

# Graphviz DOT Renderer Skill ## Overview Renders Graphviz DOT graph definitions to images supporting multiple layout algorithms for dependency visualization and large graph rendering. ## Capabilities - Render DOT graphs to PNG, SVG, PDF, PS formats - Multiple layout algorithms (dot, neato, fdp, sfdp, twopi, circo) - Large graph support with sfdp algorithm - Dependency visualization - Custom node and edge styling - Subgraph and cluster support ## Target Processes - microservices-decomposition - ddd-strategic-modeling - observability-implementation ## Input Schema ```json { "type": "object", "required": ["source"], "properties": { "source": { "type": "string", "description": "DOT graph definition" }, "outputFormat": { "type": "string", "enum": ["png", "svg", "pdf", "ps"], "default": "svg" }, "outputPath": { "type": "string", "description": "Output file path" }, "layout": { "type": "string", "enum": ["dot", "neato", "fdp", "sfdp", "twopi", "circo"], "default": "dot", "description": "Layout algorithm" }, "config": { "type": "object", "properties": { "dpi": { "type": "number", "default": 96 }, "rankdir": { "type": "string", "enum": ["TB", "BT", "LR", "RL"], "default": "TB" } } } } } ``` ## Output Schema ```json { "type": "object", "properties": { "outp...

Details

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

Related Skills