8.9k★by egge21m
cocod – OpenClaw Skill
cocod is an OpenClaw Skills integration for data analytics workflows. A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, or viewing wallet history.
Skill Snapshot
| name | cocod |
| description | A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, or viewing wallet history. OpenClaw Skills integration. |
| owner | egge21m |
| repository | egge21m/cocod |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @egge21m/cocod |
| last updated | Feb 7, 2026 |
Maintainer

name: cocod description: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, or viewing wallet history. compatibility: Requires cocod CLI to be installed. Supports Cashu ecash protocol and Lightning Network payments. metadata: project: cocod type: cashu-wallet networks: - cashu - bitcoin - lightning
Cocod - Cashu Wallet CLI
Cocod is a Cashu wallet for managing ecash tokens and making Bitcoin/Lightning payments. It uses the Cashu protocol for privacy-preserving ecash transactions.
What is Cashu?
Cashu is a Chaumian ecash protocol that lets you hold and transfer Bitcoin-backed tokens privately. It enables unlinkable transactions using blind signatures.
Installation
# Install cocod CLI
bun install -g cocod
Quick Start
# Initialize your wallet (generates mnemonic automatically)
cocod init
# Or with a custom mint
cocod init --mint-url https://mint.example.com
# Check balance
cocod balance
Commands
Core Wallet
# Check daemon and wallet status
cocod status
# Initialize wallet with optional mnemonic
cocod init [mnemonic] [--passphrase <passphrase>] [--mint-url <url>]
# Unlock encrypted wallet (only required when initialised with passphrase)
cocod unlock <passphrase>
# Get wallet balance
cocod balance
# Test daemon connection
cocod ping
Receiving Payments
# Receive Cashu token
cocod receive cashu <token>
# Create Lightning invoice to receive
cocod receive bolt11 <amount> [--mint-url <url>]
Sending Payments
# Create Cashu token to send to someone
cocod send cashu <amount> [--mint-url <url>]
# Pay a Lightning invoice
cocod send bolt11 <invoice> [--mint-url <url>]
Mints
# Add a mint URL
cocod mints add <url>
# List configured mints
cocod mints list
# Get mint information
cocod mints info <url>
Lightning Address (NPC)
Lightning Addresses are email-style identifiers (like name@npubx.cash) that let others pay you over Lightning. If you have not purchased a username, NPC provides a free address from your Nostr npub; purchasing a username gives you a human-readable handle. Buying a username is a two-step flow so you can review the required sats before confirming payment.
# Get your NPC Lightning Address
cocod npc address
# Reserve/buy an NPC username (two-step)
cocod npc username <name>
cocod npc username <name> --confirm
History
# View wallet history
cocod history
# With pagination
cocod history --offset 0 --limit 20
# Watch for real-time updates
cocod history --watch
# Limit with watch
cocod history --limit 50 --watch
Daemon Control
# Start the background daemon (started automatically when not running when required)
cocod daemon
# Stop the daemon
cocod stop
Examples
Initialize with encryption:
cocod init --passphrase "my-secret"
Receive via Lightning:
cocod receive bolt11 5000
# Returns: lnbc50u1... (share this invoice to receive)
Pay a Lightning invoice:
cocod send bolt11 lnbc100u1p3w7j3...
Send Cashu to a friend:
cocod send cashu 1000
# Returns: cashuAeyJ0b2tlbiI6...
# Friend receives with: cocod receive cashu cashuAeyJ0b2tlbiI6...
Check status and balance:
cocod status
cocod balance
View recent history:
cocod history --limit 10
Concepts
- Cashu: Privacy-preserving ecash protocol using blind signatures
- Mint: Server that issues and redeems Cashu tokens
- Token: Transferable Cashu string representing satoshi value
- Bolt11: Lightning Network invoice format
- NPC: Lightning Address service for receiving payments
- Mnemonic: Seed phrase for wallet recovery
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install cocod?
Run openclaw add @egge21m/cocod in your terminal. This installs cocod into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/egge21m/cocod. Review commits and README documentation before installing.
