Coverage for agentos/plugins.py: 0%
9 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
1"""plugins.py - backward compatibility shim for agentos.plugins
3All actual implementation has moved to agentos.plugin_manager.
4This module re-exports for existing import paths.
5"""
6from agentos.plugin_manager import PluginInfo, PluginManager
8__all__ = ["PluginInfo", "PluginManager"]
11# ── Auto-generated compat stubs ──
13class PluginRegistry: pass
14class RegisteredPlugin: pass
15class PluginStatus: pass
16class PluginDiscovery: pass
17class DiscoveredPlugin: pass
18class PluginLoader: pass
19class LifecycleManager: pass