{
  "schemaVersion": "1.0",
  "item": {
    "slug": "find-arbitrage-opps",
    "name": "Find Arbitrage Opps",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/fengtality/find-arbitrage-opps",
    "canonicalUrl": "https://clawhub.ai/fengtality/find-arbitrage-opps",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/find-arbitrage-opps",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=find-arbitrage-opps",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/find_arb_opps.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/find-arbitrage-opps"
    },
    "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/find-arbitrage-opps",
    "agentPageUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/agent",
    "manifestUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/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": "find-arbitrage-opps",
        "body": "Find arbitrage opportunities across all Hummingbot-connected exchanges by comparing prices for a trading pair, accounting for fungible tokens (e.g., BTC = WBTC, USDT = USDC)."
      },
      {
        "title": "Prerequisites",
        "body": "Hummingbot API must be running with exchange connectors configured:\n\nbash <(curl -s https://raw.githubusercontent.com/hummingbot/skills/main/skills/lp-agent/scripts/check_prerequisites.sh)"
      },
      {
        "title": "Step 1: Define Token Mappings",
        "body": "User specifies the base and quote tokens, including fungible equivalents:\n\nBase tokens: BTC, WBTC, cbBTC (all represent Bitcoin)\nQuote tokens: USDT, USDC, USD (all represent USD)"
      },
      {
        "title": "Step 2: Find Arbitrage Opportunities",
        "body": "# Basic usage - find BTC/USDT arb opportunities\npython scripts/find_arb_opps.py --base BTC --quote USDT\n\n# Include fungible tokens\npython scripts/find_arb_opps.py --base BTC,WBTC --quote USDT,USDC\n\n# More examples\npython scripts/find_arb_opps.py --base ETH,WETH --quote USDT,USDC,USD\npython scripts/find_arb_opps.py --base SOL --quote USDT,USDC --min-spread 0.1\n\n# Filter by specific connectors\npython scripts/find_arb_opps.py --base BTC --quote USDT --connectors binance,kraken,coinbase"
      },
      {
        "title": "Step 3: Analyze Results",
        "body": "The script outputs:\n\nPrices from each exchange\nBest bid/ask across all exchanges\nArbitrage spread (buy low, sell high)\nRecommended pairs for arbitrage"
      },
      {
        "title": "Script Options",
        "body": "python scripts/find_arb_opps.py --help\n\nOptionDescription--baseBase token(s), comma-separated (e.g., BTC,WBTC)--quoteQuote token(s), comma-separated (e.g., USDT,USDC)--connectorsFilter to specific connectors (optional)--min-spreadMinimum spread % to show (default: 0.0)--jsonOutput as JSON"
      },
      {
        "title": "Output Example",
        "body": "Arbitrage Opportunities: BTC vs USDT\n=====================================\n\nPrices Found:\n  binance          BTC-USDT     $67,234.50\n  kraken           BTC-USD      $67,289.00\n  coinbase         BTC-USD      $67,312.25\n  okx              BTC-USDT     $67,198.00\n  hyperliquid      BTC-USD      $67,245.00\n\nBest Opportunities:\n  Buy  okx BTC-USDT @ $67,198.00\n  Sell coinbase BTC-USD @ $67,312.25\n  Spread: 0.17% ($114.25)"
      },
      {
        "title": "Environment Variables",
        "body": "export HUMMINGBOT_API_URL=http://localhost:8000\nexport API_USER=admin\nexport API_PASS=admin\n\nScripts check for .env in: ./hummingbot-api/.env → ~/.hummingbot/.env → .env"
      },
      {
        "title": "Requirements",
        "body": "Hummingbot API running\nExchange connectors configured with API keys"
      }
    ],
    "body": "find-arbitrage-opps\n\nFind arbitrage opportunities across all Hummingbot-connected exchanges by comparing prices for a trading pair, accounting for fungible tokens (e.g., BTC = WBTC, USDT = USDC).\n\nPrerequisites\n\nHummingbot API must be running with exchange connectors configured:\n\nbash <(curl -s https://raw.githubusercontent.com/hummingbot/skills/main/skills/lp-agent/scripts/check_prerequisites.sh)\n\nWorkflow\nStep 1: Define Token Mappings\n\nUser specifies the base and quote tokens, including fungible equivalents:\n\nBase tokens: BTC, WBTC, cbBTC (all represent Bitcoin)\nQuote tokens: USDT, USDC, USD (all represent USD)\nStep 2: Find Arbitrage Opportunities\n# Basic usage - find BTC/USDT arb opportunities\npython scripts/find_arb_opps.py --base BTC --quote USDT\n\n# Include fungible tokens\npython scripts/find_arb_opps.py --base BTC,WBTC --quote USDT,USDC\n\n# More examples\npython scripts/find_arb_opps.py --base ETH,WETH --quote USDT,USDC,USD\npython scripts/find_arb_opps.py --base SOL --quote USDT,USDC --min-spread 0.1\n\n# Filter by specific connectors\npython scripts/find_arb_opps.py --base BTC --quote USDT --connectors binance,kraken,coinbase\n\nStep 3: Analyze Results\n\nThe script outputs:\n\nPrices from each exchange\nBest bid/ask across all exchanges\nArbitrage spread (buy low, sell high)\nRecommended pairs for arbitrage\nScript Options\npython scripts/find_arb_opps.py --help\n\nOption\tDescription\n--base\tBase token(s), comma-separated (e.g., BTC,WBTC)\n--quote\tQuote token(s), comma-separated (e.g., USDT,USDC)\n--connectors\tFilter to specific connectors (optional)\n--min-spread\tMinimum spread % to show (default: 0.0)\n--json\tOutput as JSON\nOutput Example\nArbitrage Opportunities: BTC vs USDT\n=====================================\n\nPrices Found:\n  binance          BTC-USDT     $67,234.50\n  kraken           BTC-USD      $67,289.00\n  coinbase         BTC-USD      $67,312.25\n  okx              BTC-USDT     $67,198.00\n  hyperliquid      BTC-USD      $67,245.00\n\nBest Opportunities:\n  Buy  okx BTC-USDT @ $67,198.00\n  Sell coinbase BTC-USD @ $67,312.25\n  Spread: 0.17% ($114.25)\n\nEnvironment Variables\nexport HUMMINGBOT_API_URL=http://localhost:8000\nexport API_USER=admin\nexport API_PASS=admin\n\n\nScripts check for .env in: ./hummingbot-api/.env → ~/.hummingbot/.env → .env\n\nRequirements\nHummingbot API running\nExchange connectors configured with API keys"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/fengtality/find-arbitrage-opps",
    "publisherUrl": "https://clawhub.ai/fengtality/find-arbitrage-opps",
    "owner": "fengtality",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/find-arbitrage-opps",
    "downloadUrl": "https://openagent3.xyz/downloads/find-arbitrage-opps",
    "agentUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/agent",
    "manifestUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/find-arbitrage-opps/agent.md"
  }
}