name: rozo-intents description: > Cross-chain crypto payments and bridging via Rozo. Send USDC/USDT across Ethereum, Base, BNB Chain, Solana, and Stellar. Use when user says "pay", "send", "transfer", "payout", "check balance", "payment status", or shares a QR code screenshot. Also triggers on wallet addresses (0x, base58, G/C stellar), transaction hashes. Auto-detects wallet type, auto-selects token (USDC preferred), checks balances, gets fees, and confirms before sending. Do NOT use for general blockchain questions or non-payment tasks. metadata: author: rozo version: 1.0.2 runtime: node
Send cross-chain crypto payments and bridging via Rozo. Send USDC/USDT across Ethereum, Base, BNB Chain, Solana, and Stellar.
Determine the user's intent and load the matching sub-skill:
| Intent | Sub-skill | Triggers |
|---|---|---|
| Send a payment | skills/send-payment/SKILL.md |
"pay", "send", "transfer", "payout", shares a QR code, provides an amount + address |
| Check wallet balance | skills/check-balance/SKILL.md |
"check balance", "how much do I have", "show my balance", "wallet balance" |
| Parse a QR code | skills/parse-qr/SKILL.md |
"scan QR", "parse QR", "read this QR", shares a QR image without mentioning payment |
| Check payment status | skills/payment-status/SKILL.md |
"check payment", "payment status", "where is my payment", "track payment", provides a payment UUID or tx hash |
Rules:
1. If the user mentions sending/paying → route to send-payment (it handles QR parsing internally)
2. If the user shares a QR code WITHOUT mentioning payment → route to parse-qr first, then offer to send
3. If the user asks about balance before sending → route to check-balance, then continue to send-payment if they want to pay
4. If ambiguous, ask the user what they'd like to do
| Chain | USDC | USDT |
|---|---|---|
| Ethereum | Yes | Yes |
| Arbitrum | Yes | Yes |
| Base | Yes | Yes |
| BSC | Yes | Yes |
| Polygon | Yes | Yes |
| Solana | Yes | No |
| Stellar | Yes | No |
| Chain | USDC | USDT |
|---|---|---|
| Ethereum | Yes | Yes |
| Arbitrum | Yes | Yes |
| Base | Yes | No |
| BSC | Yes | Yes |
| Polygon | Yes | Yes |
| Solana | Yes | Yes |
| Stellar | Yes | No |
Requires Node.js (ES modules). All scripts in scripts/dist/ are run with node.
The Rozo APIs are public and rate-limited — no API keys or authentication tokens are required.
| Endpoint | Host | Auth | Notes |
|---|---|---|---|
| Payment API (create, get, check) | intentapiv4.rozo.ai |
None (rate-limited) | Main Rozo payment API |
| Balance API (check balance) | api-balance.rozo-deeplink.workers.dev |
None (rate-limited) | Rozo balance service (Cloudflare Workers) |
Both hosts are operated by Rozo. The balance endpoint uses a separate Cloudflare Workers deployment for performance.
exactOut by default — recipient gets exact amount, fee added on topShared Node.js scripts in scripts/dist/ (run with plain node):
| Script | Purpose |
|---|---|
check-balance.js |
Fetch wallet balances via Rozo balance API |
check-stellar-trustline.js |
Verify asset trustline (USDC/EURC) on Stellar G-wallets |
create-payment.js |
Create a payment (or dryrun for fee estimate) via Rozo API |
get-payment.js |
Get payment status by ID, tx hash, or address+memo |
parse-qr.js |
Parse payment QR code URIs (EIP-681, Solana Pay, Stellar URI) |
chains.js |
Shared chain/token config (imported by other scripts) |
references/supported-chains.md — chain IDs, token addresses, decimals來源於7w4.net。
references/api-reference.md — Rozo API endpoints and schemasreferences/wallet-detection.md — address format detection rules這個跨鏈支付 Skill 質量紮實,支援的鏈和代幣種類豐富,文件結構清晰,程式碼實現了完整的功能鏈路。自動檢測錢包型別、自動選擇代幣、交易前確認等互動設計考慮周全。主要不足是缺少總覽性說明文件,部分地址配置疑似存在錯誤,對於 Stellar 智慧合約錢包的流程較複雜可能增加理解成本。整體而言功能完整度高,可靠性良好,但部署前需核對鏈配置資料的準確性。