Claim this agent
Agent DossierGITHUB OPENCLEWSafety 94/100

Xpersona Agent

rapay

Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag

MCP · self-declared
Trust evidence available
git clone https://github.com/greendlt224/rapay-clawhub-skill.git

Overall rank

#31

Adoption

No public adoption signal

Trust

Unknown

Freshness

Apr 15, 2026

Freshness

Last checked Apr 15, 2026

Best For

rapay is best for be, manage, parse workflows where MCP compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

No verified compatibility signals

Trust score

Unknown

Compatibility

MCP

Freshness

Apr 15, 2026

Vendor

Rapay

Artifacts

0

Benchmarks

0

Last release

Unpublished

Install & run

Setup Snapshot

git clone https://github.com/greendlt224/rapay-clawhub-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Rapay

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

MCP

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Events

Release & Crawl Timeline

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredGITHUB OPENCLEW

Captured outputs

Artifacts Archive

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

npm install -g @rapay/cli

bash

ra --version

bash

ra add-card

bash

ra link-bank

bash

ra link-bank --account acct_XXXXXXXXX

bash

ra accept-tos

Editorial read

Docs & README

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform --- name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}} --- Ra Pay — AI-Native Fiat Payments Ra Pay is the first CLI-native payment platform built for AI ag

Full README

name: rapay description: Send compliant fiat USD payments via Ra Pay CLI — the first CLI-native AI payment platform homepage: https://rapay.ai user-invocable: true metadata: {"openclaw": {"emoji": "💸", "requires": {"bins": ["node", "npm"]}, "os": ["darwin", "linux", "win32"], "install": [{"node": "@rapay/cli"}]}}

Ra Pay — AI-Native Fiat Payments

Ra Pay is the first CLI-native payment platform built for AI agents. It lets you send compliant fiat USD payments using simple CLI commands. Every payment goes through Stripe's regulated infrastructure with full compliance screening.

This skill teaches you how to use the Ra Pay CLI to send business payments on behalf of your user.

Installation

npm install -g @rapay/cli

Verify installation:

ra --version

Expected output: ra-cli 1.5.0 or later.

One-Time Setup

Before sending payments, the user must complete account setup. The steps depend on whether they want to send, receive, or both.

Setup Paths

| Goal | Required Command | What It Does | |------|-----------------|--------------| | Send payments | ra add-card | Saves a credit card via Stripe Checkout (no bank account needed) | | Receive payments | ra link-bank | Connects a bank account via Stripe Connect (for payouts) | | Both | ra add-card + ra link-bank | Full sender + receiver setup |

To Send: Add a Credit Card

ra add-card

This opens a Stripe Checkout page in the browser where the user securely saves a credit card. Once complete, the card is stored with Stripe (not locally) and payments can be sent immediately. No bank account or Stripe Connect onboarding is needed to send.

To Receive: Link a Bank Account

ra link-bank

This opens a Stripe-hosted flow in the browser where the user connects their bank account via Stripe Connect. Once complete, the CLI stores the session locally. This is required to receive payments — senders do not need this step.

To reconnect an existing verified account:

ra link-bank --account acct_XXXXXXXXX

Accept Terms of Service

ra accept-tos

The user must accept Ra Pay's Terms of Service before sending any payments.

Check TOS status at any time:

ra tos-status

Verify Account

ra whoami

Confirm the account shows as linked and verified before proceeding with payments.

Sending Payments

Ra Pay uses a two-step confirmation flow for every payment. This is mandatory — never skip the preview step.

Step 1: Preview the Payment

ra send <AMOUNT> USD to <RECIPIENT_ID> --for "<BUSINESS_PURPOSE>" --json

Example:

ra send 150 USD to acct_1A2B3C4D5E --for "Logo design work - Invoice #427" --json

This returns a fee breakdown without executing the payment:

{
  "status": "preview",
  "amount": 150.00,
  "currency": "USD",
  "recipient": "acct_1A2B3C4D5E",
  "fee": 3.00,
  "total": 153.00,
  "business_purpose": "Logo design work - Invoice #427"
}

Step 2: Show the Preview and Get User Approval

You MUST show the fee breakdown to the user and ask for explicit confirmation before proceeding. Never auto-confirm a payment.

Present the details clearly:

  • Amount: $150.00
  • Ra Pay fee (2%): $3.00
  • Total charge: $153.00
  • Recipient: acct_1A2B3C4D5E
  • Purpose: Logo design work - Invoice #427

Step 3: Execute the Payment

Only after the user explicitly confirms, add the --confirm flag:

ra send 150 USD to acct_1A2B3C4D5E --for "Logo design work - Invoice #427" --json --confirm

