Files
timmy-config/scripts/health_dashboard.py
Alexander Whitestone 1c82a2a560
Some checks failed
Architecture Lint / Linter Tests (pull_request) Successful in 23s
Smoke Test / smoke (pull_request) Failing after 15s
Validate Config / YAML Lint (pull_request) Failing after 15s
Validate Config / JSON Validate (pull_request) Successful in 17s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 37s
Validate Config / Python Test Suite (pull_request) Has been skipped
Validate Config / Cron Syntax Check (pull_request) Successful in 11s
Validate Config / Shell Script Lint (pull_request) Failing after 49s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 11s
Validate Config / Playbook Schema Validation (pull_request) Successful in 20s
Validate Training Data / validate (pull_request) Failing after 15s
Architecture Lint / Lint Repository (pull_request) Failing after 17s
PR Checklist / pr-checklist (pull_request) Failing after 2m53s
fix: add python3 shebangs to all Python scripts (#681)
Added #!/usr/bin/env python3 to 74 Python scripts across:
- bin/ (16 scripts)
- scripts/ (48 scripts)
- pipeline/ (3 scripts)
- training/scripts/ (3 scripts)
- hermes-sovereign/ (1 script)

Also added executable permissions to fixed scripts.
Test files excluded (run by pytest, not directly).

Closes #681
2026-04-20 19:17:19 -04:00

77 lines
2.5 KiB
Python
Executable File

#!/usr/bin/env python3
#!/usr/bin/env python3
"""
health_dashboard.py — Sovereign Health & Observability Dashboard.
Aggregates data from Muda, Guardrails, Token Optimizer, and Quality Gates
into a single, unified health report for the Timmy Foundation fleet.
"""
import os
import sys
import json
import subprocess
from datetime import datetime
from pathlib import Path
REPORTS_DIR = Path("reports")
DASHBOARD_FILE = Path("SOVEREIGN_HEALTH.md")
class HealthDashboard:
def __init__(self):
REPORTS_DIR.mkdir(exist_ok=True)
def run_tool(self, name: str, cmd: str) -> str:
print(f"[*] Running {name}...")
try:
# Capture output
res = subprocess.run(cmd, shell=True, capture_output=True, text=True)
return res.stdout
except Exception as e:
return f"Error running {name}: {e}"
def generate_report(self):
print("--- Generating Sovereign Health Dashboard ---")
# 1. Run Audits
muda_output = self.run_tool("Muda Audit", "python3 scripts/muda_audit.py")
guardrails_output = self.run_tool("Agent Guardrails", "python3 scripts/agent_guardrails.py")
optimizer_output = self.run_tool("Token Optimizer", "python3 scripts/token_optimizer.py")
gate_output = self.run_tool("Quality Gate", "python3 scripts/ci_automation_gate.py .")
# 2. Build Markdown
now = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
md = [
f"# 🛡️ Sovereign Health Dashboard",
f"**Last Updated:** {now}",
f"",
f"## 📊 Summary",
f"- **Fleet Status:** ACTIVE",
f"- **Security Posture:** MONITORING",
f"- **Operational Waste:** AUDITED",
f"",
f"## ♻️ Muda Waste Audit",
f"```\n{muda_output}\n```",
f"",
f"## 🕵️ Agent Guardrails",
f"```\n{guardrails_output}\n```",
f"",
f"## 🪙 Token Efficiency",
f"```\n{optimizer_output}\n```",
f"",
f"## 🏗️ CI Quality Gate",
f"```\n{gate_output}\n```",
f"",
f"---",
f"*Generated by Sovereign Infrastructure Suite*"
]
with open(DASHBOARD_FILE, "w") as f:
f.write("\n".join(md))
print(f"[SUCCESS] Dashboard generated at {DASHBOARD_FILE}")
if __name__ == "__main__":
dashboard = HealthDashboard()
dashboard.generate_report()