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

推荐订阅源

J
Java Code Geeks
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园_首页
M
MIT News - Artificial intelligence
D
DataBreaches.Net
L
LangChain Blog
宝玉的分享
宝玉的分享
F
Fortinet All Blogs
A
About on SuperTechFans
月光博客
月光博客
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
腾讯CDC
Vercel News
Vercel News
雷峰网
雷峰网
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
阮一峰的网络日志
阮一峰的网络日志
博客园 - 【当耐特】

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: split Crestodian planner backend selection · op...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -24,40 +24,47 @@ docsRefs:

2424

- docs/help/testing.md

2525

codeRefs:

2626

- src/crestodian/operations.ts

27+

- scripts/e2e/crestodian-first-run-spec.json

2728

- scripts/e2e/crestodian-first-run-docker-client.ts

2829

- extensions/qa-lab/src/suite-runtime-agent-process.ts

2930

execution:

3031

kind: flow

3132

summary: Drive the public Crestodian CLI in an isolated fresh state dir and verify setup/model/agent/Discord/audit results.

3233

config:

33-

stateDirName: crestodian-ring-zero-state

34-

defaultWorkspaceName: crestodian-main-workspace

35-

agentWorkspaceName: crestodian-reef-workspace

36-

agentId: reef

37-

model: openai/gpt-5.2

38-

discordEnv: DISCORD_BOT_TOKEN

39-

discordToken: openclaw-crestodian-qa-discord-token

34+

specPath: scripts/e2e/crestodian-first-run-spec.json

4035

```

41364237

```yaml qa-flow

4338

steps:

4439

- name: bootstraps config through Crestodian CLI

4540

actions:

41+

- set: setupSpec

42+

value:

43+

expr: "JSON.parse(await fs.readFile(path.join(env.repoRoot, config.specPath), 'utf8'))"

4644

- set: stateDir

4745

value:

48-

expr: "path.join(env.gateway.tempRoot, config.stateDirName)"

46+

expr: "path.join(env.gateway.tempRoot, setupSpec.stateDirName)"

4947

- set: configPath

5048

value:

5149

expr: "path.join(stateDir, 'openclaw.json')"

5250

- set: defaultWorkspace

5351

value:

54-

expr: "path.join(env.gateway.tempRoot, config.defaultWorkspaceName)"

52+

expr: "path.join(env.gateway.tempRoot, setupSpec.defaultWorkspaceName)"

5553

- set: agentWorkspace

5654

value:

57-

expr: "path.join(env.gateway.tempRoot, config.agentWorkspaceName)"

55+

expr: "path.join(env.gateway.tempRoot, setupSpec.agentWorkspaceName)"

56+

- set: commandVars

57+

value:

58+

expr: "({ defaultWorkspace, agentWorkspace, agentId: setupSpec.agentId, model: setupSpec.model, discordEnv: setupSpec.discordEnv })"

59+

- set: renderCommand

60+

value:

61+

lambda:

62+

params:

63+

- template

64+

expr: "String(template).replace(/\\{([A-Za-z0-9_]+)\\}/g, (match, key) => String(commandVars[key] ?? match))"

5865

- set: crestodianEnv

5966

value:

60-

expr: "({ OPENCLAW_STATE_DIR: stateDir, OPENCLAW_CONFIG_PATH: configPath, OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(env.repoRoot, 'dist', 'extensions'), [config.discordEnv]: config.discordToken })"

67+

expr: "({ OPENCLAW_STATE_DIR: stateDir, OPENCLAW_CONFIG_PATH: configPath, OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(env.repoRoot, 'dist', 'extensions'), [setupSpec.discordEnv]: setupSpec.discordToken })"

6168

- call: fs.rm

6269

args:

6370

- ref: stateDir

@@ -85,141 +92,39 @@ steps:

8592

expr: 'String(overviewOutput).includes(''Next: run "setup" to create a starter config'')'

8693

message:

