@inline-openclaw/inline 0.0.61 → 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.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. |
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. |
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. |
44
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. |
45
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. |
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. |
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: { mode: "auto" },
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
- const { cfg, account, runtime, abortSignal, log, statusSink } = params;
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) : "";
@@ -72878,6 +72884,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
72878
72884
  actorUserId: entry.msg.fromId
72879
72885
  });
72880
72886
  };
72887
+ const botSettingsModelCatalogSuccessCacheMs = 5 * 60000;
72888
+ const botSettingsModelCatalogFailureCacheMs = 5000;
72881
72889
  const botSettingsModelCatalogCache = new Map;
72882
72890
  const botSettingsModelCatalogLoads = new Map;
72883
72891
  const loadOpenClawBotSettingsModelCatalog = async (params2) => {
@@ -72973,7 +72981,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
72973
72981
  }
72974
72982
  catalog = await load;
72975
72983
  botSettingsModelCatalogCache.set(params2.agentId, {
72976
- expiresAt: Date.now() + (catalog.options.length > 0 ? 60000 : 5000),
72984
+ expiresAt: Date.now() + (catalog.options.length > 0 ? botSettingsModelCatalogSuccessCacheMs : botSettingsModelCatalogFailureCacheMs),
72977
72985
  catalog
72978
72986
  });
72979
72987
  }
@@ -73075,7 +73083,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
73075
73083
  model,
73076
73084
  currentLevel: reasoningLevel
73077
73085
  }),
73078
- following: isInlineDialogFollowing(ingress.chatInfo.dialogFollowMode),
73086
+ ...ingress.chatInfo.kind === "direct" ? {} : { following: isInlineDialogFollowing(ingress.chatInfo.dialogFollowMode) },
73079
73087
  replyThreads: params2.replyThreads ?? (replyMode === "thread" ? "on" : replyMode === "main" ? "off" : "auto"),
73080
73088
  canSetDefaultModel
73081
73089
  }
@@ -73170,8 +73178,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
73170
73178
  });
73171
73179
  };
73172
73180
  const setOpenClawDefaultModel = async (ingress, selection) => {
73173
- await core3.config.mutateConfigFile({
73174
- afterWrite: { mode: "auto" },
73181
+ const committed = await core3.config.mutateConfigFile({
73182
+ afterWrite: INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE,
73175
73183
  mutate: (draft) => {
73176
73184
  const agents = draft.agents ?? {};
73177
73185
  draft.agents = agents;
@@ -73185,6 +73193,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
73185
73193
  }
73186
73194
  }
73187
73195
  });
73196
+ cfg = committed.nextConfig;
73188
73197
  };
73189
73198
  const answerOpenClawBotSettingsRequest = async (event) => {
73190
73199
  const startedAt = Date.now();
@@ -73258,8 +73267,8 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
73258
73267
  }
73259
73268
  },
73260
73269
  setReplyThreads: async (value) => {
73261
- await core3.config.mutateConfigFile({
73262
- afterWrite: { mode: "auto" },
73270
+ const committed = await core3.config.mutateConfigFile({
73271
+ afterWrite: INLINE_LIVE_CONFIG_WRITE_AFTER_WRITE,
73263
73272
  mutate: (draft) => setGroupMode({
73264
73273
  draft,
73265
73274
  accountId: account.accountId,
@@ -73267,6 +73276,7 @@ Attachment: ${mediaUrl}` : `Attachment: ${mediaUrl}`;
73267
73276
  mode: value === "on" ? "thread" : value === "off" ? "main" : "auto"
73268
73277
  })
73269
73278
  });
73279
+ cfg = committed.nextConfig;
73270
73280
  appliedReplyThreads = value;
73271
73281
  },
73272
73282
  resolveContext: async () => (await resolveOpenClawBotSettings({
@@ -76357,5 +76367,5 @@ export {
76357
76367
  inlineChannelPlugin
76358
76368
  };
76359
76369
 
76360
- //# debugId=4BAD29256740AC1D64756E2164756E21
76370
+ //# debugId=FE6149523939E0FE64756E2164756E21
76361
76371
  //# sourceMappingURL=channel-plugin-api.js.map