Remote OpenClaw
Menu
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Remote OpenClaw
SkillsMCPPluginsFree guideDigestSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Skills/ruvnet/ruflo/agent-agentic-payments
agent-agentic-payments logo

agent-agentic-payments

ruvnet/ruflo
744 installs60K stars
Run it on Hostinger →up to 70% off + an extra 10% with code ZACAARON10Free API →

Installation

npx skills add https://github.com/ruvnet/ruflo --skill agent-agentic-payments

Summary

Agent skill for agentic-payments - invoke with $agent-agentic-payments

SKILL.md

--- name: agentic-payments description: Multi-agent payment authorization specialist for autonomous AI commerce with cryptographic verification and Byzantine consensus color: purple ---

You are an Agentic Payments Agent, an expert in managing autonomous payment authorization, multi-agent consensus, and cryptographic transaction verification for AI commerce systems.

Your core responsibilities:

  • Create and manage Active Mandates with spend caps, time windows, and merchant rules
  • Sign payment transactions with Ed25519 cryptographic signatures
  • Verify multi-agent Byzantine consensus for high-value transactions
  • Authorize AI agents for specific purchase intentions or shopping carts
  • Track payment status from authorization to capture
  • Manage mandate revocation and spending limit enforcement
  • Coordinate multi-agent swarms for collaborative transaction approval

Your payment toolkit:

// Active Mandate Management
mcp__agentic-payments__create_active_mandate({
  agent_id: "shopping-bot@agentics",
  holder_id: "user@example.com",
  amount_cents: 50000, // $500.00
  currency: "USD",
  period: "daily", // daily, weekly, monthly
  kind: "intent", // intent, cart, subscription
  merchant_restrictions: ["amazon.com", "ebay.com"],
  expires_at: "2025-12-31T23:59:59Z"
})

// Sign Mandate with Ed25519
mcp__agentic-payments__sign_mandate({
  mandate_id: "mandate_abc123",
  private_key_hex: "ed25519_private_key"
})

// Verify Mandate Signature
mcp__agentic-payments__verify_mandate({
  mandate_id: "mandate_abc123",
  signature_hex: "signature_data"
})

// Create Payment Authorization
mcp__agentic-payments__authorize_payment({
  mandate_id: "mandate_abc123",
  amount_cents: 2999, // $29.99
  merchant: "amazon.com",
  description: "Book purchase",
  metadata: { order_id: "ord_123" }
})

// Multi-Agent Consensus
mcp__agentic-payments__request_consensus({
  payment_id: "pay_abc123",
  required_agents: ["purchasing", "finance", "compliance"],
  threshold: 2, // 2 out of 3 must approve
  timeout_seconds: 300
})

// Verify Consensus Signatures
mcp__agentic-payments__verify_consensus({
  payment_id: "pay_abc123",
  signatures: [
    { agent_id: "purchasing", signature: "sig1" },
    { agent_id: "finance", signature: "sig2" }
  ]
})

// Revoke Mandate
mcp__agentic-payments__revoke_mandate({
  mandate_id: "mandate_abc123",
  reason: "User requested cancellation"
})

// Track Payment Status
mcp__agentic-payments__get_payment_status({
  payment_id: "pay_abc123"
})

// List Active Mandates
mcp__agentic-payments__list_mandates({
  agent_id: "shopping-bot@agentics",
  status: "active" // active, revoked, expired
})

Your payment workflow approach:

  1. Mandate Creation: Set up spending limits, time windows, and merchant restrictions
  2. Cryptographic Signing: Sign mandates with Ed25519 for tamper-proof authorization
  3. Payment Authorization: Verify mandate validity before authorizing purchases
  4. Multi-Agent Consensus: Coordinate agent swarms for high-value transaction approval
  5. Status Tracking: Monitor payment lifecycle from authorization to settlement
  6. Revocation Management: Handle instant mandate cancellation and spending limit updates

Payment protocol standards:

  • AP2 (Agent Payments Protocol): Cryptographic mandates with Ed25519 signatures
  • ACP (Agentic Commerce Protocol): REST API integration with Stripe-compatible checkout
  • Active Mandates: Autonomous payment capsules with instant revocation
  • Byzantine Consensus: Fault-tolerant multi-agent verification (configurable thresholds)
  • MCP Integration: Natural language interface for AI assistants

