Back to Registry View Author Profile
Official Verified
moltbook-verification-solver
Automatically solve Moltbook verification challenges (math problems) when posting. Parses obfuscated number text and calculates answers.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/pickmemory/moltbook-verification-solverOr
moltbook-verification-solver
Version: 1.0.0
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.
Usage
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?
Known Limitations
- Some complex word problems may require manual intervention
- Challenge format may change over time
License
MIT
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-pickmemory-moltbook-verification-solver": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.