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

推荐订阅源

A
About on SuperTechFans
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
I
InfoQ
C
Check Point Blog
IT之家
IT之家
MyScale Blog
MyScale Blog
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
Last Week in AI
Last Week in AI
GbyAI
GbyAI
P
Proofpoint News Feed
量子位
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
阮一峰的网络日志
阮一峰的网络日志
人人都是产品经理
人人都是产品经理
B
Blog
T
The Blog of Author Tim Ferriss
H
Help Net Security
云风的 BLOG
云风的 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
test: clear auto reply runner broad matchers · openclaw/o...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -149,6 +149,29 @@ type RunWithModelFallbackParams = {

149149

run: (provider: string, model: string) => Promise<unknown>;

150150

};

151151152+

function requireRecord(value: unknown, label: string): Record<string, unknown> {

153+

if (typeof value !== "object" || value === null || Array.isArray(value)) {

154+

throw new Error(`expected ${label} to be an object`);

155+

}

156+

return value as Record<string, unknown>;

157+

}

158+159+

function expectRecordFields(

160+

value: unknown,

161+

expected: Record<string, unknown>,

162+

label: string,

163+

): Record<string, unknown> {

164+

const record = requireRecord(value, label);

165+

for (const [key, expectedValue] of Object.entries(expected)) {

166+

expect(record[key], `${label}.${key}`).toEqual(expectedValue);

167+

}

168+

return record;

169+

}

170+171+

function expectReplyText(result: unknown, text: string): void {

172+

expectRecordFields(result, { text }, "reply result");

173+

}

174+152175

beforeEach(() => {

153176

clearRuntimeConfigSnapshot();

154177

resetDiagnosticEventsForTest();

@@ -377,7 +400,7 @@ describe("runReplyAgent auto-compaction token update", () => {

377400

typingMode: "instant",

378401

});

379402380-

expect(result).toMatchObject({ text: "ok" });

403+

expectReplyText(result, "ok");

381404

expect(scheduleFollowupDrain).toHaveBeenCalledTimes(1);

382405

});

383406

@@ -392,21 +415,33 @@ describe("runReplyAgent auto-compaction token update", () => {

392415

},

393416

});

394417395-

expect(usageEvent).toMatchObject({

396-

type: "model.usage",

397-

agentId: "main",

398-

usage: {

418+

const usagePayload = expectRecordFields(

419+

usageEvent,

420+

{

421+

type: "model.usage",

422+

agentId: "main",

423+

},

424+

"usage diagnostic event",

425+

);

426+

expectRecordFields(

427+

usagePayload.usage,

428+

{

399429

input: 75_000,

400430

output: 5_000,

401431

cacheRead: 25_000,

402432

promptTokens: 100_000,

403433

total: 105_000,

404434

},

405-

context: {

435+

"usage diagnostic usage",

436+

);

437+

expectRecordFields(

438+

usagePayload.context,

439+

{

406440

limit: 200_000,

407441

used: 44_000,

408442

},

409-

});

443+

"usage diagnostic context",

444+

);

410445

});

411446412447

it("falls back to last-call prompt usage for live diagnostic context", async () => {

@@ -425,20 +460,32 @@ describe("runReplyAgent auto-compaction token update", () => {

425460

},

426461

});

427462428-

expect(usageEvent).toMatchObject({

429-

type: "model.usage",

430-

usage: {

463+

const usagePayload = expectRecordFields(

464+

usageEvent,

465+

{

466+

type: "model.usage",

467+

},

468+

"usage diagnostic event",

469+

);

470+

expectRecordFields(

471+

usagePayload.usage,

472+

{

431473

input: 75_000,

432474

output: 5_000,

433475

cacheRead: 25_000,

434476

promptTokens: 100_000,

435477

total: 105_000,

436478

},

437-

context: {

479+

"usage diagnostic usage",

480+

);

481+

expectRecordFields(

482+

usagePayload.context,

483+

{

438484

limit: 200_000,

439485

used: 81_000,

440486

},

441-

});

487+

"usage diagnostic context",

488+

);

442489

});

443490

});

