Mock Weather

Security checks across static analysis, malware telemetry, and agentic risk

Overview

This skill is a straightforward simulated weather generator with no credentials, network access, persistence, or sensitive data handling shown.

This appears safe for mock weather demos. Do not rely on its output for real-world weather decisions because the artifacts clearly state the data is simulated.

Static analysis

No static analysis findings were reported for this release.

VirusTotal

VirusTotal findings are pending for this skill version.

View on VirusTotal

Risk analysis

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

The agent may run a local script to answer mock weather requests, but the provided script does not access files, credentials, or the network.

Why it was flagged

The skill's normal operation executes a local Python entry point. This matters because users should notice that the skill runs included code, although the shown code only parses arguments, generates mock weather values, and prints output.

Skill content
if __name__ == "__main__": ... data = get_weather(args.city, days) ... print(format_output(data))
Recommendation

Use it for demos or mock responses only, and continue to clarify to users that the weather data is simulated.