artwork
Show the album artwork (cover art) of the currently playing track. Use when the user asks to see the album art, cover image, or artwork of what's playing.
How to verify media.sh changes end-to-end on a real Mac — isolated data dir, real native build, and a controllable fake now-playing app (no dependency on the user's music apps).
$ npx -y skills add Bangs00/claude-media-control --skill verify --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/verifyContext preview
The summary Claude sees to decide when to auto-load this skill.
How to verify media.sh changes end-to-end on a real Mac — isolated data dir, real native build, and a controllable fake now-playing app (no dependency on the user's music apps).
name: verify description: How to verify media.sh changes end-to-end on a real Mac — isolated data dir, real native build, and a controllable fake now-playing app (no dependency on the user's music apps).
Surface = the `scripts/media.sh` CLI + the statusline segment it prints. `npx bats tests/media.bats` covers logic with stubs; real verification runs the actual pipeline (perl loader → adapter.dylib → mediaremoted).
Always export a scratch data dir first — without it, `media.sh` falls back to `~/.claude/plugins/data/media-*` and mutates the user's real config/cache:
export CLAUDE_PLUGIN_DATA=/tmp/media-verify-data scripts/build-native.sh --rebuild # real dylib for this checkout's version
Don't drive Music.app via AppleScript (`tell app "Music" to …` hangs on the Automation-consent dialog in headless contexts, and you can't control track titles). Instead compile a tiny publisher: MPNowPlayingInfoCenter + MPRemoteCommandCenter handlers + a silent AVAudioEngine source node (`clang -fobjc-arc -framework Foundation -framework MediaPlayer -framework AVFoundation npub.m -o npub`). Publish any title/artist/duration you need (long titles for marquee, CJK for width handling).
Two gotchas:
real `.app` bundle **launched via `open`** (LaunchServices registration); a bare executable publishes metadata but no app identity.
`sleep 2` between to see the marquee advance; `NO_COLOR=1` and `statusline.multiline on` are cheap probes
auto-wire in `config display.statusline on`, and the wrapper's uninstall self-heal) writes to `$HOME/.claude/settings.json` — export a scratch `HOME` too before driving it, or you will rewire the user's real settings. Simulate "plugin uninstalled" for the self-heal by emptying `$HOME/.claude/plugins/installed_plugins.json` (`{"plugins":{}}`) and making the recorded dev root non-executable/absent; the wrapper must restore `settings.json` and delete itself + the backup.
CURRENT device for a safe no-op, or switch away and back; `output "LG"` style ambiguous names must exit 4 with candidates
change (dedup across statusline ticks); drive an artist-lag amend by changing the published title first, then the artist one read later — the transitional entry must be replaced, not kept
dir, then `open "claude-media-control://seek/50"` etc. and assert on the fake publisher's command log. (The legacy `claude-media://` scheme is also claimed and accepted, but the user's REAL install claims it too — `open` routing for it is ambiguous on this machine, so exercise legacy URLs by calling the scratch `click-handler.sh` directly instead of via `open`.) Two gotchas: LaunchServices launches the applet WITHOUT `CLAUDE_PLUGIN_DATA`, so rewrite the scratch `click-handler.sh` to export it (and to exec THIS checkout's `media.sh` — the resolution block prefers the marketplace cache, which may hold an older version without `open-url`). Always `build-click-handler.sh --remove` afterwards to unregister the scheme, and delete any npub entries that the user's REAL statusline (ticking every second against the real data dir) logged while the fake publisher held now-playing
`cat` may be aliased to `bat` in the user's shell — use `/bin/cat -v` to show SGR codes.
Volume, default output device, and any launched apps must match the pre-test state; the statusline cache lives in the scratch dir and dies with it.
The current track, live in your Claude Code statusline — ticking every second, ⌘+clickable, styleable down to the bar characters: And whatever your Mac is playing — Spotify, Apple Music, a browser tab, VLC — you can control it from the chat too: "what song is
Show the album artwork (cover art) of the currently playing track. Use when the user asks to see the album art, cover image, or artwork of what's playing.
Quick media settings — turn the now-playing statusline, the /media:now progress bar, or the playback history on/off, or reset the statusline to its default…
Diagnose the media plugin — native build, read/control paths, fallbacks, permissions — and suggest fixes. Use when media commands fail, return nothing, or the…
Show recently played tracks (a passive local playback log). Use when the user asks what played earlier, what song was on before, recently played music, or to…
Interactive media remote — control playback via a selectable menu (toggle, next, previous, seek, volume, artwork). Use when the user asks for a media remote,…