Files
browser-use/browser_use/skill_cli/commands/__init__.py
ShawnPana 859cb97063 simplify daemon architecture: single session, socket-as-liveness, no PID/lock files
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>
2026-03-03 19:05:44 -08:00

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',
]