What problem does it solve?
This Skill automates audio alerts for Codex task lifecycle events by playing short MP3 cues via ffplay, ensuring notifications are delivered without blocking the workflow.
Core Features & Use Cases
- Non-intrusive alerts: plays a single audio cue for TASK_FINISHED, ERROR, or NEED_HELP events.
- WSL-friendly: designed to work in Windows Subsystem for Linux environments with ffplay in PATH.
- Asset-driven cues: expects MP3 files under assets/audio/: TASK_FINISHED.mp3, ERROR.mp3, NEED_HELP.mp3, and maps events to the appropriate cue.
Quick Start
Test the reminder by triggering each event type: TASK_FINISHED, ERROR, NEED_HELP. Verify the corresponding MP3 plays once. Ensure ffplay is installed and accessible in PATH and that assets/audio contains the corresponding MP3 files.
ffplay -nodisp -autoexit assets/audio/TASK_FINISHED.mp3
ffplay -nodisp -autoexit assets/audio/ERROR.mp3
ffplay -nodisp -autoexit assets/audio/NEED_HELP.mp3