Stats
Actions
Tags
From ripple
Execute an explicit RLUSD transfer or payment workflow using the external rlusd-cli runtime with prepare, review, execute, and receipt steps.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ripple:rlusd-transferThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user explicitly wants to move RLUSD and is ready to go
Use this skill when the user explicitly wants to move RLUSD and is ready to go through the action workflow rather than just inspect metadata or balances.
rlusd-trustline.rlusd-defi-action.evm transfer ... for token transfers and evm approve ...xrpl payment ...--from-wallet, --owner-wallet, or --wallet,
load rlusd-wallets to confirm the local wallet alias or provision one with
explicit user approval.prepare, review the resulting plan_id and plan_path,
then call execute with a matching --confirm-plan-id.rlusd evm transfer prepare --chain ethereum-mainnet --from-wallet ops --to 0x... --amount 25.5 --json
rlusd evm transfer execute --plan <plan_path_from_prepare> --confirm-plan-id <plan_id_from_prepare> --password "$RLUSD_WALLET_PASSWORD" --json
rlusd evm tx wait --chain ethereum-mainnet --hash 0x... --json
rlusd evm approve prepare --chain ethereum-mainnet --owner-wallet ops --spender 0x... --amount 1000 --json
rlusd evm approve execute --plan <plan_path_from_prepare> --confirm-plan-id <plan_id_from_prepare> --password "$RLUSD_WALLET_PASSWORD" --json
rlusd evm tx receipt --chain ethereum-mainnet --hash 0x... --json
rlusd xrpl payment prepare --chain xrpl-mainnet --from-wallet treasury-xrpl --to r... --amount 250 --json
rlusd xrpl payment execute --plan <plan_path_from_prepare> --confirm-plan-id <plan_id_from_prepare> --wallet treasury-xrpl --password "$RLUSD_WALLET_PASSWORD" --json
rlusd xrpl tx wait --chain xrpl-mainnet --hash ABCD... --json
rlusd xrpl payment receipt --chain xrpl-mainnet --hash ABCD... --json
plan_path and plan_id returned by prepare.ops or treasury-xrpl already
exist locally; use rlusd-wallets before wallet-backed transfer steps.--password "$RLUSD_WALLET_PASSWORD" explicitly for
predictability; the CLI can also read RLUSD_WALLET_PASSWORD from the
environment.evm transfer preparerlusd-wallets, then run evm transfer prepareevm approve preparexrpl payment preparenpx claudepluginhub t54-labs/rlusd-skills --plugin rippleGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.