@inline-openclaw/inline 0.0.62 → 0.0.63
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
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.63` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Current | Applies live-safe settings writes without restarting the Inline channel before it can answer. |
|
|
44
|
+
| `0.0.62` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Keeps the thread-only Following control out of direct-message agent settings, where the server does not support it. |
|
|
44
45
|
| `0.0.61` | `>=2026.6.11 || >=2026.7.1-0` | `0.0.16` | Previous | Bounds model discovery through provider authentication so agent settings return a fallback instead of hanging indefinitely. |
|
|
45
46
|
| `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. |
|
|
46
47
|
| `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. |
|
|
47
48
|
| `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. |
|
|
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. |
|
|
49
49
|
|
|
50
50
|
From npm:
|
|
51
51
|
|
|
@@ -67294,6 +67294,10 @@ var MODE_LABELS = {
|
|
|
67294
67294
|
main: "main"
|
|
67295
67295
|
};
|
|
67296
67296
|
var INLINE_THREADREPLY_NATIVE_NAME = "threadreply";
|
|
67297
|
+
var INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE = {
|
|
67298
|
+
mode: "none",
|
|
67299
|
+
reason: "Inline reads the refreshed runtime config in-process."
|
|
67300
|
+
};
|
|
67297
67301
|
var INLINE_THREADREPLY_COMMAND_SPEC = {
|
|
67298
67302
|
name: "threadreply",
|
|
67299
67303
|
nativeNames: { inline: INLINE_THREADREPLY_NATIVE_NAME },
|
|
@@ -67498,7 +67502,7 @@ async function handleInlineThreadReplyCommandWithConfigRuntime(configRuntime, ct
|
|
|
67498
67502
|
};
|
|
67499
67503
|
}
|
|
67500
67504
|
const committed = await configRuntime.mutateConfigFile({
|
|
67501
|
-
afterWrite:
|
|
67505
|
+
afterWrite: INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE,
|
|
67502
67506
|
mutate: (draft) => {
|
|
67503
67507
|
setGroupMode({
|
|
67504
67508
|
draft,
|
|
@@ -70258,7 +70262,8 @@ function isCodexRoutableOpenAIModel(params) {
|
|
|
70258
70262
|
return params.provider.trim().toLowerCase() === "openai" && params.modelApi !== undefined && params.modelApi !== OPENAI_CODEX_RESPONSES_API && OPENAI_CODEX_ROUTABLE_MODEL_IDS.has(params.model.trim().toLowerCase());
|
|
70259
70263
|
}
|
|
70260
70264
|
async function monitorInlineProvider(params) {
|
|
70261
|
-
|
|
70265
|
+
let { cfg } = params;
|
|
70266
|
+
const { account, runtime, abortSignal, log, statusSink } = params;
|
|
70262
70267
|
const core3 = getInlineRuntime();
|
|
70263
70268
|
if (!account.configured || !account.baseUrl) {
|
|
70264
70269
|
throw new Error(`Inline not configured for account "${account.accountId}" (missing baseUrl or token)`);
|
|
@@ -71174,6 +71179,7 @@ async function monitorInlineProvider(params) {
|
|
|
71174
71179
|
detachConversationBinding: async () => ({ removed: false }),
|
|
71175
71180
|
getCurrentConversationBinding: async () => null
|
|
71176
71181
|
});
|
|
71182
|
+
cfg = configRuntime.current();
|
|
71177
71183
|
const resultRecord = result;
|
|
71178
71184
|
const actions = resolveInlineReplyActions(resultRecord, { owner: "system" });
|
|
71179
71185
|
const text = typeof result.text === "string" ? sanitizeInlineDeliveryText(result.text) : "";
|
|
@@ -73172,8 +73178,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
73172
73178
|
});
|
|
73173
73179
|
};
|
|
73174
73180
|
const setOpenClawDefaultModel = async (ingress, selection) => {
|
|
73175
|
-
await core3.config.mutateConfigFile({
|
|
73176
|
-
afterWrite:
|
|
73181
|
+
const committed = await core3.config.mutateConfigFile({
|
|
73182
|
+
afterWrite: INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE,
|
|
73177
73183
|
mutate: (draft) => {
|
|
73178
73184
|
const agents = draft.agents ?? {};
|
|
73179
73185
|
draft.agents = agents;
|
|
@@ -73187,6 +73193,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
73187
73193
|
}
|
|
73188
73194
|
}
|
|
73189
73195
|
});
|
|
73196
|
+
cfg = committed.nextConfig;
|
|
73190
73197
|
};
|
|
73191
73198
|
const answerOpenClawBotSettingsRequest = async (event) => {
|
|
73192
73199
|
const startedAt = Date.now();
|
|
@@ -73260,8 +73267,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
73260
73267
|
}
|
|
73261
73268
|
},
|
|
73262
73269
|
setReplyThreads: async (value) => {
|
|
73263
|
-
await core3.config.mutateConfigFile({
|
|
73264
|
-
afterWrite:
|
|
73270
|
+
const committed = await core3.config.mutateConfigFile({
|
|
73271
|
+
afterWrite: INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE,
|
|
73265
73272
|
mutate: (draft) => setGroupMode({
|
|
73266
73273
|
draft,
|
|
73267
73274
|
accountId: account.accountId,
|
|
@@ -73269,6 +73276,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
|
|
|
73269
73276
|
mode: value === "on" ? "thread" : value === "off" ? "main" : "auto"
|
|
73270
73277
|
})
|
|
73271
73278
|
});
|
|
73279
|
+
cfg = committed.nextConfig;
|
|
73272
73280
|
appliedReplyThreads = value;
|
|
73273
73281
|
},
|
|
73274
73282
|
resolveContext: async () => (await resolveOpenClawBotSettings({
|
|
@@ -76359,5 +76367,5 @@ export {
|
|
|
76359
76367
|
inlineChannelPlugin
|
|
76360
76368
|
};
|
|
76361
76369
|
|
|
76362
|
-
//# debugId=
|
|
76370
|
+
//# debugId=FE6149523939E0FE64756E2164756E21
|
|
76363
76371
|
//# sourceMappingURL=channel-plugin-api.js.map
|