← All skills
Tencent SkillHub · Data Analysis

Crypto Prices

Fetch live cryptocurrency and commodity prices from verified sources with caching and fallback, ensuring accurate and up-to-date market data.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch live cryptocurrency and commodity prices from verified sources with caching and fallback, ensuring accurate and up-to-date market data.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, _meta.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Purpose

Fetch live cryptocurrency and commodity prices using the local crypto_prices.py module. This is your single source of truth for all price data — never use web search for prices.

When to Use

Boss Man asks "what's BTC at?" or "price of gold" or any price query You need current prices for market analysis, morning protocol, or any report Anytime you're about to quote a price in conversation

Single Price Lookup

cd ~/clawd && python3 -c " from crypto_prices import fetch_live_price, format_price_text data = fetch_live_price('COIN_NAME') if data: print(format_price_text(data)) # Full details available in data dict: # data['price'], data['change_24h'], data['change_7d'], data['change_30d'] # data['market_cap'], data['volume_24h'], data['high_24h'], data['low_24h'] # data['ath'], data['ath_change_pct'], data['source'] else: print('Price unavailable — all providers failed') "

Multiple Price Lookup (Batch)

cd ~/clawd && python3 -c " from crypto_prices import fetch_multiple_prices, format_prices_block prices = fetch_multiple_prices(['bitcoin', 'ethereum', 'xrp', 'sui', 'gold', 'silver']) print(format_prices_block(prices)) "

Quick Price (Minimal Output)

cd ~/clawd && python3 -c " from crypto_prices import fetch_live_price d = fetch_live_price('COIN_NAME') if d: print(f\"{d['symbol']}: \${d['price']:,.6g} ({d['change_24h']:+.2f}%)\") "

Supported Assets

InputResolves ToSourcebtc, bitcoinbitcoinCoinGeckoeth, ethereumethereumDexScreener → CoinGeckoxrp, ripplerippleDexScreener → CoinGeckosuisuiCoinGeckosol, solanasolanaCoinGeckogold, xaugoldYahoo Finance → CoinGeckosilver, xagsilverYahoo Finance → CoinGeckodoge, ada, dot, avax, link, maticvariousCoinGecko

Provider Chain

Cache (60s TTL) — serves instantly if fresh Yahoo Finance — metals only (gold/silver), most reliable for commodities CoinGecko full — comprehensive data (price, 24h/7d/30d change, ATH/ATL, market cap) CoinGecko simple — lighter endpoint if full is rate-limited DexScreener — DEX-based failover for crypto (ETH and XRP try this first)

Rules

NEVER use Brave Search for prices — it returns stale article snippets, not live data NEVER guess or hallucinate prices — if all providers fail, say "price unavailable" Cache is 60 seconds — calling twice within a minute is free Rate limits: CoinGecko ~10 req/min, DexScreener ~60 req/min For batch queries, the module handles delays automatically

Category context

Data access, storage, extraction, analysis, reporting, and insight generation.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Config
  • SKILL.md Primary doc
  • _meta.json Config