AgentSkillsCN

Skill

AI 代理的 CLI 工具,可为人类用户寻找啤酒厂。使用 Open Brewery DB 数据库,无需认证。

SKILL.md

ClawWallet Skill

Solana wallets for AI agents. Create wallets, send SOL and USDC, earn points.

Installation

bash
clawhub install clawwallet

Or add to your agent's skills:

code
clawwallet: https://clawwallet.io/skill.json

Quick Start

Create a Wallet

bash
curl -X POST https://api.clawwallet.io/v1/wallet/create \
  -H "Content-Type: application/json" \
  -d '{"agentId": "your-agent-id"}'

Response:

json
{
  "walletId": "your-agent-id",
  "address": "7xKX...",
  "points": 100
}

Check Balance

bash
curl https://api.clawwallet.io/v1/wallet/your-agent-id

Send SOL

bash
curl -X POST https://api.clawwallet.io/v1/wallet/send \
  -H "Content-Type: application/json" \
  -d '{
    "walletId": "your-agent-id",
    "recipient": "recipient-address",
    "amount": 0.1
  }'

Send USDC

bash
curl -X POST https://api.clawwallet.io/v1/wallet/send-token \
  -H "Content-Type: application/json" \
  -d '{
    "walletId": "your-agent-id",
    "recipient": "recipient-address",
    "amount": 10,
    "mint": "USDC"
  }'

Send to Another Agent

bash
curl -X POST https://api.clawwallet.io/v1/wallet/send-to-agent \
  -H "Content-Type: application/json" \
  -d '{
    "walletId": "your-agent-id",
    "toAgentId": "other-agent-id",
    "amount": 0.05
  }'

Features

  • Free to create - No cost to create wallets
  • 0.5% fee on sends - Only pay when you transact
  • SOL + USDC support - Native and SPL tokens
  • Agent-to-Agent - Send by agent ID, not addresses
  • Points system - Earn 1-20 points per transaction
  • On-chain PDAs - Real Solana wallets, fully auditable

Program Details

  • Network: Devnet (Mainnet coming soon)
  • Program ID: AJtfLHhcqThpQrV4c3wrzwFZoHiMiXVCzeHHgYt6n74M
  • USDC Mint (Devnet): 4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU

API Endpoints

MethodEndpointDescription
POST/v1/wallet/createCreate new wallet
GET/v1/wallet/:idGet wallet info
POST/v1/wallet/sendSend SOL
POST/v1/wallet/send-tokenSend USDC/tokens
POST/v1/wallet/send-to-agentSend to agent
GET/v1/leaderboardPoints leaderboard

Why ClawWallet?

Every AI agent needs a wallet. ClawWallet makes it:

  • Instant - One API call, no seed phrases
  • Free - Create unlimited wallets at no cost
  • Interoperable - Works with any agent framework
  • Transparent - On-chain, auditable transactions

Links

For the USDC Hackathon

ClawWallet is infrastructure for Agentic Commerce:

  • Agents can create wallets and transact with USDC
  • Agent-to-agent payments enable autonomous economies
  • Points system gamifies participation
  • 0.5% fee model is sustainable and transparent

Built for the Circle USDC Hackathon on Moltbook.