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

推荐订阅源

Y
Y Combinator Blog
腾讯CDC
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
博客园_首页
D
DataBreaches.Net
P
Proofpoint News Feed
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
月光博客
月光博客
Jina AI
Jina AI
Stack Overflow Blog
Stack Overflow Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Vercel News
Vercel News
WordPress大学
WordPress大学
J
Java Code Geeks
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
U
Unit 42

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
fix(control-ui): clarify chat context details · openclaw/...
BunsDev · 2026-04-25 · via Recent Commits to openclaw:main

@@ -49,6 +49,53 @@ type AssistantAttachmentAvailability =

4949

const assistantAttachmentAvailabilityCache = new Map<string, AssistantAttachmentAvailability>();

5050

const ASSISTANT_ATTACHMENT_UNAVAILABLE_RETRY_MS = 5_000;

515152+

export type ChatTimestampDisplay = {

53+

label: string;

54+

title: string;

55+

dateTime: string;

56+

};

57+58+

export function formatChatTimestampForDisplay(timestamp: number): ChatTimestampDisplay {

59+

const date = new Date(timestamp);

60+

if (!Number.isFinite(date.getTime())) {

61+

return {

62+

label: "Unknown date",

63+

title: "Unknown date",

64+

dateTime: "",

65+

};

66+

}

67+68+

return {

69+

label: date.toLocaleString([], {

70+

month: "short",

71+

day: "numeric",

72+

year: "numeric",

73+

hour: "numeric",

74+

minute: "2-digit",

75+

}),

76+

title: date.toLocaleString([], {

77+

weekday: "long",

78+

month: "long",

79+

day: "numeric",

80+

year: "numeric",

81+

hour: "numeric",

82+

minute: "2-digit",

83+

second: "2-digit",

84+

timeZoneName: "short",

85+

}),

86+

dateTime: date.toISOString(),

87+

};

88+

}

89+90+

function renderChatTimestamp(timestamp: number) {

91+

const display = formatChatTimestampForDisplay(timestamp);

92+

return html`

93+

<time class="chat-group-timestamp" datetime=${display.dateTime} title=${display.title}>

94+

${display.label}

95+

</time>

96+

`;

97+

}

98+5299

export function resetAssistantAttachmentAvailabilityCacheForTest() {

53100

assistantAttachmentAvailabilityCache.clear();

54101

for (const blobUrl of managedImageBlobUrlResolvedCache.values()) {

@@ -238,10 +285,6 @@ export function renderStreamingGroup(

238285

basePath?: string,

239286

authToken?: string | null,

240287

) {

241-

const timestamp = new Date(startedAt).toLocaleTimeString([], {

242-

hour: "numeric",

243-

minute: "2-digit",

244-

});

245288

const name = assistant?.name ?? "Assistant";

246289247290

return html`

@@ -260,7 +303,7 @@ export function renderStreamingGroup(

260303

)}

261304

<div class="chat-group-footer">

262305

<span class="chat-sender-name">${name}</span>

263-

<span class="chat-group-timestamp">${timestamp}</span>

306+

${renderChatTimestamp(startedAt)}

264307

</div>

265308

</div>

266309

</div>

@@ -316,10 +359,6 @@ export function renderMessageGroup(

316359

: normalizedRole === "tool"

317360

? "tool"

318361

: "other";

319-

const timestamp = new Date(group.timestamp).toLocaleTimeString([], {

320-

hour: "numeric",

321-

minute: "2-digit",

322-

});

323362324363

// Aggregate usage/cost/model across all messages in the group

325364

const meta = extractGroupMeta(group, opts.contextWindow ?? null);

@@ -365,8 +404,7 @@ export function renderMessageGroup(

365404

)}

366405

<div class="chat-group-footer">

367406

<span class="chat-sender-name">${who}</span>

368-

<span class="chat-group-timestamp">${timestamp}</span>

369-

${renderMessageMeta(meta)}

407+

${renderChatTimestamp(group.timestamp)} ${renderMessageMeta(meta)}

370408

${normalizedRole === "assistant" && isTtsSupported() ? renderTtsButton(group) : nothing}

371409

${opts.onDelete

372410

? renderDeleteButton(opts.onDelete, normalizedRole === "user" ? "left" : "right")

@@ -495,7 +533,15 @@ function renderMessageMeta(meta: GroupMeta | null) {

495533

return nothing;

496534

}

497535498-

return html`<span class="msg-meta">${parts}</span>`;

536+

return html`

537+

<details class="msg-meta">

538+

<summary class="msg-meta__summary" title="Show message context details">

539+

<span class="msg-meta__summary-icon" aria-hidden="true">${icons.chevronRight}</span>

540+

<span>Context</span>

541+

</summary>

542+

<span class="msg-meta__details">${parts}</span>

543+

</details>

544+

`;

499545

}

500546501547

function extractGroupText(group: MessageGroup): string {