container-manager-mcp 0.0.4__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- container_manager_mcp/__init__.py +23 -15
- container_manager_mcp/__main__.py +6 -0
- container_manager_mcp/container_manager.py +1145 -309
- container_manager_mcp/container_manager_a2a.py +339 -0
- container_manager_mcp/container_manager_mcp.py +2061 -1110
- container_manager_mcp/mcp_config.json +7 -0
- container_manager_mcp/skills/container-manager-compose/SKILL.md +25 -0
- container_manager_mcp/skills/container-manager-containers/SKILL.md +28 -0
- container_manager_mcp/skills/container-manager-containers/troubleshoot.md +5 -0
- container_manager_mcp/skills/container-manager-images/SKILL.md +25 -0
- container_manager_mcp/skills/container-manager-info/SKILL.md +23 -0
- container_manager_mcp/skills/container-manager-logs/SKILL.md +22 -0
- container_manager_mcp/skills/container-manager-networks/SKILL.md +22 -0
- container_manager_mcp/skills/container-manager-swarm/SKILL.md +28 -0
- container_manager_mcp/skills/container-manager-swarm/orchestrate.md +4 -0
- container_manager_mcp/skills/container-manager-system/SKILL.md +19 -0
- container_manager_mcp/skills/container-manager-volumes/SKILL.md +23 -0
- container_manager_mcp/utils.py +31 -0
- container_manager_mcp-1.2.0.dist-info/METADATA +371 -0
- container_manager_mcp-1.2.0.dist-info/RECORD +26 -0
- container_manager_mcp-1.2.0.dist-info/entry_points.txt +4 -0
- {container_manager_mcp-0.0.4.dist-info → container_manager_mcp-1.2.0.dist-info}/top_level.txt +1 -0
- scripts/validate_a2a_agent.py +150 -0
- scripts/validate_agent.py +67 -0
- container_manager_mcp-0.0.4.dist-info/METADATA +0 -243
- container_manager_mcp-0.0.4.dist-info/RECORD +0 -9
- container_manager_mcp-0.0.4.dist-info/entry_points.txt +0 -3
- {container_manager_mcp-0.0.4.dist-info → container_manager_mcp-1.2.0.dist-info}/WHEEL +0 -0
- {container_manager_mcp-0.0.4.dist-info → container_manager_mcp-1.2.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,24 +1,32 @@
|
|
|
1
1
|
#!/usr/bin/env python
|
|
2
2
|
# coding: utf-8
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
4
|
+
import importlib
|
|
5
|
+
import inspect
|
|
6
|
+
|
|
7
|
+
# List of modules to import from
|
|
8
|
+
MODULES = [
|
|
9
|
+
"container_manager_mcp.container_manager",
|
|
10
|
+
"container_manager_mcp.container_manager_mcp",
|
|
11
|
+
"container_manager_mcp.container_manager_a2a",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
# Initialize __all__ to expose all public classes and functions
|
|
15
|
+
__all__ = []
|
|
16
|
+
|
|
17
|
+
# Dynamically import all classes and functions from the specified modules
|
|
18
|
+
for module_name in MODULES:
|
|
19
|
+
module = importlib.import_module(module_name)
|
|
20
|
+
for name, obj in inspect.getmembers(module):
|
|
21
|
+
# Include only classes and functions, excluding private (starting with '_')
|
|
22
|
+
if (inspect.isclass(obj) or inspect.isfunction(obj)) and not name.startswith(
|
|
23
|
+
"_"
|
|
24
|
+
):
|
|
25
|
+
globals()[name] = obj
|
|
26
|
+
__all__.append(name)
|
|
11
27
|
|
|
12
28
|
"""
|
|
13
29
|
container-manager
|
|
14
30
|
|
|
15
31
|
Manage your containers using docker, podman, compose, or docker swarm!
|
|
16
32
|
"""
|
|
17
|
-
|
|
18
|
-
__all__ = [
|
|
19
|
-
"main",
|
|
20
|
-
"container_manager_mcp",
|
|
21
|
-
"ContainerManagerBase",
|
|
22
|
-
"DockerManager",
|
|
23
|
-
"PodmanManager",
|
|
24
|
-
]
|