# Send Weather via OpenMeteo (via openmeteo-sh cli; simple ver) to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openmeteo-sh-weather-simple",
    "name": "Weather via OpenMeteo (via openmeteo-sh cli; simple ver)",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/lstpsche/openmeteo-sh-weather-simple",
    "canonicalUrl": "https://clawhub.ai/lstpsche/openmeteo-sh-weather-simple",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openmeteo-sh-weather-simple",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openmeteo-sh-weather-simple",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openmeteo-sh-weather-simple"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openmeteo-sh-weather-simple",
    "downloadUrl": "https://openagent3.xyz/downloads/openmeteo-sh-weather-simple",
    "agentUrl": "https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent.md"
  }
}
```
## Documentation

### OpenMeteo Weather (openmeteo-sh)

Current weather and forecasts (up to 16 days) via openmeteo CLI. No API key required.

### Quick reference

openmeteo weather --current --city=Berlin --llm
openmeteo weather --current --forecast-days=2 --city=London --llm
openmeteo weather --forecast-days=7 --forecast-since=5 --city=Rome --llm
openmeteo weather --current --lat=48.85 --lon=2.35 --llm

### Location (pick one)

--city=NAME — city name (auto-geocoded)
--city=NAME --country=CODE — disambiguate (e.g. Portland --country=US)
--lat=NUM --lon=NUM — direct coordinates

### Options

--current — current conditions
--forecast-days=N — forecast length, 1–16 (default 7)
--forecast-since=N — start from day N (1=today, 2=tomorrow). Must be <= forecast-days.
--hourly-params=LIST — override hourly variables (comma-separated)
--daily-params=LIST — override daily variables (comma-separated)
--current-params=LIST — override current variables (comma-separated)
--temperature-unit=UNIT — celsius (default) / fahrenheit
--llm — always pass this

### Variables

Defaults are sensible for general weather. Override only when needed.

Current & hourly:

temperature_2m — air temp, C
apparent_temperature — feels-like, C
precipitation — rain+showers+snow, mm
precipitation_probability (hourly only) — chance of precipitation, %
weather_code — condition, auto-resolved to text
wind_speed_10m — wind, km/h
wind_gusts_10m — gusts, km/h
cloud_cover — cloud cover, %
snowfall — snowfall, cm
uv_index (hourly only) — UV index

Daily:

temperature_2m_max / temperature_2m_min — max/min temp, C
precipitation_sum — total precipitation, mm
precipitation_probability_max — max precipitation chance, %
weather_code — dominant condition
wind_speed_10m_max — max wind, km/h
sunrise / sunset — times
snowfall_sum — total snowfall, cm

### Rules

Always pass --llm.
Quote all user-provided values in shell commands: --city="New York", --city="St. Petersburg". Only known-safe tokens (numbers, single ASCII words) may be unquoted.
Never use help subcommand or --raw — work only with what's described here.
No location specified -> use the user's default city/country if known from session context.
Summarize results naturally — never paste raw output.
Use --forecast-days=1 for today, =2 for tomorrow — minimize token waste.
Use --forecast-since=N to skip to a specific future day.
For targeted questions, override params to fetch only what's needed.
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.

### Examples

"What's the weather like?" -> openmeteo weather --current --city=Berlin --llm
Summarize: "Clear, -12C (feels -17C), wind 9 km/h."

"When will the rain stop?" -> openmeteo weather --forecast-days=2 --city=Berlin --hourly-params=precipitation,precipitation_probability,weather_code --llm
Find when precipitation hits ~0. Answer: "Should stop around 14:00."

"Do I need an umbrella?" -> openmeteo weather --forecast-days=1 --city=Berlin --hourly-params=precipitation,precipitation_probability,weather_code --llm
"Yes — 70% chance between 11:00-15:00, up to 2mm."

"Weather this weekend in Rome?" -> 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 Sat/Sun: "Saturday: 14/8C, partly cloudy. Sunday: 16/9C, clear."

"Temperature outside?" -> openmeteo weather --current --city=Berlin --current-params=temperature_2m,apparent_temperature --llm
"-5C, feels like -9C."
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: lstpsche
- Version: 1.2.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openmeteo-sh-weather-simple)
- [Send to Agent page](https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent)
- [JSON manifest](https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openmeteo-sh-weather-simple/agent.md)
- [Download page](https://openagent3.xyz/downloads/openmeteo-sh-weather-simple)