← 返回 Skills 市场
demegire

Claw Messenger - iMessage without a Mac

作者 demegire · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
272
总下载
1
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install imessage-claw-messenger
功能描述
Connect OpenClaw agents to iMessage, RCS, and SMS without a Mac or phone using Claw Messenger's relay server and API key authentication.
使用说明 (SKILL.md)

@emotion-machine/claw-messenger

iMessage, RCS & SMS channel plugin for OpenClaw — no phone or Mac Mini required.

Publisher Emotion Machine
Homepage clawmessenger.com
Source code github.com/emotion-machine-org/claw-messenger
npm @emotion-machine/claw-messenger
Issues GitHub Issues
Privacy policy clawmessenger.com/privacy
Pricing clawmessenger.com/pricing

How It Works

Claw Messenger routes messages between your OpenClaw agent and iMessage/RCS/SMS networks. The plugin connects to the Claw Messenger relay server over a WebSocket and authenticates with your API key. The relay server handles carrier-level delivery and inbound routing, then forwards messages back to your agent in real time.

OpenClaw Agent  ←→  Plugin (local)  ←→  Relay Server (WSS)  ←→  iMessage / RCS / SMS

Required Credentials

This plugin requires one credential: a Claw Messenger API key.

Property Value
Key format cm_live_{tag}_{secret}
Obtain from clawmessenger.com/dashboard
Sensitivity Secret — treat like a password. Do not commit to version control.
Storage location Stored locally in .openclaw.json at channels.claw-messenger.apiKey
Rotation Revoke and rotate at any time from the dashboard
Scope Authorizes sending and receiving messages on your account only

No other credentials, environment variables, or secrets are required.

Required Config Path

All plugin configuration is stored in a single location:

.openclaw.jsonchannels.claw-messenger

This is the only file the plugin reads or writes. The full config schema is documented in the Configuration Reference below and declared in the plugin manifest (openclaw.plugin.jsonconfigSchema).

External Connections

The plugin makes exactly one external connection:

Property Value
Host claw-messenger.onrender.com
Protocol wss:// (TLS-encrypted WebSocket)
Purpose Relay server that bridges OpenClaw to iMessage/RCS/SMS carrier networks
Hosting Hosted on Render (managed cloud platform) by Emotion Machine. The onrender.com subdomain is standard for Render deployments.
Data handling Stateless bridge — message content passes through in transit but is not persisted on the relay server. Message metadata (sender, recipient, timestamps) is logged for delivery tracking and billing per the Privacy Policy.
Custom domain If your organization requires a custom domain or self-hosted deployment, contact [email protected]

No other external connections are made.

Plugin Manifest Summary

The plugin's openclaw.plugin.json manifest declares the following (reproduced here for transparency):

  • Required credentials: apiKey (marked sensitive: true, placeholder cm_live_...)
  • Config path: .openclaw.jsonchannels.claw-messenger
  • External connection: wss://claw-messenger.onrender.com (relay server)
  • Config schema: apiKey (required string), serverUrl (optional string), preferredService (optional enum), dmPolicy (optional enum), allowFrom (optional array)

All credentials and config paths used at runtime are declared in the manifest. There are no undeclared secrets, env vars, or config files.

Install

openclaw plugins install @emotion-machine/claw-messenger

The package is published to npm as @emotion-machine/claw-messenger. You can verify the package contents before installing:

npm pack @emotion-machine/claw-messenger --dry-run

Configuration

After installing, add the plugin to your OpenClaw config (.openclaw.json) under channels:

{
  "channels": {
    "claw-messenger": {
      "enabled": true,
      "apiKey": "cm_live_XXXXXXXX_YYYYYYYYYYYYYY",  // required — your API key
      "serverUrl": "wss://claw-messenger.onrender.com",  // default relay server
      "preferredService": "iMessage",  // "iMessage" | "RCS" | "SMS"
      "dmPolicy": "pairing",           // "open" | "pairing" | "allowlist"
      "allowFrom": ["+15551234567"]    // only used with "allowlist" policy
    }
  }
}

Configuration Reference

Field Required Default Description
apiKey Yes Your cm_live_* API key. Stored locally in .openclaw.json.
serverUrl No wss://claw-messenger.onrender.com WebSocket relay server URL.
preferredService No iMessage Default delivery service (iMessage, RCS, or SMS).
dmPolicy No pairing Inbound DM policy: open, pairing, or allowlist.
allowFrom No [] Phone numbers to accept when using allowlist policy.

