Industry News Agent
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.
When run, the skill will make web requests to the RSS feeds listed in its configuration.
Running the script contacts configured RSS sources over the network. This is purpose-aligned for a news-fetching skill, but it means the configured sites receive request metadata.
with urllib.request.urlopen(req, timeout=15) as response:
Review config.yaml and only add RSS feed URLs you trust or are comfortable contacting.
If enabled, the skill can run every day and fetch RSS feeds even when you are not manually invoking it.
This optional setup creates a persistent daily cron job. It is clearly documented and user-run, but it remains active until removed.
(crontab -l 2>/dev/null; echo "0 9 * * * python3 ~/.openclaw/workspace/skills/industry-news-agent/scripts/fetch_news.py") | crontab -
Only enable the cron job if you want daily background execution, and remove it from crontab when no longer needed.
