Coverage for agentos/plugins.py: 0%
16 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-06 12:29 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-06 12:29 +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"""
7from agentos.plugin_manager import PluginInfo, PluginManager
9__all__ = ["PluginInfo", "PluginManager"]
12# ── Auto-generated compat stubs ──
15class PluginRegistry:
16 pass
19class RegisteredPlugin:
20 pass
23class PluginStatus:
24 pass
27class PluginDiscovery:
28 pass
31class DiscoveredPlugin:
32 pass
35class PluginLoader:
36 pass
39class LifecycleManager:
40 pass