fix: intercept mika platform actions before llm

This commit is contained in:
Felipe Domingues 2026-05-30 11:35:49 -03:00
parent 9e22243c6b
commit b5bf9dff1b
3 changed files with 382 additions and 0 deletions

View file

@ -9,6 +9,7 @@ from plugins.mika_runtime.tools import (
TODOIST_API_SCHEMA,
handle_calcom_api,
handle_cronjob_create,
handle_gateway_platform_action_intercept,
handle_integrations_status,
handle_notion_api,
handle_skill_create,
@ -60,3 +61,7 @@ def register(ctx) -> None:
handler=handle_skill_create,
emoji="🧩",
)
ctx.register_hook(
"pre_gateway_dispatch",
handle_gateway_platform_action_intercept,
)