{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/weather-open-meteo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-open-meteo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. 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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/weather-open-meteo",
    "agentPageUrl": "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"
  },
  "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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Weather Open‑Meteo Skill",
        "body": "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."
      },
      {
        "title": "📌 Scope & Caveats",
        "body": "The skill requires curl and jq.\nLocation parameters are encoded before being sent to the API.\nExamples below demonstrate safe query construction using jq @uri."
      },
      {
        "title": "✅ When to Use",
        "body": "✔ The user asks for weather, forecast, temperature, or rain probability for a location.\n✖ Not for historical data, severe alerts, or detailed climatology."
      },
      {
        "title": "📋 Commands",
        "body": "The skill accepts a single argument: a location name (city, region, or coordinates in lat,lon)."
      },
      {
        "title": "Open‑Meteo (primary, JSON)",
        "body": "Geocoding (co‑ordinates for a place):\n\ncurl -s \"https://geocoding-api.open-meteo.com/v1/search?name=São+Paulo\\u0026count=1\" | jq '.results[0] | {name, latitude, longitude}'\n\nCurrent weather (by co‑ordinates):\n\ncurl -s \"https://api.open-meteo.com/v1/forecast?latitude=-23.55\\u0026longitude=-46.63\\u0026current_weather=true\" | jq '.current_weather'\n\n7‑day forecast (by co‑ordinates):\n\ncurl -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'\n\nExample JSON excerpt\n\n{\n  \"latitude\": -23.55,\n  \"longitude\": -46.63,\n  \"current_weather\": {\n    \"temperature\": -5.3,\n    \"windspeed\": 3.9,\n    \"winddirection\": 200,\n    \"weathercode\": 80,\n    \"time\": \"2024-02-18T14:00\"\n  }\n}\n\n📖 Open‑Meteo API docs"
      },
      {
        "title": "wttr.in (fallback)",
        "body": "One‑liner (HTML text):\n\ncurl -s \"wttr.in/São+Paulo?format=3\"\n\nCompact plain‑text:\n\ncurl -s \"wttr.in/São+Paulo?format=1\"\n\nPNG image (for terminals or embeds):\n\ncurl -s -o sp.png \"http://wttr.in/São+Paulo?format=1\""
      },
      {
        "title": "📚 Example (User Query)",
        "body": "User: What's the weather in São Paulo?\nAgent:\nCurrent conditions in São Paulo: 🌤️ +10 °C, 20% chance of rain"
      },
      {
        "title": "Tips",
        "body": "URL‑encode city names:\ncurl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo São Paulo | jq -sRr @uri)\"\n\n\nUse jq to build the query dynamically:\ncity=\"São Paulo\"\nlat=$(curl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)\" | jq -r '.results[0].latitude')\nlon=$(curl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)\" | jq -r '.results[0].longitude')\n\n\nYou can pass latitude and longitude directly if you know them.\nThe API is rate‑limited (≈100 requests/min). Keep scripts cached or use short intervals."
      }
    ],
    "body": "Weather Open‑Meteo Skill\n\nThis 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.\n\n📌 Scope & Caveats\nThe skill requires curl and jq.\nLocation parameters are encoded before being sent to the API.\nExamples below demonstrate safe query construction using jq @uri.\n✅ When to Use\n\n✔ The user asks for weather, forecast, temperature, or rain probability for a location. ✖ Not for historical data, severe alerts, or detailed climatology.\n\n📋 Commands\n\nThe skill accepts a single argument: a location name (city, region, or coordinates in lat,lon).\n\nOpen‑Meteo (primary, JSON)\n\nGeocoding (co‑ordinates for a place):\n\ncurl -s \"https://geocoding-api.open-meteo.com/v1/search?name=São+Paulo\\u0026count=1\" | jq '.results[0] | {name, latitude, longitude}'\n\n\nCurrent weather (by co‑ordinates):\n\ncurl -s \"https://api.open-meteo.com/v1/forecast?latitude=-23.55\\u0026longitude=-46.63\\u0026current_weather=true\" | jq '.current_weather'\n\n\n7‑day forecast (by co‑ordinates):\n\ncurl -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'\n\n\nExample JSON excerpt\n\n{\n  \"latitude\": -23.55,\n  \"longitude\": -46.63,\n  \"current_weather\": {\n    \"temperature\": -5.3,\n    \"windspeed\": 3.9,\n    \"winddirection\": 200,\n    \"weathercode\": 80,\n    \"time\": \"2024-02-18T14:00\"\n  }\n}\n\n\n📖 Open‑Meteo API docs\n\nwttr.in (fallback)\n\nOne‑liner (HTML text):\n\ncurl -s \"wttr.in/São+Paulo?format=3\"\n\n\nCompact plain‑text:\n\ncurl -s \"wttr.in/São+Paulo?format=1\"\n\n\nPNG image (for terminals or embeds):\n\ncurl -s -o sp.png \"http://wttr.in/São+Paulo?format=1\"\n\n📚 Example (User Query)\n\nUser: What's the weather in São Paulo? Agent: Current conditions in São Paulo: 🌤️ +10 °C, 20% chance of rain\n\nTips\nURL‑encode city names:\ncurl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo São Paulo | jq -sRr @uri)\"\n\nUse jq to build the query dynamically:\ncity=\"São Paulo\"\nlat=$(curl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)\" | jq -r '.results[0].latitude')\nlon=$(curl -s \"https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)\" | jq -r '.results[0].longitude')\n\nYou can pass latitude and longitude directly if you know them.\nThe API is rate‑limited (≈100 requests/min). Keep scripts cached or use short intervals."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/vdiogov/weather-open-meteo",
    "publisherUrl": "https://clawhub.ai/vdiogov/weather-open-meteo",
    "owner": "vdiogov",
    "version": "0.1.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}