Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Summary

owid-data-web plugin.

Install to Claude Code

/plugin install owid-data-web@owid-claude-plugins

Run in Claude Code. Add the marketplace first with /plugin marketplace add owid/owid-claude-plugins if you haven't already.

README.md

OWID Skills

Agent skills for working with Our World in Data. Teach your AI coding agent — Claude Code, OpenAI Codex, Gemini CLI, Cursor, GitHub Copilot, and others — to search our charts, download the data behind them, and analyze it correctly.

Our World in Data publishes thousands of charts and datasets on global problems: poverty, health, energy, climate, education, and more. These skills give agents the knowledge to use that data well — the right APIs, the right query parameters, and the caveats that matter (country harmonization, citations, metadata).

> Status: early and experimental. Interfaces may change. Feedback and issues are welcome!

What you can do

Once installed, you can ask your agent things like:

  • "Get life expectancy data for the US and UK since 1950 and plot the trend."
  • "Find OWID charts about renewable energy adoption."
  • "Download CO₂ emissions per country and compute per-capita values using OWID population data."
  • "Make a scatter plot of child mortality against GDP per capita."

The skills trigger automatically when relevant — you don't need to invoke them by name.

Skills

Skills follow the open Agent Skills format (SKILL.md), so they work with any agent that supports the standard.

| Skill | What it does | Requires | |---|---|---| | search-charts | Search OWID's published charts by keyword | curl, jq | | fetch-chart-data | Download the data and metadata behind any chart | curl, jq | | joining-data | Join OWID data with external sources (per-capita metrics, scatter plots vs GDP, …) | duckdb | | owid-catalog | Python-native access to the full OWID catalog (charts, tables, indicators) via the owid-catalog library | uv (or pip) |

The HTTP-based skills are lightweight and language-agnostic. owid-catalog is the richer option when Python is available — it returns metadata-aware DataFrames and covers the full data catalog beyond published charts.

Installation

Claude Code

Install as a plugin from the marketplace:

/plugin marketplace add owid/skills
/plugin install owid@owid-skills

Other agents (Codex, Gemini CLI, Cursor, Copilot, …)

These are standard Agent Skills, read as-is by Codex, Gemini CLI, Cursor, GitHub Copilot, and many other tools — no Claude-specific setup required. The skills CLI detects which of your installed agents support skills (75+ supported) and copies them into each one's directory:

npx skills add owid/skills            # into the current project
npx skills add owid/skills --global   # user-level, across all your projects

Add --agent '*' to install to every supported agent, or --list to preview the skills first.

Manual

The skills are plain Agent Skills folders, so you can also copy or symlink them into whatever directory your agent reads. Clone the repo:

git clone https://github.com/owid/skills owid-skills

Then put owid-skills/skills/* where your agent looks for skills:

  • Per project./.agents/skills/ (the shared convention read by Codex, Cursor, OpenCode, …)
  • Per user — your agent's own skills directory, e.g. ~/.codex/skills/, ~/.gemini/skills/, or ~/.claude/skills/

Prerequisites

The skills use a few common command-line tools: curl, jq, duckdb, and uv. Install them with your package manager (e.g. brew install jq duckdb uv), or on macOS run:

curl -sSL https://raw.githubusercontent.com/owid/skills/main/install-prerequisites-macos.sh | bash

Using the data

Data published by Our World in Data is open: it is available under the Creative Commons BY license, and it builds on the work of the original data providers. The skills instruct agents to surface proper citations — please keep them when you publish results.

Development

Want to add or improve a skill? See AGENTS.md for repo conventions (skill layout, registration, testing). In short:

  • Each skill is a directory under skills/ with a SKILL.md (frontmatter name must match the directory name).
  • Register new skills in .claude-plugin/marketplace.json.
  • Test with claude plugin validate . and by loading the plugin directly: claude --debug --plugin-dir .
  • Plugins are versionless on purpose: every commit to main is a release.

This repository is limited to skills that rely on public OWID endpoints and common CLI tools; skills that require OWID-internal infrastructure or credentials are out of scope.

License

Apache-2.0

Related plugins

Browse all →