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

推荐订阅源

博客园_首页
C
Check Point Blog
B
Blog RSS Feed
G
Google Developers Blog
H
Help Net Security
博客园 - Franky
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Recent Announcements
Recent Announcements
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
小众软件
小众软件
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
T
Tailwind CSS Blog
J
Java Code Geeks
MyScale Blog
MyScale Blog
雷峰网
雷峰网
有赞技术团队
有赞技术团队
博客园 - 聂微东

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(browser): tighten act numeric parsing · openclaw/open...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
1+

import {

2+

parseStrictInteger,

3+

parseStrictNonNegativeInteger,

4+

parseStrictPositiveInteger,

5+

} from "openclaw/plugin-sdk/number-runtime";

16

import {

27

ACT_MAX_BATCH_ACTIONS,

38

ACT_MAX_CLICK_DELAY_MS,

@@ -71,6 +76,50 @@ function normalizeBatchAction(value: unknown): BrowserActRequest {

7176

return normalizeActRequest(value as Record<string, unknown>, { source: "batch" });

7277

}

737879+

function readActionPositiveInteger(body: Record<string, unknown>, key: string): number | undefined {

80+

const value = parseStrictPositiveInteger(body[key]);

81+

if (value === undefined && body[key] != null) {

82+

throw new Error(`${key} must be a positive integer.`);

83+

}

84+

return value;

85+

}

86+87+

function readActionNonNegativeInteger(

88+

body: Record<string, unknown>,

89+

key: string,

90+

): number | undefined {

91+

const value = parseStrictNonNegativeInteger(body[key]);

92+

if (value === undefined && body[key] != null) {

93+

throw new Error(`${key} must be a non-negative integer.`);

94+

}

95+

return value;

96+

}

97+98+

function readActionTimeoutMs(body: Record<string, unknown>): number | undefined {

99+

return readActionPositiveInteger(body, "timeoutMs");

100+

}

101+102+

function readBoundedActionDurationMs(

103+

body: Record<string, unknown>,

104+

key: string,

105+

fieldName: string,

106+

maxMs: number,

107+

): number | undefined {

108+

return normalizeActBoundedNonNegativeMs(

109+

readActionNonNegativeInteger(body, key),

110+

fieldName,

111+

maxMs,

112+

);

113+

}

114+115+

function readResizeDimension(body: Record<string, unknown>, key: "width" | "height") {

116+

const value = parseStrictInteger(body[key]);

117+

if (value === undefined && Object.hasOwn(body, key)) {

118+

throw new Error("resize requires positive width and height");

119+

}

120+

return value;

121+

}

122+74123

export function normalizeActRequest(

75124

body: Record<string, unknown>,

76125

options?: { source?: "request" | "batch" },

@@ -96,12 +145,13 @@ export function normalizeActRequest(

96145

throw new Error(parsedModifiers.error);

97146

}

98147

const doubleClick = toBoolean(body.doubleClick);

99-

const delayMs = normalizeActBoundedNonNegativeMs(

100-

toNumber(body.delayMs),

148+

const delayMs = readBoundedActionDurationMs(

149+

body,

150+

"delayMs",

101151

"click delayMs",

102152

ACT_MAX_CLICK_DELAY_MS,

103153

);

104-

const timeoutMs = toNumber(body.timeoutMs);

154+

const timeoutMs = readActionTimeoutMs(body);

105155

const targetId = toStringOrEmpty(body.targetId) || undefined;

106156

return {

107157

kind,

@@ -127,12 +177,13 @@ export function normalizeActRequest(

127177

throw new Error("clickCoords button must be left|right|middle");

128178

}

129179

const doubleClick = toBoolean(body.doubleClick);

130-

const delayMs = normalizeActBoundedNonNegativeMs(

131-

toNumber(body.delayMs),

180+

const delayMs = readBoundedActionDurationMs(

181+

body,

182+

"delayMs",

132183

"clickCoords delayMs",

133184

ACT_MAX_CLICK_DELAY_MS,

134185

);

135-

const timeoutMs = toNumber(body.timeoutMs);

186+

const timeoutMs = readActionTimeoutMs(body);

136187

const targetId = toStringOrEmpty(body.targetId) || undefined;

137188

return {

138189

kind,

@@ -158,7 +209,7 @@ export function normalizeActRequest(

158209

const targetId = toStringOrEmpty(body.targetId) || undefined;

159210

const submit = toBoolean(body.submit);

160211

const slowly = toBoolean(body.slowly);

161-

const timeoutMs = toNumber(body.timeoutMs);

212+

const timeoutMs = readActionTimeoutMs(body);

162213

return {

163214

kind,

164215

...(ref ? { ref } : {}),

@@ -176,7 +227,7 @@ export function normalizeActRequest(

176227

throw new Error("press requires key");

177228

}

178229

const targetId = toStringOrEmpty(body.targetId) || undefined;

179-

const delayMs = toNumber(body.delayMs);

230+

const delayMs = readActionNonNegativeInteger(body, "delayMs");

180231

return {

181232

kind,

182233

key,

@@ -192,7 +243,7 @@ export function normalizeActRequest(

192243

throw new Error(`${kind} requires ref or selector`);

193244

}

194245

const targetId = toStringOrEmpty(body.targetId) || undefined;

195-

const timeoutMs = toNumber(body.timeoutMs);

246+

const timeoutMs = readActionTimeoutMs(body);

196247

return {

197248

kind,

198249

...(ref ? { ref } : {}),

@@ -213,7 +264,7 @@ export function normalizeActRequest(

213264

throw new Error("drag requires endRef or endSelector");

214265

}

215266

const targetId = toStringOrEmpty(body.targetId) || undefined;

216-

const timeoutMs = toNumber(body.timeoutMs);

267+

const timeoutMs = readActionTimeoutMs(body);

217268

return {

218269

kind,

219270

...(startRef ? { startRef } : {}),

@@ -232,7 +283,7 @@ export function normalizeActRequest(

232283

throw new Error("select requires ref/selector and values");

233284

}

234285

const targetId = toStringOrEmpty(body.targetId) || undefined;

235-

const timeoutMs = toNumber(body.timeoutMs);

286+

const timeoutMs = readActionTimeoutMs(body);

236287

return {

237288

kind,

238289

...(ref ? { ref } : {}),

@@ -248,7 +299,7 @@ export function normalizeActRequest(

248299

throw new Error("fill requires fields");

249300

}

250301

const targetId = toStringOrEmpty(body.targetId) || undefined;

251-

const timeoutMs = toNumber(body.timeoutMs);

302+

const timeoutMs = readActionTimeoutMs(body);

252303

return {

253304

kind,

254305

fields,

@@ -257,8 +308,8 @@ export function normalizeActRequest(

257308

};

258309

}

259310

case "resize": {

260-

const width = toNumber(body.width);

261-

const height = toNumber(body.height);

311+

const width = readResizeDimension(body, "width");

312+

const height = readResizeDimension(body, "height");

262313

if (width === undefined || height === undefined || width <= 0 || height <= 0) {

263314

throw new Error("resize requires positive width and height");

264315

}

@@ -281,8 +332,9 @@ export function normalizeActRequest(

281332

loadStateRaw === "networkidle"

282333

? loadStateRaw

283334

: undefined;

284-

const timeMs = normalizeActBoundedNonNegativeMs(

285-

toNumber(body.timeMs),

335+

const timeMs = readBoundedActionDurationMs(

336+

body,

337+

"timeMs",

286338

"wait timeMs",

287339

ACT_MAX_WAIT_TIME_MS,

288340

);

@@ -297,7 +349,7 @@ export function normalizeActRequest(

297349

);

298350

}

299351

const targetId = toStringOrEmpty(body.targetId) || undefined;

300-

const timeoutMs = toNumber(body.timeoutMs);

352+

const timeoutMs = readActionTimeoutMs(body);

301353

return {

302354

kind,

303355

...(timeMs !== undefined ? { timeMs } : {}),

@@ -318,7 +370,7 @@ export function normalizeActRequest(

318370

}

319371

const ref = toStringOrEmpty(body.ref) || undefined;

320372

const targetId = toStringOrEmpty(body.targetId) || undefined;

321-

const timeoutMs = toNumber(body.timeoutMs);

373+

const timeoutMs = readActionTimeoutMs(body);

322374

return {

323375

kind,

324376

fn,