token-movers

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

A cryptocurrency market scanner and single-token analyst. It examines market movers, trending assets, and on-chain runners, then can produce a detailed report for one token.

In plain words
What is it for?
It helps find winning, losing, or trending tokens, scan runners on selected chains, flag pump risk, and investigate a token by symbol or contract address.
Why use it?
It reduces the need to gather price-movement and token information manually across market and blockchain data sources.

Skill for Claude CodeCodex

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

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.

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

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/aeonfun/aeon/token-movers.svg)](https://agentmods.dev/skills/aeonfun/aeon/token-movers)
Your own site
<a href="https://agentmods.dev/skills/aeonfun/aeon/token-movers"><img src="https://agentmods.dev/badge/skills/aeonfun/aeon/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. Scan, not verified.
Origin original No closer match found 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

Copies of this mod

1 near-identical copy found in the catalogue:

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 aeonfun/aeon (715 stars, last pushed yesterday), 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). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories