feat: post mika actions back to platform

This commit is contained in:
Felipe Domingues 2026-05-28 09:00:46 -03:00
parent 11b664b8d5
commit 7718920777
8 changed files with 364 additions and 30 deletions

View file

@ -5,11 +5,13 @@ from plugins.mika_runtime.tools import (
CRONJOB_CREATE_SCHEMA,
INTEGRATIONS_STATUS_SCHEMA,
NOTION_API_SCHEMA,
SKILL_CREATE_SCHEMA,
TODOIST_API_SCHEMA,
handle_calcom_api,
handle_cronjob_create,
handle_integrations_status,
handle_notion_api,
handle_skill_create,
handle_todoist_api,
)
@ -51,3 +53,10 @@ def register(ctx) -> None:
handler=handle_cronjob_create,
emoji="",
)
ctx.register_tool(
name="skill_create",
toolset="mika_integrations",
schema=SKILL_CREATE_SCHEMA,
handler=handle_skill_create,
emoji="🧩",
)