Security & Privacy

  • Your cm_live_* API key is a secret credential. Add .openclaw.json to .gitignore to avoid committing it to version control.
  • You can revoke and rotate API keys at any time from the dashboard. We recommend starting with a scoped or test key.
  • All connections use TLS-encrypted WebSockets (wss://). Message content is not stored on the relay server.
  • Message metadata (sender, recipient, timestamps) is logged for delivery tracking and billing. See the Privacy Policy.
  • Billing is based on monthly message volume. See Pricing for plans and limits.

Features

  • Send & receive text messages and media (images, video, audio, documents)
  • iMessage reactions — love, like, dislike, laugh, emphasize, question (tapback)
  • Group chats — send to existing groups or create new ones
  • Typing indicators — sent and received
  • DM security policies — open, pairing-based approval, or allowlist

Agent Tools

The plugin registers two tools your agent can call:

Tool Description
claw_messenger_status Check connection status, server URL, and preferred service
claw_messenger_switch_service Switch the preferred messaging service at runtime

Slash Commands

Command Description
/cm-status Show connection state, server URL, and preferred service
/cm-switch \x3Cservice> Switch preferred service (iMessage, RCS, or SMS)

Getting Started

  1. Sign up at clawmessenger.com
  2. Create an API key from the dashboard
  3. Install the plugin: openclaw plugins install @emotion-machine/claw-messenger
  4. Add the config above with your API key (keep .openclaw.json out of version control)
  5. Start a conversation — your agent can now send and receive messages

Support

License

UNLICENSED

安全使用建议
Before installing: 1) Verify provenance — check the npm package @emotion-machine/claw-messenger and the GitHub repo referenced in SKILL.md to ensure the publisher/publisher ID match the registry entry and the package contents match the manifest. 2) Confirm the relay host (claw-messenger.onrender.com) is operated by the publisher and that TLS certificate/domain ownership is valid. 3) Treat the cm_live_* API key as a secret: add .openclaw.json to .gitignore, start with a scoped or test key, and be prepared to revoke/rotate it. 4) Review the privacy policy and billing terms — message content will transit a third-party relay and metadata is logged. 5) If your organization needs stronger guarantees, ask about a self-hosted relay or custom domain deployment and request the plugin's source for audit. If you cannot validate the package and publisher, consider the risk that messages and metadata would be exposed to an untrusted third party and do not install.
功能分析
Type: OpenClaw Skill Name: imessage-claw-messenger Version: 1.0.0 The skill bundle describes a legitimate-looking iMessage/SMS relay plugin for OpenClaw. It connects to a TLS-encrypted WebSocket relay server (claw-messenger.onrender.com) and requires an API key stored locally in .openclaw.json. The documentation (SKILL.md) is transparent about its external connections, data handling policies, and security best practices, such as advising the user to exclude configuration files from version control. No evidence of malicious intent, prompt injection, or unauthorized data exfiltration was found.
能力评估
Purpose & Capability
The described capability (bridging OpenClaw to iMessage/RCS/SMS via a relay server) is coherent with requiring a single Claw Messenger API key and a WebSocket relay. However the registry metadata lists Source/Homepage as unknown while SKILL.md advertises clawmessenger.com, an npm package, and a GitHub repo — this mismatch of provenance is unexpected and should be verified.
Instruction Scope
SKILL.md instructions are scoped to installing/ configuring the plugin and connecting to the declared relay wss://claw-messenger.onrender.com, and declare the single config path (.openclaw.json → channels.claw-messenger). The instructions do require routing message content through the relay (explicitly stated), which is necessary for the claimed purpose but has privacy implications. No instructions request other system files, secrets, or broad data collection.
Install Mechanism
This is an instruction-only skill (no install spec or code files in the registry entry), but SKILL.md instructs installing an npm package (@emotion-machine/claw-messenger) and provides URLs. The absence of code files in the registry plus claims of an npm package and GitHub repo is a provenance mismatch that should be resolved by verifying the npm package contents and the referenced repository before installation.
Credentials
Only a single sensitive credential (cm_live_* API key) is required and declared, stored in .openclaw.json. That is proportionate to the stated purpose. The SKILL.md explicitly says no other env vars or credentials are needed. Users should still treat the API key as secret and use a scoped/test key initially.
Persistence & Privilege
The skill does not request always:true, does not claim system-wide changes, and declares only a single local config path (.openclaw.json → channels.claw-messenger). There is no evidence it modifies other skills or asks for broader privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install imessage-claw-messenger
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /imessage-claw-messenger 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of iMessage, RCS & SMS channel plugin for OpenClaw. - Enables sending and receiving messages through iMessage, RCS, and SMS without requiring a phone or Mac. - Connects OpenClaw agents to carrier networks via a secure, managed relay server (no local hardware needed). - Simple setup with a single API key and unified configuration in `.openclaw.json`. - Includes support for group chats, media messages, iMessage reactions, and DM security policies. - Provides agent tools and slash commands for checking status and switching messaging services.
元数据
Slug imessage-claw-messenger
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Claw Messenger - iMessage without a Mac 是什么?

Connect OpenClaw agents to iMessage, RCS, and SMS without a Mac or phone using Claw Messenger's relay server and API key authentication. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 272 次。

如何安装 Claw Messenger - iMessage without a Mac?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install imessage-claw-messenger」即可一键安装,无需额外配置。

Claw Messenger - iMessage without a Mac 是免费的吗?

是的,Claw Messenger - iMessage without a Mac 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Claw Messenger - iMessage without a Mac 支持哪些平台?

Claw Messenger - iMessage without a Mac 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Claw Messenger - iMessage without a Mac?

由 demegire(@demegire)开发并维护,当前版本 v1.0.0。

💬 留言讨论