# Send Homey - Home Automation 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": "homey-cli",
    "name": "Homey - Home Automation",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/KrauseFx/homey-cli",
    "canonicalUrl": "https://clawhub.ai/KrauseFx/homey-cli",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/homey-cli",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=homey-cli",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "homey-cli",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T04:13:13.843Z",
      "expiresAt": "2026-05-11T04:13:13.843Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=homey-cli",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=homey-cli",
        "contentDisposition": "attachment; filename=\"homey-cli-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "homey-cli"
      },
      "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/homey-cli"
    },
    "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/homey-cli",
    "downloadUrl": "https://openagent3.xyz/downloads/homey-cli",
    "agentUrl": "https://openagent3.xyz/skills/homey-cli/agent",
    "manifestUrl": "https://openagent3.xyz/skills/homey-cli/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/homey-cli/agent.md"
  }
}
```
## Documentation

### Homey CLI

Safe, agent-friendly CLI for controlling Homey home automation hubs.

### What This Skill Provides

Device control: Turn devices on/off, dim lights, change colors, set temperatures
Device inspection: List devices, check status, read capabilities
Zone management: List zones and devices per zone
Flow control: List and trigger flows
Inventory: Get complete hub overview

### 1. Install Dependencies

cd skills/homey-cli
npm install

### 2. Create Homey App Credentials

Go to https://tools.developer.homey.app/tools/app
Create a new app with:

Callback URL: http://localhost:8787/callback
Note your Client ID and Client Secret

### 3. Configure Environment

Create .env file:

export HOMEY_CLIENT_ID="your-client-id"
export HOMEY_CLIENT_SECRET="your-client-secret"
export HOMEY_REDIRECT_URL="http://localhost:8787/callback"

### 4. Login

bash run.sh auth login

Follow the OAuth flow in your browser. Tokens are stored in ~/.config/homey-cli/.

### List Homeys

bash run.sh homey list

### Select Active Homey

bash run.sh homey use <homeyId>

### Device Operations

# List all devices
bash run.sh devices list

# List devices as JSON
bash run.sh devices list --json

# Get specific device
bash run.sh devices get <deviceId>

# Read capability value
bash run.sh devices read <deviceId> onoff

# Control devices
bash run.sh devices on <deviceId>
bash run.sh devices off <deviceId>
bash run.sh devices dim <deviceId> 0.4
bash run.sh devices color <deviceId> #FF8800
bash run.sh devices temperature <deviceId> 21.5

### Flow Operations

# List flows
bash run.sh flows list

# Trigger flow
bash run.sh flows trigger <flowId>

### Complete Inventory

bash run.sh inventory --json

### Safety Model

Write operations are capability-allowlisted for safety:

Default allowed: onoff, dim, light_hue, light_saturation, light_temperature, target_temperature
Override via: export HOMEY_CLI_ALLOWED_CAPABILITIES=onoff,dim,target_temperature

Destructive operations (delete devices, modify flows, change app settings) are not supported.

### Common Queries

When users ask:

"Turn on the kitchen lights" → List devices, find match, use devices on <deviceId>
"Dim living room to 50%" → Find device, use devices dim <deviceId> 0.5
"What's the temperature in the bedroom?" → Find device, use devices read <deviceId> measure_temperature
"List all my lights" → Use devices list --json and filter by class/capabilities

### Configuration Storage

Tokens: ~/.config/homey-cli/credentials.json
Active Homey: ~/.config/homey-cli/config.json

### Troubleshooting

Auth errors: Re-run bash run.sh auth login
Device not found: Check device name/ID with bash run.sh devices list
Capability not allowed: Add to HOMEY_CLI_ALLOWED_CAPABILITIES or check if it's a read-only capability
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: KrauseFx
- 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-04T04:13:13.843Z
- Expires at: 2026-05-11T04:13:13.843Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/homey-cli)
- [Send to Agent page](https://openagent3.xyz/skills/homey-cli/agent)
- [JSON manifest](https://openagent3.xyz/skills/homey-cli/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/homey-cli/agent.md)
- [Download page](https://openagent3.xyz/downloads/homey-cli)