Token导航 LogoToken导航TokenDH.com
研究检索敏感数据unknown未标认证来源可访问许可证需确认审计未展示

openmeteo-weatherOpenmeteo 天气

Agent Skill

openmeteo-weather 用于查找、检索和筛选相关信息,适合在 Local Agent 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

848

周安装

35

下载量

277
Local Agent

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openmeteo-weather(Openmeteo 天气)
来源仓库:https://skills.volces.com
仓库路径:openmeteo-weather
安装命令:
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

用于天气相关的信息检索与筛选。openmeteo-weather 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在本地 Agent 中获取实时气象数据。
  • 安装方式未明确,建议核实来源可靠性。适用宿主包括 Local Agent,接入前应确认版本、权限和运行环境要求。
  • 使用前应确认是否依赖外部 API 调用。
  • 需结合文档了解支持的地区和预报粒度。

SKILL.md

OpenMeteo Weather

Fetch current weather and forecasts via the free Open-Meteo API. No API key required. Supports any location worldwide.

CLI: bash {baseDir}/scripts/weather.sh [options]

Quick reference

# Current weather (city name alone is enough)
bash {baseDir}/scripts/weather.sh --current --city=Berlin
bash {baseDir}/scripts/weather.sh --current --city=London

# Exact coordinates for precision if available
bash {baseDir}/scripts/weather.sh --current --lat=48.8566 --lon=2.3522

# Disambiguate with --country (any format: code, full name, partial)
bash {baseDir}/scripts/weather.sh --current --city=Portland --country=US

# Forecast (daily + hourly)
bash {baseDir}/scripts/weather.sh --forecast-days=3 --city=Paris

# Both current + forecast
bash {baseDir}/scripts/weather.sh --current --forecast-days=2 --city=Rome

# Custom params — fetch only precipitation data
bash {baseDir}/scripts/weather.sh --forecast-days=2 --city=Vienna \
  --hourly-params=precipitation,precipitation_probability,weather_code

Options

Location (required — pick one):

  • --city=NAME — city name; auto-geocoded, usually sufficient on its own
  • --country=… — optional country hint, any format works (GB, France, Ger). Only needed to disambiguate (e.g. Portland US vs UK). Do not look up the "correct" code — pass whatever you have or omit entirely.
  • --lat=FLOAT --lon=FLOAT — direct coordinates, skips geocoding

Mode (at least one required):

  • --current — fetch current conditions
  • --forecast — fetch hourly + daily forecast
  • --forecast-days=N — forecast length 1–16 days (default: 7; implies --forecast)

Param overrides (comma-separated variable names):

  • --current-params=… — override current weather variables
  • --hourly-params=… — override hourly forecast variables
  • --daily-params=… — override daily forecast variables

Output:

  • --human — emoji-rich formatted output for humans (default is porcelain, optimized for agents)

Rules

  1. Default output is porcelain (compact, for agents). Never pass --porcelain — it's the default; saves tokens.
  2. When the user asks about weather without specifying a location, check USER.md for their city/country.
  3. Present results as a natural-language summary — do not paste raw CLI output to the user.
  4. WMO weather codes are resolved to text labels automatically (e.g. "Slight rain", "Overcast").
  5. Use --forecast-days=1 or --forecast-days=2 when the user only asks about today/tomorrow — don't waste tokens on a full 7-day fetch.
  6. For targeted questions (e.g. "when will the rain stop?"), override params via --hourly-params or --daily-params to fetch only what's needed.

Available API variables

Override defaults via --current-params, --hourly-params, --daily-params.

