From pm-live
Fetch live cryptocurrency prices with zero API keys — CoinGecko's public endpoints primary, Coinbase spot fallback, via plain curl. Use when asked what's bitcoin at, ETH price in euros, how's the crypto market today, or price of some altcoin. Produces the current price with 24h context, the source and timestamp, the rerunnable command, and the volatility caveat that crypto answers must carry.
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-liveGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.