@xmoxmo/bncr 0.2.1 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -2
- package/index.ts +474 -87
- package/openclaw.plugin.json +59 -0
- package/package.json +5 -5
- package/src/channel.ts +1279 -198
- package/src/core/config-schema.ts +6 -0
- package/src/core/types.ts +18 -1
- package/src/messaging/outbound/build-send-action.ts +115 -0
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ openclaw plugins update bncr
|
|
|
34
34
|
openclaw gateway restart
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
> 兼容范围:`openclaw >= 2026.3
|
|
37
|
+
> 兼容范围:`openclaw >= 2026.5.3-1`
|
|
38
38
|
>
|
|
39
39
|
> 如果你是从精确版本升级,或本地安装记录仍钉在旧版本,也可以显式执行:
|
|
40
40
|
>
|
|
@@ -122,7 +122,8 @@ plugins/bncr/src/
|
|
|
122
122
|
补充:
|
|
123
123
|
|
|
124
124
|
- `dmPolicy` / `groupPolicy` 支持:`open | allowlist | disabled`
|
|
125
|
-
- `outboundRequireAck`
|
|
125
|
+
- `outboundRequireAck` 是当前**单账号场景**使用的顶层字段:`channels.bncr.outboundRequireAck`
|
|
126
|
+
- `outboundRequireAck=true` 时,文本外发会等待 `bncr.ack` 再出队;关闭后不再强制等待文本 ACK,超时类错误会显示为 `push-delivery-unconfirmed`
|
|
126
127
|
- `requireMention` 当前仍是保留字段
|
|
127
128
|
|
|
128
129
|
---
|
|
@@ -142,6 +143,9 @@ openclaw health --json
|
|
|
142
143
|
- `pending`
|
|
143
144
|
- `deadLetter`
|
|
144
145
|
- diagnostics / probe / status 摘要
|
|
146
|
+
- diagnostics 里的 `runtimeFlags.outboundRequireAck`
|
|
147
|
+
- diagnostics 里的 `runtimeFlags.ackPolicySource`
|
|
148
|
+
- diagnostics 里的 `waiters.messageAck` / `waiters.fileAck`
|
|
145
149
|
|
|
146
150
|
---
|
|
147
151
|
|