Human-in-the-loop CAPTCHA solving with two modes: screenshot (default, zero infrastructure) and token relay (requires network access). Screenshot mode captur...
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install captcha-relay或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install captcha-relay⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/captcha-relay/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: captcha-relay description: "Human-in-the-loop CAPTCHA solving with two modes: screenshot (default, zero infrastructure) and token relay (requires network access). Screenshot mode captures the page with a grid overlay, sends it to the human, and injects clicks based on their reply. Token relay mode detects CAPTCHA type + sitekey, serves the real widget on a relay page for native solving, and injects the token via CDP." defaultMode: screenshot ---
Solve CAPTCHAs by relaying them to a human. Two modes available.
Grid overlay screenshot → send image to human via Telegram → human replies with cell numbers → inject clicks.
sharp for image processing + CDP for screenshots and click injection.node index.js # screenshot mode (default)
node index.js --mode screenshot # explicit
node index.js --screenshot # legacy alias
const { solveCaptchaScreenshot } = require('./index');
const capture = await solveCaptchaScreenshot({ cdpPort: 18800 });
// capture.imagePath — annotated screenshot to send to human
// capture.prompt — text prompt for the human
Detects CAPTCHA type + sitekey → serves real widget on relay page → human solves natively → token injected via CDP.
node index.js --mode relay # with localtunnel
node index.js --mode relay --no-tunnel # with Tailscale/LAN
const { solveCaptcha } = require('./index');
const result = await solveCaptcha({ cdpPort: 18800, useTunnel: false });
// result.relayUrl — URL to send to human
// result.token — solved CAPTCHA token
| Scenario | Mode | |----------|------| | Quick & easy, no setup | screenshot | | Any CAPTCHA type (sliders, text, etc.) | screenshot | | Known CAPTCHA with sitekey (reCAPTCHA, hCaptcha, Turnstile) | relay | | Tailscale already configured | relay | | No network access to host | screenshot |
| Flag | Default | Description | |------|---------|-------------| | --mode screenshot\|relay | screenshot | Select solving mode | | --screenshot | — | Alias for --mode screenshot | | --no-inject | inject | Return token without injecting into browser | | --no-tunnel | tunnel | Skip tunnel, use local/Tailscale IP (relay mode) | | --timeout N | 120 | Timeout in seconds | | --cdp-port N | 18800 | Chrome DevTools Protocol port |
solveCaptchaScreenshot({ cdpPort }) capture.imagePath to human via message tool with capture.promptinjectGridClicks(cdpPort, capture, selectedCells) to click those cellssolveCaptcha({ useTunnel: false }) (Tailscale) or solveCaptcha() (tunnel)result.relayUrl to human via message tool--remote-debugging-port=18800npm install (deps: ws, sharp)安装 Captcha Relay 后,可以对 AI 说这些话来触发它
Help me get started with Captcha Relay
Explains what Captcha Relay does, walks through the setup, and runs a quick demo based on your current project
Use Captcha Relay to human-in-the-loop CAPTCHA solving with two modes: screenshot (defau...
Invokes Captcha Relay with the right parameters and returns the result directly in the conversation
What can I do with Captcha Relay in my developer & devops workflow?
Lists the top use cases for Captcha Relay, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/captcha-relay/ 目录(个人级,所有项目可用),或 .claude/skills/captcha-relay/(项目级)。重启 AI 客户端后,用 /captcha-relay 主动调用,或让 AI 根据上下文自动发现并使用。
Captcha Relay 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Captcha Relay 可免费安装使用。请查阅仓库了解许可证信息。
Human-in-the-loop CAPTCHA solving with two modes: screenshot (default, zero infrastructure) and token relay (requires network access). Screenshot mode captur...
Captcha Relay 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Captcha Relay
Identifies repetitive steps in your workflow and sets up Captcha Relay to handle them automatically