feat(remote): support per-conversation working directories in listener mode (#1323)

This commit is contained in:
Charles Packer
2026-03-10 13:42:42 -07:00
committed by GitHub
parent e82a2d33f8
commit 4c9f63c4e2
13 changed files with 482 additions and 45 deletions

View File

@@ -278,7 +278,8 @@ export async function recompileAgentSystemPrompt(
options: RecompileAgentSystemPromptOptions = {},
clientOverride?: AgentSystemPromptRecompileClient,
): Promise<string> {
const client = clientOverride ?? (await getClient());
const client = (clientOverride ??
(await getClient())) as AgentSystemPromptRecompileClient;
return client.agents.recompile(agentId, {
dry_run: options.dryRun,