Agent Skills for the t2000 bank account on Sui. Install once and your AI agent gains the ability to check balances, send payments, earn yield, borrow, and pay for MPP API services — all on Sui.
npx skills add mission69b/t2000-skillsWorks with Claude Code, OpenAI Codex, GitHub Copilot, Cursor, VS Code, and any platform supporting the Agent Skills standard.
Cursor / VS Code:
git clone https://github.com/mission69b/t2000-skills.git .cursor/skills/t2000-skillsClaude Code / Devin / Other Frameworks:
git clone https://github.com/mission69b/t2000-skills.gitOr copy any skills/*/SKILL.md file directly into your agent's context.
| Skill | Trigger |
|---|---|
t2000-check-balance |
"check balance", "how much USDC do I have" |
t2000-send |
"send 10 USDC to...", "pay X" |
t2000-save |
"deposit to savings", "earn yield" |
t2000-withdraw |
"withdraw from savings", "access my deposits" |
t2000-borrow |
"borrow 40 USDC", "take out a loan" |
t2000-repay |
"repay my loan", "pay back..." |
t2000-pay |
"call that paid API", "pay for MPP service" |
t2000-contacts |
"add contact", "send to alice", "list contacts" |
t2000-safeguards |
"set spending limit", "lock agent", "show config" |
t2000-mcp |
"install MCP server", "connect to Claude" |
npx @t2000/cli initThe t2000 CLI must be installed and a bank account initialized before any skill can execute. See t2000.ai for full documentation.
Each skill follows the Agent Skills standard:
---
name: t2000-check-balance # unique skill identifier
description: >- # when to use this skill (agent reads this)
Check the t2000 agent bank account balance on Sui...
license: MIT
metadata:
author: t2000
version: "1.2"
requires: t2000 CLI (npx @t2000/cli init)
---
# Skill body with commands, output examples, and error handlingThe description field is critical — it tells the AI agent when to activate this skill.
Write it as a list of natural language triggers the agent should match against.
t2000 is the infrastructure behind Audric — checking (send/receive), savings (earn yield via NAVI), credit (borrow against deposits), and MCP-first integration in one CLI command. USDC in, USDC out.
- SDK:
npm install @t2000/sdk - CLI:
npx @t2000/cli init - Docs: t2000.ai
- GitHub: github.com/mission69b/t2000
MIT