""" Cosmo Satellite — голосовой клиент для OpenClaw Gateway Запуск: python -m satellite [--wake] """ import sys from .modes import run_with_enter, run_with_porcupine if __name__ == "__main__": if "--wake" in sys.argv: run_with_porcupine() else: run_with_enter()