weather-skill-yub

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is a small, coherent weather lookup that matches its description, with only minor notes about contacting an external weather service and unclear placeholder install documentation.

This appears safe for normal weather lookups. Before installing, verify the package name/source because the documentation uses a placeholder install command, and be aware that online queries send the city name to wttr.in over HTTP.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

A user copying the example could be confused about which skill/package to install.

Why it was flagged

The install example appears placeholder-like and does not match the evaluated registry slug, so users should verify they are installing the intended package; the artifacts do not show automatic remote installation.

Skill content
clawhub install your-name/weather-query
Recommendation

Verify the registry entry before installing and update the documentation to use the exact published skill name.

What this means

The queried city may be visible to wttr.in and potentially to network intermediaries.

Why it was flagged

Online mode sends the user-provided city to the external wttr.in service over plain HTTP; this is disclosed and purpose-aligned, but it is still an external data/transport dependency.

Skill content
url = f'http://wttr.in/{encoded_city}?format=j1'
Recommendation

Use this only for non-sensitive location queries, prefer HTTPS if the service supports it, or use the documented --offline mode when no network disclosure is desired.