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

推荐订阅源

WordPress大学
WordPress大学
A
About on SuperTechFans
量子位
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
Google DeepMind News
Google DeepMind News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
G
Google Developers Blog
U
Unit 42
D
DataBreaches.Net
博客园 - Franky
D
Docker
宝玉的分享
宝玉的分享
Y
Y Combinator Blog
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Hugging Face - Blog
Hugging Face - 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): extend existing-session manage timeouts · o...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -372,6 +372,43 @@ function shouldPreferHostForProfile(profileName: string | undefined) {

372372

return capabilities.usesChromeMcp;

373373

}

374374375+

const DEFAULT_EXISTING_SESSION_MANAGE_TIMEOUT_MS = 45_000;

376+

const EXISTING_SESSION_MANAGE_ACTIONS = new Set([

377+

"status",

378+

"start",

379+

"stop",

380+

"profiles",

381+

"tabs",

382+

"open",

383+

"focus",

384+

"close",

385+

]);

386+387+

function usesExistingSessionManageFlow(params: { action: string; profileName?: string }) {

388+

if (!EXISTING_SESSION_MANAGE_ACTIONS.has(params.action)) {

389+

return false;

390+

}

391+

const cfg = browserToolDeps.loadConfig();

392+

const resolved = resolveBrowserConfig(cfg.browser, cfg);

393+

const profile = resolveProfile(resolved, params.profileName ?? resolved.defaultProfile);

394+

if (profile && getBrowserProfileCapabilities(profile).usesChromeMcp) {

395+

return true;

396+

}

397+

if (params.action !== "profiles") {

398+

return false;

399+

}

400+

return Object.keys(resolved.profiles).some((name) => {

401+

const candidate = resolveProfile(resolved, name);

402+

return candidate ? getBrowserProfileCapabilities(candidate).usesChromeMcp : false;

403+

});

404+

}

405+406+

function readToolTimeoutMs(params: Record<string, unknown>) {

407+

return typeof params.timeoutMs === "number" && Number.isFinite(params.timeoutMs)

408+

? Math.max(1, Math.floor(params.timeoutMs))

409+

: undefined;

410+

}

411+375412

