fix(plugins): export AutomationPlugin and AIUIControlPlugin from __init__.py so they get discovered

This commit is contained in:
Agent Zero
2026-07-24 01:57:27 +02:00
parent 02a757b673
commit c5588e64f6
2 changed files with 8 additions and 0 deletions
@@ -1 +1,5 @@
"""AI UI Control plugin — lets AI agents control the frontend UI via WebSocket.""" """AI UI Control plugin — lets AI agents control the frontend UI via WebSocket."""
from app.plugins.builtins.ai_ui_control.plugin import AIUIControlPlugin
__all__ = ["AIUIControlPlugin"]
@@ -1 +1,5 @@
"""Automation plugin — cron scheduling, agent runner, workflow timeout, execution engine.""" """Automation plugin — cron scheduling, agent runner, workflow timeout, execution engine."""
from app.plugins.builtins.automation.plugin import AutomationPlugin
__all__ = ["AutomationPlugin"]