# Send Crypto Price 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": "crypto-price",
    "name": "Crypto Price",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/evgyur/crypto-price",
    "canonicalUrl": "https://clawhub.ai/evgyur/crypto-price",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/crypto-price",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-price",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "ARCHITECTURE.md",
      "README.md",
      "SKILL.md",
      "requirements.txt",
      "scripts/get_price_chart.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "crypto-price",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T06:01:14.285Z",
      "expiresAt": "2026-05-09T06:01:14.285Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-price",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-price",
        "contentDisposition": "attachment; filename=\"crypto-price-0.2.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "crypto-price"
      },
      "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/crypto-price"
    },
    "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/crypto-price",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-price",
    "agentUrl": "https://openagent3.xyz/skills/crypto-price/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-price/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-price/agent.md"
  }
}
```
## Documentation

### Crypto Price & Chart

Get cryptocurrency token price and generate candlestick charts.

### Usage

Execute the script with token symbol and optional duration:

python3 {baseDir}/scripts/get_price_chart.py <SYMBOL> [duration]

Examples:

python3 {baseDir}/scripts/get_price_chart.py HYPE
python3 {baseDir}/scripts/get_price_chart.py HYPE 12h
python3 {baseDir}/scripts/get_price_chart.py BTC 3h
python3 {baseDir}/scripts/get_price_chart.py ETH 30m
python3 {baseDir}/scripts/get_price_chart.py SOL 2d

Duration format: 30m, 3h, 12h, 24h (default), 2d

### Output

Returns JSON with:

price - Current price in USD/USDT
change_period_percent - Price change percentage for the period
chart_path - Path to generated PNG chart (if available)
text_plain - Formatted text description

Chart as image (always when chart_path is present):
You must send the chart as a photo, not as text. In your reply, output text_plain and on a new line: MEDIA:  followed by the exact chart_path value (e.g. MEDIA: /tmp/crypto_chart_HYPE_1769204734.png). Clawdbot will attach that file as an image. Do not write [chart: path] or any other text placeholder — only the MEDIA: <chart_path> line makes the image appear.

### Chart Details

Format: Candlestick chart (8x8 square)
Theme: Dark (#0f141c background)
Output: /tmp/crypto_chart_{SYMBOL}_{timestamp}.png

### Data Sources

Hyperliquid API - For HYPE and other Hyperliquid tokens (preferred)
CoinGecko API - Fallback for other tokens

Price data cached for 300 seconds (5 minutes) in /tmp/crypto_price_*.json.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: evgyur
- Version: 0.2.2
## 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-02T06:01:14.285Z
- Expires at: 2026-05-09T06:01:14.285Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/crypto-price)
- [Send to Agent page](https://openagent3.xyz/skills/crypto-price/agent)
- [JSON manifest](https://openagent3.xyz/skills/crypto-price/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/crypto-price/agent.md)
- [Download page](https://openagent3.xyz/downloads/crypto-price)