arch-ops-server 3.0.1__py3-none-any.whl → 3.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.
- arch_ops_server/__init__.py +3 -1
- arch_ops_server/server.py +495 -83
- arch_ops_server/system_health_check.py +189 -0
- arch_ops_server/tool_metadata.py +646 -0
- {arch_ops_server-3.0.1.dist-info → arch_ops_server-3.2.0.dist-info}/METADATA +33 -9
- {arch_ops_server-3.0.1.dist-info → arch_ops_server-3.2.0.dist-info}/RECORD +8 -6
- {arch_ops_server-3.0.1.dist-info → arch_ops_server-3.2.0.dist-info}/WHEEL +2 -2
- {arch_ops_server-3.0.1.dist-info → arch_ops_server-3.2.0.dist-info}/entry_points.txt +0 -0
arch_ops_server/__init__.py
CHANGED
|
@@ -6,7 +6,7 @@ A Model Context Protocol server that bridges AI assistants with the Arch Linux
|
|
|
6
6
|
ecosystem, providing access to the Arch Wiki, AUR, and official repositories.
|
|
7
7
|
"""
|
|
8
8
|
|
|
9
|
-
__version__ = "3.0
|
|
9
|
+
__version__ = "3.2.0"
|
|
10
10
|
|
|
11
11
|
from .wiki import search_wiki, get_wiki_page, get_wiki_page_as_text
|
|
12
12
|
from .aur import (
|
|
@@ -43,6 +43,7 @@ from .system import (
|
|
|
43
43
|
check_failed_services,
|
|
44
44
|
get_boot_logs
|
|
45
45
|
)
|
|
46
|
+
from .system_health_check import run_system_health_check
|
|
46
47
|
from .news import (
|
|
47
48
|
get_latest_news,
|
|
48
49
|
check_critical_news,
|
|
@@ -147,6 +148,7 @@ __all__ = [
|
|
|
147
148
|
"get_pacman_cache_stats",
|
|
148
149
|
"check_failed_services",
|
|
149
150
|
"get_boot_logs",
|
|
151
|
+
"run_system_health_check",
|
|
150
152
|
# News
|
|
151
153
|
"get_latest_news",
|
|
152
154
|
"check_critical_news",
|