Weather

v1.0.0

Get current weather and forecasts (no API key required).

0· 80·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 quincygunter/quincy-weather.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Weather" (quincygunter/quincy-weather) from ClawHub.
Skill page: https://clawhub.ai/quincygunter/quincy-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 quincy-weather

ClawHub CLI

Package manager switcher

npx clawhub@latest install quincy-weather
Security Scan
Capability signals
Requires sensitive credentials
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description, required binary (curl), and runtime instructions all align with a simple weather lookup skill; nothing requested is disproportionate to providing weather data.
Instruction Scope
Instructions only run curl against wttr.in and api.open-meteo.com and optionally save a PNG to /tmp; they do not read local files or environment variables. Note: user-supplied locations and the agent's network-level metadata (IP) will be transmitted to third-party services, which is a privacy consideration.
Install Mechanism
No install spec and no code files — instruction-only skill. This is low-risk from an installation/execution surface perspective.
Credentials
No environment variables, credentials, or config paths are requested or used; credential access is minimal and proportional to the stated purpose.
Persistence & Privilege
Skill is not always-on and uses normal autonomous invocation settings. It does not request elevated persistence or access to other skills' configs.
Assessment
This skill is coherent and low-risk: it simply runs curl against wttr.in and Open‑Meteo and requires no credentials or installs. Before installing, be aware that queries (location names, coordinates) and your agent's network metadata (IP address) will be sent to third-party servers — avoid submitting sensitive or precisely identifying locations if you care about privacy. Also ensure curl is available in the runtime environment. If you need an offline or privacy-preserving option, look for a local weather dataset or a service that guarantees no logging.

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

Runtime requirements

🌤️ Clawdis
Binscurl
latestvk971grtb61fty755032eftm37s84x8e3
80downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

Weather

Two free services, no API keys needed.

wttr.in (primary)

Quick one-liner:

curl -s "wttr.in/London?format=3"
# Output: London: ⛅️ +8°C

Compact format:

curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w"
# Output: London: ⛅️ +8°C 71% ↙5km/h

Full forecast:

curl -s "wttr.in/London?T"

Format codes: %c condition · %t temp · %h humidity · %w wind · %l location · %m moon

Tips:

  • URL-encode spaces: wttr.in/New+York
  • Airport codes: wttr.in/JFK
  • Units: ?m (metric) ?u (USCS)
  • Today only: ?1 · Current only: ?0
  • PNG: curl -s "wttr.in/Berlin.png" -o /tmp/weather.png

Open-Meteo (fallback, JSON)

Free, no key, good for programmatic use:

curl -s "https://api.open-meteo.com/v1/forecast?latitude=51.5&longitude=-0.12&current_weather=true"

Find coordinates for a city, then query. Returns JSON with temp, windspeed, weathercode.

Docs: https://open-meteo.com/en/docs

Comments

Loading comments...