arcgis-to-portaljs
Migrate a whole ArcGIS Hub site into a PortalJS Arc portal end-to-end. Harvests the Hub /data.json (DCAT-US) inventory, exports every FeatureService layer…
Scaffold a new PortalJS data portal from a brief. Copies the canonical template from examples/portaljs-catalog and substitutes project tokens. Use when starting a brand-new data portal project from scratch.
$ npx -y skills add datopian/portaljs --skill portaljs-new-portal --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/portaljs-new-portalContext preview
The summary Claude sees to decide when to auto-load this skill.
Scaffold a new PortalJS data portal from a brief. Copies the canonical template from examples/portaljs-catalog and substitutes project tokens. Use when starting a brand-new data portal project from scratch.
name: portaljs-new-portal description: Scaffold a new PortalJS data portal from a brief. Copies the canonical template from examples/portaljs-catalog and substitutes project tokens. Use when starting a brand-new data portal project from scratch. allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(npx:*), Bash(cp:*), Bash(mkdir:*), Bash(git:*) version: 1.0.0 author: Datopian <hello@datopian.com> license: MIT compatibility: Claude Code with PortalJS portals (Next.js 14, React 18, Node 18+). Runs from any project via the plugin, a personal ~/.claude/commands install, or a portaljs clone. tags: - portaljs - data-portal - scaffold - nextjs - template - catalog
Scaffold a production-ready PortalJS data portal from a brief. The skill is **interactive**: if the brief is thin it interviews the user in three short rounds (mapped to the template's three surfaces — Home, Catalog, Showcase), echoes a brief back for confirmation, then copies `examples/portaljs-catalog` (locally or via a remote `tiged` fetch), substitutes placeholder tokens, sets the namespace mode, seeds any datasets named in the interview, installs dependencies, and verifies the scaffold with a type check.
(the resolver defaults to a remote fetch of the template).
to overwrite one that does).
The canonical, full step-by-step workflow is [`.claude/commands/portaljs-new-portal.md`](https://github.com/datopian/portaljs/blob/main/.claude/commands/portaljs-new-portal.md) — the single source of truth. Read and follow it when executing. Summary:
1. Interview the user in up to three rounds — Home/basics, Catalog & discovery (datasets, namespace mode `theme` vs `owner`), Showcase/views — skipping any round already answered by the input brief. Accept "use defaults" at any point. 2. Confirm a short brief (name, slug, description, namespace, datasets, views) before building. 3. Resolve the template source: prefer a remote `tiged` fetch of `examples/portaljs-catalog` at `main` (or `PORTALJS_TEMPLATE_REF`); use a local checkout only when it is current (has `pages/[owner]/[slug].tsx`) and the destination is outside that repo. 4. Materialize the template into `./PROJECT_SLUG`, asking first if the destination already exists and is non-empty. 5. Substitute `__PROJECT_NAME__`, `__PROJECT_SLUG__`, `__DESCRIPTION__` tokens across all files with `perl -pi`, escaping `/`, `\`, and `&` in the values. 6. Set `NAMESPACE_TYPE` (`'theme'` or `'owner'`) in `lib/datasets.ts` per the interview. 7. Seed datasets captured in Round 2 (via `/portaljs-add-dataset` or by hand), or clear `datasets.json` to `[]` if none were named. 8. Run `npm install` inside the scaffolded portal. 9. Verify with `npx tsc --noEmit` (never `next build` here — it would corrupt a running dev server's `.next/` directory). 10. Report the scaffolded routes, namespace mode, and next steps.
`examples/portaljs-catalog` template with tokens substituted.
datasets or cleared to `[]`).
(`/search`), and Showcase (`/@<namespace>/<slug>`) surfaces wired up.
| Symptom | Cause | Fix | | --- | --- | --- | | `DIR_EXISTS` | `./PROJECT_SLUG` already exists and is non-empty | Ask the user for a different name or consent to remove it; then proceed. | | Remote fetch fails | Bad `PORTALJS_TEMPLATE_REF`, network outage, or `tiged` unavailable | Tell the user plainly and ask to retry, use a different ref, or check network. | | Stale local scaffold (`pages/datasets/[slug].tsx`) | Old local clone missing `pages/[owner]/[slug].tsx` | Resolver already falls back to remote in this case — do not force local mode. | | `npm install` fails | Node <22 or no network | Report the error and ask the user to check Node version and connectivity. | | `tsc --noEmit` fails | Token substitution or manifest error | Print the log and fix before reporting success — never report success with a failing type check. |
/portaljs-new-portal Auckland Open Data Portal — datasets published by several council departments (multiple publishers). Start with ./data/parks.csv and ./data/budget.csv.
Infers name + description, picks `NAMESPACE_TYPE = 'owner'`, asks for namespace values (e.g. `parks-dept`, `finance`), confirms the brief, scaffolds the template, and seeds both datasets at `/@parks-dept/parks` and `/@finance/budget`.
/portaljs-new-portal
Runs all three interview rounds from scratch, accepting "use defaults" for any round, then confirms the brief before scaffolding.
/portaljs-new-portal Reference Data Hub — a single-team reference catalog, no data yet.
Picks `NAMESPACE_TYPE = 'theme'` with namespace `reference`, clears `datasets.json` to `[]`, and reports `/portaljs-add-dataset` as the next step.
🌀 AI-native framework for building data portals. Scaffold a full portal from a brief and load datasets in minutes with agentic skills — any backend (CKAN, GitHub, Frictionless).
Repo: datopian/portaljs
Migrate a whole ArcGIS Hub site into a PortalJS Arc portal end-to-end. Harvests the Hub /data.json (DCAT-US) inventory, exports every FeatureService layer…
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…
Add a dataset (CSV, TSV, JSON, or GeoJSON) to an existing PortalJS portal. Appends an entry to datasets.json so the catalog and showcase render it…
Make a PortalJS portal harvestable by national/EU/US open-data portals — emit standards-compliant DCAT catalog feeds (DCAT 2/3, DCAT-AP, DCAT-US, national…
Auto-ingest a geospatial file (GeoJSON, Shapefile, GeoPackage, KML/KMZ, FlatGeobuf, CSV-with-geometry) into a PortalJS portal on the user's own machine, with…
Render a GeoJSON dataset on an interactive Leaflet map in the Views section of a dataset's showcase. Installs react-leaflet and a Map component, then renders…