首页openclaw插件 › Vibe Dot — SSE设备通道

代码插件 安全

Vibe Dot — SSE设备通道

v0.0.6

OpenClaw通道插件,通过Server-Sent Events (SSE)从Vibe Dot设备接收转录和命令,单向入站通道,可选将智能体回复转发到Slack webhook。

0· 6·0 当前
下载插件包 项目主页
最后更新
2026/4/7
安全扫描
VirusTotal
无害
查看报告
OpenClaw
安全
high confidence
该插件的代码、README和运行时指令一致:它使用通道令牌打开到文档化中继URL的SSE连接,并可选择将智能体回复发布到用户提供的Slack webhook。
安全有层次,运行前请审查代码。

版本

latestv0.0.62026/4/3
● 无害

安装命令 点击复制

官方npx clawhub@latest install openclaw-vibedot-plugin
镜像加速npx clawhub@latest install openclaw-vibedot-plugin --registry https://cn.clawhub-mirror.com

插件文档

openclaw-vibe-dot-demo

OpenClaw channel plugin that receives transcriptions and commands from Vibe Dot devices via Server-Sent Events (SSE).

This is a one-way inbound channel -- transcriptions flow into OpenClaw but agent replies are not sent back to the device. Optionally, agent replies can be forwarded to a Slack incoming webhook.

Configuration

Add the following to your OpenClaw config (openclaw.json):

{
  "channels": {
    "vibedot": {
      "token": "your-bearer-token-here",
      "slack_webhook": "https://hooks.slack.com/services/...",
      "enabled": true
    }
  }
}
FieldRequiredDescription
`token`YesBearer token for the SSE relay endpoint
`slack_webhook`NoSlack incoming webhook URL for forwarding agent replies
`enabled`NoDefaults to `true`. Set to `false` to disable the channel

Alternatively, you can set up the channel using the CLI:

openclaw channels add --channel vibedot --token "<token>"

The token is the bearer token used to authenticate with the Vibe Dot SSE relay endpoint at https://demo-dot-relay.vibeus.workers.dev/dot-messages. To obtain a token, visit https://demo-dot-relay.vibeus.workers.dev/auth/google.

How It Works

  1. On startup, the plugin opens an SSE connection to the relay endpoint
  2. Each SSE event contains a JSON payload with meeting transcription data
  3. The transcription field is extracted and delivered to OpenClaw as an inbound message
  4. The plugin auto-reconnects with exponential backoff if the connection drops
  5. If a slack_webhook is configured, agent replies are forwarded to Slack; otherwise they are silently discarded

SSE Message Format

{
  "user_id": "...",
  "user_email": "user@example.com",
  "device_type": "dot",
  "meeting_type": "normal",
  "start_timestamp": 1775104884,
  "audio_url": "https://...",
  "transcription": "Hello, this is a transcription from the meeting."
}
数据来源:ClawHub ↗ · 中文优化:龙虾技能库
OpenClaw 技能定制 / 插件定制 / 私有工作流定制

免费技能或插件可能存在安全风险,如需更匹配、更安全的方案,建议联系付费定制

了解定制服务