Weather

v1.0.0

Get current weather and forecasts via wttr.in or Open-Meteo. Use when: user asks about weather, temperature, or forecasts for any location. NOT for: historic...

0· 98·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for shaojie66/shaojie66-weather.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Weather" (shaojie66/shaojie66-weather) from ClawHub.
Skill page: https://clawhub.ai/shaojie66/shaojie66-weather
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install shaojie66-weather

ClawHub CLI

Package manager switcher

npx clawhub@latest install shaojie66-weather
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name and description match its behavior: fetching current weather/forecasts. It requires only curl, which is appropriate. Minor inconsistency: the description references Open‑Meteo, but the SKILL.md only documents wttr.in usage (no Open‑Meteo commands or examples).
Instruction Scope
SKILL.md contains explicit curl commands to wttr.in for current conditions and forecasts. Instructions do not reference unrelated files, environment variables, or external endpoints beyond wttr.in. The user-supplied location is sent in the URL (and will be transmitted to wttr.in).
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk install surface. It only requires the existing curl binary.
Credentials
No environment variables, credentials, or config paths are requested — proportionate for a simple weather-fetching skill.
Persistence & Privilege
always:false (default) and no special privileges requested. The skill can be invoked autonomously per platform defaults, which is expected for skills of this type.
Assessment
This skill is low-risk and does what it says: it runs curl queries against wttr.in to fetch weather. Before installing, note: (1) requests include the location string you provide and your IP address — wttr.in (a third party) will receive and may log that data, so avoid sending sensitive location identifiers; (2) the README mentions Open‑Meteo but provides only wttr.in examples — if you expected Open‑Meteo integration, ask the author or update the skill; (3) respect wttr.in rate limits (the SKILL.md warns against spamming). If you need stricter privacy or official data sources, consider using a paid API with an explicit key and privacy guarantees.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Clawdis
Binscurl
latestvk97ceybaeg67knqs8xs5n6n45d842svz
98downloads
0stars
1versions
Updated 3w ago
v1.0.0
MIT-0

Weather Skill

Get current weather conditions and forecasts.

When to Use

USE this skill when:

  • "What's the weather?"
  • "Will it rain today/tomorrow?"
  • "Temperature in [city]"
  • "Weather forecast for the week"
  • Travel planning weather checks

When NOT to Use

DON'T use this skill when:

  • Historical weather data → use weather archives/APIs
  • Climate analysis or trends → use specialized data sources
  • Hyper-local microclimate data → use local sensors
  • Severe weather alerts → check official NWS sources
  • Aviation/marine weather → use specialized services (METAR, etc.)

Location

Always include a city, region, or airport code in weather queries.

Commands

Current Weather

# One-line summary
curl "wttr.in/London?format=3"

# Detailed current conditions
curl "wttr.in/London?0"

# Specific city
curl "wttr.in/New+York?format=3"

Forecasts

# 3-day forecast
curl "wttr.in/London"

# Week forecast
curl "wttr.in/London?format=v2"

# Specific day (0=today, 1=tomorrow, 2=day after)
curl "wttr.in/London?1"

Format Options

# One-liner
curl "wttr.in/London?format=%l:+%c+%t+%w"

# JSON output
curl "wttr.in/London?format=j1"

# PNG image
curl "wttr.in/London.png"

Format Codes

  • %c — Weather condition emoji
  • %t — Temperature
  • %f — "Feels like"
  • %w — Wind
  • %h — Humidity
  • %p — Precipitation
  • %l — Location

Quick Responses

"What's the weather?"

curl -s "wttr.in/London?format=%l:+%c+%t+(feels+like+%f),+%w+wind,+%h+humidity"

"Will it rain?"

curl -s "wttr.in/London?format=%l:+%c+%p"

"Weekend forecast"

curl "wttr.in/London?format=v2"

Notes

  • No API key needed (uses wttr.in)
  • Rate limited; don't spam requests
  • Works for most global cities
  • Supports airport codes: curl wttr.in/ORD

Comments

Loading comments...