skills$openclaw/crypto-tracker
dbhurley102

by dbhurley

crypto-tracker – OpenClaw Skill

crypto-tracker is an OpenClaw Skills integration for coding workflows. Track crypto prices, set alerts, and search coins via CoinGecko API.

102 stars8.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namecrypto-tracker
descriptionTrack crypto prices, set alerts, and search coins via CoinGecko API. OpenClaw Skills integration.
ownerdbhurley
repositorydbhurley/crypto-tracker
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @dbhurley/crypto-tracker
last updatedFeb 7, 2026

Maintainer

dbhurley

dbhurley

Maintains crypto-tracker in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
data
alerts.json
785 B
scripts
crypto.py
11.9 KB
_meta.json
282 B
SKILL.md
2.7 KB
SKILL.md

name: crypto-tracker description: Track crypto prices, set alerts, and search coins via CoinGecko API. homepage: https://www.coingecko.com/api metadata: {"clawdis":{"emoji":"📈","requires":{"bins":["uv"]}}}

Crypto Tracker

Track cryptocurrency prices, set price/percentage alerts, and search coins using the free CoinGecko API (no API key required).

Quick Commands

Check Prices

# Single coin
uv run {baseDir}/scripts/crypto.py price bitcoin

# Multiple coins
uv run {baseDir}/scripts/crypto.py price bitcoin ethereum solana

# With more details (market cap, volume)
uv run {baseDir}/scripts/crypto.py price bitcoin --detailed

Search Coins

# Find coin ID by name/symbol
uv run {baseDir}/scripts/crypto.py search doge
uv run {baseDir}/scripts/crypto.py search cardano

Manage Alerts

# Set price threshold alert
uv run {baseDir}/scripts/crypto.py alert <user_id> bitcoin above 100000
uv run {baseDir}/scripts/crypto.py alert <user_id> ethereum below 3000

# Set percentage change alert (24h)
uv run {baseDir}/scripts/crypto.py alert <user_id> bitcoin change 5    # ±5%
uv run {baseDir}/scripts/crypto.py alert <user_id> solana drop 10      # -10%
uv run {baseDir}/scripts/crypto.py alert <user_id> ethereum rise 15    # +15%

# List user's alerts
uv run {baseDir}/scripts/crypto.py alerts <user_id>

# Remove an alert
uv run {baseDir}/scripts/crypto.py alert-rm <alert_id>

# Check all alerts (for cron/heartbeat)
uv run {baseDir}/scripts/crypto.py check-alerts

Coin Aliases

Common symbols are automatically resolved:

  • btc → bitcoin
  • eth → ethereum
  • sol → solana
  • doge → dogecoin
  • ada → cardano
  • xrp → ripple
  • dot → polkadot
  • matic → polygon
  • link → chainlink
  • avax → avalanche-2
  • ltc → litecoin

Alert Types

TypeExampleTriggers When
abovealert user btc above 100000Price >= $100,000
belowalert user eth below 3000Price <= $3,000
changealert user btc change 524h change >= ±5%
dropalert user sol drop 1024h change <= -10%
risealert user eth rise 1524h change >= +15%

Cron Integration

Check alerts periodically (e.g., every 15 minutes):

uv run {baseDir}/scripts/crypto.py check-alerts --json-output

Returns triggered alerts with user IDs for notification.

Data Storage

Alerts stored in {baseDir}/data/alerts.json with:

  • Per-user alert tracking
  • Cooldown between repeat notifications (default: 1 hour)
  • Last triggered timestamp

Notes

  • CoinGecko free tier: ~10-30 requests/minute (no API key needed)
  • 15,000+ coins supported
  • Use --json-output flag for machine-readable output
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install crypto-tracker?

Run openclaw add @dbhurley/crypto-tracker in your terminal. This installs crypto-tracker into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/dbhurley/crypto-tracker. Review commits and README documentation before installing.