mirror of
https://github.com/domfelipe/hermes-agent-custom.git
synced 2026-08-07 12:16:39 +00:00
fix: intercept mika platform actions before llm
This commit is contained in:
parent
9e22243c6b
commit
b5bf9dff1b
3 changed files with 382 additions and 0 deletions
|
|
@ -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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue