feat(FN-1715): add scope-aware automation and routine scheduling

- Add scope field to automations and routines for granular control
- Update automation-store and routine-store with scope-aware query methods
- Extend database schema with scope column for automations and routines
- Update cron-runner and routine-scheduler to respect scope boundaries
- Add project context injection to in-process runtime for scoped execution
- Include changeset for minor version bump
This commit is contained in:
Fusion
2026-04-15 16:32:16 -07:00
committed by gsxdsm
parent a5188bb5eb
commit 08a0d7157a
18 changed files with 208 additions and 49 deletions

View File

@@ -463,6 +463,7 @@ export class InProcessRuntime
routineStore,
routineRunner: this.routineRunner,
pollIntervalMs: 60000,
scope: "project", // Project-scoped execution — global routines run separately
});
this.routineScheduler.start();
runtimeLog.log("RoutineScheduler initialized and started");