stock-price-checker

PassAudited by ClawScan on May 1, 2026.

Overview

The skill does what it claims: it checks a user-provided stock ticker through yfinance/Yahoo Finance and prints price data, with no credentials, persistence, or destructive behavior shown.

This appears safe for checking public stock and ETF prices. Before use, make sure the yfinance dependency is installed from a trusted source, and remember that ticker lookups are handled by Yahoo Finance through the yfinance library.

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

If yfinance is missing or installed from an untrusted source, the skill may fail or rely on code outside the reviewed artifacts.

Why it was flagged

The skill relies on an external yfinance dependency but does not pin or install it itself. This is purpose-aligned and not suspicious, but users should obtain the package from a trusted source.

Skill content
Required binaries (all must exist): python3, yfinance; Install specifications: No install spec — this is an instruction-only skill.
Recommendation

Use a trusted package source and a known-good yfinance version if you need to install the dependency.

What this means

Ticker symbols you check may be sent to Yahoo Finance through the yfinance library.

Why it was flagged

The skill makes an external provider request through yfinance. This is clearly disclosed and limited to stock-symbol lookup data.

Skill content
Uses yfinance library to fetch data from Yahoo Finance
Recommendation

Use normally for public ticker lookups; avoid entering symbols or queries you consider sensitive.