@inline-openclaw/inline 0.0.50 → 0.0.51
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 +8 -6
- package/dist/account-inspect-api.js +81 -81
- package/dist/account-inspect-api.js.map +2 -2
- package/dist/approval-handler.runtime.js +182 -141
- package/dist/approval-handler.runtime.js.map +6 -5
- package/dist/channel-plugin-api.js +202 -145
- package/dist/channel-plugin-api.js.map +7 -6
- package/dist/inline/config-schema.d.ts +42 -42
- package/dist/inline/monitor.d.ts.map +1 -1
- package/dist/inline/shared.d.ts +1 -1
- package/dist/openclaw-compat.d.ts +3 -3
- package/dist/runtime-register-api.js +182 -141
- package/dist/runtime-register-api.js.map +6 -5
- package/dist/setup-plugin-api.js +81 -81
- package/dist/setup-plugin-api.js.map +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Reply-thread behavior:
|
|
|
29
29
|
- `replyThreadMode: "main"` keeps automatic replies in the parent chat, while explicit `thread-create` and `thread-reply` tools remain available.
|
|
30
30
|
- `thread-create` creates a top-level Inline thread when called with participants or `spaceId`, and creates a real Inline reply thread when called with a parent chat target or anchor. `thread-reply` sends into the child reply-thread chat id returned by reply-thread creation.
|
|
31
31
|
- Inbound reply-thread messages use the parent chat as the base conversation target and the child reply-thread chat id as `MessageThreadId`.
|
|
32
|
-
- Bot-participated reply threads can continue without an explicit bot mention by default, matching Slack-style thread behavior.
|
|
32
|
+
- Bot-participated reply threads and followed fresh Inline threads can continue without an explicit bot mention by default, matching Slack-style thread behavior.
|
|
33
33
|
|
|
34
34
|
## Install
|
|
35
35
|
|
|
@@ -39,10 +39,12 @@ Requires OpenClaw `2026.6.11` or newer.
|
|
|
39
39
|
|
|
40
40
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
41
41
|
| --- | --- | --- | --- | --- |
|
|
42
|
-
| `0.0.
|
|
43
|
-
| `0.0.
|
|
42
|
+
| `0.0.51` | `>=2026.6.11` | `0.0.12` | Current | Adds follow-mode mention gating for eligible reply/fresh Inline threads. Publish the SDK first. |
|
|
43
|
+
| `0.0.50` | `>=2026.6.11` | `0.0.11` | Superseded | Supported line for current stable OpenClaw. Uses focused plugin SDK entrypoints and canonical ClawHub install metadata. |
|
|
44
|
+
| `0.0.48` - `0.0.49` | `>=2026.6.11` | `0.0.11` | Superseded | Transitional 2026.6.11 compatibility releases. Prefer `0.0.51`; `0.0.49` fixed metadata shape but still used the non-canonical ClawHub spec. |
|
|
45
|
+
| `0.0.47` and earlier | `>=2026.5.18`, tested before the `2026.6.11` floor | `0.0.11` | Legacy | Use only when an older OpenClaw host cannot be upgraded yet. Keeps the previous broad SDK compatibility path. |
|
|
44
46
|
|
|
45
|
-
From npm
|
|
47
|
+
From npm:
|
|
46
48
|
|
|
47
49
|
```sh
|
|
48
50
|
openclaw plugins install @inline-openclaw/inline
|
|
@@ -64,7 +66,7 @@ After updating, verify that `openclaw plugins list` shows `inline`, `openclaw ch
|
|
|
64
66
|
From a local checkout (dev):
|
|
65
67
|
|
|
66
68
|
```sh
|
|
67
|
-
cd /path/to/inline/
|
|
69
|
+
cd /path/to/inline/openclaw
|
|
68
70
|
bun run build
|
|
69
71
|
npm pack --ignore-scripts --pack-destination /tmp
|
|
70
72
|
openclaw plugins install --force npm-pack:/tmp/inline-openclaw-inline-<version>.tgz
|
|
@@ -202,7 +204,7 @@ Reply behavior summary:
|
|
|
202
204
|
- Use `replyThreadMode: "main"` if you only want automatic parent-chat replies to stay in the parent chat.
|
|
203
205
|
- Use `replyThreadMode: "thread"` plus `replyThreadAutoCreateMinMessages` when parent-chat bot turns should move into child reply threads anchored to the triggering parent messages.
|
|
204
206
|
- In an Inline group, authorized users can run `/threadreply` to choose the chat's mode with buttons, or `/threadreply thread|main|auto|inherit|status`.
|
|
205
|
-
- Bot-participated reply threads continue without `@bot` by default
|
|
207
|
+
- Bot-participated reply threads and followed fresh Inline threads continue without `@bot` by default. Reply threads also use persisted recent participation state as a fallback. Set `replyThreadRequireExplicitMention: true` if a chat should require `@bot` on every reply-thread message.
|
|
206
208
|
- `replyThreadParentHistoryLimit` defaults to `10`, so reply-thread turns include nearby parent-chat context before the anchor. Set it to `0` only when a chat should stay strictly thread-local.
|
|
207
209
|
|
|
208
210
|
If you set `dmPolicy: "open"`, set `allowFrom: ["*"]`.
|