# Send aaveclaw 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": "aaveclaw",
    "name": "aaveclaw",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/chainyoda/aaveclaw",
    "canonicalUrl": "https://clawhub.ai/chainyoda/aaveclaw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/aaveclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aaveclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "scripts/borrow.sh",
      "scripts/deposit.sh",
      "scripts/entries/borrow.js"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "aaveclaw",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T13:47:02.692Z",
      "expiresAt": "2026-05-07T13:47:02.692Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aaveclaw",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aaveclaw",
        "contentDisposition": "attachment; filename=\"aaveclaw-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "aaveclaw"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/aaveclaw"
    },
    "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/aaveclaw",
    "downloadUrl": "https://openagent3.xyz/downloads/aaveclaw",
    "agentUrl": "https://openagent3.xyz/skills/aaveclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aaveclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aaveclaw/agent.md"
  }
}
```
## Documentation

### aaveclaw - Aave V3 Lending on Base Sepolia

Interact with Aave V3 lending protocol on Base Sepolia testnet. Manages the full lending lifecycle using the wallet from ~/.x402-config.json.

### Setup

Run setup.sh on first use to install dependencies (ethers v6):

bash scripts/setup.sh

### Check Health Factor

Check the current lending position. Safe to run anytime, read-only.

bash scripts/health.sh [address]

If no address is provided, uses the configured wallet address.

### Mint Test Tokens (Faucet)

Get testnet WETH or USDC from the Aave faucet. Run this first if the wallet has no tokens.

bash scripts/faucet.sh weth 1       # Mint 1 WETH
bash scripts/faucet.sh usdc 1000    # Mint 1000 USDC

### Deposit Collateral

Deposit WETH as collateral into Aave. Auto-wraps native ETH to WETH if needed.

bash scripts/deposit.sh 0.5         # Deposit 0.5 WETH

### Borrow USDC

Borrow USDC against deposited collateral. Uses variable interest rate.

bash scripts/borrow.sh 100          # Borrow 100 USDC

### Repay Debt

Repay borrowed USDC. Use "max" to repay entire debt.

bash scripts/repay.sh 50            # Repay 50 USDC
bash scripts/repay.sh max           # Repay all debt

### Withdraw Collateral

Withdraw WETH collateral. Use "max" to withdraw everything (only if no debt).

bash scripts/withdraw.sh 0.5        # Withdraw 0.5 WETH
bash scripts/withdraw.sh max        # Withdraw all

### Usage Guidelines

Always run health.sh first to see the current position before making changes.
Ask the user for amounts before executing deposit, borrow, repay, or withdraw.
Always show the health factor after any state-changing operation (the scripts do this automatically).
Warn when health factor drops below 1.5 - the position is at risk of liquidation.
Guide new users to the faucet to get test tokens before depositing.
Typical flow: faucet (get tokens) -> deposit (add collateral) -> borrow (take loan) -> repay (pay back) -> withdraw (retrieve collateral).

### Network Details

Network: Base Sepolia (chain ID 84532)
Explorer: https://sepolia.basescan.org
RPC: https://sepolia.base.org
Tokens: WETH (18 decimals), USDC (6 decimals)

### Error Handling

If private key is missing: direct user to create ~/.x402-config.json with {"private_key": "0x..."}
If insufficient balance: the scripts report exact balances and what is needed
If health factor would drop too low after borrow: Aave reverts the transaction automatically
If faucet fails: the faucet contract may have minting limits or may not be available
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chainyoda
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T13:47:02.692Z
- Expires at: 2026-05-07T13:47:02.692Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aaveclaw)
- [Send to Agent page](https://openagent3.xyz/skills/aaveclaw/agent)
- [JSON manifest](https://openagent3.xyz/skills/aaveclaw/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aaveclaw/agent.md)
- [Download page](https://openagent3.xyz/downloads/aaveclaw)