# Send WalletPilot 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": "wallet-pilot",
    "name": "WalletPilot",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/andreolf/wallet-pilot",
    "canonicalUrl": "https://clawhub.ai/andreolf/wallet-pilot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/wallet-pilot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-pilot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "wallet-pilot",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T19:12:02.497Z",
      "expiresAt": "2026-05-08T19:12:02.497Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-pilot",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=wallet-pilot",
        "contentDisposition": "attachment; filename=\"wallet-pilot-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "wallet-pilot"
      },
      "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/wallet-pilot"
    },
    "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/wallet-pilot",
    "downloadUrl": "https://openagent3.xyz/downloads/wallet-pilot",
    "agentUrl": "https://openagent3.xyz/skills/wallet-pilot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/wallet-pilot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/wallet-pilot/agent.md"
  }
}
```
## Documentation

### WalletPilot

Universal browser wallet automation for AI agents. Control any browser-based crypto wallet with configurable permission guardrails.

### Supported Wallets

WalletEVMSolanaUsersMetaMask✅-100M+Rabby✅-1M+Coinbase Wallet✅-1M+Rainbow✅-500K+Phantom✅✅3M+Trust Wallet✅✅1M+Zerion✅✅100K+Exodus✅✅100K+OKX Wallet✅✅1M+Backpack✅✅500K+

### Overview

WalletPilot allows AI agents to interact with dapps and execute transactions through any supported browser wallet. All operations are subject to user-defined constraints.

Security Model: The agent controls a separate wallet in an isolated browser profile. Never use your main wallet.

### 1. Install Dependencies

cd wallet-pilot
npm install
npx playwright install chromium

### 2. Configure Wallet Provider

Edit config.json to select your wallet:

{
  "wallet": {
    "provider": "metamask",  // or: rabby, coinbase, rainbow, phantom
    "extensionPath": null    // auto-detect from Chrome, or provide path
  }
}

### 3. Create Agent Wallet Profile

npm run setup

This opens a browser where you:

Install/setup your chosen wallet extension
Create a NEW wallet (fresh seed phrase)
The profile is saved for future automation

### 4. Fund the Wallet

Transfer a small amount to your agent wallet:

Native token for gas (0.01-0.05 ETH/SOL recommended)
Tokens for operations (start small, e.g., $50 USDC)

### 5. Configure Permissions

Edit permissions.json:

{
  "constraints": {
    "spendLimit": {
      "daily": "50000000",
      "perTx": "10000000"
    },
    "allowedChains": [1, 137, 42161, 8453],
    "allowedProtocols": ["0x...uniswap", "0x...1inch"]
  }
}

### Connect to Dapp

connect <dapp-url>

Navigates to dapp and connects the agent wallet.

### Execute Swap

swap <amount> <token-in> for <token-out> [on <dex>]

Executes a token swap on an allowed DEX.

### Send Tokens

send <amount> <token> to <address>

Sends tokens to an address (within spend limits).

### Sign Message

sign <message>

Signs an arbitrary message.

### Check Balance

balance [token]

Returns wallet balances.

### View History

history [count]

Shows recent agent transactions.

### Constraints

ConstraintDescriptionspendLimit.dailyMax USD value per 24h periodspendLimit.perTxMax USD value per transactionallowedChainsWhitelisted chain IDsallowedProtocolsWhitelisted contract addressesblockedMethodsForbidden function selectorsrequireApproval.aboveThreshold requiring user confirmation

### Adding New Wallets

WalletPilot uses a plugin architecture. To add a new wallet:

Create a new adapter in src/wallets/
Implement the WalletAdapter interface
Add selectors for the wallet's UI elements
Register in src/wallets/index.ts

See src/wallets/metamask.ts for reference implementation.

### Safety

Isolated Profile: Agent uses separate browser profile
Separate Wallet: Completely separate from your main wallet
Spend Caps: Hard limits prevent runaway spending
Protocol Allowlist: Only whitelisted contracts can be called
Full Logging: Every transaction is logged
Revocation: Set "revoked": true to disable all actions

### Architecture

src/
├── index.ts              # Main entry point
├── browser.ts            # Playwright browser management
├── guard.ts              # Permission enforcement
├── logger.ts             # Transaction logging
├── price.ts              # USD price estimation
├── types.ts              # TypeScript types
├── config.ts             # Configuration loading
└── wallets/
    ├── index.ts          # Wallet adapter registry
    ├── adapter.ts        # Base adapter interface
    ├── metamask.ts       # MetaMask
    ├── rabby.ts          # Rabby
    ├── coinbase.ts       # Coinbase Wallet
    ├── rainbow.ts        # Rainbow
    ├── phantom.ts        # Phantom
    ├── trust.ts          # Trust Wallet
    ├── zerion.ts         # Zerion
    ├── exodus.ts         # Exodus
    ├── okx.ts            # OKX Wallet
    └── backpack.ts       # Backpack

### Comparison: WalletPilot vs MetaMask-only

FeatureWalletPilotMetaMask Agent WalletWallets5+ supportedMetaMask onlyChainsEVM + SolanaEVM onlySetupChoose your walletMetaMask requiredComplexityHigherLowerUse caseMulti-wallet orgsMM-only users

Choose WalletPilot if you need flexibility across wallets or Solana support.
Choose MetaMask Agent Wallet for simpler MetaMask-only setup.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: andreolf
- Version: 0.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-05-01T19:12:02.497Z
- Expires at: 2026-05-08T19:12:02.497Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/wallet-pilot)
- [Send to Agent page](https://openagent3.xyz/skills/wallet-pilot/agent)
- [JSON manifest](https://openagent3.xyz/skills/wallet-pilot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/wallet-pilot/agent.md)
- [Download page](https://openagent3.xyz/downloads/wallet-pilot)