agent: add workspace override option to AgentCommandOpts

This commit is contained in:
kumarabhirup 2026-02-19 21:51:21 -08:00
parent 459ec9766a
commit 81ce5eac3a
No known key found for this signature in database
GPG Key ID: DB7CA2289CAB0167

View File

@ -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;
};