Crypto Price By Lpdawn

PassAudited by ClawScan on May 1, 2026.

Overview

This skill appears to do only the disclosed real-time crypto price lookup, with note-level reliance on Binance/ccxt network access and an undeclared Python dependency.

This looks safe for checking public crypto prices. Before installing, be aware that it contacts Binance through ccxt and that the ccxt dependency is not pinned or declared by an install spec.

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 coin symbol you ask about may be sent to Binance/ccxt to retrieve a public market price.

Why it was flagged

The script sends the requested cryptocurrency symbol to an external Binance market-data API through ccxt. This is expected for real-time price lookup and does not show trading, account access, or other high-impact actions.

Skill content
exchange = ccxt.binance()
ticker = exchange.fetch_ticker(symbol + '/USDT')
Recommendation

Use it for simple price checks, and do not treat the result as financial advice or grant it trading/account permissions unless separately reviewed.

What this means

The skill may rely on whatever ccxt package is already available in the environment, which can affect reliability and provenance.

Why it was flagged

The skill depends on the third-party ccxt library, but the provided install specification declares no package installation, version pin, or lockfile. This is not malicious, but dependency provenance is not fully described by the artifacts.

Skill content
import ccxt
Recommendation

Prefer installing in an environment where ccxt is sourced from a trusted package index and pinned to a known version.