From pm-live
Fetches live cryptocurrency prices via CoinGecko and Coinbase APIs with zero keys. Adds 24h context, source timestamp, and volatility caveat.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pm-live:crypto-pricesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Crypto prices are the most-asked live number after weather, and two services answer keylessly: CoinGecko's public API (thousands of coins, market context, any quote currency) and Coinbase's spot endpoint (fast, reliable, majors only). This skill fetches, adds the 24-hour context that turns a number into information, and carries the caveat every crypto answer owes: this number is already stale, ...
Crypto prices are the most-asked live number after weather, and two services answer keylessly: CoinGecko's public API (thousands of coins, market context, any quote currency) and Coinbase's spot endpoint (fast, reliable, majors only). This skill fetches, adds the 24-hour context that turns a number into information, and carries the caveat every crypto answer owes: this number is already stale, and it is not advice.
Ask for these if not provided:
https://api.coingecko.com/api/v3/search?query=name — ticker collisions are common and the wrong coin is a real failure modevs_currencies=eur,inr,jpy)curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd&include_24hr_change=true&include_24hr_vol=true&include_last_updated_at=true" · richer context: .../api/v3/coins/markets?vs_currency=usd&ids=bitcoin,ethereum (adds rank, high/low, ATH distance) · trending: .../api/v3/search/trending. Public tier rate-limits (~10–30 req/min) — batch ids into one call, never loop.curl -s "https://api.coinbase.com/v2/prices/BTC-USD/spot" — extremely reliable, majors and USD/EUR/GBP pairs, no market context. Use when CoinGecko rate-limits or for a fast single number.include_last_updated_at and print it; crypto moves percent-per-hour on bad days, and an undated price is misinformation waiting to age.[Price] [currency] · 24h: [±x.x%] [· rank/context if asked]
[Multi-coin questions: small table, one row per coin]
Source: [CoinGecko / Coinbase] at [timestamp, UTC] · rerun: [exact curl]
Live snapshot, already aging — informational only, not investment advice.
npx claudepluginhub mohitagw15856/pm-claude-skills --plugin pm-liveProvides real-time and historical cryptocurrency price data for 10,000+ coins via CLI commands. Useful for checking prices, monitoring markets, or fetching historical data. Supports watchlists and powers dependent skills.
Provides real-time and historical cryptocurrency price data via CLI scripts. Use for checking prices, monitoring watchlists, or fetching OHLCV history across 10K+ coins.
Queries crypto market data via the CoinGecko CLI: prices, market cap, trending coins, gainers/losers, coin search, and historical/OHLC.