Install
openclaw skills install @krasen007/musicControl AIMP music player via native command-line switches (play, pause, stop, next, prev).
openclaw skills install @krasen007/musicDirect AIMP music player control using standard Windows command-line switches. No Python or external dependencies required — just AIMP installed and running.
tasklist /FI "IMAGENAME eq aimp.exe"
# Play/Pause toggle
aimp-player playpause
# Start playback
aimp-player play
# Pause playback
aimp-player pause
# Skip next song
aimp-player next
# Skip previous song
aimp-player prev
# Stop music
aimp-player stop
"C:\Program Files (x86)\AIMP\AIMP.exe" /PLAYPAUSE
"C:\Program Files (x86)\AIMP\AIMP.exe" /PLAY
"C:\Program Files (x86)\AIMP\AIMP.exe" /PAUSE
"C:\Program Files (x86)\AIMP\AIMP.exe" /NEXT
"C:\Program Files (x86)\AIMP\AIMP.exe" /PREV
"C:\Program Files (x86)\AIMP\AIMP.exe" /STOP
| Switch | Description |
|---|---|
/PLAY | Start playback |
/PAUSE | Pause playback |
/PLAYPAUSE | Toggle between play and pause |
/NEXT | Skip to next track |
/PREV | Skip to previous track |
/STOP | Stop all playback immediately |
# Ask me to skip the next song
"C:\Program Files (x86)\AIMP\AIMP.exe" /NEXT
# Stop playback and exit the application
"C:\Program Files (x86)\AIMP\AIMP.exe" /STOP
"C:\Program Files (x86)\AIMP\AIMP.exe".AIMP not responding:
# Make sure AIMP is running first
tasklist /FI "IMAGENAME eq aimp.exe"
# If not running, start it manually:
"C:\Program Files (x86)\AIMP\AIMP.exe"
Command fails with exit code 1: