weather-data-fetcher
从免费天气 API (Open-Meteo) 获取当前天气和预报数据。
安装 / 下载方式
TotalClaw CLI推荐
totalclaw install totalclaw:totalclaw~noypearl-get-weathercURL直接下载,无需登录
curl -fsSL https://skills.taituai.com/api/skills/totalclaw%3Atotalclaw~noypearl-get-weather/file -o noypearl-get-weather.md## 概述(中文)
从免费天气 API (Open-Meteo) 获取当前天气和预报数据。
## 原文
# Weather Data Fetcher (Open-Meteo)
Fetch current weather conditions and short-term forecasts using **Open-Meteo**, a free weather API that requires **no API key**.
---
## Command
### `/weather forecast`
Fetch current weather and forecast data for a given geographic location.
---
## Input
### Required
- `latitude` (number)
Example: `11.0853`
- `longitude` (number)
Example: `55.7818`
### Optional
- `timezone` (string) — defaults to `"auto"`
Example: `"Asia/Jerusalem"`
- `hours` (number) — number of hourly forecast hours to return (default: `24`)
- `days` (number) — number of daily forecast days to return (default: `3`)
- `units` (string) — `"metric"` (default) or `"imperial"`
---
### Example inputs
```json
{ "latitude": 88.0853, "longitude": 22.7818 }