fix: add missing underscore prefix in updateWorkingDir method name (#8743)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Matt Toohey
2026-04-24 18:52:09 +12:00
committed by GitHub
parent 86afdeab6a
commit f82dbc4c8a
+4 -1
View File
@@ -142,7 +142,10 @@ export async function updateWorkingDir(
workingDir: string,
): Promise<void> {
const client = await getClient();
await client.extMethod("goose/working_dir/update", { sessionId, workingDir });
await client.extMethod("_goose/working_dir/update", {
sessionId,
workingDir,
});
}
export async function updateSessionProject(