Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tools-only/X-Skills --skill weather명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 직업 분류 기준
SKILL.md 표시 중
| name | weather |
| description | 查询城市天气信息。当用户询问某个城市的天气、温度、湿度等信息时使用。 |
| license | MIT |
| compatibility | Requires Python 3.x, network access |
| metadata | {"author":"skillLite","version":"3.0"} |
查询指定城市的真实天气信息。开箱即用,无需配置任何 API Key!
| 优先级 | 数据源 | 需要 Key | 说明 |
|---|---|---|---|
| 1 | 中华万年历 | ❌ 不需要 | 国内免费稳定,默认使用 |
| 2 | sojson天气 | ❌ 不需要 | 备用免费源,含空气质量 |
| 3 | 和风天气 | ✅ 需要 | 数据详细 |
| 4 | 高德天气 | ✅ 需要 | 国内稳定 |
| 5 | wttr.in | ❌ 不需要 | 国外服务,可能超时 |
无需任何配置,直接查询即可获取真实天气数据!
如需更详细的天气数据,可配置以下 API:
export AMAP_API_KEY=your_key # https://lbs.amap.com
export QWEATHER_API_KEY=your_key # https://dev.qweather.com
输入: {"city": "深圳"}
输出:
{
"city": "深圳",
"temperature": "18°C",
"weather": "多云",
"high": "20°C",
"low": "14°C",
"wind": "东北风 3-4级",
"tip": "天气较凉,注意添加衣物",
"source": "中华万年历",
"success": true
}