From t2000-agent-wallet
Check the t2000 Agent Wallet balance on Sui. Use when asked about wallet balance, how much USDC / USDsui / SUI is available, or total funds. Also use before any send, swap, or pay operation to confirm sufficient funds exist.
How this skill is triggered — by the user, by Claude, or both
Slash command
/t2000-agent-wallet:t2000-check-balanceThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch the current wallet balance — stablecoin holdings (USDC, USDsui, other Sui-native stables) plus the SUI holding (used for swaps). Wallet only; **no savings or debt** rollup (those live on audric.ai, not in the Agent Wallet CLI).
Fetch the current wallet balance — stablecoin holdings (USDC, USDsui, other Sui-native stables) plus the SUI holding (used for swaps). Wallet only; no savings or debt rollup (those live on audric.ai, not in the Agent Wallet CLI).
t2 balance # human-readable summary
t2 balance --json # machine-parseable JSON (works on every command)
t2 balance --key <path> # use a non-default wallet key file
USDC $150.00
USDsui $20.00
SUI $0.50 (0.5000 SUI — gas)
──────────────────────────
Wallet total $170.50
The list shows every stablecoin with a balance ≥ $0.01, sorted with USDC first. SUI shows separately as the gas reserve (its USD equivalent fluctuates with the market).
{
"available": 170.0,
"stables": { "USDC": 150.0, "USDsui": 20.0 },
"sui": { "amount": 0.5, "usdValue": 0.5 },
"totalUsd": 170.5
}
t2 balance (or call t2000_balance via MCP) before any t2 send, t2 swap, or t2 pay so the user sees what's actually spendable.--json — surface this when scripting.sui.usdValue is an estimate at current SUI price; it fluctuates.t2 fund (prints the address + QR).Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub mission69b/t2000-skills --plugin t2000-agent-wallet