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

@ -475,6 +475,11 @@ export type Database = {
natural_language_input: string
next_run_at: string | null
required_mcp_slugs: Json
runtime_last_delivery_error: string | null
runtime_last_error: string | null
runtime_last_status: string | null
runtime_state: string | null
runtime_synced_at: string | null
status: string
timezone: string
updated_at: string
@ -494,6 +499,11 @@ export type Database = {
natural_language_input: string
next_run_at?: string | null
required_mcp_slugs?: Json
runtime_last_delivery_error?: string | null
runtime_last_error?: string | null
runtime_last_status?: string | null
runtime_state?: string | null
runtime_synced_at?: string | null
status?: string
timezone?: string
updated_at?: string
@ -513,6 +523,11 @@ export type Database = {
natural_language_input?: string
next_run_at?: string | null
required_mcp_slugs?: Json
runtime_last_delivery_error?: string | null
runtime_last_error?: string | null
runtime_last_status?: string | null
runtime_state?: string | null
runtime_synced_at?: string | null
status?: string
timezone?: string
updated_at?: string