weather
This skill queries real-time weather and seven-day forecasts for any global city using the free Open-Meteo API, requiring no authentication. Use it when users ask about weather conditions, temperature, precipitation, humidity, wind, clothing suggestions, or travel recommendations, supporting both Chinese and English city names like "北京天气怎么样" or "Tokyo weather forecast."
git clone --depth 1 https://github.com/AgentTeam-TaichuAI/ScienceClaw /tmp/weather && cp -r /tmp/weather/Skills/weather ~/.claude/skills/weatherSKILL.md
# Weather — 天气查询与预报
使用免费的 Open-Meteo API 查询实时天气和 7 天预报,无需 API Key。
## 工作流程
### 1. 解析城市
从用户消息中提取城市名。如果未指定城市,询问用户或使用上次查询的城市(检查 CONTEXT.md)。
### 2. 获取坐标
使用 Open-Meteo Geocoding API 将城市名转为经纬度:
```bash
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=Beijing&count=1&language=zh"
```
从返回的 JSON 中提取 `latitude`, `longitude`, `name`, `country`。
### 3. 查询天气
**实时天气 + 7天预报**(一次请求全部获取):
```bash
curl -s "https://api.open-meteo.com/v1/forecast?latitude={lat}&longitude={lon}¤t=temperature_2m,relative_humidity_2m,apparent_temperature,precipitation,weather_code,wind_speed_10m,wind_direction_10m&daily=weather_code,temperature_2m_max,temperature_2m_min,precipitation_sum,precipitation_probability_max,wind_speed_10m_max&timezone=auto&forecast_days=7"
```
### 4. 解读天气代码
将 `weather_code` 转为可读文字:
| Code | 天气 | | Code | 天气 |
|------|------|-|------|------|
| 0 | 晴天 ☀️ | | 51-55 | 毛毛雨 🌧️ |
| 1-3 | 多云 ⛅ | | 61-65 | 雨 🌧️ |
| 45-48 | 雾 🌫️ | | 71-77 | 雪 ❄️ |
| | | | 80-82 | 阵雨 🌦️ |
| | | | 95-99 | 雷暴 ⛈️ |
### 5. 回复用户
用自然语言回复,包含:
**实时天气**:
- 城市名 + 当前温度 + 体感温度
- 天气状况(晴/多云/雨等)
- 湿度 + 风速风向
- 降水量(如果有)
**未来预报**(按用户需求,默认 3 天):
- 每天:最高/最低温度 + 天气 + 降水概率
**实用建议**(可选):
- 穿衣建议(基于温度和风速)
- 出行建议(基于降水概率)
- 紫外线提醒(晴天高温时)
## 回复示例
```
🌤️ 北京今日天气
当前温度 22°C(体感 20°C),多云,湿度 45%,东南风 12 km/h。
📅 未来三天预报:
• 明天(周二):晴,18-26°C,降水概率 5%
• 后天(周三):多云转阴,15-22°C,降水概率 35%
• 大后天(周四):小雨,12-18°C,降水概率 80%
💡 建议:今天适合外出,明天气温回升可穿薄外套。周四建议带伞。
```
## 注意事项
- Open-Meteo 免费无限制,无需 API Key
- 温度单位默认摄氏度,如用户要求可切换华氏度(加 `&temperature_unit=fahrenheit`)
- 如果 geocoding 返回多个结果,选第一个(最相关),必要时确认
- 对中文城市名,geocoding 参数加 `&language=zh` 获得中文结果Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
自动配置飞书机器人应用。当用户要求配置飞书、创建飞书机器人、接入 Lark/飞书、设置飞书 app_id/app_secret、或询问如何配置飞书 IM 时触发此 skill。该 skill 通过 sandbox 内置浏览器自动完成飞书开放平台上的应用创建、权限配置、事件订阅和发布,用户仅需扫码登录。
MANDATORY: When a user asks to install, find, search, or add ANY skill (e.g. 'install hello-world skill', 'find a skill for X', 'add a skill'), you MUST first run `skills find <query>` to search the skills ecosystem. NEVER create a skill from scratch without searching first. Even if the name sounds simple, always search — it may already exist as a published skill.
Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text/tables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting/decrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.
Use this skill any time a .pptx file is involved — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading or extracting text from .pptx files; editing or updating existing presentations; combining or splitting slide files; working with templates, layouts, speaker notes, or comments. Trigger whenever the user mentions 'deck', 'slides', 'presentation', or references a .pptx filename. If a .pptx file needs to be opened, created, or touched, use this skill.
Create new skills, modify and improve existing skills, and measure skill performance. MANDATORY: Use this skill whenever the user wants to create a custom skill from scratch, design a workflow as a skill, write their own SKILL.md, update or optimize an existing skill, run evals to test a skill, benchmark skill performance, or asks questions like 'how do I make a skill', 'create a skill for X', 'turn this into a skill', 'I want to build a skill'. Even if the user doesn't use the word 'skill' explicitly, trigger this if they want to capture a reusable workflow or set of instructions for the agent.
Create new tools or upgrade existing tools for the agent. MANDATORY: Use this skill whenever the user wants to create a custom tool, convert a script into a reusable tool, write a new tool function, upgrade or modify an existing tool, test and improve a tool in the sandbox, or asks things like 'make a tool for X', 'create a tool that does Y', 'improve the X tool', 'upgrade my tool', 'turn this script into a tool'. Even if the user doesn't use the word 'tool' explicitly, trigger this if they want to add a new callable capability to the agent or modify an existing one.
Access 1000+ scientific tools through ToolUniverse for drug discovery, protein analysis, genomics, literature search, clinical data, ADMET prediction, molecular docking, and more. Use when the user needs biomedical or scientific research capabilities.