Agent skill
Trending Coins
Top trending and most searched coins on CoinGecko in the last 24 hours
Install this agent skill to your Project
npx add-skill https://github.com/aaronjmars/aeon/tree/main/skills/trending-coins
SKILL.md
${var} — Specific coin to highlight or category to filter (e.g. "PEPE", "AI tokens", "DePIN"). If empty, shows all trending coins.
Read memory/MEMORY.md for context. Read the last 2 days of memory/logs/ to avoid repeating data.
Steps
-
Fetch trending coins from CoinGecko:
bash# Trending searches (top 15 coins people are searching for) curl -s "https://api.coingecko.com/api/v3/search/trending" \ ${COINGECKO_API_KEY:+-H "x-cg-pro-api-key: $COINGECKO_API_KEY"} -
For each trending coin, extract:
- Name, symbol, market cap rank
- Current price (USD)
- 24h price change percentage
- Market cap
- The
scorefield (lower = more trending)
-
Also fetch the top gainers for additional context:
bash# Top 250 coins sorted by market cap — we'll extract biggest 24h movers curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=market_cap_desc&per_page=250&page=1&sparkline=false&price_change_percentage=24h" \ ${COINGECKO_API_KEY:+-H "x-cg-pro-api-key: $COINGECKO_API_KEY"} -
Cross-reference: flag any trending coin that is also a top mover (trending + pumping = notable signal). If
${var}is set, also fetch detailed data for that specific coin or filter trending results to that category, and highlight it in the output. -
Send via
./notify(under 4000 chars):*Trending Coins — ${today}* *Most Searched (CoinGecko)* 1. NAME (SYMBOL) — #X market cap rank $price (±X.X% 24h) | $XB mcap 2. ... *Notable:* SYMBOL is trending AND up XX% — [brief note if relevant] -
Log to memory/logs/${today}.md. If the API returns empty or errors, log "TRENDING_COINS_OK" and end.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
Polymarket
Trending and top markets on Polymarket — volume, new markets, biggest movers
Daily Article
Research trending topics and write a publication-ready article
DeFi Monitor
Check pool health, positions, and yield rates for tracked protocols
Skill Evals
Evaluate skill output quality against assertion manifests — detects regressions before users notice
Monitor Polymarket
Monitor specific prediction markets for 24h price moves, volume changes, and fresh comments
Self Review
Weekly audit of what Aeon did, what failed, and what to improve
Didn't find tool you were looking for?