Render Graphviz DOT graphs to images with multiple layout algorithms
Renders Graphviz DOT diagrams into multiple image formats using various layout algorithms for visualizing dependencies and structures.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdRenders Graphviz DOT graph definitions to images supporting multiple layout algorithms for dependency visualization and large graph rendering.
{
"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"
}
}
}
}
}
{
"type": "object",
"properties": {
"outputPath": {
"type": "string",
"description": "Path to rendered image"
},
"format": {
"type": "string"
},
"nodeCount": {
"type": "number"
},
"edgeCount": {
"type": "number"
}
}
}
{
kind: 'skill',
skill: {
name: 'graphviz-renderer',
context: {
source: 'digraph G { A -> B -> C; A -> C; }',
outputFormat: 'svg',
outputPath: 'docs/diagrams/dependencies.svg',
layout: 'dot'
}
}
}
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.