Crypto Price
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to do what it says: fetch public crypto prices, generate charts, and store temporary chart/cache files without requesting credentials or showing destructive behavior.
Install if you are comfortable with a skill that runs a local Python script, calls CoinGecko/Hyperliquid, installs/uses matplotlib, and creates temporary chart/cache files. It does not request credentials, but crypto prices should still be independently verified before financial use.
Findings (4)
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.
When invoked, the agent may run the included script and attach a generated chart image.
The skill instructs the agent to execute a local bundled Python script with a user-selected token and duration; this is necessary for the stated charting function and is clearly disclosed.
python3 {baseDir}/scripts/get_price_chart.py <SYMBOL> [duration]Use the skill when you are comfortable with local script execution for crypto chart generation, and review output before relying on it.
Installing dependencies may pull the current compatible matplotlib release and its transitive dependencies.
The charting dependency is declared with a lower-bound version rather than an exact pin; this is purpose-aligned but leaves package resolution to the user environment.
matplotlib>=3.5.0
Install dependencies from a trusted package index, preferably in a virtual environment; pin versions if you need reproducible installs.
Token symbols and requested timeframes may be sent to CoinGecko or Hyperliquid.
The skill sends market-data requests to named third-party APIs; this is disclosed and central to the price lookup purpose, with no credentials or private local data shown.
Hyperliquid API - For HYPE and other Hyperliquid tokens (preferred) ... CoinGecko API - Fallback for other tokens
Avoid treating queried symbols or timing as private, and independently verify prices before making financial decisions.
Repeated requests may return recently cached public market data rather than freshly fetched data.
The skill temporarily reuses cached public price data; this is disclosed and short-lived, but users should know results may come from cache.
Price data cached for 300 seconds (5 minutes) in `/tmp/crypto_price_*.json`.
If freshness matters, wait for cache expiry or clear the relevant /tmp cache files before retrying.
