geo-infer-water
Water resource management and hydrological modeling. Use when analyzing watersheds, water quality, hydrological networks, groundwater systems, water supply/demand planning, or flood risk assessment.
Best use case
geo-infer-water is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Water resource management and hydrological modeling. Use when analyzing watersheds, water quality, hydrological networks, groundwater systems, water supply/demand planning, or flood risk assessment.
Teams using geo-infer-water should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/GEO-INFER-WATER/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How geo-infer-water Compares
| Feature / Agent | geo-infer-water | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Water resource management and hydrological modeling. Use when analyzing watersheds, water quality, hydrological networks, groundwater systems, water supply/demand planning, or flood risk assessment.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# GEO-INFER-WATER ## Instructions ### Core Capabilities - **Watershed analysis**: Delineation, flow accumulation, drainage networks - **Water quality**: Pollutant transport, WQI (water quality index), turbidity modeling - **Hydrology**: Rainfall-runoff (SCS-CN, Green-Ampt), flood frequency analysis - **Groundwater**: Aquifer modeling, well drawdown, recharge estimation - **Supply planning**: Water demand forecasting, infrastructure gap analysis - **Flood risk**: Return period mapping, inundation modeling ### Key Imports ```python from geo_infer_water.core.watershed import WatershedAnalyzer from geo_infer_water.core.quality import WaterQualityModel from geo_infer_water.core.hydrology import HydrologicalModel from geo_infer_water.core.flood import FloodRiskAnalyzer ``` ## Examples ```python from geo_infer_water.core.watershed import WatershedAnalyzer analyzer = WatershedAnalyzer(dem_raster) basins = analyzer.delineate_basins(pour_points) flow = analyzer.compute_flow_accumulation() ``` ## Guidelines ### Integrations - Integrates with CLIMATE for precipitation projections - Integrates with AG for irrigation water demand - Test: `uv run python -m pytest GEO-INFER-WATER/tests/ -v`