Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

openmeteo-sh-weather-advancedopenmeteo sh 天气高级

Agent Skill

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

总安装

56,930

周安装

2,322

GitHub Stars

2

下载量

18,019
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openmeteo-sh-weather-advanced

简介

openmeteo-sh-weather-advanced 用于获取免费 OpenMeteo API 的高级天气数据,包括历史数据和深入预报。

  • 它支持详细变量选择、模型选择和过去几天数据,适合气象研究项目。
  • 通过 clawhub 安装,命令为 openclaw skills install openmeteo-sh-weather-advanced,需结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用于需要高精度天气数据或气候分析的场景。

SKILL.md

name
openmeteo-sh-weather-advanced
description
Advanced weather from free OpenMeteo API: historical data, detailed variable selection, model choice, past-days, and in-depth forecasts. Use when the user asks about historical weather, specific weather models, niche variables (pressure, dew point, snow depth, etc.), or needs fine-grained control beyond simple current/forecast queries.
metadata
{"openclaw":{"emoji":"🌦","requires":{"bins":["openmeteo"]}}}
homepage
https://github.com/lstpsche/openmeteo-sh
user-invocable
true

OpenMeteo Weather — Advanced (openmeteo-sh)

Advanced weather queries via openmeteo CLI: historical data (from 1940), detailed variable selection, model choice, and fine-grained forecast control. No API key required.

CLI: openmeteo <command> [options]

Output format

Always use --llm — compact TSV output designed for LLMs. Weather codes are auto-resolved to text. Pass --raw only if the user explicitly asks for JSON.

Quick reference

# Current weather
openmeteo weather --current --city=Berlin --llm

# Current + 2-day forecast
openmeteo weather --current --forecast-days=2 --city=London --llm

# Only precipitation data
openmeteo weather --forecast-days=2 --city=Vienna \
  --hourly-params=precipitation,precipitation_probability,weather_code --llm

# Coordinates instead of city
openmeteo weather --current --lat=48.8566 --lon=2.3522 --llm

# Disambiguate city with country
openmeteo weather --current --city=Portland --country=US --llm

# Forecast starting from day 3 (skip today and tomorrow)
openmeteo weather --forecast-days=7 --forecast-since=3 --city=London --llm

# Historical weather
openmeteo history --city=Paris --start-date=2024-01-01 --end-date=2024-01-31 --llm

Location (pick one, required)

  • --city=NAME — city name, auto-geocoded; usually sufficient on its own
  • --country=CODE — optional country hint to disambiguate (e.g. US, GB). Only needed when city name is ambiguous. Pass whatever you have or omit.
  • --lat=NUM --lon=NUM — direct WGS84 coordinates, skips geocoding

Commands

weather — forecast up to 16 days + current conditions

Mode (at least one required):

  • --current — fetch current conditions
  • --forecast-days=N — days of forecast, 0–16 (default 7)
  • --forecast-since=N — start from day N of the forecast (1=today, 2=tomorrow, etc.). Trims the window server-side. Must be <= forecast-days.

Param overrides (comma-separated variable names):

  • --current-params=LIST — override current variables
  • --hourly-params=LIST — override hourly variables
  • --daily-params=LIST — override daily variables

Units:

  • --temperature-unit=UNIT — celsius (default) / fahrenheit
  • --wind-speed-unit=UNIT — kmh (default) / ms / mph / kn
  • --precipitation-unit=UNIT — mm (default) / inch

Other:

  • --past-days=N — include past days, 0–92 (default 0)
  • --timezone=TZ — IANA timezone or auto (default auto)
  • --model=MODEL — weather model (default best_match)

history — historical weather from 1940

Requires --start-date=YYYY-MM-DD and --end-date=YYYY-MM-DD. Supports --hourly-params, --daily-params, --model (era5, era5_land, cerra, ecmwf_ifs, etc.).

Common weather variables

Override defaults via --current-params, --hourly-params, --daily-params. For the full variable list with descriptions, run openmeteo weather help --daily-params (or --hourly-params, --current-params).

