Vitalis_Core / src /exec /action_executor.py
FerrellSyntheticIntelligence
Finalize Vitalis Core: Ocean UI & Truth-Aware Logic
f38488f
#!/usr/bin/env python3
import subprocess
class ActionExecutor:
def run(self, cmd: str):
return subprocess.run(cmd, shell=True, capture_output=True, text=True)