update
Check for and apply updates to the ChainGPT skill. Use when: update chaingpt, update skill, check for updates, latest version, outdated docs, new api features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check for and apply updates to the ChainGPT skill. Use when: update chaingpt, update skill, check for updates, latest version, outdated docs, new api features.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Tron (TVM) support via the ChainGPT plugin — at parity with the EVM + Solana surfaces. Read balances/resources/tx, research (DexScreener), risk (GoPlus), build UNSIGNED native TRX + TRC-20 transfers (custody-free), SunSwap quotes, JustLend lending, and autonomous agent-wallet signing behind a deterministic policy gate. The agent's Tron account uses the SAME key as the EVM agent wallet. Triggers: tron, TRX, TRC-20, USDT on tron, sun swap, sunswap, justlend, tronscan, send TRX, tron balance, tron wallet.
Give the AI agent its own EVM wallet with admin-controlled policies the agent CANNOT bypass even under prompt injection. Encrypted keystore (AES-256-GCM, scrypt KDF), policy file the agent has no tool to write, deterministic policy gate on every signing operation, optional local HTTP dashboard. Triggers: agent wallet, give the agent a wallet, agent address, fund the agent, agent autonomy, policy gate, kill switch, agent permissions, bounded autonomy, ERC-4337 alternative, session-key alternative.
ERC-4337 v0.7 account-abstraction foundation. Custody-free utilities for computing userOpHashes, packing UserOperations into the EntryPoint wire format, and proxying bundler-RPC calls (Pimlico / Alchemy / Stackup). Triggers: ERC-4337, account abstraction, smart contract wallet, userop, user operation, bundler, paymaster, session key, EntryPoint, AA wallet, smart wallet, gas sponsorship.
x402 agentic payments (Coinbase's HTTP 402 protocol). Custody-free tools to pay x402-protected endpoints (build the EIP-3009 transferWithAuthorization the payer signs, assemble the X-PAYMENT header), call a facilitator (verify/settle/supported), and monetize your own API by generating PaymentRequirements. USDC on Base. Triggers: x402, HTTP 402, pay per request, agentic payment, machine payment, X-PAYMENT, transferWithAuthorization, EIP-3009, facilitator, monetize API, pay for API, agent pays.
Run trading/DeFi strategies on a schedule — DCA every morning, grid rebalances, recurring health checks — using saved plans + the execution journal (due_steps/mark_step) + Claude Code scheduled agents, with the agent wallet executing inside hard policy caps. Triggers - run this daily, schedule a DCA, recurring buy, set and forget, autonomous strategy, cron strategy, execute my plan on a schedule, walk away.
Base chain ecosystem — Basenames (name.base.eth ENS-style naming) resolution + registration, and Base App / Farcaster Mini App scaffolding (manifest, embed meta tags, validation). Custody-free. Triggers: base name, basename, .base.eth, resolve base name, register basename, base app, mini app, miniapp, farcaster frame, fc:miniapp, MiniKit, OnchainKit, base super app, farcaster.json manifest.
| name | update |
| description | Check for and apply updates to the ChainGPT skill. Use when: update chaingpt, update skill, check for updates, latest version, outdated docs, new api features. |
| disable-model-invocation | true |
When the user invokes this skill, follow these steps in order:
Read the file VERSION in the skill root directory to determine the currently installed version:
cat VERSION
Report the current version to the user.
Fetch the latest changes from the remote repository, then compare against the local HEAD:
git fetch origin
git log HEAD..origin/main --oneline
log command returns no output, tell the user: "You are on the latest version (vX.X.X). No updates available."log command returns one or more commits, proceed to Step 3.Display the list of new commits to the user in a readable format. Categorize changes where possible:
Ask the user: "Would you like to apply these updates?"
If the user confirms, pull the latest changes:
git pull origin main
Report the result. If the pull succeeds, read the updated VERSION file and confirm the new version.
After a successful update, check if the MCP server directory exists. If it does, remind the user:
The MCP server may need to be rebuilt. Run:
cd mcp-server && npm install && npm run buildThen restart Claude Code for the MCP server changes to take effect.
| Product | NPM Package | Minimum Version | Docs Updated For |
|---|---|---|---|
| Web3 AI Chatbot | @chaingpt/generalchat | 1.0.0 | Latest |
| AI NFT Generator | @chaingpt/nft | 1.0.0 | Latest |
| Smart Contract Generator | @chaingpt/smartcontractgenerator | 1.0.0 | Latest |
| Smart Contract Auditor | @chaingpt/smartcontractauditor | 1.0.0 | Latest |
| AI Crypto News | @chaingpt/ainews | 1.0.0 | Latest |
| Python SDK | chaingpt | 1.1.3 | Latest |
When a developer asks about recent API changes or reports an SDK method that does not match the skill's reference files:
reference/)./chaingpt-update to pull the latest skill files that may include the fix.