بنقرة واحدة
market-snapshot
Fetch a token market snapshot (price/liquidity/volume) and return stable JSON (backed by Jupiter).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Fetch a token market snapshot (price/liquidity/volume) and return stable JSON (backed by Jupiter).
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Audit an agent skill with Semia inside OpenClaw. Use when the user asks to run `semia scan <path>`, "Run Semia audit on this skill", or audit a skill/plugin for behavior risk.
Audit an agent skill with Semia inside Claude Code. Use when the user asks to run `semia scan <path>`, "Run Semia audit on this skill", or audit a skill/plugin for behavior risk.
Audit an agent skill with Semia inside Codex. Use when the user asks to run `semia scan <path>`, "Run Semia audit on this skill", or audit a skill/plugin for behavior risk.
Automatically logs into email accounts (Gmail, Outlook, QQ Mail, etc.) and generates daily email summaries. Use when the user wants to get a summary of their emails, check important messages, or create daily email digests.
Audit an agent skill with Semia Skill Behavior Mapping. Use when the user asks to run `semia scan <path>`, "Run Semia audit on this skill", audit a skill package, or review a skill/integration for capability, data-flow, secret, installer, network, filesystem, or policy risk.
Uses Fennec SEO Auditor results to audit a URL. Invoke when user wants a quick on‑page/technical SEO health check or to verify favicon/meta/schema and GEO readiness.
| name | market-snapshot |
| description | Fetch a token market snapshot (price/liquidity/volume) and return stable JSON (backed by Jupiter). |
| homepage | https://app.vecstack.com |
This skill is designed for OpenClaw/ClawHub bots that need a fast, low-friction market snapshot.
/skills/market-snapshot) with one or more token queries.When the user asks for prices, market snapshots, token metadata, or "what is X doing", run a snapshot.
Input formats supported:
SOL, USDC, JUPsolana, jupiterSo11111111111111111111111111111111111111112If multiple tokens are provided, resolve all of them and return a combined snapshot.
https://app.vecstack.com/api/skills/market-snapshot?q=<CSV_TOKENS>&source=openclawExamples (copy/paste):
https://app.vecstack.com/api/skills/market-snapshot?q=SOL&source=openclawhttps://app.vecstack.com/api/skills/market-snapshot?q=SOL,USDC,JUP&source=openclawNotes:
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.null fields and include an entry in warnings/errors.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).web_fetch tool for the endpoint, using extractMode=text so the body stays parseable as JSON.web_fetch returns non-JSON content, retry once with a cache-buster (append &_t=<unix>).