โ† All skills
Tencent SkillHub ยท Developer Tools

Bitcoin Wallet using Breez Spark SDK

Self-custodial Bitcoin and Lightning wallet for AI agents. Send and receive sats via Lightning Network, Spark, or on-chain Bitcoin. Use when: checking bitcoin balance, sending/receiving payments, generating Lightning invoices, managing wallet operations. Requires the BreezClaw plugin and a Breez API key.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Self-custodial Bitcoin and Lightning wallet for AI agents. Send and receive sats via Lightning Network, Spark, or on-chain Bitcoin. Use when: checking bitcoin balance, sending/receiving payments, generating Lightning invoices, managing wallet operations. Requires the BreezClaw plugin and a Breez API key.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 10 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc