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…
Wire a scaffolded PortalJS portal to a CKAN backend over its API. Generates a tiny server-side fetch client (no runtime dependency) and feeds the /search catalog and /@namespace/slug showcases from CKAN instead of datasets.json. Use when connecting an existing portal to a live
$ npx -y skills add datopian/portaljs --skill portaljs-connect-ckan --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/portaljs-connect-ckanContext preview
The summary Claude sees to decide when to auto-load this skill.
Wire a scaffolded PortalJS portal to a CKAN backend over its API. Generates a tiny server-side fetch client (no runtime dependency) and feeds the /search catalog and /@namespace/slug showcases from CKAN instead of datasets.json. Use when connecting an existing portal to a live
name: portaljs-connect-ckan description: Wire a scaffolded PortalJS portal to a CKAN backend over its API. Generates a tiny server-side fetch client (no runtime dependency) and feeds the /search catalog and /@namespace/slug showcases from CKAN instead of datasets.json. Use when connecting an existing portal to a live CKAN instance instead of a static manifest. allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(npx:*), WebFetch 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 - ckan - backend - api - catalog
Connect an existing `portaljs-catalog` portal to a live CKAN backend for the "decoupled / any backend" path. The portal stops reading the static `datasets.json` manifest (and files in `/public/data/`) and instead feeds its two data surfaces — the **`/search` catalog** and the **`/@namespace/slug` showcases** — straight from a CKAN instance's REST API (`package_search` / `package_show`) through a generated fetch client. Output is plain, editable Next.js code with **no runtime dependency** — never `@portaljs/ckan`, whose bundle wires React UI components to React 18 internals and crashes at import under the template's React 19. Pages fetch CKAN server-side in `getStaticProps`/`getStaticPaths`, so the catalog is pre-rendered at build time and the site can still be statically deployed. Run this right after `portaljs-new-portal` to swap a freshly scaffolded portal's sample data over to CKAN.
`datasets.json`, `pages/search.tsx`, and `pages/[owner]/[slug].tsx` present.
The canonical, full step-by-step workflow is [`.claude/commands/portaljs-connect-ckan.md`](https://github.com/datopian/portaljs/blob/main/.claude/commands/portaljs-connect-ckan.md) — the single source of truth. Read and follow it when executing. Summary:
1. Gather input from `$ARGUMENTS` — CKAN base URL (required), org filter (optional), group filter (optional), portal directory (default `.`). If the URL is missing, interview the user; never dead-end with a missing-input error. 2. Validate the target directory is a `portaljs-catalog` portal; if not, suggest `portaljs-new-portal` instead of failing silently. 3. Verify the CKAN backend is reachable via `package_search?rows=1`, and validate each org filter via `organization_show`; on failure, explain and re-prompt rather than dead-ending. 4. Generate `lib/ckan.ts` — a self-contained server-side fetch client wrapping `package_search` and `package_show`, with `DMS`, `ORG_FILTER`, `GROUP_FILTER`, and `MAX_DATASETS` as editable constants. 5. Rewire `pages/search.tsx` to list datasets from `package_search`, linking each to `/@namespace/slug` via `datasetHref`; leave `pages/index.tsx` untouched. 6. Overwrite `pages/[owner]/[slug].tsx` to pre-render one page per dataset via `getStaticPaths` and fetch details with `package_show`, previewing tabular resources through the existing `Table` component. 7. Verify the build with `npx next build`; fix any error before reporting success. 8. Report what changed: client, catalog, showcase, filters, and static page count.
(showcase reads `package_show`, overwritten to drop the `datasets.json` source).
`DMS` env var can override the base URL at deploy time without editing code.
| Symptom | Cause | Fix | | --- | --- | --- | | Missing CKAN URL | User invoked the skill with no `$ARGUMENTS` | Ask for the base URL (and optional org/group filter); never error out. | | `package_search` request fails or times out | URL isn't a reachable CKAN root | Tell the user, ask them to confirm the URL, and retry. | | Org filter not found | `organization_show` returns `success: false` | List valid orgs from `organization_list` and ask which one was meant. | | Catalog renders empty after connecting | Wrong org/group filter name in `lib/ckan.ts` | Clear or correct the filter constants and rebuild. | | `next build` fails | Typo in substituted `CKAN_URL` or bad TypeScript edit | Print the log, fix the first error, and re-run before reporting success. | | `<Table>` fails to load a resource | CKAN resource host blocks CORS | Note that the Download link still works; prefer datastore-backed resources. |
/portaljs-connect-ckan url=https://demo.dev.datopian.com
/portaljs-connect-ckan url=https://demo.dev.datopian.com org=my-org
/portaljs-connect-ckan url=https://data.example.gov group=education dir=./my-portal
🌀 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…