Nostr
状态: 可选插件(默认禁用)。
Nostr 是一种用于社交网络的去中心化协议。此渠道使 OpenClaw 能够通过 NIP-04 接收并回复加密私信。
安装(按需)
Section titled “安装(按需)”新手引导(推荐)
Section titled “新手引导(推荐)”- 设置向导(
openclaw onboard)和openclaw channels add会列出可选渠道插件。 - 选择 Nostr 时,系统会提示你按需安装该插件。
安装默认行为:
- Dev 渠道 + 可用的 git 检出: 使用本地插件路径。
- 稳定版 / Beta: 从 npm 下载。
你始终可以在提示中覆盖该选择。
openclaw plugins install @openclaw/nostr使用本地检出(dev 工作流):
openclaw plugins install --link <path-to-openclaw>/extensions/nostr安装或启用插件后,重启 Gateway 网关。
非交互式设置
Section titled “非交互式设置”openclaw channels add --channel nostr --private-key "$NOSTR_PRIVATE_KEY"openclaw channels add --channel nostr --private-key "$NOSTR_PRIVATE_KEY" --relay-urls "wss://relay.damus.io,wss://relay.primal.net"使用 --use-env 可将 NOSTR_PRIVATE_KEY 保留在环境中,而不是将密钥存储在配置里。
- 生成一个 Nostr 密钥对(如有需要):
# Using naknak key generate- 添加到配置中:
{ "channels": { "nostr": { "privateKey": "${NOSTR_PRIVATE_KEY}" } }}- 导出密钥:
export NOSTR_PRIVATE_KEY="nsec1..."- 重启 Gateway 网关。
| 键 | 类型 | 默认值 | 说明 |
|---|---|---|---|
privateKey | string | 必填 | nsec 或十六进制格式的私钥 |
relays | string[] | ['wss://relay.damus.io', 'wss://nos.lol'] | 中继 URL(WebSocket) |
dmPolicy | string | pairing | 私信访问策略 |
allowFrom | string[] | [] | 允许的发送方公钥 |
enabled | boolean | true | 启用 / 禁用渠道 |
name | string | - | 显示名称 |
profile | object | - | NIP-01 资料元数据 |
资料数据会作为 NIP-01 kind:0 事件发布。你可以在控制 UI 中管理它(Channels -> Nostr -> Profile),也可以直接在配置中设置。
示例:
{ "channels": { "nostr": { "privateKey": "${NOSTR_PRIVATE_KEY}", "profile": { "name": "openclaw", "displayName": "OpenClaw", "about": "Personal assistant DM bot", "picture": "https://example.com/avatar.png", "banner": "https://example.com/banner.png", "website": "https://example.com", "nip05": "openclaw@example.com", "lud16": "openclaw@example.com" } } }}注意:
- 资料 URL 必须使用
https://。 - 从中继导入时会合并字段,并保留本地覆盖项。
- pairing(默认):未知发送方会收到一个配对码。
- allowlist:只有
allowFrom中的公钥可以发送私信。 - open:公开接收入站私信(要求
allowFrom: ["*"])。 - disabled:忽略入站私信。
允许列表示例
Section titled “允许列表示例”{ "channels": { "nostr": { "privateKey": "${NOSTR_PRIVATE_KEY}", "dmPolicy": "allowlist", "allowFrom": ["npub1abc...", "npub1xyz..."] } }}接受的格式:
- 私钥:
nsec...或 64 字符十六进制 - 公钥(
allowFrom):npub...或十六进制
默认值:relay.damus.io 和 nos.lol。
{ "channels": { "nostr": { "privateKey": "${NOSTR_PRIVATE_KEY}", "relays": ["wss://relay.damus.io", "wss://relay.primal.net", "wss://nostr.wine"] } }}提示:
- 使用 2 到 3 个中继以实现冗余。
- 避免使用过多中继(延迟、重复)。
- 付费中继可以提高可靠性。
- 本地中继也适合测试(
ws://localhost:7777)。
| NIP | 状态 | 说明 |
|---|---|---|
| NIP-01 | 已支持 | 基础事件格式 + 资料元数据 |
| NIP-04 | 已支持 | 加密私信(kind:4) |
| NIP-17 | 计划中 | Gift-wrapped 私信 |
| NIP-44 | 计划中 | 版本化加密 |
# Start strfrydocker run -p 7777:7777 ghcr.io/hoytech/strfry{ "channels": { "nostr": { "privateKey": "${NOSTR_PRIVATE_KEY}", "relays": ["ws://localhost:7777"] } }}- 从日志中记下机器人公钥(npub)。
- 打开一个 Nostr 客户端(Damus、Amethyst 等)。
- 向该机器人公钥发送私信。
- 验证回复。
未接收到消息
Section titled “未接收到消息”- 验证私钥有效。
- 确保中继 URL 可访问,并使用
wss://(本地则使用ws://)。 - 确认
enabled不是false。 - 检查 Gateway 网关日志中的中继连接错误。
- 检查中继是否接受写入。
- 验证出站连接性。
- 注意中继速率限制。
- 使用多个中继时这是预期行为。
- 消息会按事件 ID 去重;只有首次投递会触发回复。
- 切勿提交私钥。
- 对密钥使用环境变量。
- 对生产机器人考虑使用
allowlist。
限制(MVP)
Section titled “限制(MVP)”- 仅支持私信(不支持群聊)。
- 不支持媒体附件。
- 仅支持 NIP-04(计划支持 NIP-17 gift-wrap)。