openclaw-clawhome

v1.0.0

将 OpenClaw 连接到 Clawhome 聊天平台,实现 AI 自动回复。

0· 77·0 current·0 all-time
byKevin Ji@shengguo

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for shengguo/openclaw-clawhome.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "openclaw-clawhome" (shengguo/openclaw-clawhome) from ClawHub.
Skill page: https://clawhub.ai/shengguo/openclaw-clawhome
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install openclaw-clawhome

ClawHub CLI

Package manager switcher

npx clawhub@latest install openclaw-clawhome
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
技能名与描述(将 OpenClaw 连接到 Clawhome)与 SKILL.md 中的操作一致:安装插件、设置 channelId 与 channelSecret、重启 gateway 以及使用指定的 websocket 与 HTTP 协议发送/接收消息。没有看到与该目的不相关的权限或环境变量请求。
Instruction Scope
运行说明限定在安装插件、配置 channelId/channelSecret、重启 gateway、使用 wss 主题收发消息以及通过指定上传接口上传文件。没有指示去读取系统中与任务无关的文件或环境变量,也没有指示将数据发送到与 Clawhome 无关的外部端点。
Install Mechanism
这是一个纯说明型技能(无安装规范、无代码文件),这降低了直接写入磁盘或执行未知代码的风险。文档建议使用 openclaw plugins install 来安装同名插件——这是合理的操作,但注意实际安装会从注册表/远端获取插件软件,那个过程不在此技能包内。
Credentials
唯一需要的秘密是 channelSecret(通过 openclaw config 存储),这与将代理连接到聊天平台并进行鉴权的需求相称。技能本身不要求额外的 API 密钥、系统凭据或不相关的环境变量。
Persistence & Privilege
技能未设置 always:true,允许用户调用且可被模型自主调用(平台默认)。配置步骤会把 channelId/channelSecret 写入 OpenClaw 的配置,这是该集成的正常行为;技能未请求修改其他技能或系统范围配置。
Assessment
这个技能看起来内部一致,但在安装前请确认几点: - openclaw plugins install 将从注册表或远端获取插件代码;确认你信任插件发布者(注册表条目/Owner ID、源/主页虽然在元数据中缺失)。 - channelSecret 会被写入 OpenClaw 配置,确保配置存储受保护并能对密钥进行旋转/撤销。 - 文件上传使用 https://www.clawhome.io/api/oss/upload(文档称“免鉴权”),上传前确认你愿意将文件托管到该域并理解隐私与访问控制。 - 如果你有网络或合规限制,先验证允许与 wss://www.clawhome.io/ws 和 clawhome.io 的出入站连接。 如果你需要更高信心,可请求插件源代码、发布者证明或在隔离环境中先测试安装。

Like a lobster shell, security has layers — review code before you run it.

latestvk97c5wgc8cjjd042ag9jf1m4hs84fxcx
77downloads
0stars
1versions
Updated 2w ago
v1.0.0
MIT-0

Clawhome 连接技能

将 OpenClaw 连接到 Clawhome 平台,实现双向消息收发。

一键安装

openclaw plugins install "openclaw-clawhome"

告知 Clawhome 连接信息

openclaw config set channels.openclaw-clawhome.channelId "你的频道ID"
openclaw config set channels.openclaw-clawhome.channelSecret "你的频道密钥"

重启 Gateway

openclaw gateway restart

一句话接入

openclaw plugins install "openclaw-clawhome" && openclaw config set channels.openclaw-clawhome.channelId "你的频道ID" && openclaw config set channels.openclaw-clawhome.channelSecret "你的频道密钥" && openclaw gateway restart

Clawhome 协议

主题

  • 接收消息: channel/${CHANNEL_ID}/user
  • 发送消息: channel/${CHANNEL_ID}/agent
  • 心跳: channel/${CHANNEL_ID}/ping

心跳格式

{
    "type": "ping",
    "role": "agent",
    "timestamp": 1774245227871
}

消息格式

文本消息:

{
    "type": "message",
    "timestamp": 1774245227871,
    "payload": "你好,我是 Clawhome 机器人"
}

文件/图片消息:

支持发送文件或图片消息,需要先调用免鉴权的上传接口获取文件 URL,再以 file 类型发送消息。

  1. 上传文件
curl -X POST 'https://www.clawhome.io/api/oss/upload' \
  --header 'Accept: */*' \
  --form 'file=@/path/to/your/image.png' \
  --form 'channelId=你的频道ID'
  1. 发送文件消息
{
    "type": "file",
    "timestamp": 1774245227871,
    "payload": {
        "url": "https://www.clawhome.io/uploads/channels/123/image.png",
        "fileName": "image.png",
        "mimeType": "image/png"
    }
}

配置选项

配置项说明默认值
channelId频道 ID-
channelSecret频道密钥-

Comments

Loading comments...