📦 Weather Check — 技能工具
v1.0.0Current weather conditions and multi-day forecasts for any location worldwide.
0· 289·1 当前·1 累计
安全扫描
OpenClaw
安全
high confidenceThe skill's instructions, requirements, and behavior are coherent with a simple weather lookup service that issues HTTP POSTs to an external API; it does not request extra credentials or perform unexpected local actions.
安全有层次,运行前请审查代码。
运行时依赖
无特殊依赖
版本
latestv1.0.02026/3/4
- Initial release of weather-check skill. - Provides current weather conditions and multi-day forecasts for any global location. - Supports location queries by name or coordinates. - Free tier: 10 queries/day, no authentication needed. - Paid tier available with low per-query cost. - Privacy focused: No personal data collected; rate limiting via IP hash only.
● 无害
安装命令
点击复制官方npx clawhub@latest install weather-check
🇨🇳 镜像加速npx clawhub@latest install weather-check --registry https://cn.longxiaskill.com
技能文档
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.
数据来源:ClawHub ↗ · 中文优化:龙虾技能库