mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 14:36:52 +00:00
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:
parent
cb54fa4666
commit
d87ea2657c
31 changed files with 4019 additions and 95 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue