{
  "schemaVersion": "1.0",
  "item": {
    "slug": "captchas-openclaw",
    "name": "CAPTCHAS OpenClaw",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/CAPTCHASCO/captchas-openclaw",
    "canonicalUrl": "https://clawhub.ai/CAPTCHASCO/captchas-openclaw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/captchas-openclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=captchas-openclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. 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/captchas-openclaw"
    },
    "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/captchas-openclaw",
    "agentPageUrl": "https://openagent3.xyz/skills/captchas-openclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/captchas-openclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/captchas-openclaw/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "CAPTCHAS + OpenClaw",
        "body": "Use this skill when integrating CAPTCHAS with OpenClaw via OpenResponses tools or OpenClaw plugin tools."
      },
      {
        "title": "Configuration",
        "body": "Set environment variables:\n\nCAPTCHAS_ENDPOINT = https://agent.captchas.co\nCAPTCHAS_API_KEY = <your-api-key>\n\nHeaders:\n\nx-api-key: required (use CAPTCHAS_API_KEY).\nx-domain: optional; validated if provided.\n\nNotes:\n\nsite_key is optional; if omitted, it resolves from the API key or account default.\nAvoid sending PII in signals."
      },
      {
        "title": "OpenResponses Tool Schemas (OpenClaw Gateway)",
        "body": "Use the OpenClaw tools array shape when calling the Gateway /v1/responses endpoint.\n\n{\n  \"tools\": [\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_verify\",\n        \"description\": \"Run CAPTCHAS Agent Verify and return a decision (allow|deny|challenge).\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"site_key\": {\"type\": \"string\"},\n            \"action\": {\"type\": \"string\"},\n            \"signals\": {\"type\": \"object\", \"additionalProperties\": true},\n            \"capabilities\": {\n              \"oneOf\": [\n                {\"type\": \"object\", \"additionalProperties\": true},\n                {\"type\": \"array\", \"items\": {\"type\": \"string\"}}\n              ]\n            },\n            \"verification_mode\": {\"type\": \"string\", \"enum\": [\"backend_linked\", \"agent_only\"]},\n            \"challenge_source\": {\"type\": \"string\", \"enum\": [\"bank\", \"ai_generated\"]},\n            \"input_type\": {\"type\": \"string\", \"enum\": [\"choice\", \"image\", \"behavioral\"]},\n            \"media_url\": {\"type\": \"string\"},\n            \"media_type\": {\"type\": \"string\"}\n          },\n          \"required\": [],\n          \"additionalProperties\": false\n        }\n      }\n    },\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_challenge_complete\",\n        \"description\": \"Complete a challenge and mint a verification token when passed.\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"challenge_id\": {\"type\": \"string\"},\n            \"site_key\": {\"type\": \"string\"},\n            \"answer\": {\"type\": \"string\"}\n          },\n          \"required\": [\"challenge_id\", \"answer\"],\n          \"additionalProperties\": false\n        }\n      }\n    },\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_token_verify\",\n        \"description\": \"Verify an opaque CAPTCHAS token before completing a sensitive action.\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"token\": {\"type\": \"string\"},\n            \"site_key\": {\"type\": \"string\"},\n            \"domain\": {\"type\": \"string\"}\n          },\n          \"required\": [\"token\"],\n          \"additionalProperties\": false\n        }\n      }\n    }\n  ]\n}"
      },
      {
        "title": "OpenClaw Plugin Tool Registration",
        "body": "Register tools using api.registerTool(...) and the same JSON Schema parameters as above.\n\nExample:\n\napi.registerTool({\n  name: \"captchas_agent_verify\",\n  description: \"Run CAPTCHAS Agent Verify and return a decision (allow|deny|challenge).\",\n  parameters: {\n    type: \"object\",\n    properties: {\n      site_key: { type: \"string\" },\n      action: { type: \"string\" },\n      signals: { type: \"object\", additionalProperties: true }\n    },\n    required: [],\n    additionalProperties: false\n  },\n  async execute(_id, params) {\n    return { content: [{ type: \"text\", text: JSON.stringify(params) }] };\n  }\n});"
      },
      {
        "title": "References",
        "body": "Use /v1/agent/verify, /v1/agent/challenge/:id/complete, and /v1/agent/token-verify as the canonical API calls.\nSee captchas-human-verification/SKILL.md for workflow guidance."
      }
    ],
    "body": "CAPTCHAS + OpenClaw\n\nUse this skill when integrating CAPTCHAS with OpenClaw via OpenResponses tools or OpenClaw plugin tools.\n\nConfiguration\n\nSet environment variables:\n\nCAPTCHAS_ENDPOINT = https://agent.captchas.co\nCAPTCHAS_API_KEY = <your-api-key>\n\nHeaders:\n\nx-api-key: required (use CAPTCHAS_API_KEY).\nx-domain: optional; validated if provided.\n\nNotes:\n\nsite_key is optional; if omitted, it resolves from the API key or account default.\nAvoid sending PII in signals.\nOpenResponses Tool Schemas (OpenClaw Gateway)\n\nUse the OpenClaw tools array shape when calling the Gateway /v1/responses endpoint.\n\n{\n  \"tools\": [\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_verify\",\n        \"description\": \"Run CAPTCHAS Agent Verify and return a decision (allow|deny|challenge).\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"site_key\": {\"type\": \"string\"},\n            \"action\": {\"type\": \"string\"},\n            \"signals\": {\"type\": \"object\", \"additionalProperties\": true},\n            \"capabilities\": {\n              \"oneOf\": [\n                {\"type\": \"object\", \"additionalProperties\": true},\n                {\"type\": \"array\", \"items\": {\"type\": \"string\"}}\n              ]\n            },\n            \"verification_mode\": {\"type\": \"string\", \"enum\": [\"backend_linked\", \"agent_only\"]},\n            \"challenge_source\": {\"type\": \"string\", \"enum\": [\"bank\", \"ai_generated\"]},\n            \"input_type\": {\"type\": \"string\", \"enum\": [\"choice\", \"image\", \"behavioral\"]},\n            \"media_url\": {\"type\": \"string\"},\n            \"media_type\": {\"type\": \"string\"}\n          },\n          \"required\": [],\n          \"additionalProperties\": false\n        }\n      }\n    },\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_challenge_complete\",\n        \"description\": \"Complete a challenge and mint a verification token when passed.\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"challenge_id\": {\"type\": \"string\"},\n            \"site_key\": {\"type\": \"string\"},\n            \"answer\": {\"type\": \"string\"}\n          },\n          \"required\": [\"challenge_id\", \"answer\"],\n          \"additionalProperties\": false\n        }\n      }\n    },\n    {\n      \"type\": \"function\",\n      \"function\": {\n        \"name\": \"captchas_agent_token_verify\",\n        \"description\": \"Verify an opaque CAPTCHAS token before completing a sensitive action.\",\n        \"parameters\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"token\": {\"type\": \"string\"},\n            \"site_key\": {\"type\": \"string\"},\n            \"domain\": {\"type\": \"string\"}\n          },\n          \"required\": [\"token\"],\n          \"additionalProperties\": false\n        }\n      }\n    }\n  ]\n}\n\nOpenClaw Plugin Tool Registration\n\nRegister tools using api.registerTool(...) and the same JSON Schema parameters as above.\n\nExample:\n\napi.registerTool({\n  name: \"captchas_agent_verify\",\n  description: \"Run CAPTCHAS Agent Verify and return a decision (allow|deny|challenge).\",\n  parameters: {\n    type: \"object\",\n    properties: {\n      site_key: { type: \"string\" },\n      action: { type: \"string\" },\n      signals: { type: \"object\", additionalProperties: true }\n    },\n    required: [],\n    additionalProperties: false\n  },\n  async execute(_id, params) {\n    return { content: [{ type: \"text\", text: JSON.stringify(params) }] };\n  }\n});\n\nReferences\nUse /v1/agent/verify, /v1/agent/challenge/:id/complete, and /v1/agent/token-verify as the canonical API calls.\nSee captchas-human-verification/SKILL.md for workflow guidance."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/CAPTCHASCO/captchas-openclaw",
    "publisherUrl": "https://clawhub.ai/CAPTCHASCO/captchas-openclaw",
    "owner": "CAPTCHASCO",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/captchas-openclaw",
    "downloadUrl": "https://openagent3.xyz/downloads/captchas-openclaw",
    "agentUrl": "https://openagent3.xyz/skills/captchas-openclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/captchas-openclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/captchas-openclaw/agent.md"
  }
}