# Send mov-toa 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": "mov-toa",
    "name": "mov-toa",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/SkyboundYi/mov-toa",
    "canonicalUrl": "https://clawhub.ai/SkyboundYi/mov-toa",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mov-toa",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mov-toa",
    "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/mov-toa"
    },
    "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/mov-toa",
    "downloadUrl": "https://openagent3.xyz/downloads/mov-toa",
    "agentUrl": "https://openagent3.xyz/skills/mov-toa/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mov-toa/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mov-toa/agent.md"
  }
}
```
## Documentation

### ToA Crypto News Skill

Real-time crypto news API powered by Tree of Alpha WebSocket. Millisecond-level market updates with coin tagging and search.

Base URL: https://web-production-666f44.up.railway.app

### Endpoints

EndpointMethodDescription/healthGETHealth check/newsGETSimple news fetch/news_searchPOSTAdvanced search (6551-compatible)

### 1. Health Check

curl -s "https://web-production-666f44.up.railway.app/health"

Returns: {"status": "ok"}


2. Get Latest News (Simple)

curl -s "https://web-production-666f44.up.railway.app/news?limit=10"

| Parameter | Type    | Default | Description         |
| --------- | ------- | ------- | ------------------- |
| limit     | integer | 10      | Max results (1-100) |


3. Advanced Search (Recommended)

POST /news_search — 6551-compatible format with filtering and pagination.

Get Latest News

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"limit": 10, "page": 1}'

Search by Keyword

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"q": "bitcoin ETF", "limit": 10, "page": 1}'

Filter by Coin

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"coins": ["BTC", "ETH"], "limit": 10, "page": 1}'

Only News with Coins

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"hasCoin": true, "limit": 10, "page": 1}'

Search Parameters

| Parameter | Type     | Required | Description                                 |
| --------- | -------- | -------- | ------------------------------------------- |
| limit     | integer  | yes      | Max results per page (1-100)                |
| page      | integer  | yes      | Page number (1-based)                       |
| q         | string   | no       | Full-text keyword search                    |
| coins     | string[] | no       | Filter by coin symbols (e.g. ["BTC","ETH"]) |
| hasCoin   | boolean  | no       | Only return news with associated coins      |


Response Format

{
  "success": true,
  "total": 130,
  "page": 1,
  "limit": 10,
  "quota": "unlimited",
  "data": [
    {
      "id": "2027363213940293775",
      "text": "Yi He (@heyibinance)",
      "body": "Binance is actively exploring talent...",
      "newsType": "direct",
      "engineType": "news",
      "link": "https://twitter.com/heyibinance/status/...",
      "ts": 1772196031975,
      "receivedAt": "2026-02-27T12:40:32.615200+00:00",
      "coins": [
        {
          "symbol": "BNB",
          "market_type": "spot",
          "match": "title"
        }
      ],
      "aiRating": {
        "status": "pending",
        "score": null,
        "grade": null,
        "signal": null,
        "summary": null,
        "enSummary": null
      }
    }
  ]
}

Key Fields

| Field    | Description                           |
| -------- | ------------------------------------- |
| id       | Unique article ID                     |
| text     | Source name and handle                |
| body     | Full content text                     |
| coins    | Detected coins with exchange symbols  |
| link     | Original source URL                   |
| ts       | Unix timestamp (milliseconds)         |
| aiRating | AI analysis (pending = not yet rated) |


Common Workflows

Quick Market Overview

WISEBOT, [2026/2/27 21:31]
curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"limit": 5, "page": 1}' | jq '.data[] | {text, body, coins}'

BTC News Only

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"coins": ["BTC"], "limit": 10, "page": 1}'

Search Binance News

curl -s -X POST "https://web-production-666f44.up.railway.app/news_search" \\
  -H "Content-Type: application/json" \\
  -d '{"q": "Binance", "limit": 10, "page": 1}'


Notes

• Data source: Tree of Alpha WebSocket (real-time)
• Update frequency: Millisecond-level
• Storage: Cloud PostgreSQL (persistent, 24/7)
• Rate limits: None currently
• AI Rating: Coming soon (score, grade, signal, summary)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: SkyboundYi
- Version: 1.0.1
## 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/mov-toa)
- [Send to Agent page](https://openagent3.xyz/skills/mov-toa/agent)
- [JSON manifest](https://openagent3.xyz/skills/mov-toa/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mov-toa/agent.md)
- [Download page](https://openagent3.xyz/downloads/mov-toa)