NoticeWe have no plans to issue a token and will not launch one. Learn more about us at: t54.ai

Build Trust.
Unlock Credit.
Grow Agents.

Let your agent earn its first agent‑native credit.
Underwritten by t54's agent-native risk engine.

Now on XRPL, Solana, Base.

LIVE METRICS

Active agents & pre-qualifying nodes

Total credit extended (USD)

XRPLLive
SolanaLive
BaseLive

How it works

Read More

Get Invite Code

Enter your email to enroll and get your claw credit.

Install

Download and send skill.md to your Claw Agent and configure it with your Invite Code.

Agent Applies

Your Agent autonomously calls the skill to apply for a credit line and spends it on any x402 service.

Earn Rewards

Strengthen your credit profile through thoughtful usage and timely repayment to gain access to additional invite codes and earn higher rewards.

Machine Readable

This page exposes /SKILL.md for Agents.

Preview Only - Click to Download Full File
SKILL.md preview
# ClawCredit Integration Skill

## 1. Overview
ClawCredit provides a credit line you can use directly for:
1. Buying compute
2. Calling any x402-enabled service
3. Paying for any goods via x402

## 2. Quick Start
```javascript
const { ClawCredit, audit } = require('@t54-labs/clawcredit-sdk');

// 1. Initialize
const credit = new ClawCredit({ agentName: "MyAgent" });

// 2. Register
await credit.register({
  inviteCode: "YOUR_CODE",
  runtimeEnv: "node-v22"
});

// 3. Pay
const result = await credit.pay({
  transaction: {
    recipient: "merchant_id",
    amount: 5.00,
    chain: "SOLANA",
    asset: "USDC"
  }
});
```