by nhevers
Official SDK, Claude Code plugin and facilitator docs for r0x, the x402 facilitator for Robinhood Chain.
# Add to your Claude Code skills
git clone https://github.com/nhevers/project-r0xLast scanned: 7/12/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-07-12T06:31:50.673Z",
"npmAuditRan": true,
"pipAuditRan": true,
"promptInjectionRan": true
}project-r0x is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by nhevers. Official SDK, Claude Code plugin and facilitator docs for r0x, the x402 facilitator for Robinhood Chain. It has 82 GitHub stars.
Yes. project-r0x passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/nhevers/project-r0x" and add it to your Claude Code skills directory (see the Installation section above).
project-r0x is primarily written in TypeScript. It is open-source under nhevers on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh project-r0x against similar tools.
No comments yet. Be the first to share your thoughts!
⚠️ Third-Party Software Notice
This skill is third-party open-source software developed and hosted independently on GitHub. SkillsLLM is an informational directory and does not control or maintain the underlying repository.
Any security checks, ratings, or warnings displayed by SkillsLLM are automated and limited in scope. They do not constitute a security certification or guarantee that the software is safe, error-free, or free from malicious code, vulnerabilities, compromised dependencies, or prompt-injection risks.
Review the source code, permissions, dependencies, and configuration before installing or running any third-party skill. Use is at your own risk. To the maximum extent permitted by applicable law, SkillsLLM is not liable for losses arising from third-party software.
The official SDK, Claude Code / MCP plugin, and facilitator docs for r0x, the USDG-native operating system for AI agents, built on Robinhood Chain.
r0x runs the official x402 facilitator for Robinhood Chain. AI agents can use it right now: discover a priced capability, authorize a USDG payment, and invoke it, all in one uninterrupted call. No API keys, no subscriptions, no human approving anything in between.
Live site: projectr0x.dev · Facilitator docs: docs/facilitator.md · Skill reference: docs/skills.md
src/client): a TypeScript client (R0xClient) that handles the
x402 challenge/sign/retry cycle automatically. Published as r0x-os on npm.src/plugin): exposes the full skill catalog
as MCP tools, plus local wallet setup and a spend-limit guard.integrations/virtuals-game): a GAME SDK
worker that gives any Virtuals agent the same skill catalog as fifteen
callable functions, with optional auto-broadcast of trades and transfers.docs/): how the facilitator works and the full skill reference.examples/): a minimal, dependency-light reference client.npm install r0x-os
import { R0xClient } from 'r0x-os';
const client = new R0xClient({ privateKey: process.env.R0X_PRIVATE_KEY });
// $0.01 USDG per call, settled automatically
const { data } = await client.price('ETH');
console.log(data.priceUSD);
const balance = await client.balance('0x...');
console.log(balance.data.balances);
See docs/skills.md for every method the client exposes.
/plugin marketplace add nhevers/project-r0x
/plugin install r0x-os
Or add it directly as an MCP server:
claude mcp add r0x -- npx r0x-os
No private key is needed upfront, the agent calls r0x_setup on first use to
either import an existing wallet or generate a fresh one. After that, eighteen
tools are available: r0x_setup, balance, tx, price, wallet, chat,
send, fund, broadcast, spend_limit, trade, quote, pool,
liquidity_add, liquidity_remove, liquidity_positions, yield, and
bridge. trade, quote, pool, and liquidity_* all accept any ERC20
token on Robinhood Chain, not just ETH and USDG — there's no allowlist.
Any agent built on the Virtuals GAME SDK can plug straight into r0x. See integrations/virtuals-game for a worker exposing the full skill catalog as GAME functions, with optional auto-broadcast of trades, transfers, and liquidity transactions.
git clone https://github.com/nhevers/project-r0x.git
cd project-r0x
npm install
npm run build # compiles src/ -> dist/
npm run example:tx # runs the reference test-transaction script
Read docs/facilitator.md for the full protocol walk-through,
or jump straight to examples/test-transaction.js
for a working ~80-line client.
MIT, see LICENSE.