datopian/portaljs-add-chart
Add a chart (line, bar, area, pie, or scatter) to a dataset's showcase in a PortalJS portal. Installs recharts, writes a reusable Chart component, and renders it in the showcase Views section. Use when visualizing a dataset already registered in datasets.json.
npx skills add https://github.com/datopian/portaljs --skill portaljs-add-chart
Add a visualization to a dataset's showcase in a PortalJS portal. The skill installs
recharts (added directly — never @portaljs/components), writes a reusable client-side
Chart component into components/, and renders a <Chart /> into the Views section
of the showcase route pages/[owner]/[slug].tsx for one chosen dataset. The chart reads the
same /public/data/<file> the showcase <Table /> already uses, so no data is duplicated.
Five chart types are supported: line, bar, area, pie, and scatter.
portaljs-new-portal).datasets.json (see portaljs-add-dataset).components/ui/parseCsv.ts present (ships with the template).The canonical, full step-by-step workflow is
.claude/commands/portaljs-add-chart.md —
the single source of truth. Read and follow it when executing. Summary:
line), portaldirectory. If any is missing, interview the user; never dead-end on a missing value.
datasets.json (namespace, file, format).non-numeric Y columns (values are coerced with Number()).
npm install recharts@^2.15.0.components/Chart.tsx (idempotent — do not overwrite a customized component).<Chart /> into the Views section, gated on the dataset's (namespace, slug) soother showcases are unaffected. Extend an existing view-dispatch block, do not overwrite.
npx tsc --noEmit.components/Chart.tsx (recharts wrapper, if absent).pages/[owner]/[slug].tsx (import + gated <Chart /> in Views);package.json (recharts@^2.15.0).
npx tsc --noEmit passes./@<namespace>/<slug> under a "Views" heading.| Symptom | Cause | Fix |
| --- | --- | --- |
| Missing dataset/columns | Slug or column not in manifest/header | List available slugs/headers and re-prompt; do not error out. |
| Gaps in the chart | Non-numeric cells coerced to NaN | Clean the source data or pick a numeric Y column. |
| tsc failure | Bad column prop or import path | Fix the first reported error before reporting success. |
| Sluggish render | Over ~2,000 SVG points | Pre-aggregate the series (e.g. yearly buckets). |
/portaljs-add-chart co2-emissions x=year y=emissions type=line
/portaljs-add-chart trade x=year y=imports,exports type=bar
/portaljs-add-chart budget x=department y=amount type=pie
.claude/commands/portaljs-add-chart.mdreferences/reference.mdportaljs-add-dataset, portaljs-add-map, portaljs-define-schemaTake datopian/portaljs-add-chart from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm, npx.
Without those the skill loads but fails at the first command.