New to Claude Skills? Learn how to install them →

nvidia on GitHub

Earth2Studio Discover

OfficialFree

Find the right models and data for climate tasks.

by nvidia2.8k stars on nvidia/skills
2 views
Updated Aug 7, 2026
Get this skill

Free · Opens the source repo

What Earth2Studio Discover does

The Earth2Studio Discoverability Skill is designed to assist users in identifying appropriate models, data sources, and examples tailored for weather and climate-related tasks. This skill is particularly useful for users who need to compare models based on GPU and VRAM requirements, select the right forecasting class—such as nowcasting or seasonal forecasts—or locate compatible data sources using a structured lexicon. Additionally, it helps users find relevant examples for tasks like downscaling, ensemble generation, or data assimilation, ensuring they have the right resources for their specific use case.

One of the core principles of this skill is to leverage live documentation from the Earth2Studio project. This ensures that users receive the most up-to-date information, as Earth2Studio frequently updates its models and data sources. By fetching relevant documentation pages based on user queries, the skill avoids relying on outdated or static lists, which can lead to confusion or inefficiencies. The skill also emphasizes understanding the user's needs by asking targeted questions about their specific tasks, regions, and hardware constraints.

The interaction protocol is structured in a way that guides users through a series of steps to pinpoint the best resources. After understanding the user's problem, the skill fetches documentation for the relevant models and data sources, verifying compatibility using a lexicon system. This ensures that the models and data sources suggested are not only relevant but also compatible with the user's requirements. Finally, the skill provides examples from a curated gallery, helping users visualize their workflows and understand how to implement their chosen models and data sources effectively.

Overall, the Earth2Studio Discoverability Skill is an essential tool for developers and researchers working in the climate and weather domains, enabling them to streamline their workflow and make informed decisions based on the latest available resources.

When to use it

Use this skill when you need to find the right models and data sources for tasks like forecasting, downscaling, or data assimilation in climate studies.

When not to use it

This skill is not suitable for writing inference code, downloading data, or installation processes.

What you can build with it

Finding Compatible Models

A researcher needs to identify models suitable for medium-range forecasting in North America. The skill helps them filter models based on GPU requirements and regional compatibility.

Locating Data Sources

A developer is looking for real-time data sources for a climate application. The skill retrieves relevant data sources that match the user's specified variables and region.

Accessing Example Workflows

An engineer wants to see examples of downscaling techniques. The skill points them to specific examples in the gallery that demonstrate relevant workflows.

How to install Earth2Studio Discover

View source

1. Install with the skills CLI

npx skills add nvidia/skills/earth2studio-discover --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by nvidia

Earth2Studio Discoverability Skill

Purpose

Help users identify the right Earth2Studio models, data sources, and examples for their weather/climate task. Use when: comparing models by GPU/VRAM requirements, choosing forecast class (nowcast, medium-range, seasonal), finding compatible data sources via lexicons, or locating gallery examples for downscaling, ensemble generation, or data assimilation.

Prerequisites

  • Internet access to fetch live documentation pages from nvidia.github.io
  • Familiarity with Earth2Studio badge system (Class, Region, VRAM, Release)

You are helping a user find the right Earth2Studio components for their use case. Your job is to understand what they want to do, then point them at the models, data sources, and examples that fit — verified against live documentation.

Core principle: discover from live docs, don't memorize

Earth2Studio adds models, data sources, and examples every release. Model classes get new badges, new data sources appear, examples get reorganized. Any static list in this skill will rot.

Rules:

  1. Always fetch the relevant live doc pages before recommending components.
  2. Use badge metadata (Region, Class, VRAM, Release) from the docs to filter candidates.
  3. Verify data-source ↔ model compatibility using the lexicon system (see Step 4).
  4. Cite doc URLs so the user can explore further.

Live doc references

