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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
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(ui): filter sidebar recent sessions by selected agent...
zhangguiping · 2026-05-31 · via Recent Commits to openclaw:main

@@ -45,7 +45,7 @@ import { isSessionRunActive } from "./session-run-state.ts";

4545

import { normalizeLowercaseStringOrEmpty, normalizeOptionalString } from "./string-coerce.ts";

4646

import type { ChatModelOverride, ModelCatalogEntry } from "./types.ts";

4747

import type { SessionsListResult } from "./types.ts";

48-

import type { ChatAttachment, ChatQueueItem } from "./ui-types.ts";

48+

import type { ChatAttachment, ChatQueueItem, ChatSessionRefreshTarget } from "./ui-types.ts";

4949

import { generateUUID } from "./uuid.ts";

5050

import { isRenderableControlUiAvatarUrl } from "./views/agents-utils.ts";

5151

@@ -77,7 +77,7 @@ export type ChatHost = ChatInputHistoryState & {

7777

sessionsShowArchived?: boolean;

7878

updateComplete?: Promise<unknown>;

7979

requestUpdate?: () => void;

80-

refreshSessionsAfterChat: Set<string>;

80+

refreshSessionsAfterChat: Map<string, ChatSessionRefreshTarget>;

8181

pendingAbort?: { runId?: string | null; sessionKey: string; agentId?: string } | null;

8282

chatSubmitGuards?: Map<string, Promise<void>>;

8383

assistantAgentId?: string | null;

@@ -250,6 +250,12 @@ function resolveSelectedGlobalAgentId(

250250

return agentId ? normalizeAgentId(agentId) : undefined;

251251

}

252252253+

function resolveDefaultAgentIdForList(host: Pick<ChatHost, "agentsList" | "hello">): string {

254+

return normalizeAgentId(

255+

host.agentsList?.defaultId ?? readHelloDefaultAgentId(host) ?? DEFAULT_AGENT_ID,

256+

);

257+

}

258+253259

function scopedAgentIdForSession(host: ChatHost, sessionKey: string | undefined | null) {

254260

return isGlobalSessionKey(sessionKey)

255261

? resolveSelectedGlobalAgentId(host)

@@ -291,6 +297,32 @@ export function scopedAgentParamsForSession(

291297

return agentId ? { agentId } : {};

292298

}

293299300+

export function scopedAgentListParamsForSession(

301+

host: Pick<ChatHost, "assistantAgentId" | "agentsList" | "hello">,

302+

sessionKey: string,

303+

) {

304+

const parsed = parseAgentSessionKey(sessionKey);

305+

const normalizedSessionKey = normalizeLowercaseStringOrEmpty(sessionKey);

306+

const agentId =

307+

parsed?.agentId ??

308+

(normalizedSessionKey === "global"

309+

? resolveSelectedGlobalAgentId(host)

310+

: normalizedSessionKey === "unknown"

311+

? undefined

312+

: resolveDefaultAgentIdForList(host));

313+

return agentId ? { agentId: normalizeAgentId(agentId) } : {};

314+

}

315+316+

export function scopedAgentListParamsForRefreshTarget(

317+

host: Pick<ChatHost, "assistantAgentId" | "agentsList" | "hello">,

318+

target: ChatSessionRefreshTarget,

319+

) {

320+

const agentId =

321+

normalizeOptionalString(target.agentId) ??

322+

scopedAgentListParamsForSession(host, target.sessionKey).agentId;

323+

return agentId ? { agentId: normalizeAgentId(agentId) } : {};

324+

}

325+294326

export async function handleAbortChat(host: ChatHost, opts?: ChatAbortOptions) {

295327

const activeRunId = host.chatRunId;

296328

const clearDraft = () => {

@@ -593,12 +625,17 @@ async function sendQueuedChatMessage(

593625

}

594626

}

595627

if (prepared.refreshSessions) {

628+

const refreshTarget = {

629+

sessionKey,

630+

agentId: prepared.agentId,

631+

};

596632

if (ack.status === "ok") {

597633

void loadSessions(host as unknown as SessionsState, {

598634

...createChatSessionsLoadOverrides(host),

635+

...scopedAgentListParamsForRefreshTarget(host, refreshTarget),

599636

});

600637

} else {

601-

host.refreshSessionsAfterChat.add(ack.runId);

638+

host.refreshSessionsAfterChat.set(ack.runId, refreshTarget);

602639

}

603640

}

604641

discardChatAttachmentDataUrls(excludeComposerAttachments(host, attachments));

@@ -1299,7 +1336,7 @@ export async function refreshChat(

12991336

const secondaryRefresh = Promise.allSettled([

13001337

loadSessions(host as unknown as SessionsState, {

13011338

...createChatSessionsLoadOverrides(host),

1302-

...scopedAgentParamsForSession(host, host.sessionKey),

1339+

...scopedAgentListParamsForSession(host, host.sessionKey),

13031340

}),

13041341

refreshChatAvatar(host),

13051342

refreshChatModels(host),