8794

expr: "`fresh Crestodian overview did not recommend setup: ${overviewOutput}`"

88-

- call: runQaCli

89-

saveAs: setupOutput

90-

args:

91-

- ref: env

92-

- - crestodian

93-

- --yes

94-

- -m

95-

- expr: "`setup workspace ${defaultWorkspace} model ${config.model}`"

96-

- timeoutMs: 60000

97-

env:

98-

ref: crestodianEnv

99-

- assert:

100-

expr: "String(setupOutput).includes('[crestodian] done: crestodian.setup')"

101-

message:

102-

expr: "`Crestodian setup did not apply: ${setupOutput}`"

103-

- call: runQaCli

104-

saveAs: modelOutput

105-

args:

106-

- ref: env

107-

- - crestodian

108-

- --yes

109-

- -m

110-

- expr: "`set default model ${config.model}`"

111-

- timeoutMs: 60000

112-

env:

113-

ref: crestodianEnv

114-

- assert:

115-

expr: "String(modelOutput).includes('[crestodian] done: config.setDefaultModel')"

116-

message:

117-

expr: "`Crestodian model update did not apply: ${modelOutput}`"

118-

- call: runQaCli

119-

saveAs: agentOutput

120-

args:

121-

- ref: env

122-

- - crestodian

123-

- --yes

124-

- -m

125-

- expr: "`create agent ${config.agentId} workspace ${agentWorkspace} model ${config.model}`"

126-

- timeoutMs: 60000

127-

env:

128-

ref: crestodianEnv

129-

- assert:

130-

expr: "String(agentOutput).includes('[crestodian] done: agents.create')"

131-

message:

132-

expr: "`Crestodian agent creation did not apply: ${agentOutput}`"

133-

- call: runQaCli

134-

saveAs: discordPluginAllowOutput

135-

args:

136-

- ref: env

137-

- - crestodian

138-

- --yes

139-

- -m

140-

- config set plugins.allow ["discord"]

141-

- timeoutMs: 60000

142-

env:

143-

ref: crestodianEnv

144-

- assert:

145-

expr: "String(discordPluginAllowOutput).includes('[crestodian] done: config.set')"

146-

message:

147-

expr: "`Crestodian Discord plugin allowlist did not apply: ${discordPluginAllowOutput}`"

148-

- call: runQaCli

149-

saveAs: discordPluginEntryOutput

150-

args:

151-

- ref: env

152-

- - crestodian

153-

- --yes

154-

- -m

155-

- config set plugins.entries.discord.enabled true

156-

- timeoutMs: 60000

157-

env:

158-

ref: crestodianEnv

159-

- assert:

160-

expr: "String(discordPluginEntryOutput).includes('[crestodian] done: config.set')"

161-

message:

162-

expr: "`Crestodian Discord plugin entry did not apply: ${discordPluginEntryOutput}`"

163-

- call: runQaCli

164-

saveAs: discordTokenOutput

165-

args:

166-

- ref: env

167-

- - crestodian

168-

- --yes

169-

- -m

170-

- expr: "`config set-ref channels.discord.token env ${config.discordEnv}`"

171-

- timeoutMs: 60000

172-

env:

173-

ref: crestodianEnv

174-

- assert:

175-

expr: "String(discordTokenOutput).includes('[crestodian] done: config.setRef')"

176-

message:

177-

expr: "`Crestodian Discord SecretRef did not apply: ${discordTokenOutput}`"

178-

- call: runQaCli

179-

saveAs: discordEnabledOutput

180-

args:

181-

- ref: env

182-

- - crestodian

183-

- --yes

184-

- -m

185-

- config set channels.discord.enabled true

186-

- timeoutMs: 60000

187-

env:

188-

ref: crestodianEnv

189-

- assert:

190-

expr: "String(discordEnabledOutput).includes('[crestodian] done: config.set')"

191-

message:

192-

