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

推荐订阅源

P
Proofpoint News Feed
Blog — PlanetScale
Blog — PlanetScale
GbyAI
GbyAI
C
Check Point Blog
腾讯CDC
Stack Overflow Blog
Stack Overflow Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
Recent Announcements
Recent Announcements
L
LangChain Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
J
Java Code Geeks
博客园_首页
Jina AI
Jina AI
美团技术团队
H
Help Net Security
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
S
SegmentFault 最新的问题

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
refactor: trim qa lab helper exports · openclaw/openclaw@...
steipete · 2026-05-02 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -3,7 +3,7 @@ import {

33

QA_AGENTIC_PARITY_TOOL_BACKED_SCENARIO_TITLES,

44

} from "./agentic-parity.js";

55
6-

export type QaParityReportStep = {

6+

type QaParityReportStep = {

77

name: string;

88

status: "pass" | "fail" | "skip";

99

details?: string;

@@ -23,7 +23,7 @@ export type QaParityReportScenario = {

2323

* skips the label-match verification for backwards compatibility

2424

* with legacy summaries that predate the run metadata block.

2525

*/

26-

export type QaParityRunBlock = {

26+

type QaParityRunBlock = {

2727

primaryProvider?: string;

2828

primaryModel?: string;

2929

primaryModelName?: string;

@@ -42,7 +42,7 @@ export type QaParitySuiteSummary = {

4242

run?: QaParityRunBlock;

4343

};

4444
45-

export type QaAgenticParityMetrics = {

45+

type QaAgenticParityMetrics = {

4646

totalScenarios: number;

4747

passedScenarios: number;

4848

failedScenarios: number;

@@ -54,15 +54,15 @@ export type QaAgenticParityMetrics = {

5454

fakeSuccessCount: number;

5555

};

5656
57-

export type QaAgenticParityScenarioComparison = {

57+

type QaAgenticParityScenarioComparison = {

5858

name: string;

5959

candidateStatus: "pass" | "fail" | "skip" | "missing";

6060

baselineStatus: "pass" | "fail" | "skip" | "missing";

6161

candidateDetails?: string;

6262

baselineDetails?: string;

6363

};

6464
65-

export type QaAgenticParityComparison = {

65+

type QaAgenticParityComparison = {

6666

candidateLabel: string;

6767

baselineLabel: string;

6868

comparedAt: string;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

1-

export const QA_AGENTIC_PARITY_PACK = "agentic";

1+

const QA_AGENTIC_PARITY_PACK = "agentic";

22
3-

export const QA_AGENTIC_PARITY_SCENARIOS = [

3+

const QA_AGENTIC_PARITY_SCENARIOS = [

44

{

55

id: "approval-turn-tool-followthrough",

66

title: "Approval turn tool followthrough",

Original file line numberDiff line numberDiff line change

@@ -33,7 +33,7 @@ export type QaCharacterModelOptions = {

3333

fastMode?: boolean;

3434

};

3535
36-

export type QaCharacterEvalRun = {

36+

type QaCharacterEvalRun = {

3737

model: string;

3838

status: QaCharacterRunStatus;

3939

durationMs: number;

@@ -61,15 +61,15 @@ export type QaCharacterEvalJudgment = {

6161

weaknesses: string[];

6262

};

6363
64-

export type QaCharacterEvalResult = {

64+

type QaCharacterEvalResult = {

6565

outputDir: string;

6666

reportPath: string;

6767

summaryPath: string;

6868

runs: QaCharacterEvalRun[];

6969

judgments: QaCharacterEvalJudgeResult[];

7070

};

7171
72-

export type QaCharacterEvalJudgeResult = {

72+

type QaCharacterEvalJudgeResult = {

7373

model: string;

7474

thinkingDefault: QaThinkingLevel;

7575

fastMode: boolean;

Original file line numberDiff line numberDiff line change

@@ -1,6 +1,6 @@

11

import type { QaSeedScenarioWithSource } from "./scenario-catalog.js";

22
3-

export type QaCoverageScenarioSummary = {

3+

type QaCoverageScenarioSummary = {

44

id: string;

55

title: string;

66

sourcePath: string;

@@ -9,18 +9,18 @@ export type QaCoverageScenarioSummary = {

99

risk: string;

1010

};

1111
12-

export type QaCoverageIntent = "primary" | "secondary";

12+

type QaCoverageIntent = "primary" | "secondary";

1313
14-

export type QaCoverageScenarioReference = QaCoverageScenarioSummary & {

14+

type QaCoverageScenarioReference = QaCoverageScenarioSummary & {

1515

intent: QaCoverageIntent;

1616

};

1717
18-

export type QaCoverageFeatureSummary = {

18+

type QaCoverageFeatureSummary = {

1919

id: string;

2020

scenarios: QaCoverageScenarioReference[];

2121

};

2222
23-

export type QaCoverageInventory = {

23+

type QaCoverageInventory = {

2424

scenarioCount: number;

2525

coverageIdCount: number;

2626

primaryCoverageIdCount: number;

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import { setTimeout as sleep } from "node:timers/promises";

22

import { formatErrorMessage } from "openclaw/plugin-sdk/error-runtime";

33
4-

export type QaCronRunLogEntry = {

4+

type QaCronRunLogEntry = {

55

ts?: number;

66

status?: "ok" | "error" | "skipped";

77

summary?: string;

Original file line numberDiff line numberDiff line change

@@ -26,7 +26,7 @@ export async function fetchHealthUrl(url: string): Promise<{ ok: boolean }> {

2626

}

2727

}

2828
29-

export function describeError(error: unknown) {

29+

function describeError(error: unknown) {

3030

if (error instanceof Error) {

3131

return error.message;

3232

}

Original file line numberDiff line numberDiff line change

@@ -7,7 +7,7 @@ type QaGatewayRpcRequestOptions = {

77

timeoutMs?: number;

88

};

99
10-

export type QaGatewayRpcClient = {

10+

type QaGatewayRpcClient = {

1111

request(method: string, rpcParams?: unknown, opts?: QaGatewayRpcRequestOptions): Promise<unknown>;

1212

stop(): Promise<void>;

1313

};

Original file line numberDiff line numberDiff line change

@@ -10,7 +10,7 @@ const CAPTURE_QUERY_PRESETS = new Set([

1010

"error-bursts",

1111

]);

1212
13-

export type QaStartupProbeStatus = {

13+

type QaStartupProbeStatus = {

1414

label: string;

1515

url: string;

1616

ok: boolean;

Original file line numberDiff line numberDiff line change

@@ -50,7 +50,7 @@ export function missingUiHtml() {

5050

</html>`;

5151

}

5252
53-

export function resolveUiDistDir(overrideDir?: string | null, repoRoot = process.cwd()) {

53+

function resolveUiDistDir(overrideDir?: string | null, repoRoot = process.cwd()) {

5454

if (overrideDir?.trim()) {

5555

return overrideDir;

5656

}

Original file line numberDiff line numberDiff line change

@@ -7,9 +7,9 @@ export type QaLabLatestReport = {

77

generatedAt: string;

88

};

99
10-

export type QaLabRunStatus = "idle" | "running" | "completed";

10+

type QaLabRunStatus = "idle" | "running" | "completed";

1111
12-

export type QaLabScenarioStep = {

12+

type QaLabScenarioStep = {

1313

name: string;

1414

status: "pass" | "fail" | "skip";

1515

details?: string;