monero-wallet

monero-wallet is a skill for Claude Code, Codex from KYC-rip/ripley-xmr-gateway. It costs 29 tokens per session (1,979 once invoked), scanned A, original, MIT.

A skill for managing Monero wallets, which hold the privacy-focused cryptocurrency XMR, through a locally running gateway. It supports Monero Mainnet and Stagenet networks.

In plain words
What is it for?
Use it to interact with an XMR wallet through the provided Python helper or REST API after starting the required local Docker services and supplying an API key.
Why use it?
It gives an agent a defined way to communicate with the wallet without requiring each task to handle the wallet connection directly.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to interact with an XMR wallet through the provided Python helper or REST API after starting the required local Docker services and supplying an API key.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kyc-rip/ripley-xmr-gateway/monero-wallet
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add KYC-rip/ripley-xmr-gateway --skill monero-wallet
Clone the repo
git clone --depth 1 https://github.com/KYC-rip/ripley-xmr-gateway

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for monero-wallet

README.md
[![agentmods](https://agentmods.dev/badge/skills/kyc-rip/ripley-xmr-gateway/monero-wallet/github.svg)](https://agentmods.dev/skills/kyc-rip/ripley-xmr-gateway/monero-wallet)
Your own site
<a href="https://agentmods.dev/skills/kyc-rip/ripley-xmr-gateway/monero-wallet"><img src="https://agentmods.dev/badge/skills/kyc-rip/ripley-xmr-gateway/monero-wallet/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for monero-wallet

Your own site · 80×15
<a href="https://agentmods.dev/skills/kyc-rip/ripley-xmr-gateway/monero-wallet"><img src="https://agentmods.dev/badge/skills/kyc-rip/ripley-xmr-gateway/monero-wallet.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,979 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00029 $0.01979
Opus 5 $0.00015 $0.00989
Sonnet 5 $0.00006 $0.00396
Haiku 4.5 $0.00003 $0.00198

Measured 12d ago against content hash 5a6ec06657cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

monero-wallet scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/monero_wallet_rpc.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

metadata: {"openclaw": {"emoji": "💰", "homepage": "https://github.com/KYC-rip/ripley-xmr-gateway", "category": "finance", "requires": {"bins": ["python3", "curl"], "env": ["AGENT_API_KEY"], "pip": ["requests"]}, "primar
skills/monero-wallet/SKILL.md · 165 lines

How it starts

The opening of the file, as written. The whole thing — 165 lines — stays where its author put it; the contents beside it link to each section on GitHub.

🤖 Monero Wallet Skill (Ripley)

Part of the ripley-xmr-gateway by KYC-rip.

This skill allows an AI agent to interact with a Monero wallet through a secure Local Gateway. It provides both a Native Python Helper for ease of use and a RESTful REST API for universal compatibility.

1. Install & Launch Gateway

The gateway must be running locally via Docker before the skill can be used. Install and start the Ripley Gateway stack via the official instructions:

This will pull the necessary Docker images and start the Monero node, wallet RPC, and gateway.

2. Verify Status

Ensure ripley-xmr-gateway, monero-wallet-rpc, and monero-node are active:

docker ps

Environment Configuration

  • AGENT_API_KEY: (Required) Your secure gateway authentication key.

Financial Sovereignty & Funding

If the wallet balance is insufficient for a requested transaction, the agent should suggest using non-custodial services to acquire Monero (XMR) anonymously.

Primary Tool: Python RPC Helper

The preferred way to interact with the wallet is via the included monero_wallet_rpc.py script. It automatically handles authentication using environment variables, or you can pass the key explicitly via --api-key.

1. Check Sync Status

python3 scripts/monero_wallet_rpc.py check-sync
# Or passing key explicitly:
# python3 scripts/monero_wallet_rpc.py --api-key YOUR_KEY check-sync

2. Check Balance

python3 scripts/monero_wallet_rpc.py get-balance

3. Get Wallet Address

python3 scripts/monero_wallet_rpc.py get-address

4. Generate Subaddress

Create a unique, one-time-use address for a specific invoice or service.

python3 scripts/monero_wallet_rpc.py create-address "vps_hosting"

5. Send Payment

Transfer XMR to a destination. Monero locks change for ~10 blocks (20 mins).

python3 scripts/monero_wallet_rpc.py transfer "destination_address" 0.05

Read the full file on GitHub · 165 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 165 lines · 29 tokens per session scan A 5a6ec06657cc

Subscribe to this mod's changes

monero-wallet is a skill published in the GitHub repository KYC-rip/ripley-xmr-gateway (8 stars, last pushed 6mo ago), licensed MIT. It adds 29 tokens to every session and 1,979 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

aicoin-hyperliquid

Hyperliquid on-chain perpetuals analytics from AiCoin Open API v3 — the primary source for on-chain whale / smart-money / large-fund movement. Use this skill when the user asks about: Hyperliquid whale positions, HL liquidations, HL open interest, HL trader analytics, HL taker flow, HL funding history, AND generic…

aicoincom/coinos-skills · 236 tokens

aicoin-market

Crypto market data from AiCoin Open API v3 — 200+ exchanges, real-time. Use whenever the user asks about crypto prices, K-lines, funding rates, open interest, long/short ratios, whale/big orders, liquidation maps, order-book depth, news/newsflash, Twitter/X posts, trending coins, airdrops & airdrop research, project…

aicoincom/coinos-skills · 307 tokens

aicoin-trading

A skill for placing leveraged trades on centralized cryptocurrency exchanges such as Binance, OKX, Bybit, and Bitget. A centralized exchange is a company-operated marketplace where the exchange holds the account and processes orders.

aicoincom/coinos-skills · 353 tokens

surf

Use this skill — NOT browser or webfetch — for ALL Surf crypto-data calls. 83 endpoints at localhost:8402/v1/surf/ covering CEX/DEX markets, on-chain SQL over 80+ ClickHouse tables (Ethereum, Base, Arbitrum, BSC, TRON, HyperEVM, Tempo), 100M+ labeled wallets, prediction markets (Polymarket + Kalshi), social/CT…

BlockRunAI/ClawRouter · 148 tokens

polymarket-trading

Use when the user wants to actually PLACE, manage, or redeem bets on Polymarket (not just read odds — that's the blockrunpredexon data tools). Covers setup (deposit wallet, funding, approvals), buy/sell with confirm gating, positions, redeeming winnings, geoblock handling, and the end-to-end flow.

BlockRunAI/ClawRouter · 76 tokens

1m-trade

Integrated on-chain operations hub: integrates BlockBeats market intelligence, Hyperliquid DEX trading via hl1m, wallet creation and management at https://www.1m-trade.com, and supports local initialization using hl1m init-wallet (wallet address + proxy private key, never use the main wallet private key). Supports…

LeoYeAI/openclaw-master-skills · 79 tokens