# Send 数联互通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": "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": {
    "downloadUrl": "/downloads/shulian-weather",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=shulian-weather",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### WeatherAPI.com Skill

Get current weather conditions and forecasts using WeatherAPI.com.

### ⚠️ IMPORTANT: Configure Your API Key First

This skill will NOT work until you configure your own API key.

### Where to Get API Key

Visit WeatherAPI.com
Sign up for a free account
Copy your API key from the dashboard
Configure it using one of the methods below

Free tier: 1,000,000 calls/month

### Option 1: OpenClaw UI (Recommended)

Open OpenClaw Control UI: http://127.0.0.1:18789
Go to Skills section
Find shulian-weather skill
Click Configure button
Enter your API key
Save

### Option 2: Config File

Edit ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "shulian-weather": {
        "enabled": true,
        "apiKey": "YOUR-API-KEY-HERE"
      }
    }
  }
}

### Option 3: Environment Variable

Add to ~/.zshrc:

export WEATHER_API_KEY="YOUR-API-KEY-HERE"

Then restart Gateway.

### Usage

After configuring your API key, you can ask:

"What's the weather in Shanghai?"
"Will it rain in Beijing tomorrow?"
"Weather forecast for New York this week"

### Current Weather

API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/current.json?key=${API_KEY}&q=London"

### Forecast

API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/forecast.json?key=${API_KEY}&q=London&days=7"

### Search

API_KEY="${WEATHER_API_KEY}"
curl -s "https://api.weatherapi.com/v1/search.json?key=${API_KEY}&q=London"

### "API key not configured" error

Make sure you've configured your API key in OpenClaw UI or config
Restart Gateway after configuration
Check logs: tail -f ~/.openclaw/logs/gateway.log

### Verify configuration

cat ~/.openclaw/openclaw.json | jq '.skills.entries."shulian-weather"'

### Notes

API key is required - no default key provided
Supports worldwide locations
Returns JSON format
Free tier: 1,000,000 calls/month
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jianmo1997
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/shulian-weather)
- [Send to Agent page](https://openagent3.xyz/skills/shulian-weather/agent)
- [JSON manifest](https://openagent3.xyz/skills/shulian-weather/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/shulian-weather/agent.md)
- [Download page](https://openagent3.xyz/downloads/shulian-weather)