# Send Airfoil to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "airfoil",
    "name": "Airfoil",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/asteinberger/airfoil",
    "canonicalUrl": "https://clawhub.ai/asteinberger/airfoil",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/airfoil",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=airfoil",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "airfoil.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/airfoil"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/airfoil",
    "downloadUrl": "https://openagent3.xyz/downloads/airfoil",
    "agentUrl": "https://openagent3.xyz/skills/airfoil/agent",
    "manifestUrl": "https://openagent3.xyz/skills/airfoil/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/airfoil/agent.md"
  }
}
```
## Documentation

### 🔊 Airfoil Skill

╔═══════════════════════════════════════════════════════════╗
    ║                                                           ║
    ║   🎵  A I R F O I L   S P E A K E R   C O N T R O L  🎵  ║
    ║                                                           ║
    ║        Stream audio to any AirPlay speaker                ║
    ║              from your Mac via CLI                        ║
    ║                                                           ║
    ╚═══════════════════════════════════════════════════════════╝

"Why hop to your Mac when you can croak at it?" 🐸

### 📖 What Does This Skill Do?

The Airfoil Skill gives you full control over your AirPlay speakers directly from the terminal – or through Clawd! Connect speakers, control volume, check status – all without touching the mouse.

Features:

📡 List — Show all available speakers
🔗 Connect — Connect to a speaker
🔌 Disconnect — Disconnect from a speaker
🔊 Volume — Control volume (0-100%)
📊 Status — Show connected speakers with volume levels

### ⚙️ Requirements

WhatDetailsOSmacOS (uses AppleScript)AppAirfoil by Rogue AmoebaPrice$35 (free trial available)

### Installation

Install Airfoil:
# Via Homebrew
brew install --cask airfoil

# Or download from rogueamoeba.com/airfoil/mac/



Launch Airfoil and grant Accessibility permissions (System Settings → Privacy & Security → Accessibility)


Skill is ready! 🚀

### list — Show All Speakers

./airfoil.sh list

Output:

Computer, Andy's M5 Macbook, Sonos Move, Living Room TV

### connect <speaker> — Connect to Speaker

./airfoil.sh connect "Sonos Move"

Output:

Connected: Sonos Move

💡 Speaker name must match exactly (case-sensitive!)

### disconnect <speaker> — Disconnect Speaker

./airfoil.sh disconnect "Sonos Move"

Output:

Disconnected: Sonos Move

### volume <speaker> <0-100> — Set Volume

# Set to 40%
./airfoil.sh volume "Sonos Move" 40

# Set to maximum
./airfoil.sh volume "Living Room TV" 100

# Quiet mode for night time
./airfoil.sh volume "Sonos Move" 15

Output:

Volume Sonos Move: 40%

### status — Show Connected Speakers

./airfoil.sh status

Output:

Sonos Move: 40%
Living Room TV: 65%

Or if nothing is connected:

No speakers connected

### 🏠 "Music in the Living Room"

./airfoil.sh connect "Sonos Move"
./airfoil.sh volume "Sonos Move" 50
# → Now fire up Spotify/Apple Music and enjoy!

### 🎬 "Movie Night Setup"

./airfoil.sh connect "Living Room TV"
./airfoil.sh volume "Living Room TV" 70
./airfoil.sh disconnect "Sonos Move"  # If still connected

### 🌙 "All Off"

for speaker in "Sonos Move" "Living Room TV"; do
    ./airfoil.sh disconnect "$speaker" 2>/dev/null
done
echo "All speakers disconnected 🌙"

### ❌ "Speaker Not Found"

Problem: execution error: Airfoil got an error: Can't get speaker...

Solutions:

Check exact spelling: ./airfoil.sh list
Speaker name is case-sensitive ("sonos move" ≠ "Sonos Move")
Speaker must be on the same network
Speaker must be powered on and reachable

### ❌ "Airfoil Won't Start / No Permission"

Problem: AppleScript can't control Airfoil

Solutions:

System Settings → Privacy & Security → Accessibility
Add Terminal (or iTerm)
Add Airfoil
Restart macOS (sometimes necessary 🙄)

### ❌ "Volume Doesn't Work"

Problem: Volume command has no effect

Solutions:

Speaker must be connected before volume can be set
First connect, then volume
Some speakers have hardware-side limits

### ❌ "Airfoil Not Installed"

Problem: execution error: Application isn't running

Solution:

# Start Airfoil
open -a Airfoil

# Or install it
brew install --cask airfoil

### ❌ "bc: command not found"

Problem: Volume calculation fails

Solution:

# Install bc (should be standard on macOS)
brew install bc

### 📋 Known Speakers

These speakers have been tested:

SpeakerTypeNotesComputerLocalAlways availableAndy's M5 MacbookMacWhen on the networkSonos MoveSonosBluetooth or WiFiLiving Room TVApple TVVia AirPlay

💡 Use ./airfoil.sh list to discover your own speakers!

### 🔗 Integration with Clawd

This skill works perfectly with Clawd! Examples:

"Hey Clawd, connect the Sonos Move"
→ ./airfoil.sh connect "Sonos Move"

"Turn the music down"
→ ./airfoil.sh volume "Sonos Move" 30

"Which speakers are on?"
→ ./airfoil.sh status

### 📜 Changelog

VersionDateChanges1.0.02025-01-25Initial release1.1.02025-06-10Documentation polished 🐸1.2.02025-06-26Translated to English, ClawdHub-ready!

### 🐸 Credits

@..@
 (----)
( >__< )   "This skill was crafted with love
 ^^  ^^     by a frog and his human!"

Author: Andy Steinberger (with help from his Clawdbot Owen the Frog 🐸)
Powered by: Airfoil by Rogue Amoeba
Part of: Clawdbot Skills Collection

Made with 💚 for the Clawdbot Community

Ribbit! 🐸
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: asteinberger
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/airfoil)
- [Send to Agent page](https://openagent3.xyz/skills/airfoil/agent)
- [JSON manifest](https://openagent3.xyz/skills/airfoil/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/airfoil/agent.md)
- [Download page](https://openagent3.xyz/downloads/airfoil)