tron-market

tron-market is a skill for Claude Code from TronLink/tronlink-skills. It costs 120 tokens per session (1,558 once invoked), scanned A, original, MIT.

A TRON market-data tool for token prices, candlestick charts, trades, decentralised-exchange activity, liquidity pools, and large wallet movements. Candlestick data shows how a price opens, rises or falls, and closes over a chosen time period.

In plain words
What is it for?
It is for checking current prices, price history, trade activity, exchange volume, liquidity, whale movements, large transfers, and overall TRON market conditions.
Why use it?
It gathers different kinds of TRON trading information in one place instead of making you inspect several market and blockchain sources manually.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable. Also seen: mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the tronlink-skills plugin — 6 skills shipped together

Good fit It is for checking current prices, price history, trade activity, exchange volume, liquidity, whale movements, large transfers, and overall TRON market conditions.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add TronLink/tronlink-skills
Claude Code
/plugin install tronlink-skills

Made for: Claude Code.

Or install tronlink-skills, the plugin that ships this one along with the rest of its 6 skills.

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 tron-market

README.md
[![agentmods](https://agentmods.dev/badge/skills/tronlink/tronlink-skills/tron-market/github.svg)](https://agentmods.dev/skills/tronlink/tronlink-skills/tron-market)
Your own site
<a href="https://agentmods.dev/skills/tronlink/tronlink-skills/tron-market"><img src="https://agentmods.dev/badge/skills/tronlink/tronlink-skills/tron-market/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for tron-market

Your own site · 80×15
<a href="https://agentmods.dev/skills/tronlink/tronlink-skills/tron-market"><img src="https://agentmods.dev/badge/skills/tronlink/tronlink-skills/tron-market.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,558 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00120 $0.01558
Opus 5 $0.00060 $0.00779
Sonnet 5 $0.00024 $0.00312
Haiku 4.5 $0.00012 $0.00156

Measured 11d ago against content hash 72f1da388df1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

tron-market scanned grade A with 0 findings 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 11d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/tron-market/SKILL.md · 126 lines

How it starts

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

TRON Market Data

8 commands for real-time prices, K-line data, trade history, DEX volume, whale monitoring, large transfer alerts, liquidity pool info, and market overview.

Pre-flight Checks

  1. Confirm Node.js >= 18:
    node -e "console.log('ok')"  # Node.js >= 18 required
    

Resolve the CLI path

Every command below runs node "$TRON_API". Set $TRON_API once per session so it works no matter how the skill was installed (Claude Code plugin, install.sh~/.tronlink-skills, or inside the cloned repo):

TRON_API="${CLAUDE_PLUGIN_ROOT:-$HOME/.tronlink-skills}/scripts/tron_api.mjs"
[ -f "$TRON_API" ] || TRON_API="scripts/tron_api.mjs"   # fallback when run inside the repo

Commands

1. Token Price

node "$TRON_API" token-price --contract <TOKEN_CONTRACT>

Returns: current price in USD and TRX, 24h change, 24h volume, market cap.

For TRX itself:

node "$TRON_API" token-price --contract TRX

2. K-line / Candlestick Data

node "$TRON_API" kline \
  --contract <TOKEN_CONTRACT> \
  --interval <1m|5m|15m|1h|4h|1d|1w> \
  --limit 100

Returns: OHLC (Open, High, Low, Close) candles from CoinGecko. Note: volume is not included, and interval selects a CoinGecko time-range bucket (granularity is auto-chosen by range) rather than exact candle spacing. For precise intervals or volume, use a DEX/Tronscan chart.

3. Trade History (TRC-20 transfers)

node "$TRON_API" trade-history --contract <TOKEN_CONTRACT> --limit 50

Returns: recent on-chain TRC-20 transfers for the token — txid, timestamp, from/to addresses (with exchange/label tags when TronScan knows them), amount, symbol, and confirmation status. Note: these are raw token transfers, not matched DEX trades — there is no execution price, no buy/sell side, and no DEX/exchange source. For an indexed trade tape with prices you need a DEX subgraph; use a DEX explorer (SunSwap / Tronscan) for that.

4. DEX Volume Statistics

Read the full file on GitHub · 126 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. 11d ago First seen · 126 lines · 120 tokens per session scan A 72f1da388df1

Subscribe to this mod's changes

tron-market is a skill published in the GitHub repository TronLink/tronlink-skills (7 stars, last pushed 2mo ago), licensed MIT. It adds 120 tokens to every session and 1,558 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.