# Send Zapper 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": "zapper",
    "name": "Zapper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/spirosrap/zapper",
    "canonicalUrl": "https://clawhub.ai/spirosrap/zapper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zapper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zapper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md",
      "scripts/zapper.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "zapper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-11T12:17:57.477Z",
      "expiresAt": "2026-05-18T12:17:57.477Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zapper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zapper",
        "contentDisposition": "attachment; filename=\"zapper-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "zapper"
      },
      "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/zapper"
    },
    "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/zapper",
    "downloadUrl": "https://openagent3.xyz/downloads/zapper",
    "agentUrl": "https://openagent3.xyz/skills/zapper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zapper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zapper/agent.md"
  }
}
```
## Documentation

### Zapper Skill

Query DeFi portfolio data across 50+ chains via Zapper's GraphQL API.

### Setup

Get your API key from Zapper Dashboard (free tier available):

mkdir -p ~/.clawdbot/skills/zapper
cat > ~/.clawdbot/skills/zapper/config.json << 'EOF'
{
  "apiKey": "YOUR_ZAPPER_API_KEY"
}
EOF

### Basic Usage

# Portfolio summary
scripts/zapper.sh portfolio 0x...

# Token holdings
scripts/zapper.sh tokens 0x...

# DeFi positions
scripts/zapper.sh apps 0x...

# NFT holdings
scripts/zapper.sh nfts 0x...

# Token price
scripts/zapper.sh price ETH

# Recent transactions
scripts/zapper.sh tx 0x...

# Unclaimed rewards
scripts/zapper.sh claimables 0x...

### Commands

CommandDescriptionExampleportfolio <address>Token balances + totals across all chainszapper.sh portfolio 0x123...tokens <address>Detailed token holdingszapper.sh tokens 0x123...apps <address>DeFi positions (LPs, lending, staking)zapper.sh apps 0x123...nfts <address>NFT holdingszapper.sh nfts 0x123...price <symbol>Token price lookupzapper.sh price ETHtx <address>Recent transactions (human-readable)zapper.sh tx 0x123...claimables <address>Unclaimed rewardszapper.sh claimables 0x123...

### Supported Networks

Zapper supports 50+ chains including:

Ethereum
Base
Polygon
Arbitrum
Optimism
Avalanche
BNB Chain
zkSync
Linea
Scroll
And more...

### Use Cases

Portfolio tracking: Aggregate all DeFi positions across chains
Yield hunting: Check claimables and unclaimed rewards
NFT portfolio: Track NFT holdings across marketplaces
Transaction history: Human-readable on-chain activity
Token prices: Quick price lookups

### API Reference

All endpoints use POST https://public.zapper.xyz/graphql with GraphQL queries.

See references/api.md for full API documentation.

### Requirements

curl - HTTP requests
jq - JSON parsing
python3 - Formatting output
Zapper API key (free tier available)

### Notes

API key is required for all endpoints
Rate limits apply based on your Zapper plan
GraphQL queries allow flexible data selection
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: spirosrap
- 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-05-11T12:17:57.477Z
- Expires at: 2026-05-18T12:17:57.477Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zapper)
- [Send to Agent page](https://openagent3.xyz/skills/zapper/agent)
- [JSON manifest](https://openagent3.xyz/skills/zapper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zapper/agent.md)
- [Download page](https://openagent3.xyz/downloads/zapper)