惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The GitHub Blog
The GitHub Blog
I
InfoQ
U
Unit 42
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
月光博客
月光博客
D
Docker
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
博客园 - 聂微东
A
About on SuperTechFans
腾讯CDC
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
博客园 - 【当耐特】
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore(deadcode): share ui helper predicates · openclaw/op...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -332,7 +332,7 @@ function insertMessageAtIndex(messages: unknown[], message: unknown, index: numb

332332

return [...messages.slice(0, index), message, ...messages.slice(index)];

333333

}

334334
335-

function messageTimestampMs(message: unknown): number | null {

335+

export function messageTimestampMs(message: unknown): number | null {

336336

if (!message || typeof message !== "object") {

337337

return null;

338338

}

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,7 @@ import {

1919

hasVisibleStreamParts,

2020

historyReplacedVisibleStream,

2121

materializeVisibleStreamState,

22+

messageTimestampMs,

2223

maybeResetToolStream,

2324

persistedCurrentToolStreamIds,

2425

prunePersistedToolStreamMessages,

@@ -31,6 +32,7 @@ import {

3132

recordControlUiPerformanceEvent,

3233

roundedControlUiDurationMs,

3334

} from "../control-ui-performance.ts";

35+

import { isGatewayMethodAdvertised } from "../gateway-methods.ts";

3436

import { GatewayRequestError, type GatewayBrowserClient, type GatewayHelloOk } from "../gateway.ts";

3537

import {

3638

areUiSessionKeysEquivalent,

@@ -52,6 +54,8 @@ import {

5254

isMissingOperatorReadScopeError,

5355

} from "./scope-errors.ts";

5456
57+

export { isGatewayMethodAdvertised } from "../gateway-methods.ts";

58+
5559

const SILENT_REPLY_PATTERN = /^\s*NO_REPLY\s*$/;

5660

const SYNTHETIC_TRANSCRIPT_REPAIR_RESULT =

5761

"[openclaw] missing tool result in session history; inserted synthetic error result for transcript repair.";

@@ -241,18 +245,6 @@ function messageDisplaySignature(message: unknown): string | null {

241245

}

242246

}

243247
244-

function messageTimestampMs(message: unknown): number | null {

245-

if (!message || typeof message !== "object") {

246-

return null;

247-

}

248-

const timestamp = (message as { timestamp?: unknown; ts?: unknown }).timestamp;

249-

if (typeof timestamp === "number" && Number.isFinite(timestamp)) {

250-

return timestamp;

251-

}

252-

const ts = (message as { timestamp?: unknown; ts?: unknown }).ts;

253-

return typeof ts === "number" && Number.isFinite(ts) ? ts : null;

254-

}

255-
256248

function historyHasSameOrNewerDisplayMessage(

257249

historyMessages: unknown[],

258250

signature: string,

@@ -375,14 +367,6 @@ function isUnknownGatewayMethodError(err: unknown, method: string): err is Gatew

375367

);

376368

}

377369
378-

export function isGatewayMethodAdvertised(state: ChatState, method: string): boolean | null {

379-

const methods = state.hello?.features?.methods;

380-

if (!Array.isArray(methods)) {

381-

return null;

382-

}

383-

return methods.includes(method);

384-

}

385-
386370

function resolveStartupRetryDelayMs(err: GatewayRequestError): number {

387371

const retryAfterMs =

388372

typeof err.retryAfterMs === "number" ? err.retryAfterMs : STARTUP_CHAT_HISTORY_DEFAULT_RETRY_MS;

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,4 @@

1+

import { isGatewayMethodAdvertised } from "../gateway-methods.ts";

12

// Control UI controller manages dreaming gateway state.

23

import type { GatewayBrowserClient, GatewayHelloOk } from "../gateway.ts";

34

import { isPluginEnabledInConfigSnapshot } from "../plugin-activation.ts";

@@ -253,16 +254,8 @@ function isMemoryWikiEnabled(state: DreamingState): boolean {

253254

});

254255

}

255256
256-

function hasGatewayMethod(state: DreamingState, method: string): boolean | null {

257-

const methods = state.hello?.features?.methods;

258-

if (!Array.isArray(methods)) {

259-

return null;

260-

}

261-

return methods.includes(method);

262-

}

263-
264257

function canCallMemoryWikiMethod(state: DreamingState, method: string): boolean {

265-

const available = hasGatewayMethod(state, method);

258+

const available = isGatewayMethodAdvertised(state, method);

266259

if (available !== null) {

267260

return available;

268261

}

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,13 @@

1+

// Shared Gateway hello method lookup for feature-gated UI calls.

2+

import type { GatewayHelloOk } from "./gateway.ts";

3+
4+

export function isGatewayMethodAdvertised(

5+

host: { hello?: GatewayHelloOk | null },

6+

method: string,

7+

): boolean | null {

8+

const methods = host.hello?.features?.methods;

9+

if (!Array.isArray(methods)) {

10+

return null;

11+

}

12+

return methods.includes(method);

13+

}