Merge pull request #1432 from Runfusion/feat/column-agent-assignment

feat: per-column agent assignment for workflow columns
This commit is contained in:
gsxdsm
2026-06-05 14:19:53 -07:00
committed by GitHub
35 changed files with 4772 additions and 104 deletions

View File

@@ -1972,6 +1972,11 @@ export async function runDashboard(port: number, opts: { paused?: boolean; dev?:
});
},
store,
// Dev-mode scheduler: no TaskExecutor runs here (engine not started), so
// neither `isTaskExecuting` nor the U5 reverse-direction
// `isAgentEffectivelyExecuting` guard has a source — both stay unwired (the
// guards simply never fire), matching the prior `isTaskExecuting` omission.
// The real wiring is the InProcessRuntime construction site.
);
triggerScheduler.start();