# Send Synth Data 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": "synth-data",
    "name": "Synth Data",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/emsin44/synth-data",
    "canonicalUrl": "https://clawhub.ai/emsin44/synth-data",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/synth-data",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synth-data",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawhub.json",
      "examples/use-cases.md",
      "references/api.md",
      "scripts/synth.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "synth-data",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T07:54:39.310Z",
      "expiresAt": "2026-05-07T07:54:39.310Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synth-data",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=synth-data",
        "contentDisposition": "attachment; filename=\"synth-data-1.1.5.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "synth-data"
      },
      "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/synth-data"
    },
    "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/synth-data",
    "downloadUrl": "https://openagent3.xyz/downloads/synth-data",
    "agentUrl": "https://openagent3.xyz/skills/synth-data/agent",
    "manifestUrl": "https://openagent3.xyz/skills/synth-data/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/synth-data/agent.md"
  }
}
```
## Documentation

### Synthdata Volatility Skill

Query and analyze volatility forecasts from Synthdata.co for crypto, commodities, and stock indices.

### Setup

Set your API key:

export SYNTHDATA_API_KEY=your_key_here

### Quick Start

# Single asset
python3 scripts/synth.py BTC

# Multiple assets comparison
python3 scripts/synth.py BTC ETH SOL --compare

# All assets overview
python3 scripts/synth.py --all

# Monte Carlo simulation (24h max)
python3 scripts/synth.py BTC --simulate --hours 12

### Available Assets

TickerNameCategoryBTCBitcoinCryptoETHEthereumCryptoSOLSolanaCryptoXAUGoldCommoditySPYXS&P 500IndexNVDAXNVIDIAStockGOOGLXGoogleStockTSLAXTeslaStockAAPLXAppleStock

### Output Example

==================================================
  BTC — Bitcoin
==================================================
  Price:           $77,966
  24h Change:      🔴 -0.95%
  Current Vol:     58.4% 🟠 [Elevated]
  Avg Realized:    53.3%
  Forecast Vol:    52.2%

### Volatility Levels

LevelRangeEmojiLow< 20%🟢Moderate20-40%🟡Elevated40-60%🟠High60-80%🔴Extreme> 80%🔴

### 1. Market Overview

python3 scripts/synth.py --all

Get a ranked table of all assets by volatility.

### 2. Trading Signals

High forecast → Current low: Expect volatility spike
Low forecast → Current high: Volatility may decrease
Use for position sizing and options trading

### 3. Monte Carlo Projections

python3 scripts/synth.py BTC --simulate --hours 24 --paths 1000

Generate probabilistic price ranges using forecast volatility (24h max - Synthdata forecast window).

### 4. Scheduled Reports

Create a cron job for daily Slack/Telegram forecasts (see examples/use-cases.md).

### 5. Risk Alerts

Monitor for assets crossing volatility thresholds and trigger notifications.

### API Reference

See references/api.md for full API documentation.

### Direct API Usage

import requests

resp = requests.get(
    "https://api.synthdata.co/insights/volatility",
    params={"asset": "BTC"},
    headers={"Authorization": f"Apikey {API_KEY}"}
)
data = resp.json()

# Key fields:
price = data["current_price"]
realized_vol = data["realized"]["average_volatility"]
forecast_vol = data["forecast_future"]["average_volatility"]

### Integration Ideas

Polymarket: Use volatility forecasts to inform up/down market bets
Options: High forecast vol = consider buying options
Portfolio: Rebalance when aggregate volatility spikes
Alerts: Notify when forecast differs significantly from realized
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: emsin44
- Version: 1.1.5
## 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-04-30T07:54:39.310Z
- Expires at: 2026-05-07T07:54:39.310Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/synth-data)
- [Send to Agent page](https://openagent3.xyz/skills/synth-data/agent)
- [JSON manifest](https://openagent3.xyz/skills/synth-data/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/synth-data/agent.md)
- [Download page](https://openagent3.xyz/downloads/synth-data)