earth2studio-create-datasource

작성자: nvidia

원격 저장소에서 Earth2Studio 데이터 소스 래퍼(DataSource, ForecastSource, DataFrameSource, ForecastFrameSource)를 생성하고 검증합니다. 다음 용도로는 사용하지 마십시오…

npx skills add https://github.com/nvidia/skills --skill earth2studio-create-datasource

Create and Validate Data Source

Purpose

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.

Prerequisites

  • Earth2Studio dev environment with uv (uv run python must work)
  • Git configured with fork (origin) and upstream (upstream) remotes
  • Access to the target remote data store (credentials if private)
  • Python 3.10+

Workspace

Use the directory containing pyproject.toml. For Harbor evals, write to /workspace/output/ preserving paths. Never read evals/targets/.

Instructions

Python Environment: Always use uv run python or the local .venv. Never use the system Python directly.

Follow every step in order.

[CONFIRM] gates: Only Step 1 (Source Type) and Step 12 (Sanity-Check Plots) require explicit user approval. 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:

uv run pytest test/data/test_<source>.py -x
make format && make lint

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.

Reference Files

Load these on demand during the relevant steps:

FileContentLoad at
references/implementation-guide.pySkeleton source with FILL commentsSteps 3–10
references/testing-guide.pyTest skeleton with FILL commentsStep 11
references/validation-guide.mdPlot templates, PR body template, Greptile handlingSteps 12–14 (optional, for templates)

Workflow Overview

Step 0: Obtain reference → Step 1: Determine type → Step 2: Dependencies
→ Step 3: Add deps → Step 4: Create lexicon → Step 5: Update vocab/schema
→ Step 6: Create skeleton → Step 7: Implement source → Step 8: Register
→ Step 9: Documentation → Step 10: CHANGELOG → Step 11: Tests
→ Step 12: Validate & plots (user confirms) → Step 13: PR + sanity comment
→ Step 14: Greptile review

Step 0 — Obtain Remote Data Store Reference

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.


Step 1 — Determine Source Type

ProtocolReturnsHas lead_time?Use
DataSourcexr.DataArrayNoGridded analysis/reanalysis
ForecastSourcexr.DataArrayYesGridded forecast
DataFrameSourcepd.DataFrameNoSparse/station obs
ForecastFrameSourcepd.DataFrameYesSparse forecast obs

Key factors: gridded vs sparse → DataArray vs DataFrame; analysis vs forecast → Source vs ForecastSource.

[CONFIRM — Source Type]

Present recommended type with justification. Ask for confirmation.


Step 2 — Examine Remote Store & Propose Dependencies

Analyze: storage backend, file format, authentication, access pattern, temporal/spatial resolution, variable inventory.

Prefer fsspec:

BackendPreferredAvoid
AWS S3s3fs (core dep)boto3 directly
GCSgcsfs (core dep)google-cloud-storage
Azureadlfsazure-storage-blob
HTTPfsspec (core dep)requests
HuggingFacehuggingface_hub (core dep)custom scripts

Only fall back to dedicated libraries when fsspec cannot access the store.

Check pyproject.toml — only propose packages not already present. Core deps include: s3fs, gcsfs, fsspec, zarr, netCDF4, h5py, pygrib, huggingface-hub, pandas, pyarrow.

[CONFIRM — Dependencies & Access Pattern]

Present: backend, fsspec filesystem, new packages (with license), auth method.


Step 3 — Add Dependencies

Load references/implementation-guide.py from here through Step 10.

If new packages needed:

  1. uv add --extra data <package>
  2. uv lock
  3. Add optional dependency imports using OptionalDependencyFailure pattern

Step 4 — Create Lexicon Class

Create earth2studio/lexicon/<source_name>.py with:

  • metaclass=LexiconType
  • VOCAB: dict[str, str] mapping E2S names → remote keys
  • get_item(cls, val) returning tuple[str, Callable]
  • Use :: separator for structured keys

Map remote variables against E2STUDIO_VOCAB (282 entries in earth2studio/lexicon/base.py).

[CONFIRM — Lexicon & Variable Mapping]

Present: class name, key format, full mapping table, modifiers, reference URL.


Step 5 — Update E2STUDIO_VOCAB / SCHEMA (if needed)

  • New vocab: surface = descriptive abbrev; pressure = {name}{level}
  • New schema fields: DataFrame sources only, check E2STUDIO_SCHEMA

[CONFIRM — Vocabulary & Schema Updates]

Skip if no updates needed.


Step 6 — Create Skeleton Data Source File

Follow canonical method ordering:

  1. Class constants
  2. SCHEMA
  3. __init__
  4. _async_init
  5. __call__
  6. fetch
  7. _create_tasks
  8. fetch_wrapper
  9. fetch_array
  10. _validate_time
  11. Helpers
  12. cache property
  13. available classmethod

Use async task dataclass pattern for parallel execution.

[CONFIRM — Skeleton]

Present: class name, file path, skeleton code, task dataclass.


Step 7 — Implement the Data Source & Tests

The test file is a co-equal deliverable. Create test/data/test_<filename>.py alongside the source. Add test_<source>_call_mock for async sources.

Sync sources: Use prep_data_inputs/prep_forecast_inputs, direct __call__.

