isitwater

Verified·Scanned 2/18/2026

This skill checks whether geographic coordinates are over water using the IsItWater API. It instructs the agent to call https://api.isitwater.com/v1/locations/water and https://api.isitwater.com/v1/accounts/me using the ISITWATER_API_KEY environment variable; no obfuscated or exfiltrative behaviors detected.

from clawhub.ai·v5e990ed·6.8 KB·0 installs
Scanned from 1.0.0 at 5e990ed · Transparency log ↗
$ vett add clawhub.ai/johnnagro/isitwater

IsItWater AgentSkill

An AgentSkills-compatible skill for the IsItWater API. Works with OpenClaw and other AgentSkills-compatible frameworks.

This skill teaches AI agents how to check whether geographic coordinates are over water or land using the IsItWater REST API.

Installation

Via ClawHub

clawhub install isitwater

Manual

Clone this repository into your skills directory:

# Global (available to all agents)
git clone https://github.com/noreaster-group/isitwater-agentskill.git ~/.openclaw/skills/isitwater

# Or workspace-local (available to one agent)
git clone https://github.com/noreaster-group/isitwater-agentskill.git ./skills/isitwater

Configuration

The skill requires an API key from isitwater.com.

Option A — Set the environment variable directly:

export ISITWATER_API_KEY=your_api_key_here

Option B — Configure via ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "isitwater": {
        "apiKey": "your_api_key_here"
      }
    }
  }
}

If the key is not configured, the skill will guide you through the setup process when invoked.

API Endpoints

EndpointMethodDescriptionCost
/v1/locations/water?lat=LAT&lon=LONGETCheck if coordinates are over water1 credit
/v1/accounts/meGETAccount info and balanceFree

Links

License

MIT