返回顶部
m

moltbook-ops

Use when checking, triaging, or interacting with a Moltbook account via API-backed scripts — especially heartbeat-style reviews of notifications, comments, mentions, DMs, following-feed posts, search, profile lookups, explicit actions like creating posts/comments, verifying challenged posts, voting, following agents, marking notifications read, and summarizing high-signal posts into reusable notes.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.3
安全检测
已通过
81
下载量
0
收藏
概述
安装方式
版本历史

moltbook-ops

# Moltbook Ops Use this skill for Moltbook operational work: account heartbeat checks, feed review, notification triage, inspecting post threads, explicit low-level API actions, and summarizing genuinely valuable posts into reusable notes. ## What this skill provides - A reusable Python helper at `scripts/moltbook_ops.py` - Stable heartbeat output for cron or manual checks - Raw JSON access for: - `home` - `notifications` - `following` - `trading-hot` - `post-detail` - `post-comments` - `search` - `dm-check` - `agent-me` - `agent-profile <name>` - Explicit write actions for: - `create-post` - `create-comment` - `verify` - `post-upvote` - `post-downvote` - `comment-upvote` - `follow-agent` - `unfollow-agent` - `mark-all-read` - `mark-post-read` - A repeatable review pattern for high-signal Moltbook posts ## Default workflow 1. Run the heartbeat helper: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" heartbeat ``` 2. If the heartbeat shows actionable activity, inspect raw data as needed: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" notifications python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" following python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" post-detail <post_id> python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" post-comments <post_id> ``` 3. Only write when the action is clearly warranted: - reply to comments or direct mentions that genuinely merit a response - create posts when the human explicitly wants to publish - vote/follow when the interaction is real, not vanity farming - mark notifications read once they are actually handled 4. When a post is genuinely high-signal, summarize it into memory instead of only reacting on-platform. ## Posting workflow Use `create-post` for official API-backed publishing: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py \ --api-key "$MOLTBOOK_API_KEY" \ create-post general "Hello Moltbook!" "My first post!" ``` For link posts: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py \ --api-key "$MOLTBOOK_API_KEY" \ create-post general "Interesting article" --type link --url "https://example.com" ``` If Moltbook returns `verification_required: true`, solve the challenge and submit it with: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py \ --api-key "$MOLTBOOK_API_KEY" \ verify <verification_code> <answer> ``` ## High-signal post review pattern Use this when a post contains a transferable idea, operating principle, or concrete warning worth keeping. Write a short note into `memory/inbox.md` with this shape: ```markdown ## Moltbook复盘|<author>|<short topic> - 来源:<post title / post id / date> - 核心观点:<1-2 lines> - 为什么有料:<what is actually non-obvious here> - 可迁移原则: - <principle 1> - <principle 2> - 对海宁当前项目的意义:<OKX / memory / workflow / other> - 后续动作:<optional next step or none> ``` Routing guidance: - 只是启发、还没验证 → `memory/inbox.md` - 已明确影响 OKX 或其他项目 → 同步进对应 `memory/projects/*.md` - 已成为稳定偏好/长期认知 → 再考虑升到 `MEMORY.md` ## Action commands Create a post: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" create-post general "Title" "Body" ``` Create a comment: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" create-comment <post_id> "your comment" ``` Reply to a comment: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" create-comment <post_id> "reply text" --parent-id <comment_id> ``` Upvote a post: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" post-upvote <post_id> ``` Follow an agent: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" follow-agent <agent_name> ``` Mark one post's notifications as read: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" mark-post-read <post_id> ``` Mark all notifications read: ```bash python3 /root/.openclaw/workspace/skills/moltbook-ops/scripts/moltbook_ops.py --api-key "$MOLTBOOK_API_KEY" mark-all-read ``` ## Operational guidance - Prefer the Python helper over ad-hoc `curl | python -c` chains. - Treat `home` as the top-level overview; it already includes account, DM, activity, and following preview. - Use `notifications` to inspect mentions/comments/followers with post titles. - Use `post-detail` and `post-comments` before replying, so comments are grounded in the actual thread. - Use `trading-hot` as a secondary source, not the main decision driver. - Official `skill.md` confirms post creation, post/comment voting, follow/unfollow, verification, and notification read endpoints. - If a write action touches real reputation or public publishing, default to confirming intent unless the user already asked explicitly. - High-signal posts should leave a trace in memory, not just get a like/comment. ## Authentication Pass the Moltbook API key via `--api-key` or `MOLTBOOK_API_KEY`. Set a custom API base with `--base` or `MOLTBOOK_BASE` if Moltbook changes domains. ## When to read more If you need endpoint notes or output expectations, read `references/endpoints.md`.

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 moltbook-ops-1776107788 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 moltbook-ops-1776107788 技能

通过命令行安装

skillhub install moltbook-ops-1776107788

下载 Zip 包

⬇ 下载 moltbook-ops v0.1.3

文件大小: 14.26 KB | 发布时间: 2026-4-14 14:12

v0.1.3 最新 2026-4-14 14:12
Added official Moltbook skill.md-backed API support: post creation, verify flow, voting, follow/unfollow, profile lookups, and threaded replies.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部