com um clique
com um clique
查询指定城市未来几天(明天、后天等)的天气预报。当用户询问「明天」「后天」「未来几天」天气时使用;与 weather 互补,weather 仅提供实时天气。
A simple calculator that can add, subtract, multiply, and divide numbers. Use when the user needs to perform basic arithmetic operations.
发起 HTTP 网络请求,支持 GET、POST、PUT、DELETE、PATCH 方法。当用户需要调用 API、获取网页内容、发送数据到服务器时使用。
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
文本处理工具。支持的操作(operation):uppercase(大写)、lowercase(小写)、reverse(反转)、trim(去空白)、count(统计)。参数:text(文本)、operation(操作类型)。
小红书图文内容创作助手。**必须传入 content**(含 title、body、hashtags、thumbnail),建议 generate_thumbnail=true。优先 Playwright HTML 截图生成封面,失败时回退 Pillow。
| name | weather |
| description | 查询城市天气信息,支持查询今天和明天的天气预报。当用户询问某个城市的天气、温度、湿度等信息时使用。 |
| license | MIT |
| compatibility | Requires Python 3.x, network access |
| metadata | {"author":"skillLite","version":"3.2"} |
查询指定城市的真实天气信息。开箱即用,无需配置任何 API Key!
| 优先级 | 数据源 | 说明 |
|---|---|---|
| 1 | 中华万年历 | 国内免费稳定,默认使用 |
| 2 | sojson天气 | 备用免费源,含空气质量 |
| 3 | wttr.in | 仅作「今天」的兜底;国外服务,可能超时(明天及以后依赖前两个源) |
city (string, required): 城市名称,如 '北京'、'深圳'、'清迈'day (string, optional): 查询哪天的天气,可选值: 'today' (今天, 默认), 'tomorrow' (明天)查询今天天气
输入: {"city": "深圳", "day": "today"}
输出:
{
"city": "深圳",
"temperature": "18°C",
"weather": "多云",
"high": "20°C",
"low": "14°C",
"wind": "东北风 3-4级",
"tip": "天气较凉,注意添加衣物",
"source": "中华万年历",
"success": true
}
查询明天天气
输入: {"city": "深圳", "day": "tomorrow"}
输出:
{
"city": "深圳",
"temperature": "18°C",
"weather": "多云",
"high": "20°C",
"low": "14°C",
"wind": "东北风 3-4级",
"tip": "注意防晒",
"source": "中华万年历",
"success": true
}