feat(studio): make agent edits live and explicit (#3581)

This commit is contained in:
Miguel Ángel
2026-09-02 01:11:13 -04:00
committed by GitHub
parent f498be94c2
commit 6b5b4cb988
94 changed files with 7181 additions and 985 deletions
@@ -0,0 +1,13 @@
import { resolve } from "node:path";
interface StudioServerDevModuleLoader {
ssrLoadModule(id: string): Promise<unknown>;
}
/** Load the workspace server source so Studio dev cannot execute a stale ignored dist build. */
export function loadStudioServerDevModule(
server: StudioServerDevModuleLoader,
studioDir: string,
): Promise<unknown> {
return server.ssrLoadModule(resolve(studioDir, "../studio-server/src/index.ts"));
}