# Send Market Snapshot 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": "market-snapshot",
    "name": "Market Snapshot",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/nicholasoxford/market-snapshot",
    "canonicalUrl": "https://clawhub.ai/nicholasoxford/market-snapshot",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/market-snapshot",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=market-snapshot",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "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/market-snapshot"
    },
    "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/market-snapshot",
    "downloadUrl": "https://openagent3.xyz/downloads/market-snapshot",
    "agentUrl": "https://openagent3.xyz/skills/market-snapshot/agent",
    "manifestUrl": "https://openagent3.xyz/skills/market-snapshot/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/market-snapshot/agent.md"
  }
}
```
## Documentation

### Market Snapshot (Skill-Only, OpenClaw)

This skill is designed for OpenClaw/ClawHub bots that need a fast, low-friction market snapshot.

### What This Skill Does

Calls a hosted market snapshot endpoint (/skills/market-snapshot) with one or more token queries.
The API resolves tokens + fetches pricing/metadata server-side (backed by Jupiter Tokens V2 + Price V3).
Emits a stable JSON object (no prose) so other agents/bots can parse it reliably.

### What This Skill Will Not Do

It will not create or manage wallets.
It will not request, store, or handle private keys / seed phrases.
It will not execute swaps or provide "trade recommendations".

### How To Use

When the user asks for prices, market snapshots, token metadata, or "what is X doing", run a snapshot.

Input formats supported:

Symbols: SOL, USDC, JUP
Names: solana, jupiter
Mints: So11111111111111111111111111111111111111112

If multiple tokens are provided, resolve all of them and return a combined snapshot.

### Data Sources (GET, No Headers Needed)

Market snapshot:

https://app.vecstack.com/api/skills/market-snapshot?q=<CSV_TOKENS>&source=openclaw

Examples (copy/paste):

Single token:

https://app.vecstack.com/api/skills/market-snapshot?q=SOL&source=openclaw


Multiple tokens (comma-separated, no spaces):

https://app.vecstack.com/api/skills/market-snapshot?q=SOL,USDC,JUP&source=openclaw

Notes:

web_fetch caches by URL. If the user explicitly needs "fresh right now" data, append a cache-buster query param like &_t=<unix> to the URL.
Do not invent values. If a fetch fails, keep null fields and include an entry in warnings/errors.

### Output Contract (Return JSON Only)

Return a single JSON object with this shape:

{
  "as_of_unix": 0,
  "provider": "jupiter",
  "inputs": ["SOL", "USDC"],
  "tokens": [
    {
      "query": "SOL",
      "mint": "So11111111111111111111111111111111111111112",
      "symbol": "SOL",
      "name": "Wrapped SOL",
      "decimals": 9,
      "verified": true,
      "tags": [],
      "liquidity_usd": null,
      "mcap_usd": null,
      "fdv_usd": null,
      "usd_price": null,
      "price_change_24h_pct": null,
      "stats": {
        "5m": {
          "price_change_pct": null,
          "volume_usd": null,
          "buy_volume_usd": null,
          "sell_volume_usd": null
        },
        "1h": {
          "price_change_pct": null,
          "volume_usd": null,
          "buy_volume_usd": null,
          "sell_volume_usd": null
        },
        "24h": {
          "price_change_pct": null,
          "volume_usd": null,
          "buy_volume_usd": null,
          "sell_volume_usd": null
        }
      },
      "sources": {
        "token_search_url": null,
        "price_url": null
      }
    }
  ],
  "warnings": [],
  "errors": []
}

Field rules:

as_of_unix: set to current Unix time when you finish assembling the response.
liquidity_usd, mcap_usd, fdv_usd, and stats.* are populated from Tokens V2 search when present.
usd_price and price_change_24h_pct are populated from Price V3 when present.
warnings: non-fatal issues (missing price, ambiguous match, rate limits, etc).
errors: fatal issues that prevented a snapshot (e.g., all sources failed).

### Implementation Notes For OpenClaw

Prefer the web_fetch tool for the endpoint, using extractMode=text so the body stays parseable as JSON.
If web_fetch returns non-JSON content, retry once with a cache-buster (append &_t=<unix>).
Keep the final response strictly JSON.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nicholasoxford
- Version: 1.0.0
## 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/market-snapshot)
- [Send to Agent page](https://openagent3.xyz/skills/market-snapshot/agent)
- [JSON manifest](https://openagent3.xyz/skills/market-snapshot/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/market-snapshot/agent.md)
- [Download page](https://openagent3.xyz/downloads/market-snapshot)