AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Dashboard Creator

skill-i-onlabs-claude-code-skills-dashboard-creator · by I-Onlabs

Create HTML dashboards with KPI cards, bar/pie/line charts, progress indicators, and data tables. Use when asked to "create dashboard", "build KPI dashboard", "generate metrics visualization", "make analytics dashboard", "show performance dashboard", or "render data visualization as HTML".

No reviews yet
0 installs
38 views
0.0% view→install

Install

$ agentstack add skill-i-onlabs-claude-code-skills-dashboard-creator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-i-onlabs-claude-code-skills-dashboard-creator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Dashboard Creator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Dashboard Creator

Create interactive HTML dashboards with KPI cards and SVG charts.

Contents

  • [When to Use](#when-to-use)
  • [Components](#components)
  • [Workflow](#workflow)
  • [HTML Skeleton](#html-skeleton)
  • [KPI Card Pattern](#kpi-card-pattern)
  • [SVG Bar Chart Pattern](#svg-bar-chart-pattern)
  • [Verification](#verification)
  • [References](#references)

When to Use

  • "Create dashboard for [metrics]"
  • "Show KPI visualization"
  • "Generate performance / analytics / monitoring dashboard"
  • "Make HTML report with charts"

Components

  1. KPI cards — metric name, value, change %, trend icon
  2. Charts — bar / pie / line as inline SVG (no external JS)
  3. Progress bars — completion indicators
  4. Data tables — tabular display

Workflow

  1. Extract metrics and structure the data
  2. Build KPI cards grid
  3. Generate SVG charts for each series
  4. Add progress indicators where applicable
  5. Write to [name]-dashboard.html
  6. Verify (see [Verification](#verification))

Use semantic colors: green = positive, red = negative, blue = neutral.

HTML Skeleton


  [Project] Dashboard
  
    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; }
  

  [Dashboard Name]
  
    
  

KPI Card Pattern


  Revenue
  $124K
  ↑ 12.5%

SVG Bar Chart Pattern


  
  

Verification

After writing the HTML file, confirm success by checking all of these:

  • [ ] File exists at the target path and is non-empty
  • [ ] Open in a browser — page renders without console errors
  • [ ] Every KPI card shows a value (no empty [PLACEHOLDER] strings left in)
  • [ ] Every SVG chart has bars/slices/lines proportional to the data (not all the same size)
  • [ ] Trend colors match direction (green for positive deltas, red for negative)

If any check fails, fix before reporting completion.

References

  • [references/design_patterns.md](references/design_patterns.md) — color system, typography, component patterns
  • [references/svg_library.md](references/svg_library.md) — SVG shapes, gradients, chart techniques

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.