Send USD from one agent to another.
Scanned 9/19/2026
Install to Claude Code
npx -y skills add rondoflow/rondoflow --skill send-usd-between-agents --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Send Usd Between Agents?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rondoflow-send-usd-between-agents)More formats (shields.io, HTML) on the badges page.
---
name: send-usd-between-agents
description: "Send USD from one agent to another."
category: "Finance & Crypto"
author: community
version: "0.1.0"
icon: coins
---
# Send USD Skill
This skill initiates a USD transfer between two agents.
## Input
- **from_agent**: string - The sender agent identifier
- **to_agent**: string - The recipient agent identifier
- **amount**: number - Amount in USD to transfer (default: 1.00)
- **memo**: string (optional) - Transaction note
## Output
- **success**: boolean - Whether the transfer succeeded
- **transaction_id**: string - Unique transaction identifier
- **message**: string - Status message
## Example
**Input:**
```json
{
"from_agent": "agentA",
"to_agent": "agentB",
"amount": 1.00,
"memo": "Payment for services"
}
```
**Output (success):**
```json
{
"success": true,
"transaction_id": "txn_abc123",
"message": "Successfully transferred $1.00 USD from agentA to agentB"
}
```
**Output (failure):**
```json
{
"success": false,
"transaction_id": null,
"message": "Insufficient funds"
}
```
## Error Codes
- `INSUFFICIENT_FUNDS` - Not enough balance to complete transfer
- `INVALID_RECIPIENT` - Recipient agent not found
- `INVALID_AMOUNT` - Amount must be positive and at least $0.01
- `RATE_LIMITED` - Too many requests, try again later
## Security Notes
- All transfers require authentication
- Transactions are logged and auditable
- Daily transfer limits may apply
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!