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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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
feat(browser): support per-profile headless · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -6,6 +6,7 @@ Docs: https://docs.openclaw.ai

66
77

### Changes

88
9+

- Browser/config: support per-profile `browser.profiles.<name>.headless` overrides for locally launched browser profiles, so one profile can run headless without forcing all browser profiles headless. Thanks @nakamotoliu.

910

- Plugins/PDF: move local PDF extraction into a bundled `document-extract` plugin so core no longer owns `pdfjs-dist` or PDF image-rendering dependencies. Thanks @vincentkoc.

1011

- Matrix: require full cross-signing identity trust for self-device verification and add `openclaw matrix verify self` so operators can establish that trust from the CLI. (#70401) Thanks @gumadeiras.

1112
Original file line numberDiff line numberDiff line change

@@ -1,4 +1,4 @@

1-

52af51e35e05d0cbaa1a79fb415f2c2fe56ad5d52a62efa9cbb9c32489d517f5 config-baseline.json

2-

642b4e2c9891e710790313df097b4e0db75a197ec0908e9c03bdc76f5bbdf9b0 config-baseline.core.json

1+

8f23e853ccde6cd021b84b32fe205f456f8516667683d16c9b56d6598f608989 config-baseline.json

2+

037bf4a873587adb8349f531c0ad79cd4f90e01712f5aa5d8b4387be73538a7f config-baseline.core.json

33

22d7cd6d8279146b2d79c9531a55b80b52a2c99c81338c508104729154fdd02d config-baseline.channel.json

4-

d47a574045a47356e513ab308d7dcad9fa0b389f50e93c5cf0f820fab858e70e config-baseline.plugin.json

4+

86f615b7d267b03888af0af7ccb3f8232a6b636f8a741d522ff425e46729ba81 config-baseline.plugin.json

Original file line numberDiff line numberDiff line change

@@ -137,7 +137,7 @@ Browser settings live in `~/.openclaw/openclaw.json`.

137137

executablePath: "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",

138138

profiles: {

139139

openclaw: { cdpPort: 18800, color: "#FF4500" },

140-

work: { cdpPort: 18801, color: "#0066CC" },

140+

work: { cdpPort: 18801, color: "#0066CC", headless: true },

141141

user: {

142142

driver: "existing-session",

143143

attachOnly: true,

@@ -177,6 +177,7 @@ Browser settings live in `~/.openclaw/openclaw.json`.

177177

<Accordion title="Profile behavior">

178178
179179

- `attachOnly: true` means never launch a local browser; only attach if one is already running.

180+

- `headless` can be set globally or per local managed profile. Per-profile values override `browser.headless`, so one locally launched profile can stay headless while another remains visible.

180181

- `color` (top-level and per-profile) tints the browser UI so you can see which profile is active.

181182

- Default profile is `openclaw` (managed standalone). Use `defaultProfile: "user"` to opt into the signed-in user browser.

182183

- Auto-detect order: system default browser if Chromium-based; otherwise Chrome → Brave → Edge → Chromium → Chrome Canary.

@@ -235,6 +236,7 @@ Or set it in config, per platform:

235236

- **Remote control (node host):** run a node host on the machine that has the browser; the Gateway proxies browser actions to it.

236237

- **Remote CDP:** set `browser.profiles.<name>.cdpUrl` (or `browser.cdpUrl`) to

237238

attach to a remote Chromium-based browser. In this case, OpenClaw will not launch a local browser.

239+

- `headless` only affects local managed profiles that OpenClaw launches. It does not restart or change existing-session or remote CDP browsers.

238240
239241

Stopping behavior differs by profile mode:

240242
Original file line numberDiff line numberDiff line change

@@ -159,6 +159,7 @@ function createProfile(overrides: Partial<ResolvedBrowserProfile>): ResolvedBrow

159159

driver: "openclaw",

160160

attachOnly: false,

161161

...overrides,

162+

headless: overrides.headless ?? false,

162163

};

163164

}

164165
Original file line numberDiff line numberDiff line change

@@ -75,6 +75,7 @@ const localProfile: ResolvedBrowserProfile = {

7575

cdpIsLoopback: true,

7676

color: "#FF4500",

7777

driver: "openclaw",

78+

headless: false,

7879

attachOnly: false,

7980

};

8081
Original file line numberDiff line numberDiff line change

@@ -166,18 +166,29 @@ describe("chrome.ts internal", () => {

166166

cdpPort: 19222,

167167

cdpUrl: "http://127.0.0.1:19222",

168168

cdpIsLoopback: true,

169+

headless: false,

169170

} as unknown as ResolvedBrowserProfile;

170171
171172

it("toggles headless args", () => {

172173

const args = buildOpenClawChromeLaunchArgs({

173-

resolved: baseResolved({ headless: true }),

174-

profile: baseProfile,

174+

resolved: baseResolved({ headless: false }),

175+

profile: { ...baseProfile, headless: true },

175176

userDataDir: "/tmp/foo",

176177

});

177178

expect(args).toContain("--headless=new");

178179

expect(args).toContain("--disable-gpu");

179180

});

180181
182+

it("lets profile headless=false override global headless=true", () => {

183+

const args = buildOpenClawChromeLaunchArgs({

184+

resolved: baseResolved({ headless: true }),

185+

profile: { ...baseProfile, headless: false },

186+

userDataDir: "/tmp/foo",

187+

});

188+

expect(args).not.toContain("--headless=new");

189+

expect(args).not.toContain("--disable-gpu");

190+

});

191+
181192

it("toggles no-sandbox args", () => {

182193

const args = buildOpenClawChromeLaunchArgs({

183194

resolved: baseResolved({ noSandbox: true }),

Original file line numberDiff line numberDiff line change

@@ -650,6 +650,7 @@ describe("browser chrome launch args", () => {

650650

cdpIsLoopback: true,

651651

color: "#FF4500",

652652

driver: "openclaw",

653+

headless: false,

653654

attachOnly: false,

654655

},

655656

userDataDir: "/tmp/openclaw-test-user-data",

Original file line numberDiff line numberDiff line change

@@ -121,7 +121,7 @@ export function buildOpenClawChromeLaunchArgs(params: {

121121

"--password-store=basic",

122122

];

123123
124-

if (resolved.headless) {

124+

if (profile.headless) {

125125

args.push("--headless=new");

126126

args.push("--disable-gpu");

127127

}

Original file line numberDiff line numberDiff line change

@@ -178,6 +178,42 @@ describe("browser config", () => {

178178

expect(remote?.attachOnly).toBe(true);

179179

});

180180
181+

it("inherits headless from global browser config when profile override is not set", () => {

182+

const resolved = resolveBrowserConfig({

183+

headless: true,

184+

profiles: {

185+

remote: { cdpUrl: "http://127.0.0.1:9222", color: "#0066CC" },

186+

},

187+

});

188+
189+

const remote = resolveProfile(resolved, "remote");

190+

expect(remote?.headless).toBe(true);

191+

});

192+
193+

it("allows profile headless to override global browser headless", () => {

194+

const resolved = resolveBrowserConfig({

195+

headless: false,

196+

profiles: {

197+

remote: { cdpUrl: "http://127.0.0.1:9222", headless: true, color: "#0066CC" },

198+

},

199+

});

200+
201+

const remote = resolveProfile(resolved, "remote");

202+

expect(remote?.headless).toBe(true);

203+

});

204+
205+

it("allows profile headless=false to override global browser headless=true", () => {

206+

const resolved = resolveBrowserConfig({

207+

headless: true,

208+

profiles: {

209+

remote: { cdpUrl: "http://127.0.0.1:9222", headless: false, color: "#0066CC" },

210+

},

211+

});

212+
213+

const remote = resolveProfile(resolved, "remote");

214+

expect(remote?.headless).toBe(false);

215+

});

216+
181217

it("uses base protocol for profiles with only cdpPort", () => {

182218

const resolved = resolveBrowserConfig({

183219

cdpUrl: "https://example.com:9443",

Original file line numberDiff line numberDiff line change

@@ -81,6 +81,7 @@ export type ResolvedBrowserProfile = {

8181

userDataDir?: string;

8282

color: string;

8383

driver: "openclaw" | "existing-session";

84+

headless: boolean;

8485

attachOnly: boolean;

8586

};

8687

@@ -312,6 +313,7 @@ export function resolveProfile(

312313

let cdpPort = profile.cdpPort ?? 0;

313314

let cdpUrl = "";

314315

const driver = profile.driver === "existing-session" ? "existing-session" : "openclaw";

316+

const headless = profile.headless ?? resolved.headless;

315317
316318

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

317319

return {

@@ -323,6 +325,7 @@ export function resolveProfile(

323325

userDataDir: resolveUserPath(profile.userDataDir?.trim() || "") || undefined,

324326

color: profile.color,

325327

driver,

328+

headless,

326329

attachOnly: true,

327330

};

328331

}

@@ -356,6 +359,7 @@ export function resolveProfile(

356359

cdpIsLoopback: isLoopbackHost(cdpHost),

357360

color: profile.color,

358361

driver,

362+

headless,

359363

attachOnly: profile.attachOnly ?? resolved.attachOnly,

360364

};

361365

}