refactor(coding-agent): add runtime host for session switching closes #2024

This commit is contained in:
Mario Zechner 2026-03-31 13:49:57 +02:00
parent a3bf1eb399
commit d86122cbd3
32 changed files with 1328 additions and 692 deletions

View file

@ -138,9 +138,4 @@ export default function toolsExtension(pi: ExtensionAPI) {
pi.on("session_tree", async (_event, ctx) => {
restoreFromBranch(ctx);
});
// Restore state after forking
pi.on("session_fork", async (_event, ctx) => {
restoreFromBranch(ctx);
});
}