expr: "`Crestodian Discord enable did not apply: ${discordEnabledOutput}`"

193-

- call: runQaCli

194-

saveAs: validationOutput

195-

args:

196-

- ref: env

197-

- - crestodian

198-

- -m

199-

- validate config

200-

- timeoutMs: 60000

201-

env:

202-

ref: crestodianEnv

203-

- assert:

204-

expr: "String(validationOutput).includes('Config valid:')"

205-

message:

206-

expr: "`Crestodian config validation did not pass: ${validationOutput}`"

95+

- forEach:

96+

items:

97+

ref: setupSpec.commands

98+

item: commandStep

99+

actions:

100+

- call: runQaCli

101+

saveAs: commandOutput

102+

args:

103+

- ref: env

104+

- expr: "['crestodian', ...(commandStep.approve ? ['--yes'] : []), '-m', renderCommand(commandStep.message)]"

105+

- timeoutMs: 60000

106+

env:

107+

ref: crestodianEnv

108+

- assert:

109+

expr: "String(commandOutput).includes(commandStep.expectOutput)"

110+

message:

111+

expr: "`Crestodian command ${commandStep.id} did not produce ${commandStep.expectOutput}: ${commandOutput}`"

207112

- set: writtenConfig

208113

value:

209114

expr: "JSON.parse(await fs.readFile(configPath, 'utf8'))"

210115

- set: agent

211116

value:

212-

expr: "writtenConfig.agents?.list?.find((candidate) => candidate.id === config.agentId)"

117+

expr: "writtenConfig.agents?.list?.find((candidate) => candidate.id === setupSpec.agentId)"

213118

- assert:

214119

expr: "writtenConfig.agents?.defaults?.workspace === defaultWorkspace"

215120

message:

216121

expr: "`default workspace mismatch: ${JSON.stringify(writtenConfig.agents?.defaults)}`"

217122

- assert:

218-

expr: "writtenConfig.agents?.defaults?.model?.primary === config.model"

123+

expr: "writtenConfig.agents?.defaults?.model?.primary === setupSpec.model"

219124

message:

220125

expr: "`default model mismatch: ${JSON.stringify(writtenConfig.agents?.defaults?.model)}`"

221126

- assert:

222-

expr: "agent?.workspace === agentWorkspace && agent?.model === config.model"

127+

expr: "agent?.workspace === agentWorkspace && agent?.model === setupSpec.model"

223128

message:

224129

expr: "`agent config mismatch: ${JSON.stringify(agent)}`"

225130

- assert:

@@ -231,22 +136,18 @@ steps:

231136

message:

232137

expr: "`Discord was not enabled: ${JSON.stringify(writtenConfig.channels?.discord)}`"

233138

- assert:

234-

expr: "writtenConfig.channels?.discord?.token?.source === 'env' && writtenConfig.channels?.discord?.token?.id === config.discordEnv"

139+

expr: "writtenConfig.channels?.discord?.token?.source === 'env' && writtenConfig.channels?.discord?.token?.id === setupSpec.discordEnv"

235140

message:

236141

expr: "`Discord token was not an env SecretRef: ${JSON.stringify(writtenConfig.channels?.discord?.token)}`"

237142

- assert:

238-

expr: "!JSON.stringify(writtenConfig.channels?.discord ?? {}).includes(config.discordToken)"

143+

expr: "!JSON.stringify(writtenConfig.channels?.discord ?? {}).includes(setupSpec.discordToken)"

239144

message: Crestodian persisted the raw Discord token.

240145

- set: auditText

241146

value:

242147

expr: "await fs.readFile(path.join(stateDir, 'audit', 'crestodian.jsonl'), 'utf8')"

243148

- forEach:

244149

items:

245-

- crestodian.setup

246-

- config.setDefaultModel

247-

- agents.create

248-

- config.setRef

249-

- config.set

150+

ref: setupSpec.auditOperations

250151

item: operation

251152

actions:

252153

- assert: