From 42879c337a6dc174972c5a5253493a41149b3d56 Mon Sep 17 00:00:00 2001 From: Sanchay <64085789+Sanchay-T@users.noreply.github.com> Date: Sun, 18 Jan 2026 06:52:59 +0530 Subject: [PATCH] fix: respect AGENT_BROWSER_HEADED env var for headed mode (#92) The headless option was hardcoded to true in the auto-launch section, ignoring the AGENT_BROWSER_HEADED environment variable. This fix checks the env var so users can run the browser in headed mode by setting AGENT_BROWSER_HEADED=1. Fixes #90 --- src/daemon.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/daemon.ts b/src/daemon.ts index 2d3a19a..ae62332 100644 --- a/src/daemon.ts +++ b/src/daemon.ts @@ -200,7 +200,7 @@ export async function startDaemon(options?: { streamPort?: number }): Promise