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

推荐订阅源

博客园 - 叶小钗
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
博客园 - 聂微东
有赞技术团队
有赞技术团队
The Cloudflare Blog
T
Tailwind CSS Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
T
The Blog of Author Tim Ferriss
D
Docker
L
LangChain Blog
Vercel News
Vercel News
C
Check Point Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
人人都是产品经理
人人都是产品经理

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
perf(browser): precompute browser help · openclaw/opencla...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -26,6 +26,7 @@ const distDir = path.join(rootDir, "dist");

2626

const outputPath = path.join(distDir, "cli-startup-metadata.json");

2727

const extensionsDir = path.join(rootDir, "extensions");

2828

const ROOT_HELP_RENDER_TIMEOUT_MS = 120_000;

29+

const BROWSER_HELP_RENDER_TIMEOUT_MS = 120_000;

2930

const CORE_CHANNEL_ORDER = [

3031

"telegram",

3132

"whatsapp",

@@ -70,6 +71,29 @@ function resolveRootHelpBundleIdentity(

7071

};

7172

}

727374+

function updateHashFromFiles(hash: ReturnType<typeof createHash>, files: string[]) {

75+

for (const file of files.toSorted()) {

76+

hash.update(`${path.relative(rootDir, file)}\0`);

77+

hash.update(readFileSync(file));

78+

hash.update("\0");

79+

}

80+

}

81+82+

function resolveBrowserHelpSourceSignature(): string {

83+

const hash = createHash("sha1");

84+

const browserCliDir = path.join(rootDir, "extensions/browser/src/cli");

85+

const browserCliFiles = readdirSync(browserCliDir)

86+

.filter((entry) => entry.endsWith(".ts"))

87+

.map((entry) => path.join(browserCliDir, entry));

88+

updateHashFromFiles(hash, browserCliFiles);

89+

updateHashFromFiles(hash, [

90+

path.join(rootDir, "src/cli/program/help.ts"),

91+

path.join(rootDir, "src/cli/program/context.ts"),

92+

path.join(rootDir, "src/cli/banner.ts"),

93+

]);

94+

return hash.digest("hex");

95+

}

96+7397

export function readBundledChannelCatalog(

7498

extensionsDirOverride: string = extensionsDir,

7599

): BundledChannelCatalog {

@@ -245,6 +269,53 @@ function renderSourceRootHelpText(

245269

return result.stdout ?? "";

246270

}

247271272+

function renderSourceBrowserHelpText(

273+

renderContext: RootHelpRenderContext = createIsolatedRootHelpRenderContext(),

274+

): string {

275+

const browserCliUrl = pathToFileURL(

276+

path.join(rootDir, "extensions/browser/src/cli/browser-cli.ts"),

277+

).href;

278+

const helpUrl = pathToFileURL(path.join(rootDir, "src/cli/program/help.ts")).href;

279+

const contextUrl = pathToFileURL(path.join(rootDir, "src/cli/program/context.ts")).href;

280+

const inlineModule = [

281+

`const { Command } = await import("commander");`,

282+

`const { registerBrowserCli } = await import(${JSON.stringify(browserCliUrl)});`,

283+

`const { configureProgramHelp } = await import(${JSON.stringify(helpUrl)});`,

284+

`const { createProgramContext } = await import(${JSON.stringify(contextUrl)});`,

285+

`const program = new Command();`,

286+

`configureProgramHelp(program, createProgramContext());`,

287+

`registerBrowserCli(program, ["node", "openclaw", "browser", "--help"]);`,

288+

`const browser = program.commands.find((cmd) => cmd.name() === "browser");`,

289+

`if (!browser) throw new Error("Browser command was not registered.");`,

290+

`browser.outputHelp();`,

291+

"process.exit(0);",

292+

].join("\n");

293+

const result = spawnSync(

294+

process.execPath,

295+

["--import", "tsx", "--input-type=module", "--eval", inlineModule],

296+

{

297+

cwd: rootDir,

298+

encoding: "utf8",

299+

env: {

300+

...renderContext.env,

301+

OPENCLAW_DISABLE_CLI_STARTUP_HELP_FAST_PATH: "1",

302+

},

303+

timeout: BROWSER_HELP_RENDER_TIMEOUT_MS,

304+

},

305+

);

306+

if (result.error) {

307+

throw result.error;

308+

}

309+

if (result.status !== 0) {

310+

const stderr = result.stderr?.trim();

311+

throw new Error(

312+

"Failed to render source browser help" +

313+

(stderr ? `: ${stderr}` : result.signal ? `: terminated by ${result.signal}` : ""),

314+

);

315+

}

316+

return result.stdout ?? "";

317+

}

318+248319

export async function writeCliStartupMetadata(options?: {

249320

distDir?: string;

250321

outputPath?: string;

@@ -255,6 +326,7 @@ export async function writeCliStartupMetadata(options?: {

255326

const resolvedExtensionsDir = options?.extensionsDir ?? extensionsDir;

256327

const channelCatalog = readBundledChannelCatalog(resolvedExtensionsDir);

257328

const bundleIdentity = resolveRootHelpBundleIdentity(resolvedDistDir);

329+

const browserHelpSourceSignature = resolveBrowserHelpSourceSignature();

258330

const bundledPluginsDir = path.join(resolvedDistDir, "extensions");

259331

const renderContext = createIsolatedRootHelpRenderContext(

260332

existsSync(bundledPluginsDir) ? bundledPluginsDir : resolvedExtensionsDir,

@@ -264,12 +336,17 @@ export async function writeCliStartupMetadata(options?: {

264336

try {

265337

const existing = JSON.parse(readFileSync(resolvedOutputPath, "utf8")) as {

266338

rootHelpBundleSignature?: unknown;

339+

browserHelpSourceSignature?: unknown;

267340

channelCatalogSignature?: unknown;

341+

browserHelpText?: unknown;

268342

};

269343

if (

270344

bundleIdentity &&

271345

existing.rootHelpBundleSignature === bundleIdentity.signature &&

272-

existing.channelCatalogSignature === channelCatalog.signature

346+

existing.browserHelpSourceSignature === browserHelpSourceSignature &&

347+

existing.channelCatalogSignature === channelCatalog.signature &&

348+

typeof existing.browserHelpText === "string" &&

349+

existing.browserHelpText.length > 0

273350

) {

274351

return;

275352

}

@@ -283,6 +360,7 @@ export async function writeCliStartupMetadata(options?: {

283360

} catch {

284361

rootHelpText = renderSourceRootHelpText(renderContext);

285362

}

363+

const browserHelpText = renderSourceBrowserHelpText(renderContext);

286364287365

mkdirSync(resolvedDistDir, { recursive: true });

288366

writeFileSync(

@@ -293,6 +371,8 @@ export async function writeCliStartupMetadata(options?: {

293371

channelOptions,

294372

channelCatalogSignature: channelCatalog.signature,

295373

rootHelpBundleSignature: bundleIdentity?.signature ?? null,

374+

browserHelpSourceSignature,

375+

browserHelpText,

296376

rootHelpText,

297377

},

298378

null,