444491

@@ -634,7 +681,7 @@ describe("runReplyAgent block streaming", () => {

634681

const result = await resultPromise;

635682636683

expect(sawAbort).toBe(true);

637-

expect(result).toMatchObject({ text: "Final message" });

684+

expectReplyText(result, "Final message");

638685

});

639686

});

640687

@@ -1304,7 +1351,7 @@ describe("runReplyAgent Active Memory inline debug", () => {

13041351

typingMode: "instant",

13051352

});

130613531307-

expect(result).toMatchObject({ text: "Visible reply" });

1354+

expectReplyText(result, "Visible reply");

13081355

expect(Array.isArray(result)).toBe(false);

13091356

});

13101357

@@ -1613,7 +1660,7 @@ describe("runReplyAgent Active Memory inline debug", () => {

16131660

});

1614166116151662

expect(loadSessionStoreSpy).not.toHaveBeenCalledWith(storePath, { skipCache: true });

1616-

expect(result).toMatchObject({ text: "Normal reply" });

1663+

expectReplyText(result, "Normal reply");

16171664

});

16181665

});

16191666

@@ -1690,7 +1737,7 @@ describe("runReplyAgent claude-cli routing", () => {

1690173716911738

expect(runEmbeddedPiAgentMock).not.toHaveBeenCalled();

16921739

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

1693-

expect(result).toMatchObject({ text: "ok" });

1740+

expectReplyText(result, "ok");

16941741

});

1695174216961743

it("does not leak hook-blocked CLI input in raw trace payloads", async () => {

@@ -1871,10 +1918,12 @@ describe("runReplyAgent claude-cli routing", () => {

18711918

});

1872191918731920

expect(runEmbeddedPiAgentMock).not.toHaveBeenCalled();

1874-

expect(runCliAgentMock).toHaveBeenCalledWith(

1875-

expect.objectContaining({ provider: "claude-cli" }),

1921+

expectRecordFields(

1922+

runCliAgentMock.mock.calls[0]?.[0],

1923+

{ provider: "claude-cli" },

1924+

"CLI run params",

18761925

);

1877-

expect(result).toMatchObject({ text: "ok" });

1926+

expectReplyText(result, "ok");

18781927

});

18791928

});

18801929

@@ -1952,7 +2001,7 @@ describe("runReplyAgent messaging tool dedupe", () => {

1952200119532002

const result = await createRun("slack");

195420031955-

expect(result).toMatchObject({ text: "hello world!" });

2004+

expectReplyText(result, "hello world!");

19562005

});

1957200619582007

