
Aeon Token Movers
- 14 installs
- 1.2k repo stars
- Updated August 1, 2026
- bankrbot/skills
aeon-token-movers is a Claude skill that scans CoinGecko for top movers and trending coins and attaches pump-risk flags to each entry.
About
aeon-token-movers scans CoinGecko public endpoints for the top 24h gainers, losers, and trending coins. It attaches pump-risk flags such as low-liquidity, single-pair-only, and fresh-listing to each entry so an operator does not manually re-check for honeypots. A developer or trader uses it for daily market scans or pre-trade screening. Entries with two or more flags are demoted to a watch-with-caution section.
- Daily scan of CoinGecko gainers, losers, and trending coins
- Six pump-risk flags (low-liquidity, single-pair, fresh-listing, etc.)
- No API key required; runs against public CoinGecko endpoints
Aeon Token Movers by the numbers
- 14 all-time installs (skills.sh)
- Ranked #752 of 1,106 Finance & Trading skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
aeon-token-movers capabilities & compatibility
- Capabilities
- token screening · market scan
- Use cases
- trading · research · data analysis
- Pricing
- Free
What aeon-token-movers says it does
Top movers, losers, and trending coins from CoinGecko
No API key required. Use for daily market scans, pre-trade screening
npx skills add https://github.com/bankrbot/skills --skill aeon-token-moversAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 14 |
|---|---|
| repo stars | ★ 1.2k |
| Last updated | August 1, 2026 |
| Repository | bankrbot/skills ↗ |
What it does
Run a daily crypto market scan with automatic pump-risk flags before trading.
Who is it for?
Traders running a daily crypto market scan who want liquidity and honeypot risk flagged automatically.
Skip if: Placing trades or executing orders; it only scans and reports.
When should I use this skill?
You need to see what is pumping or dumping in the last 24h with risk context.
What you get
A ranked list of gainers, losers, and trending coins with pump-risk flags and a watch-with-caution section.
By the numbers
- six pump-risk flags
- default top 10 each side
- $1M default market-cap floor
Files
aeon-token-movers
Daily scan over CoinGecko's public endpoints, enriched with pump-risk flags so the operator doesn't manually re-check every entry for honeypots.
Inputs
| Param | Description |
|---|---|
limit | Default 10 each side. |
min_mcap | USD floor. Default $1M. |
chains | Optional filter. Empty → all. |
CoinGecko endpoints
# Top gainers/losers (24h)
curl -s "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&order=price_change_percentage_24h_desc&per_page=50&price_change_percentage=24h"
# Trending (search-volume based)
curl -s "https://api.coingecko.com/api/v3/search/trending"
# Coin detail (for risk-flag enrichment)
curl -s "https://api.coingecko.com/api/v3/coins/${id}?localization=false&tickers=true"Pump-risk flags
| Flag | Detection |
|---|---|
low-liquidity | 24h volume < $250k OR top-pool TVL < $100k. |
single-pair-only | Trades on only one DEX pool. |
fresh-listing | First CoinGecko entry < 7 days ago. |
vol-no-mcap | 24h volume > 5× market cap. |
low-holder-data | Holder count unavailable or < 200. |
cex-only | All volume on CEX, no DEX presence. |
Two or more flags → demoted to "Watch with caution" section.
Output
Top gainers, top losers, trending (search momentum), and watch-with-caution. Each row includes mcap, 24h volume, chain, narrative tag if known, and any flags.
Rules
- Flag first, sort second. Empty pools aren't signal.
- Pair gainers with losers when there's a rotation pattern (one chain rising while another bleeds).
- Context tags required for outliers (unlock, hack, narrative).
{
"schemaVersion": 1,
"slug": "aeon-token-movers",
"provider": "Aeon",
"providerUrl": "https://github.com/aaronjmars/aeon",
"logo": null,
"demo": {
"title": "token-movers.sh",
"language": "bash",
"code": "# Default top 10 each side, $1M mcap floor\naeon-token-movers\n\n# Custom floors\naeon-token-movers limit=20 min_mcap=10000000"
},
"setup": [
"Install: `install the aeon-token-movers skill from https://github.com/BankrBot/skills/tree/main/aeon-token-movers`",
"No API key required (uses CoinGecko public endpoints)",
"Tune `limit` and `min_mcap` per your trading universe",
"Source: https://github.com/BankrBot/skills/tree/main/aeon-token-movers"
],
"install": {
"type": "bankr",
"repoPath": "aeon-token-movers",
"command": "install the aeon-token-movers skill from https://github.com/BankrBot/skills/tree/main/aeon-token-movers"
}
}