Back to skill
v0.2.1
Weather Alert Skill
ReviewClawScan verdict for this skill. Analyzed May 1, 2026, 4:33 PM.
Analysis
The skill appears to be a stub that always reports no active weather alerts instead of checking real weather-alert data.
GuidanceReview this skill carefully before installing. It does not appear to perform real weather-alert lookups, so it should not be used for safety decisions or as a reliable alerting source in its current form.
Findings (1)
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.
Abnormal behavior control
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.
Human-Agent Trust Exploitation
SeverityMediumConfidenceHighStatusConcern
src/index.js
const alerts = [];
return {
alert_count: alerts.length,
summary: alerts.length
? `${alerts.length} ${severity} alerts for ${region}`
: `No active ${severity} alerts for ${region}`The implementation never retrieves or receives weather-alert data; it hard-codes an empty alert list and can still produce a reassuring 'No active' summary for any region.
User impactA user may rely on the skill for weather safety information, but it may falsely report that there are no active alerts.
RecommendationDo not rely on this skill for real weather alerts unless the implementation is changed to use a trusted alert source and clearly indicates data freshness and failures.
