355★by forketyfork
managing-apple-music – OpenClaw Skill
managing-apple-music is an OpenClaw Skills integration for security workflows. Control Apple Music on macOS via the `clawtunes` CLI (play songs/albums/playlists, control playback, volume, shuffle, repeat, search, AirPlay). Use when a user asks to play music, search for songs, control audio playback, or manage Apple Music settings.
Skill Snapshot
| name | managing-apple-music |
| description | Control Apple Music on macOS via the `clawtunes` CLI (play songs/albums/playlists, control playback, volume, shuffle, repeat, search, AirPlay). Use when a user asks to play music, search for songs, control audio playback, or manage Apple Music settings. OpenClaw Skills integration. |
| owner | forketyfork |
| repository | forketyfork/clawtunes |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @forketyfork/clawtunes |
| last updated | Feb 7, 2026 |
Maintainer

name: managing-apple-music
description: Control Apple Music on macOS via the clawtunes CLI (play songs/albums/playlists, control playback, volume, shuffle, repeat, search, AirPlay). Use when a user asks to play music, search for songs, control audio playback, or manage Apple Music settings.
homepage: https://github.com/forketyfork/clawtunes
metadata:
{
"openclaw":
{
"emoji": "🎵",
"os": ["darwin"],
"requires": { "bins": ["clawtunes"] },
"install":
[
{
"id": "brew",
"kind": "brew",
"tap": "forketyfork/tap",
"formula": "clawtunes",
"bins": ["clawtunes"],
"label": "Install clawtunes via Homebrew",
},
],
},
}
Apple Music CLI
Use clawtunes to control Apple Music from the terminal. Search and play music, control playback, adjust volume, manage shuffle/repeat, and connect to AirPlay devices.
Setup
- Install (Homebrew):
brew tap forketyfork/tap && brew install clawtunes - Install (pip):
pip install clawtunes - macOS-only; requires Apple Music app.
Play Music
- Play a song:
clawtunes play song "Song Name" - Play an album:
clawtunes play album "Album Name" - Play a playlist:
clawtunes play playlist "Playlist Name" - When multiple matches exist, an interactive numbered menu appears for selection.
Playback Control
- Pause:
clawtunes pause - Resume:
clawtunes resume - Next track:
clawtunes next - Previous track:
clawtunes prev - Show now playing:
clawtunes status
Volume
- Show volume:
clawtunes volume - Set volume:
clawtunes volume 50 - Adjust volume:
clawtunes volume +10orclawtunes volume -10 - Mute:
clawtunes mute - Unmute:
clawtunes unmute
Shuffle and Repeat
- Enable/disable shuffle:
clawtunes shuffle onorclawtunes shuffle off - Set repeat mode:
clawtunes repeat off,clawtunes repeat all, orclawtunes repeat one
Search
- Search songs and albums:
clawtunes search "query" - Include playlists:
clawtunes search "query" -p - Songs only:
clawtunes search "query" --no-albums - Limit results:
clawtunes search "query" -n 20
Love/Dislike
- Love current track:
clawtunes love - Dislike current track:
clawtunes dislike
Playlists
- List all playlists:
clawtunes playlists
AirPlay
- List devices:
clawtunes airplay - Select device:
clawtunes airplay "Device Name" - Deselect device:
clawtunes airplay "Device Name" --off
Notes
- macOS-only (uses AppleScript to communicate with Apple Music).
- If automation permissions are requested, grant access in System Settings > Privacy & Security > Automation.
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 managing-apple-music?
Run openclaw add @forketyfork/clawtunes in your terminal. This installs managing-apple-music 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/forketyfork/clawtunes. Review commits and README documentation before installing.
