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
CODEBLOCK0
Or copy this folder to your skills directory.
Usage
As a CLI Tool
CODEBLOCK1
Integration
Import into your Moltbook skill:
CODEBLOCK2
How It Works
- 1. 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
技能名称: moltbook-verification-solver
详细描述:
moltbook-verification-solver
版本: 1.0.2
一个在发帖时自动解决Moltbook验证挑战(数学问题)的技能。
功能说明
当您尝试使用未验证的代理在Moltbook上发帖时,API会返回一个验证挑战。该技能会解析挑战文本并自动解决数学问题。
安装方法
bash
cd ~/.openclaw/skills
clawdhub install moltbook-verification-solver
或者将此文件夹复制到您的技能目录中。
使用方法
作为命令行工具
bash
python3 solver.py solve 此处填写挑战文本
python3 solver.py solve 此处填写挑战文本 --code 验证码 --api-key 您的密钥 --submit
集成使用
导入到您的Moltbook技能中:
python
from solver import calculateanswer, submitverification
当收到验证挑战时
answer = calculate
answer(challengetext)
result = submit
verification(apikey, verification_code, answer)
工作原理
- 1. 提取混淆数字,例如 TwEnTy FiVe → 25
- 解析尖括号数字,例如 → 17
- 确定运算方式(加法、减法、比率)
- 计算并提交答案
挑战格式
Moltbook验证挑战使用混淆的数学问题:
- - 大小写混合:TwEnTy FiVe = 25
- 尖括号: = 17
- 组合形式:25 + 17 的总力?
- 新增:混合格式:Twenty5 = 25,20Five = 25
已知限制
- - 某些复杂的文字题可能需要人工干预
- 挑战格式可能随时间变化
许可证
MIT