Decision-specific visualization skill for creating clear, actionable visual representations of analyses
Creates visual decision support diagrams like trees, tornado charts, and strategy tables from analysis data.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
The Decision Visualization skill provides specialized visualization capabilities for decision support, creating clear, actionable visual representations that communicate analysis results effectively to decision-makers and stakeholders.
# Decision tree diagram configuration
decision_tree_viz = {
"type": "decision_tree",
"data": decision_tree_structure,
"options": {
"node_shapes": {
"decision": "square",
"chance": "circle",
"terminal": "triangle"
},
"show_probabilities": True,
"show_payoffs": True,
"highlight_optimal_path": True,
"color_scheme": "sequential",
"orientation": "horizontal"
}
}
# Strategy comparison table
strategy_table = {
"type": "strategy_table",
"alternatives": ["Strategy A", "Strategy B", "Strategy C"],
"criteria": ["Cost", "Time", "Quality", "Risk"],
"data": performance_matrix,
"options": {
"color_coding": "performance_based",
"show_weights": True,
"show_scores": True,
"highlight_winner": True
}
}
# Multi-objective trade-off visualization
tradeoff_plot = {
"type": "scatter",
"data": alternatives_data,
"x_axis": {"variable": "cost", "label": "Total Cost ($)"},
"y_axis": {"variable": "benefit", "label": "Expected Benefit"},
"options": {
"show_pareto_frontier": True,
"label_alternatives": True,
"size_by": "probability",
"color_by": "risk_category",
"show_dominated_region": True
}
}
# Sensitivity tornado diagram
tornado = {
"type": "tornado",
"base_value": 1000000,
"sensitivities": {
"Price": {"low": 800000, "high": 1300000},
"Volume": {"low": 900000, "high": 1150000},
"Cost": {"low": 950000, "high": 1100000},
"Market Share": {"low": 850000, "high": 1200000}
},
"options": {
"sort_by": "swing",
"show_base_line": True,
"color_scheme": ["red", "green"],
"show_values": True
}
}
# Distribution and confidence visualization
uncertainty_viz = {
"type": "distribution",
"data": simulation_results,
"options": {
"show_histogram": True,
"show_density": True,
"show_percentiles": [5, 25, 50, 75, 95],
"show_mean": True,
"confidence_band": 0.90,
"highlight_threshold": 0 # e.g., breakeven
}
}
| Type | Use Case | Key Features |
|---|---|---|
| Decision Tree | Structure visualization | Nodes, branches, payoffs |
| Strategy Table | Alternative comparison | Color-coded performance |
| Tornado Diagram | Sensitivity ranking | Horizontal bars, swing |
| Spider/Radar | Multi-criteria profile | Polygon overlay |
| Heat Map | Matrix data | Color intensity |
| Waterfall | Value decomposition | Sequential bars |
| Scatter | Trade-offs | Points, Pareto frontier |
| Box Plot | Uncertainty | Quartiles, outliers |
| Fan Chart | Forecast uncertainty | Widening confidence bands |
{
"visualization_type": "string",
"data": "object",
"axes": {
"x": {"variable": "string", "label": "string"},
"y": {"variable": "string", "label": "string"}
},
"options": {
"title": "string",
"color_scheme": "string",
"interactive": "boolean",
"annotations": ["object"],
"export_format": "png|svg|pdf|html"
}
}
{
"visualization_path": "string",
"interactive_url": "string (if applicable)",
"metadata": {
"type": "string",
"dimensions": {"width": "number", "height": "number"},
"data_summary": "object"
},
"accessibility": {
"alt_text": "string",
"data_table": "object"
}
}
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 a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.