@inline-openclaw/inline 0.0.66 → 0.0.68

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
@@ -39,7 +39,7 @@ the plugin version for your OpenClaw release line:
39
39
 
40
40
  | OpenClaw line | Inline plugin | Exact install |
41
41
  | --- | --- | --- |
42
- | `2026.8.x` (`>=2026.8.2`) | `0.0.66` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
42
+ | `2026.8.x` (`>=2026.8.2`) | `0.0.68` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
43
43
  | `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
44
44
  | `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
45
45
 
@@ -50,12 +50,12 @@ alias for older host APIs.
50
50
 
51
51
  | Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
52
52
  | --- | --- | --- | --- | --- |
53
- | `0.0.66` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Bounds direct account probes so SDK cleanup completes before the host deadline. |
53
+ | `0.0.68` | `>=2026.8.2 <2026.9.0` | `0.0.18` | Current | Retries stalled sync autonomously and isolates unrelated chat handlers while retaining ordered acknowledgements. |
54
+ | `0.0.67` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Keeps the manifest compatible with ClawHub's metadata transport without changing the channel schema. |
55
+ | `0.0.66` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Bounds direct account probes so SDK cleanup completes before the host deadline. |
54
56
  | `0.0.65` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
55
57
  | `0.0.64` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Previous | Supports the stable 2026.8 plugin SDK and preserves DM/group reply-thread routing. |
56
58
  | `0.0.63` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Applies live-safe settings writes without restarting the Inline channel before it can answer. |
57
- | `0.0.62` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Keeps the thread-only Following control out of direct-message agent settings, where the server does not support it. |
58
- | `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
59
59
 
60
60
  From npm:
61
61
 
@@ -80,6 +80,14 @@ capability consent, strips credential variables from the updater process, and
80
80
  asks for `/restart` after OpenClaw reports a successful update. Other authorized
81
81
  chat members cannot update host plugins.
82
82
 
83
+ Installed skills are published to Inline for Skilled Agent selection on gateway
84
+ start and whenever OpenClaw emits `skill_changed`. Any authorized bot user can
85
+ run `/inline_sync` to force an immediate command-and-skill catalog republish,
86
+ then open or reopen Inline's Skilled Agent editor to load it. `/inline_version`
87
+ shows the loaded plugin/OpenClaw versions, safe install source and timestamps
88
+ when OpenClaw provides them, and the last in-process catalog-sync result. These
89
+ commands never print tokens, paths, package specs, or raw configuration.
90
+
83
91
  After updating, verify that `openclaw plugins list` shows `inline`, `openclaw channels status --channel inline --probe --json` reports Inline configured/running, and `openclaw plugins inspect inline --json` reports the expected package version.
84
92
 
85
93
  From a local checkout (dev):
@@ -363,12 +371,12 @@ The plugin also registers `inline_bot_commands` for Inline bot command managemen
363
371
 
364
372
  Bot command sync:
365
373
 
366
- - On `gateway_start`, the plugin registers default bot commands for each enabled/configured Inline account.
374
+ - On `gateway_start` and OpenClaw's `skill_changed` event, the plugin republishes bot commands and installed skills for each enabled/configured Inline account.
367
375
  - Default commands include the same user-facing command set as bundled chat providers (for example: `/status`, `/model`, `/exec`, `/usage`, etc.).
368
- - Inline also registers `/threadreply` to manage this group's reply-thread mode, `/follow` and `/unfollow` for explicit dialog relevance, and owner-only `/inline_update` for tracked plugin updates.
376
+ - Inline also registers `/threadreply` to manage this group's reply-thread mode, `/follow` and `/unfollow` for explicit dialog relevance, `/inline_sync` for a manual catalog refresh, `/inline_version` for safe runtime/install information, and owner-only `/inline_update` for tracked plugin updates.
369
377
  - Inline accepts `/command@botusername` when the suffix matches the active bot and ignores commands targeted at another bot, including in followed threads.
370
378
  - The plugin uses OpenClaw's command, skill command, and plugin command registries when available.
371
- - Inline-owned `/follow`, `/unfollow`, `/threadreply`, and `/inline_update` entries are preserved when a larger host command set is truncated to the Bot API's 100-command limit or retried after `BOT_COMMANDS_TOO_MUCH`; startup sync logs how many entries were omitted.
379
+ - Inline-owned `/follow`, `/unfollow`, `/threadreply`, `/inline_update`, `/inline_sync`, and `/inline_version` entries are preserved when a larger host command set is truncated to the Bot API's 100-command limit or retried after `BOT_COMMANDS_TOO_MUCH`; catalog sync logs how many entries were omitted.
372
380
  - Disable startup sync globally with `commands.native: false`, or per-channel with `channels.inline.commands.native: false`. Disabled startup sync clears existing Inline bot commands for the affected account.
373
381
  - Disable skill command inclusion with `commands.nativeSkills: false`, or per-channel with `channels.inline.commands.nativeSkills: false`.
374
382