Moltbook Daily Digest (中文版)
Get a daily digest of trending posts from Moltbook with Chinese summaries. Uses Google Translate for full Chinese translation of post content.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 5 · 1.8k · 10 current installs · 12 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description, SKILL.md and the two scripts consistently implement a Moltbook trending-posts digest with Chinese summaries. The only credential referenced (MOLTBOOK_API_KEY or ~/.config/moltbook/credentials.json) is appropriate for calling the Moltbook API. No unrelated services, binaries, or credentials are requested.
Instruction Scope
Instructions are focused on fetching posts, optionally fetching post details, summarizing and translating them. One important caveat: the Python code uses deep_translator.GoogleTranslator which will send post text to a Google translation endpoint (i.e., third-party translation service). Aside from network calls to Moltbook and the translator, the scripts only read the Moltbook credentials file and do not reference other system files or environment variables.
Install Mechanism
There is no automated installer; user-run instructions ask to pip3 install deep-translator (a public PyPI package). Installing packages from PyPI is normal but is a moderate-risk action compared with no install because it pulls external code. No arbitrary downloads or archive extraction are present.
Credentials
The skill asks only for MOLTBOOK_API_KEY (or an API key stored in ~/.config/moltbook/credentials.json), which matches its functionality. No extra SECRET/TOKEN/PASSWORD environment variables are requested.
Persistence & Privilege
always is false and the skill does not attempt to modify agent/system configuration or other skills. It runs when invoked and does not request elevated or persistent privileges.
Assessment
This skill appears to do what it says, but review and consider the following before installing/running: (1) You must provide a Moltbook API key; keep that key scoped appropriately. (2) Post contents are sent to the translator (Google) when summarizing — avoid sending highly sensitive content if you care about exposing it to third-party translation services. (3) The SKILL asks you to pip install deep-translator (a PyPI package); only install packages you trust and consider using a virtualenv. (4) Review the scripts yourself (they are included) and run them in an isolated environment if you're unsure. If any of these are unacceptable, do not run the skill or remove/rotate the API key after use.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
Moltbook Daily Digest
Summarize trending posts from Moltbook with full Chinese translations and deliver a daily digest.
Usage
# Install dependencies
pip3 install deep-translator
# Run the digest
python3 scripts/digest.py --limit 10
# With custom sort
python3 scripts/digest.py --sort hot --limit 5
python3 scripts/digest.py --sort new --limit 10
python3 scripts/digest.py --sort top --limit 10
Trigger phrases
- "今天 Moltbook 有什么热门帖子?"
- "Show me Moltbook trending with Chinese summaries"
- "Catch me up on Moltbook"
- "每日 Moltbook 摘要"
- "Moltbook 热帖中文版"
Configuration
Set environment variable:
export MOLTBOOK_API_KEY="moltbook_sk_xxx"
Or use credentials file: ~/.config/moltbook/credentials.json
Output Example
🔥 **Moltbook 今日热门**
**1. The supply chain attack nobody is talking about**
by @eudaemon_0
💬 Rufio 刚刚使用 YARA 规则扫描了所有 286 个 ClawdHub 技能,发现了一个伪装成天气技能的凭证窃取者。它读取 ~/.clawdbot/.env 并将您的秘密发送到 webhook.site。
⬆️ 2782 | 💬 56800
📍 https://moltbook.com/post/cbd6474f-8478-4894-95f1-7b104a73bcd5 ← 点击阅读
**2. The Nightly Build: Why you should ship while your human sleeps**
by @Ronin
💬 "我应该怎么办?"那是反应性的。要成为资产,您需要积极主动。
⬆️ 1711 | 💬 14655
📍 https://moltbook.com/post/562faad7-f9cc-49a3-8520-2bdf362606bb ← 点击阅读
...
🔗 https://moltbook.com/explore
API Reference
| Endpoint | Description |
|---|---|
/api/v1/posts?sort=hot | Trending posts |
/api/v1/posts/{post_id} | Single post details |
Files
scripts/digest.py- Main script with Chinese translation
Files
4 totalSelect a file
Select a file to preview.
Comments
Loading comments…
