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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
U
Unit 42
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
I
InfoQ
WordPress大学
WordPress大学
H
Help Net Security
D
Docker
B
Blog
腾讯CDC
A
About on SuperTechFans
Recent Announcements
Recent Announcements
雷峰网
雷峰网
有赞技术团队
有赞技术团队
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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: trim nested config schema exports · openclaw/op...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -101,7 +101,7 @@ export const HeartbeatSchema = z

101101

})

102102

.optional();

103103104-

export const SandboxDockerSchema = z

104+

const SandboxDockerSchema = z

105105

.object({

106106

image: z.string().optional(),

107107

containerPrefix: z.string().optional(),

@@ -213,7 +213,7 @@ export const SandboxDockerSchema = z

213213

})

214214

.optional();

215215216-

export const SandboxBrowserSchema = z

216+

const SandboxBrowserSchema = z

217217

.object({

218218

enabled: z.boolean().optional(),

219219

image: z.string().optional(),

@@ -243,7 +243,7 @@ export const SandboxBrowserSchema = z

243243

.strict()

244244

.optional();

245245246-

export const SandboxPruneSchema = z

246+

const SandboxPruneSchema = z

247247

.object({

248248

idleHours: z.number().int().nonnegative().optional(),

249249

maxAgeDays: z.number().int().nonnegative().optional(),

@@ -261,7 +261,7 @@ export const AgentContextLimitsSchema = z

261261

.strict()

262262

.optional();

263263264-

export const AgentSkillsLimitsSchema = z

264+

const AgentSkillsLimitsSchema = z

265265

.object({

266266

maxSkillsPromptChars: z.number().int().min(0).optional(),

267267

})

@@ -317,7 +317,7 @@ const CodexUserLocationSchema = z

317317

})

318318

.optional();

319319320-

export const ToolsWebSearchSchema = z

320+

const ToolsWebSearchSchema = z

321321

.object({

322322

enabled: z.boolean().optional(),

323323

provider: z.string().optional(),

@@ -339,7 +339,7 @@ export const ToolsWebSearchSchema = z

339339

.strict()

340340

.optional();

341341342-

export const ToolsWebFetchSchema = z

342+

const ToolsWebFetchSchema = z

343343

.object({

344344

enabled: z.boolean().optional(),

345345

provider: z.string().optional(),

@@ -375,7 +375,7 @@ export const ToolsWebFetchSchema = z

375375

.strict()

376376

.optional();

377377378-

export const ToolsWebXSearchSchema = z

378+

const ToolsWebXSearchSchema = z

379379

.object({

380380

enabled: z.boolean().optional(),

381381

model: z.string().optional(),

@@ -387,7 +387,7 @@ export const ToolsWebXSearchSchema = z

387387

.strict()

388388

.optional();

389389390-

export const ToolsWebSchema = z

390+

const ToolsWebSchema = z

391391

.object({

392392

search: ToolsWebSearchSchema,

393393

fetch: ToolsWebFetchSchema,

@@ -396,7 +396,7 @@ export const ToolsWebSchema = z

396396

.strict()

397397

.optional();

398398399-

export const ToolProfileSchema = z

399+

const ToolProfileSchema = z

400400

.union([z.literal("minimal"), z.literal("coding"), z.literal("messaging"), z.literal("full")])

401401

.optional();

402402

@@ -418,7 +418,7 @@ function addAllowAlsoAllowConflictIssue(

418418

}

419419

}

420420421-

export const ToolPolicyWithProfileSchema = z

421+

const ToolPolicyWithProfileSchema = z

422422

.object({

423423

allow: z.array(z.string()).optional(),

424424

alsoAllow: z.array(z.string()).optional(),

@@ -539,7 +539,7 @@ const ToolLoopDetectionSchema = z

539539

})

540540

.optional();

541541542-

export const SandboxSshSchema = z

542+

const SandboxSshSchema = z

543543

.object({

544544

target: z.string().min(1).optional(),

545545

command: z.string().min(1).optional(),

@@ -595,7 +595,7 @@ const CommonToolPolicyFields = {

595595

byProvider: z.record(z.string(), ToolPolicyWithProfileSchema).optional(),

596596

};

597597598-

export const AgentToolsSchema = z

598+

const AgentToolsSchema = z

599599

.object({

600600

...CommonToolPolicyFields,

601601

elevated: z