@inline-openclaw/inline 0.0.64 → 0.0.65

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,9 +39,9 @@ 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.64` | `openclaw plugins install --force @inline-openclaw/inline@0.0.64` |
43
- | `2026.7.x` | `0.0.63` | `openclaw plugins install --force @inline-openclaw/inline@0.0.63` |
44
- | `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`) | `0.0.63` | `openclaw plugins install --force @inline-openclaw/inline@0.0.63` |
42
+ | `2026.8.x` (`>=2026.8.2`) | `0.0.65` | `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities` |
43
+ | `2026.7.x` (`>=2026.7.1`) | `0.0.63` | `openclaw plugins install @inline-openclaw/inline@0.0.63 --force` |
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
 
46
46
  `@latest` follows the newest supported OpenClaw line; it is not a compatibility
47
47
  alias for older host APIs.
@@ -50,35 +50,37 @@ alias for older host APIs.
50
50
 
51
51
  | Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
52
52
  | --- | --- | --- | --- | --- |
53
- | `0.0.64` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Supports the stable 2026.8 plugin SDK and preserves DM/group reply-thread routing. |
53
+ | `0.0.65` | `>=2026.8.2 <2026.9.0` | `0.0.17` | Current | Makes chat-triggered updates noninteractive by explicitly accepting the trusted Inline capability surface. |
54
+ | `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. |
54
55
  | `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. |
55
56
  | `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. |
56
57
  | `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. |
57
58
  | `0.0.60` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Uses the plugin index's supported force-install path for exact updates on current OpenClaw hosts. |
58
- | `0.0.59` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Adds mentionable Agent specialization, exact Agent activation, and fail-closed bot-message provenance. |
59
59
 
60
60
  From npm:
61
61
 
62
62
  ```sh
63
- openclaw plugins install @inline-openclaw/inline
63
+ openclaw plugins install @inline-openclaw/inline --force --accept-capabilities
64
64
  ```
65
65
 
66
66
  If the plugin is already installed, update in place:
67
67
 
68
68
  ```sh
69
- openclaw plugins install --force @inline-openclaw/inline@latest
69
+ openclaw plugins update inline --accept-capabilities
70
70
  openclaw gateway restart
71
71
  openclaw plugins list
72
- openclaw channels status
72
+ openclaw plugins inspect inline --json
73
+ openclaw channels status --channel inline --probe --json
73
74
  openclaw message send --channel inline --target chat:123 --message "Inline smoke test" --dry-run
74
75
  ```
75
76
 
76
77
  After initial installation, an OpenClaw owner can run `/inline_update` from
77
- Inline. The command delegates to OpenClaw's tracked-plugin updater, strips
78
- credential variables from the updater process, and asks for `/restart` after a
79
- successful update. Other authorized chat members cannot update host plugins.
78
+ Inline. The command delegates to OpenClaw's tracked-plugin updater with explicit
79
+ capability consent, strips credential variables from the updater process, and
80
+ asks for `/restart` after OpenClaw reports a successful update. Other authorized
81
+ chat members cannot update host plugins.
80
82
 
81
- After updating, verify that `openclaw plugins list` shows `inline`, `openclaw channels status` reports Inline configured/running, and `openclaw plugins inspect inline --json` reports the expected package version.
83
+ 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.
82
84
 
83
85
  From a local checkout (dev):
84
86
 
@@ -86,7 +88,7 @@ From a local checkout (dev):
86
88
  cd /path/to/inline/openclaw
87
89
  bun run build
88
90
  npm pack --ignore-scripts --pack-destination /tmp
89
- openclaw plugins install --force npm-pack:/tmp/inline-openclaw-inline-<version>.tgz
91
+ openclaw plugins install npm-pack:/tmp/inline-openclaw-inline-<version>.tgz --force --accept-capabilities
90
92
  ```
91
93
 
92
94
  ## Configure
@@ -70185,7 +70185,7 @@ ${text.slice(-UPDATE_LOG_MAX_CHARS)}`;
70185
70185
  }
70186
70186
  function resolveOpenClawUpdateInvocation(env) {
70187
70187
  const cliPath = env.OPENCLAW_CLI_PATH?.trim();
70188
- const args = ["plugins", "update", INLINE_PLUGIN_ID];
70188
+ const args = ["plugins", "update", INLINE_PLUGIN_ID, "--accept-capabilities"];
70189
70189
  return cliPath ? { command: process.execPath, args: [cliPath, ...args] } : { command: "openclaw", args };
70190
70190
  }
70191
70191
  var defaultUpdateRunner = async (params) => await new Promise((resolve) => {
@@ -79463,5 +79463,5 @@ export {
79463
79463
  inlineChannelPlugin2 as inlineChannelPlugin
79464
79464
  };
79465
79465
 
79466
- //# debugId=22319085B212E3EC64756E2164756E21
79466
+ //# debugId=36CC32767A3E883564756E2164756E21
79467
79467
  //# sourceMappingURL=channel-plugin-api.js.map