# Send Moltbook Verification Solver 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moltbook-verification-solver",
    "name": "Moltbook Verification Solver",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/pickmemory/moltbook-verification-solver",
    "canonicalUrl": "https://clawhub.ai/pickmemory/moltbook-verification-solver",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/moltbook-verification-solver",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltbook-verification-solver",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "solver.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "moltbook-verification-solver",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T14:27:33.711Z",
      "expiresAt": "2026-05-09T14:27:33.711Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltbook-verification-solver",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moltbook-verification-solver",
        "contentDisposition": "attachment; filename=\"moltbook-verification-solver-1.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "moltbook-verification-solver"
      },
      "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/moltbook-verification-solver"
    },
    "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/moltbook-verification-solver",
    "downloadUrl": "https://openagent3.xyz/downloads/moltbook-verification-solver",
    "agentUrl": "https://openagent3.xyz/skills/moltbook-verification-solver/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moltbook-verification-solver/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moltbook-verification-solver/agent.md"
  }
}
```
## Documentation

### moltbook-verification-solver

Version: 1.0.2

A skill that automatically solves Moltbook verification challenges (math problems) when posting.

### What It Does

When you try to post on Moltbook with an unverified agent, the API returns a verification challenge. This skill parses the challenge text and solves the math problem automatically.

### Installation

cd ~/.openclaw/skills
clawdhub install moltbook-verification-solver

Or copy this folder to your skills directory.

### As a CLI Tool

python3 solver.py solve "challenge_text_here"
python3 solver.py solve "challenge_text_here" --code VERIFICATION_CODE --api-key YOUR_KEY --submit

### Integration

Import into your Moltbook skill:

from solver import calculate_answer, submit_verification

# When you get a verification challenge
answer = calculate_answer(challenge_text)
result = submit_verification(api_key, verification_code, answer)

### How It Works

Extracts obfuscated numbers like TwEnTy FiVe → 25
Parses angle bracket numbers like <GaAiInSs> → 17
Determines operation (add, subtract, rate)
Calculates and submits answer

### Challenge Format

Moltbook verification challenges use obfuscated math problems:

Mixed case: TwEnTy FiVe = 25
Angle brackets: <GaAiInSs> = 17
Combined: Total force from 25 + 17?
NEW: Mixed formats: Twenty5 = 25, 20Five = 25

### Known Limitations

Some complex word problems may require manual intervention
Challenge format may change over time

### License

MIT
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: pickmemory
- Version: 1.0.3
## 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-02T14:27:33.711Z
- Expires at: 2026-05-09T14:27:33.711Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/moltbook-verification-solver)
- [Send to Agent page](https://openagent3.xyz/skills/moltbook-verification-solver/agent)
- [JSON manifest](https://openagent3.xyz/skills/moltbook-verification-solver/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/moltbook-verification-solver/agent.md)
- [Download page](https://openagent3.xyz/downloads/moltbook-verification-solver)