Current & hourly variables

  • temperature_2m (default) — air temperature at 2m, °C
  • apparent_temperature (default) — feels-like temperature, °C
  • relative_humidity_2m (default) — relative humidity at 2m, %
  • precipitation (default) — total precipitation (rain + showers + snow), mm
  • precipitation_probability (default, hourly only) — probability of precipitation, %
  • weather_code (default) — weather condition, auto-resolved to text in output
  • wind_speed_10m (default) — wind speed at 10m, km/h
  • wind_gusts_10m — wind gust speed at 10m, km/h
  • wind_direction_10m — wind direction, °
  • cloud_cover (default, current only) — total cloud cover, %
  • is_day (default, current only) — daytime flag, 0/1
  • pressure_msl — sea-level atmospheric pressure, hPa
  • surface_pressure — surface pressure, hPa
  • visibility — visibility distance, m
  • rain — rain only (no showers/snow), mm
  • showers — shower rain only, mm
  • snowfall — snowfall amount, cm
  • snow_depth — snow depth on the ground, m
  • dew_point_2m — dew point temperature at 2m, °C
  • uv_index (hourly only) — UV index

Daily variables

  • temperature_2m_max (default) — daily max temperature, °C
  • temperature_2m_min (default) — daily min temperature, °C
  • precipitation_sum (default) — total daily precipitation, mm
  • precipitation_probability_max (default) — max precipitation probability, %
  • weather_code (default) — dominant weather condition for the day
  • wind_speed_10m_max (default) — max wind speed, km/h
  • wind_gusts_10m_max — max wind gust speed, km/h
  • wind_direction_10m_dominant — dominant wind direction, °
  • sunrise — sunrise time, ISO 8601
  • sunset — sunset time, ISO 8601
  • daylight_duration — daylight duration, seconds
  • sunshine_duration — sunshine duration, seconds
  • precipitation_hours — hours with precipitation
  • rain_sum — total daily rain, mm
  • showers_sum — total daily showers, mm
  • snowfall_sum — total daily snowfall, cm
  • uv_index_max — max UV index
  • apparent_temperature_max — daily max feels-like, °C
  • apparent_temperature_min — daily min feels-like, °C

Conversational examples

User: "What's the weather like?"

  • Location not specified → get city/country from USER.md.
  • Wants a general overview → use --current.
bash {baseDir}/scripts/weather.sh --current --city=Berlin
  • Summarize conditions naturally: "Clear sky, -12°C (feels like -17°C), wind 9 km/h."

User: "When will the rain stop?"

  • Needs hourly precipitation timeline → use --forecast-days=2 with only rain-related params.
bash {baseDir}/scripts/weather.sh --forecast-days=2 --city=Berlin \
  --hourly-params=precipitation,precipitation_probability,weather_code
  • Scan the hourly output, find when precipitation drops to 0 and weather_code changes to non-rain. Answer concisely: "Rain should stop around 14:00 today."

User: "Do I need an umbrella?"

  • Same approach as rain — check upcoming hours for precipitation.
bash {baseDir}/scripts/weather.sh --forecast-days=1 --city=Berlin \
  --hourly-params=precipitation,precipitation_probability,weather_code
  • Analyze output and give a yes/no answer with reasoning: "Yes — 70% chance of rain between 11:00 and 15:00, up to 2mm."

User: "What's the weather this weekend in Rome?"

  • Specific city + specific days → use --forecast with --daily-params only.
  • Calculate the right --forecast-days to cover the weekend, then pick Saturday/Sunday from the daily output.
bash {baseDir}/scripts/weather.sh --forecast-days=7 --city=Rome \
  --daily-params=temperature_2m_max,temperature_2m_min,weather_code,precipitation_sum,precipitation_probability_max
  • Present only Saturday and Sunday from the output: "Saturday: 14°/8°C, partly cloudy. Sunday: 16°/9°C, clear sky."

User: "What's the temperature outside?"

  • Only wants temperature → use --current with narrowed params.
bash {baseDir}/scripts/weather.sh --current --city=Berlin \
  --current-params=temperature_2m,apparent_temperature
  • Short answer: "-5°C, feels like -9°C."

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Local Agent

87.77%
按下载量换算243

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills