#!/bin/bash # Monitor wake word detection in real-time echo "Monitoring wake word detection..." echo "Say 'Hey Jarvis' to test" echo "Press Ctrl+C to stop" echo "" # Watch both the wake word log and bridge log tail -f /tmp/homeai-wakeword-error.log /tmp/homeai-openclaw-bridge.log 2>/dev/null | grep -E "(Wake word detected|Listening|Failed to notify)"