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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

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): include safe tab urls in agent responses ·...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -378,9 +378,18 @@ export function registerBrowserAgentActRoutes(

378378

res,

379379

ctx,

380380

targetId,

381-

run: async ({ profileCtx, cdpUrl, tab }) => {

381+

run: async ({ profileCtx, cdpUrl, tab, resolveTabUrl }) => {

382382

const evaluateEnabled = ctx.state().resolved.evaluateEnabled;

383383

const ssrfPolicy = ctx.state().resolved.ssrfPolicy;

384+

const jsonOk = async (extra?: Record<string, unknown>) => {

385+

const url = await resolveTabUrl(tab.url);

386+

return res.json({

387+

ok: true,

388+

targetId: tab.targetId,

389+

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

390+

...extra,

391+

});

392+

};

384393

if (action.targetId && action.targetId !== tab.targetId) {

385394

return jsonActError(

386395

res,

@@ -427,7 +436,7 @@ export function registerBrowserAgentActRoutes(

427436

}),

428437

guard: existingSessionNavigationGuard,

429438

});

430-

return res.json({ ok: true, targetId: tab.targetId, url: tab.url });

439+

return await jsonOk();

431440

case "clickCoords":

432441

await runExistingSessionActionWithNavigationGuard({

433442

execute: () =>

@@ -443,7 +452,7 @@ export function registerBrowserAgentActRoutes(

443452

}),

444453

guard: existingSessionNavigationGuard,

445454

});

446-

return res.json({ ok: true, targetId: tab.targetId, url: tab.url });

455+

return await jsonOk();

447456

case "type":

448457

await runExistingSessionActionWithNavigationGuard({

449458

execute: async () => {

@@ -465,7 +474,7 @@ export function registerBrowserAgentActRoutes(

465474

},

466475

guard: existingSessionNavigationGuard,

467476

});

468-

return res.json({ ok: true, targetId: tab.targetId });

477+

return await jsonOk();

469478

case "press":

470479

await runExistingSessionActionWithNavigationGuard({

471480

execute: () =>

@@ -477,7 +486,7 @@ export function registerBrowserAgentActRoutes(

477486

}),

478487

guard: existingSessionNavigationGuard,

479488

});

480-

return res.json({ ok: true, targetId: tab.targetId });

489+

return await jsonOk();

481490

case "hover":

482491

await runExistingSessionActionWithNavigationGuard({

483492

execute: () =>

@@ -489,7 +498,7 @@ export function registerBrowserAgentActRoutes(

489498

}),

490499

guard: existingSessionNavigationGuard,

491500

});

492-

return res.json({ ok: true, targetId: tab.targetId });

501+

return await jsonOk();

493502

case "scrollIntoView":

494503

await runExistingSessionActionWithNavigationGuard({

495504

execute: () =>

@@ -502,7 +511,7 @@ export function registerBrowserAgentActRoutes(

502511

}),

503512

guard: existingSessionNavigationGuard,

504513

});

505-

return res.json({ ok: true, targetId: tab.targetId });

514+

return await jsonOk();

506515

case "drag":

507516

await runExistingSessionActionWithNavigationGuard({

508517

execute: () =>

@@ -515,7 +524,7 @@ export function registerBrowserAgentActRoutes(

515524

}),

516525

guard: existingSessionNavigationGuard,

517526

});

518-

return res.json({ ok: true, targetId: tab.targetId });

527+

return await jsonOk();

519528

case "select":

520529

await runExistingSessionActionWithNavigationGuard({

521530

execute: () =>

@@ -528,7 +537,7 @@ export function registerBrowserAgentActRoutes(

528537

}),

529538

guard: existingSessionNavigationGuard,

530539

});

531-

return res.json({ ok: true, targetId: tab.targetId });

540+

return await jsonOk();

532541

case "fill":

533542

await runExistingSessionActionWithNavigationGuard({

534543

execute: () =>

@@ -543,7 +552,7 @@ export function registerBrowserAgentActRoutes(

543552

}),

544553

guard: existingSessionNavigationGuard,

545554

});

546-

return res.json({ ok: true, targetId: tab.targetId });

555+

return await jsonOk();

547556

case "resize":

548557

