Stock Tools

PassAudited by ClawScan on May 2, 2026.

Overview

This appears to be a read-only market quote tool, with minor documentation gaps around Binance crypto support, a hardcoded local proxy, and an undeclared Python dependency.

This skill is reasonable to use for read-only quote lookup. Before installing or running it, confirm you are comfortable with market-symbol queries going to Yahoo Finance or Binance through a local proxy, and run it only in a Python environment where the requests package is trusted.

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

Ticker symbols queried by the user are sent to external finance APIs and through any local proxy listening on port 7891; Binance access may be unexpected if the user only expects Yahoo Finance.

Why it was flagged

The script routes requests through a hardcoded local proxy and may contact Binance for crypto symbols, while the skill description primarily advertises Yahoo Finance stock quote lookup.

Skill content
PROXY = {
    'http': 'http://127.0.0.1:7891',
    'https': 'http://127.0.0.1:7891'
}
...
url = f'https://api.binance.com/api/v3/ticker/price?symbol={symbol}'
Recommendation

Document all external endpoints and the proxy requirement, make the proxy configurable or optional, and validate or encode user-supplied symbols before building request URLs.

What this means

The script may fail if requests is not installed, or it will use whichever requests package is present in the user's Python environment.

Why it was flagged

The script relies on the third-party requests package, but the provided requirements and install spec do not declare dependencies. There is no automatic install behavior shown, so this is a documentation and environment-sourcing note.

Skill content
import requests
Recommendation

Declare the Python dependency and, if installation is later added, pin packages to trusted sources and versions.