Skip to content
Development
Skill

/portaljs-add-dcat

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 profiles) in JSON-LD, Turtle, and RDF/XML at build, with autodiscovery and per-profile conformance checking. Use when a

From plugin
portaljs
2.3k14 skills25 commands
Install
$ npx -y skills add datopian/portaljs --skill portaljs-add-dcat --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/portaljs-add-dcat

Context preview

The summary Claude sees to decide when to auto-load this skill.

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 profiles) in JSON-LD, Turtle, and RDF/XML at build, with autodiscovery and per-profile conformance checking. Use when a

SKILL.md

portaljs-add-dcat.SKILL.md
name: portaljs-add-dcat
description: 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 profiles) in JSON-LD, Turtle, and RDF/XML at build, with autodiscovery and per-profile conformance checking. Use when a portal needs to be harvested by data.europa.eu, data.gov, or a national open-data catalog.
allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(npx:*), Bash(node:*), 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
  - dcat
  - interoperability
  - rdf
  - jsonld

PortalJS — Add DCAT

Overview

Turn an existing PortalJS (`portaljs-catalog`) portal into a harvestable data catalog. PortalJS is Frictionless-native — a dataset is a Data Package (see `portaljs-define-schema`) — and DCAT is the serialization + harvest layer on top (`lib/metadata/dcat.ts` + `lib/metadata/dcat-profiles.ts`). This skill selects one or more DCAT application profiles, maps every dataset's metadata to them, and writes static feed files at build time — JSON-LD, Turtle, and RDF/XML — so external catalogs (data.europa.eu, data.gov, national portals) can harvest the datasets automatically, on any static host, with no runtime.

Prerequisites

  • A scaffolded PortalJS portal with `datasets.json`, `package.json`, and

`lib/metadata/` (the metadata-profile contract) present.

  • `lib/metadata/dcat.ts` (the DCAT-3 core) already in place — profiles augment it.
  • Node 18+ and npm available in the portal directory.
  • For DCAT-AP / DCAT-US: a publishing organization (name + homepage) and a contact

(name + email) — both profiles require `dct:publisher` and `dcat:contactPoint`.

  • Optional but recommended: network access to run SHACL conformance checks against the

official EU ITB validator or `pyshacl`.

Instructions

The canonical, full step-by-step workflow is [`.claude/commands/portaljs-add-dcat.md`](https://github.com/datopian/portaljs/blob/main/.claude/commands/portaljs-add-dcat.md) — the single source of truth. Read and follow it when executing. Summary:

1. Gather input from `$ARGUMENTS` (interview if thin): portal directory (default `.`), profiles (default `["dcat-3"]`), site URL, publisher, contact, license, themes, languages, access level. 2. Validate the portal directory: confirm `datasets.json`, `package.json`, and `lib/metadata/` exist; stop with an `ERROR:` if the metadata contract is missing. 3. Ensure the DCAT profile layer is present — `dcat-profiles.ts`, `dcat-rdf.ts`, `dcat-validate.ts` — copying canonical versions from `examples/portaljs-catalog` if the portal predates this skill. 4. Ensure `scripts/generate-dcat.ts` is wired to `predev`/`prebuild` and emits per-profile x serialization feeds from `dcat.config.json`. 5. Write `dcat.config.json` with the gathered profiles, publisher, contact, license, themes, and access level. 6. Add feed autodiscovery: a `<link rel="alternate" type="application/ld+json">` to `pages/_document.tsx` pointing at `/catalog.jsonld`. 7. Generate the feeds and check conformance: run `npm run generate:dcat` and surface any missing mandatory fields. 8. Verify the RDF: confirm the JSON-LD parses, and cross-check that JSON-LD, Turtle, and RDF/XML agree; run SHACL validation (ITB for DCAT-AP, `pyshacl` for DCAT-US) when network/tooling allow. 9. Verify the build with `npx next build`; fix errors before reporting success. 10. Report the profiles emitted, feed paths, conformance status, and next steps (register with the harvester, run `portaljs-deploy`).

Output

  • **Created/modified:** `dcat.config.json` (committed config).
  • **Generated (build artifacts, gitignored):** `public/catalog.jsonld` /`.ttl`/`.rdf`

(canonical feed), `public/catalog.<profile>.{jsonld,ttl,rdf}` per configured profile, `public/catalog-feeds.json` (feed index).

  • **Modified:** `pages/_document.tsx` (autodiscovery `<link>`), `package.json`

(`generate:dcat` script wired to `predev`/`prebuild`).

  • **Verified:** feeds are valid JSON-LD/Turtle/RDF-XML, conformance status reported,

`npx next build` passes.

Error Handling

| Symptom | Cause | Fix | | --- | --- | --- | | `NO_METADATA_CONTRACT` | `lib/metadata/` not found | Portal predates the metadata-profile contract; scaffold with `portaljs-new-portal` or add `lib/metadata` first. | | `NO_DCAT_CORE` | `lib/metadata/dcat.ts` not found | The DCAT-3 core is missing; update the portal template before adding profiles. | | `BAD_CONFIG` | `dcat.config.json` is not valid JSON | Fix the syntax and re-run `npm run generate:dcat`. | | `UNKNOWN_PROFILE` | Profile id not in the registry | Use one of `dcat-2`, `dcat-3`, `dcat-ap`, `dcat-us`, `geodcat-ap`, `croissant`, `dcat-ap-se`, `dcat-ap-ch`, `dcat-ap-de`, or register a national profile first. | | Feed flagged non-conformant | `publisher`/`contactPoint` missing for DCAT-AP or DCAT-US | Ask the user for the publishing organization and contact, add to `dcat.config.json`, regenerate. | | DCAT-US SHACL rejects the publisher | Publisher has no IRI (blank node) | Set `publisher.uri` (or `homepage`) in `dcat.config.json`. | | `next build` fails after config change | Malformed JSON in `dcat.config.json` or `datasets.json` | Print the build log, fix the JSON, rebuild before reporting success. |

Examples

Example 1 — Default DCAT-3 feed, no national harvesting

/portaljs-add-dcat

Emits the canonical `public/catalog.jsonld`/`.ttl`/`.rdf` under the default `dcat-3` profile, adds autodiscovery to `_document.tsx`, and wires `generate:dcat` into `predev`/`prebuild`. No publisher/contact required.

Example 2 — EU harvesting via DCAT-AP

/portaljs-add-dcat profiles=dcat-ap site=https://data.example.org

Prompts fo

Read more
Ships withportaljs

🌀 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).

Get the whole plugin

Other skills on portaljs.