mirror of
https://github.com/domfelipe/hermes-agent-custom.git
synced 2026-08-07 07:36:40 +00:00
feat: post mika actions back to platform
This commit is contained in:
parent
11b664b8d5
commit
7718920777
8 changed files with 364 additions and 30 deletions
|
|
@ -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="🧩",
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue