원클릭으로
check-weather-forecast
// 查询指定城市未来几天(明天、后天等)的天气预报。当用户询问「明天」「后天」「未来几天」天气时使用;与 weather 互补,weather 仅提供实时天气。
// 查询指定城市未来几天(明天、后天等)的天气预报。当用户询问「明天」「后天」「未来几天」天气时使用;与 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 | check-weather-forecast |
| description | 查询指定城市未来几天(明天、后天等)的天气预报。当用户询问「明天」「后天」「未来几天」天气时使用;与 weather 互补,weather 仅提供实时天气。 |
| license | MIT |
| compatibility | Requires Python 3.x, network access |
| metadata | {"author":"skillLite-evolution","version":"1.0"} |
查询指定城市未来几天的天气预报(明天、后天等)。与 weather 互补:weather 仅提供实时天气,本 Skill 支持预报。
查询指定城市未来几天的天气预报。该脚本通过标准输入接收 JSON 参数,并输出 JSON 格式的天气预报结果。
| 参数名 | 类型 | 描述 | 默认值 |
|---|---|---|---|
city | string | 城市名称 | "深圳" |
day_offset | integer | 0=今天,1=明天,2=后天,最多7天 | 1 |
{
"city": "深圳",
"date": "2026-03-03",
"weather": "多云",
"high": "28°C",
"low": "21°C",
"day_offset": 1,
"source": "wttr.in",
"success": true
}
要运行 scripts/main.py,请通过标准输入提供 JSON 数据。
echo '{"city": "北京", "day_offset": 2}' | python3 scripts/main.py
Input:
{
"city": "深圳",
"day_offset": 1
}
Output (示例,实际结果可能因时间而异):
{
"city": "深圳",
"date": "2024-07-20",
"weather": "多云",
"high": "32°C",
"low": "26°C",
"day_offset": 1,
"source": "wttr.in",
"success": true
}