Coverage for agentos/plugins.py: 0%

16 statements  

« 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 

2 

3All actual implementation has moved to agentos.plugin_manager. 

4This module re-exports for existing import paths. 

5""" 

6 

7from agentos.plugin_manager import PluginInfo, PluginManager 

8 

9__all__ = ["PluginInfo", "PluginManager"] 

10 

11 

12# ── Auto-generated compat stubs ── 

13 

14 

15class PluginRegistry: 

16 pass 

17 

18 

19class RegisteredPlugin: 

20 pass 

21 

22 

23class PluginStatus: 

24 pass 

25 

26 

27class PluginDiscovery: 

28 pass 

29 

30 

31class DiscoveredPlugin: 

32 pass 

33 

34 

35class PluginLoader: 

36 pass 

37 

38 

39class LifecycleManager: 

40 pass