{
  "schemaVersion": "1.0",
  "item": {
    "slug": "shulian-weather",
    "name": "数联互通weather",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jianmo1997/shulian-weather",
    "canonicalUrl": "https://clawhub.ai/jianmo1997/shulian-weather",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/shulian-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shulian-weather",
    "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/shulian-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/shulian-weather",
    "agentPageUrl": "https://openagent3.xyz/skills/shulian-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/shulian-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/shulian-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. 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": "WeatherAPI.com Skill",
        "body": "Get current weather conditions and forecasts using WeatherAPI.com."
      },
      {
        "title": "⚠️ IMPORTANT: Configure Your API Key First",
        "body": "This skill will NOT work until you configure your own API key."
      },
      {
        "title": "Where to Get API Key",
        "body": "Visit WeatherAPI.com\nSign up for a free account\nCopy your API key from the dashboard\nConfigure it using one of the methods below\n\nFree tier: 1,000,000 calls/month"
      },
      {
        "title": "Option 1: OpenClaw UI (Recommended)",
        "body": "Open OpenClaw Control UI: http://127.0.0.1:18789\nGo to Skills section\nFind shulian-weather skill\nClick Configure button\nEnter your API key\nSave"
      },
      {
        "title": "Option 2: Config File",
        "body": "Edit ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"shulian-weather\": {\n        \"enabled\": true,\n        \"apiKey\": \"YOUR-API-KEY-HERE\"\n      }\n    }\n  }\n}"
      },
      {
        "title": "Option 3: Environment Variable",
        "body": "Add to ~/.zshrc:\n\nexport WEATHER_API_KEY=\"YOUR-API-KEY-HERE\"\n\nThen restart Gateway."
      },
      {
        "title": "Usage",
        "body": "After configuring your API key, you can ask:\n\n\"What's the weather in Shanghai?\"\n\"Will it rain in Beijing tomorrow?\"\n\"Weather forecast for New York this week\""
      },
      {
        "title": "Current Weather",
        "body": "API_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/current.json?key=${API_KEY}&q=London\""
      },
      {
        "title": "Forecast",
        "body": "API_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/forecast.json?key=${API_KEY}&q=London&days=7\""
      },
      {
        "title": "Search",
        "body": "API_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/search.json?key=${API_KEY}&q=London\""
      },
      {
        "title": "\"API key not configured\" error",
        "body": "Make sure you've configured your API key in OpenClaw UI or config\nRestart Gateway after configuration\nCheck logs: tail -f ~/.openclaw/logs/gateway.log"
      },
      {
        "title": "Verify configuration",
        "body": "cat ~/.openclaw/openclaw.json | jq '.skills.entries.\"shulian-weather\"'"
      },
      {
        "title": "Notes",
        "body": "API key is required - no default key provided\nSupports worldwide locations\nReturns JSON format\nFree tier: 1,000,000 calls/month"
      }
    ],
    "body": "WeatherAPI.com Skill\n\nGet current weather conditions and forecasts using WeatherAPI.com.\n\n⚠️ IMPORTANT: Configure Your API Key First\n\nThis skill will NOT work until you configure your own API key.\n\nWhere to Get API Key\nVisit WeatherAPI.com\nSign up for a free account\nCopy your API key from the dashboard\nConfigure it using one of the methods below\n\nFree tier: 1,000,000 calls/month\n\nConfiguration\nOption 1: OpenClaw UI (Recommended)\nOpen OpenClaw Control UI: http://127.0.0.1:18789\nGo to Skills section\nFind shulian-weather skill\nClick Configure button\nEnter your API key\nSave\nOption 2: Config File\n\nEdit ~/.openclaw/openclaw.json:\n\n{\n  \"skills\": {\n    \"entries\": {\n      \"shulian-weather\": {\n        \"enabled\": true,\n        \"apiKey\": \"YOUR-API-KEY-HERE\"\n      }\n    }\n  }\n}\n\nOption 3: Environment Variable\n\nAdd to ~/.zshrc:\n\nexport WEATHER_API_KEY=\"YOUR-API-KEY-HERE\"\n\n\nThen restart Gateway.\n\nUsage\n\nAfter configuring your API key, you can ask:\n\n\"What's the weather in Shanghai?\"\n\"Will it rain in Beijing tomorrow?\"\n\"Weather forecast for New York this week\"\nCommands\nCurrent Weather\nAPI_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/current.json?key=${API_KEY}&q=London\"\n\nForecast\nAPI_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/forecast.json?key=${API_KEY}&q=London&days=7\"\n\nSearch\nAPI_KEY=\"${WEATHER_API_KEY}\"\ncurl -s \"https://api.weatherapi.com/v1/search.json?key=${API_KEY}&q=London\"\n\nTroubleshooting\n\"API key not configured\" error\nMake sure you've configured your API key in OpenClaw UI or config\nRestart Gateway after configuration\nCheck logs: tail -f ~/.openclaw/logs/gateway.log\nVerify configuration\ncat ~/.openclaw/openclaw.json | jq '.skills.entries.\"shulian-weather\"'\n\nNotes\nAPI key is required - no default key provided\nSupports worldwide locations\nReturns JSON format\nFree tier: 1,000,000 calls/month"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/jianmo1997/shulian-weather",
    "publisherUrl": "https://clawhub.ai/jianmo1997/shulian-weather",
    "owner": "jianmo1997",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/shulian-weather",
    "downloadUrl": "https://openagent3.xyz/downloads/shulian-weather",
    "agentUrl": "https://openagent3.xyz/skills/shulian-weather/agent",
    "manifestUrl": "https://openagent3.xyz/skills/shulian-weather/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/shulian-weather/agent.md"
  }
}