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

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
博客园_首页
T
Tailwind CSS Blog
美团技术团队
博客园 - 叶小钗
Microsoft Security Blog
Microsoft Security Blog
有赞技术团队
有赞技术团队
Apple Machine Learning Research
Apple Machine Learning Research
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
InfoQ
MongoDB | Blog
MongoDB | Blog
The Cloudflare Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
IT之家
IT之家
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator 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): scope runtime parity mock requests · openclaw/op...
vincentkoc · 2026-06-11 · via Recent Commits to openclaw:main

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

120120

};

121121122122

type RuntimeParityMockRequestSnapshot = {

123+

allInputText?: string;

123124

plannedToolName?: string;

124125

plannedToolArgs?: unknown;

125126

toolOutput?: string;

@@ -798,6 +799,20 @@ function resolveRuntimeParityToolCalls(params: {

798799

return params.mockToolCalls;

799800

}

800801802+

function filterMockRequestsForParentPrompt(

803+

requests: RuntimeParityMockRequestSnapshot[],

804+

parentPrompt: string,

805+

) {

806+

const normalizedParentPrompt = normalizeTextForParity(parentPrompt);

807+

if (!normalizedParentPrompt) {

808+

return requests;

809+

}

810+

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

811+

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

812+

);

813+

return matching.length > 0 ? matching : requests;

814+

}

815+801816

function summarizeSentinelErrorClass(findings: readonly GatewayLogSentinelFinding[]) {

802817

if (findings.length === 0) {

803818

return undefined;

@@ -993,6 +1008,7 @@ async function loadRuntimeParityTranscripts(params: {

99310089941009

async function loadRuntimeParityMockToolCalls(

9951010

mockBaseUrl: string | undefined,

1011+

parentPrompt: string,

9961012

): Promise<RuntimeParityToolCall[] | null> {

9971013

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

9981014

if (!normalizedBaseUrl) {

@@ -1018,12 +1034,15 @@ async function loadRuntimeParityMockToolCalls(

10181034

}

10191035

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

10201036

(entry): RuntimeParityMockRequestSnapshot => ({

1037+

allInputText: readNonEmptyString(entry.allInputText),

10211038

plannedToolName: readNonEmptyString(entry.plannedToolName),

10221039

plannedToolArgs: entry.plannedToolArgs ?? null,

10231040

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

10241041

}),

10251042

);

1026-

return resolveToolCallOrderFromMockRequests(requests);

1043+

return resolveToolCallOrderFromMockRequests(

1044+

filterMockRequestsForParentPrompt(requests, parentPrompt),

1045+

);

10271046

} catch {

10281047

return null;

10291048

}

@@ -1039,7 +1058,12 @@ export async function captureRuntimeParityCell(

10391058

});

10401059

const transcriptRecords = buildTranscriptRecords(transcriptBytes);

10411060

const transcriptToolCalls = resolveToolCallOrder(transcriptRecords);

1042-

const mockToolCalls = await loadRuntimeParityMockToolCalls(params.mockBaseUrl);

1061+

const parentPrompt =

1062+

transcriptRecords

1063+

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

1064+

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

1065+

.find(Boolean) ?? "";

1066+

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

10431067

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

10441068

const sentinelFindings = [

10451069

...scanGatewayLogSentinels(gatewayLogs),

@@ -1087,6 +1111,7 @@ export async function runRuntimeParityScenario(params: {

1087111110881112

export const testing = {

10891113

classifyRuntimeParityCells,

1114+

filterMockRequestsForParentPrompt,

10901115

resolveRuntimeParityToolCalls,

10911116

resolveToolCallOrderFromMockRequests,

10921117

};