it("drops duplicate replies when a messaging tool sent the same text via the same provider + target", async () => {

@@ -1978,7 +2027,7 @@ describe("runReplyAgent messaging tool dedupe", () => {

1978202719792028

const result = await createRun("slack");

198020291981-

expect(result).toMatchObject({ text: "hello world!" });

2030+

expectReplyText(result, "hello world!");

19822031

});

1983203219842033

it("keeps final reply when text matches a cross-target messaging send", async () => {

@@ -1991,7 +2040,7 @@ describe("runReplyAgent messaging tool dedupe", () => {

1991204019922041

const result = await createRun("slack");

199320421994-

expect(result).toMatchObject({ text: "hello world!" });

2043+

expectReplyText(result, "hello world!");

19952044

});

1996204519972046

it("delivers replies when account ids do not match", async () => {

@@ -2011,7 +2060,7 @@ describe("runReplyAgent messaging tool dedupe", () => {

2011206020122061

const result = await createRun("slack");

201320622014-

expect(result).toMatchObject({ text: "hello world!" });

2063+

expectReplyText(result, "hello world!");

20152064

});

20162065

});

20172066

@@ -2083,9 +2132,10 @@ describe("runReplyAgent reminder commitment guard", () => {

20832132

});

2084213320852134

const result = await createRun();

2086-

expect(result).toMatchObject({

2087-

text: "I'll remind you tomorrow morning.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2088-

});

2135+

expectReplyText(

2136+

result,

2137+

"I'll remind you tomorrow morning.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2138+

);

20892139

});

2090214020912141

it("keeps reminder commitment unchanged when cron.add succeeded", async () => {

@@ -2096,9 +2146,7 @@ describe("runReplyAgent reminder commitment guard", () => {

20962146

});

2097214720982148

const result = await createRun();

2099-

expect(result).toMatchObject({

2100-

text: "I'll remind you tomorrow morning.",

2101-

});

2149+

expectReplyText(result, "I'll remind you tomorrow morning.");

21022150

});

2103215121042152

it("suppresses guard note when session already has an active cron job", async () => {

@@ -2123,9 +2171,7 @@ describe("runReplyAgent reminder commitment guard", () => {

21232171

});

2124217221252173

const result = await createRun();

2126-

expect(result).toMatchObject({

2127-

text: "I'll ping you when it's done.",

2128-

});

2174+

expectReplyText(result, "I'll ping you when it's done.");

21292175

});

2130217621312177

it("still appends guard note when cron jobs exist but not for the current session", async () => {

@@ -2150,9 +2196,10 @@ describe("runReplyAgent reminder commitment guard", () => {

21502196

});

2151219721522198

const result = await createRun();

2153-

expect(result).toMatchObject({

2154-

text: "I'll remind you tomorrow morning.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2155-

});

2199+

expectReplyText(

2200+

result,

2201+

"I'll remind you tomorrow morning.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2202+

);

21562203

});

2157220421582205

it("still appends guard note when cron jobs for session exist but are disabled", async () => {

@@ -2177,9 +2224,10 @@ describe("runReplyAgent reminder commitment guard", () => {

21772224

});

2178222521792226

const result = await createRun();

2180-

expect(result).toMatchObject({

2181-

text: "I'll check back in an hour.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2182-

});

2227+

expectReplyText(

2228+

result,

2229+

"I'll check back in an hour.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2230+

);

21832231

});

2184223221852233

it("still appends guard note when sessionKey is missing", async () => {

@@ -2204,9 +2252,10 @@ describe("runReplyAgent reminder commitment guard", () => {

22042252

});

2205225322062254

const result = await createRun({ omitSessionKey: true });

2207-

expect(result).toMatchObject({

2208-

text: "I'll ping you later.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2209-

});

2255+

expectReplyText(

2256+

result,

2257+

"I'll ping you later.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2258+

);

22102259

});

2211226022122261

it("still appends guard note when cron store read fails", async () => {

@@ -2219,9 +2268,10 @@ describe("runReplyAgent reminder commitment guard", () => {

22192268

});

2220226922212270

const result = await createRun({ sessionKey: "main" });

2222-

expect(result).toMatchObject({

2223-

text: "I'll remind you after lunch.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2224-

});

2271+

expectReplyText(

2272+

result,

2273+

"I'll remind you after lunch.\n\nNote: I did not schedule a reminder in this turn, so this will not trigger automatically.",

2274+

);

22252275

});

22262276

});

22272277

@@ -2705,9 +2755,11 @@ describe("runReplyAgent mid-turn rate-limit fallback", () => {

27052755

const result = await createRun();

27062756

const payload = Array.isArray(result) ? result[0] : result;

270727572708-

expect(payload).toMatchObject({

2709-

mediaUrl: "https://example.test/image.png",

2710-

});

2758+

expectRecordFields(

2759+

payload,

2760+

{ mediaUrl: "https://example.test/image.png" },

2761+

"media-only retry-limit payload",

2762+

);

27112763

expect(payload?.text).toBeUndefined();

27122764

});

27132765

});