# Send Clawdwallet 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": "clawdwallet",
    "name": "Clawdwallet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "canonicalUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawdwallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdwallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawdwallet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T14:17:57.929Z",
      "expiresAt": "2026-05-07T14:17:57.929Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdwallet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdwallet",
        "contentDisposition": "attachment; filename=\"clawdwallet-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawdwallet"
      },
      "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/clawdwallet"
    },
    "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/clawdwallet",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdwallet",
    "agentUrl": "https://openagent3.xyz/skills/clawdwallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdwallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdwallet/agent.md"
  }
}
```
## Documentation

### ClawdWallet

Multi-chain wallet extension your agent controls via WebSocket.

### Quick Install

# Clone and build
git clone https://github.com/NeOMakinG/clawdwallet.git
cd clawdwallet
npm install
npm run build

# Or use pre-built dist/ folder directly

### Load in Chrome

chrome://extensions → Enable Developer mode
Load unpacked → select dist/ folder
Click extension icon → set WebSocket URL (default: ws://localhost:3033/clawdwallet)

### Clawdbot Gateway Config

Add to your gateway config:

extensions:
  clawdwallet:
    enabled: true

### Initialize with existing seed

{"type": "init_wallet", "mnemonic": "your twenty four words..."}

### Generate new wallet

{"type": "generate_wallet"}

Returns addresses for all supported chains.

### Approve dApp request

{"type": "sign_and_respond", "requestId": "uuid"}

### Reject request

{"type": "reject_request", "requestId": "uuid", "reason": "Looks suspicious"}

### Check status

{"type": "get_status"}

### Incoming Requests

When dApp requests signature, you receive:

{
  "type": "wallet_request",
  "id": "uuid",
  "chain": "ethereum",
  "method": "eth_sendTransaction",
  "params": [{"to": "0x...", "value": "0x..."}],
  "origin": "https://app.uniswap.org"
}

Review and approve/reject based on context.

### Supported Chains

FamilyChainsEVMEthereum, Polygon, Optimism, Arbitrum, Base, Avalanche, Gnosis, BSCUTXOBitcoin, Litecoin, Dogecoin, Bitcoin CashCosmosCosmos Hub, Osmosis, THORChain, MayachainOtherSolana, TON, Near, Sui, Tron

### Security Notes

Only use with trusted agents
Consider dedicated wallet for agent operations
Never expose mnemonic or WebSocket URL publicly
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: NeOMakinG
- 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-04-30T14:17:57.929Z
- Expires at: 2026-05-07T14:17:57.929Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawdwallet)
- [Send to Agent page](https://openagent3.xyz/skills/clawdwallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawdwallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawdwallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawdwallet)