solve-captcha

Solve CAPTCHA challenges on the current browser tab using checkbox clicks, text recognition, or a token service.

73|19|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/suxrobGM/jobpilot --skill solve-captcha-suxrobgm
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: solve-captcha
Source: https://github.com/suxrobGM/jobpilot/tree/main/plugin/skills/solve-captcha
Command: npx skills add https://github.com/suxrobGM/jobpilot --skill solve-captcha-suxrobgm

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Automated browser workflows stall whenever a CAPTCHA appears, forcing manual intervention that breaks unattended job application or form-submission runs. This Skill clears reCAPTCHA, hCaptcha, and Turnstile challenges on the current tab and reports back whether it succeeded so the caller can continue or fall back. ## Core Features & Use Cases - Free-first solving strategy: Tries trusted checkbox clicks and text-challenge reading before spending money on a solving service. - Token service fallback: Extracts the sitekey from the page, requests a solved token from a configured server-side endpoint, and injects it into the response field. - Bounded retries with clear outcome: Retries at most 3 rounds, then returns unsolved so the calling workflow can take over. - Use Case: During an unattended job-application run, a posting's submit form shows a reCAPTCHA. The Skill clicks the checkbox, escalates to the token service if an image grid opens, injects the solved token, and submits the form. ## Quick Start Ask the agent to solve the CAPTCHA on the current browser tab, optionally passing a URL to navigate to first.

Frequently Asked Questions about solve-captcha

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I solve a reCAPTCHA automatically in a browser automation workflow?▼

Click the checkbox using a trusted ref-based browser click first, since that often verifies without further challenge. If an image grid opens, extract the sitekey, request a solved token from a configured solving service, and inject it into the g-recaptcha-response field.

How to bypass hCaptcha or Turnstile during automated form submission?▼

Detect the widget type from its iframe or data-sitekey attribute, then request a token of type hcaptcha or turnstile from the solving endpoint. Inject the returned token into the h-captcha-response or cf-turnstile-response field and submit the form.

Why does clicking reCAPTCHA tiles with JavaScript fail?▼

reCAPTCHA detects synthetic clicks made via browser_evaluate, .click(), or scrollIntoView and hard-fails the challenge. Only trusted ref-based clicks work on widgets; JavaScript is limited to reading the sitekey and injecting a legitimately solved token.

What happens when the CAPTCHA cannot be solved automatically?▼

The Skill retries at most three rounds and then returns unsolved, leaving the page as-is. The calling workflow is expected to take over, for example by notifying the user to solve it manually.

Does solving CAPTCHAs with a token service cost money?▼

Yes, service-based solves cost roughly $1-3 per 1000 challenges. The Skill minimizes cost by always trying free checkbox and text paths first and only calling the token service for image-grid challenges.