LaunchKit · 2026
Back to Skills

captchas-openclaw

OpenClaw integration guidance for CAPTCHAS Agent API.

2
1.7k downloads
by @captchasco

Setup & Installation

openclaw skills install @captchasco/captchas-openclaw

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install captchas-openclaw

Version History

v1.0.1Feb 6, 2026 - Version note by skill developer:

- Reference to a user-specific file path was replaced with a generic `captchas-human-verification/SKILL.md` workflow reference. - No other content changes were made in this version.

What This Skill Does

Provides OpenClaw integration for the CAPTCHAS Agent API. Includes OpenResponses tool schemas for the gateway and plugin tool registration for verify, challenge completion, and token verification calls.

Lets agents handle CAPTCHA decisions and token verification inline within tool calls, without routing to a separate verification service outside the agent pipeline.

When to use it

  • Blocking bot signups on registration forms
  • Requiring human verification before account deletion
  • Gating sensitive API actions with a challenge step
  • Verifying tokens before processing payments
  • Flagging suspicious automated requests at login

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Check if this request is from a human before allowing the password reset

AGENT
  1. 1Call captchas_agent_verify with the action type and request signals
  2. 2Receive a decision of allow, deny, or challenge from the API
  3. 3If challenge is returned, call captchas_agent_challenge_complete with the challenge_id and user answer
  4. 4Receive a minted verification token on successful challenge completion
  5. 5Call captchas_agent_token_verify to confirm the token before completing the password reset
OUTPUT

Token verified; password reset proceeds or is blocked based on the verification result

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

CAPTCHAS API key from captchas.co (set as CAPTCHAS_API_KEY)