Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Skill: Cocod Owner: Egge21M Summary: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Tags: latest:0.0.13 Version history: v0.0.13 | 2026-02-19T06:07:07.008Z | auto - Added a new Agent Safety Policy section with explicit rules for agents on spending actions and sensitive data handling. - Updated CLI command
clawhub skill install kn7e4fn1e2c1f2fc0qh9hrmjhn80c5h0:cocodOverall rank
#62
Adoption
1.5K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
Cocod is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Skill: Cocod Owner: Egge21M Summary: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Tags: latest:0.0.13 Version history: v0.0.13 | 2026-02-19T06:07:07.008Z | auto - Added a new Agent Safety Policy section with explicit rules for agents on spending actions and sensitive data handling. - Updated CLI command Capability contract not published. No trust telemetry is available yet. 1.5K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
0.0.13
Install & run
clawhub skill install kn7e4fn1e2c1f2fc0qh9hrmjhn80c5h0:cocodSetup complexity is classified as HIGH. You must provision dedicated cloud infrastructure or an isolated VM. Do not run this directly on your local workstation.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
0.0.13
Adoption signal
1.5K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
6
Snippets
0
Languages
Unknown
bash
# Install cocod CLI bun install -g cocod
bash
cocod --version
bash
# 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
bash
# 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
bash
# Receive Cashu token cocod receive cashu <token> # Create Lightning invoice to receive cocod receive bolt11 <amount> [--mint-url <url>]
bash
# 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>]
SKILL.md
---
name: cocod
skill_version: 0.0.13
requires_cocod_version: 0.0.13
description: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, handling HTTP 402 X-Cashu payment requests, or viewing wallet history.
compatibility: Requires cocod CLI to be installed. Supports Cashu ecash protocol, Lightning Network payments, and NUT-24 HTTP 402 X-Cashu flows.
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.
If a web/API request returns HTTP `402 Payment Required` with an `X-Cashu` header, use this skill to parse and settle the request with cocod.
## Agent Safety Policy (Required)
When acting as an AGENT with this skill:
- Always ask for explicit user permission before running any command/flow that can spend wallet funds, unless the user has already clearly instructed you to execute that spend action.
- Prefer preview/inspection commands before execution whenever available. For example, run `cocod x-cashu parse <request>` to inspect costs and requirements before `cocod x-cashu handle <request>`.
- Treat `~/.cocod` as sensitive. Never log, print, or expose its contents (including config, mnemonic material, wallet state, sockets, and pid files) unless the user explicitly requests a specific safe subset.
## 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
```bash
# Install cocod CLI
bun install -g cocod
```
## Version Compatibility
This skill is version-pinned to an exact `cocod` CLI release.
- `skill_version` must match the npm package version.
- `requires_cocod_version` is pinned to that exact same version.
Check your installed CLI version:
```bash
cocod --version
```
If the version does not match the pinned values in this file, update `cocod` before using this skill.
## Quick Start
```bash
# 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
```bash
# 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
```bash
# Receive Cashu token
cocod receive cashu <token>
# Create Lightning invoice to receive
cocod receive bolt11 <amount> [--mint-url <url>]
```
### Sending Payments
AGENT rule: commands in this section s_meta.json
{
"ownerId": "kn7e4fn1e2c1f2fc0qh9hrmjhn80c5h0",
"slug": "cocod",
"version": "0.0.13",
"publishedAt": 1771481227008
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Skill: Cocod Owner: Egge21M Summary: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand... Tags: latest:0.0.13 Version history: v0.0.13 | 2026-02-19T06:07:07.008Z | auto - Added a new Agent Safety Policy section with explicit rules for agents on spending actions and sensitive data handling. - Updated CLI command
Skill: Cocod
Owner: Egge21M
Summary: A Cashu ecash wallet CLI for Bitcoin and Lightning payments. Use when managing Cashu tokens, sending/receiving payments via Lightning (bolt11) or ecash, hand...
Tags: latest:0.0.13
Version history:
v0.0.13 | 2026-02-19T06:07:07.008Z | auto
skill_version and requires_cocod_version are now 0.0.13.v0.0.12 | 2026-02-15T18:55:46.951Z | auto
skill_version and requires_cocod_version (both set to 0.0.12).v0.0.11 | 2026-02-13T12:05:27.246Z | auto
Version 0.0.11 of cocod
v0.0.10 | 2026-02-13T12:04:59.193Z | auto
Support for NUT-24 HTTP 402 X-Cashu payment flows and documentation improvements.
v0.0.9 | 2026-02-02T15:09:34.188Z | user
Release v0.0.9
v0.0.8 | 2026-02-02T12:01:44.359Z | user
Release v0.0.8
v0.0.6 | 2026-02-02T11:28:08.557Z | auto
Archive index:
Archive v0.0.13: 2 files, 2812 bytes
Files: SKILL.md (6292b), _meta.json (125b)
File v0.0.13:SKILL.md
Cocod is a Cashu wallet for managing ecash tokens and making Bitcoin/Lightning payments. It uses the Cashu protocol for privacy-preserving ecash transactions.
If a web/API request returns HTTP 402 Payment Required with an X-Cashu header, use this skill to parse and settle the request with cocod.
When acting as an AGENT with this skill:
cocod x-cashu parse <request> to inspect costs and requirements before cocod x-cashu handle <request>.~/.cocod as sensitive. Never log, print, or expose its contents (including config, mnemonic material, wallet state, sockets, and pid files) unless the user explicitly requests a specific safe subset.Cashu is a Chaumian ecash protocol that lets you hold and transfer Bitcoin-backed tokens privately. It enables unlinkable transactions using blind signatures.
# Install cocod CLI
bun install -g cocod
This skill is version-pinned to an exact cocod CLI release.
skill_version must match the npm package version.requires_cocod_version is pinned to that exact same version.Check your installed CLI version:
cocod --version
If the version does not match the pinned values in this file, update cocod before using this skill.
# 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
# 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
# Receive Cashu token
cocod receive cashu <token>
# Create Lightning invoice to receive
cocod receive bolt11 <amount> [--mint-url <url>]
AGENT rule: commands in this section spend wallet funds. Ask for permission first unless the user already explicitly requested the spend action.
# 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>]
Use these commands when a server responds with HTTP 402 and an X-Cashu payment request.
AGENT rule: cocod x-cashu handle <request> can spend funds. Prefer cocod x-cashu parse <request> first to preview amount/requirements, then ask permission before handling unless already instructed.
# Parse an encoded X-Cashu request from a 402 response header
cocod x-cashu parse <request>
# Settle the request and get an X-Cashu payment header value
cocod x-cashu handle <request>
Typical flow:
X-Cashu from the 402 response.cocod x-cashu parse <request> to inspect amount and mint requirements.cocod x-cashu handle <request> to generate payment token header value.X-Cashu: cashuB... header.# Add a mint URL
cocod mints add <url>
# List configured mints
cocod mints list
# Get mint information
cocod mints info <url>
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.
AGENT rule: cocod npc username <name> --confirm is a spend action. Ask permission before running --confirm unless already instructed.
# Get your NPC Lightning Address
cocod npc address
# Reserve/buy an NPC username (two-step)
cocod npc username <name>
cocod npc username <name> --confirm
# 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
# Start the background daemon (started automatically when not running when required)
cocod daemon
# Stop the daemon
cocod stop
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
File v0.0.13:_meta.json
{ "ownerId": "kn7e4fn1e2c1f2fc0qh9hrmjhn80c5h0", "slug": "cocod", "version": "0.0.13", "publishedAt": 1771481227008 }
Archive v0.0.12: 2 files, 2393 bytes
Files: SKILL.md (5134b), _meta.json (125b)
File v0.0.12:SKILL.md
Cocod is a Cashu wallet for managing ecash tokens and making Bitcoin/Lightning payments. It uses the Cashu protocol for privacy-preserving ecash transactions.
If a web/API request returns HTTP 402 Payment Required with an X-Cashu header, use this skill to parse and settle the request with cocod.
Cashu is a Chaumian ecash protocol that lets you hold and transfer Bitcoin-backed tokens privately. It enables unlinkable transactions using blind signatures.
# Install cocod CLI
bun install -g cocod
This skill is version-pinned to an exact cocod CLI release.
skill_version must match the npm package version.requires_cocod_version is pinned to that exact same version.Check your installed CLI version:
cocod --version
If the version does not match the pinned values in this file, update cocod before using this skill.
# 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
# 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
# Receive Cashu token
cocod receive cashu <token>
# Create Lightning invoice to receive
cocod receive bolt11 <amount> [--mint-url <url>]
# 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>]
Use these commands when a server responds with HTTP 402 and an X-Cashu payment request.
# Parse an encoded X-Cashu request from a 402 response header
cocod x-cashu parse <request>
# Settle the request and get an X-Cashu payment header value
cocod x-cashu handle <request>
Typical flow:
X-Cashu from the 402 response.cocod x-cashu parse <request> to inspect amount and mint requirements.cocod x-cashu handle <request> to generate payment token header value.X-Cashu: cashuB... header.# Add a mint URL
cocod mints add <url>
# List configured mints
cocod mints list
# Get mint information
cocod mints info <url>
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
# 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
# Start the background daemon (started automatically when not running when required)
cocod daemon
# Stop the daemon
cocod stop
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
File v0.0.12:_meta.json
{ "ownerId": "kn7e4fn1e2c1f2fc0qh9hrmjhn80c5h0", "slug": "cocod", "version": "0.0.12", "publishedAt": 1771181746951 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T04:51:45.962Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/Egge21M/cocod",
"sourceUrl": "https://clawhub.ai/Egge21M/cocod",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.5K downloads",
"href": "https://clawhub.ai/Egge21M/cocod",
"sourceUrl": "https://clawhub.ai/Egge21M/cocod",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "0.0.13",
"href": "https://clawhub.ai/Egge21M/cocod",
"sourceUrl": "https://clawhub.ai/Egge21M/cocod",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-19T06:07:07.008Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-egge21m-cocod/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 0.0.13",
"description": "- Added a new Agent Safety Policy section with explicit rules for agents on spending actions and sensitive data handling. - Updated CLI command documentation to highlight when agent permission is required before spend actions. - Incremented version requirements: `skill_version` and `requires_cocod_version` are now `0.0.13`.",
"href": "https://clawhub.ai/Egge21M/cocod",
"sourceUrl": "https://clawhub.ai/Egge21M/cocod",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-19T06:07:07.008Z",
"isPublic": true
}
]Sponsored
Ads related to Cocod and adjacent AI workflows.