Trading Coach

PassAudited by ClawScan on May 1, 2026.

Overview

The artifacts match a trading CSV review tool, but users should review the external GitHub code before running it and protect their private trading data.

Before installing, inspect the referenced GitHub repository and dependencies, run it in a virtual environment, and use a copy of your trading CSV with unnecessary personal or account identifiers removed. Treat generated trading scores and recommendations as informational, not as guaranteed financial advice.

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 the external project may run code or dependencies that were not represented in this skill package.

Why it was flagged

The setup directs users to fetch and install code and dependencies from an external repository that is not included in the provided artifact files.

Skill content
git clone https://github.com/BENZEMA216/tradingcoach.git ~/tradingcoach ... pip install -r requirements.txt
Recommendation

Verify the repository and requirements before installation, use a virtual environment, and avoid running it on sensitive data until the code is reviewed.

What this means

Using the skill as documented means running local code on the user's machine rather than only generating a text analysis.

Why it was flagged

The documented workflow requires executing local Python scripts. This is disclosed and central to the stated purpose, but the script contents are not part of the provided files.

Skill content
python scripts/import_trades.py /path/to/trades.csv ... python scripts/run_matching.py ... python scripts/score_positions.py --all ... python scripts/analyze_scores.py
Recommendation

Run the scripts only from a trusted checkout, preferably in an isolated environment and on a copy of the CSV data.

What this means

Private trading history may appear in the analysis output or any saved reports.

Why it was flagged

The supported CSV fields include detailed financial transaction information that will be used to generate reports and summaries.

Skill content
成交价格 | 成交数量 | 成交金额 | 成交时间 | 币种 | 手续费
Recommendation

Use only the intended CSV files, remove unnecessary identifiers such as account numbers if present, and avoid sharing generated reports publicly.

What this means

A user could over-rely on the scoring system when deciding whether to trade.

Why it was flagged

The documentation includes actionable trading guidance based on generated scores, which can influence real financial decisions.

Skill content
只执行评分 ≥ 70 的交易机会
Recommendation

Treat the report as educational analysis, validate conclusions independently, and do not rely on it as sole financial advice.