import psutil
class DiVitals(Skill):
def __init__(self):
super().__init__()
def input(self, ear, skin, eye):
# --- TRIGGER WORDS ---
trigger_phrases = ["vitals", "system check", "diagnostics", "how are you running", "status"]
if not any(trigger in...