npx skills add ...
npx skills add nvidia/earth2studio --skill earth2studio-create-datasource
Create and validate Earth2Studio data source wrappers (DataSource, ForecastSource, DataFrameSource, ForecastFrameSource) from remote stores. May add Python dependencies to pyproject.toml as part of development. Do NOT use for fetching data with existing sources, model inference, or Earth2Studio installation/setup tasks.
npx skills add nvidia/earth2studio --skill earth2studio-create-datasource
End-to-end workflow for implementing a new Earth2Studio data source wrapper that connects a remote data store (S3, GCS, Azure, HTTP, HuggingFace) to Earth2Studio's async data fetching infrastructure — from analysis through implementation, testing, validation, and PR submission.
uv (uv run python must work)origin) and upstream (upstream) remotes⚠️ Credential Safety: If the remote store requires authentication, credentials must be passed via environment variables only. Never hard-code secrets in source files. Before any git commit, verify no credentials are staged (check
git diff --cachedfor API keys, tokens, or passwords).
Use the directory containing pyproject.toml. For Harbor evals, write to
/workspace/output/ preserving paths. Never read evals/targets/.
Python Environment: Always use
uv run pythonor the local.venv. Never use the system Python directly.
Follow every step in order.
[CONFIRM] gates: Step 1 (Source Type), Step 12 (Sanity-Check Plots), and Step 13 (Ready to Submit) require explicit user approval before proceeding. All other
[CONFIRM]markers are advisory — present decisions inline and proceed without blocking.Deliverables first: Write the source file and test file (Steps 6–7) before extended exploration, documentation, registration, CHANGELOG, or PR work. Skip Steps 8–14 when the user asks for implementation only.
Before you finish: Run verification commands in the repo root so results appear in the session log:
Be concise: Avoid long architecture reports; summarize decisions in a few sentences and move on to file writes.
Hangs or User Feedback If agent becomes stuck or user provides a correction during this skills use, conservatively review relevant part of the skill and improve. Be concise.
One source type per invocation. Invoke again for companion types.
Load these on demand during the relevant steps:
| File | Content | Load at |
|---|---|---|
references/reference-implementation.py | Obstore-backed source skeleton with FILL comments | Steps 6–10 |
references/reference-lexicon.py | Lexicon skeleton with FILL comments | Step 4 |
references/testing-guide.py | Test skeleton with FILL comments | Step 11 |
references/validation-guide.md | Plot templates, PR body template, Greptile handling | Steps 12–14 (optional, for templates) |
If $ARGUMENTS is provided, use it (URL → WebFetch; file path → read).
If empty, ask:
Please provide a URL, API documentation link, or description of the remote data store. This will be used to understand storage format, access pattern, variable inventory, temporal/spatial resolution.
| Protocol | Returns | Has lead_time? | Use |
|---|---|---|---|
| DataSource | xr.DataArray | No | Gridded analysis/reanalysis |
| ForecastSource | xr.DataArray | Yes | Gridded forecast |
| DataFrameSource | pd.DataFrame | No | Sparse/station obs |
| ForecastFrameSource | pd.DataFrame | Yes | Sparse forecast obs |
Key factors: gridded vs sparse → DataArray vs DataFrame; analysis vs forecast → Source vs ForecastSource.
Present recommended type with justification. Ask for confirmation.
Analyze: storage backend, file format, authentication, access pattern, temporal/spatial resolution, variable inventory.
Prefer Earth2Studio obstore helpers:
| Backend / format | Preferred | Avoid |
|---|---|---|
| S3/GCS/HTTP object files | obstore_store_from_url + obstore_fetch_to_cache | raw SDK clients |
| Cloud Zarr | obstore_zarr_store | hand-rolled fsspec/zarr stores |
| Azure/object auth | obstore.store.from_url via shared helpers | provider SDKs directly |
| HuggingFace | huggingface_hub (core dep) | custom scripts |
Only fall back to dedicated libraries when obstore/shared helpers cannot access the store.
Check pyproject.toml — only propose packages not already present.
Core deps include: obstore, zarr, netCDF4, h5py, pygrib,
huggingface-hub, pandas, pyarrow.
Present: backend, obstore helper/store URL, new packages (with license), auth method.
Load
references/reference-implementation.pyfrom Step 6 through Step 10. Loadreferences/reference-lexicon.pyduring Step 4.
If new packages needed:
uv add --extra data <package>uv lockOptionalDependencyFailure patternCreate earth2studio/lexicon/<source_name>.py with:
metaclass=LexiconTypeVOCAB: dict[str, str] mapping E2S names → remote keysget_item(cls, val) returning tuple[str, Callable]:: separator for structured keysreferences/reference-lexicon.py as the starting templateMap remote variables against E2STUDIO_VOCAB (282 entries in
earth2studio/lexicon/base.py).
Present: class name, key format, full mapping table, modifiers, reference URL.
{name}{level}E2STUDIO_SCHEMASkip if no updates needed.
Use references/reference-implementation.py as the starting template.
Follow canonical method ordering:
__init___async_init__call__fetch_create_tasksfetch_wrapperfetch_array_validate_timecache propertyavailable classmethodUse async task dataclass pattern for parallel execution.
Present: class name, file path, skeleton code, task dataclass.
The test file is a co-equal deliverable. Create
test/data/test_<filename>.pyalongside the source. Addtest_<source>_call_mockfor async sources.
Sync sources: Use prep_data_inputs/prep_forecast_inputs, direct __call__.
Async sources: See references/reference-implementation.py for required patterns:
_sync_async, gather_with_concurrency, async_retry, obstore_fetch_to_cache,
obstore_zarr_store for Zarr, try/finally cleanup. Constructor params:
cache=True, verbose=True, async_timeout=600, async_workers=None,
retries=3. DataFrame sources add time_tolerance.
earth2studio/data/__init__.py — alphabetical importearth2studio/lexicon/__init__.py — alphabetical importpyproject.toml depsdocs/modules/datasources_analysis.md, datasources_forecast.md, or
datasources_dataframe.mdregion, dataclass, and product badges accurate. Add
provider:<name> when the service provider is known, and add
dataset:<family> only when the source belongs to a named dataset family;
do not infer a family from the provider. Use dataset:gfs for GEFS sources.mkdocs.yml. If a new
provider or dataset family is required, add its badge definition there and
use hide_in: [autosummary, filter]; the catalog reads these badges even
though data-source API tables do not display or filter on them.region:global dataclass:reanalysis dataset:era5 product:atmos provider:googleAdd entry under the current unreleased version. See
references/reference-implementation.py REGISTRATION CHECKLIST for the format.
One line per source. Do NOT add separate lexicon entries.
Run make format && make lint && make license. Load references/testing-guide.py
for test skeletons. Required tests: test_<source>_fetch (slow), _cache (slow),
_call_mock, _exceptions, _available. Target 90%+ coverage with --slow.
Present test file, functions, coverage.
User MUST visually inspect plots. Do not proceed without confirmation.
⚠️ WARNING: This step performs irreversible git operations (push, PR creation). Do NOT proceed without explicit user confirmation. Present all planned git commands to the user and wait for approval.
feat/data-source-<name>gh pr create --repo NVIDIA/earth2studio (only after user approves)<details> block<!-- Drag and drop sanity-check image here -->This gate is MANDATORY and blocks all git push/PR operations. Present the following to the user and wait for explicit approval:
Do NOT push or create PRs until the user explicitly confirms.
User approves which comments to address and which to dismiss. Never dismiss code review feedback autonomously.
DO: uv run python, loguru.logger, alphabetical order in __init__.py/RST/CHANGELOG,
canonical method ordering, obstore helpers, gather_with_concurrency, async_retry,
reference URLs in docstrings, try/finally cleanup.
AVOID: hand-rolled fsspec stores, asyncio.to_thread, bare tqdm.gather,
xarray for loading, full file downloads.
NEVER: loop.set_default_executor(), commit secrets, commit sanity-check scripts/images.