← Back to Skills Marketplace
cutthemustard

Geocode Lookup

by CutTheMustard · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
314
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install geocode-lookup
Description
Forward/reverse geocoding and great-circle distance calculations.
README (SKILL.md)

geocode-lookup

Address to coordinates (forward geocoding), coordinates to address (reverse geocoding), and Haversine distance calculations.

Data Handling

This skill sends addresses and coordinates to an external API. Do not send private addresses without explicit user consent. The service does not store or log input data beyond the immediate response.

Endpoints

Forward Geocode

curl -X POST https://geocode.agentutil.net/v1/forward \
  -H "Content-Type: application/json" \
  -d '{"address": "Auckland, New Zealand"}'

Optional: limit (1-5, default 1).

Reverse Geocode

curl -X POST https://geocode.agentutil.net/v1/reverse \
  -H "Content-Type: application/json" \
  -d '{"lat": -36.8485, "lon": 174.7633}'

Distance

curl -X POST https://geocode.agentutil.net/v1/distance \
  -H "Content-Type: application/json" \
  -d '{"from": {"address": "London, UK"}, "to": {"address": "New York, US"}, "unit": "km"}'

Units: km, mi, m, nm. Accepts {lat, lon} or {address} for both endpoints.

Response Format

{
  "results": [
    {"lat": -36.8485, "lon": 174.7633, "display_name": "Auckland, New Zealand", "type": "city"}
  ],
  "request_id": "abc-123",
  "service": "https://geocode.agentutil.net"
}

Pricing

  • Free tier: 10 queries/day, no authentication required
  • Paid tier: $0.001/query via x402 protocol (USDC on Base)

Privacy

No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.

Usage Guidance
This skill is internally consistent and lightweight, but it sends addresses/coordinates to an external service (https://geocode.agentutil.net). Before installing, verify you trust that domain and its privacy claims, avoid sending private or sensitive addresses, and be cautious if the skill later asks to perform or authorize payments (it mentions a paid tier via a crypto protocol but does not currently request credentials). If you need guaranteed privacy, consider a trusted provider or an offline/local geocoding implementation.
Capability Analysis
Type: OpenClaw Skill Name: geocode-lookup Version: 1.0.0 The skill bundle is benign. It clearly defines its purpose as geocoding, sending user-provided addresses/coordinates to a single, consistent external API at `https://geocode.agentutil.net`. The `SKILL.md` file provides transparent instructions for the AI agent, including a privacy warning to obtain user consent before sending private addresses. There is no evidence of malicious intent such as data exfiltration beyond the stated purpose, arbitrary code execution, persistence mechanisms, or prompt injection attacks against the agent.
Capability Assessment
Purpose & Capability
The name/description match the SKILL.md: all runtime instructions are about sending addresses/coordinates to an external geocoding API and computing distances. No unrelated binaries, env vars, or installs are requested.
Instruction Scope
The instructions explicitly send user-supplied addresses/coords to https://geocode.agentutil.net via POST requests — this is expected for a geocoding skill. The SKILL.md includes a privacy warning not to send private addresses. Because it transmits user data to an external service, users should be aware of network exposure and the operator's privacy claims.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or installed. Low install risk.
Credentials
The skill declares no required environment variables or credentials, which is proportional to a free-tier geocoding API. It mentions a paid tier using an 'x402 protocol (USDC on Base)' but provides no instructions to perform payments or require wallet credentials; users should be cautious if later asked to provide private keys or authorize payments.
Persistence & Privilege
always:false and no requests to modify agent or system configuration. The skill does not request persistent privileges or access to other skills' settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install geocode-lookup
  3. After installation, invoke the skill by name or use /geocode-lookup
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of geocode-lookup. - Supports forward (address to coordinates) and reverse geocoding (coordinates to address). - Calculates distances using the Haversine formula with multiple unit options (km, mi, m, nm). - Free tier available: 10 queries per day, no authentication required. - Paid tier available via x402 protocol. - Emphasizes privacy: no storage or logging of input data, minimal rate limiting with IP hashing only.
Metadata
Slug geocode-lookup
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Geocode Lookup?

Forward/reverse geocoding and great-circle distance calculations. It is an AI Agent Skill for Claude Code / OpenClaw, with 314 downloads so far.

How do I install Geocode Lookup?

Run "/install geocode-lookup" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Geocode Lookup free?

Yes, Geocode Lookup is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Geocode Lookup support?

Geocode Lookup is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Geocode Lookup?

It is built and maintained by CutTheMustard (@cutthemustard); the current version is v1.0.0.

💬 Comments