Official Agent Skills for the OpenData platform
Start reading — 21 minnpx skills add tryopendata/skills/plugin marketplace add tryopendata/skillsMIT127 stars7,542 wordsUpdated 25 July 2026
Agent skills for data, visualizations, and design. Built on the Agent Skills spec (opens in a new tab), distributed as a Claude Code plugin marketplace (opens in a new tab).
| Plugin | What it does | Skills |
|---|---|---|
| opendata | Query and analyze public datasets via the OpenData API | opendata-api |
| openchart | Generate charts, tables, graphs, and sankey diagrams with OpenChart (opens in a new tab) | openchart |
| opendesign | Create SVG logos, icons, and graphics | svg-design |
Add the marketplace, then install whichever plugins you need:
/plugin marketplace add tryopendata/skills/plugin install opendata@opendata-skills
/plugin install openchart@opendata-skills
/plugin install opendesign@opendata-skillsOr from the CLI directly:
claude plugin marketplace add tryopendata/skills
claude plugin install opendata@opendata-skillsYou can scope the install with --scope project (shared via version control) or --scope local (gitignored). Default is user (available everywhere).
Each skill is a standalone Agent Skills spec (opens in a new tab) directory with a SKILL.md file. To use them on other platforms, copy the skill directory you want into your platform’s skills location (typically .agents/skills/):
plugins/<plugin>/skills/<skill-name>/ # copy this directoryFor example, to add svg-design to a Codex project:
cp -r plugins/opendesign/skills/svg-design .agents/skills/svg-designCheck your platform’s Agent Skills docs (opens in a new tab) for where it discovers skills.
Migrating from pre-1.0?
svg-designmoved from theopenchartplugin to the newopendesignplugin in v1.0.0.
.claude-plugin/
marketplace.json # Claude Code marketplace registry
plugins/
opendata/ # OpenData plugin
skills/
opendata-api/
openchart/ # OpenChart plugin
skills/
openchart/
opendesign/ # OpenDesign plugin
skills/
svg-design/Each skill is a directory with a SKILL.md file:
skills/<name>/
├── SKILL.md # Instructions with YAML frontmatter (name + description)
├── evals/ # Test cases for output quality verification
├── scripts/ # Bundled executable code
├── references/ # Supplementary docs loaded on-demand
└── assets/ # Templates, schemas, static resourcesplugins/<plugin>/skills/ with a SKILL.md fileMIT
main, last pushed 25 July 2026.SKILL.md, not by matching a directory convention. 3 distinct layouts observed: plugins/openchart/skills/*/SKILL.md, plugins/opendata/skills/*/SKILL.md, plugins/opendesign/skills/*/SKILL.md.h1 and no skipped levels:.claude-plugin/marketplace.json by OpenData, declaring 3 plugins. It is read for editorial metadata only — never as the skill index, which is always the repository tree./tryopendata/skills.md, and each skill at its own .md URL.