await resizeChromeMcpPage({

549558

profileName,

@@ -552,7 +561,7 @@ export function registerBrowserAgentActRoutes(

552561

width: action.width,

553562

height: action.height,

554563

});

555-

return res.json({ ok: true, targetId: tab.targetId, url: tab.url });

564+

return await jsonOk();

556565

case "wait":

557566

await waitForExistingSessionCondition({

558567

profileName,

@@ -567,7 +576,7 @@ export function registerBrowserAgentActRoutes(

567576

fn: action.fn,

568577

timeoutMs: action.timeoutMs,

569578

});

570-

return res.json({ ok: true, targetId: tab.targetId });

579+

return await jsonOk();

571580

case "evaluate": {

572581

const result = await runExistingSessionActionWithNavigationGuard({

573582

execute: () =>

@@ -580,16 +589,11 @@ export function registerBrowserAgentActRoutes(

580589

}),

581590

guard: existingSessionNavigationGuard,

582591

});

583-

return res.json({

584-

ok: true,

585-

targetId: tab.targetId,

586-

url: tab.url,

587-

result,

588-

});

592+

return await jsonOk({ result });

589593

}

590594

case "close":

591595

await closeChromeMcpTab(profileName, tab.targetId, profileCtx.profile.userDataDir);

592-

return res.json({ ok: true, targetId: tab.targetId });

596+

return await jsonOk();

593597

case "batch":

594598

return jsonActError(

595599

res,

@@ -620,20 +624,15 @@ export function registerBrowserAgentActRoutes(

620624

});

621625

switch (action.kind) {

622626

case "batch":

623-

return res.json({ ok: true, targetId: tab.targetId, results: result.results ?? [] });

627+

return await jsonOk({ results: result.results ?? [] });

624628

case "evaluate":

625-

return res.json({

626-

ok: true,

627-

targetId: tab.targetId,

628-

url: tab.url,

629-

result: result.result,

630-

});

629+

return await jsonOk({ result: result.result });

631630

case "click":

632631

case "clickCoords":

633632

case "resize":

634-

return res.json({ ok: true, targetId: tab.targetId, url: tab.url });

633+

return await jsonOk();

635634

default:

636-

return res.json({ ok: true, targetId: tab.targetId });

635+

return await jsonOk();

637636

}

638637

},

639638

});

@@ -660,7 +659,7 @@ export function registerBrowserAgentActRoutes(

660659

res,

661660

ctx,

662661

targetId,

663-

run: async ({ profileCtx, cdpUrl, tab }) => {

662+

run: async ({ profileCtx, cdpUrl, tab, resolveTabUrl }) => {

664663

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

665664

return jsonError(res, 501, EXISTING_SESSION_LIMITS.responseBody);

666665

}

@@ -675,7 +674,13 @@ export function registerBrowserAgentActRoutes(

675674

timeoutMs: timeoutMs ?? undefined,

676675

maxChars: maxChars ?? undefined,

677676

});

678-

res.json({ ok: true, targetId: tab.targetId, response: result });

677+

const currentUrl = await resolveTabUrl(tab.url);

678+

res.json({

679+

ok: true,

680+

targetId: tab.targetId,

681+

...(currentUrl ? { url: currentUrl } : {}),

682+

response: result,

683+

});

679684

},

680685

});

681686

}),

@@ -696,7 +701,15 @@ export function registerBrowserAgentActRoutes(

696701

res,

697702

ctx,

698703

targetId,

699-

run: async ({ profileCtx, cdpUrl, tab }) => {

704+

run: async ({ profileCtx, cdpUrl, tab, resolveTabUrl }) => {

705+

const jsonOk = async () => {

706+

const currentUrl = await resolveTabUrl(tab.url);

707+

return res.json({

708+

ok: true,

709+

targetId: tab.targetId,

710+

...(currentUrl ? { url: currentUrl } : {}),

711+

});

712+

};

700713

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

701714

await evaluateChromeMcpScript({

702715

profileName: profileCtx.profile.name,

@@ -719,7 +732,7 @@ export function registerBrowserAgentActRoutes(

719732

return true;

720733

}`,

721734

});

722-

return res.json({ ok: true, targetId: tab.targetId });

735+

return await jsonOk();

723736

}

724737

const pw = await requirePwAi(res, "highlight");

725738

if (!pw) {

@@ -730,7 +743,7 @@ export function registerBrowserAgentActRoutes(

730743

targetId: tab.targetId,

731744

ref,

732745

});

733-

res.json({ ok: true, targetId: tab.targetId });

746+

await jsonOk();

734747

},

735748

});

736749

}),