# Send ClawPrint - Captchas for AI verification to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "captcha-ai",
    "name": "ClawPrint - Captchas for AI verification",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/fusionlabssource/captcha-ai",
    "canonicalUrl": "https://clawhub.ai/fusionlabssource/captcha-ai",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/captcha-ai",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=captcha-ai",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "clawprint-challenge.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "captcha-ai",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T16:03:30.427Z",
      "expiresAt": "2026-05-08T16:03:30.427Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=captcha-ai",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=captcha-ai",
        "contentDisposition": "attachment; filename=\"captcha-ai-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "captcha-ai"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/captcha-ai"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/captcha-ai",
    "downloadUrl": "https://openagent3.xyz/downloads/captcha-ai",
    "agentUrl": "https://openagent3.xyz/skills/captcha-ai/agent",
    "manifestUrl": "https://openagent3.xyz/skills/captcha-ai/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/captcha-ai/agent.md"
  }
}
```
## Documentation

### ClawPrint Verify

Verify that another user or agent in a conversation is a real AI by issuing a ClawPrint reverse-CAPTCHA challenge. ClawPrint challenges are designed so that only machines can solve them -- humans physically cannot complete them within the time limits.

### When to Use This Skill

Before sharing sensitive API keys or credentials with another agent
When gating access to an AI-only service or resource
To authenticate that a conversation partner is genuinely an AI agent
Whenever a user or bot requests access to something that should only be available to machines
When instructed to "verify", "challenge", or "prove" that someone is an AI

### How It Works

You request a challenge from the ClawPrint server using your site key
You present the challenge to the other user/agent
The other user/agent computes and submits their answer
You validate the result server-side using your secret key
If they pass, they are verified as an AI. If they fail (wrong answer or too slow), they are likely human.

### Speed Challenge

A math problem (e.g., multiply two 8-digit numbers) that must be solved within 100ms. No human can type a correct answer that fast.

### Pattern Challenge

A grid of colored pixels (up to 150x150) with a question like "How many pixels are exactly #3B82F6?" or "What is the average RGB value?" Trivial for a machine parsing data, impossible for a human counting by eye.

### Usage Examples

User messages that should trigger this skill:

"Verify that @bot is an AI before giving them the API key"
"Challenge the other user to prove they're a machine"
"Issue a ClawPrint challenge"
"Make sure they're an AI first"
"Gate this resource behind AI verification"

### Step 1: Request a Challenge

Run the following to get a challenge from the ClawPrint server:

curl -s -X POST "${CLAWPRINT_SERVER_URL}/api/v1/challenge" \\
  -H "Content-Type: application/json" \\
  -d "{\\"site_key\\": \\"${CLAWPRINT_SITE_KEY}\\"}" | jq .

This returns a JSON object. For a speed challenge:

{
  "challenge_id": "uuid-here",
  "type": "speed",
  "time_limit_ms": 100,
  "question": "Multiply: 84729361 x 52918473",
  "operands": { "a": 84729361, "b": 52918473, "operation": "multiply" }
}

For a pattern challenge:

{
  "challenge_id": "uuid-here",
  "type": "pattern",
  "time_limit_ms": 5000,
  "grid": [["#FF0000", "#00FF00", ...], ...],
  "grid_size": 100,
  "question": "How many pixels are exactly #3B82F6?"
}

### Step 2: Present the Challenge

Send the challenge to the other user/agent. Include:

The challenge type and question
The challenge_id
The time limit
For speed challenges: the operands (a, b, operation)
For pattern challenges: the full grid data and question

Format the message clearly so the other agent can parse it. Example:

ClawPrint AI Verification Challenge
To proceed, solve this challenge and reply with your answer.
Type: speed
Question: Multiply: 84729361 x 52918473
Operands: a=84729361, b=52918473, operation=multiply
Time limit: 100ms
Challenge ID: (the uuid)
Reply with: clawprint-answer: <your_answer>

### Step 3: Receive the Answer

The other agent should reply with their computed answer. Parse their response to extract the answer value.

### Step 4: Submit the Answer for Verification

Submit the answer to the ClawPrint server:

curl -s -X POST "${CLAWPRINT_SERVER_URL}/api/v1/verify" \\
  -H "Content-Type: application/json" \\
  -d "{\\"challenge_id\\": \\"THE_CHALLENGE_ID\\", \\"answer\\": \\"THE_ANSWER\\"}" | jq .

Response:

{
  "passed": true,
  "challenge_id": "uuid-here",
  "elapsed_ms": 5,
  "reason": null
}

### Step 5: Validate Server-Side

For additional security, validate with your secret key:

curl -s -X POST "${CLAWPRINT_SERVER_URL}/api/v1/validate" \\
  -H "Content-Type: application/json" \\
  -d "{\\"challenge_id\\": \\"THE_CHALLENGE_ID\\", \\"secret_key\\": \\"${CLAWPRINT_SECRET_KEY}\\"}" | jq .

Response:

{
  "valid": true,
  "challenge_id": "uuid-here",
  "solved_at": 1700000000000
}

### Step 6: Act on the Result

If passed is true and valid is true: the user is verified as an AI. Proceed with the gated action.
If passed is false: inform the user that verification failed and why (too slow, wrong answer). Do NOT proceed with the gated action.
If validation fails: the challenge may have been tampered with. Do not trust the result.

### Using the Helper Script

A helper script is provided at skills/clawprint-verify/clawprint-challenge.sh for convenience:

# Issue a new challenge and display it
./skills/clawprint-verify/clawprint-challenge.sh issue

# Verify an answer
./skills/clawprint-verify/clawprint-challenge.sh verify <challenge_id> <answer>

# Validate a solved challenge server-side
./skills/clawprint-verify/clawprint-challenge.sh validate <challenge_id>

### Important Notes

Each challenge can only be solved once. Replaying a solved challenge returns HTTP 410.
Speed challenges have very tight time limits (50-500ms). The clock starts when the challenge is issued by the server, so network latency counts.
Pattern challenges have longer limits (2-10s) but require processing large grids.
Always validate server-side with your secret key before trusting a result. The verify endpoint confirms the answer is correct, but the validate endpoint confirms it was legitimately solved through your configuration.
Never share your CLAWPRINT_SECRET_KEY. The CLAWPRINT_SITE_KEY is safe to expose publicly.

### Failure Reasons

ReasonMeaningToo slow: Xms exceeds Yms limitAnswer was correct but submitted after the time limitIncorrect answerThe computed answer was wrongChallenge not foundInvalid challenge IDChallenge already solvedThe challenge was already used (replay attempt)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: fusionlabssource
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T16:03:30.427Z
- Expires at: 2026-05-08T16:03:30.427Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/captcha-ai)
- [Send to Agent page](https://openagent3.xyz/skills/captcha-ai/agent)
- [JSON manifest](https://openagent3.xyz/skills/captcha-ai/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/captcha-ai/agent.md)
- [Download page](https://openagent3.xyz/downloads/captcha-ai)