feat(HAI-001): handle optional title in engine components

This commit is contained in:
Dustin Byrne
2026-03-25 19:15:35 -04:00
parent 62dc06b2f1
commit f57b87f7d3
3 changed files with 6 additions and 6 deletions

View File

@@ -89,7 +89,7 @@ export class Scheduler {
// Dependencies met — move to in-progress
console.log(
`[scheduler] Starting ${task.id}: ${task.title} (deps satisfied)`,
`[scheduler] Starting ${task.id}: ${task.title || task.id} (deps satisfied)`,
);
await this.store.moveTask(task.id, "in-progress");
this.options.onSchedule?.(task);