Skip to content
Automation
Skill

/verify

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).

From plugin
media
416 skills1 hook
Install
$ npx -y skills add Bangs00/claude-media-control --skill verify --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/verify

Context 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).

SKILL.md

verify.SKILL.md
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).

Verifying claude-media-control

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).

Isolate from the user's live install

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

Publish a controllable now-playing track

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:

  • `appName`/`bundleIdentifier` only appear when the publisher runs from a

real `.app` bundle **launched via `open`** (LaunchServices registration); a bare executable publishes metadata but no app identity.

  • Kill it with `pkill -f <name>`; `media.sh now` must return `null` after.

What to drive

  • `media.sh now` — JSON incl. `outputDevice`, `appName`
  • `media.sh statusline` after `config display.statusline on` — run twice with

`sleep 2` between to see the marquee advance; `NO_COLOR=1` and `statusline.multiline on` are cheap probes

  • Statusline **wiring** (`statusline install/uninstall/status`, the

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.

  • `media.sh output` / `output "<substring>"` / `output <n>` — switch to the

CURRENT device for a safe no-op, or switch away and back; `output "LG"` style ambiguous names must exit 4 with candidates

  • `media.sh history` / `history --json` — entries appear only on track

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

  • **cmd+click round-trip** — `build-click-handler.sh` in the scratch data

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

  • `media.sh doctor` — check the `Output dev` line and `verdict:`

`cat` may be aliased to `bat` in the user's shell — use `/bin/cat -v` to show SGR codes.

Restore

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.

Read more
Ships withmedia

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

Get the whole plugin
Stats
4
Stars
0
Forks
Maintained
Maintenance
Shell
Language
MIT
License
2mo ago
Last commit
2mo ago
Created

Repo: Bangs00/claude-media-control

Other skills on media.

artwork
Skill

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.

@bangs00@bangs00View Skill
config
Skill

config

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…

@bangs00@bangs00View Skill
doctor
Skill

doctor

Diagnose the media plugin — native build, read/control paths, fallbacks, permissions — and suggest fixes. Use when media commands fail, return nothing, or the…

@bangs00@bangs00View Skill
history
Skill

history

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…

@bangs00@bangs00View Skill
menu
Skill

menu

Interactive media remote — control playback via a selectable menu (toggle, next, previous, seek, volume, artwork). Use when the user asks for a media remote,…

@bangs00@bangs00View Skill