Options Analyzer

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to perform options analysis with public market data and local calculations, but users should install its Python dependencies carefully and treat strategy recommendations as financial analysis rather than trading instructions.

Before installing, use a virtual environment, verify and pin the Python dependencies, and remember that yfinance data and strategy recommendations may be incomplete or inaccurate. The skill does not appear to trade for you, but options strategies can be financially risky.

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

Installing unpinned packages can pull changing code from package registries into the user's environment.

Why it was flagged

The skill asks the user to install third-party Python packages without version pinning or a lockfile. This is purpose-aligned for market data and calculations, but it is still a supply-chain detail users should notice.

Skill content
pip install yfinance mibian pandas numpy  # 安装依赖
Recommendation

Install in a virtual environment, pin dependency versions, and add a complete requirements file that includes all imported packages such as scipy.

What this means

A user might treat generated strategy recommendations as authoritative financial advice and take on losses if they do not independently verify the risks.

Why it was flagged

The recommender can include high-risk options strategies with unlimited loss, while labeling them as aggressive and disclosing the maximum loss. This is aligned with the skill purpose but could affect financial decisions if over-trusted.

Skill content
'short_strangle': { ... 'risk': 'aggressive', ... 'max_loss': '无限', ... }
Recommendation

Treat outputs as educational analysis, verify calculations and market data independently, and consult a qualified financial professional before trading.