# Send Devialet Speaker Control 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": "devialet",
    "name": "Devialet Speaker Control",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/JGM2025/devialet",
    "canonicalUrl": "https://clawhub.ai/JGM2025/devialet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/devialet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devialet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/api.md",
      "scripts/devialet.sh",
      "scripts/play-on-devialet.sh",
      "scripts/spotify.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "devialet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T13:09:29.594Z",
      "expiresAt": "2026-05-09T13:09:29.594Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devialet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=devialet",
        "contentDisposition": "attachment; filename=\"devialet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "devialet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/devialet"
    },
    "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/devialet",
    "downloadUrl": "https://openagent3.xyz/downloads/devialet",
    "agentUrl": "https://openagent3.xyz/skills/devialet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/devialet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/devialet/agent.md"
  }
}
```
## Documentation

### Devialet Speaker Control

Control Devialet speakers (Phantom, Mania) over your local network with Spotify integration.

### Natural Language Commands

When the user says things like:

"Play Nines - Lick Shots on my speaker" → Search and play via Spotify
"Set speaker volume to 40" → Adjust volume
"Pause the music" → Pause playback
"What's playing?" → Check current track and status

### Setup

Find your speaker's IP address (check router or Devialet app)
Set the DEVIALET_IP environment variable, or add to TOOLS.md:
## Devialet Speaker
- IP: 192.168.x.x


For Spotify integration: install Spotify desktop app, playerctl, and xdotool

### Quick Usage

# Set your speaker IP
export DEVIALET_IP="192.168.x.x"

# Play a song (search and play)
./scripts/play-on-devialet.sh "Drake - God's Plan"

# Play by Spotify URI
./scripts/play-on-devialet.sh spotify:track:4YZNJOA9d8wiO5ELNY5WxC

# Pause / Resume
./scripts/play-on-devialet.sh pause
./scripts/play-on-devialet.sh resume

# Volume
./scripts/play-on-devialet.sh volume 50

# Status
./scripts/play-on-devialet.sh status

### Requirements

Devialet speaker with DOS 2.14+ or SDOS 1.3+ firmware
Spotify integration (optional):

Spotify desktop app running and logged in
playerctl and xdotool installed (sudo apt install playerctl xdotool)
Speaker set as Spotify Connect device (select once in Spotify app)

### How It Works

Searches for track via Spotify desktop app (D-Bus/MPRIS)
Opens track URI in Spotify
Spotify Connect streams to Devialet
Devialet API controls playback/volume

### Direct Devialet API

For non-Spotify control (replace $DEVIALET_IP with your speaker's IP):

# Volume (0-100)
curl -X POST -H "Content-Type: application/json" \\
  -d '{"volume": 50}' \\
  "http://$DEVIALET_IP/ipcontrol/v1/systems/current/sources/current/soundControl/volume"

# Play/Pause
curl -X POST "http://$DEVIALET_IP/ipcontrol/v1/groups/current/sources/current/playback/play"
curl -X POST "http://$DEVIALET_IP/ipcontrol/v1/groups/current/sources/current/playback/pause"

# Mute/Unmute
curl -X POST "http://$DEVIALET_IP/ipcontrol/v1/groups/current/sources/current/playback/mute"
curl -X POST "http://$DEVIALET_IP/ipcontrol/v1/groups/current/sources/current/playback/unmute"

# Get status
curl -s "http://$DEVIALET_IP/ipcontrol/v1/devices/current" | jq .

### Supported Models

Phantom I, Phantom II, Phantom Reactor (DOS 2.14+)
Dialog
Mania (SDOS 1.3+)

### API Reference

See references/api.md for complete endpoint documentation.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JGM2025
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T13:09:29.594Z
- Expires at: 2026-05-09T13:09:29.594Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/devialet)
- [Send to Agent page](https://openagent3.xyz/skills/devialet/agent)
- [JSON manifest](https://openagent3.xyz/skills/devialet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/devialet/agent.md)
- [Download page](https://openagent3.xyz/downloads/devialet)