# Send Weather Checker 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": "weather-checker",
    "name": "Weather Checker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/luckisnow/weather-checker",
    "canonicalUrl": "https://clawhub.ai/luckisnow/weather-checker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/weather-checker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weather-checker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "weather_checker.py"
    ],
    "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/weather-checker"
    },
    "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/weather-checker",
    "downloadUrl": "https://openagent3.xyz/downloads/weather-checker",
    "agentUrl": "https://openagent3.xyz/skills/weather-checker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weather-checker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weather-checker/agent.md"
  }
}
```
## Documentation

### Weather Checker 技能

一个功能完整的命令行天气查询工具，使用Open-Meteo API获取实时天气数据。

### 功能特性

🌍 支持全球城市查询
📅 支持今天到未来7天的天气预报
🌡️ 显示最高/最低温度
💧 显示降水量和降水概率
🎨 三种输出格式：漂亮格式、简单格式、JSON格式
🎯 智能emoji匹配和颜色显示

### 1. 安装Python依赖

pip3 install requests --user

### 2. 下载脚本

curl -O https://raw.githubusercontent.com/yourusername/weather-checker/main/weather_checker.py
chmod +x weather_checker.py

### 3. 创建全局命令（可选）

sudo ln -sf $(pwd)/weather_checker.py /usr/local/bin/weather-checker

### 基本查询

# 查询北京明天的天气（默认）
weather-checker

# 查询上海明天的天气
weather-checker -c shanghai

# 查询广州后天的天气
weather-checker -c guangzhou -d 2

### 输出格式

# 漂亮格式（默认）
weather-checker

# 简单格式
weather-checker -f simple

# JSON格式
weather-checker -f json

### 其他选项

# 查询今天天气
weather-checker -d 0

# 列出预定义城市
weather-checker -l

# 查询国际城市
weather-checker -c "new york"
weather-checker -c "london"

### 输出示例

漂亮格式：

🌤️ 天气查询结果 🌤️

地点: 北京
日期: 2026-02-26
天气: 🌦️ 小雨
温度: 3.8°C ~ 8.3°C
降水量: 💧 0.8mm
降水概率: 🌤️ 20%

简单格式：

『北京 2026-02-26 🌦️小雨 3.8°C~8.3°C 💧0.8mm 🌤️20%』

### 技术细节

API: 使用Open-Meteo免费API，无需API密钥
数据: 温度、降水量、降水概率、天气描述
城市: 内置中国主要城市，支持全球城市地理编码
错误处理: 完善的网络超时和错误提示

### 开发说明

如需修改或扩展功能，请编辑 weather_checker.py 文件。主要可扩展功能包括：

添加更多天气参数（风速、湿度等）
支持历史天气查询
添加图表输出
多城市批量查询

### 许可证

MIT License

### 贡献

欢迎提交Issue和Pull Request！
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: luckisnow
- 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/weather-checker)
- [Send to Agent page](https://openagent3.xyz/skills/weather-checker/agent)
- [JSON manifest](https://openagent3.xyz/skills/weather-checker/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/weather-checker/agent.md)
- [Download page](https://openagent3.xyz/downloads/weather-checker)