geo-infer-marine
Marine and ocean analysis for coastal and offshore environments. Use when analyzing ocean currents, marine ecosystems, coastal erosion, bathymetry, marine protected area planning, or fisheries management.
Best use case
geo-infer-marine is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Marine and ocean analysis for coastal and offshore environments. Use when analyzing ocean currents, marine ecosystems, coastal erosion, bathymetry, marine protected area planning, or fisheries management.
Teams using geo-infer-marine 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-MARINE/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How geo-infer-marine Compares
| Feature / Agent | geo-infer-marine | 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?
Marine and ocean analysis for coastal and offshore environments. Use when analyzing ocean currents, marine ecosystems, coastal erosion, bathymetry, marine protected area planning, or fisheries management.
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-MARINE ## Instructions ### Core Capabilities - **Ocean currents**: Flow modeling, upwelling detection, Lagrangian transport - **Marine ecosystems**: Habitat mapping, species distribution, coral reef health - **Coastal analysis**: Erosion modeling, sea level rise impacts, storm surge - **Bathymetry**: Seafloor mapping, depth analysis, substrate classification - **MPA planning**: Marine protected area optimization, connectivity networks - **Fisheries**: Stock assessment, spatial catch analysis, fleet dynamics ### Key Imports ```python from geo_infer_marine.core.ocean import OceanCurrentModel from geo_infer_marine.core.coastal import CoastalAnalyzer from geo_infer_marine.core.mpa import MPAPlanner from geo_infer_marine.core.fisheries import FisheriesModel ``` ## Examples ```python from geo_infer_marine.core.coastal import CoastalAnalyzer analyzer = CoastalAnalyzer() erosion_risk = analyzer.compute_erosion_risk(shoreline, wave_data) slr_impact = analyzer.project_sea_level_rise(dem, scenario="RCP8.5") ``` ## Guidelines ### Integrations - Integrates with CLIMATE for ocean temperature projections - Integrates with BIO for marine biodiversity assessment - Test: `uv run python -m pytest GEO-INFER-MARINE/tests/ -v`