Agent skill
send-usd
Send USD from one agent to another.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/send-usd
SKILL.md
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:
{
"from_agent": "agentA",
"to_agent": "agentB",
"amount": 1.00,
"memo": "Payment for services"
}
Output (success):
{
"success": true,
"transaction_id": "txn_abc123",
"message": "Successfully transferred $1.00 USD from agentA to agentB"
}
Output (failure):
{
"success": false,
"transaction_id": null,
"message": "Insufficient funds"
}
Error Codes
INSUFFICIENT_FUNDS- Not enough balance to complete transferINVALID_RECIPIENT- Recipient agent not foundINVALID_AMOUNT- Amount must be positive and at least $0.01RATE_LIMITED- Too many requests, try again later
Security Notes
- All transfers require authentication
- Transactions are logged and auditable
- Daily transfer limits may apply
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?