@inline-openclaw/inline 0.0.63 → 0.0.64
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 +24 -5
- package/dist/account-inspect-api.js +8 -1
- package/dist/account-inspect-api.js.map +3 -3
- package/dist/approval-handler.runtime.js +3006 -414
- package/dist/approval-handler.runtime.js.map +24 -22
- package/dist/channel-plugin-api.js +3844 -748
- package/dist/channel-plugin-api.js.map +33 -29
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +278 -2
- package/dist/index.js.map +5 -4
- package/dist/runtime-register-api.js +2725 -308
- package/dist/runtime-register-api.js.map +23 -21
- package/dist/setup-plugin-api.js +56 -35
- package/dist/setup-plugin-api.js.map +6 -6
- package/docs/openclaw-setup.md +28 -0
- package/openclaw.plugin.json +1 -0
- package/package.json +7 -7
package/docs/openclaw-setup.md
CHANGED
|
@@ -6,6 +6,14 @@ 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.64` — `openclaw plugins install --force @inline-openclaw/inline@0.0.64`
|
|
12
|
+
- OpenClaw `2026.7.x`: Inline plugin `0.0.63` — `openclaw plugins install --force @inline-openclaw/inline@0.0.63`
|
|
13
|
+
- OpenClaw `2026.6.x` (`>=2026.6.11`, including extended-stable `2026.6.34`): Inline plugin `0.0.63` — `openclaw plugins install --force @inline-openclaw/inline@0.0.63`
|
|
14
|
+
|
|
15
|
+
The unversioned install follows the newest supported OpenClaw line:
|
|
16
|
+
|
|
9
17
|
```sh
|
|
10
18
|
openclaw plugins install @inline-openclaw/inline
|
|
11
19
|
```
|
|
@@ -111,6 +119,26 @@ Expected:
|
|
|
111
119
|
- Plugin `inline` is loaded.
|
|
112
120
|
- Channel `Inline` is configured and running/connected.
|
|
113
121
|
|
|
122
|
+
## Error Reporting And Privacy
|
|
123
|
+
|
|
124
|
+
The Inline plugin's error reporter is disabled unless the gateway operator sets
|
|
125
|
+
`INLINE_OPENCLAW_SENTRY_DSN` to an explicit collector. When enabled, reports
|
|
126
|
+
include the raw exception type and message, stack paths,
|
|
127
|
+
line/function locations, plugin release, operation name, runtime, OS, and
|
|
128
|
+
architecture so maintainers can diagnose failures in subsequent releases.
|
|
129
|
+
|
|
130
|
+
Reports do not attach Inline or OpenClaw message events, request bodies,
|
|
131
|
+
user/chat/account identifiers, breadcrumbs, source context, or stack locals.
|
|
132
|
+
Known token, password, authorization, and secret-shaped values are redacted
|
|
133
|
+
before upload. Inline's Sentry project also enables default server-side data
|
|
134
|
+
scrubbing and IP-address scrubbing. Because dependency exception messages are
|
|
135
|
+
preserved for diagnosis, they can still contain values the dependency itself
|
|
136
|
+
chose to place in an error.
|
|
137
|
+
|
|
138
|
+
Remove `INLINE_OPENCLAW_SENTRY_DSN`, set `INLINE_PLUGIN_TELEMETRY=off`, or set
|
|
139
|
+
`DO_NOT_TRACK=1` to disable reporting. Reporting is best-effort, has a two-second
|
|
140
|
+
network deadline, and never changes plugin success or failure behavior.
|
|
141
|
+
|
|
114
142
|
## 5) Common Fixes
|
|
115
143
|
|
|
116
144
|
- `Config validation failed: plugins.entries.inline: plugin not found: inline`
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inline-openclaw/inline",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.64",
|
|
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.
|
|
38
|
+
"@inline-chat/realtime-sdk": "0.0.17",
|
|
39
39
|
"zod": "4.4.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"openclaw": ">=2026.
|
|
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.
|
|
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.
|
|
102
|
+
"minHostVersion": ">=2026.8.2"
|
|
103
103
|
},
|
|
104
104
|
"compat": {
|
|
105
|
-
"pluginApi": ">=2026.
|
|
105
|
+
"pluginApi": ">=2026.8.2 <2026.9.0"
|
|
106
106
|
},
|
|
107
107
|
"build": {
|
|
108
|
-
"openclawVersion": "2026.
|
|
108
|
+
"openclawVersion": "2026.8.2"
|
|
109
109
|
},
|
|
110
110
|
"release": {
|
|
111
111
|
"publishToClawHub": true,
|