盘前简报Pro

PassAudited by ClawScan on May 1, 2026.

Overview

The skill appears to be a coherent offline teaching demo, with only disclosed local execution, local file storage, and an optional scheduled run to consider.

This skill looks safe for its stated offline educational purpose. Before installing, decide whether you want to run the Python script manually or on a schedule, avoid running it as root, and do not put real financial holdings into the config unless you are comfortable storing them locally.

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

Installing and using the skill means running local code that generates reports and writes files in the workspace.

Why it was flagged

The skill instructs the user to run a local Python script. This is expected for the stated offline demo purpose and is user-directed, not hidden.

Skill content
python3 scripts/pre_market_briefing_public.py
Recommendation

Run it only from a trusted local workspace and review the script if you customize it.

What this means

If enabled, the script will keep running on the schedule and continue creating or updating local reports.

Why it was flagged

The documentation includes an optional cron entry, which would make the script run repeatedly on weekdays. It is disclosed and optional, but it is still persistence.

Skill content
0 9 * * 1-5 cd /root/.openclaw/workspace && python3 scripts/pre_market_briefing_public.py
Recommendation

Only add the cron job if you want recurring runs, use your own non-root workspace path, and remove the crontab entry when no longer needed.

What this means

Running scheduled local code as root could increase the impact of mistakes or future modifications.

Why it was flagged

The optional cron example points to a root-owned workspace path. The script does not appear to need elevated privileges, so running it as root would be unnecessary.

Skill content
cd /root/.openclaw/workspace
Recommendation

Run the skill under a normal user account and adjust the cron path to that user's OpenClaw workspace.

What this means

If you replace the sample holdings with real holdings, those details may remain in local configuration or generated local reports.

Why it was flagged

The included config stores portfolio-like fields locally. The provided values appear to be examples, but real user edits could create sensitive local financial records.

Skill content
"holdings": [{ "code": "000001", "name": "平安银行", "shares": 1000, "cost_price": 10.0 }]
Recommendation

Keep the demo data if using it for learning, or protect/delete local config and log files if you enter real portfolio information.