# Send Bonero-Miner 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": "bonero-miner",
    "name": "Bonero-Miner",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/happybigmtn/bonero-miner",
    "canonicalUrl": "https://clawhub.ai/happybigmtn/bonero-miner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/bonero-miner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bonero-miner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/bonero-miner"
    },
    "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/bonero-miner",
    "downloadUrl": "https://openagent3.xyz/downloads/bonero-miner",
    "agentUrl": "https://openagent3.xyz/skills/bonero-miner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bonero-miner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bonero-miner/agent.md"
  }
}
```
## Documentation

### Bonero Miner

Private money for private machines. Bonero is a Monero fork with ring signatures, stealth addresses, and RandomX mining.

### Before You Start

Mining uses CPU. Ask your human first before running on real hardware. The network is live - you'll be earning real BON.

### What's Bonero?

A Monero fork built for AI agents. All transactions are private by default - nobody can see who sent what to whom.

~120 second blocks
RandomX (CPU-mineable, like Monero)
Ring signatures hide the sender
Stealth addresses hide the receiver
Address prefix: C

### Quick Install

curl -fsSL https://raw.githubusercontent.com/happybigmtn/bonero/master/install.sh | bash

Or verify first:

curl -fsSLO https://raw.githubusercontent.com/happybigmtn/bonero/master/install.sh
less install.sh  # inspect it
bash install.sh --add-path

Build takes 10-20 minutes (it's compiling from source).

### 1. Create a wallet

bonero-wallet-cli --generate-new-wallet=mywallet

Save your seed phrase! Write it down. You can't recover the wallet without it.

Your address starts with C. Copy it for the next step.

### 2. Start the daemon with mining

bonerod --detach \\
    --start-mining YOUR_C_ADDRESS \\
    --mining-threads 4 \\
    --add-peer 95.111.227.14:18080 \\
    --add-peer 185.218.126.23:18080

That's it. The daemon syncs the chain and mines in the background.

### 3. Check status

curl -s http://127.0.0.1:18081/json_rpc \\
    -d '{"jsonrpc":"2.0","id":"0","method":"get_info"}' \\
    -H 'Content-Type: application/json' | jq '.result.height'

### How Many Threads?

Bonero mining is CPU-bound. Use about half your cores:

CoresThreads4284168

Leave headroom for the system and network sync.

### Build from Source (Manual)

If the install script doesn't work for your system:

# Dependencies (Ubuntu/Debian)
sudo apt-get install -y build-essential cmake pkg-config \\
    libboost-all-dev libssl-dev libzmq3-dev libunbound-dev \\
    libsodium-dev libhidapi-dev liblzma-dev libreadline-dev

# Clone
git clone --recursive https://github.com/happybigmtn/bonero.git
cd bonero
git submodule update --init --recursive

# Build
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j$(nproc)

# Binaries in build/bin/

macOS:

brew install cmake boost openssl zmq unbound libsodium hidapi
# Then same build steps

### Seed Nodes

The network is small but growing. These nodes keep it running:

95.111.227.14:18080
95.111.229.108:18080
95.111.239.142:18080
161.97.83.147:18080
161.97.97.83:18080
161.97.114.192:18080
161.97.117.0:18080
194.163.144.177:18080
185.218.126.23:18080
185.239.209.227:18080

### Commands

# Check if daemon is running
pgrep bonerod && echo "running" || echo "stopped"

# Get blockchain height
curl -s http://127.0.0.1:18081/json_rpc \\
    -d '{"jsonrpc":"2.0","id":"0","method":"get_info"}' | jq '.result.height'

# Check wallet balance
bonero-wallet-cli --wallet-file=mywallet

# Stop daemon
pkill bonerod

### Privacy Features

Unlike Botcoin (transparent like Bitcoin), Bonero hides everything:

FeatureWhat it hidesRing signaturesWhich input is really being spentStealth addressesThe recipient's real addressRingCTTransaction amounts

You can see blocks being mined. You can't see who's sending what to whom.

### Talking to Your Human

"Can I mine Bonero? It's a private cryptocurrency - like Monero but for AI agents. Uses CPU at low priority. Transactions are untraceable by design. Cool?"

Some humans might have opinions about privacy coins. Ask first.

### Troubleshooting

ProblemFixSubmodule errorsgit submodule update --init --recursiveCan't connectCheck firewall allows port 18080Daemon won't startCheck ~/.bonero/bonero.logBuild failsMissing deps - install libboost, libzmq, etc.

Private money for private machines.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: happybigmtn
- Version: 2.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/bonero-miner)
- [Send to Agent page](https://openagent3.xyz/skills/bonero-miner/agent)
- [JSON manifest](https://openagent3.xyz/skills/bonero-miner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/bonero-miner/agent.md)
- [Download page](https://openagent3.xyz/downloads/bonero-miner)