# Send Midea Air Conditioners 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. 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

```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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "midea-ac",
    "name": "Midea Air Conditioners",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Iamanorange/midea-ac",
    "canonicalUrl": "https://clawhub.ai/Iamanorange/midea-ac",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/midea-ac",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=midea-ac",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/midea_ac.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "midea-ac",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T15:27:22.030Z",
      "expiresAt": "2026-05-07T15:27:22.030Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=midea-ac",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=midea-ac",
        "contentDisposition": "attachment; filename=\"midea-ac-0.0.3.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "midea-ac"
      },
      "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/midea-ac"
    },
    "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/midea-ac",
    "downloadUrl": "https://openagent3.xyz/downloads/midea-ac",
    "agentUrl": "https://openagent3.xyz/skills/midea-ac/agent",
    "manifestUrl": "https://openagent3.xyz/skills/midea-ac/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/midea-ac/agent.md"
  }
}
```
## Documentation

### Midea Smart Home Control

Control Midea ACs via the msmart.

### How to Use

Skill path: ~/.openclaw/skills/midea_ac

### AC Control Commands

# Navigate to skill directory
cd ~/.openclaw/skills/midea_ac

# Check status
python scripts/midea_ac.py bedroom status

# Turn on/off
python scripts/midea_ac.py bedroom on
python scripts/midea_ac.py bedroom off
python scripts/midea_ac.py bedroom toggle

# Set operation mode
python scripts/midea_ac.py bedroom --mode cool

# Set target temperature
python scripts/midea_ac.py bedroom --temperature 26

# Set fan speed
python scripts/midea_ac.py bedroom --fan_speed low

# Set aux hear mode
python scripts/midea_ac.py bedroom --aux_mode on

# Set multiple parameters at once
python scripts/midea_ac.py bedroom --mode heat --temperature 28 --fan_speed medium --aux_mode off

### Natural Language Understanding

When the user says the following, execute the corresponding command:

User SaysCommandTurn on the <room-name> AC / open ACscripts/midea_ac.py <room-name> onTurn off the <room-name> AC / close <room-name> ACscripts/midea_ac.py <room-name> offToggle the <room-name> ACscripts/midea_ac.py <room-name> toggleWarmer / more warmCheck status first, then increase temperature by 2 - 10 degreesCooler / less heatCheck status first, then decrease temperature by 2 - 10 degreesFull speed / maximumif mode is heat: scripts/midea_ac.py <room-name> --temperature 30 --fan_speed max, if mode is cool: scripts/midea_ac.py <room-name> --temperature 16 --fan_speed maxMinimum speedscripts/midea_ac.py <room-name> --fan_speed low<room-name> AC status / what's the <room-name> statusscripts/midea_ac.py <room-name> status

### Before Executing

Navigate to skill directory: cd ~/.openclaw/skills/midea_ac
Run with uv: python scripts/midea_ac.py <room-name> <command>
Report the result to the user after execution
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Iamanorange
- Version: 0.0.3
## 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-04-30T15:27:22.030Z
- Expires at: 2026-05-07T15:27:22.030Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/midea-ac)
- [Send to Agent page](https://openagent3.xyz/skills/midea-ac/agent)
- [JSON manifest](https://openagent3.xyz/skills/midea-ac/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/midea-ac/agent.md)
- [Download page](https://openagent3.xyz/downloads/midea-ac)