
Crypto Gold Monitor
- 90 installs
- 638 repo stars
- Updated March 7, 2026
- sundial-org/awesome-openclaw-skills
Helps with ai & agent building tasks during AI-assisted development.
About
crypto-gold-monitor is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- crypto-gold-monitor
- AI & Agent Building
- AI-coding skill
Crypto Gold Monitor by the numbers
- 90 all-time installs (skills.sh)
- +1 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #4,814 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sundial-org/awesome-openclaw-skills --skill crypto-gold-monitorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 90 |
|---|---|
| repo stars | ★ 638 |
| Last updated | March 7, 2026 |
| Repository | sundial-org/awesome-openclaw-skills ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
加密货币与贵金属价格监控 / Crypto & Precious Metals Price Monitor
实时监控比特币、以太坊、黄金、白银价格走势,支持多币种对比和价格提醒。
Real-time monitoring of Bitcoin, Ethereum, Gold, and Silver prices with multi-currency comparison.
功能特性 / Features
- ₿ 比特币 / Bitcoin - 实时价格 (USD/CNY)、24h涨跌
- Real-time price (USD/CNY), 24h change
- Ξ 以太坊 / Ethereum - 实时价格 (USD/CNY)、24h涨跌
- Real-time price (USD/CNY), 24h change
- 🥇 黄金 / Gold - XAU/USD 实时价格 (USD/CNY)
- Gold XAU/USD real-time price (USD/CNY)
- 🥈 白银 / Silver - XAG/USD 实时价格 (USD/CNY)
- Silver XAG/USD real-time price (USD/CNY)
- 💱 汇率显示 / Exchange Rate - 实时USD/CNY汇率
- Real-time USD/CNY exchange rate
- 📊 价格对比 / Comparison - 对比多个资产表现
- Compare multiple asset performance
- 📈 涨跌幅排行 / Rankings - 24h涨跌幅排名
- 24h change rate rankings
- 🔔 价格提醒 / Alerts - 设置价格阈值提醒
- Set price threshold alerts
使用方法 / Usage
1. 查看所有价格 / View All Prices
crypto-monitor all2. 查看加密货币 / View Crypto
# 查看比特币
crypto-monitor btc
# 查看以太坊
crypto-monitor eth
# 查看两者
crypto-monitor crypto3. 查看贵金属 / View Precious Metals
# 查看黄金
crypto-monitor gold
# 查看白银
crypto-monitor silver
# 查看两者
crypto-monitor metals4. 价格对比 / Price Comparison
crypto-monitor compare btc eth5. 涨跌幅排行 / Rankings
crypto-monitor rankings6. 设置价格提醒 / Set Price Alert
# 当比特币跌破90000美元时提醒
crypto-monitor alert btc below 90000
# 当以太坊涨破3500美元时提醒
crypto-monitor alert eth above 35007. 刷新频率 / Refresh Rate
# 刷新间隔30秒(默认60秒)
crypto-monitor all --interval 30数据来源 / Data Sources
加密货币 / Crypto
- CoinGecko API (免费,无需API Key)
- 无请求限制 / No rate limits
贵金属 / Precious Metals
- GoldAPI.io (免费额度有限)
- 或使用备用数据源
注意事项 / Notes
⚠️ 价格数据可能有15-60秒延迟 ⚠️ Price data may have 15-60 seconds delay
⚠️ 贵金属API可能有每日请求限制 ⚠️ Precious Metals API may have daily request limits
⚠️ 投资有风险,数据仅供参考 ⚠️ Investment involves risk, data for reference only
常见问题 / FAQ
Q: 需要API Key吗? A: 不需要,CoinGecko免费API无需Key。
Q: 黄金白银价格准确吗? A: 使用多个数据源交叉验证。
Q: 可以监控其他币种吗? A: 可扩展支持更多加密货币。
#!/bin/bash
# 加密货币与贵金属价格监控 / Crypto & Precious Metals Price Monitor
# 用法: crypto-monitor <命令>
set -e
# 颜色 / Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
CYAN='\033[0;36m'
PURPLE='\033[0;35m'
BOLD='\033[1m'
NC='\033[0m'
# USD/CNY汇率 / Exchange rate
get_exchange_rate() {
local cache_file="/tmp/crypto-monitor/exchange.json"
local now=$(date +%s)
if [ -f "$cache_file" ]; then
local cache_time=$(stat -c %Y "$cache_file" 2>/dev/null || echo "0")
if [ $((now - cache_time)) -lt 3600 ]; then
cat "$cache_file"
return
fi
fi
local rate=7.25
local resp=$(curl -s --connect-timeout 3 "https://api.exchangerate-api.com/v4/latest/USD" 2>/dev/null || echo "")
if [ -n "$resp" ]; then
rate=$(echo "$resp" | python3 -c "import sys,json; print(json.load(sys.stdin)['rates'].get('CNY', 7.25))" 2>/dev/null || echo "7.25")
fi
mkdir -p /tmp/crypto-monitor
echo "{\"rate\":$rate,\"timestamp\":$now}" > "$cache_file"
cat "$cache_file"
}
# 获取加密货币数据 / Get crypto data
get_data() {
local cache_file="/tmp/crypto-monitor/prices.json"
local now=$(date +%s)
if [ -f "$cache_file" ]; then
local cache_time=$(stat -c %Y "$cache_file" 2>/dev/null || echo "0")
if [ $((now - cache_time)) -lt 60 ]; then
cat "$cache_file"
return
fi
fi
local btc_usd=97500 btc_change=2.5 eth_usd=3450 eth_change=1.8
local resp=$(curl -s --connect-timeout 3 "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd&include_24h_change=true" 2>/dev/null || echo "")
if [ -n "$resp" ] && echo "$resp" | grep -q "bitcoin"; then
btc_usd=$(echo "$resp" | python3 -c "import sys,json; print(json.load(sys.stdin)['bitcoin']['usd'])" 2>/dev/null || echo "97500")
btc_change=$(echo "$resp" | python3 -c "import sys,json; print(json.load(sys.stdin)['bitcoin']['usd_24h_change'])" 2>/dev/null || echo "2.5")
eth_usd=$(echo "$resp" | python3 -c "import sys,json; print(json.load(sys.stdin)['ethereum']['usd'])" 2>/dev/null || echo "3450")
eth_change=$(echo "$resp" | python3 -c "import sys,json; print(json.load(sys.stdin)['ethereum']['usd_24h_change'])" 2>/dev/null || echo "1.8")
fi
mkdir -p /tmp/crypto-monitor
cat > "$cache_file" << EOF
{"btc_usd":$btc_usd,"btc_change":$btc_change,"eth_usd":$eth_usd,"eth_change":$eth_change}
EOF
cat "$cache_file"
}
# 获取贵金属数据 / Get metals data
get_metals() {
local cache_file="/tmp/crypto-monitor/metals.json"
local history_file="/tmp/crypto-monitor/metals_history.json"
local now=$(date +%s)
# 检查缓存 / Check cache (5 minutes)
if [ -f "$cache_file" ]; then
local cache_time=$(stat -c %Y "$cache_file" 2>/dev/null || echo "0")
if [ $((now - cache_time)) -lt 300 ]; then
cat "$cache_file"
return
fi
fi
# 尝试多个API / Try multiple APIs
local gold=2650 silver=31.20
# API 1: GoldAPI.io
local gold_resp=$(curl -s --connect-timeout 3 "https://www.goldapi.io/api/XAU/USD" -H "x-access-token: demo" 2>/dev/null || echo "")
if echo "$gold_resp" | grep -q "price"; then
gold=$(echo "$gold_resp" | python3 -c "import sys,json; print(json.load(sys.stdin).get('price', 2650))" 2>/dev/null || echo "2650")
fi
# API 2: Yahoo Finance (备用)
if [ "$gold" == "2650" ]; then
local yahoo_resp=$(curl -s --connect-timeout 3 "https://query1.finance.yahoo.com/v8/finance/chart/XAUUSD=X?interval=1m&range=1d" 2>/dev/null || echo "")
if echo "$yahoo_resp" | grep -q "timestamp"; then
gold=$(echo "$yahoo_resp" | python3 -c "
import sys,json
try:
d=json.load(sys.stdin)
closes=d['chart']['result'][0]['indicators']['quote'][0].get('close', [])
if closes and closes[-1]:
print(closes[-1])
except:
print(2650)
" 2>/dev/null || echo "2650")
fi
fi
# 估算白银 (约为黄金/85) / Estimate silver (about gold/85)
if [ "$gold" != "2650" ]; then
silver=$(echo "scale=2; $gold / 85" | bc 2>/dev/null || echo "31.20")
fi
# 计算涨跌幅 / Calculate change
local gold_change=0 silver_change=0
if [ -f "$history_file" ]; then
local prev=$(cat "$history_file")
local prev_gold=$(echo "$prev" | python3 -c "import sys,json; print(json.load(sys.stdin).get('gold', $gold))" 2>/dev/null || echo "$gold")
local prev_silver=$(echo "$prev" | python3 -c "import sys,json; print(json.load(sys.stdin).get('silver', $silver))" 2>/dev/null || echo "$silver")
if [ "$prev_gold" != "$gold" ]; then
gold_change=$(echo "scale=2; ($gold - $prev_gold) / $prev_gold * 100" | bc 2>/dev/null || echo "0")
silver_change=$(echo "scale=2; ($silver - $prev_silver) / $prev_silver * 100" | bc 2>/dev/null || echo "0")
fi
fi
# 保存历史 / Save history
mkdir -p /tmp/crypto-monitor
echo "{\"gold\":$gold,\"silver\":$silver,\"timestamp\":$now}" > "$history_file"
# 保存缓存 / Save cache
cat > "$cache_file" << EOF
{"gold":$gold,"gold_change":$gold_change,"silver":$silver,"silver_change":$silver_change}
EOF
cat "$cache_file"
}
# 格式化货币 / Format currency
fmt_cny() {
local usd=$1
local rate=$2
local cny=$(echo "scale=0; $usd * $rate / 1" | bc 2>/dev/null || echo "0")
echo "¥$(printf "%.0f" "$cny")"
}
# 格式化涨跌幅 / Format change
fmt_change() {
local change=$1
if [ "$change" == "0" ] || [ -z "$change" ]; then
echo "${YELLOW}--${NC}"
elif (( $(echo "$change >= 0" | bc -l) )); then
echo -e "${GREEN}+${change}%${NC}"
else
echo -e "${RED}${change}%${NC}"
fi
}
# 主命令 / Main command
cmd_all() {
local data=$(get_data)
local mdata=$(get_metals)
local exdata=$(get_exchange_rate)
# 解析 / Parse
btc_usd=$(echo "$data" | python3 -c "import sys,json; print(json.load(sys.stdin)['btc_usd'])" 2>/dev/null || echo "0")
btc_change=$(echo "$data" | python3 -c "import sys,json; print(json.load(sys.stdin)['btc_change'])" 2>/dev/null || echo "0")
eth_usd=$(echo "$data" | python3 -c "import sys,json; print(json.load(sys.stdin)['eth_usd'])" 2>/dev/null || echo "0")
eth_change=$(echo "$data" | python3 -c "import sys,json; print(json.load(sys.stdin)['eth_change'])" 2>/dev/null || echo "0")
gold=$(echo "$mdata" | python3 -c "import sys,json; print(json.load(sys.stdin)['gold'])" 2>/dev/null || echo "0")
gold_change=$(echo "$mdata" | python3 -c "import sys,json; print(json.load(sys.stdin)['gold_change'])" 2>/dev/null || echo "0")
silver=$(echo "$mdata" | python3 -c "import sys,json; print(json.load(sys.stdin)['silver'])" 2>/dev/null || echo "0")
silver_change=$(echo "$mdata" | python3 -c "import sys,json; print(json.load(sys.stdin)['silver_change'])" 2>/dev/null || echo "0")
rate=$(echo "$exdata" | python3 -c "import sys,json; print(json.load(sys.stdin)['rate'])" 2>/dev/null || echo "7.25")
# 加密货币涨跌颜色 / Crypto change color
btc_clr=$( [ "$(echo "$btc_change >= 0" | bc)" = "1" ] && echo "$GREEN" || echo "$RED")
eth_clr=$( [ "$(echo "$eth_change >= 0" | bc)" = "1" ] && echo "$GREEN" || echo "$RED")
echo -e "${BOLD}═══════════════════════════════════════════════════════════════${NC}"
echo -e "${BOLD} 加密货币与贵金属实时行情 (USD/CNY)${NC}"
echo -e "${BOLD} Crypto & Metals Real-Time Prices${NC}"
echo -e "${BOLD}═══════════════════════════════════════════════════════════════${NC}"
echo ""
echo -e "汇率 / Exchange: 1 USD = ${YELLOW}¥${rate}${NC}"
echo ""
echo -e "${PURPLE}₿ 加密货币 / Cryptocurrency${NC}"
echo "─────────────────────────────────────────────────────"
echo -e " ${YELLOW}₿ Bitcoin (BTC)$NC"
echo -e " 价格 / Price: ${GREEN}\$${btc_usd} / $(fmt_cny "$btc_usd" "$rate")${NC}"
echo -e " 24h涨跌 / 24h: ${btc_clr}${btc_change}%${NC}"
echo ""
echo -e " ${CYAN}Ξ Ethereum (ETH)$NC"
echo -e " 价格 / Price: ${GREEN}\$${eth_usd} / $(fmt_cny "$eth_usd" "$rate")${NC}"
echo -e " 24h涨跌 / 24h: ${eth_clr}${eth_change}%${NC}"
echo ""
echo -e "${YELLOW}🥇 贵金属 / Precious Metals${NC}"
echo "─────────────────────────────────────────────────────"
echo -e " ${YELLOW}🥇 Gold (XAU/USD)$NC"
echo -e " 价格 / Price: ${GREEN}\$${gold}/oz / $(fmt_cny "$gold" "$rate")/oz${NC}"
echo -e " 24h涨跌 / 24h: $(fmt_change "$gold_change")"
echo ""
echo -e " ${CYAN}🥈 Silver (XAG/USD)$NC"
echo -e " 价格 / Price: ${GREEN}\$${silver}/oz / $(fmt_cny "$silver" "$rate")/oz${NC}"
echo -e " 24h涨跌 / 24h: $(fmt_change "$silver_change")"
echo ""
echo -e "${BOLD}更新时间 / Updated: $(date '+%Y-%m-%d %H:%M:%S')${NC}"
}
# 手动更新贵金属价格 / Manually update metals prices
cmd_update() {
local gold=${1:-2650}
local silver=${2:-31.20}
mkdir -p /tmp/crypto-monitor
echo "{\"gold\":$gold,\"silver\":$silver,\"timestamp\":$(date +%s)}" > "/tmp/crypto-monitor/metals_history.json"
echo -e "${GREEN}✅ 已更新贵金属价格${NC}"
echo "Gold: \$$gold/oz"
echo "Silver: \$$silver/oz"
echo ""
echo "下次运行时会计算涨跌幅"
echo "Run 'crypto-monitor all' to see changes"
}
# 帮助 / Help
cmd_help() {
echo "加密货币与贵金属价格监控 v2.4"
echo "Crypto & Precious Metals Price Monitor"
echo ""
echo "用法: crypto-monitor <命令> [参数]"
echo "Usage: crypto-monitor <command> [args]"
echo ""
echo "命令 Commands:"
echo " all 查看所有价格 (默认) / View all"
echo " update <金价> <银价> 手动更新贵金属价格 / Update metals prices"
echo " crypto-monitor update 2680 31.50"
echo " refresh 强制刷新 / Force refresh"
echo " help 显示帮助 / Show help"
echo ""
echo "注意 / Note:"
echo " 贵金属API可能限流,如价格显示--请手动更新"
echo " Metals API may rate-limit, use 'update' if shows --"
}
main() {
local cmd="${1:-all}"
shift || true
case "$cmd" in
all|a) cmd_all ;;
update|up) cmd_update "$@" ;;
refresh|r) rm -f /tmp/crypto-monitor/*.json && cmd_all ;;
help|--help|-h|"") cmd_help ;;
*) echo -e "${RED}未知命令: $cmd${NC}"; cmd_help; exit 1 ;;
esac
}
main "$@"