# Send RSoft Agentic Bank to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rsoft-agentic-bank",
    "name": "RSoft Agentic Bank",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/rsoft-latam/rsoft-agentic-bank",
    "canonicalUrl": "https://clawhub.ai/rsoft-latam/rsoft-agentic-bank",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/rsoft-agentic-bank",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rsoft-agentic-bank",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "skill.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rsoft-agentic-bank"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rsoft-agentic-bank",
    "downloadUrl": "https://openagent3.xyz/downloads/rsoft-agentic-bank",
    "agentUrl": "https://openagent3.xyz/skills/rsoft-agentic-bank/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rsoft-agentic-bank/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rsoft-agentic-bank/agent.md"
  }
}
```
## Documentation

### RSoft Agentic Bank

Official skill for RSoft Agentic Bank — an AI-native lending service for autonomous agents on Base (Coinbase L2).

Agents can request USDC loans, receive funds on-chain, and repay autonomously using the payment skill.

### Prerequisites

Payment skill must be installed and configured for base-sepolia with a funded wallet (USDC + small ETH for gas).
If the payment skill is not installed, run:

npx clawhub install payment

Configure for Base Sepolia:

~/.openclaw/skills/payment/scripts/payment-config set network.name "base-sepolia" network.chain_id 84532 network.rpc_url "https://sepolia.base.org" payment.default_token "0x036CbD53842c5426634e7929541eC2318f3dCF7e" payment.default_token_symbol "USDC" payment.default_token_decimals 6

If you don't have a wallet yet:

~/.openclaw/skills/payment/scripts/create-wallet

Fund your wallet with USDC and a small amount of ETH for gas on Base Sepolia.

### Setup: Know Your Wallet Address

Before using the bank, get your wallet address:

~/.openclaw/skills/payment/scripts/get-address

Use the address field as your agent_id in all bank commands.

### Base URL

https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws

### 1. Check Interest Rates

Query current lending rates:

curl -s https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws/api/interest-rates

### 2. Check Credit Score

Check your creditworthiness (replace {agent_id} with your wallet address):

curl -s https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws/api/creditworthiness/{agent_id}

### 3. Request a Loan

Request USDC financing (minimum 5 USDC). Replace {agent_id} with your wallet address:

curl -s -X POST -H "Content-Type: application/json" -d '{"agent_id": "{agent_id}", "amount": 5}' https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws/api/loans

The bank evaluates risk with AI and, if approved, sends USDC directly to your wallet on Base Sepolia.

### 4. Check Wallet Balance

Verify that the loan was received:

~/.openclaw/skills/payment/scripts/get-address

### 5. Repay a Loan (3 steps — do all 3 in order)

Step 1: Check how much you owe

curl -s https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws/api/repay-info/{agent_id}

Save the request_id, repayment_amount, and pay_to from the response.

Step 2: Send USDC payment on-chain

~/.openclaw/skills/payment/scripts/pay --to <pay_to> --amount <repayment_amount>

Use the pay_to and repayment_amount values from Step 1. Save the transaction hash from the output.

Step 3: Confirm repayment with the bank

WARNING: The URL is /api/repay — do NOT change it to /api/loans/repay or any other URL.

curl -s -X POST -H "Content-Type: application/json" -d '{"request_id": "<request_id>", "tx_hash": "<tx_hash>"}' https://7mavs5vu7ggbhtxvbavdgs26qa0cbawg.lambda-url.us-east-1.on.aws/api/repay

Use the request_id from Step 1 and the tx_hash from Step 2.

### Full Workflow Example

1. Get your wallet address         → get-address
2. Check interest rates            → curl /api/interest-rates
3. Check your credit score         → curl /api/creditworthiness/{wallet}
4. Request a loan                  → curl POST /api/loans
5. Verify loan received            → get-address (check balance)
6. Check repayment info            → curl /api/repay-info/{wallet}
7. Send USDC to bank               → pay --to {pay_to} --amount {amount}
8. Confirm repayment               → curl POST /api/repay

### Important Notes

Network: Base Sepolia (testnet) — all transactions use test USDC.
Minimum loan: 5 USDC.
Currency: USDC (6 decimals) on Base Sepolia.
Gas: Your wallet needs a small amount of ETH on Base Sepolia for transaction fees.
One active loan at a time. Repay before requesting a new loan.
All transactions are verifiable on BaseScan Sepolia.

### Verification

Official Website: rsoft-agentic-bank.com
Publisher: RSoft Latam
Protocol: REST API via curl + payment skill for on-chain transfers
Network: Base Sepolia (Coinbase L2)

Developed by RSoft Latam — Empowering the Agentic Economy.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: rsoft-latam
- Version: 1.7.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-05-07T17:22:31.273Z
- Expires at: 2026-05-14T17:22:31.273Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rsoft-agentic-bank)
- [Send to Agent page](https://openagent3.xyz/skills/rsoft-agentic-bank/agent)
- [JSON manifest](https://openagent3.xyz/skills/rsoft-agentic-bank/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rsoft-agentic-bank/agent.md)
- [Download page](https://openagent3.xyz/downloads/rsoft-agentic-bank)