# Send MH weather 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": "mh-weather",
    "name": "MH weather",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/mohdalhashemi98-hue/mh-weather",
    "canonicalUrl": "https://clawhub.ai/mohdalhashemi98-hue/mh-weather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mh-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mh-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mh-weather",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T12:12:03.328Z",
      "expiresAt": "2026-05-07T12:12:03.328Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mh-weather",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mh-weather",
        "contentDisposition": "attachment; filename=\"mh-weather-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mh-weather"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mh-weather"
    },
    "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/mh-weather",
    "downloadUrl": "https://openagent3.xyz/downloads/mh-weather",
    "agentUrl": "https://openagent3.xyz/skills/mh-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mh-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mh-weather/agent.md"
  }
}
```
## Documentation

### Weather Skill

Get current weather conditions and forecasts.

### When to Use

✅ USE this skill when:

"What's the weather?"
"Will it rain today/tomorrow?"
"Temperature in [city]"
"Weather forecast for the week"
Travel planning weather checks

### When NOT to Use

❌ DON'T use this skill when:

Historical weather data → use weather archives/APIs
Climate analysis or trends → use specialized data sources
Hyper-local microclimate data → use local sensors
Severe weather alerts → check official NWS sources
Aviation/marine weather → use specialized services (METAR, etc.)

### Location

Always include a city, region, or airport code in weather queries.

### Current Weather

# One-line summary
curl "wttr.in/London?format=3"

# Detailed current conditions
curl "wttr.in/London?0"

# Specific city
curl "wttr.in/New+York?format=3"

### Forecasts

# 3-day forecast
curl "wttr.in/London"

# Week forecast
curl "wttr.in/London?format=v2"

# Specific day (0=today, 1=tomorrow, 2=day after)
curl "wttr.in/London?1"

### Format Options

# One-liner
curl "wttr.in/London?format=%l:+%c+%t+%w"

# JSON output
curl "wttr.in/London?format=j1"

# PNG image
curl "wttr.in/London.png"

### Format Codes

%c — Weather condition emoji
%t — Temperature
%f — "Feels like"
%w — Wind
%h — Humidity
%p — Precipitation
%l — Location

### Quick Responses

"What's the weather?"

curl -s "wttr.in/London?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity"

"Will it rain?"

curl -s "wttr.in/London?format=%l:+%c+%p"

"Weekend forecast"

curl "wttr.in/London?format=v2"

### Notes

No API key needed (uses wttr.in)
Rate limited; don't spam requests
Works for most global cities
Supports airport codes: curl wttr.in/ORD
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: mohdalhashemi98-hue
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T12:12:03.328Z
- Expires at: 2026-05-07T12:12:03.328Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mh-weather)
- [Send to Agent page](https://openagent3.xyz/skills/mh-weather/agent)
- [JSON manifest](https://openagent3.xyz/skills/mh-weather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mh-weather/agent.md)
- [Download page](https://openagent3.xyz/downloads/mh-weather)