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

### Spacescan Skill

Explore the Chia blockchain via Spacescan.io API.

### What It Does

View blocks and transactions
Check address balances
Monitor network statistics
Search blockchain data
Track CAT tokens and NFTs
Get XCH price

### ⚠️ API Key Required

Spacescan requires an API key. Get yours at: https://www.spacescan.io/apis

Set the environment variable:

export SPACESCAN_API_KEY=your_key_here

Or add to your shell profile (~/.zshrc or ~/.bashrc):

echo 'export SPACESCAN_API_KEY=your_key_here' >> ~/.zshrc
source ~/.zshrc

### Commands

All commands can be triggered via:

/scan <command> in Telegram
/spacescan <command> in Telegram
scan <command> in CLI
spacescan <command> in CLI

### Blocks

/scan block latest          Get latest block
/scan block <height>        Get block by height
/scan block <hash>          Get block by hash
/scan blocks <start> <end>  Get block range

### Transactions

/scan tx <id>               Get transaction details

### Addresses

/scan address <addr>        Get address info
/scan address balance <a>   Get address balance
/scan address txs <addr>    Get recent transactions

### Coins

/scan coin <id>             Get coin details

### Network

/scan stats                 Network statistics
/scan network               Network info
/scan space                 Network space (EiB)
/scan mempool               Mempool status
/scan price                 XCH price

### Tokens

/scan cats                  List CAT tokens
/scan cat <id>              Get CAT details

### NFTs

/scan nft <id>              Get NFT details

### Search

/scan search <query>        Search blockchain
/scan <long_hash>           Quick search

### Agent Usage

const { handleCommand } = require('./skills/spacescan');

// Requires SPACESCAN_API_KEY environment variable
const output = await handleCommand('block latest');

### API Client

const SpacescanAPI = require('./skills/spacescan/lib/api');
const api = new SpacescanAPI('your-api-key');

// Get latest block
const block = await api.getLatestBlock();

// Get address balance
const balance = await api.getAddressBalance('xch1...');

// Get network stats
const stats = await api.getNetworkStats();

// Search
const result = await api.search('xch1...');

### Installation

cd skills/spacescan
npm install
chmod +x cli.js
npm link  # Makes 'scan' and 'spacescan' global

### Configuration

Required: Set your API key

export SPACESCAN_API_KEY=your_key_here

Get your key at: https://www.spacescan.io/apis

Free tier available with rate limits.

### Examples

Check latest block:

/scan block latest

Get address balance:

/scan address balance xch1...

Network stats:

/scan stats

XCH price:

/scan price

### Support

Spacescan: https://www.spacescan.io
API Plans: https://www.spacescan.io/apis
Bug reports: File in skill repository
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Koba42Corp
- 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-09T07:51:23.708Z
- Expires at: 2026-05-16T07:51:23.708Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/spacescan)
- [Send to Agent page](https://openagent3.xyz/skills/spacescan/agent)
- [JSON manifest](https://openagent3.xyz/skills/spacescan/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/spacescan/agent.md)
- [Download page](https://openagent3.xyz/downloads/spacescan)