Install this skill
npx skills add mhattingpete/claude-skills-marketplaceWorks across Claude Code, Cursor, Codex, Copilot & Antigravity
What this skill does
- •Generates responsive HTML/CSS structures for data visualization
- •Creates standardized KPI metric cards with directional trend indicators
- •Renders native SVG bar, line, and pie charts
- •Integrates progress bar components for status tracking
- •Produces self-contained files that open in any standard web browser
When to use it
- ✓Converting raw log or JSON data into a readable performance report
- ✓Visualizing project progress for stakeholders or team reviews
- ✓Creating quick monitoring interfaces for local development metrics
- ✓Displaying real-time analytical shifts using clear success/warning color coding
When not to use it
- ✕Building full-scale, interactive production analytics applications
- ✕Handling massive datasets that require server-side database connectivity
- ✕Creating tools that require real-time, live API socket updates
How to invoke it
Example prompts that trigger this skill:
- “Create an HTML dashboard showing current CPU usage and memory stats”
- “Generate a KPI report for Q1 revenue with percentage growth markers”
- “Make a progress dashboard based on the tasks defined in our project plan”
- “Visualize these monthly sales figures as a bar chart in a new dashboard”
- “Build a summary dashboard that displays key performance indicators for this application”
Example workflow
- Agent parses source data or logs provided by the user
- Agent calculates necessary metrics for KPI or chart display
- Agent builds the HTML skeleton with defined CSS styles for consistency
- Agent generates individual SVG elements for graphical charts
- Agent writes the complete output to a file named [project]-dashboard.html
- Agent confirms generation and provides the file path for local viewing
Prerequisites
- –Claude Code or compatible AI agent environment
- –Write access to the target project directory
Pitfalls & limitations
- !SVG charts are static and do not provide interactive tooltip hover states
- !Layout is fixed to standard grids and may require manual CSS adjustments for complex custom designs
- !Not intended for live database integration or dynamic client-side filtering
FAQ
How it compares
Compared to writing an HTML report from scratch, this skill enforces a consistent design pattern and accelerates the generation of SVG components, which are otherwise tedious to code manually.
Source & trust
From the source: “# Dashboard Creator Create interactive HTML dashboards with KPI cards and charts. ## When to Use - "Create dashboard for [metrics]" - "Show KPI visualization" - "Generate performance dashboard" - "Make analytics dashboard with charts" ## Components 1. **KPI Cards**: metric name, value, change %, tre…”
View the full SKILL.md source
# Dashboard Creator
Create interactive HTML dashboards with KPI cards and charts.
## When to Use
- "Create dashboard for [metrics]"
- "Show KPI visualization"
- "Generate performance dashboard"
- "Make analytics dashboard with charts"
## Components
1. **KPI Cards**: metric name, value, change %, trend icon
2. **Charts**: bar/pie/line using SVG or CSS
3. **Progress Bars**: completion indicators
4. **Data Tables**: tabular data display
## HTML Structure
```html
<!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>
```
## KPI Card Pattern
```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>
```
## Chart Pattern (SVG Bar Chart)
```html
<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>
```
## Workflow
1. Extract metrics and data
2. Create KPI cards grid
3. Generate charts (bar/pie/line) as SVG
4. Add progress indicators
5. Write to `[name]-dashboard.html`
Use semantic colors: green (positive), red (negative), blue (neutral).
Quoted from mhattingpete/claude-skills-marketplace for reference — see the original for the authoritative, latest version.
📄 Full skill instructions — original source: mhattingpete/claude-skills-marketplace
How to Use This Skill Unit
Option A: Project-Specific (Recommended)
- Click "Download" above
- In your project, create the directory:
.agent/skills/dashboard-creator/ - Save the file as
SKILL.md - The agent will automatically discover the skill based on its description.
Option B: Global Installation (All Agents)
Save the file to these locations to make it available across all projects:
- Claude Code:
~/.claude/skills/mhattingpete/claude-skills-marketplace/dashboard-creator/SKILL.md - Cursor:
~/.cursor/skills/mhattingpete/claude-skills-marketplace/dashboard-creator/SKILL.md - Antigravity:
~/.gemini/antigravity/skills/mhattingpete/claude-skills-marketplace/dashboard-creator/SKILL.md
🚀 Install with CLI:npx skills add mhattingpete/claude-skills-marketplace

