Agent skill
getCriptoPrice
Retrieve the latest USD price for a crypto asset (e.g., BTC, ETH) via a public API (CoinGecko). Use when the user asks for the price of a crypto asset.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/getcriptoprice
SKILL.md
getCriptoPrice
This skill provides a simple, reliable way to fetch a crypto spot price in USD.
What it does
- Input: a crypto asset symbol (e.g.,
BTC) or CoinGecko id (e.g.,bitcoin) - Output: JSON with the normalized price payload
How to run (script)
Use the bundled script:
node scripts/getCriptoPrice.mjs BTC
# or
node scripts/getCriptoPrice.mjs bitcoin
Output format
{
"ok": true,
"asset": {
"input": "BTC",
"coingecko_id": "bitcoin",
"symbol": "btc",
"name": "Bitcoin"
},
"currency": "usd",
"price": 12345.67,
"ts": "2026-02-14T03:03:00.000Z",
"source": "coingecko"
}
Notes
- Uses CoinGecko's public endpoints; no API key required.
- If you later want higher rate limits/latency guarantees, swap the data source (e.g., Coinbase, Kraken, Binance) and keep the same output schema.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?