@inline-openclaw/inline 0.0.59 → 0.0.61
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 +4 -5
- package/dist/channel-plugin-api.js +15 -12
- package/dist/channel-plugin-api.js.map +3 -3
- package/docs/openclaw-setup.md +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,12 +40,12 @@ Requires OpenClaw `2026.6.11` or newer.
|
|
|
40
40
|
|
|
41
41
|
| Plugin version | OpenClaw host | Inline realtime SDK | Status | Notes |
|
|
42
42
|
| --- | --- | --- | --- | --- |
|
|
43
|
-
| `0.0.
|
|
43
|
+
| `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Current | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
|
|
44
|
+
| `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. |
|
|
45
|
+
| `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. |
|
|
44
46
|
| `0.0.58` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.15` | Previous | Promotes the stable realtime v3 SDK; hardens terminal authentication, model settings, recovered replies and joins, rich streaming delivery, and monitor failure reporting. |
|
|
45
47
|
| `0.0.57` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.14` | Previous | Hardens exact CLI-managed upgrades, deterministic channel listing, default/help consistency, and packed-artifact validation. |
|
|
46
48
|
| `0.0.56` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.14` | Stable | Finalizes unified Inline CLI setup compatibility while preserving the separately installed OpenClaw plugin boundary. |
|
|
47
|
-
| `0.0.55` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.14` | Stable | Enforces empty-payload nudges, canonical visible-text sanitizing, hard access-before-mention policy, explicit auto-threading, and clearer formatting guidance; explicitly admits npm's `2026.7.1-2` stable host version. |
|
|
48
|
-
| `0.0.54` | `>=2026.6.11` | `0.0.13` | Stable | Keeps recovered WebSocket and best-effort cursor warnings out of healthy channel status; validated through OpenClaw `2026.7.1-2`. |
|
|
49
49
|
|
|
50
50
|
From npm:
|
|
51
51
|
|
|
@@ -56,8 +56,7 @@ openclaw plugins install @inline-openclaw/inline
|
|
|
56
56
|
If the plugin is already installed, update in place:
|
|
57
57
|
|
|
58
58
|
```sh
|
|
59
|
-
openclaw
|
|
60
|
-
openclaw plugins update inline
|
|
59
|
+
openclaw plugins install --force @inline-openclaw/inline@latest
|
|
61
60
|
openclaw gateway restart
|
|
62
61
|
openclaw plugins list
|
|
63
62
|
openclaw channels status
|
|
@@ -72881,17 +72881,11 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
72881
72881
|
const botSettingsModelCatalogCache = new Map;
|
|
72882
72882
|
const botSettingsModelCatalogLoads = new Map;
|
|
72883
72883
|
const loadOpenClawBotSettingsModelCatalog = async (params2) => {
|
|
72884
|
-
const
|
|
72885
|
-
|
|
72886
|
-
|
|
72887
|
-
|
|
72888
|
-
|
|
72889
|
-
buildModelsProviderData(params2.cfg, params2.agentId),
|
|
72890
|
-
loadModelCatalog({ config: params2.cfg, readOnly: true })
|
|
72891
|
-
]),
|
|
72892
|
-
new Promise((_, reject) => {
|
|
72893
|
-
timeout = setTimeout(() => reject(new Error("model list timed out")), 5000);
|
|
72894
|
-
})
|
|
72884
|
+
const loadCatalog = async () => {
|
|
72885
|
+
const options = new Map;
|
|
72886
|
+
const [{ byProvider, providers }, catalog] = await Promise.all([
|
|
72887
|
+
buildModelsProviderData(params2.cfg, params2.agentId),
|
|
72888
|
+
loadModelCatalog({ config: params2.cfg, readOnly: true })
|
|
72895
72889
|
]);
|
|
72896
72890
|
const modelApiByRef = new Map(catalog.map((entry) => [`${entry.provider}/${entry.id}`, entry.api]));
|
|
72897
72891
|
const agentDir = resolveAgentDir(params2.cfg, params2.agentId);
|
|
@@ -72938,6 +72932,15 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
72938
72932
|
}
|
|
72939
72933
|
}
|
|
72940
72934
|
return { options: [...options.values()], didLoad: true };
|
|
72935
|
+
};
|
|
72936
|
+
let timeout;
|
|
72937
|
+
try {
|
|
72938
|
+
return await Promise.race([
|
|
72939
|
+
loadCatalog(),
|
|
72940
|
+
new Promise((_, reject) => {
|
|
72941
|
+
timeout = setTimeout(() => reject(new Error("model list timed out")), 5000);
|
|
72942
|
+
})
|
|
72943
|
+
]);
|
|
72941
72944
|
} catch (error51) {
|
|
72942
72945
|
log?.warn(`inline agent settings model list unavailable: ${String(error51)}`);
|
|
72943
72946
|
return { options: [], didLoad: false };
|
|
@@ -76354,5 +76357,5 @@ export {
|
|
|
76354
76357
|
inlineChannelPlugin
|
|
76355
76358
|
};
|
|
76356
76359
|
|
|
76357
|
-
//# debugId=
|
|
76360
|
+
//# debugId=4BAD29256740AC1D64756E2164756E21
|
|
76358
76361
|
//# sourceMappingURL=channel-plugin-api.js.map
|