Stock Strategy Backtester Clean

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to run a local Python backtester on user-supplied stock CSV data, with no evidence of network access, credential use, persistence, or hidden destructive behavior.

This appears appropriate for local stock-strategy research. Before installing, make sure you are comfortable letting it run a bundled Python script and read the CSV file path you provide; do not treat its backtest results as financial advice.

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

The skill may execute its included Python script locally to process a stock-price CSV file.

Why it was flagged

The skill asks the agent/user to run a bundled Python script. This is central to the backtesting purpose and is not hidden, but it is still local code execution.

Skill content
python scripts/backtest_strategy.py \
  --csv /path/to/prices.csv
Recommendation

Use it only with CSV files you intend to analyze, and review the script if your environment treats local code execution as sensitive.

What this means

The skill may fail or behave differently if Python is unavailable or if the wrong Python environment is used.

Why it was flagged

The metadata does not declare Python as a required binary even though the documented workflow depends on it. This is an under-declared runtime requirement, not evidence of malicious behavior.

Skill content
Required binaries (all must exist): none ... Quick Start: `python scripts/backtest_strategy.py`
Recommendation

Confirm the Python runtime is available and appropriate before invoking the script.