t2000-check-balance — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited t2000-check-balance (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.50The 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).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.