Imported from owid/etl (
.claude/skills/add-provider-regions/SKILL.md). Install upstream withnpx skills add owid/etl --skill add-provider-regions. Copyright stays with the author.
Add provider regions
Add an external data provider's regional grouping (World Bank, WHO, UN, IEA, Pew, Maddison, WID, ILO, …) to OWID's shared regions dataset. The regions are defined once in regions.yml; the grapher step then turns each provider into a categorical country→region map indicator ({defined_by}_region) that powers the world-region-map-definitions page.
There are two repos involved: the etl repo (Steps 1–8 — definitions, indicators, metadata, optional chart migration) and the owid-grapher repo (Step 9 — registering the provider in the frontend so its regions show up in entity selectors, tooltips, and admin presets). The owid-grapher work is a separate PR done after the ETL regions are merged and published to the catalog.
The defining principle of this skill: the country composition of each region must come from the source — either the provider's own dataset or a reference document the provider publishes — and be verified by set-equality. Never hand-type or guess which countries belong to a region.
Inputs
- Provider — name and a short slug for
defined_by(e.g.wb,who,maddison). Region names will be suffixed(Provider). - Dataset path (if one exists) — the provider's garden/grapher dataset, e.g.
data/garden/<ns>/<version>/<short_name>. Many providers ship their regional grouping inside their own dataset. - Reference URL (optional) — where the provider publishes the classification, used only if the dataset doesn't encode it.
All paths below are repo-relative. Always use .venv/bin/ for python/etl/etlr.
The files you'll touch in etl:
etl/steps/data/garden/regions/2023-01-01/regions.yml— region definitions (the header comment documents every field).etl/steps/data/grapher/regions/2023-01-01/regions.py— builds the{defined_by}_regionindicators (only edit for a cross-tier back-fill, Step 3).etl/steps/data/grapher/regions/2023-01-01/regions.meta.override.yml— origin anchors + per-indicator metadata.- Not
regions.codes.csv— that file lists countries and OWID historical codes only; provider aggregates never go there.
And in owid-grapher (Step 9, separate PR): the auto-generated packages/@ourworldindata/utils/src/regions/regions.data.ts, a few hand-maintained label registries, and the two region-color dictionaries in packages/@ourworldindata/grapher/src/color/CustomSchemes.ts. Reference PRs: owid/owid-grapher#6465 (IEA regions) and #6852 (regions colored by name on categorical maps).
Step 1 — Find the region composition (the key check)
Inspect the provider's dataset for an embedded aggregation, in this priority order:
- A categorical
region/subregioncolumn mapping each country to its region. - Region entities present as rows in the data (e.g.
"East Asia (Provider)"alongside countries). - A table-of-contents / dictionary table with tier columns (some providers ship
*_region,*_subregion_broad,*_subregion_detailedstyle columns — these are authoritative tier definitions).
from owid.catalog import Dataset
ds = Dataset("data/garden/<ns>/<version>/<short_name>")
print(ds.table_names)
tb = ds.read("<table>", safe_types=False)
print([c for c in tb.columns])
# region column -> country mapping:
print(tb.dropna(subset=["region"]).groupby("region")["country"].unique())
# or region entities present in the data:
print(sorted(c for c in tb["country"].unique() if "(" in str(c)))
If the composition is in the data: derive each region's member set directly from it. This is the source of truth.
If it is NOT in the data: ask the user for a reference — a link, PDF, or doc where the provider publishes the classification (e.g. a "regional groupings" page or methodology annex). Fetch it with WebFetch and derive membership from there. Keep the reference URL; it becomes the origin url_main in Step 6.
Lesson: membership comes from the source and is verified by set-equality — not from judgment or memory.
Step 2 — Resolve members to OWID region codes
Each member must map to a code that exists in regions.yml. Use regions.codes.csv for ISO alpha-2/alpha-3, with a name/alias fallback for non-standard codes (microstates, Kosovo-style cases).
import csv, yaml
regions = yaml.safe_load(open("etl/steps/data/garden/regions/2023-01-01/regions.yml"))
by_code = {r["code"]: r for r in regions}
name_to_code = {}
for r in regions:
name_to_code.setdefault(r["name"], r["code"])
for a in r.get("aliases", []):
name_to_code.setdefault(a, r["code"])
alpha2, alpha3 = {}, {}
for row in csv.DictReader(open("etl/steps/data/garden/regions/2023-01-01/regions.codes.csv")):
if row["iso_alpha2"]: alpha2[row["iso_alpha2"]] = row["code"]
if row["iso_alpha3"]: alpha3[row["iso_alpha3"]] = row["code"]
def resolve(member): # member is a provider country name or code
return alpha2.get(member) or alpha3.get(member) or name_to_code.get(member)
unresolved = [m for m in provider_members if resolve(m) is None]
assert not unresolved, f"Resolve these before continuing: {unresolved}"
Handle deliberately:
- Historical entities the provider assigns to a region (
OWID_USS,OWID_CZS,OWID_YGS,OWID_SDN, …) — include them where the source does. - OWID aggregate codes (e.g. Channel Islands
OWID_CIS) — if the provider lists a sub-territory that OWID models as an aggregate, decide once where it lives and avoid listing it twice across regions (the garden step's duplicate-member check will catch a double-count). Document any such choice with a# NOTE:in the YAML. - A region's
membersmay reference other aggregate codes (not just countries); the garden step'sreplace_aggregate_membersexpands them recursively (see UN M49 inregions.ymlfor the pattern).
Step 3 — Decide the tier structure
- Single flat partition (most providers): one
defined_by: <provider>, one indicator. Done. - Hierarchical provider (broad regions split into subregions): use one
defined_byper level —<provider>_1(broadest),<provider>_2, … Look at the existingun_m49_1/2/3andilo_1/ilo_2sections inregions.ymlas templates.
Why split: the grapher step inverts all aggregates sharing a defined_by into a single country→region column. If two tiers share one defined_by, every country lands in 2+ regions, producing "belongs to multiple regions" warnings and a scrambled, order-dependent indicator. One defined_by per level keeps each indicator a clean partition.
Two rules for multi-tier providers:
- Completeness: each kept tier must partition the provider's covered world. You cannot keep a sub-breakdown of one parent without its siblings — e.g. if you keep one parent's sub-regions, keep every parent's, so the tier still covers everyone. Drop intermediate levels that don't form a complete partition; keep only tiers that are both useful and complete.
- Region shared across tiers: when one region exists at two levels (a broad region with no finer breakdown), it carries a single
defined_by, so it appears natively in only one indicator. Tag it at one level, then back-fill it into the other level's indicator in the grapher step — mirror the existingprocess_un_definitionspattern ingrapher/regions/2023-01-01/regions.py(one extrafillna/masked assignment after the inversion loop).
Step 4 — Edit regions.yml
Append a section, delimited like the others:
##########
# <Provider full name>
##########
- code: PROVIDER_XXX
name: "<Region> (<Provider>)"
region_type: "aggregate"
defined_by: <provider> # or <provider>_1 / <provider>_2 for tiers
members:
- ISO3
- ISO3
- PROVIDER_SUB # may reference another aggregate code
- Names carry the
(Provider)suffix and should match the entity names the provider's own dataset publishes (so charts line up). - Codes are
PROVIDER_XXX, uppercase, unique. - For composite levels whose members are sub-aggregates, you can either list the sub-aggregate codes (expanded recursively) or list the union of countries directly. When you need the country union, compute it programmatically rather than hand-typing:
def expand(code):
out = []
for m in by_code[code]["members"]:
out.extend(expand(m) if m in by_code and m.startswith("PROVIDER_") else [m])
return sorted(set(out))
For anything beyond a couple of regions, regenerate the whole provider section with a small script (compute members, emit the YAML block, splice it into the file) rather than many manual edits — it's less error-prone and keeps formatting uniform.
Step 5 — Build and verify the garden step
.venv/bin/etlr data://garden/regions/2023-01-01/regions --private
(No --force — editing the YAML is enough to trigger a rebuild.) The step runs sanity checks: unique codes/names, unique members within a region, all referenced codes exist, and cycle detection during aggregate expansion.
Then verify against the source and the partition property:
from owid.catalog import Dataset
import json
tb = Dataset("data/garden/regions/2023-01-01/regions").read("regions").reset_index()
# 1) set-equality vs the source mapping (expected = region -> set of OWID codes from Step 1/2)
m = {r["code"]: set(json.loads(r["members"])) for _, r in tb[tb["defined_by"].str.startswith("<provider>")].iterrows()}
for code, exp in expected.items():
assert m[code] == exp, f"{code}: missing {exp - m[code]}, extra {m[code] - exp}"
# 2) each tier partitions the same set and is pairwise-disjoint
for tier, codes in {"<provider>_1": [...], "<provider>_2": [...]}.items():
union = set().union(*(m[c] for c in codes))
for i, a in enumerate(codes):
for b in codes[i+1:]:
assert not (m[a] & m[b]), f"{a} & {b} overlap in {tier}"
print(tier, len(union), "countries")
If a sanity check fails, fix the upstream logic or the membership — don't suppress the assertion.
Step 6 — Grapher indicators + metadata
The grapher step auto-creates a {defined_by}_region column for every defined_by. Each needs a metadata block or the build fails on a missing title (grapher_checks).
6a. Origin anchor — add to the definitions: block in regions.meta.override.yml, taken from the provider dataset's actual origin:
from owid.catalog import Dataset
ds = Dataset("data/garden/<ns>/<version>/<short_name>")
tb = ds.read(ds.table_names[0], safe_types=False)
o = tb[[c for c in tb.columns if c not in ("country", "year")][0]].metadata.origins[0]
print(o.producer, "|", o.title, "|", o.url_main, "|", o.date_accessed, "|", o.attribution, "|", o.attribution_short)
origins_<provider>: &origins_<provider>
producer: <producer>
title: <title>
url_main: <url_main> # or the reference URL from Step 1
date_accessed: "<YYYY-MM-DD>"
attribution: <attribution> # only if the source defines it
attribution_short: <short> # only if the source defines it
Omit
date_published. Region definitions are time-invariant; a publication year would render next to the source line below the chart, where it's meaningless.
6b. Indicator block — one per {defined_by}_region, under tables.regions.variables:
<provider>_region: # or <provider>_1_region / <provider>_2_region
title: World regions according to <Provider>
description_short: |-
Regions as defined by <Provider full name>.
type: ordinal
sort: # legend/map order — see ordering rule below
- <Region> (<Provider>)
- ...
origins:
- *origins_<provider>
presentation:
grapher_config:
hideAnnotationFieldsInTitle:
time: true # hide the placeholder data year in titles
map:
tooltipUseCustomLabels: true # tooltip shows the stripped label too — see below
colorScale:
baseColorScheme: OwidCategoricalMap # name-keyed region colors — see Step 9
customCategoryLabels:
# one entry per region in `sort` — drops the suffix from the
# legend, and from the tooltip via the flag above
"<Region> (<Provider>)": "<Region>"
customHiddenCategories:
"No data": true
# No customCategoryColors. Colors live in MapContinentColors (Step 9),
# keyed by region name; a block here would override them and fork the
# source of truth.
customCategoryLabelsalone only fixes the legend. Hovering a country still shows the raw"<Region> (<Provider>)", because the map tooltip falls back to the unformatted value unlessmap.tooltipUseCustomLabels: trueis set (MapChartState.formatValueForTooltip— it looks up the bin's label only behind that flag). Set both, always, and give every region insorta label entry: a region you miss keeps its suffix in the legend and the tooltip while its siblings lose theirs, which reads as a data error rather than a missing config line.
Set the palette, don't hardcode the colors. A categorical map with no
baseColorSchemefalls back toBuGn— a sequential green ramp (MapChartState.ts:53). Region colors are only looked up by name when the map is onOwidCategoricalMap, the scheme that carriescolorMap: MapContinentColors. Setting it on the indicator means every chart built on it inherits the palette (the same inheritance that already carriescustomCategoryLabels). A chart's own patch still wins over the inherited value, so once the chart exists, confirm on staging that it isn't patched to something else (world-regions-according-to-pewis patched tocontinents— a chart palette on a map, which pulls the strong colors instead of the muted ones).
Ordering rule for
sort: the map legend renders as a single row insortorder, so order the regions to read left-to-right across a world map. The house sweep is:(North/Northern) America → Latin America / Caribbean → Africa (north to south within the slot) → Middle East / North Africa → Europe → CIS / Russia / Central Asia → South Asia → East and South-East Asia → Australia and New Zealand → Oceania
Drop what the provider doesn't have, keep the rest in this relative order. Three wrinkles worth knowing. Europe sits after Africa and the Middle East, because Europe and Africa share the same longitudes (Europe north, Africa south) so west-to-east alone can't separate them — the convention sweeps the southern band first. At sub-region granularity, a "Western Asia" that the provider models as part of Asia stays in the Asia block rather than moving up to the Middle East slot (compare
un_m49_2withei). And which Africa regions land in the Africa slot depends on how the provider splits the continent: where Africa has its own sub-regions they run north to south inside the slot —Northern AfricathenSub-Saharan Africa(un_m49_2,ilo_2), orNorthern Africathen the compass sub-regions (fao_2). Where instead North Africa is folded into a Middle East and North Africa bucket, that bucket is not part of the Africa slot at all — it takes the Middle East slot — soSub-Saharan Africais alone in the Africa slot and therefore comes first (wb,unsdg,pew,wid,fao_sdg).The order is defined twice — keep the two equal. This
sortdrives the published map's legend;customRegionDisplayOrder[<provider>]in owid-grapher'sRegionTooltipData.ts(Step 9) drives the legend of the mini-map in the region hover. When they diverge, the same provider lists its regions in two different orders on the same page. TreatcustomRegionDisplayOrderas the reference and copy it intosortverbatim; if you're adding a new provider, write the order once and paste it into both.
Reordering is only color-safe once the regions are pinned. For a region with a
MapContinentColorsentry,sortmoves legend positions and nothing else — the color follows the name. For a region without one,OwidCategoricalMapfalls back to handing out palette colors by position, so reordering silently recolors the map. Check every region of the tier againstMapContinentColorsbefore touchingsort: if any are unpinned, pin them first (Step 9, with the design sign-off) and reorder in the same change, or leave the order alone and say why in a# NOTE:beside it. The two edits look independent and are not.
6c. Cross-tier back-fill — if Step 3 found a region shared across tiers, add the masked back-fill to grapher/regions/2023-01-01/regions.py after the inversion loop (see the existing process_un_definitions example for the shape).
6d. Build and verify:
.venv/bin/etlr data://grapher/regions/2023-01-01/regions --private
from owid.catalog import Dataset
tb = Dataset("data/grapher/regions/2023-01-01/regions").read("regions")
for col in ["<provider>_region", ...]:
o = tb[col].metadata.origins[0]
print(col, tb[col].notna().sum(), "countries,", tb[col].nunique(), "categories | attr:", o.attribution_short, "| date_published:", o.date_published)
Confirm: the new columns exist with titles, attribution carried, date_published is None, no "belongs to multiple regions" warning in the build log, and (multi-tier) each indicator covers the full partition.
Step 7 (optional) — Migrate an existing in-dataset region chart
Do this only if the provider's own dataset already has a region variable powering a region-definition map chart that should now read the shared indicator (an "indicator upgrade"). Skip otherwise.
Find the old variable and its chart on the staging DB for the current branch:
from etl.config import OWID_ENV
# variables of the provider dataset (note: query % LIKE with params=)
OWID_ENV.read_sql("""
SELECT v.id, v.shortName FROM variables v JOIN datasets d ON v.datasetId=d.id
WHERE d.shortName=%(s)s AND v.shortName='region'
""", params={"s": "<short_name>"})
# charts using it — slug lives on chart_configs, not charts
OWID_ENV.read_sql("""
SELECT c.id, cc.slug, cc.config->>'$.title' AS title
FROM charts c JOIN chart_dimensions cd ON cd.chartId=c.id
JOIN chart_configs cc ON cc.id=c.configId
WHERE cd.variableId=%(v)s
""", params={"v": OLD_VAR_ID})
Repoint the chart at the new {provider}_region variable:
from etl.config import OWID_ENV
from apps.chart_sync.admin_api import AdminAPI
api = AdminAPI(OWID_ENV)
cfg = api.get_chart_config(CHART_ID)
cfg["dimensions"] = [{"property": "y", "variableId": NEW_VAR_ID}]
cs = cfg.setdefault("map", {}).setdefault("colorScale", {})
# re-key the labels onto the NEW "(Provider)"-suffixed category values (the new
# variable's categories carry the suffix):
cs["customCategoryLabels"] = {f"{name} (<Provider>)": name for name in OLD_REGION_NAMES}
# put the map on the name-keyed palette and drop any hardcoded colors — the old
# chart's customCategoryColors would override MapContinentColors (Step 9):
cs["baseColorScheme"] = "OwidCategoricalMap"
cs.pop("customCategoryColors", None)
api.update_chart(CHART_ID, cfg)
Staging admin writes work behind Tailscale without ADMIN_API_KEY. The change surfaces in chart-diff for review before it reaches production. Verify by re-reading the config: dimensions point at the new variable, labels are re-keyed, customCategoryColors is gone, and the map renders in the muted map colors (chart-diff will show the color change — that's expected, and it's what Step 9 pins).
Step 8 — Commit and open a PR
make check
git add etl/steps/data/garden/regions/2023-01-01/regions.yml \
etl/steps/data/grapher/regions/2023-01-01/regions.meta.override.yml \
etl/steps/data/grapher/regions/2023-01-01/regions.py # if back-fill added
git commit -m "📊🤖 Add <Provider> regions to regions dataset"
If not already on a feature branch, create one and a PR with etl pr "Add <Provider> regions" data, then push. In the PR body, open with the disclosure blockquote (> _Written by Claude <model name> — @<handle> at the wheel._, model name = the model actually generating the content) and keep any reviewer attribution out of committed code/YAML.
Heads-up: once this merges, the post-merge deploy is slow — editing the regions dataset invalidates much of the DAG, so it can take hours for the new regions to reach the production catalog. The owid-grapher follow-up (Step 9) can't start until they do, so don't expect to chain straight into it.
Step 9 — Register the provider in owid-grapher (separate repo + PR)
The grapher frontend keeps its own copy of the regions and a few hand-maintained registries. The provider must be added there too, or its (Provider) entities won't be grouped/labelled correctly in entity selectors, map tooltips, and admin presets. Reference: owid/owid-grapher#6465 (IEA).
Sequencing — and expect a long wait: the frontend's regions.data.ts is regenerated from the production catalog (https://catalog.ourworldindata.org/external/owid_grapher/latest/regions/regions.csv). So do Step 9 after the ETL PR (Step 8) is merged and the data://external/owid_grapher/latest/regions step has rebuilt on prod. That rebuild is slow — often hours, not minutes — because editing the regions dataset invalidates a huge swath of the DAG (almost everything that aggregates by region or merges population/regions depends on it), so the post-merge deploy has a lot to rebuild before the new regions reach the catalog. Don't run yarn runRegionsUpdater until the regions are actually live there, or it'll regenerate from stale data. Verify first:
curl -s "https://catalog.ourworldindata.org/external/owid_grapher/latest/regions/regions.csv?nocache" | grep -c "PROVIDER_"
A non-zero count means it's ready. If you're waiting, poll this every few minutes rather than running the updater blind.
Preview from your ETL branch's staging catalog while you wait. The updater reads
ETL_REGIONS_URLif it's set (devTools/regionsUpdater/update.ts), and every ETL staging server publishes its own catalog on port 8881 with the same schema as prod. So you can regenerateregions.data.ts— and everything downstream of it, including the colors and the test page — before the ETL PR is anywhere near merged:The host name is not the branch name — derive it, don't hand-write it.
etl.config.get_container_name()replaces/,.and_with-, strips a leadingstaging-site-, truncates what's left to 28 characters, then drops any trailing hyphen. Substituting the raw branch (or truncating it yourself) silently produces a host that is either unreachable or, worse, another branch's staging server. Get it from the etl repo:.venv/bin/python -c "from etl.config import get_container_name; print(get_container_name('<etl-branch>'))"Then, in owid-grapher, use that value (it already carries the
staging-site-prefix):ETL_REGIONS_URL="http://<container-name>.tail6e23.ts.net:8881/external/owid_grapher/latest/regions/regions.csv" \ yarn runRegionsUpdaterUse this for previews and for the color review only — before merging the grapher PR, re-run
yarn runRegionsUpdaterwith no env var so the committed file is prod-derived (see Renaming existing regions for why a stale/hand-editedregions.data.tsis a trap).
Work in the owid-grapher repo on a new branch. There are two ways to register a provider — regionGroupLabels in RegionGroups.ts documents the split in its own comments: "…where we have region definition about what constitutes these regions in regions.ts" vs "…we don't have region definitions … (we recognize them by their suffix)". They correspond to the RegionDataProvider and AdditionalRegionDataProvider types. (Earlier drafts of this skill called these "Path A / Path B" — that's not a codebase term; ignore that wording.)
Full-definition provider — a RegionDataProvider
The provider's regions (with member countries) live in regions.data.ts, so it's a RegionDataProvider. This is the natural outcome once you've added the provider to the ETL regions dataset (Steps 4–8), and it's what gives both entity-selector grouping and hover tooltips. Use it whenever the regions are formally defined.
-
Regenerate
regions.data.ts:yarn runRegionsUpdaterThis fetches the catalog CSV and rewrites
packages/@ourworldindata/utils/src/regions/regions.data.ts(auto-generated — never hand-edit). The newPROVIDER_XXXaggregates appear withdefinedBy: "<provider>". TheRegionDataProvider/RegionGroupKey/TooltipKeyunion types are derived from this file, so the provider key becomes known to the type system automatically. -
Add the hand-maintained labels (TypeScript will fail to compile until each
Record<RegionDataProvider, …>has an entry — that's your checklist):adminSiteClient/EntityPresets.ts→REGION_DATA_PROVIDER_LABELS:<provider>: "<Short> regions"(short, for the admin dropdown).packages/@ourworldindata/grapher/src/core/RegionGroups.ts→regionGroupLabels:<provider>: "<Provider full name> regions"(in the "we have region definitions" group).packages/@ourworldindata/grapher/src/seriesLabel/RegionTooltipData.ts→descriptions:<provider>: "The **<Provider>** defines [N world regions](https://ourworldindata.org/world-region-map-definitions#<anchor>):"— embed the article link in the count phrase, matching the WB/WHO/UN entries.<anchor>is the slug of the provider's article-section heading (e.g.maddison-project-database-maddison); you must add that section to the article — see Step 10. Optionally add a left-to-right map order tocustomRegionDisplayOrder(omit → alphabetical). See "The region hover" below for what these edits drive.
Suffix-only provider — an AdditionalRegionDataProvider (e.g. FAO, OECD)
The frontend recognizes the provider's entities purely by the (Provider) name suffix; no member definitions in regions.data.ts. Use this only when the regions are not in the ETL regions dataset — it's lighter, but there's no hover tooltip and no member validation.
packages/@ourworldindata/grapher/src/core/GrapherConstants.ts→ add the slug toADDITIONAL_REGION_DATA_PROVIDERS(this defines theAdditionalRegionDataProvidertype).adminSiteClient/EntityPresets.ts→ADDITIONAL_REGION_DATA_PROVIDER_LABELS:<provider>: "<Short> regions".packages/@ourworldindata/grapher/src/core/RegionGroups.ts→regionGroupLabels:<provider>: "<Provider full name> regions"(in the "recognize by suffix" group).- No
RegionTooltipDataentry (itsTooltipKeyonly covers full-definition providers).
Multi-level full-definition providers define one RegionDataProvider per level (e.g. un_m49_1/2/3; ILO uses ilo_1/ilo_2) — each level gets its own label, sort order, and tooltip. Mirror the un_m49_1/2/3 entries in RegionGroups.ts.
Don't drop the bare suffix slug.
parseLabelresolves an entity to a provider by its(Provider)name suffix — lowercased, spaces stripped — not bydefinedBy. So when the suffix doesn't match the per-level keys (e.g."Northern Africa (ILO)"→ilo, notilo_1), the bare slug (ilo) must also stay registered inADDITIONAL_REGION_DATA_PROVIDERS+ itsADDITIONAL_REGION_DATA_PROVIDER_LABELSandregionGroupLabelsentries — it's the recognition handle. Drop it andproviderKeycomes back undefined, which silently breaks both entity-selector grouping and the hover even though the per-level definitions exist. Keep it alongside the per-level providers, exactly asunm49sits besideun_m49_1/2/3. Single-tier providers whose suffix already equals their key (Maddison →maddison, WID →wid) need no extra entry.
The region hover (tooltip) — full-definition providers only, fully data-driven
When a Grapher chart plots a region entity (e.g. "Sub-Saharan Africa (ILO)") as a series, hovering its label shows a tooltip with a description, a mini world map, and a legend (RegionTooltip.tsx → RegionMap.tsx). Worth understanding because it surprises people:
- It is NOT tied to any published chart and renders entirely from
regions.data.ts+ the registries — you don't need to publish a chart for hovers to work. Thedescriptionstext does link into theworld-region-map-definitionsarticle (an anchor), so add the matching section to that article (Step 10) or the link lands on the page top. The tooltip itself renders regardless. - It only exists for full-definition providers.
TooltipKey = RegionDataProvider | "incomeGroups" | "continents", so suffix-only providers (AdditionalRegionDataProvider) get no tooltip — to give one, add the provider's definitions toregions.data.ts. - The mini-map's configuration is computed in code, not taken from your ETL metadata or the chart's
customCategoryColors:- Membership (which country → which region) comes from
regions.data.ts(getCountriesByRegion); no-data countries fall back to gray. - Geometry is owid-grapher's bundled world geojson (
getGeoFeaturesForMap). - Colors come from
getRegionsForKey, which looks upMapContinentColors[regionName]first and only falls back toCategoricalMapPalette17[index]for regions that aren't pinned (whereindexis the region's position incustomRegionDisplayOrder[<provider>]inRegionTooltipData.ts— or alphabetical if you omit it). Pin the provider's regions (next section) and the hover follows automatically.
- Membership (which country → which region) comes from
- So for a full-definition provider the hover is two required hand-edits in
RegionTooltipData.ts—descriptions[<provider>](text + article link) and optionallycustomRegionDisplayOrder[<provider>](left-to-right map order, which fixes the legend order and the fallback palette assignment) — plus the color step below. You can't set the hover's colors from the ETL side (it ignores the chart'scustomCategoryColors); they come fromMapContinentColorsinCustomSchemes.ts. - Which map a region shows is its own
defined_bytier, becauseregionIconInforeturnstooltipKey: region.definedBy(inSeriesLabelState.ts) — not the name suffix. So for a multi-tier provider each tier needs its owndescriptions[<provider>_1]/descriptions[<provider>_2]entry, and a region tagged<provider>_1always hovers to the level-1 map, one tagged<provider>_2to the level-2 map.
Shared-region caveat (multi-tier providers). A region that exists in two tiers carries a single
defined_by, so its hover only ever shows that one tier's map — the indicator-level back-fill (Step 3 / Step 6c) populates the other tier's map indicator but does not give the entity a seconddefined_byinregions.data.ts. Concrete consequence: in a chart built on the level-2 indicator, the shared region hovers to the level-1 map while its level-2 siblings hover to the level-2 map. It's not wrong (the level-1 map still highlights it), but the "belongs to a set of N regions" framing differs for that one entity. There's no way to make it show both — tagging it the other tier just flips which map it shows. (e.g. ILO's Arab States, taggedilo_1, always hovers to the 5-region broad map.)
And it leaves a gray hole in the other tier's hover map — fix with a frontend back-fill. Because the shared region is absent from the other tier's provider set in
regions.data.ts(getAggregatesByProviderfilters by exactdefinedBy), its member countries are unmapped there and render gray (no-data) whenever you hover another region of that tier. Concretely: hovering anyilo_2subregion grays out the 12 Arab States countries, and the legend shows 10 regions instead of 11 — even though the ETLilo_2_regionindicator (and its published map) shows Arab States colored, because the ETL back-fill never reachesregions.data.ts. Mirror that back-fill centrally, ingetAggregatesByProvider(regionsUtils.ts), via a data-driven map —PROVIDER_REGION_BACKFILLS = { ilo_2: ["Arab States (ILO)"] }, appended to the directdefinedBymatches. Do it there, not ingetRegionsForKey—getAggregatesByProviderfeeds every consumer of the sub-tier (the hover and the admin entity presets, …), so a fix ingetRegionsForKeyalone leaves the presets still dropping the region (a real Codex catch). Add the shared region tocustomRegionDisplayOrder[<tier>]for a stable legend slot. Then that tier's hover is a complete partition matching the published map. (The shared region itself still hovers to its home tier — this only fills the hole the other regions' map would otherwise have.)
Region colors — two dictionaries, two jobs
Colors are not an ETL artifact. Nothing you can write in regions.meta.override.yml sets a region's color. The ETL side sets exactly one thing — baseColorScheme: OwidCategoricalMap (Step 6b), which decides that colors are looked up by region name. The color values themselves are TypeScript in owid-grapher, so the whole color conversation happens in the Step 9 PR, on an owid-grapher branch:
| Where | What it can show | Good for |
|---|---|---|
ETL staging (staging-site-<etl-branch>) |
the region chart with fallback colors — muted map palette handed out in legend order, because the names aren't pinned yet | checking the indicator: membership, legend order, labels. Not the color proposal |
owid-grapher staging (staging-site-<grapher-branch>) → /admin/test-region-maps |
the real thing: your pinned map colors on a map, beside the chart colors on a line chart | this is where you present the colors |
Production /admin/test-region-maps |
every provider as currently deployed | picking which provider to mirror, before you write a line |
So the answer to "where do I show the colors while I'm working in ETL?" is: you don't — you open the grapher branch and show them from its staging server. You don't have to wait for the ETL PR to merge to do that; regenerate regions.data.ts from your ETL branch's staging catalog (see the ETL_REGIONS_URL note at the top of Step 9), push the grapher branch, and its test page renders the new provider with your proposed colors. Re-run the updater against prod before that PR merges.
Both dictionaries live in packages/@ourworldindata/grapher/src/color/CustomSchemes.ts, and every provider needs an entry in both:
| Dictionary | For | Vocabulary | Backs |
|---|---|---|---|
ContinentColors |
charts (lines, bars, scatters, slope) — regions need strong colors to read as series | OwidDistinctColors |
the continents scheme ("Continents" / "Continents (Lines)") and the 🌍 Regions tab of the admin color picker |
MapContinentColors |
maps — muted colors, a deliberate design decision (maps look better light, charts need strong) | OwidMapColors |
the OwidCategoricalMap scheme ("OWID Categorical Map") and the region hover tooltips |
Colors are looked up by region name, not by legend position (ColorScale.ts picks colorScheme.colorMap[value] before falling back to the positional palette), so the assignment is stable no matter how the sort order changes later. Precedence, highest first: a chart's/indicator's customCategoryColors → the scheme's colorMap → the positional palette. That's why Step 6b bans customCategoryColors: it silently defeats everything below it.
The two are not interchangeable, and neither one covers for the other.
MapContinentColorsspreads...ContinentColors, so a region added to onlyContinentColorsstill renders on maps — in the strong chart color, which is the thing the muted map vocabulary exists to avoid. And the admin color picker readsObject.entries(ContinentColors)directly, so a region added to onlyMapContinentColorsnever appears there. Always add both blocks, in the same region order, each headed// <Provider> regions.
Pick the colors by analogy with what's already curated. The hues below are the house convention, read off the providers already in the file — a region should get roughly the same color everywhere it appears:
| Region concept | Chart (OwidDistinctColors) |
Map (OwidMapColors) |
|---|---|---|
| Americas / North(ern) America | Peach #e56e5a |
SoftOrange #CC7641 |
| Latin America / South America / Caribbean | Maroon #883039 |
MutedCherry #B04E74 |
| Europe (broad, incl. Northern Europe) | Denim #4c6a9c |
MutedDenim #526F9B |
| Eastern Europe / CIS / Eurasia | MidnightBlue #00295b |
LightDenim #92D3DE |
| Africa (whole) | Mauve #a2559c |
LightPurple #A07AB8 |
| Sub-Saharan Africa | DarkMauve #8c4569 |
LightPurple #A07AB8 |
| Northern Africa | Purple #6d3e91 |
SoftPurple #77538F |
| Middle East / MENA / Arab States / Western Asia | Camel #bc8e5a |
Sand #C3A27C |
| Asia (whole) / Asia-Pacific | Teal #00847e |
MutedTeal #238A84 |
| East Asia | TealishGreen #00875e or Lime #3b8e1d |
LeafGreen #6FA54F |
| South-East Asia / Asia Pacific (energy providers) | Lime #3b8e1d |
LeafGreen #6FA54F |
| South Asia / Central and Southern Asia | OliveGreen #578145 |
Olive #5B6D35 |
| Central Asia | LightTeal #58ac8c |
LightTeal #4FB2AC |
| Oceania | Turquoise #38aaba |
SkyTurquoise #5FB8C8 |
| Australia and New Zealand | Teal #00847e |
MutedTeal #238A84 |
- Mirror the nearest already-curated provider. Before consulting the table, find the provider whose regions are closest in composition and count and copy its assignment wholesale, noting it in the comment — the file already does this (
// IEA regions (mirroring the Energy Institute regions),// FAO SDG regions (mirroring the UN SDG regions)). Two providers that carve the world the same way should look the same. - No two regions of one provider may share a color. Where the table would collide, move to a neighboring hue or an extended map color, and prefer keeping the broadest region on the canonical hue. Precedents: UN M49 pushes
South-eastern AsiatoDarkOrange/LightOrangeto clearEastern Asia's green; Maddison'sEast AsiaisCopper/LightCherrybecause its greens are taken bySouth and South East Asia. - Multi-tier providers get pinned too. Because colors are name-keyed, a region shared across tiers (e.g.
Arab States (ILO), taggedilo_1but back-filled into theilo_2map) carries one color that is correct in both tiers. Pin every region of every tier; check the tiers for collisions independently, since each tier is its own legend. - Use the named constants, never raw hex —
"<Region> (<Provider>)": OwidDistinctColors.Peach/OwidMapColors.SoftOrange.OwidMapColorsis declared above both dictionaries, so it's available to each. - Keep the comments to labels. These dictionaries are dense lists, and their section headings are one line naming the block —
// FAO subregions (level 2),// UN M49 regions (level 3)— phrased like the headings already around them, tier number included. Resist explaining the choices in the file: why this provider mirrors that one, which region is listed in a different block, how many hues a continent's split needed. That reasoning is real and worth writing, but it belongs in the PR description and the commit message, where it is read once by a reviewer, not in a file that is read whenever someone adds a region. A review of a first attempt at this cut four-line rationales back to single-line labels, and the file is better for it. - The one comment worth keeping is the one that stops a future edit going wrong — e.g. that new colors are deliberately outside the
CategoricalMapPalettesets. Even that is a clause, not a paragraph. - New palette colors go after the existing groups, at the end of
OwidMapColors, never inserted between the named ones. Slotting a color next to Extended or Main implies it belongs to the positional palette sets those groups feed, which is exactly what it must not do.
Check the colors on the region-maps test page
The admin has a page that renders every provider's regions as a real map next to a fake line chart — i.e. MapContinentColors and ContinentColors side by side. Use it before showing the colors to anyone:
- This branch:
http://<container-name>/admin/test-region-maps(owid-grapher staging, once the branch has built). Same naming rule as above — derive<container-name>from the grapher branch withget_container_name(), never by pasting the branch in raw. - Production: https://admin.owid.io/admin/test → the Region maps bullet — direct link https://admin.owid.io/admin/test-region-maps
The page splits into Providers with hard-coded region colors and Providers without. Your provider must land in the first section; if it doesn't, a region is missing from one of the two dictionaries (the check requires the name in both). Then compare it against the provider you mirrored: same hues in the same places, no two regions of the tier reading as the same color, and the map muted where the line chart is strong.
Verify & open the PR
yarn typecheck # surfaces any missing label-record entries (the Record<…> types are exhaustive)
yarn fixLintChanged # lint the changed files; yarn fixFormatChanged to format
Confirm the provider appears in regionGroupLabels and the relevant label record(s), and that typecheck is clean (a missing entry in a Record<RegionDataProvider, …> / Record<TooltipKey, …> registry is a compile error — that's your safety net). Open a PR in owid-grapher (title like 🔨 update regions file), with the disclosure blockquote in the body.
Get the colors signed off
Colors are a design call, and what the skill produces is a first stab — it always goes to a human. All of this happens on the owid-grapher PR, not the ETL one:
-
Open the PR (above) with the proposed colors in the body: a
region → chart color → map colortable (constant names and hex), the provider you mirrored, and the link to this branch's test page —http://<container-name>/admin/test-region-maps, with<container-name>derived as above. Wait for the staging server to build before sharing the link; open it yourself first.Don't name or
@-tag the designer anywhere in the PR — not in the body, not in a comment, not as a reviewer.owid-grapheris public, and a handle in a public thread both pings someone who was never asked there and puts who-reviews-what on the open internet (CLAUDE.md→ Team). Say that a design pass is pending and leave it unattributed; the request itself goes over Slack in the next step. The same goes for reporting back: describe what the design pass concluded, never who concluded it. -
Put the map on the Figma board and review it there — see below. The board is where the design review happens, not the test page: it's the designer's own surface, it shows the new provider beside every provider already curated, and — the part that makes it work — a color changed there can be read straight back out of the file. Adding the row is therefore step two, not a formality after sign-off.
-
Ask for the design pass over Slack, pointing at the board row. Slack is the right surface for the request precisely because it isn't public. Don't request the code review yet.
-
Pick up her changes from the board, apply them in
CustomSchemes.ts, push. -
Then request review from Sophia —
gh pr edit <n> --add-reviewer sophiamersmann. -
Both the PR body and the Slack message carry the attribution blockquote (
CLAUDE.md→ Team).
You can start this before the ETL PR merges — the color review only needs
regions.data.tsto know the new provider, and theETL_REGIONS_URLpreview gives you that from your ETL branch's staging catalog. What you must not do is merge the grapher PR on a staging-derivedregions.data.ts: re-runyarn runRegionsUpdateragainst prod once the regions are live there, and push that regeneration as the last commit. The colors don't change in that regeneration — only the region data does.
Review the palette on the Figma board
The design team keeps every provider's regions, rendered under the map palette, on Frame 99 (node 1733:1130) of the "New Categorical Palette for Maps" page in the Color Explorations file. Put the new provider there for the design review, not after it — the board doubles as the review surface and the permanent record.
Propose it; don't just write it. This is a shared design file that other people are working in — show the user exactly what you intend to add (which rows, which maps) and get an explicit go-ahead before touching it. Reading it to check the conventions needs no permission.
What you need is all below — but the low-level Figma mechanics are shared with
create-figma-chart, which drives the same tools for a much more involved job. Only the plumbing is common (upload_assetsovercreateNodeFromSvg,rescale()overresize(), plugins and comments being out of reach); its templates, text styles and labeling rules have nothing to do with this task, so don't go reading that skill to do this one. The one thing to carry across: if you learn something new about driving Figma from here, add it to that skill's Gotchas too, so the plumbing stays documented in one place.
How the board is laid out — match it rather than inventing a spot:
- Frame 99 is absolutely positioned (
layoutMode: NONE), one row per provider tier, sofao_1andfao_2are separate rows exactly asilo_1/ilo_2already are. - Each row is a 594×419 map export: the BEFORE column at
x = 1751, the AFTER column atx = 2420, with a text note in the right-hand column atx ≈ 3043listing the changes asRegion: OldColor → NewColor. - Rows run down the frame on a 481 px pitch. Add yours below the last existing row and grow Frame 99's height to fit — don't overlap the bottom edge.
- A fresh provider fills the AFTER column only, and needs no note: there is no "before" when the regions were never colored. The BEFORE column and the note column are for recolors of already-published regions (see Renaming existing regions), where the point is the change.
- Name the frame
<provider-full-name-slug>-regions-<defined_by>— e.g.food-and-agriculture-organization-regions-fao_2,united-nations-regions-un_m49_3. (On the older paired rows a trailing1/2distinguishes before/after; don't imitate it for a single new frame.)
The maps are grapher's own SVG export, which is why each one still carries its country vectors and a categorical-color-legend group. Pull the SVG from your branch's staging server so the colors are the agreed ones, naming the file exactly what the layer should be called — the upload uses the filename as the layer name, so this is also how you get the naming convention for free:
curl -s "http://<container-name>/grapher/<chart-slug>.svg?tab=map" \
-o "<provider-full-name-slug>-regions-<defined_by>.svg"
Get it into the file with upload_assets, not createNodeFromSvg. The latter looks like the obvious tool and cannot work here: the plugin sandbox has no fetch, so the SVG would have to be inlined into use_figma's code, which caps at 50,000 characters — a grapher map SVG is ~165 KB and minifies to ~162 KB, since it is nearly all path data. upload_assets imports an image/svg+xml as an editable vector tree with no size problem (10 MB cap):
# count: 1 returns a single-use submitUrl, valid 10 minutes
curl -s -X POST "<submitUrl>" \
-F "file=@<provider-full-name-slug>-regions-<defined_by>.svg;type=image/svg+xml"
# → {"success":true, ..., "placedOnNodeId":"<id>"} ← keep this id
Then place it with use_figma (load the figma-use skill first — hard prerequisite for that tool). Three things bite, in this order:
- It lands on whatever page is open in the desktop app, not the page you last set with
setCurrentPageAsync— in practice the file's cover page. Never search for it by page; takeplacedOnNodeIdfrom the POST response and reparent explicitly. - It imports at the SVG's natural size (850×600 for a grapher map), not the board's row size. Use
node.rescale(594 / node.width)— neverresize(), which does not scale children at all: it stretches them through their constraints, so a grapher export comes out with its country paths distorted and every text box rewrapped (grapher sizes labels to their glyphs with no slack, so even a small change makes "Brazil" wrap to "Bra zil"). If you ever do scale a node carrying grapher text, sweep it afterwards setting eachTEXTtotextAutoResize = "WIDTH_AND_HEIGHT"and restoring its alignment anchor. - The upload wraps the SVG in a FRAME with a white fill. Harmless on the board, where each row sits on white anyway — but if the frame ends up larger than its content it will paint over whatever it overlaps. Clear
node.fills = []if you see a neighboring row disappear. - Grow Frame 99's height before positioning the row. A row placed past the old height is clipped and looks like the import silently failed.
const page = figma.root.children.find((p) => p.id === "1627:409")
await figma.setCurrentPageAsync(page)
const node = await figma.getNodeByIdAsync("<placedOnNodeId>")
const frame99 = await figma.getNodeByIdAsync("1733:1130")
const lastRow = frame99.children
.filter((c) => c.type === "FRAME" && c.width > 500)
.reduce((a, b) => (b.y > a.y ? b : a))
const newY = Math.round(lastRow.y + 481) // row pitch
node.rescale(594 / node.width) // 850x600 -> 594x419
frame99.resize(frame99.width, Math.max(frame99.height, newY + node.height + 60))
frame99.appendChild(node) // x/y are parent-relative AFTER this
node.x = 2420 // AFTER column
node.y = newY
return { mutatedNodeIds: [node.id, frame99.id], placedAt: { x: node.x, y: node.y } }
Finish by screenshotting the row (get_screenshot on the node, or await node.screenshot()) and showing it to the user. Do this even when the numbers came back right: a wrong scale or a row sitting on top of its neighbor is obvious in a picture and invisible in a node list. The screenshot doubles as the first honest look at the palette on a real map — legend labels included, so it also catches a missing customCategoryLabels entry leaving one region with its (Provider) suffix.
If the provider has no published region chart to export, there is nothing to upload — build the chart first (Step 7) or skip the board and say so, rather than hand-drawing an approximation of a map.
Trial runs are cheap; leaving debris is not. This whole flow was validated by inserting a row and removing it again. If you do that, restore what you touched in the same breath —
node.remove()andframe99.resize(frame99.width, <original height>), since growing the board is a mutation the row's deletion doesn't undo. Record the original height before you change it.
Reading the designer's changes back out
The row is reviewable and machine-readable: the imported legend is a group of one vector per region, each named after the region and carrying a solid fill. So when the designer recolors a swatch on the board, you read the new hex straight out of the file instead of transcribing it from a message.
const row = await figma.getNodeByIdAsync("<row node id>")
const hex = (c) => "#" + [c.r, c.g, c.b].map((v) => Math.round(v * 255).toString(16).padStart(2, "0")).join("").toUpperCase()
return row.query("[name=swatches] VECTOR").map((s) => ({
region: s.name, // "South-eastern-Asia" — spaces are hyphens
fill: s.fills[0]?.type === "SOLID" ? hex(s.fills[0].color) : null,
}))
Region names come back hyphenated and without the (Provider) suffix, exactly as the legend renders them, so map them back with name.replaceAll("-", " ") + " (<Provider>)" before diffing against your proposal. Diff, don't assume: report only the regions whose fill actually moved. The country shapes under [name=countries-with-data] are named and readable the same way, so a recolored country is legible too.
Turning a returned hex into code is its own small step, and it is where a change quietly goes wrong:
- If the hex matches an existing
OwidMapColorsconstant, use that constant. Never write the raw hex into the dictionary — the whole file is constants, and a literal hides that two regions now share a color. - If it matches nothing, it's a new palette color and needs a name in
OwidMapColorsalongside the existing ones (see the note on where new colors go, above). Say so explicitly when reporting back; adding to the shared vocabulary is a bigger deal than reassigning within it. - Re-run the per-tier collision check afterwards. A designer changing one region to a color another region already has is easy to do and invisible until the map renders.
What you cannot read: Figma comment threads. None of the Figma tools available here expose comments, so a note typed into a comment bubble is invisible to you — you will not know it exists. Ask for feedback as a recolor on the board, and for anything that can't be expressed that way (a hue that needs inventing, a "these two are too close" judgement) ask for it in Slack. Never report a review as clean on the strength of unchanged fills alone: unchanged fills mean nothing was recolored, which is not the same as nothing being said.
Renaming existing regions (not a fresh add)
Occasionally you're not adding a provider but renaming its already-published regions (e.g. WID's MENA (WID) → Middle East and North Africa (WID), or & → and). The Step 9 flow is the same, with two wrinkles:
- Finish with
runRegionsUpdaterfrom prod — never merge on a hand-edit. Renaming a region'snameshifts the derived name /RegionDataProviderunion types, so it's tempting to hand-edit thenames directly inregions.data.tsto keepyarn typecheckgreen before the prod catalog has rebuilt. That stopgap is always incomplete: the updater also regenerates each region'sshortNameandslugfrom the name, which a hand-edit silently misses (on the WID rename the stopgap kept the stalemena-widslug and dropped MENA'sshortName). Once the rename is live on prod, runrunRegionsUpdaterand let it overwrite the file — the diff exposes any derived field the stopgap got wrong. Treat the regenerated file as the source of truth, not the hand-edit. - Ignore the "set up redirects" message for provider regions. The updater unconditionally prints "Be sure to set up redirects for any slugs that have changed" on any change to
regions.data.ts. But aslugonly drives a URL for a country profile page (/country/<slug>, baked only forregionType: "country"— seecountriesinregionsUtils.ts). Provider regions areregionType: "aggregate"and have no country page, so their slug changes need no redirect. Only act on that warning if a real country's slug changed.
Step 10 — Add the provider to the world-region-map-definitions article
The world-region-map-definitions article is the public, human-readable home for every provider's regions — and the target of the hover descriptions links (Step 9) and indicator text. Add a section for the new provider there.
- It's an OWID gdoc/article, not in this repo — edit it in the OWID admin/gdocs (a manual editorial step), not via ETL.
- Add a section headed
<Provider full name> (<PROVIDER>)— e.g. "Maddison Project Database (Maddison)" — usually with the provider's region map and a short description of the grouping. - The section anchor must match the link used in
descriptions(and any indicator text). The anchor is the heading slugged: lowercase, spaces → hyphens, parentheses dropped:Maddison Project Database (Maddison)→#maddison-project-database-maddisonWorld Inequality Database (WID)→#world-inequality-database-widInternational Labour Organization (ILO)→#international-labour-organization-ilo
- For a multi-tier provider, both tiers' hovers can point at the same section (e.g.
ilo_1andilo_2both →#international-labour-organization-ilo). - Open the link once the section is published to confirm the anchor resolves.
Gotchas
.venv/bin/for everypython/etl/etlrcall.- No
--force—etlrrebuilds on edited YAML/code automatically;--force --onlyonly when nothing in the repo changed. - Grapher DB
%-LIKE needsparams={...}(pymysql treats bare%as a format spec). PreferOWID_ENV.read_sql(...)in Python overmake queryfor%/quoted SQL. chart_configs.slug, notcharts.slug.- Provider aggregates never go in
regions.codes.csv. - If you write any helper that touches Tables, preserve metadata/origins: use
pr.*(nopd.concat/np.where), and verify member lists with set-equality rather than eyeballing. - owid-grapher is a separate repo and a separate PR, done after the ETL regions are merged & on the prod catalog.
regions.data.tsis auto-generated (yarn runRegionsUpdater) — never hand-edit it; the hand-maintained parts are the label/description registries and the two color dictionaries. - Region colors are keyed by name, not by legend position. A map without
baseColorScheme: OwidCategoricalMapfalls back toBuGn, and anycustomCategoryColorsblock overrides the name lookup entirely — both silently, with a chart that still renders. MapContinentColorsspreadsContinentColors, so a region added to only one dictionary looks right on the test page's line chart and wrong on its map (strong chart color where a muted one belongs). Add both.- Colors always go to a human (
@mrwbkrmfor the design call,@sophiamersmannfor the code review) — the skill's proposal is a first stab, never the final word. The agreed result then goes on Frame 99 of the Color Explorations Figma file, one row per tier — and that write to a shared design file needs the user's explicit go-ahead. - The grapher
RegionDataProvider/RegionGroupKey/TooltipKeytypes are exhaustiveRecord<…>unions, so a forgotten label is a typecheck error, not a silent gap — runyarn typecheckto find them.