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

### Home Commander — Environment Control

Controls smart home and computing environment via Home Assistant. Manages scene modes, device control, and presence-based actions.

### Data File: data/home-config.json

{
  "scenes": {
    "study": { "lights": { "desk_lamp": { "on": true, "brightness": 100, "color_temp": "cool" } }, "music": { "playlist": "lofi-focus", "volume": 25 }, "other": { "dnd": true } },
    "chill": { "lights": { "desk_lamp": { "on": true, "brightness": 40, "color_temp": "warm" } }, "music": { "playlist": "chill-vibes", "volume": 35 }, "other": {} },
    "sleep": { "lights": {}, "music": { "playlist": "white-noise", "volume": 15 }, "other": {} }
  },
  "devices": {
    "desk_lamp": { "entity_id": "light.desk_lamp", "type": "light" },
    "speaker": { "entity_id": "media_player.room_speaker", "type": "media_player" }
  },
  "home_assistant": { "url": "http://homeassistant.local:8123", "token_env": "HA_TOKEN" }
}

### Scene Activation

When user says "study mode", "chill mode", etc.:

Read scene definition from data/home-config.json
Execute each device command via Home Assistant API
Confirm briefly: "Study mode ✓ — desk lamp bright, lo-fi on, DND"

### Home Assistant API

# Light control
curl -s -X POST "$HA_URL/api/services/light/turn_on" \\
  -H "Authorization: Bearer $HA_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"entity_id": "light.desk_lamp", "brightness_pct": 100}'

# Media playback
curl -s -X POST "$HA_URL/api/services/media_player/play_media" \\
  -H "Authorization: Bearer $HA_TOKEN" \\
  -d '{"entity_id": "media_player.speaker", "media_content_id": "spotify:playlist:xxx", "media_content_type": "playlist"}'

# Wake-on-LAN
curl -s -X POST "$HA_URL/api/services/wake_on_lan/send_magic_packet" \\
  -H "Authorization: Bearer $HA_TOKEN" \\
  -d '{"mac": "XX:XX:XX:XX:XX:XX"}'

### Quick Commands

"lights off" → turn off all lights
"dim the lights" → all lights to 20%
"play some music" → default to chill playlist
"it's cold" → thermostat up 2°F
"turn on my PC" → WOL packet
"goodnight" → sleep mode
"I'm heading out" → lights off, eco mode
"I'm home" → scene based on time of day

### Instructions

Read data/home-config.json for device mappings and scenes
Confirm actions in ONE short message
If a device fails, report which one and suggest a fix
Never execute "turn off all devices" without confirmation
If Home Assistant is unreachable, report and suggest checking connection
Device entity_ids must be configured by user — prompt if missing
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: harrey401
- 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-05T03:41:03.904Z
- Expires at: 2026-05-12T03:41:03.904Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/lofy-home)
- [Send to Agent page](https://openagent3.xyz/skills/lofy-home/agent)
- [JSON manifest](https://openagent3.xyz/skills/lofy-home/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/lofy-home/agent.md)
- [Download page](https://openagent3.xyz/downloads/lofy-home)