karmabank

karmabank is a skill for Claude Code, Codex from Demerzels-lab/elsamultiskillagent. It costs 40 tokens per session (3,409 once invoked), scanned A, a copy of karmabank, MIT.

A testnet lending system where AI agents can borrow the USDC cryptocurrency according to their Moltbook karma score. Testnet means a separate network used for testing rather than ordinary production transactions.

In plain words
What is it for?
Checking karma-based credit tiers and borrowing USDC under the stated loan terms.
Why use it?
It provides a reputation-based way to set borrowing limits without traditional credit checks.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Checking karma-based credit tiers and borrowing USDC under the stated loan terms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/demerzels-lab/elsamultiskillagent/karmabank
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Demerzels-lab/elsamultiskillagent --skill karmabank
Clone the repo
git clone --depth 1 https://github.com/Demerzels-lab/elsamultiskillagent

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for karmabank

README.md
[![agentmods](https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/karmabank/github.svg)](https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/karmabank)
Your own site
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/karmabank"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/karmabank/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for karmabank

Your own site · 80×15
<a href="https://agentmods.dev/skills/demerzels-lab/elsamultiskillagent/karmabank"><img src="https://agentmods.dev/badge/skills/demerzels-lab/elsamultiskillagent/karmabank.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,409 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.03409
Opus 5 $0.00020 $0.01705
Sonnet 5 $0.00008 $0.00682
Haiku 4.5 $0.00004 $0.00341

Measured 9d ago against content hash 19ec5b691611, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

karmabank scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 29 executable files (jest.config.cjs, src/adapters/circle.test.ts, src/adapters/circle.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to karmabank — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

public/skills/abdhilabs/karmabank/SKILL.md · 571 lines

How it starts

The opening of the file, as written. The whole thing — 571 lines — stays where its author put it; the contents beside it link to each section on GitHub.

KarmaBank 💰

Borrow USDC based on your Moltbook reputation

KarmaBank is a credit system that allows AI agents to borrow USDC on testnet based on their Moltbook karma score. Higher karma = higher credit tier = more borrowing power. No credit checks, no banks—just your reputation on the network.

Credit Tiers:

  • 🥉 Bronze: 1–20 karma → 50 USDC max
  • 🥈 Silver: 21–40 karma → 150 USDC max
  • 🥇 Gold: 41–60 karma → 300 USDC max
  • 💎 Platinum: 61–80 karma → 600 USDC max
  • 👑 Diamond: 81–100 karma → 1000 USDC max

Loan Terms: 0% interest, 14-day term


Installation

Option 1: Install from ClawHub

clawhub install karmabank
cd ~/.openclaw/workspace/skills/karmabank
npm install

Option 2: Install from Source

git clone https://github.com/openclaw/agent-credit-system.git
cd agent-credit-system
npm install
npm run build

Create CLI Symlink

npm link

Prerequisites

KarmaBank has two roles:

1. KarmaBank Admin (Lender) - Runs the Service

The admin manages the USDC lending pool and needs:

  • Moltbook API Key (Optional)

    • Used to verify agent identities
    • Can use mock mode for demo
  • Circle API Key & Entity Secret

    • Required for real wallet integration
    • Used to create and manage the pool wallet
    • Get from https://console.circle.com
    • This is needed to fund and manage the lending pool

Note: The pool wallet holds USDC that agents can borrow. The admin funds this wallet with testnet USDC.

2. Agents (Borrowers) - Use the Service

Agents only need:

  • Moltbook Account
    • Register at https://moltbook.com
    • Get your API key from your agent profile
    • Active karma determines your credit tier
    • No Circle API key needed - you receive borrowed USDC to your own wallet

How it works: Agents borrow USDC from the KarmaBank pool. The admin manages the pool. Agents don't need Circle credentials—they just need a Moltbook account and a wallet address to receive funds.

Read the full file on GitHub · 571 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 571 lines · 40 tokens per session scan A 19ec5b691611

Subscribe to this mod's changes

karmabank is a skill published in the GitHub repository Demerzels-lab/elsamultiskillagent (10 stars, last pushed 4mo ago), licensed MIT. It adds 40 tokens to every session and 3,409 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to karmabank, differing in 0 lines, and is treated as a copy.