Data toolkit for Icelandic public data, built around Claude Code and Codex. The .agents/skills/ files document each data source — API endpoints, series codes, encoding quirks, classification changes — and the scripts/ directory has Python scripts that fetch, clean, and transform the data.
The data sources badge reports upstream health, not this repo's code: a source only turns it
red after 7 straight days down or returning the wrong shape. Anything shorter is weather —
these are public APIs and they blink. Details in
AGENTS.md; raw history is on the
health-history branch.
Not a portable skill library. The skills reference co-located scripts, assume local tooling (uv, duckdb, playwright), and work as a unit. Clone the repo, run setup, and use an agent to research questions, join data sources, or produce outputs — a gist, a CSV, an HTML report, whatever fits.
.agents/skills/{source}/SKILL.md → Data source docs (API, endpoints, caveats)
scripts/{source}.py → Fetch + transform scripts
tests/health/test_{source}.py → Upstream health probes (marker: health)
data/raw/{source}/ → Raw downloads
data/processed/ → Cleaned datasets
Skills follow the agentskills.io open standard. .agents/skills/
is the real location (read natively by Codex); .claude/skills symlinks to it for Claude
Code, and CLAUDE.md symlinks to AGENTS.md. One set of files, both agents.
Currently 45 skills covering national statistics, government dashboards
(mælaborð), regulatory filings, and utility APIs. Each skill's frontmatter
description is its index entry — run ls .agents/skills/ to enumerate them, and see
AGENTS.md for the quick-commands reference.
The light in each row is that source's current verdict, refreshed daily and finer-grained
than the badge above (which waits a full week before going red):
healthy ·
flaky (failed but recovered — these APIs blink) ·
dead, or the skill no longer matches the source ·
not enough observations yet.
A
· means there is nothing upstream to probe.
Per-source uptime and last error are in the
workflow summary.
Systematic coverage of public dashboards published under Iceland's data-access law.
| Source | Description | |
|---|---|---|
| Samgöngustofa | Vehicle registrations by make, fuel type, location — Power BI | |
| car (island.is) | Per-vehicle lookup by plate/VIN via public GraphQL API |
| Source | Description | |
|---|---|---|
| Laun (payday.is) | Take-home salary calculator with tax/pension breakdown | |
| Gengi (Borgun) | Currency exchange rates (card rates, not interbank) |
./setup.sh # Install CLI tools (jq, duckdb, uv, etc.)
uv sync # Install Python dependencies
uv run playwright install chromium # Only if you plan to use Power BI / SPA scrapers# Process data
uv run python scripts/sedlabanki.py
uv run python scripts/fuel.py
# Query with DuckDB
duckdb -c "SELECT * FROM 'data/processed/*.csv' LIMIT 10"
# Company financials pipeline
uv run python scripts/financials.py company <kennitala> --year 2024
# Scrape a government dashboard
uv run python scripts/landlaeknir.py list
uv run python scripts/landlaeknir.py fetch --slug mortis
# Build the indicator catalog for visar.hagstofa.is
uv run python scripts/velsaeldarvisar.py fetchSee AGENTS.md for the full command catalog across every skill.
uv run pytest -m "not slow" # fast unit tests (~0.5s) — what PR CI runs
uv run pytest -m slow # network + Playwright tests (several minutes)
uv run pytest -m health # upstream health probes
uv run pytest -m health -k hagstofan # probe one sourceHealth probes check that each upstream source still serves the smallest contract
its script depends on. They run daily in CI; browser-based probes are
manual-dispatch only. See .github/workflows/source-health.yml.
See the new-data-source skill for
the methodology — discovery, probing, skill authoring, script conventions,
testing, and visualization.