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

推荐订阅源

V
V2EX
J
Java Code Geeks
月光博客
月光博客
博客园_首页
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
B
Blog RSS Feed
博客园 - 聂微东
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
Jina AI
Jina AI
S
SegmentFault 最新的问题
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog
Google DeepMind News
Google DeepMind News
阮一峰的网络日志
阮一峰的网络日志
The Cloudflare Blog
量子位
Martin Fowler
Martin Fowler
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗

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(exec): align release validation surfaces · openclaw/o...
joshavant · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -5894,6 +5894,8 @@ public struct ExecApprovalRequestParams: Codable, Sendable {

58945894

public let turnsourceto: AnyCodable?

58955895

public let turnsourceaccountid: AnyCodable?

58965896

public let turnsourcethreadid: AnyCodable?

5897+

public let requiredeliveryroute: Bool?

5898+

public let suppressdelivery: Bool?

58975899

public let timeoutms: Int?

58985900

public let twophase: Bool?

58995901

@@ -5917,6 +5919,8 @@ public struct ExecApprovalRequestParams: Codable, Sendable {

59175919

turnsourceto: AnyCodable?,

59185920

turnsourceaccountid: AnyCodable?,

59195921

turnsourcethreadid: AnyCodable?,

5922+

requiredeliveryroute: Bool? = nil,

5923+

suppressdelivery: Bool? = nil,

59205924

timeoutms: Int?,

59215925

twophase: Bool?)

59225926

{

@@ -5939,6 +5943,8 @@ public struct ExecApprovalRequestParams: Codable, Sendable {

59395943

self.turnsourceto = turnsourceto

59405944

self.turnsourceaccountid = turnsourceaccountid

59415945

self.turnsourcethreadid = turnsourcethreadid

5946+

self.requiredeliveryroute = requiredeliveryroute

5947+

self.suppressdelivery = suppressdelivery

59425948

self.timeoutms = timeoutms

59435949

self.twophase = twophase

59445950

}

@@ -5963,6 +5969,8 @@ public struct ExecApprovalRequestParams: Codable, Sendable {

59635969

case turnsourceto = "turnSourceTo"

59645970

case turnsourceaccountid = "turnSourceAccountId"

59655971

case turnsourcethreadid = "turnSourceThreadId"

5972+

case requiredeliveryroute = "requireDeliveryRoute"

5973+

case suppressdelivery = "suppressDelivery"

59665974

case timeoutms = "timeoutMs"

59675975

case twophase = "twoPhase"

59685976

}

Original file line numberDiff line numberDiff line change

@@ -48,6 +48,7 @@ const DEFAULTED_OPTIONAL_INIT_PARAMS: Record<string, Set<string>> = {

4848

ArtifactsDownloadParams: new Set(["agentId"]),

4949

MessageActionParams: new Set(["inboundTurnKind"]),

5050

CronRunLogEntry: new Set(["errorReason", "failureNotificationDelivery"]),

51+

ExecApprovalRequestParams: new Set(["requireDeliveryRoute", "suppressDelivery"]),

5152

};

5253
5354

const header = `// Generated by scripts/protocol-gen-swift.ts — do not edit by hand\n// swiftlint:disable file_length\nimport Foundation\n\npublic let GATEWAY_PROTOCOL_VERSION = ${PROTOCOL_VERSION}\npublic let GATEWAY_MIN_PROTOCOL_VERSION = ${MIN_CLIENT_PROTOCOL_VERSION}\n\nprivate struct GatewayAnyCodingKey: CodingKey, Hashable {\n let stringValue: String\n let intValue: Int?\n\n init?(stringValue: String) {\n self.stringValue = stringValue\n self.intValue = nil\n }\n\n init?(intValue: Int) {\n self.stringValue = String(intValue)\n self.intValue = intValue\n }\n}\n\npublic enum ErrorCode: String, Codable, Sendable {\n${Object.values(

Original file line numberDiff line numberDiff line change

@@ -255,9 +255,11 @@ describe("requestExecApprovalDecision", () => {

255255

host: "gateway",

256256

id: "approval-id",

257257

nodeId: undefined,

258+

requireDeliveryRoute: undefined,

258259

resolvedPath: undefined,

259260

security: "allowlist",

260261

sessionKey: undefined,

262+

suppressDelivery: undefined,

261263

systemRunPlan: undefined,

262264

timeoutMs: DEFAULT_APPROVAL_TIMEOUT_MS,

263265

twoPhase: true,

Original file line numberDiff line numberDiff line change

@@ -325,7 +325,7 @@ describe("exec security floor", () => {

325325

expect.objectContaining({

326326

command: "pwd",

327327

host: "gateway",

328-

reason: "approval-required",

328+

reason: "allowlist-miss",

329329

}),

330330

);

331331

expect(result.details.status).toBe("approval-pending");

@@ -367,7 +367,7 @@ describe("exec security floor", () => {

367367

expect.objectContaining({

368368

command: "pwd",

369369

host: "gateway",

370-

reason: "approval-required",

370+

reason: "allowlist-miss",

371371

}),

372372

);

373373

expect(result.details.status).toBe("approval-pending");

Original file line numberDiff line numberDiff line change

@@ -842,6 +842,7 @@ export async function loadCompactHooksHarness(): Promise<{

842842
843843

vi.doMock("./sandbox-info.js", () => ({

844844

buildEmbeddedSandboxInfo: vi.fn(() => undefined),

845+

resolveEmbeddedSandboxInfoExecPolicy: vi.fn(() => ({})),

845846

}));

846847
847848

vi.doMock("./model.js", () => ({

Original file line numberDiff line numberDiff line change

@@ -776,6 +776,7 @@ vi.mock("../model.js", () => ({

776776
777777

vi.mock("../sandbox-info.js", () => ({

778778

buildEmbeddedSandboxInfo: () => undefined,

779+

resolveEmbeddedSandboxInfoExecPolicy: () => ({}),

779780

}));

780781
781782

vi.mock("../thinking.js", () => ({