5769c1cd22
- Auto-Registration-Bug behoben (register_project/get_project_id/resolve_project Trennung) - 25 Tests gruen (Pytest) - block_compactor-Tool refactored (Option B: Soft-Check statt Hard-Block) - 4 Restbaustellen gefixt - DB-Schema: plugin_settings-Tabelle hinzugefuegt - 3 Schattenprojekte aus DB geloescht - Plan v3 + Refactor-Plan + Worklog dokumentiert
19 lines
781 B
Python
19 lines
781 B
Python
"""Tool: check external tool availability."""
|
|
from helpers.tool import Tool, Response
|
|
from usr.plugins.a0_software_orchestrator.helpers.tool_capabilities import generate_capability_report
|
|
import yaml
|
|
import os
|
|
|
|
class CapabilityCheck(Tool):
|
|
async def execute(self, plugin_dir: str = "", **kwargs):
|
|
if not plugin_dir:
|
|
plugin_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
config_path = os.path.join(plugin_dir, "default_config.yaml")
|
|
try:
|
|
with open(config_path, "r") as f:
|
|
config = yaml.safe_load(f)
|
|
except (FileNotFoundError, yaml.YAMLError) as e:
|
|
config = {}
|
|
report = generate_capability_report(config)
|
|
return Response(message=str(report), break_loop=False)
|