fix(cli): require Chromium for local browser readiness in setup/status surfaces

This commit is contained in:
Frowtek
2026-06-05 04:06:17 -07:00
committed by Teknium
parent ec46f5912e
commit 3cd1bd971f
4 changed files with 193 additions and 4 deletions
+3 -1
View File
@@ -415,7 +415,9 @@ def _print_setup_summary(config: dict, hermes_home):
elif browser_provider == "Camofox":
missing_browser_hint = "CAMOFOX_URL"
elif browser_provider == "Local browser":
missing_browser_hint = "npm install -g agent-browser"
missing_browser_hint = (
"npm install -g agent-browser && agent-browser install --with-deps"
)
tool_status.append(
("Browser Automation", False, missing_browser_hint)
)