{
  "schemaVersion": "1.0",
  "item": {
    "slug": "captcha-relay",
    "name": "Captcha Relay",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/0xclanky/captcha-relay",
    "canonicalUrl": "https://clawhub.ai/0xclanky/captcha-relay",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/captcha-relay",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=captcha-relay",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "ARCHITECTURE.md",
      "README.md",
      "SKILL.md",
      "TAILSCALE.md",
      "browser-relay-cli.js",
      "fallback/screenshot.js"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/captcha-relay"
    },
    "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/captcha-relay",
    "agentPageUrl": "https://openagent3.xyz/skills/captcha-relay/agent",
    "manifestUrl": "https://openagent3.xyz/skills/captcha-relay/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/captcha-relay/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "CAPTCHA Relay v2",
        "body": "Solve CAPTCHAs by relaying them to a human. Two modes available."
      },
      {
        "title": "Screenshot Mode (default) — No infrastructure needed",
        "body": "Grid overlay screenshot → send image to human via Telegram → human replies with cell numbers → inject clicks.\n\nZero setup beyond the skill itself. No Tailscale, no tunnels, no relay server.\nWorks for any CAPTCHA type (reCAPTCHA, hCaptcha, sliders, text, etc.)\nUses sharp for image processing + CDP for screenshots and click injection.\n\nnode index.js                       # screenshot mode (default)\nnode index.js --mode screenshot     # explicit\nnode index.js --screenshot          # legacy alias\n\nconst { solveCaptchaScreenshot } = require('./index');\nconst capture = await solveCaptchaScreenshot({ cdpPort: 18800 });\n// capture.imagePath — annotated screenshot to send to human\n// capture.prompt — text prompt for the human"
      },
      {
        "title": "Token Relay Mode — Requires network access",
        "body": "Detects CAPTCHA type + sitekey → serves real widget on relay page → human solves natively → token injected via CDP.\n\nRequires Tailscale or a tunnel (localtunnel/cloudflared) so the human's device can reach the relay server.\nProduces a proper CAPTCHA token — more reliable for reCAPTCHA v2, hCaptcha, Turnstile.\nBest when you have Tailscale already set up.\n\nnode index.js --mode relay              # with localtunnel\nnode index.js --mode relay --no-tunnel  # with Tailscale/LAN\n\nconst { solveCaptcha } = require('./index');\nconst result = await solveCaptcha({ cdpPort: 18800, useTunnel: false });\n// result.relayUrl — URL to send to human\n// result.token — solved CAPTCHA token"
      },
      {
        "title": "When to Use Each",
        "body": "ScenarioModeQuick & easy, no setupscreenshotAny CAPTCHA type (sliders, text, etc.)screenshotKnown CAPTCHA with sitekey (reCAPTCHA, hCaptcha, Turnstile)relayTailscale already configuredrelayNo network access to hostscreenshot"
      },
      {
        "title": "CLI Flags",
        "body": "FlagDefaultDescription--mode screenshot|relayscreenshotSelect solving mode--screenshot—Alias for --mode screenshot--no-injectinjectReturn token without injecting into browser--no-tunneltunnelSkip tunnel, use local/Tailscale IP (relay mode)--timeout N120Timeout in seconds--cdp-port N18800Chrome DevTools Protocol port"
      },
      {
        "title": "Screenshot mode (simplest)",
        "body": "Call solveCaptchaScreenshot({ cdpPort })\nSend capture.imagePath to human via message tool with capture.prompt\nHuman replies with cell numbers (e.g. \"1,3,5,7\")\nCall injectGridClicks(cdpPort, capture, selectedCells) to click those cells"
      },
      {
        "title": "Relay mode",
        "body": "Call solveCaptcha({ useTunnel: false }) (Tailscale) or solveCaptcha() (tunnel)\nSend result.relayUrl to human via message tool\nWait — resolves when human completes the CAPTCHA\nToken is auto-injected; continue automation"
      },
      {
        "title": "Requirements",
        "body": "Chrome/Chromium with --remote-debugging-port=18800\nNode.js 18+ and npm install (deps: ws, sharp)\nRelay mode only: Tailscale or internet for tunnel"
      }
    ],
    "body": "CAPTCHA Relay v2\n\nSolve CAPTCHAs by relaying them to a human. Two modes available.\n\nModes\nScreenshot Mode (default) — No infrastructure needed\n\nGrid overlay screenshot → send image to human via Telegram → human replies with cell numbers → inject clicks.\n\nZero setup beyond the skill itself. No Tailscale, no tunnels, no relay server.\nWorks for any CAPTCHA type (reCAPTCHA, hCaptcha, sliders, text, etc.)\nUses sharp for image processing + CDP for screenshots and click injection.\nnode index.js                       # screenshot mode (default)\nnode index.js --mode screenshot     # explicit\nnode index.js --screenshot          # legacy alias\n\nconst { solveCaptchaScreenshot } = require('./index');\nconst capture = await solveCaptchaScreenshot({ cdpPort: 18800 });\n// capture.imagePath — annotated screenshot to send to human\n// capture.prompt — text prompt for the human\n\nToken Relay Mode — Requires network access\n\nDetects CAPTCHA type + sitekey → serves real widget on relay page → human solves natively → token injected via CDP.\n\nRequires Tailscale or a tunnel (localtunnel/cloudflared) so the human's device can reach the relay server.\nProduces a proper CAPTCHA token — more reliable for reCAPTCHA v2, hCaptcha, Turnstile.\nBest when you have Tailscale already set up.\nnode index.js --mode relay              # with localtunnel\nnode index.js --mode relay --no-tunnel  # with Tailscale/LAN\n\nconst { solveCaptcha } = require('./index');\nconst result = await solveCaptcha({ cdpPort: 18800, useTunnel: false });\n// result.relayUrl — URL to send to human\n// result.token — solved CAPTCHA token\n\nWhen to Use Each\nScenario\tMode\nQuick & easy, no setup\tscreenshot\nAny CAPTCHA type (sliders, text, etc.)\tscreenshot\nKnown CAPTCHA with sitekey (reCAPTCHA, hCaptcha, Turnstile)\trelay\nTailscale already configured\trelay\nNo network access to host\tscreenshot\nCLI Flags\nFlag\tDefault\tDescription\n--mode screenshot|relay\tscreenshot\tSelect solving mode\n--screenshot\t—\tAlias for --mode screenshot\n--no-inject\tinject\tReturn token without injecting into browser\n--no-tunnel\ttunnel\tSkip tunnel, use local/Tailscale IP (relay mode)\n--timeout N\t120\tTimeout in seconds\n--cdp-port N\t18800\tChrome DevTools Protocol port\nAgent Workflow\nScreenshot mode (simplest)\nCall solveCaptchaScreenshot({ cdpPort })\nSend capture.imagePath to human via message tool with capture.prompt\nHuman replies with cell numbers (e.g. \"1,3,5,7\")\nCall injectGridClicks(cdpPort, capture, selectedCells) to click those cells\nRelay mode\nCall solveCaptcha({ useTunnel: false }) (Tailscale) or solveCaptcha() (tunnel)\nSend result.relayUrl to human via message tool\nWait — resolves when human completes the CAPTCHA\nToken is auto-injected; continue automation\nRequirements\nChrome/Chromium with --remote-debugging-port=18800\nNode.js 18+ and npm install (deps: ws, sharp)\nRelay mode only: Tailscale or internet for tunnel"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/0xclanky/captcha-relay",
    "publisherUrl": "https://clawhub.ai/0xclanky/captcha-relay",
    "owner": "0xclanky",
    "version": "2.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/captcha-relay",
    "downloadUrl": "https://openagent3.xyz/downloads/captcha-relay",
    "agentUrl": "https://openagent3.xyz/skills/captcha-relay/agent",
    "manifestUrl": "https://openagent3.xyz/skills/captcha-relay/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/captcha-relay/agent.md"
  }
}