Home Music Enhanced
AdvisoryAudited by Static analysis on May 12, 2026.
Overview
No suspicious patterns detected.
Findings (0)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Running a scene can connect or disconnect speakers and change playback volume across the home.
The script runs local AppleScript commands to control Airfoil speakers. This is expected for a macOS music-routing skill, but it does change local application and device state.
osascript -e "tell application \"Airfoil\" to connect to (first speaker whose name is \"$speaker\")" 2>/dev/null || true
Install only if you expect this local automation, and review or adjust the speaker names and volume levels before using party or whole-house scenes.
If the helper path points to an unexpected or modified script, the skill would run that local script when controlling Spotify.
The skill delegates Spotify control to a hard-coded helper script path outside this package. That helper is purpose-aligned, but its code is not included in the provided artifacts.
SPOTIFY_CMD="/Users/asteinberger/clawd/skills/spotify-applescript/spotify.sh"
Verify the spotify-applescript helper before use and change the path to a trusted local installation under your own account.
The home-music command will remain available system-wide until the symlink is removed or changed.
The installation instructions ask the user to create a persistent global command symlink in a privileged directory. This is a common CLI setup pattern and is user-directed, but it should be done knowingly.
sudo ln -sf ~/clawd/skills/home-music/home-music.sh /usr/local/bin/home-music
Only run the sudo symlink command after reviewing the script, and remove the symlink if you no longer want the command installed globally.
