# Send Silverback Defi 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": "silverback-defi",
    "name": "Silverback Defi",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/RidingLiquid/silverback-defi",
    "canonicalUrl": "https://clawhub.ai/RidingLiquid/silverback-defi",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/silverback-defi",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=silverback-defi",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "silverback-defi",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T08:44:25.543Z",
      "expiresAt": "2026-05-08T08:44:25.543Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=silverback-defi",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=silverback-defi",
        "contentDisposition": "attachment; filename=\"silverback-defi-2.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "silverback-defi"
      },
      "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/silverback-defi"
    },
    "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/silverback-defi",
    "downloadUrl": "https://openagent3.xyz/downloads/silverback-defi",
    "agentUrl": "https://openagent3.xyz/skills/silverback-defi/agent",
    "manifestUrl": "https://openagent3.xyz/skills/silverback-defi/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/silverback-defi/agent.md"
  }
}
```
## Documentation

### Silverback DeFi Intelligence

19 x402-paid DeFi endpoints on Base chain. Pay per call with USDC — no API keys, no subscriptions. All endpoints use the x402 micropayment protocol.

Base URL: https://x402.silverbackdefi.app

### Chat ($0.05)

AI chat with all 19 intelligence tools. Ask any DeFi question.

curl -s -X POST https://x402.silverbackdefi.app/api/v1/chat \\
  -H "Content-Type: application/json" \\
  -d '{"message": "What are the top coins right now?"}'

### Market Data ($0.001 each)

# Top coins by market cap
curl -s -X POST https://x402.silverbackdefi.app/api/v1/top-coins \\
  -H "Content-Type: application/json" -d '{}'

# Top liquidity pools on Base
curl -s -X POST https://x402.silverbackdefi.app/api/v1/top-pools \\
  -H "Content-Type: application/json" -d '{}'

# Top DeFi protocols by TVL
curl -s -X POST https://x402.silverbackdefi.app/api/v1/top-protocols \\
  -H "Content-Type: application/json" -d '{}'

# Trending tokens
curl -s -X POST https://x402.silverbackdefi.app/api/v1/trending-tokens \\
  -H "Content-Type: application/json" -d '{}'

# Base gas prices
curl -s -X POST https://x402.silverbackdefi.app/api/v1/gas-price \\
  -H "Content-Type: application/json" -d '{}'

# Token details
curl -s -X POST https://x402.silverbackdefi.app/api/v1/token-metadata \\
  -H "Content-Type: application/json" -d '{"token": "ETH"}'

### Trading & Analysis

# Swap quote with routing ($0.002)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/swap-quote \\
  -H "Content-Type: application/json" \\
  -d '{"fromToken": "ETH", "toToken": "USDC", "amount": "1"}'

# Technical analysis — RSI, MACD, Bollinger ($0.02)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/technical-analysis \\
  -H "Content-Type: application/json" \\
  -d '{"token": "ETH"}'

# Backtest a strategy ($0.10)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/backtest \\
  -H "Content-Type: application/json" \\
  -d '{"token": "ETH", "strategy": "rsi", "days": 30}'

# Token correlation matrix ($0.005)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/correlation-matrix \\
  -H "Content-Type: application/json" \\
  -d '{"tokens": ["ETH", "BTC", "VIRTUAL"]}'

### Yield & DeFi

# Yield opportunities ($0.02)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/defi-yield \\
  -H "Content-Type: application/json" \\
  -d '{"token": "USDC"}'

# Pool health analysis ($0.005)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/pool-analysis \\
  -H "Content-Type: application/json" \\
  -d '{"pool": "ETH/USDC"}'

### Security & Intelligence

# Token contract audit ($0.01)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/token-audit \\
  -H "Content-Type: application/json" \\
  -d '{"token": "0x558881c4959e9cf961a7E1815FCD6586906babd2"}'

# Whale movement tracking ($0.01)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/whale-moves \\
  -H "Content-Type: application/json" \\
  -d '{"token": "VIRTUAL"}'

# Arbitrage scanner ($0.005)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/arbitrage-scanner \\
  -H "Content-Type: application/json" -d '{}'

# Agent reputation — ERC-8004 ($0.001)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/agent-reputation \\
  -H "Content-Type: application/json" \\
  -d '{"agentId": "13026"}'

# Discover agents by capability ($0.002)
curl -s -X POST https://x402.silverbackdefi.app/api/v1/agent-discover \\
  -H "Content-Type: application/json" \\
  -d '{"capability": "defi"}'

### Non-custodial Swap ($0.05)

Returns unsigned EIP-712 Permit2 data for client-side signing.

curl -s -X POST https://x402.silverbackdefi.app/api/v1/swap \\
  -H "Content-Type: application/json" \\
  -d '{"fromToken": "USDC", "toToken": "ETH", "amount": "10", "walletAddress": "0xYOUR_WALLET"}'

### Payment (x402 Protocol)

All endpoints return HTTP 402 with a USDC payment requirement. Your agent handles payment using @x402/fetch or any x402-compatible client with its own wallet.

Prices range from $0.001 to $0.10 per call. The exact amount is specified in the 402 response.

### Free Endpoints

# Health check
curl -s https://x402.silverbackdefi.app/api/v1/health

# Pricing info
curl -s https://x402.silverbackdefi.app/api/v1/pricing

# Endpoint list
curl -s https://x402.silverbackdefi.app/api/v1/endpoints

### MCP Server

For Claude Desktop, Cursor, or Claude Code:

npm install -g silverback-x402-mcp

https://www.npmjs.com/package/silverback-x402-mcp

### Links

Website: https://silverbackdefi.app
x402 Docs: https://silverbackdefi.app/x402
API: https://x402.silverbackdefi.app
Source: https://github.com/RidingLiquid/silverback-skill
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: RidingLiquid
- Version: 2.2.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-05-01T08:44:25.543Z
- Expires at: 2026-05-08T08:44:25.543Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/silverback-defi)
- [Send to Agent page](https://openagent3.xyz/skills/silverback-defi/agent)
- [JSON manifest](https://openagent3.xyz/skills/silverback-defi/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/silverback-defi/agent.md)
- [Download page](https://openagent3.xyz/downloads/silverback-defi)