@inline-openclaw/inline 0.0.63 → 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.
@@ -6,17 +6,30 @@ Need a bot token first? See `docs/create-inline-bot.md`.
6
6
 
7
7
  ## 1) Install Plugin
8
8
 
9
+ Choose the Inline plugin version that matches the installed OpenClaw line:
10
+
11
+ - OpenClaw `2026.8.x` (`>=2026.8.2`): Inline plugin `0.0.65` — `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
+
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:
20
+
9
21
  ```sh
10
- openclaw plugins install @inline-openclaw/inline
22
+ openclaw plugins install @inline-openclaw/inline --force --accept-capabilities
11
23
  ```
12
24
 
13
- If already installed, update to latest:
25
+ If already installed on 2026.8, repair or update to the matched version:
14
26
 
15
27
  ```sh
16
- openclaw plugins install --force @inline-openclaw/inline@latest
28
+ openclaw plugins update inline --accept-capabilities
17
29
  openclaw gateway restart
18
30
  openclaw plugins list
19
- openclaw channels status
31
+ openclaw plugins inspect inline --json
32
+ openclaw channels status --channel inline --probe --json
20
33
  ```
21
34
 
22
35
  After the first install, an OpenClaw owner can run `/inline_update` in Inline
@@ -111,6 +124,26 @@ Expected:
111
124
  - Plugin `inline` is loaded.
112
125
  - Channel `Inline` is configured and running/connected.
113
126
 
127
+ ## Error Reporting And Privacy
128
+
129
+ The Inline plugin's error reporter is disabled unless the gateway operator sets
130
+ `INLINE_OPENCLAW_SENTRY_DSN` to an explicit collector. When enabled, reports
131
+ include the raw exception type and message, stack paths,
132
+ line/function locations, plugin release, operation name, runtime, OS, and
133
+ architecture so maintainers can diagnose failures in subsequent releases.
134
+
135
+ Reports do not attach Inline or OpenClaw message events, request bodies,
136
+ user/chat/account identifiers, breadcrumbs, source context, or stack locals.
137
+ Known token, password, authorization, and secret-shaped values are redacted
138
+ before upload. Inline's Sentry project also enables default server-side data
139
+ scrubbing and IP-address scrubbing. Because dependency exception messages are
140
+ preserved for diagnosis, they can still contain values the dependency itself
141
+ chose to place in an error.
142
+
143
+ Remove `INLINE_OPENCLAW_SENTRY_DSN`, set `INLINE_PLUGIN_TELEMETRY=off`, or set
144
+ `DO_NOT_TRACK=1` to disable reporting. Reporting is best-effort, has a two-second
145
+ network deadline, and never changes plugin success or failure behavior.
146
+
114
147
  ## 5) Common Fixes
115
148
 
116
149
  - `Config validation failed: plugins.entries.inline: plugin not found: inline`
@@ -5,6 +5,7 @@
5
5
  "channels": ["inline"],
6
6
  "contracts": {
7
7
  "tools": [
8
+ "inline_agents",
8
9
  "inline_members",
9
10
  "inline_update_profile",
10
11
  "inline_bot_avatar",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inline-openclaw/inline",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,11 +35,11 @@
35
35
  "check": "bun run typecheck && bun run lint && bun run test && bun run build"
36
36
  },
37
37
  "dependencies": {
38
- "@inline-chat/realtime-sdk": "0.0.16",
38
+ "@inline-chat/realtime-sdk": "0.0.17",
39
39
  "zod": "4.4.3"
40
40
  },
41
41
  "peerDependencies": {
42
- "openclaw": ">=2026.6.11 || >=2026.7.1-0"
42
+ "openclaw": ">=2026.8.2 <2026.9.0"
43
43
  },
44
44
  "peerDependenciesMeta": {
45
45
  "openclaw": {
@@ -49,7 +49,7 @@
49
49
  "devDependencies": {
50
50
  "@types/node": "20.17.19",
51
51
  "@vitest/coverage-v8": "4.1.10",
52
- "openclaw": "2026.7.1-2",
52
+ "openclaw": "2026.8.2",
53
53
  "typescript": "5.8.3",
54
54
  "vitest": "4.1.10"
55
55
  },
@@ -99,13 +99,13 @@
99
99
  "npmSpec": "@inline-openclaw/inline",
100
100
  "localPath": "openclaw",
101
101
  "defaultChoice": "clawhub",
102
- "minHostVersion": ">=2026.6.11"
102
+ "minHostVersion": ">=2026.8.2"
103
103
  },
104
104
  "compat": {
105
- "pluginApi": ">=2026.6.11"
105
+ "pluginApi": ">=2026.8.2 <2026.9.0"
106
106
  },
107
107
  "build": {
108
- "openclawVersion": "2026.7.1-2"
108
+ "openclawVersion": "2026.8.2"
109
109
  },
110
110
  "release": {
111
111
  "publishToClawHub": true,