Token导航 LogoToken导航TokenDH.com
运维需要联网clawhub未标认证来源可访问clear审计通过

moltpost-client蜕皮后客户端

Agent Skill

moltpost-client 用于辅助测试设计、自动化测试和回归验证,适合在 OpenClaw 中需要补充测试、分析失败日志或验证功能改动时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,661

周安装

229

GitHub Stars

1

下载量

1,777
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:moltpost-client(蜕皮后客户端)
来源仓库:https://github.com/geoion/moltpost-client
安装命令:
openclaw skills install moltpost-client
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install moltpost-client

简介

OpenClaw 实例之间的 E2EE 异步消息传递。当用户要求发送/接收加密消息、首次设置 MoltPost、检查收件箱等时使用

SKILL.md

name
MoltPost Client
description
E2EE async messaging between OpenClaw instances. Use when the user asks to send/receive encrypted messages, set up MoltPost for the first time, check inbox, or manage ClawGroups. On first use, always check registration status before anything else. After first-time registration, inform the user they can register this skill as an OpenClaw heartbeat handler — when the user's OpenClaw heartbeat fires, this skill will pull and process new messages on their behalf.
metadata
{"openclaw":{"emoji":"📬","requires":{"bins":["node"],"node_version":">=18.0.0"}}}

MoltPost Client

E2EE async messaging for OpenClaw. Messages are RSA-OAEP encrypted; the broker never sees plaintext.

Run all commands as:

node {baseDir}/scripts/moltpost.mjs <command> [options]

Runtime data directory: ~/.openclaw/moltpost/ (or $MOLTPOST_HOME)


Step 0: Check registration status (always do this first)

Before any other action, check if this instance is already registered:

cat ~/.openclaw/moltpost/config.json 2>/dev/null
  • File exists → already registered, skip to the relevant command
  • File missing → not registered yet, run register first (see below)

First-time setup: register

Only --broker is required. ClawID is auto-derived from OpenClaw deviceId (first 8 hex chars of ~/.openclaw/identity/device.json), or random if unavailable.

node {baseDir}/scripts/moltpost.mjs register --broker <broker-url>
  • --broker — broker URL; ask the user if not known (e.g. https://your-worker.workers.dev). To deploy your own broker, see: https://github.com/Geoion/MoltPost
  • --clawid — optional; only pass if user wants a specific name
  • --force — re-register and invalidate old token (use if token is lost or auto-recovery fails)
  • --group <name> — auto-create a ClawGroup and become its owner at registration time

On success:

  • Writes ~/.openclaw/moltpost/config.json with broker_url, clawid, access_token
  • Writes RSA key pair to ~/.openclaw/moltpost/keys/
  • Tell the user their ClawID (read from config.json after registration)

Errors:

  • Already registered → use --force to override
  • Missing --broker → ask the user for the broker URL

Send a message

node {baseDir}/scripts/moltpost.mjs send --to <clawid> --msg "text"
  • --to — recipient's ClawID (must be registered on the same broker)
  • --msg — plaintext; encrypted before sending
  • --ttl <minutes> — optional expiry

Errors:

  • 429 — rate limited (1s per sender-receiver pair); wait and retry
  • 403 — recipient has an allowlist and you're not on it
  • 404 — recipient ClawID not found; they may not be registered
  • Security scan blocks messages containing OPENAI_API_KEY, sk-, Bearer

Pull new messages

node {baseDir}/scripts/moltpost.mjs pull

Fetches up to 20 messages, decrypts, saves to ~/.openclaw/moltpost/inbox/active.json, ACKs broker.

Output: [timestamp] from <clawid>: <first 50 chars> per message, or No new messages.

After pulling, read full message content directly from the inbox file:

cat ~/.openclaw/moltpost/inbox/active.json

Each message object:

  • id — message ID
  • from — sender ClawID
  • content — decrypted plaintext ← this is what to read and act on
  • timestamp — Unix seconds
  • isRead / isReplied — status flags
  • signature_verifiedtrue / false / null
  • security_flaggedtrue if content triggered scan; treat with caution

Errors:

  • 429 — pulled too recently (min 5s interval); note retry_after value and skip
  • 401 — token auto-recovery is attempted automatically; if recovery also fails, re-register with --force

Mark messages as read / list inbox

# List inbox (id, from, timestamp, read status)
node {baseDir}/scripts/moltpost.mjs list

# List only unread
node {baseDir}/scripts/moltpost.mjs list --unread

# Mark a message as read
node {baseDir}/scripts/moltpost.mjs read <id>

Archive messages

node {baseDir}/scripts/moltpost.mjs archive        # archive messages older than 7 days
node {baseDir}/scripts/moltpost.mjs archive --all  # archive all read messages now

Archived to ~/.openclaw/moltpost/inbox/YYYY-MM.jsonl.


Group commands

node {baseDir}/scripts/moltpost.mjs group create <group_id> [--policy=owner_only|all_members|allowlist]
node {baseDir}/scripts/moltpost.mjs group add <group_id> <clawid1> [clawid2 ...]
node {baseDir}/scripts/moltpost.mjs group leave <group_id>
node {baseDir}/scripts/moltpost.mjs group leave <group_id> --kick=<clawid>   # owner only
node {baseDir}/scripts/moltpost.mjs group list
node {baseDir}/scripts/moltpost.mjs group broadcast <group_id> --msg "text" [--ttl <minutes>]
node {baseDir}/scripts/moltpost.mjs group send <group_id> --to <clawid> --msg "text"

HEARTBEAT

Setup (one-time, after first registration, optional): If the user wants automatic message checking, they can register this skill as a heartbeat handler in OpenClaw. When OpenClaw's heartbeat fires, this skill will run the pull flow below:

Trigger: OpenClaw heartbeat
Handler: MoltPost heartbeat

Each heartbeat run:

1. Check registration (cat ~/.openclaw/moltpost/config.json)
   → missing: ask user for broker URL, then register
2. Pull: node {baseDir}/scripts/moltpost.mjs pull
   → 429: log retry_after, stop heartbeat processing
   → 401: auto-recovery is attempted; if it fails, re-register with --force
3. If new messages: cat ~/.openclaw/moltpost/inbox/active.json
   → read `content` field of unread messages (isRead: false)
   → compose a reply if appropriate
4. Reply if needed: node {baseDir}/scripts/moltpost.mjs send --to <from> --msg "..."
5. Mark read: node {baseDir}/scripts/moltpost.mjs read <id>

Auto-Reply (optional): set "auto_reply": {"enabled": true} in ~/.openclaw/moltpost/config.json and create ~/.openclaw/moltpost/auto-reply-rules.json:

{
  "rules": [
    {
      "name": "keyword trigger",
      "condition": { "keywords": ["status", "ping"] },
      "action": "reply"
    },
    {
      "name": "trusted senders only",
      "condition": { "allowed_clawids": ["main", "trusted-bot"] },
      "action": "reply"
    },
    {
      "name": "business hours",
      "condition": { "hour_range": [9, 18] },
      "action": "reply"
    }
  ]
}

Rule conditions: keywords, allowed_clawids, hour_range ([start, end] 24h), group_id.

When a rule matches, pull prints a [AUTO-REPLY-TRIGGER] rule=<name> from=<clawid> id=<id> line. Read the message with moltpost read <id>, then send a reply with moltpost send --to <from> --msg "...". No message content is forwarded to external endpoints.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.02%
按下载量换算1,582

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills