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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
T
Tailwind CSS Blog
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
博客园 - 叶小钗
N
Netflix TechBlog - Medium
罗磊的独立博客
量子位
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
B
Blog
腾讯CDC
爱范儿
爱范儿
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
F
Fortinet All Blogs
雷峰网
雷峰网
G
Google Developers Blog
Google DeepMind News
Google DeepMind News

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(gateway): index sessions list child links · openclaw/...
vincentkoc · 2026-05-01 · via Recent Commits to openclaw:main

@@ -333,9 +333,8 @@ function shouldKeepStoreOnlyChildLink(entry: SessionEntry, now: number): boolean

333333

);

334334

}

335335336-

function resolveChildSessionKeys(

336+

function resolveRuntimeChildSessionKeys(

337337

controllerSessionKey: string,

338-

store: Record<string, SessionEntry>,

339338

now = Date.now(),

340339

): string[] | undefined {

341340

const childSessionKeys = new Set<string>();

@@ -364,23 +363,47 @@ function resolveChildSessionKeys(

364363

}

365364

childSessionKeys.add(childSessionKey);

366365

}

366+

const childSessions = Array.from(childSessionKeys);

367+

return childSessions.length > 0 ? childSessions : undefined;

368+

}

369+370+

function addChildSessionKey(

371+

childSessionsByKey: Map<string, string[]>,

372+

parentKey: string,

373+

childKey: string,

374+

) {

375+

const current = childSessionsByKey.get(parentKey);

376+

if (current) {

377+

if (!current.includes(childKey)) {

378+

current.push(childKey);

379+

}

380+

return;

381+

}

382+

childSessionsByKey.set(parentKey, [childKey]);

383+

}

384+385+

function buildStoreChildSessionIndex(

386+

store: Record<string, SessionEntry>,

387+

now = Date.now(),

388+

): Map<string, string[]> {

389+

const childSessionsByKey = new Map<string, string[]>();

367390

for (const [key, entry] of Object.entries(store)) {

368-

if (!entry || key === controllerSessionKey) {

391+

if (!entry) {

369392

continue;

370393

}

371-

const spawnedBy = normalizeOptionalString(entry.spawnedBy);

372-

const parentSessionKey = normalizeOptionalString(entry.parentSessionKey);

373-

if (spawnedBy !== controllerSessionKey && parentSessionKey !== controllerSessionKey) {

394+

const parentKeys = [

395+

normalizeOptionalString(entry.spawnedBy),

396+

normalizeOptionalString(entry.parentSessionKey),

397+

].filter((value): value is string => Boolean(value) && value !== key);

398+

if (parentKeys.length === 0) {

374399

continue;

375400

}

376401

const latest = getSessionDisplaySubagentRunByChildSessionKey(key);

402+

let latestControllerSessionKey: string | undefined;

377403

if (latest) {

378-

const latestControllerSessionKey =

404+

latestControllerSessionKey =

379405

normalizeOptionalString(latest.controllerSessionKey) ||

380406

normalizeOptionalString(latest.requesterSessionKey);

381-

if (latestControllerSessionKey !== controllerSessionKey) {

382-

continue;

383-

}

384407

if (

385408

!shouldKeepSubagentRunChildLink(latest, {

386409

activeDescendants: countActiveDescendantRuns(key),

@@ -392,10 +415,37 @@ function resolveChildSessionKeys(

392415

} else if (!shouldKeepStoreOnlyChildLink(entry, now)) {

393416

continue;

394417

}

395-

childSessionKeys.add(key);

418+

for (const parentKey of parentKeys) {

419+

if (latestControllerSessionKey && latestControllerSessionKey !== parentKey) {

420+

continue;

421+

}

422+

addChildSessionKey(childSessionsByKey, parentKey, key);

423+

}

396424

}

397-

const childSessions = Array.from(childSessionKeys);

398-

return childSessions.length > 0 ? childSessions : undefined;

425+

return childSessionsByKey;

426+

}

427+428+

function mergeChildSessionKeys(

429+

runtimeChildSessions: string[] | undefined,

430+

storeChildSessions: string[] | undefined,

431+

): string[] | undefined {

432+

if (!runtimeChildSessions?.length) {

433+

return storeChildSessions?.length ? storeChildSessions : undefined;

434+

}

435+

if (!storeChildSessions?.length) {

436+

return runtimeChildSessions;

437+

}

438+

return Array.from(new Set([...runtimeChildSessions, ...storeChildSessions]));

439+

}

440+441+

function resolveChildSessionKeys(

442+

controllerSessionKey: string,

443+

store: Record<string, SessionEntry>,

444+

now = Date.now(),

445+

): string[] | undefined {

446+

const runtimeChildSessions = resolveRuntimeChildSessionKeys(controllerSessionKey, now);

447+

const storeChildSessions = buildStoreChildSessionIndex(store, now).get(controllerSessionKey);

448+

return mergeChildSessionKeys(runtimeChildSessions, storeChildSessions);

399449

}

400450401451

function resolveTranscriptUsageFallback(params: {

@@ -1313,6 +1363,7 @@ export function buildGatewaySessionRow(params: {

13131363

includeDerivedTitles?: boolean;

13141364

includeLastMessage?: boolean;

13151365

transcriptUsageMaxBytes?: number;

1366+

storeChildSessionsByKey?: Map<string, string[]>;

13161367

}): GatewaySessionRow {

13171368

const { cfg, storePath, store, key, entry } = params;

13181369

const now = params.now ?? Date.now();

@@ -1448,7 +1499,12 @@ export function buildGatewaySessionRow(params: {

14481499

typeof totalTokens === "number" && Number.isFinite(totalTokens) && totalTokens > 0

14491500

? true

14501501

: transcriptUsage?.totalTokensFresh === true;

1451-

const childSessions = resolveChildSessionKeys(key, store, now);

1502+

const childSessions = params.storeChildSessionsByKey

1503+

? mergeChildSessionKeys(

1504+

resolveRuntimeChildSessionKeys(key, now),

1505+

params.storeChildSessionsByKey.get(key),

1506+

)

1507+

: resolveChildSessionKeys(key, store, now);

14521508

const latestCompactionCheckpoint = resolveLatestCompactionCheckpoint(entry);

14531509

const agentRuntime = resolveAgentRuntimeMetadata(cfg, sessionAgentId);

14541510

const selectedOrRuntimeModelProvider = selectedModel?.provider ?? modelProvider;

@@ -1630,6 +1686,7 @@ export function listSessionsFromStore(params: {

16301686

const now = Date.now();

16311687

const sessionListTranscriptUsageMaxBytes = 64 * 1024;

16321688

const sessionListTranscriptFieldRows = 100;

1689+

const storeChildSessionsByKey = buildStoreChildSessionIndex(store, now);

1633169016341691

const includeGlobal = opts.includeGlobal === true;

16351692

const includeUnknown = opts.includeUnknown === true;

@@ -1738,6 +1795,7 @@ export function listSessionsFromStore(params: {

17381795

includeDerivedTitles: includeTranscriptFields && includeDerivedTitles,

17391796

includeLastMessage: includeTranscriptFields && includeLastMessage,

17401797

transcriptUsageMaxBytes: sessionListTranscriptUsageMaxBytes,

1798+

storeChildSessionsByKey,

17411799

});

17421800

});

17431801