# Send Agentwallet Sdk to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agentwallet-sdk",
    "name": "Agentwallet Sdk",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/up2itnow/agentwallet-sdk",
    "canonicalUrl": "https://clawhub.ai/up2itnow/agentwallet-sdk",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agentwallet-sdk",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentwallet-sdk",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agentwallet-sdk",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:16:57.317Z",
      "expiresAt": "2026-05-06T17:16:57.317Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentwallet-sdk",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agentwallet-sdk",
        "contentDisposition": "attachment; filename=\"agentwallet-sdk-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agentwallet-sdk"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agentwallet-sdk"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agentwallet-sdk",
    "downloadUrl": "https://openagent3.xyz/downloads/agentwallet-sdk",
    "agentUrl": "https://openagent3.xyz/skills/agentwallet-sdk/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agentwallet-sdk/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agentwallet-sdk/agent.md"
  }
}
```
## Documentation

### Agent Wallet SDK Skill

Non-custodial wallet SDK for autonomous AI agents. Handles x402 payments, CCTP V2 cross-chain bridge transfers, ERC-8004 agent identity, and Uniswap V3 token swaps — all without holding user keys.

### When to Use

Use this skill when an AI agent needs to:

Create or manage a non-custodial wallet (ERC-4337 smart account)
Make x402 HTTP payments to APIs
Bridge tokens cross-chain via CCTP V2 (Circle)
Swap tokens via Uniswap V3
Register or verify agent identity via ERC-8004
Sign transactions autonomously without custodial risk

### Installation

npm install agentwallet-sdk

Current version: v2.4.1 on npm (158 tests passing, 0 compile errors)

### WalletModule — Account Abstraction (ERC-4337)

import { AgentWallet } from 'agentwallet-sdk';

const wallet = await AgentWallet.create({
  chain: 'base',
  signer: privateKey, // Agent's own key — never custodied
});

// Send ETH
await wallet.transfer({ to: recipient, value: '0.01' });

// Get balance
const balance = await wallet.getBalance();

### PaymentModule — x402 HTTP Payments

// Pay for API access automatically
const response = await wallet.x402Pay({
  url: 'https://api.example.com/data',
  maxPayment: '0.001', // ETH
});

### BridgeModule — CCTP V2 Cross-Chain

// Bridge USDC from Base to Ethereum
await wallet.bridge({
  token: 'USDC',
  amount: '100',
  fromChain: 'base',
  toChain: 'ethereum',
});

### SwapModule — Uniswap V3

// Swap ETH for USDC
await wallet.swap({
  tokenIn: 'ETH',
  tokenOut: 'USDC',
  amount: '0.5',
  slippage: 0.5, // 0.5%
});

### IdentityModule — ERC-8004

// Register agent identity on-chain
await wallet.registerIdentity({
  name: 'MyTradingAgent',
  capabilities: ['x402-payment', 'swap', 'bridge'],
});

// Verify another agent
const verified = await wallet.verifyAgent(agentAddress);

### Security Model

Non-custodial: Agent holds its own private key. No server stores keys
ERC-4337 Smart Accounts: Gas abstraction, batch transactions, session keys
No oracle dependencies: No external price feed reliance (prevents oracle manipulation attacks)
Audited: forge test suite 129/129 passing on smart contracts

### With Mastra (AI Framework)

npm install @agent-wallet/mastra-plugin

Provides 10 Mastra tools: getBalance, transfer, swap, bridge, x402Pay, registerIdentity, verifyAgent, getTransactionHistory, estimateGas, getChainInfo.

### With ClawPay MCP

npm install clawpay-mcp

Exposes wallet operations as MCP tools for any MCP-compatible agent.

### Links

npm: agentwallet-sdk
Mastra plugin: @agent-wallet/mastra-plugin
ClawPay MCP: clawpay-mcp
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: up2itnow
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:16:57.317Z
- Expires at: 2026-05-06T17:16:57.317Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agentwallet-sdk)
- [Send to Agent page](https://openagent3.xyz/skills/agentwallet-sdk/agent)
- [JSON manifest](https://openagent3.xyz/skills/agentwallet-sdk/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agentwallet-sdk/agent.md)
- [Download page](https://openagent3.xyz/downloads/agentwallet-sdk)