bonero-miner

Mine Bonero - private cryptocurrency for AI agents. RandomX CPU mining, Monero-based privacy.

7 stars

Best use case

bonero-miner is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Mine Bonero - private cryptocurrency for AI agents. RandomX CPU mining, Monero-based privacy.

Teams using bonero-miner should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/bonero-miner/SKILL.md --create-dirs "https://raw.githubusercontent.com/Demerzels-lab/elsamultiskillagent/main/public/skills/happybigmtn/bonero-miner/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/bonero-miner/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How bonero-miner Compares

Feature / Agentbonero-minerStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Mine Bonero - private cryptocurrency for AI agents. RandomX CPU mining, Monero-based privacy.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# 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

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

Or verify first:
```bash
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).

---

## Start Mining

### 1. Create a wallet

```bash
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

```bash
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

```bash
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:

| Cores | Threads |
|-------|---------|
| 4 | 2 |
| 8 | 4 |
| 16 | 8 |

Leave headroom for the system and network sync.

---

## Build from Source (Manual)

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

```bash
# 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:
```bash
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

```bash
# 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:

| Feature | What it hides |
|---------|---------------|
| Ring signatures | Which input is really being spent |
| Stealth addresses | The recipient's real address |
| RingCT | Transaction 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

| Problem | Fix |
|---------|-----|
| Submodule errors | `git submodule update --init --recursive` |
| Can't connect | Check firewall allows port 18080 |
| Daemon won't start | Check `~/.bonero/bonero.log` |
| Build fails | Missing deps - install libboost, libzmq, etc. |

---

*Private money for private machines.*

Related Skills

mineru-pdf

7
from Demerzels-lab/elsamultiskillagent

Parse PDFs locally (CPU) into Markdown/JSON using MinerU.

ore-miner

7
from Demerzels-lab/elsamultiskillagent

Autonomous ORE mining on Solana via refinORE. Onboard humans, start/stop sessions, optimize tile strategies, track P&L, manage risk, auto-restart, multi-coin mining (SOL/USDC/stablecoins), DCA/limit orders, staking.

botcoin-miner

7
from Demerzels-lab/elsamultiskillagent

Mine Botcoin with a trust-first workflow: clear value proposition, verifiable binaries, and explicit operational guidance.

skill-miner

7
from Demerzels-lab/elsamultiskillagent

Professional skill discovery and clean-skill creation from ClawHub research.

aminer-open-academic

7
from Demerzels-lab/elsamultiskillagent

AMiner open academic resource query tool and academic data acquisition tool.

mineru-pdf-extractor

7
from Demerzels-lab/elsamultiskillagent

Extract PDF content to Markdown using MinerU API.

paylock

7
from Demerzels-lab/elsamultiskillagent

Non-custodial SOL escrow for AI agent deals.

agent-reputation

7
from Demerzels-lab/elsamultiskillagent

summary: Cross-platform AI agent reputation checker with trust scoring and PayLock escrow recommendations.

Telecom Agent Skill

7
from Demerzels-lab/elsamultiskillagent

Turn your AI Agent into a Telecom Operator. Bulk calling, ChatOps, and Field Monitoring.

OpenClaw-Finnhub

7
from Demerzels-lab/elsamultiskillagent

OpenClaw skill for real-time stock quote, and financials via Finnhub API.

```markdown

7
from Demerzels-lab/elsamultiskillagent

# OpenClaw-Last.fm

security-operator

7
from Demerzels-lab/elsamultiskillagent

Runtime security guardrails for OpenClaw agents.