earth2studio-create-prognostic
Installation
SKILL.md
Quick Start Checklist
Do these steps IN ORDER. Do not skip any step.
- Read this SKILL.md completely first
- Get reference script (Step 0)
- Create
earth2studio/models/px/<name>.pywith triple inheritance - Create
test/models/px/test_<name>.pywith mock tests - Run:
uv run pytest test/models/px/test_<name>.py -v - Add/update model extra, install docs, API docs, and changelog (Steps 1-2, 9)
- Run:
make format && make lint
⚠️ CRITICAL: Always use
uv runfor Python commands:
- ✅
uv run pytest .../uv run python ...- ❌
pytest .../python ...(missing dependencies)Stuck or wrong output: Do not keep retrying the same fix. Follow Self-Improvement to patch this skill before continuing.