Options Strategy Advisor

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is a coherent options-analysis helper with a small pricing script and disclosed market-data API use; users should notice the optional API key and Python dependency setup.

This appears safe to review as an educational options-analysis tool, not a trading bot. Before installing, use a virtual environment for the Python packages, provide only a limited FMP market-data API key if needed, and verify all prices and strategy outputs with a broker before making real trades.

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

You may need to provide a Financial Modeling Prep API key; use a limited key and do not paste unrelated brokerage or financial-account credentials.

Why it was flagged

The skill asks the user to configure an external market-data API key. This is expected for fetching stock data and no leakage or unrelated use is shown, but the registry metadata lists no required env vars or primary credential.

Skill content
FMP API key (free tier sufficient) ... export FMP_API_KEY="your_key_here"
Recommendation

Treat the FMP key as a credential, use the free/least-privileged key intended for market data, and avoid sharing broker logins or trading API tokens with this skill.

What this means

Installing dependencies will trust packages from the Python package ecosystem.

Why it was flagged

The setup documentation uses unpinned PyPI dependencies. This is common and purpose-aligned for a Python analytics script, but it means installation depends on the current packages resolved from PyPI rather than locked versions.

Skill content
pip install numpy scipy requests pandas
Recommendation

Install in a virtual environment and consider pinning or reviewing dependency versions if you need reproducible or stricter supply-chain controls.