My Weather

v1.0.0

Provides current weather conditions for any city, airport code, or zip code using wttr.in without requiring an API key.

2· 1.2k·7 current·7 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 ryansorr1/my-weather.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "My Weather" (ryansorr1/my-weather) from ClawHub.
Skill page: https://clawhub.ai/ryansorr1/my-weather
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
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

Canonical install target

openclaw skills install ryansorr1/my-weather

ClawHub CLI

Package manager switcher

npx clawhub@latest install my-weather
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and intent (weather lookup) align with the SKILL.md which shows curl commands to wttr.in; package.json simply points to SKILL.md. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
Runtime instructions are limited to making HTTP requests to wttr.in (examples using curl and format/query options). The instructions do not ask the agent to read local files, access environment variables, or contact other endpoints. Note: the skill performs outbound network calls to a public service (wttr.in) which is expected for this purpose.
Install Mechanism
No install spec and no code files beyond SKILL.md and a minimal package.json — nothing is written to disk or downloaded. This is the lowest-risk install profile.
Credentials
The skill requires no environment variables, credentials, or config paths. That is proportionate for a simple public-weather lookup service.
Persistence & Privilege
always is false (no forced persistence) and model invocation defaults are unchanged. The skill does not request elevated or persistent system privileges.
Assessment
This skill is small and internally consistent: it just tells the agent to query wttr.in for weather and asks for no secrets or installs. Before installing, consider: (1) network/privacy — queries include location (city, zip, or airport code) which will be sent to a public service (wttr.in); (2) trust — the skill's source/homepage are not provided, so if provenance matters verify the publisher; and (3) execution context — the agent will perform outbound HTTP requests (via curl in examples), so ensure you are comfortable with the agent making network calls. If those points are acceptable, the skill is proportionate to its purpose.

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

latestvk97365v2d3c31bjawggwdz08xx80y6fr
1.2kdownloads
2stars
1versions
Updated 2mo ago
v1.0.0
MIT-0

My Weather

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

Example

curl -s "wttr.in/78023?format=3"
# Output: San Antonio: ⛅️ +28°C

Location

Use city name, airport code, or zip code:

curl -s "wttr.in/London?format=3"
curl -s "wttr.in/JFK?format=3"
curl -s "wttr.in/78023?format=3"

Format options

  • ?format=3 - Compact one-liner
  • ?format=%l:+%c+%t+%h+%w - Custom format
  • ?T - Full forecast
  • ?0 - Current only
  • ?1 - Today only

Units

  • ?m - Metric
  • ?u - USCS

Comments

Loading comments...