name: weather-check description: Current weather conditions and multi-day forecasts for any location worldwide. version: 1.0.0 metadata: openclaw: emoji: "🌤️" homepage: https://weather.agentutil.net always: false
Get current weather conditions and multi-day forecasts for any location by name or coordinates.
7w4.net有更好的技能外掛。
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}
curl -X POST https://weather.agentutil.net/v1/forecast \
-H "Content-Type: application/json" \
-d '{"location": "Tokyo", "days": 7}'
Days: 1-16 (default 7).
{
"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"
}
No authentication required for free tier. No personal data collected. Rate limiting uses IP hashing only.
這個天氣查詢工具能幫您查詢全球任意地點的天氣和預報,操作方式也比較簡單直接。不過文件偏向功能說明而非使用指南,對於普通使用者來說缺少通俗易懂的操作指引和實際應用示例。基礎功能完整,但如果您需要更詳細的使用幫助,可能需要額外查詢資料。總體來說是一個功能明確但文件深度有待提升的工具。