{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/aaveclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=aaveclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "scripts/borrow.sh",
      "scripts/deposit.sh",
      "scripts/entries/borrow.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/aaveclaw",
    "agentPageUrl": "https://openagent3.xyz/skills/aaveclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/aaveclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/aaveclaw/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "aaveclaw - Aave V3 Lending on Base Sepolia",
        "body": "Interact with Aave V3 lending protocol on Base Sepolia testnet. Manages the full lending lifecycle using the wallet from ~/.x402-config.json."
      },
      {
        "title": "Setup",
        "body": "Run setup.sh on first use to install dependencies (ethers v6):\n\nbash scripts/setup.sh"
      },
      {
        "title": "Check Health Factor",
        "body": "Check the current lending position. Safe to run anytime, read-only.\n\nbash scripts/health.sh [address]\n\nIf no address is provided, uses the configured wallet address."
      },
      {
        "title": "Mint Test Tokens (Faucet)",
        "body": "Get testnet WETH or USDC from the Aave faucet. Run this first if the wallet has no tokens.\n\nbash scripts/faucet.sh weth 1       # Mint 1 WETH\nbash scripts/faucet.sh usdc 1000    # Mint 1000 USDC"
      },
      {
        "title": "Deposit Collateral",
        "body": "Deposit WETH as collateral into Aave. Auto-wraps native ETH to WETH if needed.\n\nbash scripts/deposit.sh 0.5         # Deposit 0.5 WETH"
      },
      {
        "title": "Borrow USDC",
        "body": "Borrow USDC against deposited collateral. Uses variable interest rate.\n\nbash scripts/borrow.sh 100          # Borrow 100 USDC"
      },
      {
        "title": "Repay Debt",
        "body": "Repay borrowed USDC. Use \"max\" to repay entire debt.\n\nbash scripts/repay.sh 50            # Repay 50 USDC\nbash scripts/repay.sh max           # Repay all debt"
      },
      {
        "title": "Withdraw Collateral",
        "body": "Withdraw WETH collateral. Use \"max\" to withdraw everything (only if no debt).\n\nbash scripts/withdraw.sh 0.5        # Withdraw 0.5 WETH\nbash scripts/withdraw.sh max        # Withdraw all"
      },
      {
        "title": "Usage Guidelines",
        "body": "Always run health.sh first to see the current position before making changes.\nAsk the user for amounts before executing deposit, borrow, repay, or withdraw.\nAlways show the health factor after any state-changing operation (the scripts do this automatically).\nWarn when health factor drops below 1.5 - the position is at risk of liquidation.\nGuide new users to the faucet to get test tokens before depositing.\nTypical flow: faucet (get tokens) -> deposit (add collateral) -> borrow (take loan) -> repay (pay back) -> withdraw (retrieve collateral)."
      },
      {
        "title": "Network Details",
        "body": "Network: Base Sepolia (chain ID 84532)\nExplorer: https://sepolia.basescan.org\nRPC: https://sepolia.base.org\nTokens: WETH (18 decimals), USDC (6 decimals)"
      },
      {
        "title": "Error Handling",
        "body": "If private key is missing: direct user to create ~/.x402-config.json with {\"private_key\": \"0x...\"}\nIf insufficient balance: the scripts report exact balances and what is needed\nIf health factor would drop too low after borrow: Aave reverts the transaction automatically\nIf faucet fails: the faucet contract may have minting limits or may not be available"
      }
    ],
    "body": "aaveclaw - Aave V3 Lending on Base Sepolia\n\nInteract with Aave V3 lending protocol on Base Sepolia testnet. Manages the full lending lifecycle using the wallet from ~/.x402-config.json.\n\nSetup\n\nRun setup.sh on first use to install dependencies (ethers v6):\n\nbash scripts/setup.sh\n\nCommands\nCheck Health Factor\n\nCheck the current lending position. Safe to run anytime, read-only.\n\nbash scripts/health.sh [address]\n\n\nIf no address is provided, uses the configured wallet address.\n\nMint Test Tokens (Faucet)\n\nGet testnet WETH or USDC from the Aave faucet. Run this first if the wallet has no tokens.\n\nbash scripts/faucet.sh weth 1       # Mint 1 WETH\nbash scripts/faucet.sh usdc 1000    # Mint 1000 USDC\n\nDeposit Collateral\n\nDeposit WETH as collateral into Aave. Auto-wraps native ETH to WETH if needed.\n\nbash scripts/deposit.sh 0.5         # Deposit 0.5 WETH\n\nBorrow USDC\n\nBorrow USDC against deposited collateral. Uses variable interest rate.\n\nbash scripts/borrow.sh 100          # Borrow 100 USDC\n\nRepay Debt\n\nRepay borrowed USDC. Use \"max\" to repay entire debt.\n\nbash scripts/repay.sh 50            # Repay 50 USDC\nbash scripts/repay.sh max           # Repay all debt\n\nWithdraw Collateral\n\nWithdraw WETH collateral. Use \"max\" to withdraw everything (only if no debt).\n\nbash scripts/withdraw.sh 0.5        # Withdraw 0.5 WETH\nbash scripts/withdraw.sh max        # Withdraw all\n\nUsage Guidelines\nAlways run health.sh first to see the current position before making changes.\nAsk the user for amounts before executing deposit, borrow, repay, or withdraw.\nAlways show the health factor after any state-changing operation (the scripts do this automatically).\nWarn when health factor drops below 1.5 - the position is at risk of liquidation.\nGuide new users to the faucet to get test tokens before depositing.\nTypical flow: faucet (get tokens) -> deposit (add collateral) -> borrow (take loan) -> repay (pay back) -> withdraw (retrieve collateral).\nNetwork Details\nNetwork: Base Sepolia (chain ID 84532)\nExplorer: https://sepolia.basescan.org\nRPC: https://sepolia.base.org\nTokens: WETH (18 decimals), USDC (6 decimals)\nError Handling\nIf private key is missing: direct user to create ~/.x402-config.json with {\"private_key\": \"0x...\"}\nIf insufficient balance: the scripts report exact balances and what is needed\nIf health factor would drop too low after borrow: Aave reverts the transaction automatically\nIf faucet fails: the faucet contract may have minting limits or may not be available"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/chainyoda/aaveclaw",
    "publisherUrl": "https://clawhub.ai/chainyoda/aaveclaw",
    "owner": "chainyoda",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}