在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用weather
星标9
分支1
更新时间2026年3月2日 18:26
Fetch weather forecasts using wttr.in
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Fetch weather forecasts using wttr.in
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | weather |
| description | Fetch weather forecasts using wttr.in |
| requires | {"bins":["curl"]} |
# Current weather for a city
curl -s "wttr.in/London?format=3"
# Detailed forecast
curl -s "wttr.in/London"
# Compact one-line
curl -s "wttr.in/London?format=%l:+%c+%t+%w+%h"
# Custom format placeholders:
# %l - location, %c - condition icon, %C - condition text
# %t - temperature, %f - feels like, %w - wind, %h - humidity
# %p - precipitation, %P - pressure, %D - dawn, %S - sunrise
# %z - zenith, %s - sunset, %d - dusk, %m - moon phase
# One-liner with key info
curl -s "wttr.in/Tokyo?format=%l:+%C+%t+(feels+%f)+wind+%w"
# JSON output for programmatic use
curl -s "wttr.in/Berlin?format=j1"
# City name
curl -s "wttr.in/Paris"
# Airport code
curl -s "wttr.in/JFK"
# Coordinates
curl -s "wttr.in/48.8566,2.3522"
# IP-based (auto-detect)
curl -s "wttr.in"
-s (silent) to suppress curl's progress bar.format=3 for the most concise output suitable for chat responses.?lang=XX for localized output (e.g., ?lang=de for German).