@inline-openclaw/inline 0.0.50 → 0.0.52

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 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,13 @@ 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.48` | `>=2026.6.11` | `0.0.11` | Current | Uses the latest focused OpenClaw plugin SDK entrypoints and is the supported line for current stable OpenClaw. |
43
- | `0.0.47` and earlier | `>=2026.5.18`, tested before the `2026.6.11` floor | `0.0.11` | Legacy | Use this line only when an older OpenClaw host cannot be upgraded yet. It keeps the previous broad SDK compatibility path. |
42
+ | `0.0.52` | `>=2026.6.11` | `0.0.13` | Current | Patch release for the SDK protocol dependency. Publish protocol and SDK first. |
43
+ | `0.0.51` | `>=2026.6.11` | `0.0.12` | Superseded | Added follow-mode mention gating for eligible reply/fresh Inline threads. Prefer `0.0.52`. |
44
+ | `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. |
45
+ | `0.0.48` - `0.0.49` | `>=2026.6.11` | `0.0.11` | Superseded | Transitional 2026.6.11 compatibility releases. Prefer `0.0.52`; `0.0.49` fixed metadata shape but still used the non-canonical ClawHub spec. |
46
+ | `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
47
 
45
- From npm (once published):
48
+ From npm:
46
49
 
47
50
  ```sh
48
51
  openclaw plugins install @inline-openclaw/inline
@@ -64,7 +67,7 @@ After updating, verify that `openclaw plugins list` shows `inline`, `openclaw ch
64
67
  From a local checkout (dev):
65
68
 
66
69
  ```sh
67
- cd /path/to/inline/packages/openclaw
70
+ cd /path/to/inline/openclaw
68
71
  bun run build
69
72
  npm pack --ignore-scripts --pack-destination /tmp
70
73
  openclaw plugins install --force npm-pack:/tmp/inline-openclaw-inline-<version>.tgz
@@ -202,7 +205,7 @@ Reply behavior summary:
202
205
  - Use `replyThreadMode: "main"` if you only want automatic parent-chat replies to stay in the parent chat.
203
206
  - Use `replyThreadMode: "thread"` plus `replyThreadAutoCreateMinMessages` when parent-chat bot turns should move into child reply threads anchored to the triggering parent messages.
204
207
  - 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, including from persisted recent participation state. Set `replyThreadRequireExplicitMention: true` if a chat should require `@bot` on every reply-thread message.
208
+ - 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
209
  - `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
210
 
208
211
  If you set `dmPolicy: "open"`, set `allowFrom: ["*"]`.