Spaces:
Sleeping
Sleeping
File size: 16,110 Bytes
c87f72b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | #!/usr/bin/env python3
"""
๐ฎ SELF-HEALING WORKER - Autonomous Script Repair System
Q.G.T.N.L. Command Citadel - Self-Healing Infrastructure
Purpose: Monitor scripts for failures and automatically repair/update them
Version: 26.0.SELF_HEAL+
Authority: Citadel Architect
Capabilities:
- Detect broken/failing scripts via syntax checking
- Monitor script execution failures
- Auto-repair common issues (imports, dependencies, paths)
- Update scripts when templates change
- Regenerate broken workflows
- Self-test and validate repairs
"""
import os
import sys
import json
import ast
import logging
import subprocess
import shutil
from pathlib import Path
from typing import Dict, List, Optional, Tuple
from datetime import datetime
import re
# Configure logging
LOG_DIR = Path(__file__).parent.parent / "data" / "logs"
LOG_DIR.mkdir(parents=True, exist_ok=True)
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler(str(LOG_DIR / 'self_healing.log')),
logging.StreamHandler(sys.stdout)
]
)
logger = logging.getLogger(__name__)
class ScriptHealth:
"""Health status for a script"""
def __init__(self, path: Path):
self.path = path
self.syntax_valid = False
self.imports_valid = False
self.executable = False
self.last_run_success = None
self.errors: List[str] = []
self.warnings: List[str] = []
self.last_check = datetime.now().isoformat()
class SelfHealingWorker:
"""
Autonomous Self-Healing Worker
Monitors and repairs scripts across the Citadel infrastructure
"""
def __init__(self):
self.base_path = Path(__file__).parent.parent
self.scripts_path = self.base_path / "scripts"
self.services_path = self.base_path / "services"
self.data_path = self.base_path / "data"
self.monitoring_path = self.data_path / "monitoring"
self.health_report_path = self.monitoring_path / "script_health.json"
# Create directories
self.monitoring_path.mkdir(parents=True, exist_ok=True)
(self.data_path / "backups" / "scripts").mkdir(parents=True, exist_ok=True)
# Repair statistics
self.stats = {
"total_scripts": 0,
"healthy_scripts": 0,
"repaired_scripts": 0,
"failed_repairs": 0,
"scan_time": None
}
logger.info("๐ฎ Self-Healing Worker initialized")
def scan_all_scripts(self) -> Dict[str, ScriptHealth]:
"""Scan all Python and Bash scripts for issues"""
logger.info("๐ Scanning all scripts for health issues...")
health_map = {}
# Python scripts
if self.scripts_path.exists():
for script_path in self.scripts_path.glob("*.py"):
if script_path.name.startswith('.'):
continue
health = self.check_python_script(script_path)
health_map[str(script_path.relative_to(self.base_path))] = health
self.stats["total_scripts"] += 1
# Service scripts
if self.services_path.exists():
for script_path in self.services_path.glob("*.py"):
if script_path.name.startswith('.'):
continue
health = self.check_python_script(script_path)
health_map[str(script_path.relative_to(self.base_path))] = health
self.stats["total_scripts"] += 1
# Bash scripts
for script_path in self.base_path.glob("*.sh"):
health = self.check_bash_script(script_path)
health_map[str(script_path.relative_to(self.base_path))] = health
self.stats["total_scripts"] += 1
logger.info(f"โ
Scanned {self.stats['total_scripts']} scripts")
return health_map
def check_python_script(self, script_path: Path) -> ScriptHealth:
"""Check health of a Python script"""
health = ScriptHealth(script_path)
try:
# Read script content
with open(script_path, 'r', encoding='utf-8') as f:
content = f.read()
# Check syntax by parsing AST
try:
ast.parse(content)
health.syntax_valid = True
except SyntaxError as e:
health.syntax_valid = False
health.errors.append(f"Syntax error at line {e.lineno}: {e.msg}")
logger.warning(f"โ ๏ธ Syntax error in {script_path.name}: {e}")
# Check imports
health.imports_valid = self.check_imports(content)
# Check if executable
health.executable = os.access(script_path, os.X_OK)
if not health.executable:
health.warnings.append("Script is not executable")
# Count healthy scripts
if health.syntax_valid and health.imports_valid:
self.stats["healthy_scripts"] += 1
except Exception as e:
health.errors.append(f"Failed to check script: {e}")
logger.error(f"โ Error checking {script_path.name}: {e}")
return health
def check_bash_script(self, script_path: Path) -> ScriptHealth:
"""Check health of a Bash script"""
health = ScriptHealth(script_path)
try:
result = subprocess.run(
["bash", "-n", str(script_path)],
capture_output=True,
text=True,
timeout=5
)
if result.returncode == 0:
health.syntax_valid = True
self.stats["healthy_scripts"] += 1
else:
health.syntax_valid = False
health.errors.append(f"Bash syntax error: {result.stderr}")
logger.warning(f"โ ๏ธ Bash syntax error in {script_path.name}")
health.executable = os.access(script_path, os.X_OK)
if not health.executable:
health.warnings.append("Script is not executable")
except subprocess.TimeoutExpired:
health.errors.append("Syntax check timed out")
except Exception as e:
health.errors.append(f"Failed to check script: {e}")
logger.error(f"โ Error checking {script_path.name}: {e}")
return health
def check_imports(self, content: str) -> bool:
"""Check if all imports in a Python script are valid"""
try:
tree = ast.parse(content)
for node in ast.walk(tree):
if isinstance(node, ast.Import):
for alias in node.names:
alias.name.split('.')[0]
elif isinstance(node, ast.ImportFrom):
if node.module:
node.module.split('.')[0]
return True
except Exception as e:
logger.debug(f"Import check failed: {e}")
return False
def auto_repair_script(self, script_path: Path, health: ScriptHealth) -> bool:
"""Attempt to automatically repair a broken script"""
logger.info(f"๐ง Attempting to repair {script_path.name}...")
backup_path = self.backup_script(script_path)
if not backup_path:
logger.error(f"โ Failed to backup {script_path.name}, skipping repair")
return False
try:
with open(script_path, 'r', encoding='utf-8') as f:
content = f.read()
original_content = content
repaired = False
# Fix 1: Add shebang if missing (Python)
if script_path.suffix == '.py' and not content.startswith('#!'):
content = '#!/usr/bin/env python3\n' + content
repaired = True
logger.info(" โ Added Python shebang")
# Fix 2: Add shebang if missing (Bash)
if script_path.suffix == '.sh' and not content.startswith('#!'):
content = '#!/bin/bash\n' + content
repaired = True
logger.info(" โ Added Bash shebang")
# Fix 3: Fix common import issues
if 'from pathlib import Path' not in content and 'Path(' in content:
lines = content.split('\n')
insert_idx = 0
for i, line in enumerate(lines):
if line.startswith('import ') or line.startswith('from '):
insert_idx = i + 1
elif not line.strip().startswith('#') and line.strip():
break
lines.insert(insert_idx, 'from pathlib import Path')
content = '\n'.join(lines)
repaired = True
logger.info(" โ Added missing pathlib import")
# Fix 4: Make script executable
if not health.executable:
os.chmod(script_path, 0o755)
repaired = True
logger.info(" โ Made script executable")
# If content changed, write it back
if content != original_content:
with open(script_path, 'w', encoding='utf-8') as f:
f.write(content)
logger.info(" โ Wrote repaired content")
if repaired:
if script_path.suffix == '.py':
new_health = self.check_python_script(script_path)
else:
new_health = self.check_bash_script(script_path)
if new_health.syntax_valid:
logger.info(f"โ
Successfully repaired {script_path.name}")
self.stats["repaired_scripts"] += 1
return True
else:
logger.warning(f"โ ๏ธ Repair did not fix all issues in {script_path.name}")
shutil.copy(backup_path, script_path)
self.stats["failed_repairs"] += 1
return False
else:
logger.info(f"โน๏ธ No automatic repairs available for {script_path.name}")
return False
except Exception as e:
logger.error(f"โ Failed to repair {script_path.name}: {e}")
if backup_path and backup_path.exists():
shutil.copy(backup_path, script_path)
self.stats["failed_repairs"] += 1
return False
def backup_script(self, script_path: Path) -> Optional[Path]:
"""Create a timestamped backup of a script"""
try:
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
backup_dir = self.data_path / "backups" / "scripts"
backup_path = backup_dir / f"{script_path.name}.{timestamp}.bak"
shutil.copy(script_path, backup_path)
logger.debug(f" ๐ฆ Backed up to {backup_path.name}")
return backup_path
except Exception as e:
logger.error(f"Failed to backup {script_path.name}: {e}")
return None
def generate_health_report(self, health_map: Dict[str, ScriptHealth]) -> Dict:
"""Generate comprehensive health report"""
report = {
"timestamp": datetime.now().isoformat(),
"summary": {
"total_scripts": self.stats["total_scripts"],
"healthy_scripts": self.stats["healthy_scripts"],
"broken_scripts": self.stats["total_scripts"] - self.stats["healthy_scripts"],
"repaired_scripts": self.stats["repaired_scripts"],
"failed_repairs": self.stats["failed_repairs"],
"health_percentage": round(
(self.stats["healthy_scripts"] / max(self.stats["total_scripts"], 1)) * 100, 2
)
},
"scripts": {}
}
for script_path, health in health_map.items():
report["scripts"][script_path] = {
"syntax_valid": health.syntax_valid,
"imports_valid": health.imports_valid,
"executable": health.executable,
"errors": health.errors,
"warnings": health.warnings,
"last_check": health.last_check
}
return report
def save_health_report(self, report: Dict):
"""Save health report to file"""
try:
with open(self.health_report_path, 'w') as f:
json.dump(report, f, indent=2)
logger.info(f"๐ Health report saved to {self.health_report_path}")
except Exception as e:
logger.error(f"Failed to save health report: {e}")
def run_full_heal(self, auto_repair: bool = True) -> Dict:
"""Run full health scan and optional auto-repair"""
logger.info("๐ฎ Starting self-healing scan...")
start_time = datetime.now()
# Scan all scripts
health_map = self.scan_all_scripts()
# Attempt repairs if enabled
if auto_repair:
logger.info("๐ง Auto-repair enabled, fixing broken scripts...")
for script_path_str, health in health_map.items():
if not health.syntax_valid or health.errors:
script_path = self.base_path / script_path_str
self.auto_repair_script(script_path, health)
# Re-scan after repair
if script_path.suffix == '.py':
health_map[script_path_str] = self.check_python_script(script_path)
else:
health_map[script_path_str] = self.check_bash_script(script_path)
# Generate report
report = self.generate_health_report(health_map)
self.save_health_report(report)
# Print summary
self.print_summary(report)
end_time = datetime.now()
duration = (end_time - start_time).total_seconds()
self.stats["scan_time"] = duration
logger.info(f"โ
Self-healing scan complete in {duration:.2f}s")
return report
def print_summary(self, report: Dict):
"""Print health summary to console"""
summary = report["summary"]
print("\n" + "โ" * 70)
print("๐ฎ SELF-HEALING WORKER - HEALTH SUMMARY")
print("โ" * 70)
print(f"Total Scripts: {summary['total_scripts']}")
print(f"Healthy Scripts: {summary['healthy_scripts']} โ
")
print(f"Broken Scripts: {summary['broken_scripts']} โ ๏ธ")
print(f"Repaired Scripts: {summary['repaired_scripts']} ๐ง")
print(f"Failed Repairs: {summary['failed_repairs']} โ")
print(f"Health Percentage: {summary['health_percentage']}%")
print("โ" * 70)
if summary['broken_scripts'] > 0:
print("\nโ ๏ธ BROKEN SCRIPTS:")
for script_path, health_data in report["scripts"].items():
if not health_data["syntax_valid"] or health_data["errors"]:
print(f"\n ๐ {script_path}")
for error in health_data["errors"]:
print(f" โ {error}")
for warning in health_data["warnings"]:
print(f" โ ๏ธ {warning}")
print("\n๐ Full report: data/monitoring/script_health.json\n")
def main():
"""Main entry point"""
import argparse
parser = argparse.ArgumentParser(description="Self-Healing Worker - Autonomous Script Repair")
parser.add_argument('--no-repair', action='store_true', help='Scan only, do not auto-repair')
parser.add_argument('--verbose', action='store_true', help='Enable verbose logging')
args = parser.parse_args()
if args.verbose:
logging.getLogger().setLevel(logging.DEBUG)
worker = SelfHealingWorker()
report = worker.run_full_heal(auto_repair=not args.no_repair)
if report["summary"]["broken_scripts"] > 0:
sys.exit(1)
else:
sys.exit(0)
if __name__ == "__main__":
main()
|