Industry News Agent

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a straightforward RSS news-fetching skill, with disclosed outbound feed requests and an optional daily schedule.

This skill looks safe for its stated RSS news-tracking purpose. Before installing or running it, review the configured RSS sources and only enable the daily cron schedule if you actually want ongoing background checks.

Findings (2)

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.