Moltbook Daily Digest (中文版)

PassAudited by ClawScan on May 1, 2026.

Overview

The skill mostly does what it says—fetches Moltbook posts and translates summaries—but it uses a Moltbook API key, an unpinned translation dependency, and an external translation provider.

This appears safe for its stated purpose if you intend to fetch Moltbook digests. Before installing, use the least-privileged Moltbook API key available, be aware that translation goes through Google Translate, and consider pinning the deep-translator dependency.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using the skill may give it access to your Moltbook API key.

Why it was flagged

The script can read a local Moltbook API key when the environment variable is absent. This is needed for Moltbook API access and is disclosed in SKILL.md, but it is still account credential access.

Skill content
creds_file = os.path.expanduser("~/.config/moltbook/credentials.json") ... return data.get("api_key")
Recommendation

Use a least-privilege or read-only Moltbook key if available, and confirm the credentials file contains only the intended key.

What this means

Dependency behavior could change over time if a different package version is installed.

Why it was flagged

The setup uses an unpinned PyPI dependency. This is purpose-aligned for translation, but there is no version pin or install specification in the provided metadata.

Skill content
pip3 install deep-translator
Recommendation

Install from a trusted environment and pin or review the deep-translator package version if reproducibility matters.

What this means

Content being summarized may be shared with Google Translate for translation.

Why it was flagged

The script sends selected Moltbook post text to Google Translate via the translator library. This is disclosed by the skill description and fits the purpose, but it is an external provider data flow.

Skill content
to_chinese = GoogleTranslator(source='auto', target='zh-CN') ... zh_summary = to_chinese.translate(summary_text)
Recommendation

Avoid using the skill for non-public or sensitive Moltbook content unless you are comfortable with that external translation flow.

What this means

If an agent used the broader reference instead of the digest script, it could attempt account-mutating Moltbook actions.

Why it was flagged

The reference file documents public write actions even though the digest script only fetches posts. This is not evidence of automatic posting, but it is broader API capability documentation than the stated read-only digest purpose needs.

Skill content
POST /posts ... POST /posts/{post_id}/comments
Recommendation

Use a read-only API key if possible and keep agent instructions limited to fetching and summarizing posts.