{
  "schemaVersion": "1.0",
  "item": {
    "slug": "isitwater",
    "name": "IsItWater",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/johnnagro/isitwater",
    "canonicalUrl": "https://clawhub.ai/johnnagro/isitwater",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/isitwater",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=isitwater",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/isitwater"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/isitwater",
    "agentPageUrl": "https://openagent3.xyz/skills/isitwater/agent",
    "manifestUrl": "https://openagent3.xyz/skills/isitwater/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/isitwater/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "IsItWater",
        "body": "Determine whether a latitude/longitude coordinate is over water using the IsItWater API."
      },
      {
        "title": "Setup",
        "body": "Before making API calls, check whether the user has an API key configured:\n\nCheck if ISITWATER_API_KEY is set in the environment.\nIf it is not set:\n\nInform the user: \"You need an IsItWater API key. You can get one at https://isitwater.com\"\nOffer to help them sign up using the browser tool — navigate to https://isitwater.com, create an account, and generate an API key from the dashboard.\nOnce the user has a key, guide them to configure it in ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"isitwater\": {\n        \"apiKey\": \"YOUR_API_KEY_HERE\"\n      }\n    }\n  }\n}\n\nAlternatively, the user can export the environment variable directly: export ISITWATER_API_KEY=YOUR_API_KEY_HERE\n\nOnce the key is available, proceed with the API calls below."
      },
      {
        "title": "Water Lookup",
        "body": "Check whether a coordinate is over water or land.\n\nEndpoint: GET https://api.isitwater.com/v1/locations/water\n\nHeaders:\n\nAuthorization: Bearer $ISITWATER_API_KEY\n\nQuery Parameters:\n\nParameterTypeRequiredDescriptionlatnumberyesLatitude, between -90 and 90lonnumberyesLongitude, between -180 and 180\n\nExample curl:\n\ncurl -s \"https://api.isitwater.com/v1/locations/water?lat=41.7658&lon=-72.6734\" \\\n  -H \"Authorization: Bearer $ISITWATER_API_KEY\"\n\nExample response (land):\n\n{\n  \"request_id\": \"abc123\",\n  \"water\": false,\n  \"features\": [\"earth\"],\n  \"latitude\": \"41.7658\",\n  \"longitude\": \"-72.6734\"\n}\n\nExample response (water):\n\n{\n  \"request_id\": \"def456\",\n  \"water\": true,\n  \"features\": [\"earth\", \"ocean\"],\n  \"latitude\": \"36.0\",\n  \"longitude\": \"-30.0\"\n}\n\nResponse Fields:\n\nFieldTypeDescriptionrequest_idstringUnique identifier for the requestwaterbooleantrue if the coordinate is over water, false if over landfeaturesstring[]Geographic features at the point — e.g. earth, ocean, lake, river, glacier, nature_reservelatitudestringThe latitude that was queriedlongitudestringThe longitude that was queried\n\nCost: 1 credit per lookup."
      },
      {
        "title": "Account Info",
        "body": "Check the user's account details and remaining credit balance.\n\nEndpoint: GET https://api.isitwater.com/v1/accounts/me\n\nHeaders:\n\nAuthorization: Bearer $ISITWATER_API_KEY\n\nExample curl:\n\ncurl -s \"https://api.isitwater.com/v1/accounts/me\" \\\n  -H \"Authorization: Bearer $ISITWATER_API_KEY\"\n\nResponse Fields:\n\nFieldTypeDescriptionidstringAccount identifiernamestringAccount namebalancenumberRemaining creditsauto_recharge_enabledbooleanWhether auto-recharge is turned on\n\nCost: Free (no credits consumed)."
      },
      {
        "title": "Error Handling",
        "body": "Status CodeMeaningDescription200OKRequest succeeded400Bad RequestInvalid latitude or longitude values401UnauthorizedMissing or invalid API key402Payment RequiredAccount has no remaining credits\n\nError responses return a JSON body:\n\n{\n  \"error\": \"description of the problem\"\n}"
      },
      {
        "title": "Tips",
        "body": "Each water lookup costs 1 credit. Use the Account Info endpoint to check the user's balance before making many requests.\nWhen the user provides a place name instead of coordinates (e.g. \"Is the Sahara Desert water?\"), geocode the location first to get lat/lon, then call the water lookup endpoint.\nThe features array can contain multiple overlapping values for a single point — for example, a point might return both lake and nature_reserve."
      }
    ],
    "body": "IsItWater\n\nDetermine whether a latitude/longitude coordinate is over water using the IsItWater API.\n\nSetup\n\nBefore making API calls, check whether the user has an API key configured:\n\nCheck if ISITWATER_API_KEY is set in the environment.\nIf it is not set:\nInform the user: \"You need an IsItWater API key. You can get one at https://isitwater.com\"\nOffer to help them sign up using the browser tool — navigate to https://isitwater.com, create an account, and generate an API key from the dashboard.\nOnce the user has a key, guide them to configure it in ~/.openclaw/openclaw.json:\n{\n  \"skills\": {\n    \"entries\": {\n      \"isitwater\": {\n        \"apiKey\": \"YOUR_API_KEY_HERE\"\n      }\n    }\n  }\n}\n\nAlternatively, the user can export the environment variable directly: export ISITWATER_API_KEY=YOUR_API_KEY_HERE\nOnce the key is available, proceed with the API calls below.\nWater Lookup\n\nCheck whether a coordinate is over water or land.\n\nEndpoint: GET https://api.isitwater.com/v1/locations/water\n\nHeaders:\n\nAuthorization: Bearer $ISITWATER_API_KEY\n\nQuery Parameters:\n\nParameter\tType\tRequired\tDescription\nlat\tnumber\tyes\tLatitude, between -90 and 90\nlon\tnumber\tyes\tLongitude, between -180 and 180\n\nExample curl:\n\ncurl -s \"https://api.isitwater.com/v1/locations/water?lat=41.7658&lon=-72.6734\" \\\n  -H \"Authorization: Bearer $ISITWATER_API_KEY\"\n\n\nExample response (land):\n\n{\n  \"request_id\": \"abc123\",\n  \"water\": false,\n  \"features\": [\"earth\"],\n  \"latitude\": \"41.7658\",\n  \"longitude\": \"-72.6734\"\n}\n\n\nExample response (water):\n\n{\n  \"request_id\": \"def456\",\n  \"water\": true,\n  \"features\": [\"earth\", \"ocean\"],\n  \"latitude\": \"36.0\",\n  \"longitude\": \"-30.0\"\n}\n\n\nResponse Fields:\n\nField\tType\tDescription\nrequest_id\tstring\tUnique identifier for the request\nwater\tboolean\ttrue if the coordinate is over water, false if over land\nfeatures\tstring[]\tGeographic features at the point — e.g. earth, ocean, lake, river, glacier, nature_reserve\nlatitude\tstring\tThe latitude that was queried\nlongitude\tstring\tThe longitude that was queried\n\nCost: 1 credit per lookup.\n\nAccount Info\n\nCheck the user's account details and remaining credit balance.\n\nEndpoint: GET https://api.isitwater.com/v1/accounts/me\n\nHeaders:\n\nAuthorization: Bearer $ISITWATER_API_KEY\n\nExample curl:\n\ncurl -s \"https://api.isitwater.com/v1/accounts/me\" \\\n  -H \"Authorization: Bearer $ISITWATER_API_KEY\"\n\n\nResponse Fields:\n\nField\tType\tDescription\nid\tstring\tAccount identifier\nname\tstring\tAccount name\nbalance\tnumber\tRemaining credits\nauto_recharge_enabled\tboolean\tWhether auto-recharge is turned on\n\nCost: Free (no credits consumed).\n\nError Handling\nStatus Code\tMeaning\tDescription\n200\tOK\tRequest succeeded\n400\tBad Request\tInvalid latitude or longitude values\n401\tUnauthorized\tMissing or invalid API key\n402\tPayment Required\tAccount has no remaining credits\n\nError responses return a JSON body:\n\n{\n  \"error\": \"description of the problem\"\n}\n\nTips\nEach water lookup costs 1 credit. Use the Account Info endpoint to check the user's balance before making many requests.\nWhen the user provides a place name instead of coordinates (e.g. \"Is the Sahara Desert water?\"), geocode the location first to get lat/lon, then call the water lookup endpoint.\nThe features array can contain multiple overlapping values for a single point — for example, a point might return both lake and nature_reserve."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/johnnagro/isitwater",
    "publisherUrl": "https://clawhub.ai/johnnagro/isitwater",
    "owner": "johnnagro",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/isitwater",
    "downloadUrl": "https://openagent3.xyz/downloads/isitwater",
    "agentUrl": "https://openagent3.xyz/skills/isitwater/agent",
    "manifestUrl": "https://openagent3.xyz/skills/isitwater/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/isitwater/agent.md"
  }
}