feat(FN-5083): complete Step 4 — add recover branch binding route

This commit is contained in:
Fusion (runfusion.ai)
2026-05-18 17:13:05 -07:00
committed by gsxdsm
parent a2f4b99ecc
commit 211c361cd7
6 changed files with 256 additions and 0 deletions

View File

@@ -635,6 +635,10 @@ export class ProjectEngine {
return this.runtime.getHeartbeatMonitor();
}
getSelfHealingManager() {
return this.runtime.getSelfHealingManager();
}
/** Get the project working directory. */
getWorkingDirectory(): string {
return this.config.workingDirectory;

View File

@@ -1119,6 +1119,10 @@ export class InProcessRuntime
return this.heartbeatMonitor;
}
getSelfHealingManager(): SelfHealingManager | undefined {
return this.selfHealingManager;
}
/**
* Get the HeartbeatTriggerScheduler instance (if initialized).
* Returns undefined when agent monitoring is not available.