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

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
L
LangChain Blog
美团技术团队
N
Netflix TechBlog - Medium
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
博客园 - 司徒正美
爱范儿
爱范儿
D
DataBreaches.Net
月光博客
月光博客
U
Unit 42
B
Blog RSS Feed
Engineering at Meta
Engineering at Meta
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
MongoDB | Blog
MongoDB | Blog
腾讯CDC

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: tighten crestodian assistant assertions · openclaw/...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -39,6 +39,17 @@ function overview(overrides: Partial<CrestodianOverview["tools"]> = {}): Crestod

3939

};

4040

}

414142+

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

43+

expect(value).toBeTruthy();

44+

expect(typeof value).toBe("object");

45+

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

46+

return value as Record<string, unknown>;

47+

}

48+49+

function firstMockArg(mock: ReturnType<typeof vi.fn>): Record<string, unknown> {

50+

return requireRecord(mock.mock.calls[0]?.[0]);

51+

}

52+4253

describe("Crestodian assistant", () => {

4354

it("parses the first compact JSON command", () => {

4455

expect(

@@ -108,34 +119,37 @@ describe("Crestodian assistant", () => {

108119

);

109120

const runEmbeddedPiAgent = vi.fn();

110121111-

await expect(

112-

planCrestodianCommandWithLocalRuntime({

113-

input: "what is going on",

114-

overview: overview({

115-

claude: { command: "claude", found: true },

116-

codex: { command: "codex", found: true },

117-

}),

118-

deps: {

119-

runCliAgent,

120-

runEmbeddedPiAgent,

121-

createTempDir: async () => "/tmp/crestodian-planner",

122-

removeTempDir: async () => {},

123-

},

122+

const result = await planCrestodianCommandWithLocalRuntime({

123+

input: "what is going on",

124+

overview: overview({

125+

claude: { command: "claude", found: true },

126+

codex: { command: "codex", found: true },

124127

}),

125-

).resolves.toMatchObject({

126-

command: "status",

127-

reply: "Checking the shell.",

128-

modelLabel: "claude-cli/claude-opus-4-7",

128+

deps: {

129+

runCliAgent,

130+

runEmbeddedPiAgent,

131+

createTempDir: async () => "/tmp/crestodian-planner",

132+

removeTempDir: async () => {},

133+

},

129134

});

135+

expect(result).not.toBeNull();

136+

if (result === null) {

137+

throw new Error("Expected planner result");

138+

}

139+

expect(result.command).toBe("status");

140+

expect(result.reply).toBe("Checking the shell.");

141+

expect(result.modelLabel).toBe("claude-cli/claude-opus-4-7");

130142131143

expect(runCliAgent).toHaveBeenCalledTimes(1);

132-

const firstCliCall = runCliAgent.mock.calls[0][0];

133-

expect(firstCliCall).toMatchObject({

134-

provider: "claude-cli",

135-

model: "claude-opus-4-7",

136-

cleanupCliLiveSessionOnRunEnd: true,

137-

});

138-

expect(firstCliCall.config?.agents?.defaults?.cliBackends).toBeUndefined();

144+

const firstCliCall = firstMockArg(runCliAgent);

145+

expect(firstCliCall.provider).toBe("claude-cli");

146+

expect(firstCliCall.model).toBe("claude-opus-4-7");

147+

expect(firstCliCall.cleanupCliLiveSessionOnRunEnd).toBe(true);

148+

const firstCliConfig = requireRecord(firstCliCall.config);

149+

const firstCliAgents = requireRecord(firstCliConfig.agents);

150+

const firstCliDefaults = requireRecord(firstCliAgents.defaults);

151+

expect(firstCliDefaults.cliBackends).toBeUndefined();

152+

expect(firstCliCall.extraSystemPrompt).toBeTypeOf("string");

139153

expect(firstCliCall.extraSystemPrompt).toContain("Do not use tools, shell commands");

140154

expect(runEmbeddedPiAgent).not.toHaveBeenCalled();

141155

});

@@ -155,23 +169,23 @@ describe("Crestodian assistant", () => {

155169

codex: { command: "codex", found: true },

156170

}),

157171

);

158-

expect(codexAppServer?.buildConfig("/tmp/workspace")).toMatchObject({

159-

agents: {

160-

defaults: {

161-

workspace: "/tmp/workspace",

162-

model: { primary: "openai/gpt-5.5" },

163-

},

164-

},

165-

plugins: { entries: { codex: { enabled: true } } },

166-

});

167-

expect(codexCli?.buildConfig("/tmp/workspace")).toMatchObject({

168-

agents: {

169-

defaults: {

170-

workspace: "/tmp/workspace",

171-

model: { primary: "codex-cli/gpt-5.5" },

172-

},

173-

},

174-

});

172+

const codexAppServerConfig = requireRecord(codexAppServer?.buildConfig("/tmp/workspace"));

173+

const codexAppServerAgents = requireRecord(codexAppServerConfig.agents);

174+

const codexAppServerDefaults = requireRecord(codexAppServerAgents.defaults);

175+

const codexAppServerModel = requireRecord(codexAppServerDefaults.model);

176+

const codexAppServerPlugins = requireRecord(codexAppServerConfig.plugins);

177+

const codexAppServerEntries = requireRecord(codexAppServerPlugins.entries);

178+

const codexAppServerCodexEntry = requireRecord(codexAppServerEntries.codex);

179+

expect(codexAppServerDefaults.workspace).toBe("/tmp/workspace");

180+

expect(codexAppServerModel.primary).toBe("openai/gpt-5.5");

181+

expect(codexAppServerCodexEntry.enabled).toBe(true);

182+183+

const codexCliConfig = requireRecord(codexCli?.buildConfig("/tmp/workspace"));

184+

const codexCliAgents = requireRecord(codexCliConfig.agents);

185+

const codexCliDefaults = requireRecord(codexCliAgents.defaults);

186+

const codexCliModel = requireRecord(codexCliDefaults.model);

187+

expect(codexCliDefaults.workspace).toBe("/tmp/workspace");

188+

expect(codexCliModel.primary).toBe("codex-cli/gpt-5.5");

175189

});

176190177191

it("falls back to Codex app-server when Claude CLI planning fails", async () => {

@@ -187,43 +201,43 @@ describe("Crestodian assistant", () => {

187201

}),

188202

);

189203190-

await expect(

191-

planCrestodianCommandWithLocalRuntime({

192-

input: "is gateway alive",

193-

overview: overview({

194-

claude: { command: "claude", found: true },

195-

codex: { command: "codex", found: true },

196-

}),

197-

deps: {

198-

runCliAgent,

199-

runEmbeddedPiAgent,

200-

createTempDir: async () => "/tmp/crestodian-planner",

201-

removeTempDir: async () => {},

202-

},

204+

const result = await planCrestodianCommandWithLocalRuntime({

205+

input: "is gateway alive",

206+

overview: overview({

207+

claude: { command: "claude", found: true },

208+

codex: { command: "codex", found: true },

203209

}),

204-

).resolves.toMatchObject({

205-

command: "gateway status",

206-

reply: "Codex planner online.",

207-

modelLabel: "openai/gpt-5.5 via codex",

210+

deps: {

211+

runCliAgent,

212+

runEmbeddedPiAgent,

213+

createTempDir: async () => "/tmp/crestodian-planner",

214+

removeTempDir: async () => {},

215+

},

208216

});

217+

expect(result).not.toBeNull();

218+

if (result === null) {

219+

throw new Error("Expected planner result");

220+

}

221+

expect(result.command).toBe("gateway status");

222+

expect(result.reply).toBe("Codex planner online.");

223+

expect(result.modelLabel).toBe("openai/gpt-5.5 via codex");

209224210225

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

211-

const firstEmbeddedCall = runEmbeddedPiAgent.mock.calls[0][0];

212-

expect(firstEmbeddedCall).toMatchObject({

213-

provider: "openai",

214-

model: "gpt-5.5",

215-

agentHarnessId: "codex",

216-

disableTools: true,

217-

toolsAllow: [],

218-

});

219-

expect(firstEmbeddedCall.config).toMatchObject({

220-

agents: {

221-

defaults: {

222-

model: { primary: "openai/gpt-5.5" },

223-

},

224-

},

225-

plugins: { entries: { codex: { enabled: true } } },

226-

});

226+

const firstEmbeddedCall = firstMockArg(runEmbeddedPiAgent);

227+

expect(firstEmbeddedCall.provider).toBe("openai");

228+

expect(firstEmbeddedCall.model).toBe("gpt-5.5");

229+

expect(firstEmbeddedCall.agentHarnessId).toBe("codex");

230+

expect(firstEmbeddedCall.disableTools).toBe(true);

231+

expect(firstEmbeddedCall.toolsAllow).toEqual([]);

232+

const embeddedConfig = requireRecord(firstEmbeddedCall.config);

233+

const embeddedAgents = requireRecord(embeddedConfig.agents);

234+

const embeddedDefaults = requireRecord(embeddedAgents.defaults);

235+

const embeddedModel = requireRecord(embeddedDefaults.model);

236+

const embeddedPlugins = requireRecord(embeddedConfig.plugins);

237+

const embeddedEntries = requireRecord(embeddedPlugins.entries);

238+

const embeddedCodexEntry = requireRecord(embeddedEntries.codex);

239+

expect(embeddedModel.primary).toBe("openai/gpt-5.5");

240+

expect(embeddedCodexEntry.enabled).toBe(true);

227241

});

228242229243

it("uses Codex CLI if the app-server planner is not usable", async () => {

@@ -240,31 +254,31 @@ describe("Crestodian assistant", () => {

240254

throw new Error("codex app-server unavailable");

241255

});

242256243-

await expect(

244-

planCrestodianCommandWithLocalRuntime({

245-

input: "show models",

246-

overview: overview({

247-

codex: { command: "codex", found: true },

248-

}),

249-

deps: {

250-

runCliAgent,

251-

runEmbeddedPiAgent,

252-

createTempDir: async () => "/tmp/crestodian-planner",

253-

removeTempDir: async () => {},

254-

},

257+

const result = await planCrestodianCommandWithLocalRuntime({

258+

input: "show models",

259+

overview: overview({

260+

codex: { command: "codex", found: true },

255261

}),

256-

).resolves.toMatchObject({

257-

command: "models",

258-

reply: "CLI fallback.",

259-

modelLabel: "codex-cli/gpt-5.5",

262+

deps: {

263+

runCliAgent,

264+

runEmbeddedPiAgent,

265+

createTempDir: async () => "/tmp/crestodian-planner",

266+

removeTempDir: async () => {},

267+

},

260268

});

269+

expect(result).not.toBeNull();

270+

if (result === null) {

271+

throw new Error("Expected planner result");

272+

}

273+

expect(result.command).toBe("models");

274+

expect(result.reply).toBe("CLI fallback.");

275+

expect(result.modelLabel).toBe("codex-cli/gpt-5.5");

261276262277

expect(runEmbeddedPiAgent).toHaveBeenCalledTimes(1);

263278

expect(runCliAgent).toHaveBeenCalledTimes(1);

264-

expect(runCliAgent.mock.calls[0][0]).toMatchObject({

265-

provider: "codex-cli",

266-

model: "gpt-5.5",

267-

cleanupCliLiveSessionOnRunEnd: true,

268-

});

279+

const firstCliCall = firstMockArg(runCliAgent);

280+

expect(firstCliCall.provider).toBe("codex-cli");

281+

expect(firstCliCall.model).toBe("gpt-5.5");

282+

expect(firstCliCall.cleanupCliLiveSessionOnRunEnd).toBe(true);

269283

});

270284

});