Skip to content

AgentSkill for checking if geographic coordinates are over water or land via the IsItWater API

License

Notifications You must be signed in to change notification settings

noreastergroup/isitwater-agentskill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

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

Endpoint Method Description Cost
/v1/locations/water?lat=LAT&lon=LON GET Check if coordinates are over water 1 credit
/v1/accounts/me GET Account info and balance Free

Links

License

MIT

About

AgentSkill for checking if geographic coordinates are over water or land via the IsItWater API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published