Go-live runtime sync and control plane hardening (#1)

* Implement Mika runtime sync and go-live controls

* Add CI validation workflow

* Align CI with validated runtime checks

* Fix Mika CI install workflow
This commit is contained in:
Felipe Domingues 2026-04-30 20:41:06 -03:00 committed by GitHub
parent cb54fa4666
commit d87ea2657c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 4019 additions and 95 deletions

View file

@ -15,10 +15,15 @@ export interface ScheduledJob {
human_readable: string;
action_prompt: string;
required_mcp_slugs: string[];
status: "active" | "paused" | "auto_paused";
status: "active" | "paused" | "auto_paused" | "error" | "archived";
auto_paused_reason: string | null;
last_run_at: string | null;
next_run_at: string | null;
runtime_state: "scheduled" | "paused" | "completed" | "error" | null;
runtime_last_status: "ok" | "error" | null;
runtime_last_error: string | null;
runtime_last_delivery_error: string | null;
runtime_synced_at: string | null;
timezone: string;
created_at: string;
updated_at: string;