โ† All skills
Tencent SkillHub ยท Developer Tools

Dyson Fan Control

Control Dyson air purifiers, fans, and heaters via local MQTT. Use when asked to control Dyson devices, adjust fan speed, set temperature/heat, enable oscillation, or check room temperature/humidity. Requires being on the same WiFi network as the device.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Control Dyson air purifiers, fans, and heaters via local MQTT. Use when asked to control Dyson devices, adjust fan speed, set temperature/heat, enable oscillation, or check room temperature/humidity. Requires being on the same WiFi network as the device.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, pyproject.toml, src/dyson_cli/__init__.py, src/dyson_cli/cli.py, src/dyson_cli/config.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Prerequisites

CLI installed at ~/dyson-cli with venv Must be on same WiFi as the Dyson - local MQTT only, won't work remotely Quick check: cd ~/dyson-cli && source .venv/bin/activate && dyson list --check

Power

dyson on # Turn on dyson off # Turn off

Fan Control

dyson fan speed 5 # Speed 1-10 dyson fan speed auto # Auto mode dyson fan oscillate on # Enable oscillation dyson fan oscillate on -a 90 # 90ยฐ sweep (45/90/180/350) dyson fan oscillate off # Disable oscillation

Heat Control (Hot+Cool models)

dyson heat on # Enable heating dyson heat off # Disable heating dyson heat target 22 # Set target temp (ยฐC)

Other

dyson night on # Night mode on dyson night off # Night mode off dyson status # Show current state dyson status --json # JSON output

Multiple Devices

Use -d <name> to target a specific device: dyson on -d "Bedroom" dyson fan speed auto -d "Office"

Common Patterns

# "Turn on the Dyson and set to auto" dyson on && dyson fan speed auto # "Heat to 23 degrees" dyson heat on && dyson heat target 23 # "Turn on with gentle oscillation" dyson on && dyson fan speed 3 && dyson fan oscillate on -a 45 # "What's the current temperature?" dyson status --json | python3 -c "import sys,json; d=json.load(sys.stdin); print(f\"Temp: {d['temperature']-273:.1f}ยฐC, Humidity: {d['humidity']}%\")"

Troubleshooting

If commands fail: Check device is online: dyson list --check Ensure on same WiFi network as the Dyson Re-run setup if credentials expired: dyson setup For installation, device setup, and full documentation, see README.md.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts2 Docs1 Files
  • SKILL.md Primary doc
  • README.md Docs
  • src/dyson_cli/__init__.py Scripts
  • src/dyson_cli/cli.py Scripts
  • src/dyson_cli/config.py Scripts
  • pyproject.toml Files