From 81ce5eac3a37cfd3c43f1854893a0879dede8881 Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Thu, 19 Feb 2026 21:51:21 -0800 Subject: [PATCH] agent: add workspace override option to AgentCommandOpts --- src/commands/agent/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/agent/types.ts b/src/commands/agent/types.ts index 5e606448f47..ee8fc0e1a46 100644 --- a/src/commands/agent/types.ts +++ b/src/commands/agent/types.ts @@ -78,4 +78,6 @@ export type AgentCommandOpts = { inputProvenance?: InputProvenance; /** Per-call stream param overrides (best-effort). */ streamParams?: AgentStreamParams; + /** Workspace directory override (passed via RPC from the web UI for profile switching). */ + workspace?: string; };