export function createBrowserTool(opts?: {

376413

sandboxBridgeUrl?: string;

377414

allowHostControl?: boolean;

@@ -402,6 +439,7 @@ export function createBrowserTool(opts?: {

402439

const action = readStringParam(params, "action", { required: true });

403440

const profile = readStringParam(params, "profile");

404441

const requestedNode = readStringParam(params, "node");

442+

const requestedTimeoutMs = readToolTimeoutMs(params);

405443

let target = readStringParam(params, "target") as "sandbox" | "host" | "node" | undefined;

406444

const configuredNode = browserToolDeps.loadConfig().gateway?.nodes?.browser?.node?.trim();

407445

@@ -469,6 +507,11 @@ export function createBrowserTool(opts?: {

469507

return proxy.result;

470508

}

471509

: null;

510+

const toolTimeoutMs =

511+

requestedTimeoutMs ??

512+

(usesExistingSessionManageFlow({ action, profileName: profile })

513+

? DEFAULT_EXISTING_SESSION_MANAGE_TIMEOUT_MS

514+

: undefined);

472515473516

switch (action) {

474517

case "doctor":

@@ -489,55 +532,74 @@ export function createBrowserTool(opts?: {

489532

method: "GET",

490533

path: "/",

491534

profile,

535+

timeoutMs: toolTimeoutMs,

492536

}),

493537

);

494538

}

495-

return jsonResult(await browserToolDeps.browserStatus(baseUrl, { profile }));

539+

return jsonResult(

540+

await browserToolDeps.browserStatus(baseUrl, { profile, timeoutMs: toolTimeoutMs }),

541+

);

496542

case "start":

497543

if (proxyRequest) {

498544

await proxyRequest({

499545

method: "POST",

500546

path: "/start",

501547

profile,

548+

timeoutMs: toolTimeoutMs,

502549

});

503550

return jsonResult(

504551

await proxyRequest({

505552

method: "GET",

506553

path: "/",

507554

profile,

555+

timeoutMs: toolTimeoutMs,

508556

}),

509557

);

510558

}

511-

await browserToolDeps.browserStart(baseUrl, { profile });

512-

return jsonResult(await browserToolDeps.browserStatus(baseUrl, { profile }));

559+

await browserToolDeps.browserStart(baseUrl, { profile, timeoutMs: toolTimeoutMs });

560+

return jsonResult(

561+

await browserToolDeps.browserStatus(baseUrl, { profile, timeoutMs: toolTimeoutMs }),

562+

);

513563

case "stop":

514564

if (proxyRequest) {

515565

await proxyRequest({

516566

method: "POST",

517567

path: "/stop",

518568

profile,

569+

timeoutMs: toolTimeoutMs,

519570

});

520571

return jsonResult(

521572

await proxyRequest({

522573

method: "GET",

523574

path: "/",

524575

profile,

576+

timeoutMs: toolTimeoutMs,

525577

}),

526578

);

527579

}

528-

await browserToolDeps.browserStop(baseUrl, { profile });

529-

return jsonResult(await browserToolDeps.browserStatus(baseUrl, { profile }));

580+

await browserToolDeps.browserStop(baseUrl, { profile, timeoutMs: toolTimeoutMs });

581+

return jsonResult(

582+

await browserToolDeps.browserStatus(baseUrl, { profile, timeoutMs: toolTimeoutMs }),

583+

);

530584

case "profiles":

531585

if (proxyRequest) {

532586

const result = await proxyRequest({

533587

method: "GET",

534588

path: "/profiles",

589+

timeoutMs: toolTimeoutMs,

535590

});

536591

return jsonResult(result);

537592

}

538-

return jsonResult({ profiles: await browserToolDeps.browserProfiles(baseUrl) });

593+

return jsonResult({

594+

profiles: await browserToolDeps.browserProfiles(baseUrl, { timeoutMs: toolTimeoutMs }),

595+

});

539596

case "tabs":

540-

return await executeTabsAction({ baseUrl, profile, proxyRequest });

597+

return await executeTabsAction({

598+

baseUrl,

599+

profile,

600+

timeoutMs: toolTimeoutMs,

601+

proxyRequest,

602+

});

541603

case "open": {

542604

const targetUrl = readTargetUrlParam(params);

543605

const label = normalizeOptionalString(params.label);

@@ -547,12 +609,14 @@ export function createBrowserTool(opts?: {

547609

path: "/tabs/open",

548610

profile,

549611

body: { url: targetUrl, ...(label ? { label } : {}) },

612+

timeoutMs: toolTimeoutMs,

550613

});

551614

return jsonResult(result);

552615

}

553616

const opened = await browserToolDeps.browserOpenTab(baseUrl, targetUrl, {

554617

profile,

555618

label,

619+

timeoutMs: toolTimeoutMs,

556620

});

557621

browserToolDeps.trackSessionBrowserTab({

558622

sessionKey: opts?.agentSessionKey,

@@ -572,10 +636,14 @@ export function createBrowserTool(opts?: {

572636

path: "/tabs/focus",

573637

profile,

574638

body: { targetId },

639+

timeoutMs: toolTimeoutMs,

575640

});

576641

return jsonResult(result);

577642

}

578-

await browserToolDeps.browserFocusTab(baseUrl, targetId, { profile });

643+

await browserToolDeps.browserFocusTab(baseUrl, targetId, {

644+

profile,

645+

timeoutMs: toolTimeoutMs,

646+

});

579647

return jsonResult({ ok: true });

580648

}

581649

case "close": {

@@ -586,25 +654,37 @@ export function createBrowserTool(opts?: {

586654

method: "DELETE",

587655

path: `/tabs/${encodeURIComponent(targetId)}`,

588656

profile,

657+

timeoutMs: toolTimeoutMs,

589658

})

590659

: await proxyRequest({

591660

method: "POST",

592661

path: "/act",

593662

profile,

594663

body: { kind: "close" },

664+

timeoutMs: toolTimeoutMs,

595665

});

596666

return jsonResult(result);

597667

}

598668

if (targetId) {

599-

await browserToolDeps.browserCloseTab(baseUrl, targetId, { profile });

669+

await browserToolDeps.browserCloseTab(baseUrl, targetId, {

670+

profile,

671+

timeoutMs: toolTimeoutMs,

672+

});

600673

browserToolDeps.untrackSessionBrowserTab({

601674

sessionKey: opts?.agentSessionKey,

602675

targetId,

603676

baseUrl,

604677

profile,

605678

});

606679

} else {

607-

await browserToolDeps.browserAct(baseUrl, { kind: "close" }, { profile });

680+

await browserToolDeps.browserAct(

681+

baseUrl,

682+

{ kind: "close" },

683+

{

684+

profile,

685+

timeoutMs: toolTimeoutMs,

686+

},

687+

);

608688

}

609689

return jsonResult({ ok: true });

610690

}