skills$openclaw/winamp
jage97.9k

by jage9

winamp – OpenClaw Skill

winamp is an OpenClaw Skills integration for data analytics workflows. Control Winamp on Windows (Native or WSL2) or Linux (via Wine).

7.9k stars2.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namewinamp
descriptionControl Winamp on Windows (Native or WSL2) or Linux (via Wine). OpenClaw Skills integration.
ownerjage9
repositoryjage9/winamp
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @jage9/winamp
last updatedFeb 7, 2026

Maintainer

jage9

jage9

Maintains winamp in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
276 B
SKILL.md
1.7 KB
SKILL.md

name: winamp description: Control Winamp on Windows (Native or WSL2) or Linux (via Wine). metadata: moltbot: requires: bins: ["winamp.exe"]

Winamp CLI

Use this skill to control the Winamp media player.

Executable Paths

Depending on your environment, the path to the Winamp executable will vary:

  • Windows (Native): C:\Program Files (x86)\Winamp\winamp.exe
  • WSL2 (Windows Host): /mnt/c/Program Files (x86)/Winamp/winamp.exe
  • Linux (via Wine): wine "C:\Program Files (x86)\Winamp\winamp.exe"

Common Commands

Playback Control

  • Play: winamp.exe /PLAY
  • Pause/Unpause: winamp.exe /PAUSE
  • Stop: winamp.exe /STOP
  • Next Track: winamp.exe /NEXT
  • Previous Track: winamp.exe /PREV

Managing Playlists

  • Play File (Clear Queue): winamp.exe "C:\path\to\file.mp3"
  • Enqueue File/Folder: winamp.exe /ADD "C:\path\to\file.mp3"
  • Play Playlist: winamp.exe "C:\path\to\playlist.m3u"

Advanced Switches

  • New Instance: winamp.exe /NEW (Forces a new window)
  • Specific Instance: winamp.exe /CLASS="MyClassName" (Target a specific window)
  • Config Dir: winamp.exe /INIDIR="C:\path\to\dir" (Use specific settings)

Execution Note (Backgrounding)

Since Winamp is a GUI application, always run it in the background to prevent sessions from hanging. The command will execute as soon as it is sent.

Moltbot exec Usage:

Set background: true in your tool call.

{
  "tool": "exec",
  "command": "\"/mnt/c/Program Files (x86)/Winamp/winamp.exe\" \"C:\\path\\to\\file.mp3\"",
  "background": true
}

CLI Usage:

Append an ampersand (&) to the command.

"/mnt/c/Program Files (x86)/Winamp/winamp.exe" /PLAY &
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install winamp?

Run openclaw add @jage9/winamp in your terminal. This installs winamp into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/jage9/winamp. Review commits and README documentation before installing.