Current & hourly (most used)

  • temperature_2m — air temp at 2m, C
  • apparent_temperature — feels-like temp, C
  • relative_humidity_2m — humidity, %
  • precipitation — total precipitation (rain+showers+snow), mm
  • precipitation_probability (hourly only) — chance of precipitation, %
  • weather_code — condition code, auto-resolved to text (e.g. "Light rain")
  • wind_speed_10m — wind at 10m, km/h
  • wind_gusts_10m — gusts at 10m, km/h
  • cloud_cover — total cloud cover, %
  • is_day (current only) — daytime flag, 0/1
  • uv_index (hourly only) — UV index
  • snowfall — snowfall, cm
  • visibility — visibility, m
  • pressure_msl — sea-level pressure, hPa

Daily (most used)

  • temperature_2m_max / temperature_2m_min — daily max/min temp, C
  • precipitation_sum — total daily precipitation, mm
  • precipitation_probability_max — max precipitation chance, %
  • weather_code — dominant condition for the day
  • wind_speed_10m_max — max wind, km/h
  • sunrise / sunset — ISO 8601 times
  • uv_index_max — max UV index
  • snowfall_sum — total daily snowfall, cm
  • apparent_temperature_max / apparent_temperature_min — daily feels-like range, C

Detailed variable help

Run openmeteo weather help <flag> to get a full list of available variables with descriptions:

openmeteo weather help --daily-params
openmeteo weather help --hourly-params
openmeteo weather help --current-params
openmeteo history help --daily-params

Add --llm for compact TSV output: openmeteo weather help --daily-params --llm

Use this when you need a variable beyond the common ones listed above.

Rules

  1. Always use --llm output format — most token-efficient, designed for agents.
  2. Quote all user-provided values in shell commands. City names, dates, and any free-text input must be quoted to prevent shell interpretation: --city="New York", --city="St. Petersburg". Only known-safe tokens (numbers, single ASCII words) may be unquoted.
  3. When the user asks about weather without specifying a location, use the user's default city/country if known from session context.
  4. Present results as a natural-language summary — do not paste raw CLI output to the user.
  5. Use --forecast-days=1 or --forecast-days=2 for today/tomorrow — don't waste tokens on 7-day fetches.
  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, analyze the output and give answer.
  7. Use --forecast-since=N when the user asks about a specific future day (e.g. "weather on Friday") to avoid fetching unnecessary earlier days.
  8. When the user switches cities ("and what about London?"), carry over all params used in prior weather queries this conversation — including any added in follow-ups. The new city gets the union of all previously requested params.

Conversational examples

User: "What's the weather like?"

  • Location not specified -> use city/country from session context.
  • General overview -> --current.
openmeteo weather --current --city=Berlin --llm
  • Summarize naturally: "Clear sky, -12C (feels like -17C), wind 9 km/h."

User: "When will the rain stop?"

  • Needs hourly precipitation timeline.
openmeteo weather --forecast-days=2 --city=Berlin \
  --hourly-params=precipitation,precipitation_probability,weather_code --llm
  • Scan output, find when precipitation drops to 0. Answer: "Rain should stop around 14:00 today."

User: "Do I need an umbrella?"

openmeteo weather --forecast-days=1 --city=Berlin \
  --hourly-params=precipitation,precipitation_probability,weather_code --llm
  • Yes/no with reasoning: "Yes — 70% chance of rain between 11:00-15:00, up to 2mm."

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

  • Calculate --forecast-since to skip to Saturday, --forecast-days to cover through Sunday.
openmeteo weather --forecast-days=7 --forecast-since=5 --city=Rome \
  --daily-params=temperature_2m_max,temperature_2m_min,weather_code,precipitation_sum --llm
  • Present only weekend days: "Saturday: 14/8C, partly cloudy. Sunday: 16/9C, clear."

User: "What's the temperature outside?"

  • Only wants temperature -> narrow params.
openmeteo weather --current --city=Berlin \
  --current-params=temperature_2m,apparent_temperature --llm
  • Short answer: "-5C, feels like -9C."

User: "How much rain fell in Tokyo last June?"

openmeteo history --city=Tokyo --start-date=2025-06-01 --end-date=2025-06-30 \
  --daily-params=precipitation_sum,rain_sum --llm
  • Summarize total and notable days.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

OpenClaw

74.17%
按下载量换算13,365

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills