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

推荐订阅源

罗磊的独立博客
Google DeepMind News
Google DeepMind News
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
Recent Announcements
Recent Announcements
D
DataBreaches.Net
B
Blog
博客园 - 【当耐特】
爱范儿
爱范儿
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
WordPress大学
WordPress大学
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
I
InfoQ
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Microsoft Azure Blog
Microsoft Azure Blog
雷峰网
雷峰网
量子位
G
Google Developers Blog

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(qa): align runtime parity evidence with Codex · openc...
vincentkoc · 2026-06-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -168,23 +168,42 @@ describe("runtime parity", () => {

168168

const scoped = __testing.filterMockRequestsForParentPrompt(

169169

[

170170

{

171+

prompt: "Fanout worker alpha: inspect the QA workspace and finish with exactly ALPHA-OK.",

172+

allInputText:

173+

"Delegate one bounded QA task to a subagent. Fanout worker alpha: inspect the QA workspace and finish with exactly ALPHA-OK.",

174+

plannedToolName: "read",

175+

},

176+

{

177+

prompt: "Delegate one bounded QA task to a subagent.",

171178

allInputText: "Delegate one bounded QA task to a subagent.",

172179

plannedToolName: "sessions_spawn",

173180

},

181+

{

182+

prompt: "Continue the bounded QA task with the retained child result.",

183+

allInputText:

184+

"Delegate one bounded QA task to a subagent. Continue the bounded QA task with the retained child result.",

185+

plannedToolName: "sessions_spawn",

186+

},

174187

{

175188

allInputText: "Inspect the QA workspace and return one concise protocol note.",

176189

plannedToolName: "read",

177190

},

178191

{

192+

prompt: "Delegate one bounded QA task to a subagent.",

179193

allInputText: "Delegate one bounded QA task to a subagent. Tool result: child accepted.",

180194

toolOutput: "child accepted",

181195

},

182196

],

183197

"Delegate one bounded QA task to a subagent.",

198+

[

199+

"Delegate one bounded QA task to a subagent.",

200+

"Continue the bounded QA task with the retained child result.",

201+

],

184202

);

185203
186-

expect(scoped).toHaveLength(2);

204+

expect(scoped).toHaveLength(3);

187205

expect(scoped.map((request) => request.plannedToolName ?? "result")).toEqual([

206+

"sessions_spawn",

188207

"sessions_spawn",

189208

"result",

190209

]);

Original file line numberDiff line numberDiff line change

@@ -120,6 +120,7 @@ type RuntimeParityTranscriptRecord = {

120120

};

121121
122122

type RuntimeParityMockRequestSnapshot = {

123+

prompt?: string;

123124

allInputText?: string;

124125

plannedToolName?: string;

125126

plannedToolArgs?: unknown;

@@ -759,14 +760,22 @@ function resolveRuntimeParityToolCalls(params: {

759760

function filterMockRequestsForParentPrompt(

760761

requests: RuntimeParityMockRequestSnapshot[],

761762

parentPrompt: string,

763+

parentPrompts: readonly string[] = [parentPrompt],

762764

) {

763-

const normalizedParentPrompt = normalizeTextForParity(parentPrompt);

764-

if (!normalizedParentPrompt) {

765+

const normalizedParentPrompts = parentPrompts

766+

.map(normalizeTextForParity)

767+

.filter((prompt) => prompt.length > 0);

768+

if (normalizedParentPrompts.length === 0) {

765769

return requests;

766770

}

767-

const matching = requests.filter((request) =>

768-

normalizeTextForParity(request.allInputText ?? "").includes(normalizedParentPrompt),

769-

);

771+

const matching = requests.filter((request) => {

772+

const normalizedPrompt = normalizeTextForParity(request.prompt ?? "");

773+

if (normalizedPrompt) {

774+

return normalizedParentPrompts.some((prompt) => normalizedPrompt.includes(prompt));

775+

}

776+

const normalizedHistory = normalizeTextForParity(request.allInputText ?? "");

777+

return normalizedParentPrompts.some((prompt) => normalizedHistory.includes(prompt));

778+

});

770779

return matching.length > 0 ? matching : requests;

771780

}

772781

@@ -966,6 +975,7 @@ async function loadRuntimeParityTranscripts(params: {

966975

async function loadRuntimeParityMockToolCalls(

967976

mockBaseUrl: string | undefined,

968977

parentPrompt: string,

978+

parentPrompts: readonly string[] = [parentPrompt],

969979

): Promise<RuntimeParityToolCall[] | null> {

970980

const normalizedBaseUrl = mockBaseUrl?.trim().replace(/\/+$/u, "");

971981

if (!normalizedBaseUrl) {

@@ -991,14 +1001,15 @@ async function loadRuntimeParityMockToolCalls(

9911001

}

9921002

const requests = payload.filter(isMessageRecord).map(

9931003

(entry): RuntimeParityMockRequestSnapshot => ({

1004+

prompt: readNonEmptyString(entry.prompt),

9941005

allInputText: readNonEmptyString(entry.allInputText),

9951006

plannedToolName: readNonEmptyString(entry.plannedToolName),

9961007

plannedToolArgs: entry.plannedToolArgs ?? null,

9971008

toolOutput: readNonEmptyString(entry.toolOutput) ?? "",

9981009

}),

9991010

);

10001011

return resolveToolCallOrderFromMockRequests(

1001-

filterMockRequestsForParentPrompt(requests, parentPrompt),

1012+

filterMockRequestsForParentPrompt(requests, parentPrompt, parentPrompts),

10021013

);

10031014

} catch {

10041015

return null;

@@ -1015,12 +1026,16 @@ export async function captureRuntimeParityCell(

10151026

});

10161027

const transcriptRecords = buildTranscriptRecords(transcriptBytes);

10171028

const transcriptToolCalls = resolveToolCallOrder(transcriptRecords);

1018-

const parentPrompt =

1019-

transcriptRecords

1020-

.filter((record) => record.role === "user" && !isToolResultLikeMessage(record.message))

1021-

.map((record) => extractAssistantText(record.message))

1022-

.find(Boolean) ?? "";

1023-

const mockToolCalls = await loadRuntimeParityMockToolCalls(params.mockBaseUrl, parentPrompt);

1029+

const parentPrompts = transcriptRecords

1030+

.filter((record) => record.role === "user")

1031+

.map((record) => extractAssistantText(record.message))

1032+

.filter((prompt) => prompt.length > 0);

1033+

const parentPrompt = parentPrompts[0] ?? "";

1034+

const mockToolCalls = await loadRuntimeParityMockToolCalls(

1035+

params.mockBaseUrl,

1036+

parentPrompt,

1037+

parentPrompts,

1038+

);

10241039

const gatewayLogs = params.gateway.logs?.();

10251040

const sentinelFindings = [

10261041

...scanGatewayLogSentinels(gatewayLogs),

Original file line numberDiff line numberDiff line change

@@ -26,7 +26,9 @@ scenario:

2626

config:

2727

sessionKey: agent:qa:long-context-cache-stability

2828

fixtureFile: large-cache-fixture.txt

29-

cacheEvidenceNeedle: CACHE-FIXTURE-0550

29+

cacheEvidenceNeedle: CACHE-FIXTURE-0050

30+

cacheEvidenceLine: "CACHE-FIXTURE-0050: stable tool-result evidence for prompt-cache reuse across long sessions."

31+

followupPromptNeedle: Using the already-read

3032

warmupMarker: QA-LARGE-CACHE-WARMUP-OK

3133

hitMarker: QA-LARGE-CACHE-HIT-OK

3234

@@ -84,8 +86,17 @@ flow:

8486

- set: debugRequests

8587

value:

8688

expr: "env.mock ? [...(await fetchJson(`${env.mock.baseUrl}/debug/requests`))] : []"

89+

- set: cappedReadOutputIndex

90+

value:

91+

expr: "debugRequests.reduce((found, planned, index) => { if (found >= 0 || !planned.plannedToolCallId || planned.plannedToolName !== 'read' || planned.plannedToolArgs?.path !== config.fixtureFile) return found; const outputOffset = debugRequests.slice(index + 1).findIndex((candidate) => Boolean(candidate.toolOutputCallId) && candidate.toolOutputCallId === planned.plannedToolCallId); if (outputOffset < 0) return found; const output = debugRequests[index + 1 + outputOffset]; const evidence = [planned.allInputText, output.allInputText, output.toolOutput].filter((value) => typeof value === 'string').join('\\n'); const hasCodexFormattedTruncation = evidence.includes('Warning: truncated output') && (evidence.includes('chars truncated') || evidence.includes('tokens truncated')); return evidence.includes(config.cacheEvidenceLine) && (evidence.includes('[Read output capped at 50KB') || evidence.includes('...(OpenClaw truncated dynamic tool result') || evidence.includes('...(truncated)...') || hasCodexFormattedTruncation) ? index + 1 + outputOffset : found; }, -1)"

92+

- set: hasCappedReadEvidence

93+

value:

94+

expr: "cappedReadOutputIndex >= 0"

95+

- set: hasFollowupCacheEvidence

96+

value:

97+

expr: "cappedReadOutputIndex >= 0 && debugRequests.some((request, index) => index > cappedReadOutputIndex && String(request.prompt ?? '').includes(config.followupPromptNeedle) && String(request.allInputText ?? '').includes(config.cacheEvidenceLine))"

8798

- assert:

88-

expr: "!env.mock || debugRequests.some((request, index) => request.plannedToolName === 'read' && request.plannedToolArgs?.path === config.fixtureFile && typeof request.plannedToolCallId === 'string' && debugRequests.slice(index + 1).some((result, resultOffset) => result.toolOutputCallId === request.plannedToolCallId && String(result.toolOutput ?? '').includes(config.cacheEvidenceNeedle) && (String(result.toolOutput ?? '').includes('[Read output capped at 50KB') || (String(result.toolOutput ?? '').includes('...(truncated)...') && String(result.toolOutput ?? '').length <= 13000)) && debugRequests.slice(index + resultOffset + 2).some((followup) => followup.plannedToolName === 'read' && followup.plannedToolArgs?.path === config.fixtureFile && String(followup.allInputText ?? '').includes(config.cacheEvidenceNeedle) && (String(followup.allInputText ?? '').includes('[Read output capped at 50KB') || String(followup.allInputText ?? '').includes('...(truncated)...')))))"

99+

expr: "!env.mock || (hasCappedReadEvidence && hasFollowupCacheEvidence)"

89100

message:

90-

expr: "`large capped read tool result was not observed: ${JSON.stringify(debugRequests.slice(-8).map((request) => ({ plannedToolName: request.plannedToolName ?? null, plannedToolArgs: request.plannedToolArgs ?? null, plannedToolCallId: request.plannedToolCallId ?? null, toolOutputCallId: request.toolOutputCallId ?? null, toolOutputLength: String(request.toolOutput ?? '').length, toolOutputHasNeedle: String(request.toolOutput ?? '').includes(config.cacheEvidenceNeedle), toolOutputHasReadCap: String(request.toolOutput ?? '').includes('[Read output capped at 50KB'), toolOutputHasCodexTruncation: String(request.toolOutput ?? '').includes('...(truncated)...'), inputHasNeedle: String(request.allInputText ?? '').includes(config.cacheEvidenceNeedle), inputHasReadCap: String(request.allInputText ?? '').includes('[Read output capped at 50KB'), inputHasCodexTruncation: String(request.allInputText ?? '').includes('...(truncated)...') })))}`"

101+

expr: "`large capped read cache evidence was not observed: ${JSON.stringify({ hasCappedReadEvidence, hasFollowupCacheEvidence, requests: debugRequests.slice(-8).map((request) => ({ prompt: request.prompt ?? null, plannedToolName: request.plannedToolName ?? null, plannedToolArgs: request.plannedToolArgs ?? null, plannedToolCallId: request.plannedToolCallId ?? null, toolOutputCallId: request.toolOutputCallId ?? null, toolOutputLength: String(request.toolOutput ?? '').length, outputHasReadCap: String(request.toolOutput ?? '').includes('[Read output capped at 50KB'), outputHasCodexTruncation: String(request.toolOutput ?? '').includes('...(truncated)...'), inputHasEvidenceLine: String(request.allInputText ?? '').includes(config.cacheEvidenceLine) })) })}`"

91102

detailsExpr: "outbound?.text ?? config.hitMarker"