The --confirm flag executes the payment. Without it, you always get a preview.

Amount Rules

  • Minimum payment: $1.00
  • Currency: USD only
  • Recipients must be valid Stripe connected accounts (format: acct_ followed by alphanumeric characters)

Business Purpose Requirements

Ra Pay is a business-to-business payment platform. Every payment requires a --for flag with a legitimate business purpose (10–200 characters).

Valid Business Purposes

Good examples:

  • "Freelance development work - Invoice #123"
  • "API consulting services - March 2026"
  • "Logo design work"
  • "Website hosting fees - Q1 2026"
  • "Content writing - 5 blog posts"

Business purposes should be specific and describe real goods or services rendered.

Blocked Patterns — Do NOT Use These

Ra Pay will reject payments with purposes that match these categories:

Peer-to-peer language — Ra Pay is not for personal transfers:

  • friend, family, roommate, splitting bills, payback, loan, personal reimbursement

Gift language:

  • gift, birthday, holiday

Money laundering red flags:

  • gift cards, prepaid cards, cryptocurrency purchase, wire transfer

Vague or unspecific purposes:

  • "for services" (too vague — specify what services)
  • "payment" (not a purpose)
  • "transfer" (not a purpose)

Gibberish or test strings:

  • Repetitive characters (e.g., "aaaaaaaaaa")
  • Random letters (e.g., "asdfghjkl")
  • Repeated words (e.g., "test test test")

If a Purpose Is Rejected

Tell the user: "Ra Pay is for business transactions only. Please provide a specific business purpose describing the goods or services involved."

Help them rewrite their purpose to be specific and business-related.

Other Commands

Add or Update Payment Card

ra add-card

Opens Stripe Checkout in the browser to save or update a credit card for sending payments. The card is stored securely with Stripe, not locally.

To remove a saved card, use ra dashboard to open the Stripe Dashboard where the user can manage or delete their payment methods.

Check Balance

ra balance --json

Returns current balance, pending amounts, and payout schedule.

View Transaction History

ra history --json

Returns recent payments with timestamps and status. To show more transactions:

ra history --limit 50 --json

The --limit flag accepts values from 1 to 100 (default: 20 in CLI, 10 in MCP).

Account Info

ra whoami

Shows user ID, Stripe account status, verification status, and account tier.

Manage Refunds

ra refund

Opens the Stripe Dashboard in the browser for processing refunds. Refunds must be handled through the Stripe interface for security.

Manage Disputes

ra dispute

Opens the Stripe Disputes page. Remind the user: disputes must be responded to within the given timeframe or they auto-resolve against the user.

Open Stripe Dashboard

ra dashboard

Opens the full Stripe account dashboard in the browser. Use this for managing payment methods (including removing saved cards), viewing detailed transaction records, and account settings.

Unlink Account

ra unlink

Disconnects the Stripe account and clears the local session.

Using the --json Flag

Always use --json when calling Ra Pay commands. This returns structured JSON output that you can parse reliably instead of human-formatted text.

Commands that support --json:

  • ra send ... --json
  • ra balance --json
  • ra history --json

Error Handling

  • "Not linked" — The user hasn't set up a payment method. To send, run ra add-card. To receive, run ra link-bank.
  • "TOS not accepted" — The user needs to run ra accept-tos.
  • "Invalid business purpose" — The purpose was rejected by compliance screening. Help the user write a specific, business-related purpose.
  • "Invalid recipient" — The recipient ID must match the format acct_ followed by alphanumeric characters.
  • "Minimum amount" — Payment must be at least $1.00.
  • "CLI version outdated" — The user needs to update: npm install -g @rapay/cli

Important Rules

  1. Never auto-confirm payments. Always show the fee preview and get explicit user approval.
  2. Never fabricate recipient IDs. Only use real acct_ IDs provided by the user.
  3. Never bypass business purpose validation. If a purpose is rejected, help the user write a valid one.
  4. Always use --json for structured output.
  5. Ra Pay credentials stay local. Never ask users to share API keys, session tokens, or account IDs with you. Everything runs on their machine.

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

MCP: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust"

Operational fit

Reliability & Benchmarks

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingGITHUB OPENCLEW

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/greendlt224-rapay-clawhub-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T04:44:29.231Z"
    }
  },
  "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": "MCP",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "be",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "manage",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "parse",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|unknown|profile capability:be|supported|profile capability:manage|supported|profile capability:parse|supported|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Rapay",
    "href": "https://rapay.ai",
    "sourceUrl": "https://rapay.ai",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:21:22.124Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:21:22.124Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/greendlt224-rapay-clawhub-skill/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[]

Sponsored

Ads related to rapay and adjacent AI workflows.