Skills weather-tools

install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/164149043/weather-tools" ~/.claude/skills/openclaw-skills-weather-tools && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/164149043/weather-tools" ~/.openclaw/skills/openclaw-skills-weather-tools && rm -rf "$T"
manifest: skills/164149043/weather-tools/SKILL.md
source content

name: weather-tools description: Get current weather and forecasts (no API key required). homepage: https://wttr.in/:help metadata: {"clawdbot":{"emoji":"🌤️","requires":{"bins":["curl"]}}}

Weather

Get weather information using wttr.in (no API key required).

Current weather

curl wttr.in

Location-specific:

curl wttr.in/Beijing

Compact output:

curl wttr.in/?format=3

Forecasts

3-day forecast:

curl wttr.in/?1

Tomorrow:

curl wttr.in/?1T

Full forecast:

curl wttr.in/?2

Output formats

Current temp only:

curl wttr.in/?format=%t

Wind direction and speed:

curl wttr.in/?format=%w

Full location name:

curl wttr.in/?format=%l

Custom format:

curl wttr.in/?format="%l: %c+%t+%w"

Examples

Beijing current weather:

curl wttr.in/Beijing

Shanghai 3-day forecast:

curl wttr.in/Shanghai?1

Compact format (any location):

curl wttr.in/Tokyo?format=3

Moon phase:

curl wttr.in/?format=%m