Async sources: See references/implementation-guide.py for required patterns: _sync_async, managed_session, gather_with_concurrency, async_retry, pure async I/O, try/finally cleanup. Constructor params: cache=True, verbose=True, async_timeout=600, async_workers=16, retries=3. DataFrame sources add time_tolerance.


Step 8 — Register the Source

  • earth2studio/data/__init__.py — alphabetical import
  • earth2studio/lexicon/__init__.py — alphabetical import
  • Verify pyproject.toml deps

Step 9 — Update Documentation

  • Add to correct RST file (datasources_analysis.rst / _forecast.rst / _dataframe.rst)
  • Class docstring: Parameters, Warning (download size), Note (reference URLs), Badges (last)
  • All public methods: NumPy-style docstrings

Step 10 — Update CHANGELOG.md

Add entry under the current unreleased version. See references/implementation-guide.py REGISTRATION CHECKLIST for the format.

One line per source. Do NOT add separate lexicon entries.


Step 11 — Verify Style & Expand Tests

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.

[CONFIRM — Tests]

Present test file, functions, coverage.


Step 12 — Validate Variables & Sanity-Check

  1. Validate all lexicon vars against real data (run script, do NOT commit)
  2. Remove variables with < 10% valid data
  3. Create sanity-check plot (gridded or sparse template)
  4. Tell user the plot path and ask for visual confirmation

[CONFIRM — Sanity-Check Plots]

User MUST visually inspect plots. Do not proceed without confirmation.


Step 13 — Branch, Commit & Open PR

  1. Create branch feat/data-source-<name>
  2. Commit (do NOT add sanity-check script/images)
  3. Push to fork
  4. gh pr create --repo NVIDIA/earth2studio
  5. Immediately post sanity-check validation as PR comment with:
    • Variable coverage table (name, count, range, unit)
    • Data validation summary (regions, storms/stations, time range)
    • Key findings (physically reasonable values, conversions verified)
    • Full validation script in <details> block
    • Image placeholder: <!-- Drag and drop sanity-check image here -->

[CONFIRM — Ready to Submit]

Verify all steps complete before creating PR.


Step 14 — Automated Code Review

  1. Poll for Greptile review (5 min timeout)
  2. Categorize feedback (bug/style/perf/docs/suggestion/false-positive)
  3. Present triage table to user
  4. Implement accepted fixes
  5. Respond to PR comments
  6. Push

[CONFIRM — Review Triage]

User approves which comments to address.


Examples

User: Add a data source for the NOAA GFS analysis on S3
Agent: [loads skill, proceeds through Steps 0–14]

Limitations

  • One source type per invocation
  • Requires network access for validation (Step 12)
  • SPDX license headers required in all files

Reminders

DO: uv run python, loguru.logger, alphabetical order in __init__.py/RST/CHANGELOG, canonical method ordering, async utilities (managed_session, gather_with_concurrency, async_retry), pure async I/O, reference URLs in docstrings, try/finally cleanup.

AVOID: asyncio.to_thread, bare tqdm.gather, xarray for loading, full file downloads.

NEVER: loop.set_default_executor(), commit secrets, commit sanity-check scripts/images.

nvidia의 다른 스킬

compileiq-debug
nvidia
무언가 잘못되었을 때 사용: Search()가 멈추거나, 모든 평가가 INVALID_SCORE를 반환하거나, 점수가 개선되지 않거나, 모든 설정이 동일한 숫자를 반환하거나, ptxas 오류 등이 발생할 때
create-github-pr
nvidia
gh CLI를 사용하여 GitHub 풀 리퀘스트를 생성합니다. 사용자가 새 PR을 만들거나, 코드 리뷰를 제출하거나, 풀 리퀘스트를 열고자 할 때 사용합니다. 트리거 키워드 -…
nemoclaw-maintainer-cross-issue-sweep
nvidia
다른 열린 이슈들을 스캔하여 주어진 PR이 함께 수정하거나 실수로 망가뜨릴 수 있는 이슈를 찾습니다. 인접 수정 기회와 모순 위험을 file:line…과 함께 출력합니다.
fhir-basics
nvidia
에이전트에게 FHIR R4 API의 작동 방식, 사용 가능한 리소스, 검색 매개변수를 사용한 쿼리 방법, 모든 응답 형식을 올바르게 파싱하는 방법을 가르칩니다…
compileiq-validate-result
nvidia
검색이 완료된 후, 속도 향상을 청구하거나 ACF를 발송하기 전에 사용합니다. dump_results CSV를 로드하고, 상위 K개 후보(단일 목표)를 추출합니다…
changelog-audit
nvidia
릴리스 전에 Warp CHANGELOG.md를 감사합니다: 누락된 항목 복구, 사용자 영향별 정렬, 항목 언어 다듬기, 줄 바꿈, (릴리스 브랜치 모드) 비교 업데이트…
maintain-dynamic-plugins
nvidia
NeMo Relay 동적 플러그인 로더, 매니페스트, Rust 네이티브 SDK, gRPC 워커 프로토콜, Python 워커 SDK, 문서, 테스트 및 릴리스 워크플로 커버리지를 유지 관리합니다.
dgx-diagnose
nvidia
일반적인 DGX Station GB300 문제 진단 — CUDA 충돌, 잘못된 GPU 타겟팅, vLLM/SGLang 컨테이너 버그, MIG 상태 문제, NVLink/Fabric Manager 오류,…