You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Data toolkit for Icelandic public data, built around Claude Code. The .claude/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.
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 Claude Code to research questions, join data sources, or produce outputs — a gist, a CSV, an HTML report, whatever fits.
Currently ~30 skills covering national statistics, government dashboards
(mælaborð), regulatory filings, and utility APIs. Full per-skill docs live in
.claude/skills/; CLAUDE.md is the authoritative
index and quick-commands reference.
Statistics & macroeconomic
Source
Description
Hagstofa Íslands
PX-Web API — economic, demographic, trade, income series
Seðlabanki
SDMX API — monetary policy, financial stability, FX history via ECB
Tekjusagan
Income-history dashboard — 5 Power BI report routes (Forsætisráðuneytið)
Velsældarvísar
Hagstofa indicator catalogs — well-being + social + cultural (88 indicators → 77 PX tables)
Heimsmarkmið
UN SDG national statistics — 137 indicators across all 17 goals (open-sdg ZIP bundle)
Ríkisreikningur
State accounts — yearly afkoma 2015+, málefnasvið breakdowns, 35 published files (Azure Functions API)
Government dashboards (mælaborð)
Systematic coverage of public dashboards published under Iceland's data-access law.
Source
Description
Landlæknir
33 Directorate-of-Health Power BI dashboards + Talnabrunnur PDFs
Vinnumálastofnun
Registered unemployment — Power BI + monthly Excel
Farsæld barna
Child-wellbeing dashboard (static-data Power BI)
Mælaborð landbúnaðarins
3 Power BI dashboards — subsidies, livestock, markets
Ferðamálastofa
Keflavík passengers, flights, accommodation — Power BI scraping
Umferð (Vegagerðin)
168+ traffic counters — real-time 15-min + 7-day rolling daily
Take-home salary calculator with tax/pension breakdown
Gengi (Borgun)
Currency exchange rates (card rates, not interbank)
Legal & civic
Source
Description
Dómstólar
Court rulings — Héraðsdómstólar, Landsréttur, Hæstiréttur via RSS + scraping
Reykjavíkurborg
CKAN + PX-Web APIs for municipal services, demographics, welfare, Opin Fjármál
Setup
./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
Usage
# 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 fetch
See CLAUDE.md for the full command catalog across every skill.
Tests
uv run pytest -m "not slow"# fast unit tests (~200ms)
uv run pytest -m slow # network + Playwright tests (several minutes)
Adding a new data source
See .claude/skills/new_data_source.md for
the methodology — discovery, probing, skill authoring, script conventions,
testing, and visualization.
About
Data toolkit for Icelandic public data, built around Claude Code