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

推荐订阅源

Y
Y Combinator Blog
V
V2EX
Jina AI
Jina AI
爱范儿
爱范儿
M
MIT News - Artificial intelligence
量子位
L
LangChain Blog
Google DeepMind News
Google DeepMind News
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
腾讯CDC
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Engineering at Meta
Engineering at Meta
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss

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
fix: show deep status config warnings · openclaw/openclaw...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -44,6 +44,7 @@ type ConfigSummary = {

4444

exists: boolean;

4545

valid: boolean;

4646

issues?: Array<{ path: string; message: string }>;

47+

warnings?: ConfigFileSnapshot["warnings"];

4748

controlUi?: GatewayControlUiConfig;

4849

};

4950

@@ -198,11 +199,16 @@ async function readFastStatusConfig(configPath: string): Promise<StatusConfigRea

198199

async function readFullStatusConfig(params: {

199200

env: NodeJS.ProcessEnv;

200201

configPath: string;

202+

pluginValidation?: "full" | "skip";

201203

}): Promise<StatusConfigRead> {

202204

const io = createConfigIO({

203205

env: params.env,

204206

configPath: params.configPath,

205-

pluginValidation: "skip",

207+

pluginValidation: params.pluginValidation ?? "skip",

208+

logger: {

209+

error: () => {},

210+

warn: () => {},

211+

},

206212

});

207213

const snapshot = await io.readConfigFileSnapshot().catch(() => null);

208214

const cfg = resolveSnapshotRuntimeConfig(snapshot) ?? io.loadConfig();

@@ -212,6 +218,7 @@ async function readFullStatusConfig(params: {

212218

exists: snapshot?.exists ?? false,

213219

valid: snapshot?.valid ?? true,

214220

...(snapshot?.issues?.length ? { issues: snapshot.issues } : {}),

221+

...(snapshot?.warnings?.length ? { warnings: snapshot.warnings } : {}),

215222

controlUi: cfg.gateway?.controlUi,

216223

},

217224

cfg,

@@ -222,12 +229,14 @@ async function readFullStatusConfig(params: {

222229

async function readStatusConfig(params: {

223230

env: NodeJS.ProcessEnv;

224231

configPath: string;

232+

deep?: boolean;

225233

}): Promise<StatusConfigRead> {

226234

return (

227-

(await readFastStatusConfig(params.configPath)) ??

235+

(params.deep ? null : await readFastStatusConfig(params.configPath)) ??

228236

(await readFullStatusConfig({

229237

env: params.env,

230238

configPath: params.configPath,

239+

pluginValidation: params.deep ? "full" : "skip",

231240

}))

232241

);

233242

}

@@ -323,6 +332,7 @@ function resolveCliStatusSummary(argv: string[] = process.argv): CliStatusSummar

323332324333

async function loadDaemonConfigContext(

325334

serviceEnv?: Record<string, string>,

335+

opts: { deep?: boolean } = {},

326336

): Promise<DaemonConfigContext> {

327337

const mergedDaemonEnv = {

328338

...(process.env as Record<string, string | undefined>),

@@ -338,6 +348,7 @@ async function loadDaemonConfigContext(

338348

const cliConfigRead = await readStatusConfig({

339349

env: process.env,

340350

configPath: cliConfigPath,

351+

deep: opts.deep,

341352

});

342353

const sharesDaemonConfigContext =

343354

sameConfigPath && (cliConfigRead.mode === "fast" || !serviceEnv);

@@ -346,6 +357,7 @@ async function loadDaemonConfigContext(

346357

: await readStatusConfig({

347358

env: mergedDaemonEnv as NodeJS.ProcessEnv,

348359

configPath: daemonConfigPath,

360+

deep: opts.deep,

349361

});

350362351363

return {

@@ -477,7 +489,7 @@ export async function gatherDaemonStatus(

477489

cliConfigSummary,

478490

daemonConfigSummary,

479491

configMismatch,

480-

} = await loadDaemonConfigContext(command?.environment);

492+

} = await loadDaemonConfigContext(command?.environment, { deep: opts.deep });

481493

const { gateway, daemonPort, cliPort, probeUrlOverride } = await resolveGatewayStatusSummary({

482494

cliCfg,

483495

daemonCfg,