Tübingen Weather

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

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

If the user adds the cron job, the agent will automatically run the weather task and send a message every day until that scheduled job is removed.

Why it was flagged

The skill documents a persistent daily cron-triggered agent turn that runs the weather script and sends the result. This is disclosed and purpose-aligned, but it means the skill can keep operating every morning after setup.

Skill content
"schedule": { "kind": "cron", "expr": "0 8 * * *", "tz": "Europe/Berlin" } ... "message": "Run `python3 skills/tuebingen-weather/scripts/fetch_tuebingen_weather.py --output data/weather/$(date +%F)_tuebingen.txt`. Send Master the stdout summary ..."
Recommendation

Only add the cron job if daily automatic messages are desired, and know how to list or remove the OpenClaw cron entry later.