macos-tv
Installation
SKILL.md
macOS TV Skill
Control and query Apple TV.app on macOS using AppleScript (osascript).
Playback Controls
# Play / pause / stop
osascript -e 'tell application "TV" to play'
osascript -e 'tell application "TV" to pause'
osascript -e 'tell application "TV" to playpause'
osascript -e 'tell application "TV" to stop'
# Next / previous track
osascript -e 'tell application "TV" to next track'
osascript -e 'tell application "TV" to previous track'