t2000-check-balance

📁 mission69b/t2000 📅 1 day ago
0
总安装量
1
周安装量
安装命令
npx skills add https://github.com/mission69b/t2000 --skill t2000-check-balance

Agent 安装分布

opencode 1
codex 1

Skill 文档

t2000: Check Balance

Purpose

Fetch the current balance across all accounts: available USDC (checking), savings (NAVI deposit), gas reserve (SUI), and total portfolio value.

Commands

t2000 balance                 # human-readable summary
t2000 balance --show-limits   # includes maxWithdraw, maxBorrow, healthFactor
t2000 balance --json          # machine-parseable JSON (works on all commands)

Output (default)

Available:  $XX.XX USDC  (checking — spendable)
Savings:    $XX.XX USDC  (earning X.XX% APY)
Gas:        X.XX SUI     (~$X.XX)
──────────────────────────────────────
Total:      $XX.XX USDC
Earning ~$X.XX/day

The daily earnings line only appears when savings > 0.

Output (–show-limits)

Appends to the above:

Limits:
  Max withdraw:   $XX.XX USDC
  Max borrow:     $XX.XX USDC
  Health factor:  X.XX          (∞ if no active loan)

Notes

  • gasReserve.usdEquiv is an estimate at current SUI price; it fluctuates without any swap occurring
  • If balance shows $0.00 available and wallet was just created, fund it first via Coinbase Onramp or a direct USDC transfer to the wallet address
  • --json is a global flag that works on all t2000 commands, not just balance