@inline-openclaw/inline 0.0.68 → 0.0.70

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.
@@ -8,21 +8,24 @@ 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.67` — `openclaw plugins install @inline-openclaw/inline --force --accept-capabilities`
11
+ - OpenClaw `2026.8.2` and newer, including `2026.9.x`: Inline plugin `0.0.70` — `openclaw plugins install npm:@inline-openclaw/inline@0.0.70 --force --accept-capabilities`
12
12
  - OpenClaw `2026.7.x` (`>=2026.7.1`): Inline plugin `0.0.63` — `openclaw plugins install @inline-openclaw/inline@0.0.63 --force`
13
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
- On 2026.8, `--accept-capabilities` noninteractively approves the capabilities
15
+ On 2026.8.2 and newer, `--accept-capabilities` noninteractively approves the capabilities
16
16
  declared by the trusted first-party Inline package. Older supported hosts do not
17
17
  recognize that flag.
18
18
 
19
- Install the exact version for your host line:
19
+ The current plugin has no upper host version cap. For OpenClaw 2026.9.3 and
20
+ newer, use Node 24.16+ on 24.x or Node 26.1+ (Node 26 recommended).
21
+
22
+ Install the current version:
20
23
 
21
24
  ```sh
22
- openclaw plugins install @inline-openclaw/inline --force --accept-capabilities
25
+ openclaw plugins install npm:@inline-openclaw/inline@0.0.70 --force --accept-capabilities
23
26
  ```
24
27
 
25
- If already installed on 2026.8, repair or update to the matched version:
28
+ If already installed on a supported host, update in place:
26
29
 
27
30
  ```sh
28
31
  openclaw plugins update inline --accept-capabilities
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inline-openclaw/inline",
3
- "version": "0.0.68",
3
+ "version": "0.0.70",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,14 +32,15 @@
32
32
  "prepack": "bun run build",
33
33
  "typecheck": "tsc -p tsconfig.json --noEmit",
34
34
  "test": "vitest run --coverage --maxWorkers=2",
35
- "check": "bun run typecheck && bun run lint && bun run test && bun run build"
35
+ "check": "bun run typecheck && bun run lint && bun run test && bun run build",
36
+ "check:host": "bun scripts/check-host.mjs"
36
37
  },
37
38
  "dependencies": {
38
39
  "@inline-chat/realtime-sdk": "0.0.18",
39
40
  "zod": "4.4.3"
40
41
  },
41
42
  "peerDependencies": {
42
- "openclaw": ">=2026.8.2 <2026.9.0"
43
+ "openclaw": ">=2026.8.2"
43
44
  },
44
45
  "peerDependenciesMeta": {
45
46
  "openclaw": {
@@ -49,7 +50,7 @@
49
50
  "devDependencies": {
50
51
  "@types/node": "20.17.19",
51
52
  "@vitest/coverage-v8": "4.1.10",
52
- "openclaw": "2026.8.2",
53
+ "openclaw": "2026.9.4",
53
54
  "typescript": "5.8.3",
54
55
  "vitest": "4.1.10"
55
56
  },
@@ -102,10 +103,10 @@
102
103
  "minHostVersion": ">=2026.8.2"
103
104
  },
104
105
  "compat": {
105
- "pluginApi": ">=2026.8.2 <2026.9.0"
106
+ "pluginApi": ">=2026.8.2"
106
107
  },
107
108
  "build": {
108
- "openclawVersion": "2026.8.2"
109
+ "openclawVersion": "2026.9.4"
109
110
  },
110
111
  "release": {
111
112
  "publishToClawHub": true,