Solar Weather Monitor
Analysis
This appears to be a benign public NOAA space-weather checker that runs a local Python helper and contacts NOAA for data.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Source: unknown; Homepage: none
The registry metadata does not provide an external source or homepage for provenance verification, although the bundled code is visible and purpose-aligned.
python3 solar-weather.py current
The documented usage requires executing the included Python helper locally; this is transparent and user-directed, not hidden or automatic.
API_BASE = "https://services.swpc.noaa.gov"; urllib.request.urlopen(url, timeout=10)
The script performs outbound HTTPS API requests to NOAA SWPC endpoints, matching the stated purpose and not showing local data or credentials being sent.
