{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/yr-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=yr-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "pyproject.toml",
      "scripts/__init__.py",
      "scripts/tests/data/sample_cape_town.py",
      "scripts/tomorrow.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/yr-weather",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Yr.no Weather",
        "body": "Get weather forecasts from MET Norway via yr.no API (free, no key)."
      },
      {
        "title": "Quick Start",
        "body": "# Current weather + forecast (requires lat/lon)\npython3 {baseDir}/scripts/weather.py &lt;lat&gt; &lt;lon&gt; [altitude]\n\n# Examples from common locations:\npython3 {baseDir}/scripts/weather.py -33.9288 18.4174   # Cape Town\npython3 {baseDir}/scripts/weather.py -33.8688 151.2093  # Sydney\npython3 {baseDir}/scripts/weather.py 51.5074 -0.1278    # London\n\n# Tomorrow&#x27;s summary (requires lat/lon)\npython3 {baseDir}/scripts/tomorrow.py &lt;lat&gt; &lt;lon&gt;\n\n# Run tests\npython3 -m unittest discover {baseDir}/tests"
      },
      {
        "title": "Tests",
        "body": "Unit tests mock API calls (no network).\nSample data in scripts/tests/data/.\nRun: cd {baseDir}/scripts &amp;&amp; python3 ../tests/test_*.py"
      },
      {
        "title": "Common Locations",
        "body": "CityLatLonCape Town-33.928818.4174Johannesburg-26.204128.0473Durban-29.858731.0218Sydney-33.8688151.2093London51.5074-0.1278New York40.7128-74.0060Tokyo35.6762139.6503"
      },
      {
        "title": "Structure",
        "body": "scripts/\n├── yr_service.py    # API calls (tested/mocked)\n├── utils.py         # Emoji/symbol helpers\n├── weather.py       # Current + forecast CLI\n├── tomorrow.py      # Tomorrow summary CLI\n└── tests/data/      # Sample JSON\ntests/\n├── test_weather.py\n└── test_service.py"
      },
      {
        "title": "Standalone Repo",
        "body": "Install via pip: pip install git+https://github.com/brandoncrabpi/yr-weather.git\n\nyr-weather -33.9288 18.4174\nTagged: v1.0.0"
      },
      {
        "title": "Usage Terms",
        "body": "User-Agent required (included).\nCache 10min+ per location.\nCredit: \"Data from MET Norway\".\n\nRefactored for production: no defaults, tests, modular service."
      }
    ],
    "body": "Yr.no Weather\n\nGet weather forecasts from MET Norway via yr.no API (free, no key).\n\nQuick Start\n# Current weather + forecast (requires lat/lon)\npython3 {baseDir}/scripts/weather.py &lt;lat&gt; &lt;lon&gt; [altitude]\n\n# Examples from common locations:\npython3 {baseDir}/scripts/weather.py -33.9288 18.4174   # Cape Town\npython3 {baseDir}/scripts/weather.py -33.8688 151.2093  # Sydney\npython3 {baseDir}/scripts/weather.py 51.5074 -0.1278    # London\n\n# Tomorrow&#x27;s summary (requires lat/lon)\npython3 {baseDir}/scripts/tomorrow.py &lt;lat&gt; &lt;lon&gt;\n\n# Run tests\npython3 -m unittest discover {baseDir}/tests\n\nTests\nUnit tests mock API calls (no network).\nSample data in scripts/tests/data/.\nRun: cd {baseDir}/scripts &amp;&amp; python3 ../tests/test_*.py\nCommon Locations\nCity\tLat\tLon\nCape Town\t-33.9288\t18.4174\nJohannesburg\t-26.2041\t28.0473\nDurban\t-29.8587\t31.0218\nSydney\t-33.8688\t151.2093\nLondon\t51.5074\t-0.1278\nNew York\t40.7128\t-74.0060\nTokyo\t35.6762\t139.6503\nStructure\nscripts/\n├── yr_service.py    # API calls (tested/mocked)\n├── utils.py         # Emoji/symbol helpers\n├── weather.py       # Current + forecast CLI\n├── tomorrow.py      # Tomorrow summary CLI\n└── tests/data/      # Sample JSON\ntests/\n├── test_weather.py\n└── test_service.py\n\nStandalone Repo\n\nInstall via pip: pip install git+https://github.com/brandoncrabpi/yr-weather.git\n\nyr-weather -33.9288 18.4174\nTagged: v1.0.0\nUsage Terms\nUser-Agent required (included).\nCache 10min+ per location.\nCredit: \"Data from MET Norway\".\n\nRefactored for production: no defaults, tests, modular service."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Brandon2255p/yr-weather",
    "publisherUrl": "https://clawhub.ai/Brandon2255p/yr-weather",
    "owner": "Brandon2255p",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}