# Send Weather Open‑Meteo 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "weather-open-meteo",
    "name": "Weather Open‑Meteo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/vdiogov/weather-open-meteo",
    "canonicalUrl": "https://clawhub.ai/vdiogov/weather-open-meteo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/weather-open-meteo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-open-meteo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "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/weather-open-meteo"
    },
    "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/weather-open-meteo",
    "downloadUrl": "https://openagent3.xyz/downloads/weather-open-meteo",
    "agentUrl": "https://openagent3.xyz/skills/weather-open-meteo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weather-open-meteo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weather-open-meteo/agent.md"
  }
}
```
## Documentation

### Weather Open‑Meteo Skill

This skill provides current weather and simple forecasts by querying the open‑meteo.com public API.  If the geocoding lookup or weather request fails, the skill can fall back to wttr.in as a lightweight alternative.

### 📌 Scope & Caveats

The skill requires curl and jq.
Location parameters are encoded before being sent to the API.
Examples below demonstrate safe query construction using jq @uri.

### ✅ When to Use

✔ The user asks for weather, forecast, temperature, or rain probability for a location.
✖ Not for historical data, severe alerts, or detailed climatology.

### 📋 Commands

The skill accepts a single argument: a location name (city, region, or coordinates in lat,lon).

### Open‑Meteo (primary, JSON)

Geocoding (co‑ordinates for a place):

curl -s "https://geocoding-api.open-meteo.com/v1/search?name=São+Paulo\\u0026count=1" | jq '.results[0] | {name, latitude, longitude}'

Current weather (by co‑ordinates):

curl -s "https://api.open-meteo.com/v1/forecast?latitude=-23.55\\u0026longitude=-46.63\\u0026current_weather=true" | jq '.current_weather'

7‑day forecast (by co‑ordinates):

curl -s "https://api.open-meteo.com/v1/forecast?latitude=-23.55\\u0026longitude=-46.63\\u0026daily=temperature_2m_max,temperature_2m_min,precipitation_sum\\u0026forecast_days=7" | jq '.daily'

Example JSON excerpt

{
  "latitude": -23.55,
  "longitude": -46.63,
  "current_weather": {
    "temperature": -5.3,
    "windspeed": 3.9,
    "winddirection": 200,
    "weathercode": 80,
    "time": "2024-02-18T14:00"
  }
}

📖 Open‑Meteo API docs

### wttr.in (fallback)

One‑liner (HTML text):

curl -s "wttr.in/São+Paulo?format=3"

Compact plain‑text:

curl -s "wttr.in/São+Paulo?format=1"

PNG image (for terminals or embeds):

curl -s -o sp.png "http://wttr.in/São+Paulo?format=1"

### 📚 Example (User Query)

User: What's the weather in São Paulo?
Agent:
Current conditions in São Paulo: 🌤️ +10 °C, 20% chance of rain

### Tips

URL‑encode city names:
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo São Paulo | jq -sRr @uri)"


Use jq to build the query dynamically:
city="São Paulo"
lat=$(curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)" | jq -r '.results[0].latitude')
lon=$(curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)" | jq -r '.results[0].longitude')


You can pass latitude and longitude directly if you know them.
The API is rate‑limited (≈100 requests/min). Keep scripts cached or use short intervals.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: vdiogov
- Version: 0.1.5
## 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/weather-open-meteo)
- [Send to Agent page](https://openagent3.xyz/skills/weather-open-meteo/agent)
- [JSON manifest](https://openagent3.xyz/skills/weather-open-meteo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/weather-open-meteo/agent.md)
- [Download page](https://openagent3.xyz/downloads/weather-open-meteo)