Creator Intel V5

ReviewAudited by ClawScan on May 10, 2026.

Overview

This tech-news aggregation skill is mostly purpose-aligned, but it embeds a Tavily API key and its documented run/cron commands point to a script that is not included in the package.

Before installing, ask the maintainer to fix the script-name mismatch and remove the hardcoded Tavily key. Do not enable the daily Feishu cron job until you have verified the exact script being run, configured your own API key safely, and are comfortable with external search/RSS requests and local history storage.

Findings (4)

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

Search requests may run under a shared or unknown Tavily account, and users have no clear credential boundary, rotation method, or assurance about whose quota/account is being used.

Why it was flagged

The script embeds a provider API key directly in source code, while the supplied metadata declares no required credentials and SKILL.md tells users to configure a key in a differently named script.

Skill content
TAVILY_API_KEY = "tvly-dev-..."
Recommendation

Remove the hardcoded key, declare the Tavily credential requirement in metadata, and load the key from a user-controlled environment variable or config file.

What this means

Following the instructions may fail or may cause users to obtain or run an unreviewed file with the expected name, especially when combined with the cron setup.

Why it was flagged

The documented runtime target is scripts/generate_intel.py, but the provided manifest contains scripts/generate_brief.py instead. The reviewed code does not match the file users are told to execute or schedule.

Skill content
cd /path/to/creator-intel-v5 && python3 scripts/generate_intel.py
Recommendation

Do not run or schedule the skill until the package includes the exact script referenced by the instructions, or the instructions are corrected to point to the reviewed file.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If enabled, the skill can continue posting generated briefings on a schedule after the initial setup.

Why it was flagged

The skill documents an optional persistent scheduled task that automatically runs daily and pushes output to a Feishu channel.

Skill content
openclaw cron add ... --schedule "0 9 * * *" ... --channel feishu
Recommendation

Only create the cron job if you want ongoing automated posts, and verify you know how to disable or remove the scheduled task.

What this means

A local record of previously selected URLs will remain on the machine between runs.

Why it was flagged

The skill persists a local history file for URL deduplication with a documented retention limit.

Skill content
历史记录:`~/.openclaw/creator-intel/history.json` ... 保留数量:最近 500 条
Recommendation

Review or delete ~/.openclaw/creator-intel/history.json if you do not want this local history retained.