#!/usr/bin/env python3 """ Cosmo Satellite — голосовой клиент для OpenClaw Gateway Обёртка: запускает satellite package """ import sys from satellite.modes import run_with_enter, run_with_porcupine if "--wake" in sys.argv: run_with_porcupine() else: run_with_enter()