12 量化交易V2.2完整版

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

A user could run setup commands that are not clearly represented by the registry install metadata or file list.

Why it was flagged

The skill asks users to run a shell deployment script, but the registry says there is no install spec and the manifest lists install.sh rather than this named script. This looks like a setup/provenance inconsistency rather than malicious behavior.

Skill content
cd 12-量化交易V2.2完整版
bash 一键部署脚本.sh
Recommendation

Inspect any shell script before running it, prefer the files actually present in the package, and install dependencies in a virtual environment.

What this means

If a user adds real tokens or email authorization codes to the config file, those secrets could be exposed if the folder is shared, committed, or logged.

Why it was flagged

The configuration supports optional Tushare, SMTP email, and vision-model credentials. These are expected for data and notification features, but the registry declares no credentials or environment variables.

Skill content
tushare_token: "${TUSHARE_TOKEN}" ... password: "your_authorization_code" ... api_key: "${VISION_API_KEY}"
Recommendation

Keep notifications and AI features disabled unless needed, use environment variables or a secrets manager, and avoid committing real credentials.

What this means

Selected stocks, signal recommendations, and market reports may be sent to configured recipients or messaging platforms.

Why it was flagged

The skill can send analysis results through external notification channels. This is disclosed and purpose-aligned, but it can reveal a user's watchlist, trading interests, or generated signals to third-party services.

Skill content
多渠道整合(邮件/微信/飞书/Telegram/钉钉)
- 优先级管理(低/普通/高/紧急)
- 失败重试机制
- 消息队列
Recommendation

Configure only trusted recipients/webhooks, disable unused channels, and review message contents before enabling automatic notifications.

What this means

A monitoring process could keep running and continue making network requests or sending alerts until stopped.

Why it was flagged

The skill documents a recurring monitoring loop that checks stocks every five minutes and sends notifications. This is aligned with real-time monitoring, but users should ensure it has a clear stop condition and scope.

Skill content
monitor_stocks(stocks, interval=300)
# 每5分钟检查一次
# 有信号时发送邮件通知
Recommendation

Run monitoring only for an explicit watchlist, set a duration or stop procedure, and confirm notification settings before enabling it.