{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crypto-arb-cn",
    "name": "Crypto Arbitrage CN | 加密货币套利监控",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/guohongbin-git/crypto-arb-cn",
    "canonicalUrl": "https://clawhub.ai/guohongbin-git/crypto-arb-cn",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crypto-arb-cn",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-arb-cn",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/exchanges.md",
      "scripts/arbitrage_monitor.py"
    ],
    "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/crypto-arb-cn"
    },
    "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/crypto-arb-cn",
    "agentPageUrl": "https://openagent3.xyz/skills/crypto-arb-cn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-arb-cn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-arb-cn/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": "Crypto Arbitrage CN",
        "body": "Monitor cryptocurrency prices across Chinese-accessible exchanges and find arbitrage opportunities."
      },
      {
        "title": "Quick Start",
        "body": "# Single check for opportunities\npython scripts/arbitrage_monitor.py --once\n\n# Continuous monitoring (every 30 seconds)\npython scripts/arbitrage_monitor.py"
      },
      {
        "title": "Supported Exchanges",
        "body": "ExchangeFeeAPIBinance0.1%✅OKX0.08%✅Gate.io0.2%✅Huobi0.2%✅"
      },
      {
        "title": "Configuration",
        "body": "Edit these variables in scripts/arbitrage_monitor.py:\n\n# Trading pairs to monitor\nSYMBOLS = [\"BTCUSDT\", \"ETHUSDT\", \"SOLUSDT\", \"DOGEUSDT\"]\n\n# Minimum profit threshold (after fees)\nMIN_PROFIT_PERCENT = 0.5  # 0.5%\n\n# Check interval (for continuous mode)\nINTERVAL = 30  # seconds"
      },
      {
        "title": "Output Format",
        "body": "When opportunities are found:\n\n💰 BTCUSDT | 币安 → OKX | 利润: 0.65%\n   买入: ¥485,230 (币安)\n   卖出: ¥488,380 (OKX)\n   预计利润: ¥3,150 (每 BTC)"
      },
      {
        "title": "Usage Examples",
        "body": "Check once:\n\n用户: 帮我看看现在有没有套利机会\n→ Run: python scripts/arbitrage_monitor.py --once\n\nStart monitoring:\n\n用户: 开始监控套利机会\n→ Run: python scripts/arbitrage_monitor.py\n\nAdd Telegram notification:\n\n用户: 有机会发 Telegram 给我\n→ Set up TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID"
      },
      {
        "title": "Important Notes",
        "body": "Fees matter: Always calculate profit after trading fees (0.1-0.2% per trade)\nTransfer time: Cross-exchange arbitrage requires crypto transfer (10-60 min)\nPrice volatility: Prices change fast, opportunities may disappear\nRisk warning: Arbitrage involves risk, user discretion advised"
      },
      {
        "title": "References",
        "body": "See references/exchanges.md for detailed exchange API documentation"
      }
    ],
    "body": "Crypto Arbitrage CN\n\nMonitor cryptocurrency prices across Chinese-accessible exchanges and find arbitrage opportunities.\n\nQuick Start\n# Single check for opportunities\npython scripts/arbitrage_monitor.py --once\n\n# Continuous monitoring (every 30 seconds)\npython scripts/arbitrage_monitor.py\n\nSupported Exchanges\nExchange\tFee\tAPI\nBinance\t0.1%\t✅\nOKX\t0.08%\t✅\nGate.io\t0.2%\t✅\nHuobi\t0.2%\t✅\nConfiguration\n\nEdit these variables in scripts/arbitrage_monitor.py:\n\n# Trading pairs to monitor\nSYMBOLS = [\"BTCUSDT\", \"ETHUSDT\", \"SOLUSDT\", \"DOGEUSDT\"]\n\n# Minimum profit threshold (after fees)\nMIN_PROFIT_PERCENT = 0.5  # 0.5%\n\n# Check interval (for continuous mode)\nINTERVAL = 30  # seconds\n\nOutput Format\n\nWhen opportunities are found:\n\n💰 BTCUSDT | 币安 → OKX | 利润: 0.65%\n   买入: ¥485,230 (币安)\n   卖出: ¥488,380 (OKX)\n   预计利润: ¥3,150 (每 BTC)\n\nUsage Examples\n\nCheck once:\n\n用户: 帮我看看现在有没有套利机会\n→ Run: python scripts/arbitrage_monitor.py --once\n\n\nStart monitoring:\n\n用户: 开始监控套利机会\n→ Run: python scripts/arbitrage_monitor.py\n\n\nAdd Telegram notification:\n\n用户: 有机会发 Telegram 给我\n→ Set up TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID\n\nImportant Notes\nFees matter: Always calculate profit after trading fees (0.1-0.2% per trade)\nTransfer time: Cross-exchange arbitrage requires crypto transfer (10-60 min)\nPrice volatility: Prices change fast, opportunities may disappear\nRisk warning: Arbitrage involves risk, user discretion advised\nReferences\nSee references/exchanges.md for detailed exchange API documentation"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/guohongbin-git/crypto-arb-cn",
    "publisherUrl": "https://clawhub.ai/guohongbin-git/crypto-arb-cn",
    "owner": "guohongbin-git",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crypto-arb-cn",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-arb-cn",
    "agentUrl": "https://openagent3.xyz/skills/crypto-arb-cn/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-arb-cn/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-arb-cn/agent.md"
  }
}