feat: Phase I.1 — I-AW (start_workflow + check_workflow_status agent tools) + I-AK (ask_knowledge + search_knowledge agent tools), registered in automation/plugin.py on_activate
Check Cross-Plugin Imports / check (push) Has been cancelled

This commit is contained in:
Agent Zero
2026-08-20 23:35:34 +02:00
parent bca40117e0
commit 4ab91284c9
2 changed files with 176 additions and 0 deletions
@@ -210,6 +210,12 @@ class AutomationPlugin(BasePlugin):
register_agent_coordinator_tools()
except Exception:
logger.exception("Failed to register agent coordinator tools")
# Register integration tools (I-AW: Agent→Workflow, I-AK: Agent→Knowledge)
try:
from app.ai.integration_tools import register_integration_tools
register_integration_tools()
except Exception:
logger.exception("Failed to register integration tools")
# Register MiniApps from manifest
try:
from app.plugins.builtins.kommunikation.contracts import get_miniapp_registry