Install
$ agentstack add skill-i-onlabs-claude-code-skills-dashboard-creator ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- KPI cards — metric name, value, change %, trend icon
- Charts — bar / pie / line as inline SVG (no external JS)
- Progress bars — completion indicators
- Data tables — tabular display
Workflow
- Extract metrics and structure the data
- Build KPI cards grid
- Generate SVG charts for each series
- Add progress indicators where applicable
- Write to
[name]-dashboard.html - 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.
- Author: I-Onlabs
- Source: I-Onlabs/claude-code-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.