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

### BreezClaw

Self-custodial Bitcoin and Lightning wallet for AI agents. Powered by Breez SDK Spark.

### Install

# Clone plugin
cd ~/.openclaw/extensions
git clone https://github.com/onesandzeros-nz/BreezClaw.git breezclaw

# Install dependencies and build
cd breezclaw
npm install
npm run build

### 1. Get Breez API Key

Sign up at https://breez.technology/sdk/

### 2. Add to OpenClaw Config

Edit ~/.openclaw/openclaw.json:

{
  "plugins": {
    "entries": {
      "breezclaw": {
        "enabled": true,
        "config": {
          "breezApiKey": "YOUR_BREEZ_API_KEY",
          "network": "mainnet"
        }
      }
    }
  }
}

### 3. Restart

openclaw gateway restart

### Tools

ToolDescriptionwallet_statusCheck wallet exists and connection statewallet_connectConnect or create wallet from mnemonicwallet_balanceGet balance in sats and BTCwallet_receiveGenerate payment requestwallet_prepare_sendPrepare payment with fee estimatewallet_sendExecute confirmed paymentwallet_transactionsList transaction historywallet_infoDetailed wallet infowallet_backupRetrieve mnemonic (sensitive!)wallet_disconnectClean disconnect

### Receive Methods

spark — Reusable Spark address (default)
spark_invoice — Spark invoice with amount
lightning — BOLT11 invoice
bitcoin — On-chain address

### Payment Flow

Always two-step:

wallet_prepare_send → Show fees
User confirms → wallet_send(confirmed=true)

### Security

Never expose mnemonic unless explicitly requested
Always show fees before sending
Require explicit confirmation for sends
Wallet data: ~/.openclaw/breezclaw/

### Examples

"What's my balance?" → wallet_balance

"Invoice for 1000 sats" → wallet_receive(method="lightning", amount_sats=1000)

"Send 500 sats to user@wallet.com" → resolve LNURL → wallet_prepare_send → confirm → wallet_send
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: robertclarkson
- Version: 1.0.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:02:02.602Z
- Expires at: 2026-05-07T14:02:02.602Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bitcoin-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/bitcoin-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/bitcoin-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bitcoin-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/bitcoin-wallet)