feat: add cronjob_create tool to mika_runtime plugin (#4)

Co-authored-by: railway-app[bot] <68434857+railway-app[bot]@users.noreply.github.com>
This commit is contained in:
railway-app[bot] 2026-05-25 20:38:48 -03:00 committed by GitHub
parent 1740e05917
commit 11b664b8d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 101 additions and 0 deletions

View file

@ -2,10 +2,12 @@
from plugins.mika_runtime.tools import (
CALCOM_API_SCHEMA,
CRONJOB_CREATE_SCHEMA,
INTEGRATIONS_STATUS_SCHEMA,
NOTION_API_SCHEMA,
TODOIST_API_SCHEMA,
handle_calcom_api,
handle_cronjob_create,
handle_integrations_status,
handle_notion_api,
handle_todoist_api,
@ -42,3 +44,10 @@ def register(ctx) -> None:
handler=handle_calcom_api,
emoji="📅",
)
ctx.register_tool(
name="cronjob_create",
toolset="mika_integrations",
schema=CRONJOB_CREATE_SCHEMA,
handler=handle_cronjob_create,
emoji="",
)