dashboard

A Markdown report generator for a metrics dashboard, which is a page that summarizes important measurements with numbers, charts, and tables.

In plain words
What is it for?
Use it to create KPI scorecards, trend charts, status badges, data tables, and detailed metric summaries in a Markdown file.
Why use it?
It turns data into a structured overview that makes performance and trends easier to inspect.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/minhlucvan/notebookmd/dashboard
Any agent
npx skills add minhlucvan/notebookmd --skill dashboard
Clone the repo
git clone --depth 1 https://github.com/minhlucvan/notebookmd

Made for: Claude Code, Codex.

Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 807 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00037 $0.00807
Opus 5 $0.00018 $0.00404
Sonnet 5 $0.00007 $0.00161
Haiku 4.5 $0.00004 $0.00081

Measured 3d ago against content hash 0b05b2453d44, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dashboard scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/dashboard/SKILL.md · 96 lines

How it starts

The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Metrics Dashboard Generator

Generate a KPI dashboard as a structured Markdown report using notebookmd.

Input

Dashboard: $ARGUMENTS

Instructions

1. Setup

from notebookmd import nb, NotebookConfig

cfg = NotebookConfig(max_table_rows=20)
n = nb("dist/dashboard.md", title="<Dashboard Title>", cfg=cfg)

2. Dashboard Layout

# Hero Metrics Row
n.section("Key Performance Indicators")
n.metric_row([
    {"label": "Revenue", "value": "$4.2M", "delta": "+18%"},
    {"label": "Users", "value": "34.5K", "delta": "+2,100"},
    {"label": "Conversion", "value": "3.2%", "delta": "+0.4%"},
    {"label": "Churn", "value": "1.8%", "delta": "-0.3%", "delta_color": "inverse"},
])

# Status Badges
n.badge("ON TRACK", style="success")
n.badge("Q4 2026", style="info")

# Trend Charts
n.section("Trends")
n.line_chart(df, x="date", y="revenue", title="Revenue Trend")
n.area_chart(df, x="date", y="users", title="User Growth")
n.bar_chart(df, x="category", y="count", title="Distribution")

# Detailed Metrics
n.section("Detailed Metrics")
n.kv({
    "MRR": "$350K",
    "ARR": "$4.2M",
    "LTV": "$1,200",
    "CAC": "$180",
    "LTV/CAC": "6.7x",
}, title="Unit Economics")

# Period Comparison
n.section("Period Comparison")
n.change("Revenue", current=4_200_000, previous=3_560_000, fmt=",.0f", pct=True)
n.change("Users", current=34_521, previous=32_421, fmt=",d", pct=True)
n.change("Churn", current=0.018, previous=0.021, fmt=".1%", pct=True)

# Rankings
n.section("Top Performers")
n.ranking("Product A", value="$1.2M", rank=1, total=15)
n.ranking("Product B", value="$890K", rank=2, total=15)
n.ranking("Product C", value="$650K", rank=3, total=15)

# Data Tables
n.section("Data Tables")
n.dataframe(summary_df, name="Summary by Segment")

# Alerts
n.section("Alerts & Actions")
n.success("Revenue target exceeded by 12%")
n.warning("Churn rate increasing in Enterprise segment")
n.info("New pricing tier launching next quarter")

# Export
n.export_csv(df, "dashboard_data.csv", name="Dashboard data export")
n.save()

Read the full file on GitHub · 96 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 96 lines · 37 tokens per session scan A 0b05b2453d44

Subscribe to this mod's changes

dashboard is a skill published in the GitHub repository minhlucvan/notebookmd (10 stars, last pushed 4mo ago), licensed MIT. It adds 37 tokens to every session and 807 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

html-artifact-report

Create HTML report artifacts from notes or Markdown with paired JSON manifests for AI-agent audit and reuse.

DeepCogNeural/html-artifact-report-skill · 24 tokens

agent-evaluation-reporting

Use when summarizing agent evaluations where autonomous, assisted, failed, timed-out, or invalid outcomes must remain distinct and comparable.

sickn33/agentic-awesome-skills · 31 tokens

markstream-react

Integrate the beta markstream-react package into a React 18+ or Next app. Use when Codex needs to add the React renderer, choose the root, next, or server entrypoint, import CSS correctly, choose between content and nodes, keep client boundaries safe, add renderer-local streamingComponents or htmlComponents, use…

Simon-He95/markstream-vue · 94 tokens

nba

Read the live cycle state and return the single highest-leverage next best action, not a menu. Use when a project is between phases, the author asks what to do next, too many valid threads are open, or the work needs re-entry into frame, build, drive, re0-memo, hate, re0-work, or ship.

LilMGenius/paperthin · 72 tokens

review-validation

Validate review findings from specialist agents by reading the actual repo file content and checking each finding for accuracy, applicability, and false positives.

cloudflare/cloudflare-docs · 29 tokens

markdown-exporter

Convert Markdown text to DOCX, PPTX, XLSX, PDF, PNG, SVG, HTML, IPYNB, MD, CSV, JSON, JSONL, XML files, and extract code blocks in Markdown to Python, Bash,JS and etc files.

bowenliang123/markdown-exporter · 57 tokens