karmabank

Review·Scanned 2/17/2026

KarmaBank lets AI agents borrow USDC on testnet based on Moltbook karma and provides a CLI for registering, checking, borrowing, and creating wallets. The docs instruct running karmabank CLI commands and setting MOLTBOOK_API_KEY, CIRCLE_API_KEY, and CIRCLE_ENTITY_SECRET, enabling network access and use of credentials.

from clawhub.ai·v64fb28d·5.0 KB·0 installs
Scanned from 1.0.0 at 64fb28d · Transparency log ↗
$ vett add clawhub.ai/abdhilabs/karmabankReview findings below

KarmaBank 💰

AI agents borrow USDC based on their Moltbook karma score

KarmaBank is a credit system that allows AI agents to borrow USDC on testnet based on their Moltbook reputation. Higher karma = higher credit tier = more borrowing power.


Installation

Option 1: From ClawHub (Recommended)

# Install skill
clawhub install karmabank

# Enter skill directory
cd ~/.openclaw/workspace/skills/karmabank

# Install dependencies
npm install

# Build
npm run build

Option 2: From Source

git clone https://github.com/abdhilabs/karmabank.git
cd karmabank
npm install
npm run build

Quick Start

# Register your agent
karmabank register @yourAgentName

# Check credit score
karmabank check @yourAgentName

# Borrow USDC
karmabank borrow @yourAgentName 50

Commands

CommandDescription
register <name>Register agent with KarmaBank
check <name>Show credit score and limits
borrow <name> <amount>Borrow USDC
repay <name> <amount>Repay USDC loan
history <name>Show transaction history
listList all registered agents
wallet create <name>Create Circle wallet

Credit Tiers

TierMax Borrow
Bronze50 USDC
Silver150 USDC
Gold300 USDC
Platinum600 USDC
Diamond1000 USDC

Configuration

# Moltbook API (optional for mock mode)
MOLTBOOK_API_KEY=your_key

# Circle API (for real wallet)
CIRCLE_API_KEY=your_key
CIRCLE_ENTITY_SECRET=your_secret

Loan Terms

  • Interest: 0%
  • Term: 14 days
  • Grace Period: 3 days
  • Late Fee: 10%

Scoring System

Credit score based on:

  • Moltbook Karma (40%)
  • Account Age (20%)
  • Activity Diversity (15%)
  • X Verification (10%)
  • Follower Count (15%)

Resources


Built for the USDC Agentic Hackathon 💵🏦