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.

What this means

When run, the skill will make web requests to the RSS feeds listed in its configuration.

Why it was flagged

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.

Skill content
with urllib.request.urlopen(req, timeout=15) as response:
Recommendation

Review config.yaml and only add RSS feed URLs you trust or are comfortable contacting.

What this means

If enabled, the skill can run every day and fetch RSS feeds even when you are not manually invoking it.

Why it was flagged

This optional setup creates a persistent daily cron job. It is clearly documented and user-run, but it remains active until removed.

Skill content
(crontab -l 2>/dev/null; echo "0 9 * * * python3 ~/.openclaw/workspace/skills/industry-news-agent/scripts/fetch_news.py") | crontab -
Recommendation

Only enable the cron job if you want daily background execution, and remove it from crontab when no longer needed.