← 返回 Skills 市场
leroylim

Daikin Aircon Controller

作者 Han Yong Lim · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
194
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install daikin-aircon
功能描述
Control Daikin air conditioners over WiFi. Use when the user wants to control their Daikin AC units - turn on/off, set temperature, mode, fan speed, swing, o...
使用说明 (SKILL.md)

Daikin Aircon Controller

This skill controls Daikin air conditioners over local WiFi. It supports multiple devices, automatic discovery, full control, and multi-location setups.

Device Lookup

When user specifies a device, match in this order:

  1. Exact match on id (case-insensitive, spaces→hyphens)
  2. Exact match on name (case-insensitive)
  3. Fuzzy match (ignore spaces/hyphens)

If multiple matches found: Ask user to specify location (e.g., "Which one? 'bedroom' at home or beach-house?")

Duplicate Devices (Same Name, Different Locations)

Same device ID/name is allowed in different locations:

  • living-room @ home
  • living-room @ beach-house

The unique key is locationId:id. When adding, error only if same location + same ID exists.

Adding Devices - Setup Flow

Follow this step-by-step when user wants to add a device:

Step 1: Required Info

Ask for:

  • Device name: e.g., "Living Room", "Bedroom", "Master Bedroom"
  • IP address: e.g., "192.168.1.100"

Step 2: Optional - Multiple Houses?

Ask: "Do you have multiple houses/locations? (e.g., home, beach-house, office)"

  • If yes → Ask for location name (e.g., "Family Home", "Beach House")
  • Auto-generate locationId from location name (lowercase, spaces→hyphens)

Step 3: Optional - Multiple ACs in Same Room?

Ask: "Do you have multiple ACs in the same room?"

  • If yes → Append to device name (e.g., "Living Room - Ceiling", "Living Room - Floor")

Step 4: Optional - Device Type

Ask: "Do you know your device type?"

  • Options: BRP069, BRP072C, BRP084, AirBase, SkyFi
  • If BRP072C → Ask for API key (printed on adapter inside unit)
  • If SkyFi → Ask for password

Step 5: Verify & Add

Show summary, confirm with user, then call daikin_add.

Device Management

Adding a Device

  1. Discovery - Scan network: "discover daikin devices" → shows found devices
  2. Manual - "add living room AC at 192.168.1.100"

Device Types

Type Description Authentication
brp069 Standard WiFi adapter None
brp072C WiFi adapter with HTTPS API key required
brp084 Firmware 2.8.0+ adapters None
airbase Devices with zone support None
skyfi Legacy SkyFi devices Password required

Finding the API Key (BRP072C)

For BRP072C devices, the API key is printed inside the unit:

  1. Remove front grille from indoor unit
  2. Find circuit board with WiFi adapter
  3. API key is on a label

Available Tools

Discovery & Management

  • daikin_discover: Scan network for Daikin devices (UDP broadcast). Returns IP, MAC, name.

  • daikin_list: List all configured devices with names, IPs, locations, status.

  • daikin_add: Add new device. Parameters:

    • name (required): Display name (e.g., "Living Room")
    • ip (required): IP address
    • locationId (optional): Location key (e.g., "home", "beach-house")
    • locationName (optional): Location display (e.g., "Family Home")
    • type (optional): Device type
    • key (optional): API key for BRP072C
    • password (optional): Password for SkyFi
  • daikin_remove: Remove device. If duplicate names exist, use locationId to specify.

  • daikin_update: Update device settings (IP, name, type, key, location).

  • daikin_set_default: Set default device for commands.

Status & Control

All control tools accept optional device and locationId parameters. If only one device matches, use it automatically.

  • daikin_status: Get status (power, mode, temp, fan, etc.)

  • daikin_power: Turn on/off.

    • device: Device name
    • locationId: Location (if needed)
    • power: "on" or "off"
  • daikin_mode: Set mode.

    • mode: "auto", "cool", "heat", "dry", "fan"
  • daikin_temperature: Set target temp (10-32°C, use decimal like 22.5).

  • daikin_fan: Set fan speed ("auto", "silence", "1"-"5").

  • daikin_swing: Set swing ("off", "vertical", "horizontal", "3d").

  • daikin_powerful: Toggle powerful mode.

  • daikin_econo: Toggle econo mode.

  • daikin_streamer: Toggle streamer air purifier.

  • daikin_holiday: Toggle holiday/away mode.

Usage Examples

First Time Setup

User: Set up my Daikin AC
Agent: Let's add your AC! What's a name for it? (e.g., living-room, bedroom)
User: Living room
Agent: What's the IP address?
User: 192.168.1.101
Agent: Do you have multiple houses or locations?
User: Yes, at the beach
Agent: What's the location name? (e.g., Beach House)
User: Beach House
Agent: Adding "Living Room" at 192.168.1.101 (Beach House)... Done!

