# Send Crypto Prices to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crypto-prices",
    "name": "Crypto Prices",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ryandeangraves/crypto-prices",
    "canonicalUrl": "https://clawhub.ai/ryandeangraves/crypto-prices",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/crypto-prices",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-prices",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/crypto-prices"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crypto-prices",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-prices",
    "agentUrl": "https://openagent3.xyz/skills/crypto-prices/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-prices/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-prices/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ryandeangraves
- Version: 1.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/crypto-prices)
- [Send to Agent page](https://openagent3.xyz/skills/crypto-prices/agent)
- [JSON manifest](https://openagent3.xyz/skills/crypto-prices/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/crypto-prices/agent.md)
- [Download page](https://openagent3.xyz/downloads/crypto-prices)