Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions agent/subagents/worker/tools/manage_browsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,11 @@ function lifecycleResult(browser: KernelBrowser) {
return {
browser: value,
next_actions: [
...(browser.profile_save_changes
? [
`Login state persists to the workspace profile only when this browser is deleted. Delete session_id "${value.session_id}" as soon as authentication succeeds.`,
]
: []),
`Use execute_playwright_code with session_id "${value.session_id}" for deterministic browser automation.`,
`Use computer_action with session_id "${value.session_id}" for visual browser control.`,
`Use manage_browsers with action "delete" and session_id "${value.session_id}" when finished.`,
Expand Down