@inline-openclaw/inline 0.0.64 → 0.0.66
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 +16 -14
- package/dist/approval-handler.runtime.js +23 -2
- package/dist/approval-handler.runtime.js.map +3 -3
- package/dist/channel-plugin-api.js +54 -24
- package/dist/channel-plugin-api.js.map +5 -5
- package/dist/runtime-register-api.js +24 -3
- package/dist/runtime-register-api.js.map +4 -4
- package/docs/openclaw-setup.md +13 -8
- package/package.json +1 -1
package/docs/openclaw-setup.md
CHANGED
|
@@ -8,23 +8,28 @@ Need a bot token first? See `docs/create-inline-bot.md`.
|
|
|
8
8
|
|
|
9
9
|
Choose the Inline plugin version that matches the installed OpenClaw line:
|
|
10
10
|
|
|
11
|
-
- OpenClaw `2026.8.x` (`>=2026.8.2`): Inline plugin `0.0.
|
|
12
|
-
- OpenClaw `2026.7.x
|
|
13
|
-
- OpenClaw `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`): Inline plugin `0.0.63` — `openclaw plugins install
|
|
11
|
+
- OpenClaw `2026.8.x` (`>=2026.8.2`): Inline plugin `0.0.66` — `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities`
|
|
12
|
+
- OpenClaw `2026.7.x` (`>=2026.7.1`): Inline plugin `0.0.63` — `openclaw plugins install @inline-openclaw/inline@0.0.63 --force`
|
|
13
|
+
- OpenClaw `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`): Inline plugin `0.0.63` — `openclaw plugins install @inline-openclaw/inline@0.0.63 --force`
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
On 2026.8, `--accept-capabilities` noninteractively approves the capabilities
|
|
16
|
+
declared by the trusted first-party Inline package. Older supported hosts do not
|
|
17
|
+
recognize that flag.
|
|
18
|
+
|
|
19
|
+
Install the exact version for your host line:
|
|
16
20
|
|
|
17
21
|
```sh
|
|
18
|
-
openclaw plugins install @inline-openclaw/inline
|
|
22
|
+
openclaw plugins install @inline-openclaw/inline --force --accept-capabilities
|
|
19
23
|
```
|
|
20
24
|
|
|
21
|
-
If already installed, update to
|
|
25
|
+
If already installed on 2026.8, repair or update to the matched version:
|
|
22
26
|
|
|
23
27
|
```sh
|
|
24
|
-
openclaw plugins
|
|
28
|
+
openclaw plugins update inline --accept-capabilities
|
|
25
29
|
openclaw gateway restart
|
|
26
30
|
openclaw plugins list
|
|
27
|
-
openclaw
|
|
31
|
+
openclaw plugins inspect inline --json
|
|
32
|
+
openclaw channels status --channel inline --probe --json
|
|
28
33
|
```
|
|
29
34
|
|
|
30
35
|
After the first install, an OpenClaw owner can run `/inline_update` in Inline
|