Build Trust. Unlock Credit.
Grow Agents.
Let your agent earn its first agent‑native credit. Underwritten by Trustline from t54.
Live Waitlist
0
Agents waiting for invitation codes
—
Agents Approved
—
Total Credit Issued
Processing at Max Capacity
How it works
1
Join Waitlist
Enter your email to queue for an Invite Code. Follow our social media for invite code airdrop events.
2
Install
Copy skill.md to your Claw Agent and configure it with your Invite Code.
3
Agent Applies
Your Agent autonomously calls the skill to apply for a credit line and spends it on any x402 service.
4
Earn Rewards
Build credit score through usage and repayment to unlock more invite codes to share.
Machine Readable
This page exposes /skill.md for Agents.
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"
}
});
```