Automatically generates interactive HTML-based dashboards with KPI cards and data visualizations.

Install

mkdir -p .claude/skills/dashboard-creator && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/24" && unzip -o skill.zip -d .claude/skills/dashboard-creator && rm skill.zip

Installs to .claude/skills/dashboard-creator

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Create HTML dashboards with KPI metric cards, bar/pie/line charts, progress indicators, and data visualizations. Use when users request dashboards, metrics displays, KPI visualizations, data charts, or monitoring interfaces.
224 chars✓ has a “when” trigger
Beginner

Key capabilities

  • Generate KPI cards with trend icons and percentage changes
  • Construct SVG-based bar, pie, and line charts
  • Implement progress bars for completion tracking
  • Format tabular data for display
  • Assemble HTML dashboard structures with embedded CSS

How it works

The tool extracts metrics to populate predefined HTML structures and SVG chart patterns. It applies semantic color coding to represent positive, negative, and neutral data points.

Inputs & outputs

You give it
Raw metrics and performance data
You get back
An HTML file containing dashboard components

When to use dashboard-creator

  • Create a KPI dashboard
  • Visualize performance metrics
  • Generate progress indicators
  • Make an analytics dashboard UI

About this skill

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

<!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

<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)

<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).

When not to use it

  • Creating non-dashboard web pages
  • Generating dynamic backend data processing scripts

Limitations

  • Output is restricted to static HTML files
  • Visualizations are limited to SVG and CSS-based representations

How it compares

This tool automates the manual coding of HTML structures and SVG elements for specific dashboard components like KPI cards and charts.

Compared to similar skills

dashboard-creator side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
dashboard-creator (this skill)319moNo flagsBeginner
d3-visualization74moNo flagsAdvanced
d3js-visualization72moReviewIntermediate
antv-l721moNo flagsIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by mhattingpete

View all by mhattingpete

architecture-diagram-creator

mhattingpete

Create comprehensive HTML architecture diagrams showing data flows, business objectives, features, technical architecture, and deployment. Use when users request system architecture, project documentation, high-level overviews, or technical specifications.

824

conversation-analyzer

mhattingpete

Analyzes your Claude Code conversation history to identify patterns, common mistakes, and opportunities for workflow improvement. Use when user wants to understand usage patterns, optimize workflow, identify automation opportunities, or check if they're following best practices.

899

codebase-documenter

mhattingpete

Generates comprehensive documentation explaining how a codebase works, including architecture, key components, data flow, and development guidelines. Use when user wants to understand unfamiliar code, create onboarding docs, document architecture, or explain how the system works.

613

code-execution

mhattingpete

Execute Python code locally with marketplace API access for 90%+ token savings on bulk operations. Activates when user requests bulk operations (10+ files), complex multi-step workflows, iterative processing, or mentions efficiency/performance.

10

code-transfer

mhattingpete

Transfer code between files with line-based precision. Use when users request copying code from one location to another, moving functions or classes between files, extracting code blocks, or inserting code at specific line numbers.

17

ensemble-solving

mhattingpete

Generate multiple diverse solutions in parallel and select the best. Use for architecture decisions, code generation with multiple valid approaches, or creative tasks where exploring alternatives improves quality.

17

You might also like

d3-visualization

lyndonkl

Use when creating custom, interactive data visualizations with D3.js—building bar/line/scatter charts from scratch, creating network diagrams or geographic maps, binding changing data to visual elements, adding zoom/pan/brush interactions, animating chart transitions, or when chart libraries (Highcharts, Chart.js) don't support your specific visualization design and you need low-level control over data-driven DOM manipulation, scales, shapes, and layouts.

7107

d3js-visualization

benchflow-ai

Build deterministic, verifiable data visualizations with D3.js (v6). Generate standalone HTML/SVG (and optional PNG) from local data files without external network dependencies. Use when tasks require charts, plots, axes/scales, legends, tooltips, or data-driven SVG output.

722

antv-l7

antvis

Comprehensive guide for AntV L7 geospatial visualization library. Use when users need to: (1) Create interactive maps with WebGL rendering (2) Visualize geographic data (points, lines, polygons, heatmaps) (3) Build location-based data dashboards (4) Add map layers, interactions, or animations (5) Process and display GeoJSON, CSV, or other spatial data (6) Integrate maps with AMap (GaodeMap), Mapbox, Maplibre, or standalone L7 Map (7) Optimize performance for large-scale geographic datasets

29

vchart-development-assistant

VisActor

VChart图表库专家助手,支持问题诊断、配置生成、图片/Figma设计稿还原等场景,基于结构化知识库提供精确的图表开发解决方案

10

anywidget-marimo

diegosouzapw

Toolkit for generating custom widgets from scratch for Marimo.

00

debug

hta218

Instrument web/web-app code with structured debug logging via a global variable (window.__debug_logs). Produces a clean JSON timeline for reproducing and diagnosing bugs. Use when user wants to debug a feature or track down a bug.

00

Search skills

Search the agent skills registry