This skill should be used when the user asks for 'TRX price', 'TRON token price', 'price chart on TRON', 'K-line data for USDT/TRX', 'TRON trade history', 'TRON whale activity', 'large transfers on TRON', 'smart money on TRON', 'TRON DEX volume', or mentions checking real-time prices, candlestick data, trading volume, whale monitoring, or smart money signals on the TRON network. For token search and metadata, use tron-token. For swap execution, use tron-swap.
This skill should be used when the user asks about 'TRON energy', 'TRON bandwidth', 'how much energy do I need', 'energy cost on TRON', 'bandwidth insufficient', 'resource delegation on TRON', 'rent energy on TRON', 'TRON transaction fee', 'why is my TRON transaction expensive', 'optimize TRON costs', or mentions Energy, Bandwidth, resource management, fee estimation, or cost optimization on the TRON network. This is a TRON-specific concept with no direct equivalent on EVM chains. Do NOT use for staking/voting — use tron-staking. Do NOT use for balance queries — use tron-wallet.
This skill should be used when the user asks to 'stake TRX', 'freeze TRX', 'unfreeze TRX', 'vote for SR', 'TRON super representative', 'claim TRON rewards', 'TRON staking rewards', 'how to earn with TRX', 'delegate TRX', 'Stake 2.0', 'unfreeze period', or mentions staking, freezing, unfreezing, voting for Super Representatives, claiming rewards, or Stake 2.0 on the TRON network. Do NOT use for resource queries — use tron-resource. Do NOT use for balance checks — use tron-wallet.
This skill should be used when the user asks to 'swap tokens on TRON', 'buy token on TRON', 'sell TRC-20 token', 'trade TRX for USDT', 'exchange tokens on SunSwap', 'DEX trade on TRON', 'get swap quote on TRON', 'best route for TRON swap', or mentions swapping, trading, buying, selling, or exchanging tokens on the TRON network. Aggregates liquidity from SunSwap V2/V3, Sun.io, and other TRON DEXes. Do NOT use for staking — use tron-staking. Do NOT use for token research — use tron-token.
This skill should be used when the user asks to 'find a token on TRON', 'search TRC-20 token', 'token info on TRON', 'who holds this TRON token', 'is this TRON token safe', 'top TRON tokens', 'trending tokens on TRON', 'token market cap on TRON', 'holder distribution', 'verify TRON contract', or mentions searching for TRC-20 tokens, checking token metadata, holder analysis, contract verification, or discovering trending tokens on the TRON network. For live prices and K-line charts, use tron-market. For swap execution, use tron-swap.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
AI Agent skills for TronLink wallet and the TRON ecosystem. Provides wallet management, token queries, market data, DEX swap, resource (Energy/Bandwidth) management, and TRX staking across the TRON network.
Node.js >= 18 required (uses native fetch and crypto).
TRON has a unique resource model (Energy & Bandwidth) that differs fundamentally from EVM gas. Transactions consume Bandwidth; smart contract calls consume Energy. Users must stake TRX (Stake 2.0) or burn TRX to obtain these resources. This makes TRON wallet operations, cost estimation, and transaction planning significantly different from Ethereum-based chains — and no existing AI agent skill covers this properly.
curl -sSL https://raw.githubusercontent.com/TronLink/tronlink-skills/main/install.sh | sh
This automatically detects Claude Code, Cursor, Codex, OpenCode, or Windsurf and configures everything.
# If you still have the repo locally:
sh uninstall.sh
# Or run remotely:
curl -sSL https://raw.githubusercontent.com/TronLink/tronlink-skills/main/uninstall.sh | sh
Removes MCP registrations, symlinks, copied config files, and ~/.tronlink-skills.
# Option A: Vercel Skills CLI
npx skills add TronLink/tronlink-skills
# Option B: Claude Code plugin marketplace
/plugin marketplace add TronLink/tronlink-skills
/plugin install tronlink-skills
# Option C: MCP Server (manual)
claude mcp add tronlink-skills -- node ~/.tronlink-skills/scripts/mcp_server.mjs
npx skills add TronLink/tronlink-skills
Fetch and follow instructions from https://raw.githubusercontent.com/TronLink/tronlink-skills/main/.codex/INSTALL.md
| Skill | Description |
|---|---|
tron-wallet | Wallet setup, TRX/TRC-20 balances, transaction history, account info |
tron-token | Token search, metadata, contract verification, holder analysis, trending tokens |
tron-market | Real-time prices, K-line data, trade history, whale monitoring, smart money signals |
tron-swap | DEX swap quote & route (SunSwap, etc.), transaction status |
tron-resource | Energy & Bandwidth query, estimation, cost optimization |
tron-staking | SR list, staking info, APY estimation |
# Clone the repo
git clone https://github.com/TronLink/tronlink-skills.git
cd tronlink-skills
# Check TRX balance
node scripts/tron_api.mjs wallet-balance --address TXYZabc123...
# Get token info
node scripts/tron_api.mjs token-info --contract TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t
# Get swap quote
node scripts/tron_api.mjs swap-quote \
--from-token TRX \
--to-token TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t \
--amount 100
# Check energy & bandwidth
node scripts/tron_api.mjs resource-info --address TXYZabc123...
The CLI uses native Node.js fetch (Node 18+) and native crypto for all read-only operations. No npm install needed for:
fetch support)token-search)# Optional: higher rate limits
export TRONGRID_API_KEY="your-api-key"
export TRONSCAN_API_KEY="your-api-key" # raises TronScan limits + enables token-search (/search/v2)
# Optional: switch network
export TRON_NETWORK="mainnet" # or "shasta" / "nile"
| Network | Endpoint |
|---|---|
| Mainnet | https://api.trongrid.io |
| Shasta Testnet | https://api.shasta.trongrid.io |
| Nile Testnet | https://nile.trongrid.io |
Check Balance: tron-wallet (check balance) → tron-resource (estimate energy cost)
Research Token: tron-token (search token) → tron-market (price/chart) → tron-swap (get quote)
Staking Info: tron-wallet (check TRX balance) → tron-staking (staking info, SR list, APY)
Resource Optimization: tron-resource (check energy/bandwidth) → tron-resource (estimate cost) → tron-resource (rent energy)
npx claudepluginhub tronlink/tronlink-skills --plugin tronlink-skillsTrade tokens on Solana/ETH/BSC/Base chains via XXYY Open API using natural language
GMGN OpenAPI skills — token info, market data, wallet portfolio, and swap
No description provided.
Zerion skills and slash commands for AI coding agents — wallet analysis, swaps/bridges, chain reference, agent-token policies.
Blockchain data and infrastructure via Alchemy — EVM/Solana RPC, NFT API, token prices, portfolio, transfers, webhooks. Supports API key and agentic gateway (x402/MPP) auth flows.
Claude Code plugin for TON API — REST API, Streaming, and Webhooks for TON blockchain.