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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
B
Blog
A
About on SuperTechFans
大猫的无限游戏
大猫的无限游戏
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Help Net Security
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
IT之家
IT之家
D
Docker
Google DeepMind News
Google DeepMind News
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
博客园 - 叶小钗
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta

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): lazy-load browser CLI runtime · openclaw/op...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -1,40 +1,120 @@

11

import type {

2+

AnyAgentTool,

23

OpenClawPluginApi,

34

OpenClawPluginNodeHostCommand,

5+

OpenClawPluginSecurityAuditCollector,

6+

OpenClawPluginService,

47

OpenClawPluginToolContext,

58

OpenClawPluginToolFactory,

69

} from "openclaw/plugin-sdk/plugin-entry";

7-

import {

8-

collectBrowserSecurityAuditFindings,

9-

createBrowserPluginService,

10-

createBrowserTool,

11-

handleBrowserGatewayRequest,

12-

registerBrowserCli,

13-

runBrowserProxyCommand,

14-

} from "./register.runtime.js";

10+

import { BrowserToolSchema } from "./src/browser-tool.schema.js";

11+12+

const BROWSER_CLI_DESCRIPTOR = {

13+

name: "browser",

14+

description: "Manage OpenClaw's dedicated browser (Chrome/Chromium)",

15+

hasSubcommands: true,

16+

};

17+18+

function createLazyBrowserTool(opts?: {

19+

sandboxBridgeUrl?: string;

20+

allowHostControl?: boolean;

21+

agentSessionKey?: string;

22+

}): AnyAgentTool {

23+

const targetDefault = opts?.sandboxBridgeUrl ? "sandbox" : "host";

24+

const hostHint =

25+

opts?.allowHostControl === false ? "Host target blocked by policy." : "Host target allowed.";

26+

return {

27+

label: "Browser",

28+

name: "browser",

29+

description: [

30+

"Control the browser via OpenClaw's browser control server (status/start/stop/profiles/tabs/open/snapshot/screenshot/actions).",

31+

"Browser choice: omit profile by default for the isolated OpenClaw-managed browser (`openclaw`).",

32+

'For the logged-in user browser, use profile="user". A supported Chromium-based browser (v144+) must be running on the selected host or browser node. Use only when existing logins/cookies matter and the user is present.',

33+

'For profile="user" or other existing-session profiles, omit timeoutMs on act:type, evaluate, hover, scrollIntoView, drag, select, and fill; that driver rejects per-call timeout overrides for those actions.',

34+

'When a node-hosted browser proxy is available, the tool may auto-route to it. Pin a node with node=<id|name> or target="node".',

35+

"When using refs from snapshot (e.g. e12), keep the same tab: prefer passing targetId from the snapshot response into subsequent actions (act/click/type/etc). For tab operations, targetId also accepts tabId handles (t1) and labels from action=tabs.",

36+

"For multi-step browser work, login checks, stale refs, duplicate tabs, or Google Meet flows, use the bundled browser-automation skill when it is available.",

37+

'For stable, self-resolving refs across calls, use snapshot with refs="aria" (Playwright aria-ref ids). Default refs="role" are role+name-based.',

38+

"Use snapshot+act for UI automation. Avoid act:wait by default; use only in exceptional cases when no reliable UI state exists.",

39+

`target selects browser location (sandbox|host|node). Default: ${targetDefault}.`,

40+

hostHint,

41+

].join(" "),

42+

parameters: BrowserToolSchema,

43+

execute: async (toolCallId, args, signal, onUpdate) => {

44+

const { createBrowserTool } = await import("./register.runtime.js");

45+

const tool = createBrowserTool(opts);

46+

return await tool.execute(toolCallId, args, signal, onUpdate);

47+

},

48+

};

49+

}

15501651

export const browserPluginReload = { restartPrefixes: ["browser"] };

17521853

export const browserPluginNodeHostCommands: OpenClawPluginNodeHostCommand[] = [

1954

{

2055

command: "browser.proxy",

2156

cap: "browser",

22-

handle: runBrowserProxyCommand,

57+

handle: async (paramsJSON) => {

58+

const { runBrowserProxyCommand } = await import("./register.runtime.js");

59+

return await runBrowserProxyCommand(paramsJSON);

60+

},

2361

},

2462

];

256326-

export const browserSecurityAuditCollectors = [collectBrowserSecurityAuditFindings];

64+

export const browserSecurityAuditCollectors: OpenClawPluginSecurityAuditCollector[] = [

65+

async (ctx) => {

66+

const { collectBrowserSecurityAuditFindings } = await import("./register.runtime.js");

67+

return collectBrowserSecurityAuditFindings(ctx);

68+

},

69+

];

70+71+

function createLazyBrowserPluginService(): OpenClawPluginService {

72+

let service: OpenClawPluginService | null = null;

73+

const loadService = async () => {

74+

if (!service) {

75+

const { createBrowserPluginService } = await import("./register.runtime.js");

76+

service = createBrowserPluginService();

77+

}

78+

return service;

79+

};

80+

return {

81+

id: "browser-control",

82+

start: async (ctx) => {

83+

const loaded = await loadService();

84+

await loaded.start(ctx);

85+

},

86+

stop: async (ctx) => {

87+

if (!service?.stop) {

88+

return;

89+

}

90+

await service.stop(ctx);

91+

},

92+

};

93+

}

27942895

export function registerBrowserPlugin(api: OpenClawPluginApi) {

2996

api.registerTool(((ctx: OpenClawPluginToolContext) =>

30-

createBrowserTool({

97+

createLazyBrowserTool({

3198

sandboxBridgeUrl: ctx.browser?.sandboxBridgeUrl,

3299

allowHostControl: ctx.browser?.allowHostControl,

33100

agentSessionKey: ctx.sessionKey,

34101

})) as OpenClawPluginToolFactory);

35-

api.registerCli(({ program }) => registerBrowserCli(program), { commands: ["browser"] });

36-

api.registerGatewayMethod("browser.request", handleBrowserGatewayRequest, {

37-

scope: "operator.admin",

38-

});

39-

api.registerService(createBrowserPluginService());

102+

api.registerCli(

103+

async ({ program }) => {

104+

const { registerBrowserCli } = await import("./src/cli/browser-cli.js");

105+

registerBrowserCli(program);

106+

},

107+

{ commands: ["browser"], descriptors: [BROWSER_CLI_DESCRIPTOR] },

108+

);

109+

api.registerGatewayMethod(

110+

"browser.request",

111+

async (opts) => {

112+

const { handleBrowserGatewayRequest } = await import("./register.runtime.js");

113+

return await handleBrowserGatewayRequest(opts);

114+

},

115+

{

116+

scope: "operator.admin",

117+

},

118+

);

119+

api.registerService(createLazyBrowserPluginService());

40120

}