From a0941fd3287a443d8233554890f8ae23d65df9eb Mon Sep 17 00:00:00 2001 From: gambletan Date: Sun, 8 Mar 2026 15:04:15 +0800 Subject: [PATCH] fix: add clawd to BrowserDriverType union in types.browser.ts --- src/config/types.browser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/types.browser.ts b/src/config/types.browser.ts index 82a404037c4..192fd700bff 100644 --- a/src/config/types.browser.ts +++ b/src/config/types.browser.ts @@ -4,7 +4,7 @@ export type BrowserProfileConfig = { /** CDP URL for this profile (use for remote Chrome). */ cdpUrl?: string; /** Profile driver (default: openclaw). */ - driver?: "openclaw" | "extension"; + driver?: "openclaw" | "clawd" | "extension"; /** If true, never launch a browser for this profile; only attach. Falls back to browser.attachOnly. */ attachOnly?: boolean; /** Profile color (hex). Auto-assigned at creation. */