cloud-payments
Installation
SKILL.md
Cloud Payments
Manage rUv credits, billing, and financial operations within the Flow Nexus ecosystem.
Quick Start
// Check current balance
const balance = await mcp__flow-nexus__check_balance();
console.log(`Credits: ${balance.credits}, Auto-refill: ${balance.auto_refill}`);
// Purchase credits
const paymentLink = await mcp__flow-nexus__create_payment_link({
amount: 50 // USD minimum $10
});