{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crypto-prices",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-prices",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/crypto-prices",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Purpose",
        "body": "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."
      },
      {
        "title": "When to Use",
        "body": "Boss Man asks \"what's BTC at?\" or \"price of gold\" or any price query\nYou need current prices for market analysis, morning protocol, or any report\nAnytime you're about to quote a price in conversation"
      },
      {
        "title": "Single Price Lookup",
        "body": "cd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_live_price, format_price_text\ndata = fetch_live_price('COIN_NAME')\nif data:\n    print(format_price_text(data))\n    # Full details available in data dict:\n    # data['price'], data['change_24h'], data['change_7d'], data['change_30d']\n    # data['market_cap'], data['volume_24h'], data['high_24h'], data['low_24h']\n    # data['ath'], data['ath_change_pct'], data['source']\nelse:\n    print('Price unavailable — all providers failed')\n\""
      },
      {
        "title": "Multiple Price Lookup (Batch)",
        "body": "cd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_multiple_prices, format_prices_block\nprices = fetch_multiple_prices(['bitcoin', 'ethereum', 'xrp', 'sui', 'gold', 'silver'])\nprint(format_prices_block(prices))\n\""
      },
      {
        "title": "Quick Price (Minimal Output)",
        "body": "cd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_live_price\nd = fetch_live_price('COIN_NAME')\nif d: print(f\\\"{d['symbol']}: \\${d['price']:,.6g} ({d['change_24h']:+.2f}%)\\\")\n\""
      },
      {
        "title": "Supported Assets",
        "body": "InputResolves ToSourcebtc, bitcoinbitcoinCoinGeckoeth, ethereumethereumDexScreener → CoinGeckoxrp, ripplerippleDexScreener → CoinGeckosuisuiCoinGeckosol, solanasolanaCoinGeckogold, xaugoldYahoo Finance → CoinGeckosilver, xagsilverYahoo Finance → CoinGeckodoge, ada, dot, avax, link, maticvariousCoinGecko"
      },
      {
        "title": "Provider Chain",
        "body": "Cache (60s TTL) — serves instantly if fresh\nYahoo Finance — metals only (gold/silver), most reliable for commodities\nCoinGecko full — comprehensive data (price, 24h/7d/30d change, ATH/ATL, market cap)\nCoinGecko simple — lighter endpoint if full is rate-limited\nDexScreener — DEX-based failover for crypto (ETH and XRP try this first)"
      },
      {
        "title": "Rules",
        "body": "NEVER use Brave Search for prices — it returns stale article snippets, not live data\nNEVER guess or hallucinate prices — if all providers fail, say \"price unavailable\"\nCache is 60 seconds — calling twice within a minute is free\nRate limits: CoinGecko ~10 req/min, DexScreener ~60 req/min\nFor batch queries, the module handles delays automatically"
      }
    ],
    "body": "Skill: crypto-prices\nPurpose\n\nFetch 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.\n\nWhen to Use\nBoss Man asks \"what's BTC at?\" or \"price of gold\" or any price query\nYou need current prices for market analysis, morning protocol, or any report\nAnytime you're about to quote a price in conversation\nHow to Execute\nSingle Price Lookup\ncd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_live_price, format_price_text\ndata = fetch_live_price('COIN_NAME')\nif data:\n    print(format_price_text(data))\n    # Full details available in data dict:\n    # data['price'], data['change_24h'], data['change_7d'], data['change_30d']\n    # data['market_cap'], data['volume_24h'], data['high_24h'], data['low_24h']\n    # data['ath'], data['ath_change_pct'], data['source']\nelse:\n    print('Price unavailable — all providers failed')\n\"\n\nMultiple Price Lookup (Batch)\ncd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_multiple_prices, format_prices_block\nprices = fetch_multiple_prices(['bitcoin', 'ethereum', 'xrp', 'sui', 'gold', 'silver'])\nprint(format_prices_block(prices))\n\"\n\nQuick Price (Minimal Output)\ncd ~/clawd && python3 -c \"\nfrom crypto_prices import fetch_live_price\nd = fetch_live_price('COIN_NAME')\nif d: print(f\\\"{d['symbol']}: \\${d['price']:,.6g} ({d['change_24h']:+.2f}%)\\\")\n\"\n\nSupported Assets\nInput\tResolves To\tSource\nbtc, bitcoin\tbitcoin\tCoinGecko\neth, ethereum\tethereum\tDexScreener → CoinGecko\nxrp, ripple\tripple\tDexScreener → CoinGecko\nsui\tsui\tCoinGecko\nsol, solana\tsolana\tCoinGecko\ngold, xau\tgold\tYahoo Finance → CoinGecko\nsilver, xag\tsilver\tYahoo Finance → CoinGecko\ndoge, ada, dot, avax, link, matic\tvarious\tCoinGecko\nProvider Chain\nCache (60s TTL) — serves instantly if fresh\nYahoo Finance — metals only (gold/silver), most reliable for commodities\nCoinGecko full — comprehensive data (price, 24h/7d/30d change, ATH/ATL, market cap)\nCoinGecko simple — lighter endpoint if full is rate-limited\nDexScreener — DEX-based failover for crypto (ETH and XRP try this first)\nRules\nNEVER use Brave Search for prices — it returns stale article snippets, not live data\nNEVER guess or hallucinate prices — if all providers fail, say \"price unavailable\"\nCache is 60 seconds — calling twice within a minute is free\nRate limits: CoinGecko ~10 req/min, DexScreener ~60 req/min\nFor batch queries, the module handles delays automatically"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ryandeangraves/crypto-prices",
    "publisherUrl": "https://clawhub.ai/ryandeangraves/crypto-prices",
    "owner": "ryandeangraves",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}