Help us improve
Share bugs, ideas, or general feedback.
From earth2studio
Helps users identify Earth2Studio models, data sources, and examples for weather/climate tasks by fetching live documentation and filtering by GPU/VRAM, region, and forecast class.
npx claudepluginhub nvidia/earth2studio --plugin earth2studioHow this skill is triggered — by the user, by Claude, or both
Slash command
/earth2studio:earth2studio-discoverThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help users identify the right Earth2Studio models, data sources, and examples for
Guides users through building deterministic (single-member) weather forecast inference scripts with Earth2Studio, covering model, data source, IO, and nsteps.
Curates and accesses scientific ML resources (datasets, models, Spaces) across 17 domains using Hugging Face APIs for loading and inference.
Activates senior ML engineer mode with Leeroopedia KB (27k+ pages on vLLM, SGLang, DeepSpeed, Axolotl) enforcing lookups, citations, and grounding before code in ML/AI discussions.
Share bugs, ideas, or general feedback.
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.
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.
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:
Fetch these pages as needed (not all at once — only what the user's question requires):
| Category | URL |
|---|---|
| Prognostic models | https://nvidia.github.io/earth2studio/modules/models_px.html |
| Diagnostic models | https://nvidia.github.io/earth2studio/modules/models_dx.html |
| Data assimilation | https://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 gallery | https://nvidia.github.io/earth2studio/examples/index.html |
| Lexicon source | https://github.com/NVIDIA/earth2studio/tree/main/earth2studio/lexicon |
Extract from what the user has said (ask follow-ups if needed, cap at 3 questions):
Good follow-up phrasing: "Are you looking for a single best-estimate forecast or an ensemble with uncertainty?" — not "what's your use case?"
Based on the user's task type, fetch the appropriate model page(s):
From the doc pages, extract for each candidate model:
Filter to models matching the user's task type, region, and hardware. Present a short-list (not the full catalog) with badge metadata.
Based on the user's data needs, fetch the appropriate data source page:
Note which data sources cover the user's region and variables.
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:
input_coords — specifically the variable listearth2studio/lexicon/<source>.py for its VOCAB keysIf 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."
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 pipelines02_medium_range — ensemble extension, perturbation, cyclone tracking03_downscaling — CorrDiff, CBottle, ensemble downscaling04_nowcasting — StormCast, StormScope05_data_assimilation — StormCast SDA, HealDA06_seasonal — DLESyM, statistical methods07_misc — distributed inference, IO, custom data, generation08_extend — building custom models, diagnostics, data sourcesPoint the user at the most relevant 1–3 examples as starting points. Explain what each demonstrates and how it relates to their problem.
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.
| Error | Cause | Solution |
|---|---|---|
| Model page returns 404 | URL changed after a release | Check https://nvidia.github.io/earth2studio/ for updated navigation |
| Lexicon file not found | Data source is new or renamed | Search earth2studio/lexicon/ directory for current filenames |
| Badge missing from model | Model docs not yet updated | Fall back to the model's source code __init__ or README for specs |
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.