weather-check
Current weather conditions and multi-day forecasts for any location worldwide.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/cutthemustard/weather-checkweather-check
Get current weather conditions and multi-day forecasts for any location by name or coordinates.
Endpoints
Current Weather
curl -X POST https://weather.agentutil.net/v1/current \
-H "Content-Type: application/json" \
-d '{"location": "London"}'
Or by coordinates: {"lat": 51.51, "lon": -0.13}
Forecast
curl -X POST https://weather.agentutil.net/v1/forecast \
-H "Content-Type: application/json" \
-d '{"location": "Tokyo", "days": 7}'
Days: 1-16 (default 7).
Response Format
{
"location": {"name": "London", "country": "GB", "latitude": 51.51, "longitude": -0.13},
"current": {
"temperature": {"celsius": 12.5, "fahrenheit": 54.5},
"humidity": 72,
"conditions": "Overcast",
"wind": {"speed_kmh": 15.2, "direction_degrees": 230}
},
"request_id": "abc-123",
"service": "https://weather.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.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-cutthemustard-weather-check": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
text-transform
Text transformation, regex, diff, format conversion, and JSON manipulation.
dns-lookup
DNS record lookups, reverse DNS, WHOIS via RDAP, and IP geolocation.
hash-generate
Hash, HMAC, encode/decode, UUID generation, and hash identification.
geocode-lookup
Forward/reverse geocoding and great-circle distance calculations.
docs-lookup
Search pre-indexed developer documentation across 10 platforms — Cloudflare, Stripe, Anthropic, OpenAI, Next.js, and more.