# Send Yr 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. 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": "yr-weather",
    "name": "Yr Weather",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Brandon2255p/yr-weather",
    "canonicalUrl": "https://clawhub.ai/Brandon2255p/yr-weather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/yr-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yr-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "pyproject.toml",
      "scripts/__init__.py",
      "scripts/tests/data/sample_cape_town.py",
      "scripts/tomorrow.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "yr-weather",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T10:50:19.448Z",
      "expiresAt": "2026-05-18T10:50:19.448Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yr-weather",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yr-weather",
        "contentDisposition": "attachment; filename=\"yr-weather-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "yr-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/yr-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/yr-weather",
    "downloadUrl": "https://openagent3.xyz/downloads/yr-weather",
    "agentUrl": "https://openagent3.xyz/skills/yr-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/yr-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/yr-weather/agent.md"
  }
}
```
## Documentation

### Yr.no Weather

Get weather forecasts from MET Norway via yr.no API (free, no key).

### Quick Start

# Current weather + forecast (requires lat/lon)
python3 {baseDir}/scripts/weather.py &lt;lat&gt; &lt;lon&gt; [altitude]

# Examples from common locations:
python3 {baseDir}/scripts/weather.py -33.9288 18.4174   # Cape Town
python3 {baseDir}/scripts/weather.py -33.8688 151.2093  # Sydney
python3 {baseDir}/scripts/weather.py 51.5074 -0.1278    # London

# Tomorrow&#x27;s summary (requires lat/lon)
python3 {baseDir}/scripts/tomorrow.py &lt;lat&gt; &lt;lon&gt;

# Run tests
python3 -m unittest discover {baseDir}/tests

### Tests

Unit tests mock API calls (no network).
Sample data in scripts/tests/data/.
Run: cd {baseDir}/scripts &amp;&amp; python3 ../tests/test_*.py

### Common Locations

CityLatLonCape Town-33.928818.4174Johannesburg-26.204128.0473Durban-29.858731.0218Sydney-33.8688151.2093London51.5074-0.1278New York40.7128-74.0060Tokyo35.6762139.6503

### Structure

scripts/
├── yr_service.py    # API calls (tested/mocked)
├── utils.py         # Emoji/symbol helpers
├── weather.py       # Current + forecast CLI
├── tomorrow.py      # Tomorrow summary CLI
└── tests/data/      # Sample JSON
tests/
├── test_weather.py
└── test_service.py

### Standalone Repo

Install via pip: pip install git+https://github.com/brandoncrabpi/yr-weather.git

yr-weather -33.9288 18.4174
Tagged: v1.0.0

### Usage Terms

User-Agent required (included).
Cache 10min+ per location.
Credit: "Data from MET Norway".

Refactored for production: no defaults, tests, modular service.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Brandon2255p
- 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-05-11T10:50:19.448Z
- Expires at: 2026-05-18T10:50:19.448Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/yr-weather)
- [Send to Agent page](https://openagent3.xyz/skills/yr-weather/agent)
- [JSON manifest](https://openagent3.xyz/skills/yr-weather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/yr-weather/agent.md)
- [Download page](https://openagent3.xyz/downloads/yr-weather)