feat: harden orchestrator execution runtime

This commit is contained in:
john
2026-07-24 23:53:32 +08:00
parent 396bb78200
commit f6f2cd0933
55 changed files with 5122 additions and 194 deletions
+2
View File
@@ -211,6 +211,7 @@ export type OrchestratorConfig = {
workflowAllowlist: string[];
fallbackToNative: boolean;
requireHealthy: boolean;
executionEnabled: boolean;
};
export type OrchestratorRuntime = {
@@ -226,6 +227,7 @@ export type OrchestratorRuntime = {
requested: boolean;
enabled: boolean;
reason: string | null;
environmentGate: boolean;
};
};