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

推荐订阅源

T
The Blog of Author Tim Ferriss
IT之家
IT之家
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - Franky
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
博客园 - 叶小钗
J
Java Code Geeks
腾讯CDC
罗磊的独立博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
B
Blog
V
Visual Studio Blog
F
Fortinet All Blogs

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
feat: add crestodian local planner fallback · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -0,0 +1,122 @@

1+

import fs from "node:fs/promises";

2+

import os from "node:os";

3+

import path from "node:path";

4+

import { clearConfigCache } from "../../src/config/config.js";

5+

import type { OpenClawConfig } from "../../src/config/types.openclaw.js";

6+

import { runCrestodian } from "../../src/crestodian/crestodian.js";

7+

import type { RuntimeEnv } from "../../src/runtime.js";

8+9+

function assert(condition: unknown, message: string): asserts condition {

10+

if (!condition) {

11+

throw new Error(message);

12+

}

13+

}

14+15+

function createRuntime(): { runtime: RuntimeEnv; lines: string[] } {

16+

const lines: string[] = [];

17+

return {

18+

lines,

19+

runtime: {

20+

log: (...args) => lines.push(args.join(" ")),

21+

error: (...args) => lines.push(args.join(" ")),

22+

exit: (code) => {

23+

throw new Error(`exit ${code}`);

24+

},

25+

},

26+

};

27+

}

28+29+

async function installFakeClaudeCli(fakeBinDir: string, promptLogPath: string): Promise<void> {

30+

await fs.mkdir(fakeBinDir, { recursive: true });

31+

const scriptPath = path.join(fakeBinDir, "claude");

32+

await fs.writeFile(

33+

scriptPath,

34+

[

35+

"#!/usr/bin/env bash",

36+

"set -euo pipefail",

37+

'if [[ "${1:-}" == "--version" ]]; then',

38+

' echo "claude 99.0.0"',

39+

" exit 0",

40+

"fi",

41+

"IFS= read -r prompt_line || true",

42+

`printf '%s\\n' "$prompt_line" > ${JSON.stringify(promptLogPath)}`,

43+

'node -e \'console.log(JSON.stringify({ type: "result", session_id: "fake-claude-session", result: JSON.stringify({ reply: "Fake Claude planner selected a typed model update.", command: "set default model openai/gpt-5.2" }), usage: { input_tokens: 1, output_tokens: 1 } }))\'',

44+

].join("\n"),

45+

{ mode: 0o755 },

46+

);

47+

await fs.chmod(scriptPath, 0o755);

48+

}

49+50+

async function main() {

51+

const stateDir =

52+

process.env.OPENCLAW_STATE_DIR ??

53+

(await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-crestodian-planner-")));

54+

const configPath = process.env.OPENCLAW_CONFIG_PATH ?? path.join(stateDir, "openclaw.json");

55+

const fakeBinDir = path.join(stateDir, "fake-bin");

56+

const promptLogPath = path.join(stateDir, "fake-claude-prompt.jsonl");

57+

process.env.OPENCLAW_STATE_DIR = stateDir;

58+

process.env.OPENCLAW_CONFIG_PATH = configPath;

59+

process.env.PATH = `${fakeBinDir}:${process.env.PATH ?? ""}`;

60+

await fs.rm(stateDir, { recursive: true, force: true });

61+

await fs.mkdir(stateDir, { recursive: true });

62+

await installFakeClaudeCli(fakeBinDir, promptLogPath);

63+

clearConfigCache();

64+65+

const runtime = createRuntime();

66+

await runCrestodian(

67+

{

68+

message: "please make the default brain gpt five two",

69+

yes: true,

70+

interactive: false,

71+

},

72+

runtime.runtime,

73+

);

74+

const output = runtime.lines.join("\n");

75+

assert(

76+

output.includes("[crestodian] planner: claude-cli/claude-opus-4-7"),

77+

"configless planner did not use Claude CLI fallback",

78+

);

79+

assert(

80+

output.includes("Fake Claude planner selected a typed model update."),

81+

"planner reply was not surfaced",

82+

);

83+

assert(

84+

output.includes("[crestodian] interpreted: set default model openai/gpt-5.2"),

85+

"planner command was not interpreted",

86+

);

87+

assert(

88+

output.includes("[crestodian] done: config.setDefaultModel"),

89+

"planned model update did not apply",

90+

);

91+92+

const promptLine = await fs.readFile(promptLogPath, "utf8");

93+

assert(promptLine.includes("User request:"), "fake Claude CLI did not receive planner prompt");

94+

assert(

95+

promptLine.includes("OpenClaw docs:"),

96+

"planner prompt did not include docs reference context",

97+

);

98+99+

const config = JSON.parse(await fs.readFile(configPath, "utf8")) as OpenClawConfig;

100+

assert(

101+

config.agents?.defaults?.model &&

102+

typeof config.agents.defaults.model === "object" &&

103+

"primary" in config.agents.defaults.model &&

104+

config.agents.defaults.model.primary === "openai/gpt-5.2",

105+

"planned default model was not written",

106+

);

107+108+

const auditPath = path.join(stateDir, "audit", "crestodian.jsonl");

109+

const audit = (await fs.readFile(auditPath, "utf8")).trim();

110+

assert(

111+

audit.includes('"operation":"config.setDefaultModel"'),

112+

"planned model update audit entry missing",

113+

);

114+115+

console.log("Crestodian planner Docker E2E passed");

116+

process.exit(0);

117+

}

118+119+

main().catch((err) => {

120+

console.error(err);

121+

process.exit(1);

122+

});