token-movers

token-movers is a skill for Claude Code, Codex from aaronjmars/aeon-agent. It costs 42 tokens per session (11,544 once invoked), scanned A, a copy of token-movers, MIT.

A cryptocurrency market scanner and single-token report tool. It can find market movers or on-chain runners using CoinGecko or GeckoTerminal, or produce a deeper report for one token or contract.

In plain words
What is it for?
It is for finding winners, losers, trending assets, and chain-specific runners; flagging pump risk; resolving a token symbol; and reviewing one token's market and on-chain details.
Why use it?
It helps developers and analysts inspect changing token activity without treating a price move alone as proof that a token is safe or worthwhile.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit It is for finding winners, losers, trending assets, and chain-specific runners; flagging…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aaronjmars/aeon-agent/token-movers
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aaronjmars/aeon-agent --skill token-movers
Clone the repo
git clone --depth 1 https://github.com/aaronjmars/aeon-agent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for token-movers

README.md
[![agentmods](https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/token-movers.svg)](https://agentmods.dev/skills/aaronjmars/aeon-agent/token-movers)
Your own site
<a href="https://agentmods.dev/skills/aaronjmars/aeon-agent/token-movers"><img src="https://agentmods.dev/badge/skills/aaronjmars/aeon-agent/token-movers.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 11,544 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.11544
Opus 5 $0.00021 $0.05772
Sonnet 5 $0.00008 $0.02309
Haiku 4.5 $0.00004 $0.01154

Measured yesterday against content hash 8f0226dbd33b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

token-movers scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

If curl fails or returns empty JSON, retry once with **WebFetch** against the same URL.
Origin

This is a copy

100% identical to token-movers — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/token-movers/SKILL.md · 692 lines

How it starts

The opening of the file, as written. The whole thing — 692 lines — stays where its author put it; the contents beside it link to each section on GitHub.

${var} — selects the scan. Two behavioral modes (movers, single-token) over two sources (coingecko, geckoterminal):

  • empty → movers scan on the default source (CoinGecko): top winners, losers, trending.
  • coingecko → same movers scan, CoinGecko source (explicit).
  • geckoterminal → movers scan on GeckoTerminal: on-chain "runners" across major chains.
  • geckoterminal:<chain> or a bare chain slug (solana, eth, ethereum, base, bsc, arbitrum, polygon, optimism, avalanche, avax) → GeckoTerminal runners scoped to that one chain.
  • category:<name> (e.g. category:layer-2, category:meme) — or a bare hyphen/space value like layer-2 / meme coins → CoinGecko movers scoped to that category.
  • <contract> or <contract>:<chain> (e.g. 0xabc…, 0xabc…:base) → single-token deep report on that contract.
  • <SYMBOL> (e.g. SOL, WIF) → single-token deep report; resolve the symbol to its top contract first.
  • token / single-token → single-token deep report on the token configured in memory/token-report.md.
  • deep-dive:<symbol|contract> (e.g. deep-dive:WIF, deep-dive:0xabc…:base) → single-token deep report — the shape the Telegram force-reply sends. Strips the deep-dive: prefix and resolves the remainder exactly like a bare symbol/contract.

Examples: "" (global movers), geckoterminal:base (Base runners), category:layer-2 (L2 movers), 0x4ed…:base or WIF (single-token report).

Preamble (every run)

  1. Read memory/MEMORY.md for context.

  2. Read the last 2 days of memory/logs/ to avoid repeating the same movers/trending/runner names unless the move is materially different — repeat runners across days are the real signal. (The single-token branch reads the last 30 days for its TOKEN_REPORT_STATE: delta lines — see that branch.)

  3. Parse ${var}source + mode (+ optional token/chain/category). Trim whitespace; evaluate the rules top-to-bottom, first match wins (fully deterministic):

    1. Force-reply intercept (Telegram deep-dive). starts with deep-dive: → strip the prefix (${var#deep-dive:}) and treat the remainder EXACTLY as a single-token target, resolving it contract-or-symbol just like rule 8 (token:) does → single-token. Single-token branch. This is the shape the Telegram force-reply sends; it reuses all existing single-token logic (no separate handler, no confirmation — the single-token report IS the response).
    2. empty → mode=movers, source=coingecko (global). Go to Movers branch.
    3. coingecko (case-insensitive) → movers / coingecko (global). Movers branch.
    4. geckoterminalmovers / geckoterminal (all major networks). Movers branch.
    5. starts with geckoterminal: or chain:movers / geckoterminal, chain = remainder. Movers branch.
    6. a known chain slug (solana|eth|ethereum|base|bsc|arbitrum|polygon|optimism|avalanche|avax) → movers / geckoterminal, chain = value. Movers branch. (Preserves monitor-runners' var=chain behaviour. To report on a token that shares a chain name, e.g. the ETH token, use token:eth or its contract.)
    7. starts with category:movers / coingecko, category = remainder. Movers branch.
    8. equals token or single-tokensingle-token, token from memory/token-report.md config. Single-token branch.
    9. starts with token:single-token, resolve remainder as contract-or-symbol. Single-token branch.
    10. matches a contract address — EVM 0x[0-9a-fA-F]{40} or a Solana base58 address — optionally :chainsingle-token, that contract. Single-token branch.
    11. contains a space or a hyphen and is not a contract (e.g. layer-2, meme coins) → movers / coingecko, category = value. Movers branch.
    12. otherwise (a bare word, a plausible ticker) → single-token / geckoterminal, resolve symbol = value to its top contract. Single-token branch.

Read the full file on GitHub · 692 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 692 lines · 42 tokens per session scan A 8f0226dbd33b

Subscribe to this mod's changes

token-movers is a skill published in the GitHub repository aaronjmars/aeon-agent (11 stars, last pushed today), licensed MIT. It adds 42 tokens to every session and 11,544 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to token-movers, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

signature-replay

Signature replay attacks — missing nonces, missing chain ID, ecrecover zero address, signature malleability, cross-chain replay.

PurpleAILAB/Decepticon · 31 tokens

official-sui-skills

Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com/MystenLabs/skills; pinned to the same ref the audit catalog derives from (see…

MystenLabs/sui · 116 tokens

crypto-market-rank

Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…

tradecatlabs/tradecat-public · 85 tokens

trading-signal

Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for…

tradecatlabs/tradecat-public · 64 tokens

bridge

Cross-chain token transfers using Wormhole and CCTP.

alsk1992/CloddsBot · 13 tokens

onchainkit

Build onchain apps with Coinbase's OnchainKit React components - wallets, swaps, NFTs, payments.

alsk1992/CloddsBot · 24 tokens