用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/infometa/workbuddyskills --skill weather-open-meteo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
快速生成公司一页纸概览(Tearsheet),涵盖业务描述、关键财务、估值、股东结构和近期催化。 触发词:公司速览、tearsheet、公司概况、一页纸、公司简介、company overview、快速了解、公司画像
构建DCF现金流折现模型和三表财务模型(利润表、资产负债表、现金流量表联动)。 触发词:DCF、现金流折现、财务建模、三表模型、估值模型、WACC、自由现金流、financial model、valuation model
盈利分析技能,支持两种模式: - Preview 模式:业绩发布前的前瞻分析、情景假设、关键观测指标 - Analysis 模式:业绩发布后的深度解读、Beat/Miss 分析、估计修正 触发词:earnings analysis、earnings preview、业绩分析、业绩前瞻、财报分析、季报解读、pre-earnings、post-earnings、Q1/Q2/Q3/Q4 results
基于 SOC 职业分类
正在显示 SKILL.md
| name | weather-open-meteo |
| version | 0.1.7 |
| description | 通过 open-meteo.com 公共 API 查询指定地点的当前天气和未来预报,无需 API key;当 open-meteo 请求失败时可降级使用 wttr.in。 |
| homepage | https://open-meteo.com/ |
| metadata | {"openclaw":{"emoji":"🌤️","requires":{"bins":"[Truncated]"}}} |
| display_name | 天气查询 |
| display_name_en | Weather (Open-Meteo) |
| description_zh | 基于 Open-Meteo 公共 API 查询全球任意地点的当前天气与未来 7 天预报,无需 API Key;支持城市名或经纬度查询,Open-Meteo 请求失败时自动降级到 wttr.in。 |
| description_en | Query current weather and 7-day forecast for any location worldwide via the free Open-Meteo API (no API key). Supports city name or coordinates, with automatic fallback to wttr.in. |
| visibility | public |
本 skill 通过查询 open‑meteo.com 公共 API 获取当前天气和简单预报。如果地理编码查询或天气请求失败,可降级使用 wttr.in 作为轻量替代方案。
curl 和 jq。✔ 用户询问某地的天气、预报、气温或降雨概率。 ✖ 不适用于历史数据、灾害预警或详细气候分析。
本 skill 接受单个参数:地点名称(城市、地区,或 lat,lon 格式的坐标)。
地理编码(获取地点坐标):
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=Beijing&count=1" | jq '.results[0] | {name, latitude, longitude}'
当前天气(按坐标查询):
curl -s "https://api.open-meteo.com/v1/forecast?latitude=39.91&longitude=116.40¤t_weather=true" | jq '.current_weather'
7 天预报(按坐标查询):
curl -s "https://api.open-meteo.com/v1/forecast?latitude=39.91&longitude=116.40&daily=temperature_2m_max,temperature_2m_min,precipitation_sum&forecast_days=7" | jq '.daily'
JSON 返回示例
{
"latitude": 39.91,
"longitude": 116.40,
"current_weather": {
"temperature": -5.3,
"windspeed": 3.9,
"winddirection": 200
一行查询(HTML 文本):
curl -s "https://wttr.in/Beijing?format=3"
紧凑纯文本:
curl -s "https://wttr.in/Beijing?format=1"
PNG 图片(用于终端或嵌入):
curl -s -o beijing.png "https://wttr.in/Beijing.png"
用户: 北京现在天气怎么样? 助手:
北京当前天气:🌤️ +10 °C,20% 降雨概率
curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo 北京 | jq -sRr @uri)"
jq 动态构造查询:
city="北京"
lat=$(curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)" | jq -r '.results[0].latitude')
lon=$(curl -s "https://geocoding-api.open-meteo.com/v1/search?name=$(echo $city | jq -sRr @uri)" | jq -r '.results[0].longitude')
latitude 和 longitude,可直接传入。