Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/interfluve-wav/auto-captcha-solver/hermes-skillnpx skills add interfluve-wav/auto-captcha-solver --skill hermes-skillgit clone --depth 1 https://github.com/interfluve-wav/auto-captcha-solverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/interfluve-wav/auto-captcha-solver/hermes-skill)<a href="https://agentmods.dev/skills/interfluve-wav/auto-captcha-solver/hermes-skill"><img src="https://agentmods.dev/badge/skills/interfluve-wav/auto-captcha-solver/hermes-skill.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00057 | $0.01476 |
| Opus 5 | $0.00028 | $0.00738 |
| Sonnet 5 | $0.00011 | $0.00295 |
| Haiku 4.5 | $0.00006 | $0.00148 |
Grade A, and why
auto-captcha-solver scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 158 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Auto-Captcha
Auto-detect and solve captchas during Playwright browser automation using the NopeCHA API.
When to Use
- Browser automation hits a captcha wall
- Web scraping tasks need captcha bypass
- Automated testing against captcha-protected sites
- Any Playwright script that might encounter hCaptcha or reCAPTCHA v2
Prerequisites
NOPECHA_API_KEYenv var set (get free credits at https://nopecha.com)- Python
requestsandplaywrightinstalled - Playwright browser installed (
python -m playwright install chromium)
Quick Start
from auto_captcha_solver import CaptchaSolver
solver = CaptchaSolver(api_key="your-key")
# Auto-detect + solve + inject (one-liner)
results = solver.auto_solve(page)
Full API
Detect
captchas = solver.detect(page)
# Returns: [{"type": "hcaptcha"|"recaptcha2", "sitekey": "...", "url": "...", "frame": ...}]
Solve
result = solver.solve("hcaptcha", sitekey, page_url)
# Returns: CaptchaResult(success=True, token="...", attempts=5, elapsed_sec=38.0)
Inject
solver.inject(page, "hcaptcha", token)
# Injects token into page's captcha callback
Auto (detect + solve + inject)
results = solver.auto_solve(page)
for r in results:
print(f"{r.captcha_type}: {'OK' if r.success else r.error}")
SmartPage (transparent wrapper)
from auto_captcha_solver import smart_page
with smart_page(api_key="your-key") as page:
page.goto("https://protected-site.com")
page.fill("#email", "[email protected]")
page.click("#submit") # captcha auto-solved after each action
Supported Captcha Types
| Type | API Endpoint | Status |
|---|---|---|
| hCaptcha (checkbox) | /v1/token/hcaptcha |
Working |
| hCaptcha (enterprise) | /v1/token/hcaptcha |
Working |
| reCAPTCHA v2 | /v1/token/recaptcha2 |
Works but queue can be slow |
| reCAPTCHA v3 | /v1/token/recaptcha3 |
Working (needs data.action) |
| Cloudflare Turnstile | /v1/token/turnstile |
Working with a proxy — proxy is Required in NopeCHA's schema for this endpoint (solver exit IP must match browser IP); check_proxy_egress() / CLI proxy-check verify first. Error 10 bodies carry a diagnostic type field, now surfaced in the error string. |
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago Changed · +35 lines 5f79506f60a3
- 6d ago First seen · 123 lines · 57 tokens per session scan A 34735ee92622
auto-captcha-solver is a skill published in the GitHub repository interfluve-wav/auto-captcha-solver (10 stars, last pushed 2d ago), licensed MIT. It adds 57 tokens to every session and 1,476 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
gem-pw
Browser-automated Gemini Gem CLI (CDP-first) — chat, CRUD, image gen, deep research, --collab surgical-diff review. No API key.
xiaohongshu-ops
把 Hermes Agent 变成你的小红书运营助手 — 首页分析、账号诊断、选题灵感、内容创作、自动发布、评论回复、爆款复刻、知识库沉淀。全链路 SOP 覆盖,基于浏览器自动化(CDP)。.
captchasonic-solve
Solve a CAPTCHA using the CaptchaSonic MCP server. Supports all types — PopularCaptcha, reCAPTCHA, Geetest, OCR, AWS WAF, TikTok, Binance, Cloudflare Turnstile, and more. Provide an image (path, URL, or base64) and captcha type.
captchasonic
Solve CAPTCHAs using the CaptchaSonic AI API. Supports reCAPTCHA, Cloudflare Turnstile, Geetest, AWS WAF, TikTok, Binance, OCR, and more. Provides MCP server tools for health checks, balance queries, and captcha solving from any AI agent.
captchasonic-setup
Set up the CaptchaSonic MCP server for the first time. Installs the server, configures environment variables, and verifies connectivity. Use when a user wants to start using CaptchaSonic with their AI agent.
browser-use
Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.