# Send Unclaimed SOL Scanner 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "unclaimed-sol-scanner",
    "name": "Unclaimed SOL Scanner",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/nedim1511/unclaimed-sol-scanner",
    "canonicalUrl": "https://clawhub.ai/nedim1511/unclaimed-sol-scanner",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/unclaimed-sol-scanner",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=unclaimed-sol-scanner",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "scripts/scan.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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/unclaimed-sol-scanner"
    },
    "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/unclaimed-sol-scanner",
    "downloadUrl": "https://openagent3.xyz/downloads/unclaimed-sol-scanner",
    "agentUrl": "https://openagent3.xyz/skills/unclaimed-sol-scanner/agent",
    "manifestUrl": "https://openagent3.xyz/skills/unclaimed-sol-scanner/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/unclaimed-sol-scanner/agent.md"
  }
}
```
## Documentation

### Unclaimed SOL Scanner

Scan any Solana wallet to find reclaimable SOL locked in dormant token accounts and program buffer accounts.

### Privacy & Data Disclosure

This skill sends the user's Solana public key (wallet address) to the Unclaimed SOL API (https://unclaimedsol.com/api/check-claimable-sol) via an HTTPS POST request. No other data is transmitted. No private keys, seed phrases, or signing capabilities are involved.

Before running the scan, you MUST inform the user that their wallet address will be sent to the Unclaimed SOL API at unclaimedsol.com, and obtain their confirmation before proceeding.

Example disclosure:

To scan your wallet, I'll send your public address to the Unclaimed SOL API at unclaimedsol.com. No private keys are involved — only your public address. Want me to proceed?

### How to use

Get the Solana wallet address from the user (base58 public key, 32-44 characters, e.g. 7xKXq1...)
Disclose the API call and get user confirmation (see above).
Run the scan script:

bash {baseDir}/scripts/scan.sh <wallet_address>

Parse the JSON response and format for the user.

### Reading the response

The script returns JSON:

{
  "totalClaimableSol": 4.728391,
  "assets": 3.921482,
  "buffers": 0.806909,
  "tokenCount": 183,
  "bufferCount": 3
}

totalClaimableSol — total SOL reclaimable (sum of assets + buffers)
assets — SOL from dormant token accounts (empty ATAs, dead memecoins, dust)
buffers — SOL from program buffer accounts
tokenCount — number of token accounts to close (may be 0 if backend hasn't added this yet)
bufferCount — number of buffer accounts to close (may be 0 if backend hasn't added this yet)

If tokenCount and bufferCount are both 0 or missing, do NOT report account counts — just report the SOL totals.

### Formatting the response

Show the exact SOL value returned by the API. Do not round to 2 decimal places — show full precision (e.g. 4.728391, not 4.73).

If totalClaimableSol > 0:

Report the total, then break down by type if both are non-zero:

Your wallet has 4.728391 SOL reclaimable.

3.921482 SOL from 183 token accounts
0.806909 SOL from 3 buffer accounts

You can claim at: https://unclaimedsol.com

If only one type has value, skip the breakdown — just show the total.

If totalClaimableSol is 0:

This wallet has no reclaimable SOL. All accounts are active or already optimized.

If the script returns an error:

Unable to scan this wallet right now. You can try directly at https://unclaimedsol.com — connect your wallet there to see your reclaimable SOL.

Do NOT tell the user to "paste" or "enter" the address into a search box. The website uses wallet connection, not a search box.

### Rules

This is read-only. No transactions are executed. No keys are needed.
Never ask the user for their seed phrase, private key, or mnemonic.
Only accept Solana public keys (base58, 32-44 characters).
If the input doesn't look like a valid Solana address, ask the user to double-check it.
Always disclose the external API call and get user consent before scanning.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nedim1511
- Version: 1.0.1
## 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-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/unclaimed-sol-scanner)
- [Send to Agent page](https://openagent3.xyz/skills/unclaimed-sol-scanner/agent)
- [JSON manifest](https://openagent3.xyz/skills/unclaimed-sol-scanner/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/unclaimed-sol-scanner/agent.md)
- [Download page](https://openagent3.xyz/downloads/unclaimed-sol-scanner)