{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/mov-toa",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mov-toa",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/mov-toa",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "ToA Crypto News Skill",
        "body": "Real-time crypto news API powered by Tree of Alpha WebSocket. Millisecond-level market updates with coin tagging and search.\n\nBase URL: https://web-production-666f44.up.railway.app"
      },
      {
        "title": "Endpoints",
        "body": "EndpointMethodDescription/healthGETHealth check/newsGETSimple news fetch/news_searchPOSTAdvanced search (6551-compatible)"
      },
      {
        "title": "1. Health Check",
        "body": "curl -s \"https://web-production-666f44.up.railway.app/health\"\n\nReturns: {\"status\": \"ok\"}\n\n\n2. Get Latest News (Simple)\n\ncurl -s \"https://web-production-666f44.up.railway.app/news?limit=10\"\n\n| Parameter | Type    | Default | Description         |\n| --------- | ------- | ------- | ------------------- |\n| limit     | integer | 10      | Max results (1-100) |\n\n\n3. Advanced Search (Recommended)\n\nPOST /news_search — 6551-compatible format with filtering and pagination.\n\nGet Latest News\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"limit\": 10, \"page\": 1}'\n\nSearch by Keyword\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"q\": \"bitcoin ETF\", \"limit\": 10, \"page\": 1}'\n\nFilter by Coin\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"coins\": [\"BTC\", \"ETH\"], \"limit\": 10, \"page\": 1}'\n\nOnly News with Coins\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"hasCoin\": true, \"limit\": 10, \"page\": 1}'\n\nSearch Parameters\n\n| Parameter | Type     | Required | Description                                 |\n| --------- | -------- | -------- | ------------------------------------------- |\n| limit     | integer  | yes      | Max results per page (1-100)                |\n| page      | integer  | yes      | Page number (1-based)                       |\n| q         | string   | no       | Full-text keyword search                    |\n| coins     | string[] | no       | Filter by coin symbols (e.g. [\"BTC\",\"ETH\"]) |\n| hasCoin   | boolean  | no       | Only return news with associated coins      |\n\n\nResponse Format\n\n{\n  \"success\": true,\n  \"total\": 130,\n  \"page\": 1,\n  \"limit\": 10,\n  \"quota\": \"unlimited\",\n  \"data\": [\n    {\n      \"id\": \"2027363213940293775\",\n      \"text\": \"Yi He (@heyibinance)\",\n      \"body\": \"Binance is actively exploring talent...\",\n      \"newsType\": \"direct\",\n      \"engineType\": \"news\",\n      \"link\": \"https://twitter.com/heyibinance/status/...\",\n      \"ts\": 1772196031975,\n      \"receivedAt\": \"2026-02-27T12:40:32.615200+00:00\",\n      \"coins\": [\n        {\n          \"symbol\": \"BNB\",\n          \"market_type\": \"spot\",\n          \"match\": \"title\"\n        }\n      ],\n      \"aiRating\": {\n        \"status\": \"pending\",\n        \"score\": null,\n        \"grade\": null,\n        \"signal\": null,\n        \"summary\": null,\n        \"enSummary\": null\n      }\n    }\n  ]\n}\n\nKey Fields\n\n| Field    | Description                           |\n| -------- | ------------------------------------- |\n| id       | Unique article ID                     |\n| text     | Source name and handle                |\n| body     | Full content text                     |\n| coins    | Detected coins with exchange symbols  |\n| link     | Original source URL                   |\n| ts       | Unix timestamp (milliseconds)         |\n| aiRating | AI analysis (pending = not yet rated) |\n\n\nCommon Workflows\n\nQuick Market Overview\n\nWISEBOT, [2026/2/27 21:31]\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"limit\": 5, \"page\": 1}' | jq '.data[] | {text, body, coins}'\n\nBTC News Only\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"coins\": [\"BTC\"], \"limit\": 10, \"page\": 1}'\n\nSearch Binance News\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"q\": \"Binance\", \"limit\": 10, \"page\": 1}'\n\n\nNotes\n\n• Data source: Tree of Alpha WebSocket (real-time)\n• Update frequency: Millisecond-level\n• Storage: Cloud PostgreSQL (persistent, 24/7)\n• Rate limits: None currently\n• AI Rating: Coming soon (score, grade, signal, summary)"
      }
    ],
    "body": "name: toa-news description: Real-time crypto news API with millisecond-level updates. Supports keyword search, coin filtering, and pagination. 6551-compatible format. user-invocable: true metadata: openclaw: requires: bins: - curl emoji: \"📡\" tags: - crypto - news - trading - api os: - darwin - linux - win32 version: 1.0.1\nToA Crypto News Skill\n\nReal-time crypto news API powered by Tree of Alpha WebSocket. Millisecond-level market updates with coin tagging and search.\n\nBase URL: https://web-production-666f44.up.railway.app\n\nEndpoints\nEndpoint\tMethod\tDescription\n/health\tGET\tHealth check\n/news\tGET\tSimple news fetch\n/news_search\tPOST\tAdvanced search (6551-compatible)\n1. Health Check\ncurl -s \"https://web-production-666f44.up.railway.app/health\"\n\nReturns: {\"status\": \"ok\"}\n\n\n2. Get Latest News (Simple)\n\ncurl -s \"https://web-production-666f44.up.railway.app/news?limit=10\"\n\n| Parameter | Type    | Default | Description         |\n| --------- | ------- | ------- | ------------------- |\n| limit     | integer | 10      | Max results (1-100) |\n\n\n3. Advanced Search (Recommended)\n\nPOST /news_search — 6551-compatible format with filtering and pagination.\n\nGet Latest News\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"limit\": 10, \"page\": 1}'\n\nSearch by Keyword\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"q\": \"bitcoin ETF\", \"limit\": 10, \"page\": 1}'\n\nFilter by Coin\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"coins\": [\"BTC\", \"ETH\"], \"limit\": 10, \"page\": 1}'\n\nOnly News with Coins\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"hasCoin\": true, \"limit\": 10, \"page\": 1}'\n\nSearch Parameters\n\n| Parameter | Type     | Required | Description                                 |\n| --------- | -------- | -------- | ------------------------------------------- |\n| limit     | integer  | yes      | Max results per page (1-100)                |\n| page      | integer  | yes      | Page number (1-based)                       |\n| q         | string   | no       | Full-text keyword search                    |\n| coins     | string[] | no       | Filter by coin symbols (e.g. [\"BTC\",\"ETH\"]) |\n| hasCoin   | boolean  | no       | Only return news with associated coins      |\n\n\nResponse Format\n\n{\n  \"success\": true,\n  \"total\": 130,\n  \"page\": 1,\n  \"limit\": 10,\n  \"quota\": \"unlimited\",\n  \"data\": [\n    {\n      \"id\": \"2027363213940293775\",\n      \"text\": \"Yi He (@heyibinance)\",\n      \"body\": \"Binance is actively exploring talent...\",\n      \"newsType\": \"direct\",\n      \"engineType\": \"news\",\n      \"link\": \"https://twitter.com/heyibinance/status/...\",\n      \"ts\": 1772196031975,\n      \"receivedAt\": \"2026-02-27T12:40:32.615200+00:00\",\n      \"coins\": [\n        {\n          \"symbol\": \"BNB\",\n          \"market_type\": \"spot\",\n          \"match\": \"title\"\n        }\n      ],\n      \"aiRating\": {\n        \"status\": \"pending\",\n        \"score\": null,\n        \"grade\": null,\n        \"signal\": null,\n        \"summary\": null,\n        \"enSummary\": null\n      }\n    }\n  ]\n}\n\nKey Fields\n\n| Field    | Description                           |\n| -------- | ------------------------------------- |\n| id       | Unique article ID                     |\n| text     | Source name and handle                |\n| body     | Full content text                     |\n| coins    | Detected coins with exchange symbols  |\n| link     | Original source URL                   |\n| ts       | Unix timestamp (milliseconds)         |\n| aiRating | AI analysis (pending = not yet rated) |\n\n\nCommon Workflows\n\nQuick Market Overview\n\nWISEBOT, [2026/2/27 21:31]\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"limit\": 5, \"page\": 1}' | jq '.data[] | {text, body, coins}'\n\nBTC News Only\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"coins\": [\"BTC\"], \"limit\": 10, \"page\": 1}'\n\nSearch Binance News\n\ncurl -s -X POST \"https://web-production-666f44.up.railway.app/news_search\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"q\": \"Binance\", \"limit\": 10, \"page\": 1}'\n\n\nNotes\n\n• Data source: Tree of Alpha WebSocket (real-time)\n• Update frequency: Millisecond-level\n• Storage: Cloud PostgreSQL (persistent, 24/7)\n• Rate limits: None currently\n• AI Rating: Coming soon (score, grade, signal, summary)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/SkyboundYi/mov-toa",
    "publisherUrl": "https://clawhub.ai/SkyboundYi/mov-toa",
    "owner": "SkyboundYi",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}