Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mhattingpete avatar

Dashboard Creator

  • 266 installs
  • 656 repo stars
  • Updated July 25, 2026
  • mhattingpete/claude-skills-marketplace

Spin up admin or analytics dashboards with charts, filters, and layout when shipping internal tools, SaaS reporting views, or stakeholder-facing metric pages.

About

Helps Claude design and implement data dashboards end to end: choosing layout grids, wiring metrics into charts and tables, adding filters and empty states, and producing production-ready frontend code for analytics and admin surfaces.

  • Opinionated dashboard scaffolding and component patterns
  • Chart, table, and filter composition workflows
  • Hooks real or mock metrics into readable layouts
  • Accelerates internal ops and customer-facing analytics UIs

Dashboard Creator by the numbers

  • 266 all-time installs (skills.sh)
  • +13 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #783 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mhattingpete/claude-skills-marketplace --skill dashboard-creator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs266
repo stars656
Last updatedJuly 25, 2026
Repositorymhattingpete/claude-skills-marketplace

What it does

Spin up admin or analytics dashboards with charts, filters, and layout when shipping internal tools, SaaS reporting views, or stakeholder-facing metric pages.

Files

SKILL.mdMarkdownGitHub ↗

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

Related skills

Frontend Developmentfrontendbackendintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.