用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/EXboys/skilllite --skill check-weather-forecast命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Web search and content extraction with Tavily and Exa via inference.sh CLI. Apps: Tavily Search, Tavily Extract, Exa Search, Exa Answer, Exa Extract. Capabilities: AI-powered search, content extraction, direct answers, research. Use for: research, RAG pipelines, fact-checking, content aggregation, agents. Triggers: web search, tavily, exa, search api, content extraction, research, internet search, ai search, search assistant, web scraping, rag, perplexity alternative
查询城市天气信息,支持查询今天和明天的天气预报。当用户询问某个城市的天气、温度、湿度等信息时使用。
A simple calculator that can add, subtract, multiply, and divide numbers. Use when the user needs to perform basic arithmetic operations.
基于 SOC 职业分类
正在显示 SKILL.md
| 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
}