From visual-documentation-skills
Generates HTML dashboards with KPI metric cards, SVG bar/pie/line charts, progress bars, and tables for metrics, KPIs, and data visualization.
How this skill is triggered — by the user, by Claude, or both
Slash command
/visual-documentation-skills:dashboard-creatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create interactive HTML dashboards with KPI cards and charts.
Create interactive HTML dashboards with KPI cards and charts.
<!DOCTYPE html>
<html>
<head>
<title>[Project] Dashboard</title>
<style>
body { font-family: system-ui; background: #f7fafc; }
.kpi-card { background: white; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.kpi-value { font-size: 36px; font-weight: bold; }
.trend-up { color: #48bb78; }
.trend-down { color: #e53e3e; }
</style>
</head>
<body>
<h1>[Dashboard Name]</h1>
<div class="grid">
<!-- KPI cards -->
<!-- Charts -->
<!-- Progress bars -->
</div>
</body>
</html>
<div class="kpi-card">
<div class="kpi-label">Revenue</div>
<div class="kpi-value">$124K</div>
<div class="trend-up">↑ 12.5%</div>
</div>
<svg viewBox="0 0 400 300">
<rect x="50" y="100" width="40" height="150" fill="#4299e1"/>
<rect x="120" y="80" width="40" height="170" fill="#48bb78"/>
<!-- bars for each data point -->
</svg>
[name]-dashboard.htmlUse semantic colors: green (positive), red (negative), blue (neutral).
npx claudepluginhub p/huonghamd9-visual-documentation-skills-visual-documentation-plugin4plugins reuse this skill
First indexed Jun 6, 2026
Generates a single-file admin or analytics dashboard with sidebar, KPI cards, and inline SVG charts. Use when a brief asks for a dashboard, admin panel, or control screen.
Designs effective KPI dashboards with proper metric selection, visual hierarchy, and data visualization best practices. Use when building executive dashboards, creating analytics views, or presenting business metrics.
Build interactive HTML dashboards with charts, filters, and tables from query results or data sources. Useful for executive overviews, monitoring, and shareable reports.