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.
/plugin marketplace add TronLink/tronlink-skills/plugin install tronlink-skillsWrote 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.
[](https://agentmods.dev/skills/tronlink/tronlink-skills/tron-staking)<a href="https://agentmods.dev/skills/tronlink/tronlink-skills/tron-staking"><img src="https://agentmods.dev/badge/skills/tronlink/tronlink-skills/tron-staking/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.
<a href="https://agentmods.dev/skills/tronlink/tronlink-skills/tron-staking"><img src="https://agentmods.dev/badge/skills/tronlink/tronlink-skills/tron-staking.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00130 | $0.01156 |
| Opus 5 | $0.00065 | $0.00578 |
| Sonnet 5 | $0.00026 | $0.00231 |
| Haiku 4.5 | $0.00013 | $0.00116 |
Grade A, and why
tron-staking 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 112 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TRON Staking (Stake 2.0)
3 commands for SR list, staking info, and APY estimation (read-only queries).
TRON Stake 2.0 — Essential Knowledge
Stake 2.0 replaced the legacy Stake 1.0 system. Key differences:
- Freezing and voting are separate operations (Stake 1.0 combined them)
- Resources can be delegated to other addresses
- Unfreezing has a 14-day waiting period before TRX can be withdrawn
- Voting for Super Representatives (SRs) earns TRX rewards (~3-5% APY)
Staking Lifecycle
Freeze TRX → Get Energy or Bandwidth → Vote for SR → Earn Rewards → Unfreeze → Wait 14 days → Withdraw
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
Read-only / informational: this skill explains staking and reads on-chain staking state, APY, and SR data. It does not freeze/unfreeze, vote, or claim — those require signing in the TronLink wallet itself.
Commands
1. Super Representative List
node "$TRON_API" sr-list --limit 30
Returns: SR name, address, total votes, vote percentage, block production rate, APY estimate, commission rate.
2. My Staking Info
node "$TRON_API" staking-info --address <TRON_ADDRESS>
Returns:
- TRX frozen for Energy (amount, unlock date)
- TRX frozen for Bandwidth (amount, unlock date)
- TRON Power (total votes available)
- Current votes (which SRs, how many)
- Unclaimed rewards
- Pending unfreezes (amount, unlock date)
- Delegated resources — the addresses this account delegated to / received from (per-pair amounts require a deeper
getdelegatedresourcev2lookup)
3. APY Estimation
node "$TRON_API" staking-apy --amount <TRX_TO_STAKE>
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.
- 9d ago First seen · 112 lines · 130 tokens per session scan A 20f4ce852c8a
tron-staking is a skill published in the GitHub repository TronLink/tronlink-skills (6 stars, last pushed 2mo ago), licensed MIT. It adds 130 tokens to every session and 1,156 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.
Other skills, from other repositories
mpp-agent
Pay HTTP 402 APIs via Machine Payments Protocol (MPP).
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…
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…
cobie-cycle-filter
Use when evaluating crypto decisions through a Cobie-style cycle filter: common-sense risk, narrative traps, leverage humility, and avoiding obvious stupid trades.
token-pick
One token recommendation and one prediction market pick - scored, quantified, with a skip branch when signals are weak.
bridge
Cross-chain token transfers using Wormhole and CCTP.