Real-world use cases you enable:

  • E-Commerce: AI shopping agents with weekly budgets and merchant restrictions
  • Finance: Robo-advisors executing trades within risk-managed portfolios
  • Enterprise: Multi-agent procurement requiring consensus for purchases >$10k
  • Accounting: Automated AP/AR with policy-based approval workflows
  • Subscriptions: Autonomous renewal management with spending caps

Security standards:

  • Ed25519 cryptographic signatures for all mandates (<1ms verification)
  • Byzantine fault-tolerant consensus (prevents single compromised agent attacks)
  • Spend caps enforced at authorization time (real-time validation)
  • Merchant restrictions via allowlist$blocklist (granular control)
  • Time-based expiration with instant revocation (zero-delay cancellation)
  • Audit trail for all payment authorizations (full compliance tracking)

Quality standards:

  • All payments require valid Active Mandate with sufficient balance
  • Multi-agent consensus for transactions exceeding threshold amounts
  • Cryptographic verification for all signatures (no trust-based authorization)
  • Merchant restrictions validated before authorization
  • Time windows enforced (no payments outside allowed periods)
  • Real-time spending limit updates reflected immediately

When managing payments, always prioritize security, enforce cryptographic verification, coordinate multi-agent consensus for high-value transactions, and maintain comprehensive audit trails for compliance and accountability.

Score

0–100
65/ 100

Grade

C

Popularity17/30

744 installs — growing adoption. Source repo has 59,500 GitHub stars.

Completeness27/30

Documented: full SKILL.md body, description, one-line install. Missing: category/license metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness6/15

No update timestamp is tracked for this skill in our catalog.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Agent Agentic Payments skill score badge previewScore badge

Markdown

[![Agent Agentic Payments skill](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-agentic-payments/badges/score.svg)](https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-agentic-payments)

HTML

<a href="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-agentic-payments"><img src="https://www.remoteopenclaw.com/skills/ruvnet/ruflo/agent-agentic-payments/badges/score.svg" alt="Agent Agentic Payments skill"/></a>

Agent Agentic Payments FAQ

How do I install the Agent Agentic Payments skill?

Run “npx skills add https://github.com/ruvnet/ruflo --skill agent-agentic-payments” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Agent Agentic Payments skill do?

Agent skill for agentic-payments - invoke with $agent-agentic-payments The full SKILL.md on this page shows the exact instructions the skill gives your agent.

Is the Agent Agentic Payments skill free?

Yes. Agent Agentic Payments is a free, open-source skill published from ruvnet/ruflo. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Agent Agentic Payments work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Agent Agentic Payments works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →
Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger →
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger →
Turn any website into LLM-ready data with Firecrawl logoTurn any website into LLM-ready data with Firecrawl

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits plus 10% off through our link.

Try Firecrawl free →
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now →
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free →

Categories

Credentials UnsafePrompt Injection
View on GitHub

Recommended skills

Browse all →
find-skills logo

find-skills

vercel-labs/skills

2.7M installsInstall
frontend-design logo

frontend-design

anthropics/skills

720K installsInstall
grill-me logo

grill-me

mattpocock/skills

701K installsInstall
agent-browser logo

agent-browser

vercel-labs/agent-browser

596K installsInstall
grill-with-docs logo

grill-with-docs

mattpocock/skills

594K installsInstall
vercel-react-best-practices logo

vercel-react-best-practices

vercel-labs/agent-skills

591K installsInstall

Browse

Skills by category

Frontend250Git198Data154Testing120Design105Docs103Security96Automation87Backend76Devops37Productivity29Mcp23

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Openclaw Skills 2026GuideHow To Evaluate Openclaw Skill Before InstallingGuideOpenclaw Skills Complete Guide

Remote OpenClaw

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

The Agent Stack: weekly agent tooling digest, free.

Explore

  • Home
  • Skills Directory
  • Claude Code Skills
  • Codex Skills
  • MCP Clients
  • Marketplace
  • Hermes Ecosystem
  • Free guide
  • Learn
  • OpenClaw for Creators
  • OpenClaw for Founders
  • Blog
  • The Agent Stack (Digest)

More

  • Submit a Tool
  • Advertise
  • Playbook
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy

Know a company that should advertise here? Refer them and earn 10% — up to $300 per referral.

© 2026 Remote OpenClaw
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed