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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point 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: rebase browser profile mutations · openclaw/openclaw...
steipete · 2026-05-13 · via Recent Commits to openclaw:main

@@ -8,7 +8,7 @@ import { formatErrorMessage } from "../infra/errors.js";

88

import { resolveUserPath } from "../utils.js";

99

import { assertCdpEndpointAllowed } from "./cdp.helpers.js";

1010

import { resolveOpenClawUserDataDir } from "./chrome.js";

11-

import { parseHttpUrl, resolveProfile } from "./config.js";

11+

import { parseHttpUrl, resolveBrowserConfig, resolveProfile } from "./config.js";

1212

import {

1313

BrowserConflictError,

1414

BrowserProfileNotFoundError,

@@ -107,11 +107,10 @@ export function createBrowserProfilesService(ctx: BrowserRouteContext) {

107107

throw new BrowserConflictError(`profile "${name}" already exists`);

108108

}

109109110-

const usedColors = getUsedColors(resolvedProfiles);

111-

const profileColor =

112-

params.color && HEX_COLOR_RE.test(params.color) ? params.color : allocateColor(usedColors);

110+

const explicitProfileColor =

111+

params.color && HEX_COLOR_RE.test(params.color) ? params.color : undefined;

113112114-

let profileConfig: BrowserProfileConfig;

113+

let parsedCdpUrl: string | undefined;

115114

if (normalizedUserDataDir && driver !== "existing-session") {

116115

throw new BrowserValidationError(

117116

"driver=existing-session is required when userDataDir is provided",

@@ -136,48 +135,82 @@ export function createBrowserProfilesService(ctx: BrowserRouteContext) {

136135

} catch (err) {

137136

throw new BrowserValidationError(formatErrorMessage(err));

138137

}

139-

profileConfig = {

140-

cdpUrl: parsed.normalized,

141-

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

142-

color: profileColor,

143-

};

144-

} else {

145-

if (driver === "existing-session") {

146-

// existing-session uses Chrome MCP auto-connect; no CDP port needed

147-

profileConfig = {

148-

driver,

149-

attachOnly: true,

150-

...(normalizedUserDataDir ? { userDataDir: normalizedUserDataDir } : {}),

151-

color: profileColor,

152-

};

153-

} else {

154-

const usedPorts = getUsedPorts(resolvedProfiles);

155-

const range = cdpPortRange(state.resolved);

156-

const cdpPort = allocateCdpPort(usedPorts, range);

157-

if (cdpPort === null) {

158-

throw new BrowserResourceExhaustedError("no available CDP ports in range");

159-

}

160-

profileConfig = {

161-

cdpPort,

162-

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

163-

color: profileColor,

164-

};

165-

}

138+

parsedCdpUrl = parsed.normalized;

166139

}

167140168-

await mutateConfigFile({

141+

const mutation = await mutateConfigFile<BrowserProfileConfig>({

169142

afterWrite: { mode: "auto" },

170-

mutate: (draft) => {

143+

mutate: async (draft) => {

144+

const latestResolved = resolveBrowserConfig({

145+

...state.resolved,

146+

...draft.browser,

147+

profiles: draft.browser?.profiles ?? state.resolved.profiles,

148+

});

149+

const latestProfiles = draft.browser?.profiles ?? {};

150+

if (name in latestProfiles || name in latestResolved.profiles) {

151+

throw new BrowserConflictError(`profile "${name}" already exists`);

152+

}

153+154+

const profileColor =

155+

explicitProfileColor ?? allocateColor(getUsedColors(latestResolved.profiles));

156+157+

let nextProfileConfig: BrowserProfileConfig;

158+

if (parsedCdpUrl) {

159+

try {

160+

await assertCdpEndpointAllowed(parsedCdpUrl, latestResolved.ssrfPolicy);

161+

} catch (err) {

162+

throw new BrowserValidationError(formatErrorMessage(err));

163+

}

164+

nextProfileConfig = {

165+

cdpUrl: parsedCdpUrl,

166+

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

167+

color: profileColor,

168+

};

169+

} else if (driver === "existing-session") {

170+

// existing-session uses Chrome MCP auto-connect; no CDP port needed.

171+

nextProfileConfig = {

172+

driver,

173+

attachOnly: true,

174+

...(normalizedUserDataDir ? { userDataDir: normalizedUserDataDir } : {}),

175+

color: profileColor,

176+

};

177+

} else {

178+

const usedPorts = getUsedPorts(latestResolved.profiles);

179+

const rangeStart = draft.browser?.cdpPortRangeStart ?? state.resolved.cdpPortRangeStart;

180+

const range = cdpPortRange({

181+

controlPort: state.resolved.controlPort,

182+

cdpPortRangeStart: rangeStart,

183+

cdpPortRangeEnd:

184+

draft.browser?.cdpPortRangeStart === undefined

185+

? state.resolved.cdpPortRangeEnd

186+

: latestResolved.cdpPortRangeEnd,

187+

});

188+

const cdpPort = allocateCdpPort(usedPorts, range);

189+

if (cdpPort === null) {

190+

throw new BrowserResourceExhaustedError("no available CDP ports in range");

191+

}

192+

nextProfileConfig = {

193+

cdpPort,

194+

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

195+

color: profileColor,

196+

};

197+

}

198+171199

draft.browser = {

172200

...draft.browser,

173201

profiles: {

174202

...draft.browser?.profiles,

175-

[name]: profileConfig,

203+

[name]: nextProfileConfig,

176204

},

177205

};

206+

return nextProfileConfig;

178207

},

179208

});

180209210+

const profileConfig = mutation.result;

211+

if (!profileConfig) {

212+

throw new BrowserProfileNotFoundError(`profile "${name}" not found after creation`);

213+

}

181214

state.resolved.profiles[name] = profileConfig;

182215

const resolved = resolveProfile(state.resolved, name);

183216

if (!resolved) {

@@ -241,10 +274,16 @@ export function createBrowserProfilesService(ctx: BrowserRouteContext) {

241274

afterWrite: { mode: "auto" },

242275

mutate: (draft) => {

243276

const { [name]: _removed, ...remainingProfiles } = draft.browser?.profiles ?? {};

244-

draft.browser = {

277+

const nextBrowser = {

245278

...draft.browser,

246279

profiles: remainingProfiles,

247280

};

281+

if (nextBrowser.defaultProfile === name) {

282+

delete nextBrowser.defaultProfile;

283+

}

284+

draft.browser = {

285+

...nextBrowser,

286+

};

248287

},

249288

});

250289