← All skills
Tencent SkillHub · Developer Tools

Weather Checker

Command-line weather checker tool with global city support, temperature, precipitation, and probability display with emoji formatting

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Command-line weather checker tool with global city support, temperature, precipitation, and probability display with emoji formatting

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, weather_checker.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

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!

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • README.md Docs
  • weather_checker.py Scripts