Fetch these pages as needed (not all at once — only what the user's question requires):

CategoryURL
Prognostic modelshttps://nvidia.github.io/earth2studio/modules/models_px.html
Diagnostic modelshttps://nvidia.github.io/earth2studio/modules/models_dx.html
Data assimilationhttps://nvidia.github.io/earth2studio/modules/models_da.html
Data sources (analysis)https://nvidia.github.io/earth2studio/modules/datasources_analysis.html
Data sources (forecast)https://nvidia.github.io/earth2studio/modules/datasources_forecast.html
Data sources (dataframe)https://nvidia.github.io/earth2studio/modules/datasources_dataframe.html
Examples galleryhttps://nvidia.github.io/earth2studio/examples/index.html
Lexicon sourcehttps://github.com/NVIDIA/earth2studio/tree/main/earth2studio/lexicon

Interaction protocol

Step 1. Understand the user's problem

Extract from what the user has said (ask follow-ups if needed, cap at 3 questions):

  • Task type — medium-range forecasting, nowcasting, downscaling/super-resolution, seasonal/subseasonal, data assimilation, climate projection, ensemble generation, derived diagnostics
  • Region — global, North America, Europe, Asia, specific country/area
  • Temporal scale — hours ahead (nowcast), days ahead (medium-range), weeks/months (seasonal), climate
  • Variables of interest — temperature, precipitation, wind, pressure, radiation, specific levels, etc.
  • Hardware constraints — GPU type, available VRAM (40GB, 48GB, 80GB, 96GB)
  • Deterministic vs. ensemble — single forecast or probabilistic

Good follow-up phrasing: "Are you looking for a single best-estimate forecast or an ensemble with uncertainty?" — not "what's your use case?"

Step 2. Fetch relevant model docs

Based on the user's task type, fetch the appropriate model page(s):

  • Forecasting → prognostic models (px)
  • Post-processing / downscaling / derived variables → diagnostic models (dx)
  • Observation integration → data assimilation (da)
  • Often a workflow chains px → dx, so check both

From the doc pages, extract for each candidate model:

  • Class badge — NWC, DS, MR, S2S, DA, CM
  • Region badge — Global, NA, EU, AS, etc.
  • Rec VRAM badge — minimum GPU memory
  • Release year — newer models generally supersede older ones in the same class

Filter to models matching the user's task type, region, and hardware. Present a short-list (not the full catalog) with badge metadata.

Step 3. Fetch relevant data source docs

Based on the user's data needs, fetch the appropriate data source page:

  • Historical reanalysis → analysis data sources
  • Real-time or operational → forecast data sources
  • Observations / station data → dataframe data sources

Note which data sources cover the user's region and variables.

Step 4. Verify compatibility via lexicon

This is the key technical step. Earth2Studio models declare their required input variables via input_coords(). Data sources expose available variables through their lexicon VOCAB. If a data source's lexicon VOCAB keys contain all variables in a model's input_coords (the "variable" dimension), they are compatible.

To verify:

  1. Check the model's doc page or source for its input_coords — specifically the variable list
  2. Check the data source's lexicon file at earth2studio/lexicon/<source>.py for its VOCAB keys
  3. Confirm the data source VOCAB covers all variables the model needs

If checking source code directly (e.g. user has a local clone), the lexicon files are at:

earth2studio/lexicon/gfs.py
earth2studio/lexicon/hrrr.py
earth2studio/lexicon/cds.py
earth2studio/lexicon/arco.py
earth2studio/lexicon/wb2.py
... (one per data source)

Each defines a VOCAB: dict[str, str | tuple] mapping Earth2Studio variable names to source-specific identifiers.

Surface compatibility results clearly: "GraphCastOperational needs [list of variables] — GFS and ERA5 (via ARCO/CDS) both provide these, but HRRR does not cover pressure levels above X."

Step 5. Suggest examples

Fetch the examples gallery and identify examples that demonstrate the user's workflow pattern. Examples are organized by category:

  • 01_getting_started — basic deterministic, diagnostic, ensemble pipelines
  • 02_medium_range — ensemble extension, perturbation, cyclone tracking
  • 03_downscaling — CorrDiff, CBottle, ensemble downscaling
  • 04_nowcasting — StormCast, StormScope
  • 05_data_assimilation — StormCast SDA, HealDA
  • 06_seasonal — DLESyM, statistical methods
  • 07_misc — distributed inference, IO, custom data, generation
  • 08_extend — building custom models, diagnostics, data sources

Point the user at the most relevant 1–3 examples as starting points. Explain what each demonstrates and how it relates to their problem.

Step 6. Return recommendations

Output structure (omit empty sections):

## Your use case
[1-2 sentence restatement of what the user wants to do]

## Recommended models
| Model | Class | Region | VRAM | Why |
|-------|-------|--------|------|-----|
[Short-list with rationale per row]

## Compatible data sources
| Data Source | Coverage | Compatible with |
|-------------|----------|-----------------|
[Verified via lexicon]

## Relevant examples
- [Example name](link) — what it demonstrates

## Next steps
[What to install, what to read next]

Keep recommendations to 2–4 models maximum. If multiple options exist, explain the tradeoff (accuracy vs. speed, deterministic vs. ensemble, VRAM, etc.) rather than listing everything.

Limitations

  • Recommendations are only as current as the live docs; unreleased models are not discoverable.
  • Badge metadata may be incomplete for newly added models.
  • Lexicon compatibility checks require source code access for full accuracy; doc-only checks are approximate.

Troubleshooting

ErrorCauseSolution
Model page returns 404URL changed after a releaseCheck https://nvidia.github.io/earth2studio/ for updated navigation
Lexicon file not foundData source is new or renamedSearch earth2studio/lexicon/ directory for current filenames
Badge missing from modelModel docs not yet updatedFall back to the model's source code __init__ or README for specs

Ownership and out-of-scope

Owns: component discovery, model/data-source compatibility checking, badge-based filtering, example recommendation, hardware-fit assessment.

Does not own: installation (use earth2studio-install skill), writing inference code, model training, custom model development, runtime debugging, PhysicsNeMo model discovery.

Frequently asked questions about Earth2Studio Discover

Similar skills