t2000-borrow

Installation
CLI
npx skills add https://github.com/mission69b/t2000-skills --skill t2000-borrow

Installieren Sie diesen Skill über die CLI und beginnen Sie mit der Verwendung des SKILL.md-Workflows in Ihrem Arbeitsbereich.

Zuletzt aktualisiert am 4/22/2026

t2000 Agent Skills

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.

Install

npx skills add mission69b/t2000-skills

Works with Claude Code, OpenAI Codex, GitHub Copilot, Cursor, VS Code, and
any platform supporting the Agent Skills standard.

Alternative: Manual Setup

Cursor / VS Code:

git clone https://github.com/mission69b/t2000-skills.git .cursor/skills/t2000-skills

Claude Code / Devin / Other Frameworks:

git clone https://github.com/mission69b/t2000-skills.git

Or copy any skills/*/SKILL.md file directly into your agent's context.

Available Skills

Skill Trigger
t2000-check-balance "check balance", "how much USDC do I have"
t2000-send "send 10 USDC to...", "pay X"
t2000-receive "share my address", "create payment link", "QR code"
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"
t2000-engine "use the engine programmatically", "build an agent"

Prerequisites

npx @t2000/cli init

The t2000 CLI must be installed and a bank account initialized before any skill can execute.
See t2000.ai for full documentation.

Skill Format

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 handling

The 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.

What is t2000?

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.

License

MIT