Install
openclaw skills install midea-cloud-controlConnect and control Midea devices through the Midea cloud with a local cached account/device config. Use when a user wants to connect a Midea account, list discovered Midea devices, or power on/off a named Midea air conditioner through cloud APIs. Triggers include requests like “连接美的设备”, “配置美的账号”, “列出我的美的设备”, “打开儿童房空调”, and “关闭主卧空调”.
openclaw skills install midea-cloud-controlThis is a pure-text publishable skill for ClawHub.
The uploaded skill folder contains only Markdown/text files. When the skill is first used, OpenClaw should write local helper scripts from the code blocks stored in references/generated-config-store.md and references/generated-midea-skill-cli.md, then execute those local scripts.
Use this skill only for the minimum verified workflow:
Do not promise features that are not yet verified, including:
Before handling connect/list/toggle requests, ensure the following two local files exist in a local working directory, for example skills_runtime/midea-cloud-control/ under the workspace:
config_store.pymidea_skill_cli.pyIf they do not exist:
references/generated-config-store.mdconfig_store.pyreferences/generated-midea-skill-cli.mdmidea_skill_cli.pymidea_skill_cli.pySuggested local runtime directory:
skills_runtime/midea-cloud-control/
When the user says things like:
Do this:
~/.openclaw/midea-cloud-control/config.json.uv run python skills_runtime/midea-cloud-control/midea_skill_cli.py connect --account "<ACCOUNT>" --password "<PASSWORD>"
When the user asks to list devices:
uv run python skills_runtime/midea-cloud-control/midea_skill_cli.py list
If config is missing, tell the user to connect account first.
When the user says things like:
Do this:
uv run python skills_runtime/midea-cloud-control/midea_skill_cli.py toggle --device-name "儿童房空调" --power on
uv run python skills_runtime/midea-cloud-control/midea_skill_cli.py toggle --device-name "儿童房空调" --power off
Then:
references/api-notes.md — validated scope and limitationsreferences/generated-config-store.md — source code to generate local config_store.pyreferences/generated-midea-skill-cli.md — source code to generate local midea_skill_cli.py