mirror of
https://github.com/browser-use/browser-use
synced 2026-04-22 17:45:09 +02:00
Replace the multi-session server (server.py, SessionRegistry, portalocker locking, PID files, orphan detection) with a minimal daemon (daemon.py) that holds one BrowserSession in memory. Socket file existence = alive. Auto-exits when browser dies via CDP watchdog. -2277 lines, +142 lines across 20 files. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
215 B
Python
18 lines
215 B
Python
"""Command handlers for browser-use CLI."""
|
|
|
|
from browser_use.skill_cli.commands import (
|
|
agent,
|
|
browser,
|
|
doctor,
|
|
python_exec,
|
|
setup,
|
|
)
|
|
|
|
__all__ = [
|
|
'agent',
|
|
'browser',
|
|
'doctor',
|
|
'python_exec',
|
|
'setup',
|
|
]
|