Multi-Location

User: Add bedroom at the beach house too
Agent: What's the IP for the beach house bedroom?
User: 192.168.1.201
Agent: Adding "Bedroom" at 192.168.1.201 (Beach House)... Done!

User: Turn off bedroom
Agent: You have "bedroom" at both "Family Home" and "Beach House". Which one?
User: Beach house
Agent: Turning off Bedroom at Beach House...

Controlling Devices

User: Set living room to 22 degrees
Agent: [Sets Living Room to 22°C]

User: Turn off
Agent: [Turns off default device]

User: What's the temperature in bedroom?
Agent: [Shows bedroom status - if multiple, asks which location]

Temperature Format

  • ✅ Correct: "22.5", "23.0"
  • ❌ May not work: "22"

Troubleshooting

  • Device not found: Check IP, ensure same network subnet
  • Connection timeout: Verify IP with ping
  • Authentication failed: Check API key (BRP072C)
  • Multiple matches: Specify location with locationId

State

Configuration stored in data/devices.json. Persists across sessions.

安全使用建议
This skill appears to do what it says: it discovers Daikin devices on your local network (UDP broadcast), stores device entries (including optional API keys/passwords) in a local JSON file, and uses the daikin-ts library to control units. Before installing: 1) consider that the skill needs network access (it will broadcast on your LAN to find devices) and filesystem access (it writes data/devices.json). 2) Understand that any API keys or passwords you enter are stored in plaintext under the skill directory — protect access to that filesystem or avoid storing highly sensitive credentials there. 3) The skill's source is listed as unknown; if you do not trust the author, review the code (or run in an isolated environment) before enabling. 4) The dependency daikin-ts is used — verify that package provenance and version meet your security policy. If you accept local-network discovery and local storage of keys, the components and permissions here are proportionate to the stated purpose.
功能分析
Type: OpenClaw Skill Name: daikin-aircon Version: 1.0.0 The Daikin Aircon skill is a legitimate tool for managing and controlling Daikin air conditioning units over a local network. It implements device discovery via UDP broadcast, local configuration management in 'data/devices.json', and comprehensive control features using the 'daikin-ts' library. While it handles sensitive information like device API keys and passwords, these are stored locally and used solely for authenticating with the AC units as described in the documentation (SKILL.md and README.md). No evidence of data exfiltration, malicious execution, or harmful prompt injection was found.
能力评估
Purpose & Capability
Name/description, required permissions (network, fs), and code (discovery, device management, control) align: the skill discovers devices via UDP, stores device config locally, and uses daikin-ts to talk to devices. No unrelated credentials, binaries, or external services are requested.
Instruction Scope
SKILL.md and code stay within the domain of local device management and control. The skill asks users to provide device IPs and (for some adapters) API keys or passwords. It also instructs physically opening a unit to find a printed API key (documented). Note: the skill stores API keys/passwords in a local JSON file (data/devices.json) — this is functional but means secrets are stored in plaintext on disk.
Install Mechanism
No install spec is included (instruction-only install), and the code lists a single npm dependency (daikin-ts). Nothing is downloaded from arbitrary URLs or executed from unknown hosts.
Credentials
The skill requests no environment variables or external credentials. It does persist device API keys/passwords to a local file under the skill's data directory, which is expected for this functionality but may be sensitive; users should be aware those secrets live in plaintext unless they change file protections.
Persistence & Privilege
always is false and the skill persists only its own configuration to data/devices.json. It requests normal network and filesystem permissions appropriate to discovery and local config storage and does not attempt to modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install daikin-aircon
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /daikin-aircon 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Daikin Aircon Skill v1.0.0 - Initial release allowing control of Daikin air conditioners over local WiFi. - Supports setup, management, and control of multiple Daikin AC devices across several locations. - Device discovery, add, remove, and update functions included, with step-by-step setup guidance. - Full command set for power, mode, temperature, fan, swing, and special features (econo, powerful, etc.). - Intelligent handling of duplicate device names via location IDs. - Configuration persists across sessions for convenience.
元数据
Slug daikin-aircon
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Daikin Aircon Controller 是什么?

Control Daikin air conditioners over WiFi. Use when the user wants to control their Daikin AC units - turn on/off, set temperature, mode, fan speed, swing, o... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 194 次。

如何安装 Daikin Aircon Controller?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install daikin-aircon」即可一键安装,无需额外配置。

Daikin Aircon Controller 是免费的吗?

是的,Daikin Aircon Controller 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Daikin Aircon Controller 支持哪些平台?

Daikin Aircon Controller 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Daikin Aircon Controller?

由 Han Yong Lim(@leroylim)开发并维护,当前版本 v1.0.0。

💬 留言讨论