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

推荐订阅源

博客园 - 三生石上(FineUI控件)
月光博客
月光博客
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
T
The Blog of Author Tim Ferriss
The GitHub Blog
The GitHub Blog
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Vercel News
Vercel News
P
Proofpoint News Feed
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
Visual Studio Blog
Jina AI
Jina AI
Y
Y Combinator Blog
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI

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: dedupe cli runner spawn mock reads · openclaw/openc...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -281,7 +281,7 @@ describe("runCliAgent spawn path", () => {

281281

};

282282

await executePreparedCliRun(context);

283283284-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as { argv?: string[] };

284+

const input = mockCallArg(supervisorSpawnMock) as { argv?: string[] };

285285

const allArgs = (input.argv ?? []).join("\n");

286286

expect(allArgs).not.toContain("Tools are disabled in this session");

287287

expect(allArgs).toContain("You are a helpful assistant.");

@@ -331,7 +331,7 @@ describe("runCliAgent spawn path", () => {

331331

}),

332332

);

333333334-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

334+

const input = mockCallArg(supervisorSpawnMock) as {

335335

argv?: string[];

336336

input?: string;

337337

};

@@ -383,7 +383,7 @@ describe("runCliAgent spawn path", () => {

383383

}),

384384

);

385385386-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

386+

const input = mockCallArg(supervisorSpawnMock) as {

387387

argv?: string[];

388388

input?: string;

389389

mode?: string;

@@ -415,7 +415,7 @@ describe("runCliAgent spawn path", () => {

415415

expect(resolveArgsInput.thinkingLevel).toBe("high");

416416

expect(resolveArgsInput.useResume).toBe(false);

417417

expect(resolveArgsInput.baseArgs).toEqual(["-p", "--output-format", "stream-json"]);

418-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as { argv?: string[] };

418+

const input = mockCallArg(supervisorSpawnMock) as { argv?: string[] };

419419

expect(requireArgAfter(input.argv, "--effort")).toBe("high");

420420

});

421421

@@ -655,7 +655,7 @@ describe("runCliAgent spawn path", () => {

655655

const result = await executePreparedCliRun(context, "thread-123");

656656657657

expect(result.text).toBe("ok");

658-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

658+

const input = mockCallArg(supervisorSpawnMock) as {

659659

argv?: string[];

660660

mode?: string;

661661

timeoutMs?: number;

@@ -917,7 +917,7 @@ describe("runCliAgent spawn path", () => {

917917

}),

918918

);

919919920-

const spawnInput = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

920+

const spawnInput = mockCallArg(supervisorSpawnMock) as {

921921

argv?: string[];

922922

stdinMode?: string;

923923

};

@@ -2162,7 +2162,7 @@ describe("runCliAgent spawn path", () => {

21622162

"thread-123",

21632163

);

216421642165-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2165+

const input = mockCallArg(supervisorSpawnMock) as {

21662166

env?: Record<string, string | undefined>;

21672167

};

21682168

expect(input.env?.SAFE_KEY).toBe("ok");

@@ -2190,7 +2190,7 @@ describe("runCliAgent spawn path", () => {

21902190

"thread-123",

21912191

);

219221922193-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2193+

const input = mockCallArg(supervisorSpawnMock) as {

21942194

env?: Record<string, string | undefined>;

21952195

};

21962196

expect(input.env?.SAFE_KEEP).toBe("keep-me");

@@ -2214,7 +2214,7 @@ describe("runCliAgent spawn path", () => {

22142214

"thread-123",

22152215

);

221622162217-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2217+

const input = mockCallArg(supervisorSpawnMock) as {

22182218

env?: Record<string, string | undefined>;

22192219

};

22202220

expect(input.env?.SAFE_CLEAR).toBe("from-base");

@@ -2243,7 +2243,7 @@ describe("runCliAgent spawn path", () => {

22432243

"thread-123",

22442244

);

224522452246-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2246+

const input = mockCallArg(supervisorSpawnMock) as {

22472247

env?: Record<string, string | undefined>;

22482248

};

22492249

expect(input.env?.SAFE_OVERRIDE).toBe("from-override");

@@ -2299,7 +2299,7 @@ describe("runCliAgent spawn path", () => {

22992299

}),

23002300

);

230123012302-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2302+

const input = mockCallArg(supervisorSpawnMock) as {

23032303

env?: Record<string, string | undefined>;

23042304

};

23052305

expect(input.env?.SAFE_KEEP).toBe("ok");

@@ -2369,7 +2369,7 @@ describe("runCliAgent spawn path", () => {

2369236923702370

await executePreparedCliRun(context, "thread-123");

237123712372-

const input = supervisorSpawnMock.mock.calls.at(0)?.[0] as {

2372+

const input = mockCallArg(supervisorSpawnMock) as {

23732373

argv?: string[];

23742374

input?: string;

23752375

};