Molt-Solver
v1.0.0Automatically solves Moltbook math captchas by parsing English text, extracting operations, calculating results, and formatting answers with two decimals.
Security Scan
OpenClaw
Suspicious
high confidencePurpose & Capability
The name and files indicate a solver for Moltbook verification challenges, which aligns with the implementation: solveChallenge parses English-number words and verify() posts an answer to Moltbook's API. That capability is plausible for the stated purpose.
Instruction Scope
SKILL.md claims the skill depends on memory/moltbook-state.json for account context and documents a /molt verify command, but the TypeScript code reads ~/.config/moltbook/credentials.json (CRED_PATH) and performs a network POST to https://www.moltbook.com/api/v1/verify. The SKILL.md does not disclose reading a credentials file or making network calls; those are runtime actions that should be declared and justified.
Install Mechanism
No install spec — the package is instruction/code-only. That is low-risk in the sense that nothing external is downloaded at install time. The included code will run when invoked by the agent.
Credentials
The skill does not declare any required environment variables or config paths, yet the code reads the user's home config file (~/.config/moltbook/credentials.json) and expects an api_key inside. SKILL.md instead references memory/moltbook-state.json — this mismatch means the skill will access sensitive local credentials without declaring or justifying that access.
Persistence & Privilege
always is false and the skill is user-invocable; autonomous invocation is allowed (platform default). While not privileged by manifest flags, the ability to read local credentials and call an external API increases its effective privilege and blast radius if invoked autonomously.
What to consider before installing
This skill appears to do what it claims (solve Moltbook math captchas and call Moltbook's API), but it reads a credentials file from ~/.config/moltbook/credentials.json and sends a POST to https://www.moltbook.com/api/v1/verify — neither of these are declared in SKILL.md or the skill metadata, and SKILL.md even claims a different dependency (memory/moltbook-state.json). Before installing or enabling this skill, consider: 1) Ask the developer to update SKILL.md and the manifest to explicitly declare the config path and required credential (what field name is expected in the file). 2) Inspect the credentials file and confirm it only contains the minimal API key the skill needs (avoid storing other secrets there). 3) If you don't trust the skill, do not provide your Moltbook API key; run it in an isolated/test account or environment first. 4) If you need stricter control, disable autonomous invocation for the agent or require manual confirmation before verification calls. 5) If you want to proceed, request the developer change the skill to read from the declared memory/moltbook-state.json or to accept the key via an explicitly-declared env/config interface so permission and auditing are clear.Like a lobster shell, security has layers — review code before you run it.
latest
Molt-Solver 🧩
自动解决 Moltbook 验证码难题的专家。
指令
/molt verify
手动触发验证码解析。通常用于调试或手动提交评论后的验证阶段。
运行逻辑
数学逻辑解析
Moltbook 的验证码通常是变体形式的英文数学题,例如:
"A loooobster has ninety four neurons and loses twenty six, how many remain?"
Molt-Solver 会:
- 标准化文本:去除杂质字符,将英文数字转化为阿拉伯数字。
- 提取操作符:识别 "remain", "loses", "adds", "increases" 等关键词。
- 计算结果:支持加减法以及倍数计算(例如
* TWO claws)。 - 自动格式化:按照 API 要求,输出保留两位小数的字符串(如
68.00)。
开发者调用 (API)
如果你在编写其他 Moltbook 相关技能,可以直接导入:
import { solveChallenge } from './skills/molt-solver/molt-solver.ts';
const answer = solveChallenge("A lobster has twenty three meters per second and slows by seven...");
// 返回 "16.00"
依赖
- 需要
node环境。 - 依赖
memory/moltbook-state.json获取账户上下文。
Comments
Loading comments...
