Specialized Claude Code agents for TRON blockchain development with TronWeb, Transatron, and Privy
npx claudepluginhub transatron/awesome-tron-agentsExpert agents for TRON DApp development — TronWeb usage patterns and Transatron fee optimization integration
Specialized Claude Code agents for TRON blockchain development — architecture guidance, TronWeb SDK patterns, Transatron fee optimization, shielded transactions, and USDT0 cross-chain bridging.
Add the marketplace, then install the plugin:
/plugin marketplace add transatron/awesome-tron-agents
/plugin install awesome-tron-agents
Claude Code clones the repo, registers the catalog from .claude-plugin/marketplace.json, and copies the agents into its plugin cache.
Clone the repo and run the installer to pick agents and installation scope (global/local):
git clone https://github.com/transatron/awesome-tron-agents.git
cd awesome-tron-agents
./install-agents.sh
curl -sO https://raw.githubusercontent.com/transatron/awesome-tron-agents/main/install-agents.sh
chmod +x install-agents.sh
./install-agents.sh
Copy agent files into your Claude Code agents directory:
mkdir -p .claude/agents
cp agents/*.md .claude/agents/
Send a real USDT transfer on TRON with optimized fees — agents handle the code generation.
Prerequisites: A TRON wallet with >30 TRX (for registration deposit) and some USDT.
# 1. Create project and .env
mkdir tron-usdt-test && cd tron-usdt-test
cat > .env << 'EOF'
WALLET_PK=<your-private-key>
RECIPIENT_ADDRESS=<distinct-wallet-address>
REGISTRATION_EMAIL=<your-real-email>
EOF
# 2. Install agents
claude plugin marketplace add transatron/awesome-tron-agents
claude plugin install awesome-tron-agents --scope local
# 3. Let Claude do the rest
claude -p "Register on Transatron using my email, save credentials to .env, \
then create a script that sends 0.01 USDT to RECIPIENT_ADDRESS via Transatron. \
Compare the cost with a regular TRON transfer. Use credentials from .env. \
I prefer a TypeScript stack."
Note: The registration email becomes your dashboard login — use a real address, not a placeholder.
Once installed, Claude Code automatically routes TRON-related questions to the appropriate agent based on the task. You can also invoke them directly:
/agents tron-architect
/agents tron-developer-tronweb
/agents tron-integrator-trc20
/agents tron-integrator-sunswap
/agents transatron-architect
/agents transatron-integrator
/agents tron-integrator-shieldedusdt
/agents tron-integrator-usdt0
For the best experience, pair these agents with the TRON MCP server — it gives agents direct access to on-chain data (balances, transactions, energy estimation, contract info) without leaving Claude Code.
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations